rt2x00: Filter ACK_CTS based on FIF_CONTROL
[safe/jmp/linux-2.6] / drivers / net / wireless / rt2x00 / rt73usb.c
1 /*
2         Copyright (C) 2004 - 2008 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: rt73usb
23         Abstract: rt73usb device specific routines.
24         Supported chipsets: rt2571W & rt2671.
25  */
26
27 #include <linux/delay.h>
28 #include <linux/etherdevice.h>
29 #include <linux/init.h>
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/usb.h>
33
34 #include "rt2x00.h"
35 #include "rt2x00usb.h"
36 #include "rt73usb.h"
37
38 /*
39  * Register access.
40  * All access to the CSR registers will go through the methods
41  * rt73usb_register_read and rt73usb_register_write.
42  * BBP and RF register require indirect register access,
43  * and use the CSR registers BBPCSR and RFCSR to achieve this.
44  * These indirect registers work with busy bits,
45  * and we will try maximal REGISTER_BUSY_COUNT times to access
46  * the register while taking a REGISTER_BUSY_DELAY us delay
47  * between each attampt. When the busy bit is still set at that time,
48  * the access attempt is considered to have failed,
49  * and we will print an error.
50  * The _lock versions must be used if you already hold the usb_cache_mutex
51  */
52 static inline void rt73usb_register_read(struct rt2x00_dev *rt2x00dev,
53                                          const unsigned int offset, u32 *value)
54 {
55         __le32 reg;
56         rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_READ,
57                                       USB_VENDOR_REQUEST_IN, offset,
58                                       &reg, sizeof(u32), REGISTER_TIMEOUT);
59         *value = le32_to_cpu(reg);
60 }
61
62 static inline void rt73usb_register_read_lock(struct rt2x00_dev *rt2x00dev,
63                                               const unsigned int offset, u32 *value)
64 {
65         __le32 reg;
66         rt2x00usb_vendor_req_buff_lock(rt2x00dev, USB_MULTI_READ,
67                                        USB_VENDOR_REQUEST_IN, offset,
68                                        &reg, sizeof(u32), REGISTER_TIMEOUT);
69         *value = le32_to_cpu(reg);
70 }
71
72 static inline void rt73usb_register_multiread(struct rt2x00_dev *rt2x00dev,
73                                               const unsigned int offset,
74                                               void *value, const u32 length)
75 {
76         int timeout = REGISTER_TIMEOUT * (length / sizeof(u32));
77         rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_READ,
78                                       USB_VENDOR_REQUEST_IN, offset,
79                                       value, length, timeout);
80 }
81
82 static inline void rt73usb_register_write(struct rt2x00_dev *rt2x00dev,
83                                           const unsigned int offset, u32 value)
84 {
85         __le32 reg = cpu_to_le32(value);
86         rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_WRITE,
87                                       USB_VENDOR_REQUEST_OUT, offset,
88                                       &reg, sizeof(u32), REGISTER_TIMEOUT);
89 }
90
91 static inline void rt73usb_register_write_lock(struct rt2x00_dev *rt2x00dev,
92                                                const unsigned int offset, u32 value)
93 {
94         __le32 reg = cpu_to_le32(value);
95         rt2x00usb_vendor_req_buff_lock(rt2x00dev, USB_MULTI_WRITE,
96                                        USB_VENDOR_REQUEST_OUT, offset,
97                                       &reg, sizeof(u32), REGISTER_TIMEOUT);
98 }
99
100 static inline void rt73usb_register_multiwrite(struct rt2x00_dev *rt2x00dev,
101                                                const unsigned int offset,
102                                                void *value, const u32 length)
103 {
104         int timeout = REGISTER_TIMEOUT * (length / sizeof(u32));
105         rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_WRITE,
106                                       USB_VENDOR_REQUEST_OUT, offset,
107                                       value, length, timeout);
108 }
109
110 static u32 rt73usb_bbp_check(struct rt2x00_dev *rt2x00dev)
111 {
112         u32 reg;
113         unsigned int i;
114
115         for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
116                 rt73usb_register_read_lock(rt2x00dev, PHY_CSR3, &reg);
117                 if (!rt2x00_get_field32(reg, PHY_CSR3_BUSY))
118                         break;
119                 udelay(REGISTER_BUSY_DELAY);
120         }
121
122         return reg;
123 }
124
125 static void rt73usb_bbp_write(struct rt2x00_dev *rt2x00dev,
126                               const unsigned int word, const u8 value)
127 {
128         u32 reg;
129
130         mutex_lock(&rt2x00dev->usb_cache_mutex);
131
132         /*
133          * Wait until the BBP becomes ready.
134          */
135         reg = rt73usb_bbp_check(rt2x00dev);
136         if (rt2x00_get_field32(reg, PHY_CSR3_BUSY)) {
137                 ERROR(rt2x00dev, "PHY_CSR3 register busy. Write failed.\n");
138                 mutex_unlock(&rt2x00dev->usb_cache_mutex);
139                 return;
140         }
141
142         /*
143          * Write the data into the BBP.
144          */
145         reg = 0;
146         rt2x00_set_field32(&reg, PHY_CSR3_VALUE, value);
147         rt2x00_set_field32(&reg, PHY_CSR3_REGNUM, word);
148         rt2x00_set_field32(&reg, PHY_CSR3_BUSY, 1);
149         rt2x00_set_field32(&reg, PHY_CSR3_READ_CONTROL, 0);
150
151         rt73usb_register_write_lock(rt2x00dev, PHY_CSR3, reg);
152         mutex_unlock(&rt2x00dev->usb_cache_mutex);
153 }
154
155 static void rt73usb_bbp_read(struct rt2x00_dev *rt2x00dev,
156                              const unsigned int word, u8 *value)
157 {
158         u32 reg;
159
160         mutex_lock(&rt2x00dev->usb_cache_mutex);
161
162         /*
163          * Wait until the BBP becomes ready.
164          */
165         reg = rt73usb_bbp_check(rt2x00dev);
166         if (rt2x00_get_field32(reg, PHY_CSR3_BUSY)) {
167                 ERROR(rt2x00dev, "PHY_CSR3 register busy. Read failed.\n");
168                 mutex_unlock(&rt2x00dev->usb_cache_mutex);
169                 return;
170         }
171
172         /*
173          * Write the request into the BBP.
174          */
175         reg = 0;
176         rt2x00_set_field32(&reg, PHY_CSR3_REGNUM, word);
177         rt2x00_set_field32(&reg, PHY_CSR3_BUSY, 1);
178         rt2x00_set_field32(&reg, PHY_CSR3_READ_CONTROL, 1);
179
180         rt73usb_register_write_lock(rt2x00dev, PHY_CSR3, reg);
181
182         /*
183          * Wait until the BBP becomes ready.
184          */
185         reg = rt73usb_bbp_check(rt2x00dev);
186         if (rt2x00_get_field32(reg, PHY_CSR3_BUSY)) {
187                 ERROR(rt2x00dev, "PHY_CSR3 register busy. Read failed.\n");
188                 *value = 0xff;
189                 return;
190         }
191
192         *value = rt2x00_get_field32(reg, PHY_CSR3_VALUE);
193         mutex_unlock(&rt2x00dev->usb_cache_mutex);
194 }
195
196 static void rt73usb_rf_write(struct rt2x00_dev *rt2x00dev,
197                              const unsigned int word, const u32 value)
198 {
199         u32 reg;
200         unsigned int i;
201
202         if (!word)
203                 return;
204
205         mutex_lock(&rt2x00dev->usb_cache_mutex);
206
207         for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
208                 rt73usb_register_read_lock(rt2x00dev, PHY_CSR4, &reg);
209                 if (!rt2x00_get_field32(reg, PHY_CSR4_BUSY))
210                         goto rf_write;
211                 udelay(REGISTER_BUSY_DELAY);
212         }
213
214         mutex_unlock(&rt2x00dev->usb_cache_mutex);
215         ERROR(rt2x00dev, "PHY_CSR4 register busy. Write failed.\n");
216         return;
217
218 rf_write:
219         reg = 0;
220         rt2x00_set_field32(&reg, PHY_CSR4_VALUE, value);
221
222         /*
223          * RF5225 and RF2527 contain 21 bits per RF register value,
224          * all others contain 20 bits.
225          */
226         rt2x00_set_field32(&reg, PHY_CSR4_NUMBER_OF_BITS,
227                            20 + (rt2x00_rf(&rt2x00dev->chip, RF5225) ||
228                                  rt2x00_rf(&rt2x00dev->chip, RF2527)));
229         rt2x00_set_field32(&reg, PHY_CSR4_IF_SELECT, 0);
230         rt2x00_set_field32(&reg, PHY_CSR4_BUSY, 1);
231
232         rt73usb_register_write_lock(rt2x00dev, PHY_CSR4, reg);
233         rt2x00_rf_write(rt2x00dev, word, value);
234         mutex_unlock(&rt2x00dev->usb_cache_mutex);
235 }
236
237 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
238 #define CSR_OFFSET(__word)      ( CSR_REG_BASE + ((__word) * sizeof(u32)) )
239
240 static void rt73usb_read_csr(struct rt2x00_dev *rt2x00dev,
241                              const unsigned int word, u32 *data)
242 {
243         rt73usb_register_read(rt2x00dev, CSR_OFFSET(word), data);
244 }
245
246 static void rt73usb_write_csr(struct rt2x00_dev *rt2x00dev,
247                               const unsigned int word, u32 data)
248 {
249         rt73usb_register_write(rt2x00dev, CSR_OFFSET(word), data);
250 }
251
252 static const struct rt2x00debug rt73usb_rt2x00debug = {
253         .owner  = THIS_MODULE,
254         .csr    = {
255                 .read           = rt73usb_read_csr,
256                 .write          = rt73usb_write_csr,
257                 .word_size      = sizeof(u32),
258                 .word_count     = CSR_REG_SIZE / sizeof(u32),
259         },
260         .eeprom = {
261                 .read           = rt2x00_eeprom_read,
262                 .write          = rt2x00_eeprom_write,
263                 .word_size      = sizeof(u16),
264                 .word_count     = EEPROM_SIZE / sizeof(u16),
265         },
266         .bbp    = {
267                 .read           = rt73usb_bbp_read,
268                 .write          = rt73usb_bbp_write,
269                 .word_size      = sizeof(u8),
270                 .word_count     = BBP_SIZE / sizeof(u8),
271         },
272         .rf     = {
273                 .read           = rt2x00_rf_read,
274                 .write          = rt73usb_rf_write,
275                 .word_size      = sizeof(u32),
276                 .word_count     = RF_SIZE / sizeof(u32),
277         },
278 };
279 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
280
281 #ifdef CONFIG_RT73USB_LEDS
282 static void rt73usb_led_brightness(struct led_classdev *led_cdev,
283                                    enum led_brightness brightness)
284 {
285         struct rt2x00_led *led =
286            container_of(led_cdev, struct rt2x00_led, led_dev);
287         unsigned int enabled = brightness != LED_OFF;
288         unsigned int a_mode =
289             (enabled && led->rt2x00dev->curr_band == IEEE80211_BAND_5GHZ);
290         unsigned int bg_mode =
291             (enabled && led->rt2x00dev->curr_band == IEEE80211_BAND_2GHZ);
292
293         if (led->type == LED_TYPE_RADIO) {
294                 rt2x00_set_field16(&led->rt2x00dev->led_mcu_reg,
295                                    MCU_LEDCS_RADIO_STATUS, enabled);
296
297                 rt2x00usb_vendor_request_async(led->rt2x00dev, USB_LED_CONTROL,
298                                                0, led->rt2x00dev->led_mcu_reg);
299         } else if (led->type == LED_TYPE_ASSOC) {
300                 rt2x00_set_field16(&led->rt2x00dev->led_mcu_reg,
301                                    MCU_LEDCS_LINK_BG_STATUS, bg_mode);
302                 rt2x00_set_field16(&led->rt2x00dev->led_mcu_reg,
303                                    MCU_LEDCS_LINK_A_STATUS, a_mode);
304
305                 rt2x00usb_vendor_request_async(led->rt2x00dev, USB_LED_CONTROL,
306                                                0, led->rt2x00dev->led_mcu_reg);
307         } else if (led->type == LED_TYPE_QUALITY) {
308                 /*
309                  * The brightness is divided into 6 levels (0 - 5),
310                  * this means we need to convert the brightness
311                  * argument into the matching level within that range.
312                  */
313                 rt2x00usb_vendor_request_async(led->rt2x00dev, USB_LED_CONTROL,
314                                                brightness / (LED_FULL / 6),
315                                                led->rt2x00dev->led_mcu_reg);
316         }
317 }
318 #else
319 #define rt73usb_led_brightness  NULL
320 #endif /* CONFIG_RT73USB_LEDS */
321
322 /*
323  * Configuration handlers.
324  */
325 static void rt73usb_config_intf(struct rt2x00_dev *rt2x00dev,
326                                 struct rt2x00_intf *intf,
327                                 struct rt2x00intf_conf *conf,
328                                 const unsigned int flags)
329 {
330         unsigned int beacon_base;
331         u32 reg;
332
333         if (flags & CONFIG_UPDATE_TYPE) {
334                 /*
335                  * Clear current synchronisation setup.
336                  * For the Beacon base registers we only need to clear
337                  * the first byte since that byte contains the VALID and OWNER
338                  * bits which (when set to 0) will invalidate the entire beacon.
339                  */
340                 beacon_base = HW_BEACON_OFFSET(intf->beacon->entry_idx);
341                 rt73usb_register_write(rt2x00dev, TXRX_CSR9, 0);
342                 rt73usb_register_write(rt2x00dev, beacon_base, 0);
343
344                 /*
345                  * Enable synchronisation.
346                  */
347                 rt73usb_register_read(rt2x00dev, TXRX_CSR9, &reg);
348                 rt2x00_set_field32(&reg, TXRX_CSR9_TSF_TICKING, 1);
349                 rt2x00_set_field32(&reg, TXRX_CSR9_TBTT_ENABLE,
350                                   (conf->sync == TSF_SYNC_BEACON));
351                 rt2x00_set_field32(&reg, TXRX_CSR9_BEACON_GEN, 0);
352                 rt2x00_set_field32(&reg, TXRX_CSR9_TSF_SYNC, conf->sync);
353                 rt73usb_register_write(rt2x00dev, TXRX_CSR9, reg);
354         }
355
356         if (flags & CONFIG_UPDATE_MAC) {
357                 reg = le32_to_cpu(conf->mac[1]);
358                 rt2x00_set_field32(&reg, MAC_CSR3_UNICAST_TO_ME_MASK, 0xff);
359                 conf->mac[1] = cpu_to_le32(reg);
360
361                 rt73usb_register_multiwrite(rt2x00dev, MAC_CSR2,
362                                             conf->mac, sizeof(conf->mac));
363         }
364
365         if (flags & CONFIG_UPDATE_BSSID) {
366                 reg = le32_to_cpu(conf->bssid[1]);
367                 rt2x00_set_field32(&reg, MAC_CSR5_BSS_ID_MASK, 3);
368                 conf->bssid[1] = cpu_to_le32(reg);
369
370                 rt73usb_register_multiwrite(rt2x00dev, MAC_CSR4,
371                                             conf->bssid, sizeof(conf->bssid));
372         }
373 }
374
375 static int rt73usb_config_preamble(struct rt2x00_dev *rt2x00dev,
376                                    const int short_preamble,
377                                    const int ack_timeout,
378                                    const int ack_consume_time)
379 {
380         u32 reg;
381
382         /*
383          * When in atomic context, we should let rt2x00lib
384          * try this configuration again later.
385          */
386         if (in_atomic())
387                 return -EAGAIN;
388
389         rt73usb_register_read(rt2x00dev, TXRX_CSR0, &reg);
390         rt2x00_set_field32(&reg, TXRX_CSR0_RX_ACK_TIMEOUT, ack_timeout);
391         rt73usb_register_write(rt2x00dev, TXRX_CSR0, reg);
392
393         rt73usb_register_read(rt2x00dev, TXRX_CSR4, &reg);
394         rt2x00_set_field32(&reg, TXRX_CSR4_AUTORESPOND_PREAMBLE,
395                            !!short_preamble);
396         rt73usb_register_write(rt2x00dev, TXRX_CSR4, reg);
397
398         return 0;
399 }
400
401 static void rt73usb_config_phymode(struct rt2x00_dev *rt2x00dev,
402                                    const int basic_rate_mask)
403 {
404         rt73usb_register_write(rt2x00dev, TXRX_CSR5, basic_rate_mask);
405 }
406
407 static void rt73usb_config_channel(struct rt2x00_dev *rt2x00dev,
408                                    struct rf_channel *rf, const int txpower)
409 {
410         u8 r3;
411         u8 r94;
412         u8 smart;
413
414         rt2x00_set_field32(&rf->rf3, RF3_TXPOWER, TXPOWER_TO_DEV(txpower));
415         rt2x00_set_field32(&rf->rf4, RF4_FREQ_OFFSET, rt2x00dev->freq_offset);
416
417         smart = !(rt2x00_rf(&rt2x00dev->chip, RF5225) ||
418                   rt2x00_rf(&rt2x00dev->chip, RF2527));
419
420         rt73usb_bbp_read(rt2x00dev, 3, &r3);
421         rt2x00_set_field8(&r3, BBP_R3_SMART_MODE, smart);
422         rt73usb_bbp_write(rt2x00dev, 3, r3);
423
424         r94 = 6;
425         if (txpower > MAX_TXPOWER && txpower <= (MAX_TXPOWER + r94))
426                 r94 += txpower - MAX_TXPOWER;
427         else if (txpower < MIN_TXPOWER && txpower >= (MIN_TXPOWER - r94))
428                 r94 += txpower;
429         rt73usb_bbp_write(rt2x00dev, 94, r94);
430
431         rt73usb_rf_write(rt2x00dev, 1, rf->rf1);
432         rt73usb_rf_write(rt2x00dev, 2, rf->rf2);
433         rt73usb_rf_write(rt2x00dev, 3, rf->rf3 & ~0x00000004);
434         rt73usb_rf_write(rt2x00dev, 4, rf->rf4);
435
436         rt73usb_rf_write(rt2x00dev, 1, rf->rf1);
437         rt73usb_rf_write(rt2x00dev, 2, rf->rf2);
438         rt73usb_rf_write(rt2x00dev, 3, rf->rf3 | 0x00000004);
439         rt73usb_rf_write(rt2x00dev, 4, rf->rf4);
440
441         rt73usb_rf_write(rt2x00dev, 1, rf->rf1);
442         rt73usb_rf_write(rt2x00dev, 2, rf->rf2);
443         rt73usb_rf_write(rt2x00dev, 3, rf->rf3 & ~0x00000004);
444         rt73usb_rf_write(rt2x00dev, 4, rf->rf4);
445
446         udelay(10);
447 }
448
449 static void rt73usb_config_txpower(struct rt2x00_dev *rt2x00dev,
450                                    const int txpower)
451 {
452         struct rf_channel rf;
453
454         rt2x00_rf_read(rt2x00dev, 1, &rf.rf1);
455         rt2x00_rf_read(rt2x00dev, 2, &rf.rf2);
456         rt2x00_rf_read(rt2x00dev, 3, &rf.rf3);
457         rt2x00_rf_read(rt2x00dev, 4, &rf.rf4);
458
459         rt73usb_config_channel(rt2x00dev, &rf, txpower);
460 }
461
462 static void rt73usb_config_antenna_5x(struct rt2x00_dev *rt2x00dev,
463                                       struct antenna_setup *ant)
464 {
465         u8 r3;
466         u8 r4;
467         u8 r77;
468         u8 temp;
469
470         rt73usb_bbp_read(rt2x00dev, 3, &r3);
471         rt73usb_bbp_read(rt2x00dev, 4, &r4);
472         rt73usb_bbp_read(rt2x00dev, 77, &r77);
473
474         rt2x00_set_field8(&r3, BBP_R3_SMART_MODE, 0);
475
476         /*
477          * Configure the RX antenna.
478          */
479         switch (ant->rx) {
480         case ANTENNA_HW_DIVERSITY:
481                 rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 2);
482                 temp = !test_bit(CONFIG_FRAME_TYPE, &rt2x00dev->flags)
483                        && (rt2x00dev->curr_band != IEEE80211_BAND_5GHZ);
484                 rt2x00_set_field8(&r4, BBP_R4_RX_FRAME_END, temp);
485                 break;
486         case ANTENNA_A:
487                 rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
488                 rt2x00_set_field8(&r4, BBP_R4_RX_FRAME_END, 0);
489                 if (rt2x00dev->curr_band == IEEE80211_BAND_5GHZ)
490                         rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 0);
491                 else
492                         rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 3);
493                 break;
494         case ANTENNA_SW_DIVERSITY:
495                 /*
496                  * NOTE: We should never come here because rt2x00lib is
497                  * supposed to catch this and send us the correct antenna
498                  * explicitely. However we are nog going to bug about this.
499                  * Instead, just default to antenna B.
500                  */
501         case ANTENNA_B:
502                 rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
503                 rt2x00_set_field8(&r4, BBP_R4_RX_FRAME_END, 0);
504                 if (rt2x00dev->curr_band == IEEE80211_BAND_5GHZ)
505                         rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 3);
506                 else
507                         rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 0);
508                 break;
509         }
510
511         rt73usb_bbp_write(rt2x00dev, 77, r77);
512         rt73usb_bbp_write(rt2x00dev, 3, r3);
513         rt73usb_bbp_write(rt2x00dev, 4, r4);
514 }
515
516 static void rt73usb_config_antenna_2x(struct rt2x00_dev *rt2x00dev,
517                                       struct antenna_setup *ant)
518 {
519         u8 r3;
520         u8 r4;
521         u8 r77;
522
523         rt73usb_bbp_read(rt2x00dev, 3, &r3);
524         rt73usb_bbp_read(rt2x00dev, 4, &r4);
525         rt73usb_bbp_read(rt2x00dev, 77, &r77);
526
527         rt2x00_set_field8(&r3, BBP_R3_SMART_MODE, 0);
528         rt2x00_set_field8(&r4, BBP_R4_RX_FRAME_END,
529                           !test_bit(CONFIG_FRAME_TYPE, &rt2x00dev->flags));
530
531         /*
532          * Configure the RX antenna.
533          */
534         switch (ant->rx) {
535         case ANTENNA_HW_DIVERSITY:
536                 rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 2);
537                 break;
538         case ANTENNA_A:
539                 rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 3);
540                 rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
541                 break;
542         case ANTENNA_SW_DIVERSITY:
543                 /*
544                  * NOTE: We should never come here because rt2x00lib is
545                  * supposed to catch this and send us the correct antenna
546                  * explicitely. However we are nog going to bug about this.
547                  * Instead, just default to antenna B.
548                  */
549         case ANTENNA_B:
550                 rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 0);
551                 rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
552                 break;
553         }
554
555         rt73usb_bbp_write(rt2x00dev, 77, r77);
556         rt73usb_bbp_write(rt2x00dev, 3, r3);
557         rt73usb_bbp_write(rt2x00dev, 4, r4);
558 }
559
560 struct antenna_sel {
561         u8 word;
562         /*
563          * value[0] -> non-LNA
564          * value[1] -> LNA
565          */
566         u8 value[2];
567 };
568
569 static const struct antenna_sel antenna_sel_a[] = {
570         { 96,  { 0x58, 0x78 } },
571         { 104, { 0x38, 0x48 } },
572         { 75,  { 0xfe, 0x80 } },
573         { 86,  { 0xfe, 0x80 } },
574         { 88,  { 0xfe, 0x80 } },
575         { 35,  { 0x60, 0x60 } },
576         { 97,  { 0x58, 0x58 } },
577         { 98,  { 0x58, 0x58 } },
578 };
579
580 static const struct antenna_sel antenna_sel_bg[] = {
581         { 96,  { 0x48, 0x68 } },
582         { 104, { 0x2c, 0x3c } },
583         { 75,  { 0xfe, 0x80 } },
584         { 86,  { 0xfe, 0x80 } },
585         { 88,  { 0xfe, 0x80 } },
586         { 35,  { 0x50, 0x50 } },
587         { 97,  { 0x48, 0x48 } },
588         { 98,  { 0x48, 0x48 } },
589 };
590
591 static void rt73usb_config_antenna(struct rt2x00_dev *rt2x00dev,
592                                    struct antenna_setup *ant)
593 {
594         const struct antenna_sel *sel;
595         unsigned int lna;
596         unsigned int i;
597         u32 reg;
598
599         if (rt2x00dev->curr_band == IEEE80211_BAND_5GHZ) {
600                 sel = antenna_sel_a;
601                 lna = test_bit(CONFIG_EXTERNAL_LNA_A, &rt2x00dev->flags);
602         } else {
603                 sel = antenna_sel_bg;
604                 lna = test_bit(CONFIG_EXTERNAL_LNA_BG, &rt2x00dev->flags);
605         }
606
607         for (i = 0; i < ARRAY_SIZE(antenna_sel_a); i++)
608                 rt73usb_bbp_write(rt2x00dev, sel[i].word, sel[i].value[lna]);
609
610         rt73usb_register_read(rt2x00dev, PHY_CSR0, &reg);
611
612         rt2x00_set_field32(&reg, PHY_CSR0_PA_PE_BG,
613                            (rt2x00dev->curr_band == IEEE80211_BAND_2GHZ));
614         rt2x00_set_field32(&reg, PHY_CSR0_PA_PE_A,
615                            (rt2x00dev->curr_band == IEEE80211_BAND_5GHZ));
616
617         rt73usb_register_write(rt2x00dev, PHY_CSR0, reg);
618
619         if (rt2x00_rf(&rt2x00dev->chip, RF5226) ||
620             rt2x00_rf(&rt2x00dev->chip, RF5225))
621                 rt73usb_config_antenna_5x(rt2x00dev, ant);
622         else if (rt2x00_rf(&rt2x00dev->chip, RF2528) ||
623                  rt2x00_rf(&rt2x00dev->chip, RF2527))
624                 rt73usb_config_antenna_2x(rt2x00dev, ant);
625 }
626
627 static void rt73usb_config_duration(struct rt2x00_dev *rt2x00dev,
628                                     struct rt2x00lib_conf *libconf)
629 {
630         u32 reg;
631
632         rt73usb_register_read(rt2x00dev, MAC_CSR9, &reg);
633         rt2x00_set_field32(&reg, MAC_CSR9_SLOT_TIME, libconf->slot_time);
634         rt73usb_register_write(rt2x00dev, MAC_CSR9, reg);
635
636         rt73usb_register_read(rt2x00dev, MAC_CSR8, &reg);
637         rt2x00_set_field32(&reg, MAC_CSR8_SIFS, libconf->sifs);
638         rt2x00_set_field32(&reg, MAC_CSR8_SIFS_AFTER_RX_OFDM, 3);
639         rt2x00_set_field32(&reg, MAC_CSR8_EIFS, libconf->eifs);
640         rt73usb_register_write(rt2x00dev, MAC_CSR8, reg);
641
642         rt73usb_register_read(rt2x00dev, TXRX_CSR0, &reg);
643         rt2x00_set_field32(&reg, TXRX_CSR0_TSF_OFFSET, IEEE80211_HEADER);
644         rt73usb_register_write(rt2x00dev, TXRX_CSR0, reg);
645
646         rt73usb_register_read(rt2x00dev, TXRX_CSR4, &reg);
647         rt2x00_set_field32(&reg, TXRX_CSR4_AUTORESPOND_ENABLE, 1);
648         rt73usb_register_write(rt2x00dev, TXRX_CSR4, reg);
649
650         rt73usb_register_read(rt2x00dev, TXRX_CSR9, &reg);
651         rt2x00_set_field32(&reg, TXRX_CSR9_BEACON_INTERVAL,
652                            libconf->conf->beacon_int * 16);
653         rt73usb_register_write(rt2x00dev, TXRX_CSR9, reg);
654 }
655
656 static void rt73usb_config(struct rt2x00_dev *rt2x00dev,
657                            struct rt2x00lib_conf *libconf,
658                            const unsigned int flags)
659 {
660         if (flags & CONFIG_UPDATE_PHYMODE)
661                 rt73usb_config_phymode(rt2x00dev, libconf->basic_rates);
662         if (flags & CONFIG_UPDATE_CHANNEL)
663                 rt73usb_config_channel(rt2x00dev, &libconf->rf,
664                                        libconf->conf->power_level);
665         if ((flags & CONFIG_UPDATE_TXPOWER) && !(flags & CONFIG_UPDATE_CHANNEL))
666                 rt73usb_config_txpower(rt2x00dev, libconf->conf->power_level);
667         if (flags & CONFIG_UPDATE_ANTENNA)
668                 rt73usb_config_antenna(rt2x00dev, &libconf->ant);
669         if (flags & (CONFIG_UPDATE_SLOT_TIME | CONFIG_UPDATE_BEACON_INT))
670                 rt73usb_config_duration(rt2x00dev, libconf);
671 }
672
673 /*
674  * Link tuning
675  */
676 static void rt73usb_link_stats(struct rt2x00_dev *rt2x00dev,
677                                struct link_qual *qual)
678 {
679         u32 reg;
680
681         /*
682          * Update FCS error count from register.
683          */
684         rt73usb_register_read(rt2x00dev, STA_CSR0, &reg);
685         qual->rx_failed = rt2x00_get_field32(reg, STA_CSR0_FCS_ERROR);
686
687         /*
688          * Update False CCA count from register.
689          */
690         rt73usb_register_read(rt2x00dev, STA_CSR1, &reg);
691         qual->false_cca = rt2x00_get_field32(reg, STA_CSR1_FALSE_CCA_ERROR);
692 }
693
694 static void rt73usb_reset_tuner(struct rt2x00_dev *rt2x00dev)
695 {
696         rt73usb_bbp_write(rt2x00dev, 17, 0x20);
697         rt2x00dev->link.vgc_level = 0x20;
698 }
699
700 static void rt73usb_link_tuner(struct rt2x00_dev *rt2x00dev)
701 {
702         int rssi = rt2x00_get_link_rssi(&rt2x00dev->link);
703         u8 r17;
704         u8 up_bound;
705         u8 low_bound;
706
707         rt73usb_bbp_read(rt2x00dev, 17, &r17);
708
709         /*
710          * Determine r17 bounds.
711          */
712         if (rt2x00dev->rx_status.band == IEEE80211_BAND_5GHZ) {
713                 low_bound = 0x28;
714                 up_bound = 0x48;
715
716                 if (test_bit(CONFIG_EXTERNAL_LNA_A, &rt2x00dev->flags)) {
717                         low_bound += 0x10;
718                         up_bound += 0x10;
719                 }
720         } else {
721                 if (rssi > -82) {
722                         low_bound = 0x1c;
723                         up_bound = 0x40;
724                 } else if (rssi > -84) {
725                         low_bound = 0x1c;
726                         up_bound = 0x20;
727                 } else {
728                         low_bound = 0x1c;
729                         up_bound = 0x1c;
730                 }
731
732                 if (test_bit(CONFIG_EXTERNAL_LNA_BG, &rt2x00dev->flags)) {
733                         low_bound += 0x14;
734                         up_bound += 0x10;
735                 }
736         }
737
738         /*
739          * If we are not associated, we should go straight to the
740          * dynamic CCA tuning.
741          */
742         if (!rt2x00dev->intf_associated)
743                 goto dynamic_cca_tune;
744
745         /*
746          * Special big-R17 for very short distance
747          */
748         if (rssi > -35) {
749                 if (r17 != 0x60)
750                         rt73usb_bbp_write(rt2x00dev, 17, 0x60);
751                 return;
752         }
753
754         /*
755          * Special big-R17 for short distance
756          */
757         if (rssi >= -58) {
758                 if (r17 != up_bound)
759                         rt73usb_bbp_write(rt2x00dev, 17, up_bound);
760                 return;
761         }
762
763         /*
764          * Special big-R17 for middle-short distance
765          */
766         if (rssi >= -66) {
767                 low_bound += 0x10;
768                 if (r17 != low_bound)
769                         rt73usb_bbp_write(rt2x00dev, 17, low_bound);
770                 return;
771         }
772
773         /*
774          * Special mid-R17 for middle distance
775          */
776         if (rssi >= -74) {
777                 if (r17 != (low_bound + 0x10))
778                         rt73usb_bbp_write(rt2x00dev, 17, low_bound + 0x08);
779                 return;
780         }
781
782         /*
783          * Special case: Change up_bound based on the rssi.
784          * Lower up_bound when rssi is weaker then -74 dBm.
785          */
786         up_bound -= 2 * (-74 - rssi);
787         if (low_bound > up_bound)
788                 up_bound = low_bound;
789
790         if (r17 > up_bound) {
791                 rt73usb_bbp_write(rt2x00dev, 17, up_bound);
792                 return;
793         }
794
795 dynamic_cca_tune:
796
797         /*
798          * r17 does not yet exceed upper limit, continue and base
799          * the r17 tuning on the false CCA count.
800          */
801         if (rt2x00dev->link.qual.false_cca > 512 && r17 < up_bound) {
802                 r17 += 4;
803                 if (r17 > up_bound)
804                         r17 = up_bound;
805                 rt73usb_bbp_write(rt2x00dev, 17, r17);
806         } else if (rt2x00dev->link.qual.false_cca < 100 && r17 > low_bound) {
807                 r17 -= 4;
808                 if (r17 < low_bound)
809                         r17 = low_bound;
810                 rt73usb_bbp_write(rt2x00dev, 17, r17);
811         }
812 }
813
814 /*
815  * Firmware name function.
816  */
817 static char *rt73usb_get_firmware_name(struct rt2x00_dev *rt2x00dev)
818 {
819         return FIRMWARE_RT2571;
820 }
821
822 /*
823  * Initialization functions.
824  */
825 static int rt73usb_load_firmware(struct rt2x00_dev *rt2x00dev, void *data,
826                                  const size_t len)
827 {
828         unsigned int i;
829         int status;
830         u32 reg;
831         char *ptr = data;
832         char *cache;
833         int buflen;
834         int timeout;
835
836         /*
837          * Wait for stable hardware.
838          */
839         for (i = 0; i < 100; i++) {
840                 rt73usb_register_read(rt2x00dev, MAC_CSR0, &reg);
841                 if (reg)
842                         break;
843                 msleep(1);
844         }
845
846         if (!reg) {
847                 ERROR(rt2x00dev, "Unstable hardware.\n");
848                 return -EBUSY;
849         }
850
851         /*
852          * Write firmware to device.
853          * We setup a seperate cache for this action,
854          * since we are going to write larger chunks of data
855          * then normally used cache size.
856          */
857         cache = kmalloc(CSR_CACHE_SIZE_FIRMWARE, GFP_KERNEL);
858         if (!cache) {
859                 ERROR(rt2x00dev, "Failed to allocate firmware cache.\n");
860                 return -ENOMEM;
861         }
862
863         for (i = 0; i < len; i += CSR_CACHE_SIZE_FIRMWARE) {
864                 buflen = min_t(int, len - i, CSR_CACHE_SIZE_FIRMWARE);
865                 timeout = REGISTER_TIMEOUT * (buflen / sizeof(u32));
866
867                 memcpy(cache, ptr, buflen);
868
869                 rt2x00usb_vendor_request(rt2x00dev, USB_MULTI_WRITE,
870                                          USB_VENDOR_REQUEST_OUT,
871                                          FIRMWARE_IMAGE_BASE + i, 0,
872                                          cache, buflen, timeout);
873
874                 ptr += buflen;
875         }
876
877         kfree(cache);
878
879         /*
880          * Send firmware request to device to load firmware,
881          * we need to specify a long timeout time.
882          */
883         status = rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE,
884                                              0, USB_MODE_FIRMWARE,
885                                              REGISTER_TIMEOUT_FIRMWARE);
886         if (status < 0) {
887                 ERROR(rt2x00dev, "Failed to write Firmware to device.\n");
888                 return status;
889         }
890
891         return 0;
892 }
893
894 static int rt73usb_init_registers(struct rt2x00_dev *rt2x00dev)
895 {
896         u32 reg;
897
898         rt73usb_register_read(rt2x00dev, TXRX_CSR0, &reg);
899         rt2x00_set_field32(&reg, TXRX_CSR0_AUTO_TX_SEQ, 1);
900         rt2x00_set_field32(&reg, TXRX_CSR0_DISABLE_RX, 0);
901         rt2x00_set_field32(&reg, TXRX_CSR0_TX_WITHOUT_WAITING, 0);
902         rt73usb_register_write(rt2x00dev, TXRX_CSR0, reg);
903
904         rt73usb_register_read(rt2x00dev, TXRX_CSR1, &reg);
905         rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID0, 47); /* CCK Signal */
906         rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID0_VALID, 1);
907         rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID1, 30); /* Rssi */
908         rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID1_VALID, 1);
909         rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID2, 42); /* OFDM Rate */
910         rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID2_VALID, 1);
911         rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID3, 30); /* Rssi */
912         rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID3_VALID, 1);
913         rt73usb_register_write(rt2x00dev, TXRX_CSR1, reg);
914
915         /*
916          * CCK TXD BBP registers
917          */
918         rt73usb_register_read(rt2x00dev, TXRX_CSR2, &reg);
919         rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID0, 13);
920         rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID0_VALID, 1);
921         rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID1, 12);
922         rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID1_VALID, 1);
923         rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID2, 11);
924         rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID2_VALID, 1);
925         rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID3, 10);
926         rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID3_VALID, 1);
927         rt73usb_register_write(rt2x00dev, TXRX_CSR2, reg);
928
929         /*
930          * OFDM TXD BBP registers
931          */
932         rt73usb_register_read(rt2x00dev, TXRX_CSR3, &reg);
933         rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID0, 7);
934         rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID0_VALID, 1);
935         rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID1, 6);
936         rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID1_VALID, 1);
937         rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID2, 5);
938         rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID2_VALID, 1);
939         rt73usb_register_write(rt2x00dev, TXRX_CSR3, reg);
940
941         rt73usb_register_read(rt2x00dev, TXRX_CSR7, &reg);
942         rt2x00_set_field32(&reg, TXRX_CSR7_ACK_CTS_6MBS, 59);
943         rt2x00_set_field32(&reg, TXRX_CSR7_ACK_CTS_9MBS, 53);
944         rt2x00_set_field32(&reg, TXRX_CSR7_ACK_CTS_12MBS, 49);
945         rt2x00_set_field32(&reg, TXRX_CSR7_ACK_CTS_18MBS, 46);
946         rt73usb_register_write(rt2x00dev, TXRX_CSR7, reg);
947
948         rt73usb_register_read(rt2x00dev, TXRX_CSR8, &reg);
949         rt2x00_set_field32(&reg, TXRX_CSR8_ACK_CTS_24MBS, 44);
950         rt2x00_set_field32(&reg, TXRX_CSR8_ACK_CTS_36MBS, 42);
951         rt2x00_set_field32(&reg, TXRX_CSR8_ACK_CTS_48MBS, 42);
952         rt2x00_set_field32(&reg, TXRX_CSR8_ACK_CTS_54MBS, 42);
953         rt73usb_register_write(rt2x00dev, TXRX_CSR8, reg);
954
955         rt73usb_register_write(rt2x00dev, TXRX_CSR15, 0x0000000f);
956
957         rt73usb_register_read(rt2x00dev, MAC_CSR6, &reg);
958         rt2x00_set_field32(&reg, MAC_CSR6_MAX_FRAME_UNIT, 0xfff);
959         rt73usb_register_write(rt2x00dev, MAC_CSR6, reg);
960
961         rt73usb_register_write(rt2x00dev, MAC_CSR10, 0x00000718);
962
963         if (rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_AWAKE))
964                 return -EBUSY;
965
966         rt73usb_register_write(rt2x00dev, MAC_CSR13, 0x00007f00);
967
968         rt73usb_register_read(rt2x00dev, MAC_CSR14, &reg);
969         rt2x00_set_field32(&reg, MAC_CSR14_ON_PERIOD, 70);
970         rt2x00_set_field32(&reg, MAC_CSR14_OFF_PERIOD, 30);
971         rt73usb_register_write(rt2x00dev, MAC_CSR14, reg);
972
973         /*
974          * Invalidate all Shared Keys (SEC_CSR0),
975          * and clear the Shared key Cipher algorithms (SEC_CSR1 & SEC_CSR5)
976          */
977         rt73usb_register_write(rt2x00dev, SEC_CSR0, 0x00000000);
978         rt73usb_register_write(rt2x00dev, SEC_CSR1, 0x00000000);
979         rt73usb_register_write(rt2x00dev, SEC_CSR5, 0x00000000);
980
981         reg = 0x000023b0;
982         if (rt2x00_rf(&rt2x00dev->chip, RF5225) ||
983             rt2x00_rf(&rt2x00dev->chip, RF2527))
984                 rt2x00_set_field32(&reg, PHY_CSR1_RF_RPI, 1);
985         rt73usb_register_write(rt2x00dev, PHY_CSR1, reg);
986
987         rt73usb_register_write(rt2x00dev, PHY_CSR5, 0x00040a06);
988         rt73usb_register_write(rt2x00dev, PHY_CSR6, 0x00080606);
989         rt73usb_register_write(rt2x00dev, PHY_CSR7, 0x00000408);
990
991         rt73usb_register_read(rt2x00dev, AC_TXOP_CSR0, &reg);
992         rt2x00_set_field32(&reg, AC_TXOP_CSR0_AC0_TX_OP, 0);
993         rt2x00_set_field32(&reg, AC_TXOP_CSR0_AC1_TX_OP, 0);
994         rt73usb_register_write(rt2x00dev, AC_TXOP_CSR0, reg);
995
996         rt73usb_register_read(rt2x00dev, AC_TXOP_CSR1, &reg);
997         rt2x00_set_field32(&reg, AC_TXOP_CSR1_AC2_TX_OP, 192);
998         rt2x00_set_field32(&reg, AC_TXOP_CSR1_AC3_TX_OP, 48);
999         rt73usb_register_write(rt2x00dev, AC_TXOP_CSR1, reg);
1000
1001         rt73usb_register_read(rt2x00dev, MAC_CSR9, &reg);
1002         rt2x00_set_field32(&reg, MAC_CSR9_CW_SELECT, 0);
1003         rt73usb_register_write(rt2x00dev, MAC_CSR9, reg);
1004
1005         /*
1006          * Clear all beacons
1007          * For the Beacon base registers we only need to clear
1008          * the first byte since that byte contains the VALID and OWNER
1009          * bits which (when set to 0) will invalidate the entire beacon.
1010          */
1011         rt73usb_register_write(rt2x00dev, HW_BEACON_BASE0, 0);
1012         rt73usb_register_write(rt2x00dev, HW_BEACON_BASE1, 0);
1013         rt73usb_register_write(rt2x00dev, HW_BEACON_BASE2, 0);
1014         rt73usb_register_write(rt2x00dev, HW_BEACON_BASE3, 0);
1015
1016         /*
1017          * We must clear the error counters.
1018          * These registers are cleared on read,
1019          * so we may pass a useless variable to store the value.
1020          */
1021         rt73usb_register_read(rt2x00dev, STA_CSR0, &reg);
1022         rt73usb_register_read(rt2x00dev, STA_CSR1, &reg);
1023         rt73usb_register_read(rt2x00dev, STA_CSR2, &reg);
1024
1025         /*
1026          * Reset MAC and BBP registers.
1027          */
1028         rt73usb_register_read(rt2x00dev, MAC_CSR1, &reg);
1029         rt2x00_set_field32(&reg, MAC_CSR1_SOFT_RESET, 1);
1030         rt2x00_set_field32(&reg, MAC_CSR1_BBP_RESET, 1);
1031         rt73usb_register_write(rt2x00dev, MAC_CSR1, reg);
1032
1033         rt73usb_register_read(rt2x00dev, MAC_CSR1, &reg);
1034         rt2x00_set_field32(&reg, MAC_CSR1_SOFT_RESET, 0);
1035         rt2x00_set_field32(&reg, MAC_CSR1_BBP_RESET, 0);
1036         rt73usb_register_write(rt2x00dev, MAC_CSR1, reg);
1037
1038         rt73usb_register_read(rt2x00dev, MAC_CSR1, &reg);
1039         rt2x00_set_field32(&reg, MAC_CSR1_HOST_READY, 1);
1040         rt73usb_register_write(rt2x00dev, MAC_CSR1, reg);
1041
1042         return 0;
1043 }
1044
1045 static int rt73usb_init_bbp(struct rt2x00_dev *rt2x00dev)
1046 {
1047         unsigned int i;
1048         u16 eeprom;
1049         u8 reg_id;
1050         u8 value;
1051
1052         for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
1053                 rt73usb_bbp_read(rt2x00dev, 0, &value);
1054                 if ((value != 0xff) && (value != 0x00))
1055                         goto continue_csr_init;
1056                 NOTICE(rt2x00dev, "Waiting for BBP register.\n");
1057                 udelay(REGISTER_BUSY_DELAY);
1058         }
1059
1060         ERROR(rt2x00dev, "BBP register access failed, aborting.\n");
1061         return -EACCES;
1062
1063 continue_csr_init:
1064         rt73usb_bbp_write(rt2x00dev, 3, 0x80);
1065         rt73usb_bbp_write(rt2x00dev, 15, 0x30);
1066         rt73usb_bbp_write(rt2x00dev, 21, 0xc8);
1067         rt73usb_bbp_write(rt2x00dev, 22, 0x38);
1068         rt73usb_bbp_write(rt2x00dev, 23, 0x06);
1069         rt73usb_bbp_write(rt2x00dev, 24, 0xfe);
1070         rt73usb_bbp_write(rt2x00dev, 25, 0x0a);
1071         rt73usb_bbp_write(rt2x00dev, 26, 0x0d);
1072         rt73usb_bbp_write(rt2x00dev, 32, 0x0b);
1073         rt73usb_bbp_write(rt2x00dev, 34, 0x12);
1074         rt73usb_bbp_write(rt2x00dev, 37, 0x07);
1075         rt73usb_bbp_write(rt2x00dev, 39, 0xf8);
1076         rt73usb_bbp_write(rt2x00dev, 41, 0x60);
1077         rt73usb_bbp_write(rt2x00dev, 53, 0x10);
1078         rt73usb_bbp_write(rt2x00dev, 54, 0x18);
1079         rt73usb_bbp_write(rt2x00dev, 60, 0x10);
1080         rt73usb_bbp_write(rt2x00dev, 61, 0x04);
1081         rt73usb_bbp_write(rt2x00dev, 62, 0x04);
1082         rt73usb_bbp_write(rt2x00dev, 75, 0xfe);
1083         rt73usb_bbp_write(rt2x00dev, 86, 0xfe);
1084         rt73usb_bbp_write(rt2x00dev, 88, 0xfe);
1085         rt73usb_bbp_write(rt2x00dev, 90, 0x0f);
1086         rt73usb_bbp_write(rt2x00dev, 99, 0x00);
1087         rt73usb_bbp_write(rt2x00dev, 102, 0x16);
1088         rt73usb_bbp_write(rt2x00dev, 107, 0x04);
1089
1090         for (i = 0; i < EEPROM_BBP_SIZE; i++) {
1091                 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
1092
1093                 if (eeprom != 0xffff && eeprom != 0x0000) {
1094                         reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
1095                         value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
1096                         rt73usb_bbp_write(rt2x00dev, reg_id, value);
1097                 }
1098         }
1099
1100         return 0;
1101 }
1102
1103 /*
1104  * Device state switch handlers.
1105  */
1106 static void rt73usb_toggle_rx(struct rt2x00_dev *rt2x00dev,
1107                               enum dev_state state)
1108 {
1109         u32 reg;
1110
1111         rt73usb_register_read(rt2x00dev, TXRX_CSR0, &reg);
1112         rt2x00_set_field32(&reg, TXRX_CSR0_DISABLE_RX,
1113                            state == STATE_RADIO_RX_OFF);
1114         rt73usb_register_write(rt2x00dev, TXRX_CSR0, reg);
1115 }
1116
1117 static int rt73usb_enable_radio(struct rt2x00_dev *rt2x00dev)
1118 {
1119         /*
1120          * Initialize all registers.
1121          */
1122         if (rt73usb_init_registers(rt2x00dev) ||
1123             rt73usb_init_bbp(rt2x00dev)) {
1124                 ERROR(rt2x00dev, "Register initialization failed.\n");
1125                 return -EIO;
1126         }
1127
1128         return 0;
1129 }
1130
1131 static void rt73usb_disable_radio(struct rt2x00_dev *rt2x00dev)
1132 {
1133         rt73usb_register_write(rt2x00dev, MAC_CSR10, 0x00001818);
1134
1135         /*
1136          * Disable synchronisation.
1137          */
1138         rt73usb_register_write(rt2x00dev, TXRX_CSR9, 0);
1139
1140         rt2x00usb_disable_radio(rt2x00dev);
1141 }
1142
1143 static int rt73usb_set_state(struct rt2x00_dev *rt2x00dev, enum dev_state state)
1144 {
1145         u32 reg;
1146         unsigned int i;
1147         char put_to_sleep;
1148         char current_state;
1149
1150         put_to_sleep = (state != STATE_AWAKE);
1151
1152         rt73usb_register_read(rt2x00dev, MAC_CSR12, &reg);
1153         rt2x00_set_field32(&reg, MAC_CSR12_FORCE_WAKEUP, !put_to_sleep);
1154         rt2x00_set_field32(&reg, MAC_CSR12_PUT_TO_SLEEP, put_to_sleep);
1155         rt73usb_register_write(rt2x00dev, MAC_CSR12, reg);
1156
1157         /*
1158          * Device is not guaranteed to be in the requested state yet.
1159          * We must wait until the register indicates that the
1160          * device has entered the correct state.
1161          */
1162         for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
1163                 rt73usb_register_read(rt2x00dev, MAC_CSR12, &reg);
1164                 current_state =
1165                     rt2x00_get_field32(reg, MAC_CSR12_BBP_CURRENT_STATE);
1166                 if (current_state == !put_to_sleep)
1167                         return 0;
1168                 msleep(10);
1169         }
1170
1171         NOTICE(rt2x00dev, "Device failed to enter state %d, "
1172                "current device state %d.\n", !put_to_sleep, current_state);
1173
1174         return -EBUSY;
1175 }
1176
1177 static int rt73usb_set_device_state(struct rt2x00_dev *rt2x00dev,
1178                                     enum dev_state state)
1179 {
1180         int retval = 0;
1181
1182         switch (state) {
1183         case STATE_RADIO_ON:
1184                 retval = rt73usb_enable_radio(rt2x00dev);
1185                 break;
1186         case STATE_RADIO_OFF:
1187                 rt73usb_disable_radio(rt2x00dev);
1188                 break;
1189         case STATE_RADIO_RX_ON:
1190         case STATE_RADIO_RX_ON_LINK:
1191                 rt73usb_toggle_rx(rt2x00dev, STATE_RADIO_RX_ON);
1192                 break;
1193         case STATE_RADIO_RX_OFF:
1194         case STATE_RADIO_RX_OFF_LINK:
1195                 rt73usb_toggle_rx(rt2x00dev, STATE_RADIO_RX_OFF);
1196                 break;
1197         case STATE_DEEP_SLEEP:
1198         case STATE_SLEEP:
1199         case STATE_STANDBY:
1200         case STATE_AWAKE:
1201                 retval = rt73usb_set_state(rt2x00dev, state);
1202                 break;
1203         default:
1204                 retval = -ENOTSUPP;
1205                 break;
1206         }
1207
1208         return retval;
1209 }
1210
1211 /*
1212  * TX descriptor initialization
1213  */
1214 static void rt73usb_write_tx_desc(struct rt2x00_dev *rt2x00dev,
1215                                     struct sk_buff *skb,
1216                                     struct txentry_desc *txdesc,
1217                                     struct ieee80211_tx_control *control)
1218 {
1219         struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
1220         __le32 *txd = skbdesc->desc;
1221         u32 word;
1222
1223         /*
1224          * Start writing the descriptor words.
1225          */
1226         rt2x00_desc_read(txd, 1, &word);
1227         rt2x00_set_field32(&word, TXD_W1_HOST_Q_ID, txdesc->queue);
1228         rt2x00_set_field32(&word, TXD_W1_AIFSN, txdesc->aifs);
1229         rt2x00_set_field32(&word, TXD_W1_CWMIN, txdesc->cw_min);
1230         rt2x00_set_field32(&word, TXD_W1_CWMAX, txdesc->cw_max);
1231         rt2x00_set_field32(&word, TXD_W1_IV_OFFSET, IEEE80211_HEADER);
1232         rt2x00_set_field32(&word, TXD_W1_HW_SEQUENCE, 1);
1233         rt2x00_desc_write(txd, 1, word);
1234
1235         rt2x00_desc_read(txd, 2, &word);
1236         rt2x00_set_field32(&word, TXD_W2_PLCP_SIGNAL, txdesc->signal);
1237         rt2x00_set_field32(&word, TXD_W2_PLCP_SERVICE, txdesc->service);
1238         rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_LOW, txdesc->length_low);
1239         rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_HIGH, txdesc->length_high);
1240         rt2x00_desc_write(txd, 2, word);
1241
1242         rt2x00_desc_read(txd, 5, &word);
1243         rt2x00_set_field32(&word, TXD_W5_TX_POWER,
1244                            TXPOWER_TO_DEV(rt2x00dev->tx_power));
1245         rt2x00_set_field32(&word, TXD_W5_WAITING_DMA_DONE_INT, 1);
1246         rt2x00_desc_write(txd, 5, word);
1247
1248         rt2x00_desc_read(txd, 0, &word);
1249         rt2x00_set_field32(&word, TXD_W0_BURST,
1250                            test_bit(ENTRY_TXD_BURST, &txdesc->flags));
1251         rt2x00_set_field32(&word, TXD_W0_VALID, 1);
1252         rt2x00_set_field32(&word, TXD_W0_MORE_FRAG,
1253                            test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
1254         rt2x00_set_field32(&word, TXD_W0_ACK,
1255                            test_bit(ENTRY_TXD_ACK, &txdesc->flags));
1256         rt2x00_set_field32(&word, TXD_W0_TIMESTAMP,
1257                            test_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags));
1258         rt2x00_set_field32(&word, TXD_W0_OFDM,
1259                            test_bit(ENTRY_TXD_OFDM_RATE, &txdesc->flags));
1260         rt2x00_set_field32(&word, TXD_W0_IFS, txdesc->ifs);
1261         rt2x00_set_field32(&word, TXD_W0_RETRY_MODE,
1262                            !!(control->flags &
1263                               IEEE80211_TXCTL_LONG_RETRY_LIMIT));
1264         rt2x00_set_field32(&word, TXD_W0_TKIP_MIC, 0);
1265         rt2x00_set_field32(&word, TXD_W0_DATABYTE_COUNT, skbdesc->data_len);
1266         rt2x00_set_field32(&word, TXD_W0_BURST2,
1267                            test_bit(ENTRY_TXD_BURST, &txdesc->flags));
1268         rt2x00_set_field32(&word, TXD_W0_CIPHER_ALG, CIPHER_NONE);
1269         rt2x00_desc_write(txd, 0, word);
1270 }
1271
1272 static int rt73usb_get_tx_data_len(struct rt2x00_dev *rt2x00dev,
1273                                    struct sk_buff *skb)
1274 {
1275         int length;
1276
1277         /*
1278          * The length _must_ be a multiple of 4,
1279          * but it must _not_ be a multiple of the USB packet size.
1280          */
1281         length = roundup(skb->len, 4);
1282         length += (4 * !(length % rt2x00dev->usb_maxpacket));
1283
1284         return length;
1285 }
1286
1287 /*
1288  * TX data initialization
1289  */
1290 static void rt73usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
1291                                   const unsigned int queue)
1292 {
1293         u32 reg;
1294
1295         if (queue != RT2X00_BCN_QUEUE_BEACON)
1296                 return;
1297
1298         /*
1299          * For Wi-Fi faily generated beacons between participating stations.
1300          * Set TBTT phase adaptive adjustment step to 8us (default 16us)
1301          */
1302         rt73usb_register_write(rt2x00dev, TXRX_CSR10, 0x00001008);
1303
1304         rt73usb_register_read(rt2x00dev, TXRX_CSR9, &reg);
1305         if (!rt2x00_get_field32(reg, TXRX_CSR9_BEACON_GEN)) {
1306                 rt2x00_set_field32(&reg, TXRX_CSR9_BEACON_GEN, 1);
1307                 rt73usb_register_write(rt2x00dev, TXRX_CSR9, reg);
1308         }
1309 }
1310
1311 /*
1312  * RX control handlers
1313  */
1314 static int rt73usb_agc_to_rssi(struct rt2x00_dev *rt2x00dev, int rxd_w1)
1315 {
1316         u16 eeprom;
1317         u8 offset;
1318         u8 lna;
1319
1320         lna = rt2x00_get_field32(rxd_w1, RXD_W1_RSSI_LNA);
1321         switch (lna) {
1322         case 3:
1323                 offset = 90;
1324                 break;
1325         case 2:
1326                 offset = 74;
1327                 break;
1328         case 1:
1329                 offset = 64;
1330                 break;
1331         default:
1332                 return 0;
1333         }
1334
1335         if (rt2x00dev->rx_status.band == IEEE80211_BAND_5GHZ) {
1336                 if (test_bit(CONFIG_EXTERNAL_LNA_A, &rt2x00dev->flags)) {
1337                         if (lna == 3 || lna == 2)
1338                                 offset += 10;
1339                 } else {
1340                         if (lna == 3)
1341                                 offset += 6;
1342                         else if (lna == 2)
1343                                 offset += 8;
1344                 }
1345
1346                 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_OFFSET_A, &eeprom);
1347                 offset -= rt2x00_get_field16(eeprom, EEPROM_RSSI_OFFSET_A_1);
1348         } else {
1349                 if (test_bit(CONFIG_EXTERNAL_LNA_BG, &rt2x00dev->flags))
1350                         offset += 14;
1351
1352                 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_OFFSET_BG, &eeprom);
1353                 offset -= rt2x00_get_field16(eeprom, EEPROM_RSSI_OFFSET_BG_1);
1354         }
1355
1356         return rt2x00_get_field32(rxd_w1, RXD_W1_RSSI_AGC) * 2 - offset;
1357 }
1358
1359 static void rt73usb_fill_rxdone(struct queue_entry *entry,
1360                                 struct rxdone_entry_desc *rxdesc)
1361 {
1362         struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
1363         __le32 *rxd = (__le32 *)entry->skb->data;
1364         struct ieee80211_hdr *hdr =
1365             (struct ieee80211_hdr *)entry->skb->data + entry->queue->desc_size;
1366         int header_size = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control));
1367         u32 word0;
1368         u32 word1;
1369
1370         rt2x00_desc_read(rxd, 0, &word0);
1371         rt2x00_desc_read(rxd, 1, &word1);
1372
1373         rxdesc->flags = 0;
1374         if (rt2x00_get_field32(word0, RXD_W0_CRC_ERROR))
1375                 rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC;
1376
1377         /*
1378          * Obtain the status about this packet.
1379          */
1380         rxdesc->signal = rt2x00_get_field32(word1, RXD_W1_SIGNAL);
1381         rxdesc->rssi = rt73usb_agc_to_rssi(entry->queue->rt2x00dev, word1);
1382         rxdesc->ofdm = rt2x00_get_field32(word0, RXD_W0_OFDM);
1383         rxdesc->size = rt2x00_get_field32(word0, RXD_W0_DATABYTE_COUNT);
1384         rxdesc->my_bss = !!rt2x00_get_field32(word0, RXD_W0_MY_BSS);
1385
1386         /*
1387          * The data behind the ieee80211 header must be
1388          * aligned on a 4 byte boundary.
1389          */
1390         if (header_size % 4 == 0) {
1391                 skb_push(entry->skb, 2);
1392                 memmove(entry->skb->data, entry->skb->data + 2,
1393                         entry->skb->len - 2);
1394         }
1395
1396         /*
1397          * Set descriptor and data pointer.
1398          */
1399         skbdesc->data = entry->skb->data + entry->queue->desc_size;
1400         skbdesc->data_len = rxdesc->size;
1401         skbdesc->desc = entry->skb->data;
1402         skbdesc->desc_len = entry->queue->desc_size;
1403
1404         /*
1405          * Remove descriptor from skb buffer and trim the whole thing
1406          * down to only contain data.
1407          */
1408         skb_pull(entry->skb, skbdesc->desc_len);
1409         skb_trim(entry->skb, rxdesc->size);
1410 }
1411
1412 /*
1413  * Device probe functions.
1414  */
1415 static int rt73usb_validate_eeprom(struct rt2x00_dev *rt2x00dev)
1416 {
1417         u16 word;
1418         u8 *mac;
1419         s8 value;
1420
1421         rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom, EEPROM_SIZE);
1422
1423         /*
1424          * Start validation of the data that has been read.
1425          */
1426         mac = rt2x00_eeprom_addr(rt2x00dev, EEPROM_MAC_ADDR_0);
1427         if (!is_valid_ether_addr(mac)) {
1428                 DECLARE_MAC_BUF(macbuf);
1429
1430                 random_ether_addr(mac);
1431                 EEPROM(rt2x00dev, "MAC: %s\n", print_mac(macbuf, mac));
1432         }
1433
1434         rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &word);
1435         if (word == 0xffff) {
1436                 rt2x00_set_field16(&word, EEPROM_ANTENNA_NUM, 2);
1437                 rt2x00_set_field16(&word, EEPROM_ANTENNA_TX_DEFAULT,
1438                                    ANTENNA_B);
1439                 rt2x00_set_field16(&word, EEPROM_ANTENNA_RX_DEFAULT,
1440                                    ANTENNA_B);
1441                 rt2x00_set_field16(&word, EEPROM_ANTENNA_FRAME_TYPE, 0);
1442                 rt2x00_set_field16(&word, EEPROM_ANTENNA_DYN_TXAGC, 0);
1443                 rt2x00_set_field16(&word, EEPROM_ANTENNA_HARDWARE_RADIO, 0);
1444                 rt2x00_set_field16(&word, EEPROM_ANTENNA_RF_TYPE, RF5226);
1445                 rt2x00_eeprom_write(rt2x00dev, EEPROM_ANTENNA, word);
1446                 EEPROM(rt2x00dev, "Antenna: 0x%04x\n", word);
1447         }
1448
1449         rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC, &word);
1450         if (word == 0xffff) {
1451                 rt2x00_set_field16(&word, EEPROM_NIC_EXTERNAL_LNA, 0);
1452                 rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC, word);
1453                 EEPROM(rt2x00dev, "NIC: 0x%04x\n", word);
1454         }
1455
1456         rt2x00_eeprom_read(rt2x00dev, EEPROM_LED, &word);
1457         if (word == 0xffff) {
1458                 rt2x00_set_field16(&word, EEPROM_LED_POLARITY_RDY_G, 0);
1459                 rt2x00_set_field16(&word, EEPROM_LED_POLARITY_RDY_A, 0);
1460                 rt2x00_set_field16(&word, EEPROM_LED_POLARITY_ACT, 0);
1461                 rt2x00_set_field16(&word, EEPROM_LED_POLARITY_GPIO_0, 0);
1462                 rt2x00_set_field16(&word, EEPROM_LED_POLARITY_GPIO_1, 0);
1463                 rt2x00_set_field16(&word, EEPROM_LED_POLARITY_GPIO_2, 0);
1464                 rt2x00_set_field16(&word, EEPROM_LED_POLARITY_GPIO_3, 0);
1465                 rt2x00_set_field16(&word, EEPROM_LED_POLARITY_GPIO_4, 0);
1466                 rt2x00_set_field16(&word, EEPROM_LED_LED_MODE,
1467                                    LED_MODE_DEFAULT);
1468                 rt2x00_eeprom_write(rt2x00dev, EEPROM_LED, word);
1469                 EEPROM(rt2x00dev, "Led: 0x%04x\n", word);
1470         }
1471
1472         rt2x00_eeprom_read(rt2x00dev, EEPROM_FREQ, &word);
1473         if (word == 0xffff) {
1474                 rt2x00_set_field16(&word, EEPROM_FREQ_OFFSET, 0);
1475                 rt2x00_set_field16(&word, EEPROM_FREQ_SEQ, 0);
1476                 rt2x00_eeprom_write(rt2x00dev, EEPROM_FREQ, word);
1477                 EEPROM(rt2x00dev, "Freq: 0x%04x\n", word);
1478         }
1479
1480         rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_OFFSET_BG, &word);
1481         if (word == 0xffff) {
1482                 rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_BG_1, 0);
1483                 rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_BG_2, 0);
1484                 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_OFFSET_BG, word);
1485                 EEPROM(rt2x00dev, "RSSI OFFSET BG: 0x%04x\n", word);
1486         } else {
1487                 value = rt2x00_get_field16(word, EEPROM_RSSI_OFFSET_BG_1);
1488                 if (value < -10 || value > 10)
1489                         rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_BG_1, 0);
1490                 value = rt2x00_get_field16(word, EEPROM_RSSI_OFFSET_BG_2);
1491                 if (value < -10 || value > 10)
1492                         rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_BG_2, 0);
1493                 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_OFFSET_BG, word);
1494         }
1495
1496         rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_OFFSET_A, &word);
1497         if (word == 0xffff) {
1498                 rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_A_1, 0);
1499                 rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_A_2, 0);
1500                 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_OFFSET_A, word);
1501                 EEPROM(rt2x00dev, "RSSI OFFSET A: 0x%04x\n", word);
1502         } else {
1503                 value = rt2x00_get_field16(word, EEPROM_RSSI_OFFSET_A_1);
1504                 if (value < -10 || value > 10)
1505                         rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_A_1, 0);
1506                 value = rt2x00_get_field16(word, EEPROM_RSSI_OFFSET_A_2);
1507                 if (value < -10 || value > 10)
1508                         rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_A_2, 0);
1509                 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_OFFSET_A, word);
1510         }
1511
1512         return 0;
1513 }
1514
1515 static int rt73usb_init_eeprom(struct rt2x00_dev *rt2x00dev)
1516 {
1517         u32 reg;
1518         u16 value;
1519         u16 eeprom;
1520
1521         /*
1522          * Read EEPROM word for configuration.
1523          */
1524         rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom);
1525
1526         /*
1527          * Identify RF chipset.
1528          */
1529         value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE);
1530         rt73usb_register_read(rt2x00dev, MAC_CSR0, &reg);
1531         rt2x00_set_chip(rt2x00dev, RT2571, value, reg);
1532
1533         if (!rt2x00_check_rev(&rt2x00dev->chip, 0x25730)) {
1534                 ERROR(rt2x00dev, "Invalid RT chipset detected.\n");
1535                 return -ENODEV;
1536         }
1537
1538         if (!rt2x00_rf(&rt2x00dev->chip, RF5226) &&
1539             !rt2x00_rf(&rt2x00dev->chip, RF2528) &&
1540             !rt2x00_rf(&rt2x00dev->chip, RF5225) &&
1541             !rt2x00_rf(&rt2x00dev->chip, RF2527)) {
1542                 ERROR(rt2x00dev, "Invalid RF chipset detected.\n");
1543                 return -ENODEV;
1544         }
1545
1546         /*
1547          * Identify default antenna configuration.
1548          */
1549         rt2x00dev->default_ant.tx =
1550             rt2x00_get_field16(eeprom, EEPROM_ANTENNA_TX_DEFAULT);
1551         rt2x00dev->default_ant.rx =
1552             rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RX_DEFAULT);
1553
1554         /*
1555          * Read the Frame type.
1556          */
1557         if (rt2x00_get_field16(eeprom, EEPROM_ANTENNA_FRAME_TYPE))
1558                 __set_bit(CONFIG_FRAME_TYPE, &rt2x00dev->flags);
1559
1560         /*
1561          * Read frequency offset.
1562          */
1563         rt2x00_eeprom_read(rt2x00dev, EEPROM_FREQ, &eeprom);
1564         rt2x00dev->freq_offset = rt2x00_get_field16(eeprom, EEPROM_FREQ_OFFSET);
1565
1566         /*
1567          * Read external LNA informations.
1568          */
1569         rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC, &eeprom);
1570
1571         if (rt2x00_get_field16(eeprom, EEPROM_NIC_EXTERNAL_LNA)) {
1572                 __set_bit(CONFIG_EXTERNAL_LNA_A, &rt2x00dev->flags);
1573                 __set_bit(CONFIG_EXTERNAL_LNA_BG, &rt2x00dev->flags);
1574         }
1575
1576         /*
1577          * Store led settings, for correct led behaviour.
1578          */
1579 #ifdef CONFIG_RT73USB_LEDS
1580         rt2x00_eeprom_read(rt2x00dev, EEPROM_LED, &eeprom);
1581
1582         switch (value) {
1583         case LED_MODE_TXRX_ACTIVITY:
1584         case LED_MODE_ASUS:
1585         case LED_MODE_ALPHA:
1586         case LED_MODE_DEFAULT:
1587                 rt2x00dev->led_flags =
1588                     LED_SUPPORT_RADIO | LED_SUPPORT_ASSOC;
1589                 break;
1590         case LED_MODE_SIGNAL_STRENGTH:
1591                 rt2x00dev->led_flags =
1592                     LED_SUPPORT_RADIO | LED_SUPPORT_ASSOC |
1593                     LED_SUPPORT_QUALITY;
1594                 break;
1595         }
1596
1597         rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_LED_MODE, value);
1598         rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_0,
1599                            rt2x00_get_field16(eeprom,
1600                                               EEPROM_LED_POLARITY_GPIO_0));
1601         rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_1,
1602                            rt2x00_get_field16(eeprom,
1603                                               EEPROM_LED_POLARITY_GPIO_1));
1604         rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_2,
1605                            rt2x00_get_field16(eeprom,
1606                                               EEPROM_LED_POLARITY_GPIO_2));
1607         rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_3,
1608                            rt2x00_get_field16(eeprom,
1609                                               EEPROM_LED_POLARITY_GPIO_3));
1610         rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_4,
1611                            rt2x00_get_field16(eeprom,
1612                                               EEPROM_LED_POLARITY_GPIO_4));
1613         rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_ACT,
1614                            rt2x00_get_field16(eeprom, EEPROM_LED_POLARITY_ACT));
1615         rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_READY_BG,
1616                            rt2x00_get_field16(eeprom,
1617                                               EEPROM_LED_POLARITY_RDY_G));
1618         rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_READY_A,
1619                            rt2x00_get_field16(eeprom,
1620                                               EEPROM_LED_POLARITY_RDY_A));
1621 #endif /* CONFIG_RT73USB_LEDS */
1622
1623         return 0;
1624 }
1625
1626 /*
1627  * RF value list for RF2528
1628  * Supports: 2.4 GHz
1629  */
1630 static const struct rf_channel rf_vals_bg_2528[] = {
1631         { 1,  0x00002c0c, 0x00000786, 0x00068255, 0x000fea0b },
1632         { 2,  0x00002c0c, 0x00000786, 0x00068255, 0x000fea1f },
1633         { 3,  0x00002c0c, 0x0000078a, 0x00068255, 0x000fea0b },
1634         { 4,  0x00002c0c, 0x0000078a, 0x00068255, 0x000fea1f },
1635         { 5,  0x00002c0c, 0x0000078e, 0x00068255, 0x000fea0b },
1636         { 6,  0x00002c0c, 0x0000078e, 0x00068255, 0x000fea1f },
1637         { 7,  0x00002c0c, 0x00000792, 0x00068255, 0x000fea0b },
1638         { 8,  0x00002c0c, 0x00000792, 0x00068255, 0x000fea1f },
1639         { 9,  0x00002c0c, 0x00000796, 0x00068255, 0x000fea0b },
1640         { 10, 0x00002c0c, 0x00000796, 0x00068255, 0x000fea1f },
1641         { 11, 0x00002c0c, 0x0000079a, 0x00068255, 0x000fea0b },
1642         { 12, 0x00002c0c, 0x0000079a, 0x00068255, 0x000fea1f },
1643         { 13, 0x00002c0c, 0x0000079e, 0x00068255, 0x000fea0b },
1644         { 14, 0x00002c0c, 0x000007a2, 0x00068255, 0x000fea13 },
1645 };
1646
1647 /*
1648  * RF value list for RF5226
1649  * Supports: 2.4 GHz & 5.2 GHz
1650  */
1651 static const struct rf_channel rf_vals_5226[] = {
1652         { 1,  0x00002c0c, 0x00000786, 0x00068255, 0x000fea0b },
1653         { 2,  0x00002c0c, 0x00000786, 0x00068255, 0x000fea1f },
1654         { 3,  0x00002c0c, 0x0000078a, 0x00068255, 0x000fea0b },
1655         { 4,  0x00002c0c, 0x0000078a, 0x00068255, 0x000fea1f },
1656         { 5,  0x00002c0c, 0x0000078e, 0x00068255, 0x000fea0b },
1657         { 6,  0x00002c0c, 0x0000078e, 0x00068255, 0x000fea1f },
1658         { 7,  0x00002c0c, 0x00000792, 0x00068255, 0x000fea0b },
1659         { 8,  0x00002c0c, 0x00000792, 0x00068255, 0x000fea1f },
1660         { 9,  0x00002c0c, 0x00000796, 0x00068255, 0x000fea0b },
1661         { 10, 0x00002c0c, 0x00000796, 0x00068255, 0x000fea1f },
1662         { 11, 0x00002c0c, 0x0000079a, 0x00068255, 0x000fea0b },
1663         { 12, 0x00002c0c, 0x0000079a, 0x00068255, 0x000fea1f },
1664         { 13, 0x00002c0c, 0x0000079e, 0x00068255, 0x000fea0b },
1665         { 14, 0x00002c0c, 0x000007a2, 0x00068255, 0x000fea13 },
1666
1667         /* 802.11 UNI / HyperLan 2 */
1668         { 36, 0x00002c0c, 0x0000099a, 0x00098255, 0x000fea23 },
1669         { 40, 0x00002c0c, 0x000009a2, 0x00098255, 0x000fea03 },
1670         { 44, 0x00002c0c, 0x000009a6, 0x00098255, 0x000fea0b },
1671         { 48, 0x00002c0c, 0x000009aa, 0x00098255, 0x000fea13 },
1672         { 52, 0x00002c0c, 0x000009ae, 0x00098255, 0x000fea1b },
1673         { 56, 0x00002c0c, 0x000009b2, 0x00098255, 0x000fea23 },
1674         { 60, 0x00002c0c, 0x000009ba, 0x00098255, 0x000fea03 },
1675         { 64, 0x00002c0c, 0x000009be, 0x00098255, 0x000fea0b },
1676
1677         /* 802.11 HyperLan 2 */
1678         { 100, 0x00002c0c, 0x00000a2a, 0x000b8255, 0x000fea03 },
1679         { 104, 0x00002c0c, 0x00000a2e, 0x000b8255, 0x000fea0b },
1680         { 108, 0x00002c0c, 0x00000a32, 0x000b8255, 0x000fea13 },
1681         { 112, 0x00002c0c, 0x00000a36, 0x000b8255, 0x000fea1b },
1682         { 116, 0x00002c0c, 0x00000a3a, 0x000b8255, 0x000fea23 },
1683         { 120, 0x00002c0c, 0x00000a82, 0x000b8255, 0x000fea03 },
1684         { 124, 0x00002c0c, 0x00000a86, 0x000b8255, 0x000fea0b },
1685         { 128, 0x00002c0c, 0x00000a8a, 0x000b8255, 0x000fea13 },
1686         { 132, 0x00002c0c, 0x00000a8e, 0x000b8255, 0x000fea1b },
1687         { 136, 0x00002c0c, 0x00000a92, 0x000b8255, 0x000fea23 },
1688
1689         /* 802.11 UNII */
1690         { 140, 0x00002c0c, 0x00000a9a, 0x000b8255, 0x000fea03 },
1691         { 149, 0x00002c0c, 0x00000aa2, 0x000b8255, 0x000fea1f },
1692         { 153, 0x00002c0c, 0x00000aa6, 0x000b8255, 0x000fea27 },
1693         { 157, 0x00002c0c, 0x00000aae, 0x000b8255, 0x000fea07 },
1694         { 161, 0x00002c0c, 0x00000ab2, 0x000b8255, 0x000fea0f },
1695         { 165, 0x00002c0c, 0x00000ab6, 0x000b8255, 0x000fea17 },
1696
1697         /* MMAC(Japan)J52 ch 34,38,42,46 */
1698         { 34, 0x00002c0c, 0x0008099a, 0x000da255, 0x000d3a0b },
1699         { 38, 0x00002c0c, 0x0008099e, 0x000da255, 0x000d3a13 },
1700         { 42, 0x00002c0c, 0x000809a2, 0x000da255, 0x000d3a1b },
1701         { 46, 0x00002c0c, 0x000809a6, 0x000da255, 0x000d3a23 },
1702 };
1703
1704 /*
1705  * RF value list for RF5225 & RF2527
1706  * Supports: 2.4 GHz & 5.2 GHz
1707  */
1708 static const struct rf_channel rf_vals_5225_2527[] = {
1709         { 1,  0x00002ccc, 0x00004786, 0x00068455, 0x000ffa0b },
1710         { 2,  0x00002ccc, 0x00004786, 0x00068455, 0x000ffa1f },
1711         { 3,  0x00002ccc, 0x0000478a, 0x00068455, 0x000ffa0b },
1712         { 4,  0x00002ccc, 0x0000478a, 0x00068455, 0x000ffa1f },
1713         { 5,  0x00002ccc, 0x0000478e, 0x00068455, 0x000ffa0b },
1714         { 6,  0x00002ccc, 0x0000478e, 0x00068455, 0x000ffa1f },
1715         { 7,  0x00002ccc, 0x00004792, 0x00068455, 0x000ffa0b },
1716         { 8,  0x00002ccc, 0x00004792, 0x00068455, 0x000ffa1f },
1717         { 9,  0x00002ccc, 0x00004796, 0x00068455, 0x000ffa0b },
1718         { 10, 0x00002ccc, 0x00004796, 0x00068455, 0x000ffa1f },
1719         { 11, 0x00002ccc, 0x0000479a, 0x00068455, 0x000ffa0b },
1720         { 12, 0x00002ccc, 0x0000479a, 0x00068455, 0x000ffa1f },
1721         { 13, 0x00002ccc, 0x0000479e, 0x00068455, 0x000ffa0b },
1722         { 14, 0x00002ccc, 0x000047a2, 0x00068455, 0x000ffa13 },
1723
1724         /* 802.11 UNI / HyperLan 2 */
1725         { 36, 0x00002ccc, 0x0000499a, 0x0009be55, 0x000ffa23 },
1726         { 40, 0x00002ccc, 0x000049a2, 0x0009be55, 0x000ffa03 },
1727         { 44, 0x00002ccc, 0x000049a6, 0x0009be55, 0x000ffa0b },
1728         { 48, 0x00002ccc, 0x000049aa, 0x0009be55, 0x000ffa13 },
1729         { 52, 0x00002ccc, 0x000049ae, 0x0009ae55, 0x000ffa1b },
1730         { 56, 0x00002ccc, 0x000049b2, 0x0009ae55, 0x000ffa23 },
1731         { 60, 0x00002ccc, 0x000049ba, 0x0009ae55, 0x000ffa03 },
1732         { 64, 0x00002ccc, 0x000049be, 0x0009ae55, 0x000ffa0b },
1733
1734         /* 802.11 HyperLan 2 */
1735         { 100, 0x00002ccc, 0x00004a2a, 0x000bae55, 0x000ffa03 },
1736         { 104, 0x00002ccc, 0x00004a2e, 0x000bae55, 0x000ffa0b },
1737         { 108, 0x00002ccc, 0x00004a32, 0x000bae55, 0x000ffa13 },
1738         { 112, 0x00002ccc, 0x00004a36, 0x000bae55, 0x000ffa1b },
1739         { 116, 0x00002ccc, 0x00004a3a, 0x000bbe55, 0x000ffa23 },
1740         { 120, 0x00002ccc, 0x00004a82, 0x000bbe55, 0x000ffa03 },
1741         { 124, 0x00002ccc, 0x00004a86, 0x000bbe55, 0x000ffa0b },
1742         { 128, 0x00002ccc, 0x00004a8a, 0x000bbe55, 0x000ffa13 },
1743         { 132, 0x00002ccc, 0x00004a8e, 0x000bbe55, 0x000ffa1b },
1744         { 136, 0x00002ccc, 0x00004a92, 0x000bbe55, 0x000ffa23 },
1745
1746         /* 802.11 UNII */
1747         { 140, 0x00002ccc, 0x00004a9a, 0x000bbe55, 0x000ffa03 },
1748         { 149, 0x00002ccc, 0x00004aa2, 0x000bbe55, 0x000ffa1f },
1749         { 153, 0x00002ccc, 0x00004aa6, 0x000bbe55, 0x000ffa27 },
1750         { 157, 0x00002ccc, 0x00004aae, 0x000bbe55, 0x000ffa07 },
1751         { 161, 0x00002ccc, 0x00004ab2, 0x000bbe55, 0x000ffa0f },
1752         { 165, 0x00002ccc, 0x00004ab6, 0x000bbe55, 0x000ffa17 },
1753
1754         /* MMAC(Japan)J52 ch 34,38,42,46 */
1755         { 34, 0x00002ccc, 0x0000499a, 0x0009be55, 0x000ffa0b },
1756         { 38, 0x00002ccc, 0x0000499e, 0x0009be55, 0x000ffa13 },
1757         { 42, 0x00002ccc, 0x000049a2, 0x0009be55, 0x000ffa1b },
1758         { 46, 0x00002ccc, 0x000049a6, 0x0009be55, 0x000ffa23 },
1759 };
1760
1761
1762 static void rt73usb_probe_hw_mode(struct rt2x00_dev *rt2x00dev)
1763 {
1764         struct hw_mode_spec *spec = &rt2x00dev->spec;
1765         u8 *txpower;
1766         unsigned int i;
1767
1768         /*
1769          * Initialize all hw fields.
1770          */
1771         rt2x00dev->hw->flags =
1772             IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE |
1773             IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING;
1774         rt2x00dev->hw->extra_tx_headroom = TXD_DESC_SIZE;
1775         rt2x00dev->hw->max_signal = MAX_SIGNAL;
1776         rt2x00dev->hw->max_rssi = MAX_RX_SSI;
1777         rt2x00dev->hw->queues = 4;
1778
1779         SET_IEEE80211_DEV(rt2x00dev->hw, &rt2x00dev_usb(rt2x00dev)->dev);
1780         SET_IEEE80211_PERM_ADDR(rt2x00dev->hw,
1781                                 rt2x00_eeprom_addr(rt2x00dev,
1782                                                    EEPROM_MAC_ADDR_0));
1783
1784         /*
1785          * Convert tx_power array in eeprom.
1786          */
1787         txpower = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_G_START);
1788         for (i = 0; i < 14; i++)
1789                 txpower[i] = TXPOWER_FROM_DEV(txpower[i]);
1790
1791         /*
1792          * Initialize hw_mode information.
1793          */
1794         spec->num_modes = 2;
1795         spec->num_rates = 12;
1796         spec->tx_power_a = NULL;
1797         spec->tx_power_bg = txpower;
1798         spec->tx_power_default = DEFAULT_TXPOWER;
1799
1800         if (rt2x00_rf(&rt2x00dev->chip, RF2528)) {
1801                 spec->num_channels = ARRAY_SIZE(rf_vals_bg_2528);
1802                 spec->channels = rf_vals_bg_2528;
1803         } else if (rt2x00_rf(&rt2x00dev->chip, RF5226)) {
1804                 spec->num_channels = ARRAY_SIZE(rf_vals_5226);
1805                 spec->channels = rf_vals_5226;
1806         } else if (rt2x00_rf(&rt2x00dev->chip, RF2527)) {
1807                 spec->num_channels = 14;
1808                 spec->channels = rf_vals_5225_2527;
1809         } else if (rt2x00_rf(&rt2x00dev->chip, RF5225)) {
1810                 spec->num_channels = ARRAY_SIZE(rf_vals_5225_2527);
1811                 spec->channels = rf_vals_5225_2527;
1812         }
1813
1814         if (rt2x00_rf(&rt2x00dev->chip, RF5225) ||
1815             rt2x00_rf(&rt2x00dev->chip, RF5226)) {
1816                 spec->num_modes = 3;
1817
1818                 txpower = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_A_START);
1819                 for (i = 0; i < 14; i++)
1820                         txpower[i] = TXPOWER_FROM_DEV(txpower[i]);
1821
1822                 spec->tx_power_a = txpower;
1823         }
1824 }
1825
1826 static int rt73usb_probe_hw(struct rt2x00_dev *rt2x00dev)
1827 {
1828         int retval;
1829
1830         /*
1831          * Allocate eeprom data.
1832          */
1833         retval = rt73usb_validate_eeprom(rt2x00dev);
1834         if (retval)
1835                 return retval;
1836
1837         retval = rt73usb_init_eeprom(rt2x00dev);
1838         if (retval)
1839                 return retval;
1840
1841         /*
1842          * Initialize hw specifications.
1843          */
1844         rt73usb_probe_hw_mode(rt2x00dev);
1845
1846         /*
1847          * This device requires firmware.
1848          */
1849         __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags);
1850         __set_bit(DRIVER_REQUIRE_FIRMWARE_CRC_ITU_T, &rt2x00dev->flags);
1851
1852         /*
1853          * Set the rssi offset.
1854          */
1855         rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
1856
1857         return 0;
1858 }
1859
1860 /*
1861  * IEEE80211 stack callback functions.
1862  */
1863 static void rt73usb_configure_filter(struct ieee80211_hw *hw,
1864                                      unsigned int changed_flags,
1865                                      unsigned int *total_flags,
1866                                      int mc_count,
1867                                      struct dev_addr_list *mc_list)
1868 {
1869         struct rt2x00_dev *rt2x00dev = hw->priv;
1870         u32 reg;
1871
1872         /*
1873          * Mask off any flags we are going to ignore from
1874          * the total_flags field.
1875          */
1876         *total_flags &=
1877             FIF_ALLMULTI |
1878             FIF_FCSFAIL |
1879             FIF_PLCPFAIL |
1880             FIF_CONTROL |
1881             FIF_OTHER_BSS |
1882             FIF_PROMISC_IN_BSS;
1883
1884         /*
1885          * Apply some rules to the filters:
1886          * - Some filters imply different filters to be set.
1887          * - Some things we can't filter out at all.
1888          */
1889         if (mc_count)
1890                 *total_flags |= FIF_ALLMULTI;
1891         if (*total_flags & FIF_OTHER_BSS ||
1892             *total_flags & FIF_PROMISC_IN_BSS)
1893                 *total_flags |= FIF_PROMISC_IN_BSS | FIF_OTHER_BSS;
1894
1895         /*
1896          * Check if there is any work left for us.
1897          */
1898         if (rt2x00dev->packet_filter == *total_flags)
1899                 return;
1900         rt2x00dev->packet_filter = *total_flags;
1901
1902         /*
1903          * When in atomic context, reschedule and let rt2x00lib
1904          * call this function again.
1905          */
1906         if (in_atomic()) {
1907                 queue_work(rt2x00dev->hw->workqueue, &rt2x00dev->filter_work);
1908                 return;
1909         }
1910
1911         /*
1912          * Start configuration steps.
1913          * Note that the version error will always be dropped
1914          * and broadcast frames will always be accepted since
1915          * there is no filter for it at this time.
1916          */
1917         rt73usb_register_read(rt2x00dev, TXRX_CSR0, &reg);
1918         rt2x00_set_field32(&reg, TXRX_CSR0_DROP_CRC,
1919                            !(*total_flags & FIF_FCSFAIL));
1920         rt2x00_set_field32(&reg, TXRX_CSR0_DROP_PHYSICAL,
1921                            !(*total_flags & FIF_PLCPFAIL));
1922         rt2x00_set_field32(&reg, TXRX_CSR0_DROP_CONTROL,
1923                            !(*total_flags & FIF_CONTROL));
1924         rt2x00_set_field32(&reg, TXRX_CSR0_DROP_NOT_TO_ME,
1925                            !(*total_flags & FIF_PROMISC_IN_BSS));
1926         rt2x00_set_field32(&reg, TXRX_CSR0_DROP_TO_DS,
1927                            !(*total_flags & FIF_PROMISC_IN_BSS));
1928         rt2x00_set_field32(&reg, TXRX_CSR0_DROP_VERSION_ERROR, 1);
1929         rt2x00_set_field32(&reg, TXRX_CSR0_DROP_MULTICAST,
1930                            !(*total_flags & FIF_ALLMULTI));
1931         rt2x00_set_field32(&reg, TXRX_CSR0_DROP_BROADCAST, 0);
1932         rt2x00_set_field32(&reg, TXRX_CSR0_DROP_ACK_CTS,
1933                            !(*total_flags & FIF_CONTROL));
1934         rt73usb_register_write(rt2x00dev, TXRX_CSR0, reg);
1935 }
1936
1937 static int rt73usb_set_retry_limit(struct ieee80211_hw *hw,
1938                                    u32 short_retry, u32 long_retry)
1939 {
1940         struct rt2x00_dev *rt2x00dev = hw->priv;
1941         u32 reg;
1942
1943         rt73usb_register_read(rt2x00dev, TXRX_CSR4, &reg);
1944         rt2x00_set_field32(&reg, TXRX_CSR4_LONG_RETRY_LIMIT, long_retry);
1945         rt2x00_set_field32(&reg, TXRX_CSR4_SHORT_RETRY_LIMIT, short_retry);
1946         rt73usb_register_write(rt2x00dev, TXRX_CSR4, reg);
1947
1948         return 0;
1949 }
1950
1951 #if 0
1952 /*
1953  * Mac80211 demands get_tsf must be atomic.
1954  * This is not possible for rt73usb since all register access
1955  * functions require sleeping. Untill mac80211 no longer needs
1956  * get_tsf to be atomic, this function should be disabled.
1957  */
1958 static u64 rt73usb_get_tsf(struct ieee80211_hw *hw)
1959 {
1960         struct rt2x00_dev *rt2x00dev = hw->priv;
1961         u64 tsf;
1962         u32 reg;
1963
1964         rt73usb_register_read(rt2x00dev, TXRX_CSR13, &reg);
1965         tsf = (u64) rt2x00_get_field32(reg, TXRX_CSR13_HIGH_TSFTIMER) << 32;
1966         rt73usb_register_read(rt2x00dev, TXRX_CSR12, &reg);
1967         tsf |= rt2x00_get_field32(reg, TXRX_CSR12_LOW_TSFTIMER);
1968
1969         return tsf;
1970 }
1971 #else
1972 #define rt73usb_get_tsf NULL
1973 #endif
1974
1975 static void rt73usb_reset_tsf(struct ieee80211_hw *hw)
1976 {
1977         struct rt2x00_dev *rt2x00dev = hw->priv;
1978
1979         rt73usb_register_write(rt2x00dev, TXRX_CSR12, 0);
1980         rt73usb_register_write(rt2x00dev, TXRX_CSR13, 0);
1981 }
1982
1983 static int rt73usb_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb,
1984                                  struct ieee80211_tx_control *control)
1985 {
1986         struct rt2x00_dev *rt2x00dev = hw->priv;
1987         struct rt2x00_intf *intf = vif_to_intf(control->vif);
1988         struct skb_frame_desc *skbdesc;
1989         unsigned int beacon_base;
1990         unsigned int timeout;
1991
1992         if (unlikely(!intf->beacon))
1993                 return -ENOBUFS;
1994
1995         /*
1996          * Add the descriptor in front of the skb.
1997          */
1998         skb_push(skb, intf->beacon->queue->desc_size);
1999         memset(skb->data, 0, intf->beacon->queue->desc_size);
2000
2001         /*
2002          * Fill in skb descriptor
2003          */
2004         skbdesc = get_skb_frame_desc(skb);
2005         memset(skbdesc, 0, sizeof(*skbdesc));
2006         skbdesc->flags |= FRAME_DESC_DRIVER_GENERATED;
2007         skbdesc->data = skb->data + intf->beacon->queue->desc_size;
2008         skbdesc->data_len = skb->len - intf->beacon->queue->desc_size;
2009         skbdesc->desc = skb->data;
2010         skbdesc->desc_len = intf->beacon->queue->desc_size;
2011         skbdesc->entry = intf->beacon;
2012
2013         /*
2014          * mac80211 doesn't provide the control->queue variable
2015          * for beacons. Set our own queue identification so
2016          * it can be used during descriptor initialization.
2017          */
2018         control->queue = RT2X00_BCN_QUEUE_BEACON;
2019         rt2x00lib_write_tx_desc(rt2x00dev, skb, control);
2020
2021         /*
2022          * Write entire beacon with descriptor to register,
2023          * and kick the beacon generator.
2024          */
2025         beacon_base = HW_BEACON_OFFSET(intf->beacon->entry_idx);
2026         timeout = REGISTER_TIMEOUT * (skb->len / sizeof(u32));
2027         rt2x00usb_vendor_request(rt2x00dev, USB_MULTI_WRITE,
2028                                  USB_VENDOR_REQUEST_OUT, beacon_base, 0,
2029                                  skb->data, skb->len, timeout);
2030         rt73usb_kick_tx_queue(rt2x00dev, control->queue);
2031
2032         return 0;
2033 }
2034
2035 static const struct ieee80211_ops rt73usb_mac80211_ops = {
2036         .tx                     = rt2x00mac_tx,
2037         .start                  = rt2x00mac_start,
2038         .stop                   = rt2x00mac_stop,
2039         .add_interface          = rt2x00mac_add_interface,
2040         .remove_interface       = rt2x00mac_remove_interface,
2041         .config                 = rt2x00mac_config,
2042         .config_interface       = rt2x00mac_config_interface,
2043         .configure_filter       = rt73usb_configure_filter,
2044         .get_stats              = rt2x00mac_get_stats,
2045         .set_retry_limit        = rt73usb_set_retry_limit,
2046         .bss_info_changed       = rt2x00mac_bss_info_changed,
2047         .conf_tx                = rt2x00mac_conf_tx,
2048         .get_tx_stats           = rt2x00mac_get_tx_stats,
2049         .get_tsf                = rt73usb_get_tsf,
2050         .reset_tsf              = rt73usb_reset_tsf,
2051         .beacon_update          = rt73usb_beacon_update,
2052 };
2053
2054 static const struct rt2x00lib_ops rt73usb_rt2x00_ops = {
2055         .probe_hw               = rt73usb_probe_hw,
2056         .get_firmware_name      = rt73usb_get_firmware_name,
2057         .load_firmware          = rt73usb_load_firmware,
2058         .initialize             = rt2x00usb_initialize,
2059         .uninitialize           = rt2x00usb_uninitialize,
2060         .init_rxentry           = rt2x00usb_init_rxentry,
2061         .init_txentry           = rt2x00usb_init_txentry,
2062         .set_device_state       = rt73usb_set_device_state,
2063         .link_stats             = rt73usb_link_stats,
2064         .reset_tuner            = rt73usb_reset_tuner,
2065         .link_tuner             = rt73usb_link_tuner,
2066         .led_brightness         = rt73usb_led_brightness,
2067         .write_tx_desc          = rt73usb_write_tx_desc,
2068         .write_tx_data          = rt2x00usb_write_tx_data,
2069         .get_tx_data_len        = rt73usb_get_tx_data_len,
2070         .kick_tx_queue          = rt73usb_kick_tx_queue,
2071         .fill_rxdone            = rt73usb_fill_rxdone,
2072         .config_intf            = rt73usb_config_intf,
2073         .config_preamble        = rt73usb_config_preamble,
2074         .config                 = rt73usb_config,
2075 };
2076
2077 static const struct data_queue_desc rt73usb_queue_rx = {
2078         .entry_num              = RX_ENTRIES,
2079         .data_size              = DATA_FRAME_SIZE,
2080         .desc_size              = RXD_DESC_SIZE,
2081         .priv_size              = sizeof(struct queue_entry_priv_usb_rx),
2082 };
2083
2084 static const struct data_queue_desc rt73usb_queue_tx = {
2085         .entry_num              = TX_ENTRIES,
2086         .data_size              = DATA_FRAME_SIZE,
2087         .desc_size              = TXD_DESC_SIZE,
2088         .priv_size              = sizeof(struct queue_entry_priv_usb_tx),
2089 };
2090
2091 static const struct data_queue_desc rt73usb_queue_bcn = {
2092         .entry_num              = 4 * BEACON_ENTRIES,
2093         .data_size              = MGMT_FRAME_SIZE,
2094         .desc_size              = TXINFO_SIZE,
2095         .priv_size              = sizeof(struct queue_entry_priv_usb_tx),
2096 };
2097
2098 static const struct rt2x00_ops rt73usb_ops = {
2099         .name           = KBUILD_MODNAME,
2100         .max_sta_intf   = 1,
2101         .max_ap_intf    = 4,
2102         .eeprom_size    = EEPROM_SIZE,
2103         .rf_size        = RF_SIZE,
2104         .rx             = &rt73usb_queue_rx,
2105         .tx             = &rt73usb_queue_tx,
2106         .bcn            = &rt73usb_queue_bcn,
2107         .lib            = &rt73usb_rt2x00_ops,
2108         .hw             = &rt73usb_mac80211_ops,
2109 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
2110         .debugfs        = &rt73usb_rt2x00debug,
2111 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
2112 };
2113
2114 /*
2115  * rt73usb module information.
2116  */
2117 static struct usb_device_id rt73usb_device_table[] = {
2118         /* AboCom */
2119         { USB_DEVICE(0x07b8, 0xb21d), USB_DEVICE_DATA(&rt73usb_ops) },
2120         /* Askey */
2121         { USB_DEVICE(0x1690, 0x0722), USB_DEVICE_DATA(&rt73usb_ops) },
2122         /* ASUS */
2123         { USB_DEVICE(0x0b05, 0x1723), USB_DEVICE_DATA(&rt73usb_ops) },
2124         { USB_DEVICE(0x0b05, 0x1724), USB_DEVICE_DATA(&rt73usb_ops) },
2125         /* Belkin */
2126         { USB_DEVICE(0x050d, 0x7050), USB_DEVICE_DATA(&rt73usb_ops) },
2127         { USB_DEVICE(0x050d, 0x705a), USB_DEVICE_DATA(&rt73usb_ops) },
2128         { USB_DEVICE(0x050d, 0x905b), USB_DEVICE_DATA(&rt73usb_ops) },
2129         { USB_DEVICE(0x050d, 0x905c), USB_DEVICE_DATA(&rt73usb_ops) },
2130         /* Billionton */
2131         { USB_DEVICE(0x1631, 0xc019), USB_DEVICE_DATA(&rt73usb_ops) },
2132         /* Buffalo */
2133         { USB_DEVICE(0x0411, 0x00f4), USB_DEVICE_DATA(&rt73usb_ops) },
2134         /* CNet */
2135         { USB_DEVICE(0x1371, 0x9022), USB_DEVICE_DATA(&rt73usb_ops) },
2136         { USB_DEVICE(0x1371, 0x9032), USB_DEVICE_DATA(&rt73usb_ops) },
2137         /* Conceptronic */
2138         { USB_DEVICE(0x14b2, 0x3c22), USB_DEVICE_DATA(&rt73usb_ops) },
2139         /* D-Link */
2140         { USB_DEVICE(0x07d1, 0x3c03), USB_DEVICE_DATA(&rt73usb_ops) },
2141         { USB_DEVICE(0x07d1, 0x3c04), USB_DEVICE_DATA(&rt73usb_ops) },
2142         /* Gemtek */
2143         { USB_DEVICE(0x15a9, 0x0004), USB_DEVICE_DATA(&rt73usb_ops) },
2144         /* Gigabyte */
2145         { USB_DEVICE(0x1044, 0x8008), USB_DEVICE_DATA(&rt73usb_ops) },
2146         { USB_DEVICE(0x1044, 0x800a), USB_DEVICE_DATA(&rt73usb_ops) },
2147         /* Huawei-3Com */
2148         { USB_DEVICE(0x1472, 0x0009), USB_DEVICE_DATA(&rt73usb_ops) },
2149         /* Hercules */
2150         { USB_DEVICE(0x06f8, 0xe010), USB_DEVICE_DATA(&rt73usb_ops) },
2151         { USB_DEVICE(0x06f8, 0xe020), USB_DEVICE_DATA(&rt73usb_ops) },
2152         /* Linksys */
2153         { USB_DEVICE(0x13b1, 0x0020), USB_DEVICE_DATA(&rt73usb_ops) },
2154         { USB_DEVICE(0x13b1, 0x0023), USB_DEVICE_DATA(&rt73usb_ops) },
2155         /* MSI */
2156         { USB_DEVICE(0x0db0, 0x6877), USB_DEVICE_DATA(&rt73usb_ops) },
2157         { USB_DEVICE(0x0db0, 0x6874), USB_DEVICE_DATA(&rt73usb_ops) },
2158         { USB_DEVICE(0x0db0, 0xa861), USB_DEVICE_DATA(&rt73usb_ops) },
2159         { USB_DEVICE(0x0db0, 0xa874), USB_DEVICE_DATA(&rt73usb_ops) },
2160         /* Ralink */
2161         { USB_DEVICE(0x148f, 0x2573), USB_DEVICE_DATA(&rt73usb_ops) },
2162         { USB_DEVICE(0x148f, 0x2671), USB_DEVICE_DATA(&rt73usb_ops) },
2163         /* Qcom */
2164         { USB_DEVICE(0x18e8, 0x6196), USB_DEVICE_DATA(&rt73usb_ops) },
2165         { USB_DEVICE(0x18e8, 0x6229), USB_DEVICE_DATA(&rt73usb_ops) },
2166         { USB_DEVICE(0x18e8, 0x6238), USB_DEVICE_DATA(&rt73usb_ops) },
2167         /* Senao */
2168         { USB_DEVICE(0x1740, 0x7100), USB_DEVICE_DATA(&rt73usb_ops) },
2169         /* Sitecom */
2170         { USB_DEVICE(0x0df6, 0x9712), USB_DEVICE_DATA(&rt73usb_ops) },
2171         { USB_DEVICE(0x0df6, 0x90ac), USB_DEVICE_DATA(&rt73usb_ops) },
2172         /* Surecom */
2173         { USB_DEVICE(0x0769, 0x31f3), USB_DEVICE_DATA(&rt73usb_ops) },
2174         /* Planex */
2175         { USB_DEVICE(0x2019, 0xab01), USB_DEVICE_DATA(&rt73usb_ops) },
2176         { USB_DEVICE(0x2019, 0xab50), USB_DEVICE_DATA(&rt73usb_ops) },
2177         { 0, }
2178 };
2179
2180 MODULE_AUTHOR(DRV_PROJECT);
2181 MODULE_VERSION(DRV_VERSION);
2182 MODULE_DESCRIPTION("Ralink RT73 USB Wireless LAN driver.");
2183 MODULE_SUPPORTED_DEVICE("Ralink RT2571W & RT2671 USB chipset based cards");
2184 MODULE_DEVICE_TABLE(usb, rt73usb_device_table);
2185 MODULE_FIRMWARE(FIRMWARE_RT2571);
2186 MODULE_LICENSE("GPL");
2187
2188 static struct usb_driver rt73usb_driver = {
2189         .name           = KBUILD_MODNAME,
2190         .id_table       = rt73usb_device_table,
2191         .probe          = rt2x00usb_probe,
2192         .disconnect     = rt2x00usb_disconnect,
2193         .suspend        = rt2x00usb_suspend,
2194         .resume         = rt2x00usb_resume,
2195 };
2196
2197 static int __init rt73usb_init(void)
2198 {
2199         return usb_register(&rt73usb_driver);
2200 }
2201
2202 static void __exit rt73usb_exit(void)
2203 {
2204         usb_deregister(&rt73usb_driver);
2205 }
2206
2207 module_init(rt73usb_init);
2208 module_exit(rt73usb_exit);