rt2800: initialize BBP_R104 on proper subroutines
[linux/fpc-iii.git] / drivers / net / wireless / rt2x00 / rt2800lib.c
blob238221372a0ea5121354fbc0ab1fbd244d34eb93
1 /*
2 Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
3 Copyright (C) 2010 Ivo van Doorn <IvDoorn@gmail.com>
4 Copyright (C) 2009 Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
5 Copyright (C) 2009 Gertjan van Wingerde <gwingerde@gmail.com>
7 Based on the original rt2800pci.c and rt2800usb.c.
8 Copyright (C) 2009 Alban Browaeys <prahal@yahoo.com>
9 Copyright (C) 2009 Felix Fietkau <nbd@openwrt.org>
10 Copyright (C) 2009 Luis Correia <luis.f.correia@gmail.com>
11 Copyright (C) 2009 Mattias Nissler <mattias.nissler@gmx.de>
12 Copyright (C) 2009 Mark Asselstine <asselsm@gmail.com>
13 Copyright (C) 2009 Xose Vazquez Perez <xose.vazquez@gmail.com>
14 <http://rt2x00.serialmonkey.com>
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 2 of the License, or
19 (at your option) any later version.
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the
28 Free Software Foundation, Inc.,
29 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
33 Module: rt2800lib
34 Abstract: rt2800 generic device routines.
37 #include <linux/crc-ccitt.h>
38 #include <linux/kernel.h>
39 #include <linux/module.h>
40 #include <linux/slab.h>
42 #include "rt2x00.h"
43 #include "rt2800lib.h"
44 #include "rt2800.h"
47 * Register access.
48 * All access to the CSR registers will go through the methods
49 * rt2800_register_read and rt2800_register_write.
50 * BBP and RF register require indirect register access,
51 * and use the CSR registers BBPCSR and RFCSR to achieve this.
52 * These indirect registers work with busy bits,
53 * and we will try maximal REGISTER_BUSY_COUNT times to access
54 * the register while taking a REGISTER_BUSY_DELAY us delay
55 * between each attampt. When the busy bit is still set at that time,
56 * the access attempt is considered to have failed,
57 * and we will print an error.
58 * The _lock versions must be used if you already hold the csr_mutex
60 #define WAIT_FOR_BBP(__dev, __reg) \
61 rt2800_regbusy_read((__dev), BBP_CSR_CFG, BBP_CSR_CFG_BUSY, (__reg))
62 #define WAIT_FOR_RFCSR(__dev, __reg) \
63 rt2800_regbusy_read((__dev), RF_CSR_CFG, RF_CSR_CFG_BUSY, (__reg))
64 #define WAIT_FOR_RF(__dev, __reg) \
65 rt2800_regbusy_read((__dev), RF_CSR_CFG0, RF_CSR_CFG0_BUSY, (__reg))
66 #define WAIT_FOR_MCU(__dev, __reg) \
67 rt2800_regbusy_read((__dev), H2M_MAILBOX_CSR, \
68 H2M_MAILBOX_CSR_OWNER, (__reg))
70 static inline bool rt2800_is_305x_soc(struct rt2x00_dev *rt2x00dev)
72 /* check for rt2872 on SoC */
73 if (!rt2x00_is_soc(rt2x00dev) ||
74 !rt2x00_rt(rt2x00dev, RT2872))
75 return false;
77 /* we know for sure that these rf chipsets are used on rt305x boards */
78 if (rt2x00_rf(rt2x00dev, RF3020) ||
79 rt2x00_rf(rt2x00dev, RF3021) ||
80 rt2x00_rf(rt2x00dev, RF3022))
81 return true;
83 rt2x00_warn(rt2x00dev, "Unknown RF chipset on rt305x\n");
84 return false;
87 static void rt2800_bbp_write(struct rt2x00_dev *rt2x00dev,
88 const unsigned int word, const u8 value)
90 u32 reg;
92 mutex_lock(&rt2x00dev->csr_mutex);
95 * Wait until the BBP becomes available, afterwards we
96 * can safely write the new data into the register.
98 if (WAIT_FOR_BBP(rt2x00dev, &reg)) {
99 reg = 0;
100 rt2x00_set_field32(&reg, BBP_CSR_CFG_VALUE, value);
101 rt2x00_set_field32(&reg, BBP_CSR_CFG_REGNUM, word);
102 rt2x00_set_field32(&reg, BBP_CSR_CFG_BUSY, 1);
103 rt2x00_set_field32(&reg, BBP_CSR_CFG_READ_CONTROL, 0);
104 rt2x00_set_field32(&reg, BBP_CSR_CFG_BBP_RW_MODE, 1);
106 rt2800_register_write_lock(rt2x00dev, BBP_CSR_CFG, reg);
109 mutex_unlock(&rt2x00dev->csr_mutex);
112 static void rt2800_bbp_read(struct rt2x00_dev *rt2x00dev,
113 const unsigned int word, u8 *value)
115 u32 reg;
117 mutex_lock(&rt2x00dev->csr_mutex);
120 * Wait until the BBP becomes available, afterwards we
121 * can safely write the read request into the register.
122 * After the data has been written, we wait until hardware
123 * returns the correct value, if at any time the register
124 * doesn't become available in time, reg will be 0xffffffff
125 * which means we return 0xff to the caller.
127 if (WAIT_FOR_BBP(rt2x00dev, &reg)) {
128 reg = 0;
129 rt2x00_set_field32(&reg, BBP_CSR_CFG_REGNUM, word);
130 rt2x00_set_field32(&reg, BBP_CSR_CFG_BUSY, 1);
131 rt2x00_set_field32(&reg, BBP_CSR_CFG_READ_CONTROL, 1);
132 rt2x00_set_field32(&reg, BBP_CSR_CFG_BBP_RW_MODE, 1);
134 rt2800_register_write_lock(rt2x00dev, BBP_CSR_CFG, reg);
136 WAIT_FOR_BBP(rt2x00dev, &reg);
139 *value = rt2x00_get_field32(reg, BBP_CSR_CFG_VALUE);
141 mutex_unlock(&rt2x00dev->csr_mutex);
144 static void rt2800_rfcsr_write(struct rt2x00_dev *rt2x00dev,
145 const unsigned int word, const u8 value)
147 u32 reg;
149 mutex_lock(&rt2x00dev->csr_mutex);
152 * Wait until the RFCSR becomes available, afterwards we
153 * can safely write the new data into the register.
155 if (WAIT_FOR_RFCSR(rt2x00dev, &reg)) {
156 reg = 0;
157 rt2x00_set_field32(&reg, RF_CSR_CFG_DATA, value);
158 rt2x00_set_field32(&reg, RF_CSR_CFG_REGNUM, word);
159 rt2x00_set_field32(&reg, RF_CSR_CFG_WRITE, 1);
160 rt2x00_set_field32(&reg, RF_CSR_CFG_BUSY, 1);
162 rt2800_register_write_lock(rt2x00dev, RF_CSR_CFG, reg);
165 mutex_unlock(&rt2x00dev->csr_mutex);
168 static void rt2800_rfcsr_read(struct rt2x00_dev *rt2x00dev,
169 const unsigned int word, u8 *value)
171 u32 reg;
173 mutex_lock(&rt2x00dev->csr_mutex);
176 * Wait until the RFCSR becomes available, afterwards we
177 * can safely write the read request into the register.
178 * After the data has been written, we wait until hardware
179 * returns the correct value, if at any time the register
180 * doesn't become available in time, reg will be 0xffffffff
181 * which means we return 0xff to the caller.
183 if (WAIT_FOR_RFCSR(rt2x00dev, &reg)) {
184 reg = 0;
185 rt2x00_set_field32(&reg, RF_CSR_CFG_REGNUM, word);
186 rt2x00_set_field32(&reg, RF_CSR_CFG_WRITE, 0);
187 rt2x00_set_field32(&reg, RF_CSR_CFG_BUSY, 1);
189 rt2800_register_write_lock(rt2x00dev, RF_CSR_CFG, reg);
191 WAIT_FOR_RFCSR(rt2x00dev, &reg);
194 *value = rt2x00_get_field32(reg, RF_CSR_CFG_DATA);
196 mutex_unlock(&rt2x00dev->csr_mutex);
199 static void rt2800_rf_write(struct rt2x00_dev *rt2x00dev,
200 const unsigned int word, const u32 value)
202 u32 reg;
204 mutex_lock(&rt2x00dev->csr_mutex);
207 * Wait until the RF becomes available, afterwards we
208 * can safely write the new data into the register.
210 if (WAIT_FOR_RF(rt2x00dev, &reg)) {
211 reg = 0;
212 rt2x00_set_field32(&reg, RF_CSR_CFG0_REG_VALUE_BW, value);
213 rt2x00_set_field32(&reg, RF_CSR_CFG0_STANDBYMODE, 0);
214 rt2x00_set_field32(&reg, RF_CSR_CFG0_SEL, 0);
215 rt2x00_set_field32(&reg, RF_CSR_CFG0_BUSY, 1);
217 rt2800_register_write_lock(rt2x00dev, RF_CSR_CFG0, reg);
218 rt2x00_rf_write(rt2x00dev, word, value);
221 mutex_unlock(&rt2x00dev->csr_mutex);
224 static int rt2800_enable_wlan_rt3290(struct rt2x00_dev *rt2x00dev)
226 u32 reg;
227 int i, count;
229 rt2800_register_read(rt2x00dev, WLAN_FUN_CTRL, &reg);
230 if (rt2x00_get_field32(reg, WLAN_EN))
231 return 0;
233 rt2x00_set_field32(&reg, WLAN_GPIO_OUT_OE_BIT_ALL, 0xff);
234 rt2x00_set_field32(&reg, FRC_WL_ANT_SET, 1);
235 rt2x00_set_field32(&reg, WLAN_CLK_EN, 0);
236 rt2x00_set_field32(&reg, WLAN_EN, 1);
237 rt2800_register_write(rt2x00dev, WLAN_FUN_CTRL, reg);
239 udelay(REGISTER_BUSY_DELAY);
241 count = 0;
242 do {
244 * Check PLL_LD & XTAL_RDY.
246 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
247 rt2800_register_read(rt2x00dev, CMB_CTRL, &reg);
248 if (rt2x00_get_field32(reg, PLL_LD) &&
249 rt2x00_get_field32(reg, XTAL_RDY))
250 break;
251 udelay(REGISTER_BUSY_DELAY);
254 if (i >= REGISTER_BUSY_COUNT) {
256 if (count >= 10)
257 return -EIO;
259 rt2800_register_write(rt2x00dev, 0x58, 0x018);
260 udelay(REGISTER_BUSY_DELAY);
261 rt2800_register_write(rt2x00dev, 0x58, 0x418);
262 udelay(REGISTER_BUSY_DELAY);
263 rt2800_register_write(rt2x00dev, 0x58, 0x618);
264 udelay(REGISTER_BUSY_DELAY);
265 count++;
266 } else {
267 count = 0;
270 rt2800_register_read(rt2x00dev, WLAN_FUN_CTRL, &reg);
271 rt2x00_set_field32(&reg, PCIE_APP0_CLK_REQ, 0);
272 rt2x00_set_field32(&reg, WLAN_CLK_EN, 1);
273 rt2x00_set_field32(&reg, WLAN_RESET, 1);
274 rt2800_register_write(rt2x00dev, WLAN_FUN_CTRL, reg);
275 udelay(10);
276 rt2x00_set_field32(&reg, WLAN_RESET, 0);
277 rt2800_register_write(rt2x00dev, WLAN_FUN_CTRL, reg);
278 udelay(10);
279 rt2800_register_write(rt2x00dev, INT_SOURCE_CSR, 0x7fffffff);
280 } while (count != 0);
282 return 0;
285 void rt2800_mcu_request(struct rt2x00_dev *rt2x00dev,
286 const u8 command, const u8 token,
287 const u8 arg0, const u8 arg1)
289 u32 reg;
292 * SOC devices don't support MCU requests.
294 if (rt2x00_is_soc(rt2x00dev))
295 return;
297 mutex_lock(&rt2x00dev->csr_mutex);
300 * Wait until the MCU becomes available, afterwards we
301 * can safely write the new data into the register.
303 if (WAIT_FOR_MCU(rt2x00dev, &reg)) {
304 rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_OWNER, 1);
305 rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_CMD_TOKEN, token);
306 rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_ARG0, arg0);
307 rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_ARG1, arg1);
308 rt2800_register_write_lock(rt2x00dev, H2M_MAILBOX_CSR, reg);
310 reg = 0;
311 rt2x00_set_field32(&reg, HOST_CMD_CSR_HOST_COMMAND, command);
312 rt2800_register_write_lock(rt2x00dev, HOST_CMD_CSR, reg);
315 mutex_unlock(&rt2x00dev->csr_mutex);
317 EXPORT_SYMBOL_GPL(rt2800_mcu_request);
319 int rt2800_wait_csr_ready(struct rt2x00_dev *rt2x00dev)
321 unsigned int i = 0;
322 u32 reg;
324 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
325 rt2800_register_read(rt2x00dev, MAC_CSR0, &reg);
326 if (reg && reg != ~0)
327 return 0;
328 msleep(1);
331 rt2x00_err(rt2x00dev, "Unstable hardware\n");
332 return -EBUSY;
334 EXPORT_SYMBOL_GPL(rt2800_wait_csr_ready);
336 int rt2800_wait_wpdma_ready(struct rt2x00_dev *rt2x00dev)
338 unsigned int i;
339 u32 reg;
342 * Some devices are really slow to respond here. Wait a whole second
343 * before timing out.
345 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
346 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
347 if (!rt2x00_get_field32(reg, WPDMA_GLO_CFG_TX_DMA_BUSY) &&
348 !rt2x00_get_field32(reg, WPDMA_GLO_CFG_RX_DMA_BUSY))
349 return 0;
351 msleep(10);
354 rt2x00_err(rt2x00dev, "WPDMA TX/RX busy [0x%08x]\n", reg);
355 return -EACCES;
357 EXPORT_SYMBOL_GPL(rt2800_wait_wpdma_ready);
359 void rt2800_disable_wpdma(struct rt2x00_dev *rt2x00dev)
361 u32 reg;
363 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
364 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0);
365 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_DMA_BUSY, 0);
366 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 0);
367 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_RX_DMA_BUSY, 0);
368 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 1);
369 rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
371 EXPORT_SYMBOL_GPL(rt2800_disable_wpdma);
373 static bool rt2800_check_firmware_crc(const u8 *data, const size_t len)
375 u16 fw_crc;
376 u16 crc;
379 * The last 2 bytes in the firmware array are the crc checksum itself,
380 * this means that we should never pass those 2 bytes to the crc
381 * algorithm.
383 fw_crc = (data[len - 2] << 8 | data[len - 1]);
386 * Use the crc ccitt algorithm.
387 * This will return the same value as the legacy driver which
388 * used bit ordering reversion on the both the firmware bytes
389 * before input input as well as on the final output.
390 * Obviously using crc ccitt directly is much more efficient.
392 crc = crc_ccitt(~0, data, len - 2);
395 * There is a small difference between the crc-itu-t + bitrev and
396 * the crc-ccitt crc calculation. In the latter method the 2 bytes
397 * will be swapped, use swab16 to convert the crc to the correct
398 * value.
400 crc = swab16(crc);
402 return fw_crc == crc;
405 int rt2800_check_firmware(struct rt2x00_dev *rt2x00dev,
406 const u8 *data, const size_t len)
408 size_t offset = 0;
409 size_t fw_len;
410 bool multiple;
413 * PCI(e) & SOC devices require firmware with a length
414 * of 8kb. USB devices require firmware files with a length
415 * of 4kb. Certain USB chipsets however require different firmware,
416 * which Ralink only provides attached to the original firmware
417 * file. Thus for USB devices, firmware files have a length
418 * which is a multiple of 4kb. The firmware for rt3290 chip also
419 * have a length which is a multiple of 4kb.
421 if (rt2x00_is_usb(rt2x00dev) || rt2x00_rt(rt2x00dev, RT3290))
422 fw_len = 4096;
423 else
424 fw_len = 8192;
426 multiple = true;
428 * Validate the firmware length
430 if (len != fw_len && (!multiple || (len % fw_len) != 0))
431 return FW_BAD_LENGTH;
434 * Check if the chipset requires one of the upper parts
435 * of the firmware.
437 if (rt2x00_is_usb(rt2x00dev) &&
438 !rt2x00_rt(rt2x00dev, RT2860) &&
439 !rt2x00_rt(rt2x00dev, RT2872) &&
440 !rt2x00_rt(rt2x00dev, RT3070) &&
441 ((len / fw_len) == 1))
442 return FW_BAD_VERSION;
445 * 8kb firmware files must be checked as if it were
446 * 2 separate firmware files.
448 while (offset < len) {
449 if (!rt2800_check_firmware_crc(data + offset, fw_len))
450 return FW_BAD_CRC;
452 offset += fw_len;
455 return FW_OK;
457 EXPORT_SYMBOL_GPL(rt2800_check_firmware);
459 int rt2800_load_firmware(struct rt2x00_dev *rt2x00dev,
460 const u8 *data, const size_t len)
462 unsigned int i;
463 u32 reg;
464 int retval;
466 if (rt2x00_rt(rt2x00dev, RT3290)) {
467 retval = rt2800_enable_wlan_rt3290(rt2x00dev);
468 if (retval)
469 return -EBUSY;
473 * If driver doesn't wake up firmware here,
474 * rt2800_load_firmware will hang forever when interface is up again.
476 rt2800_register_write(rt2x00dev, AUTOWAKEUP_CFG, 0x00000000);
479 * Wait for stable hardware.
481 if (rt2800_wait_csr_ready(rt2x00dev))
482 return -EBUSY;
484 if (rt2x00_is_pci(rt2x00dev)) {
485 if (rt2x00_rt(rt2x00dev, RT3290) ||
486 rt2x00_rt(rt2x00dev, RT3572) ||
487 rt2x00_rt(rt2x00dev, RT5390) ||
488 rt2x00_rt(rt2x00dev, RT5392)) {
489 rt2800_register_read(rt2x00dev, AUX_CTRL, &reg);
490 rt2x00_set_field32(&reg, AUX_CTRL_FORCE_PCIE_CLK, 1);
491 rt2x00_set_field32(&reg, AUX_CTRL_WAKE_PCIE_EN, 1);
492 rt2800_register_write(rt2x00dev, AUX_CTRL, reg);
494 rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0x00000002);
497 rt2800_disable_wpdma(rt2x00dev);
500 * Write firmware to the device.
502 rt2800_drv_write_firmware(rt2x00dev, data, len);
505 * Wait for device to stabilize.
507 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
508 rt2800_register_read(rt2x00dev, PBF_SYS_CTRL, &reg);
509 if (rt2x00_get_field32(reg, PBF_SYS_CTRL_READY))
510 break;
511 msleep(1);
514 if (i == REGISTER_BUSY_COUNT) {
515 rt2x00_err(rt2x00dev, "PBF system register not ready\n");
516 return -EBUSY;
520 * Disable DMA, will be reenabled later when enabling
521 * the radio.
523 rt2800_disable_wpdma(rt2x00dev);
526 * Initialize firmware.
528 rt2800_register_write(rt2x00dev, H2M_BBP_AGENT, 0);
529 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
530 if (rt2x00_is_usb(rt2x00dev)) {
531 rt2800_register_write(rt2x00dev, H2M_INT_SRC, 0);
532 rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0, 0, 0);
534 msleep(1);
536 return 0;
538 EXPORT_SYMBOL_GPL(rt2800_load_firmware);
540 void rt2800_write_tx_data(struct queue_entry *entry,
541 struct txentry_desc *txdesc)
543 __le32 *txwi = rt2800_drv_get_txwi(entry);
544 u32 word;
545 int i;
548 * Initialize TX Info descriptor
550 rt2x00_desc_read(txwi, 0, &word);
551 rt2x00_set_field32(&word, TXWI_W0_FRAG,
552 test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
553 rt2x00_set_field32(&word, TXWI_W0_MIMO_PS,
554 test_bit(ENTRY_TXD_HT_MIMO_PS, &txdesc->flags));
555 rt2x00_set_field32(&word, TXWI_W0_CF_ACK, 0);
556 rt2x00_set_field32(&word, TXWI_W0_TS,
557 test_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags));
558 rt2x00_set_field32(&word, TXWI_W0_AMPDU,
559 test_bit(ENTRY_TXD_HT_AMPDU, &txdesc->flags));
560 rt2x00_set_field32(&word, TXWI_W0_MPDU_DENSITY,
561 txdesc->u.ht.mpdu_density);
562 rt2x00_set_field32(&word, TXWI_W0_TX_OP, txdesc->u.ht.txop);
563 rt2x00_set_field32(&word, TXWI_W0_MCS, txdesc->u.ht.mcs);
564 rt2x00_set_field32(&word, TXWI_W0_BW,
565 test_bit(ENTRY_TXD_HT_BW_40, &txdesc->flags));
566 rt2x00_set_field32(&word, TXWI_W0_SHORT_GI,
567 test_bit(ENTRY_TXD_HT_SHORT_GI, &txdesc->flags));
568 rt2x00_set_field32(&word, TXWI_W0_STBC, txdesc->u.ht.stbc);
569 rt2x00_set_field32(&word, TXWI_W0_PHYMODE, txdesc->rate_mode);
570 rt2x00_desc_write(txwi, 0, word);
572 rt2x00_desc_read(txwi, 1, &word);
573 rt2x00_set_field32(&word, TXWI_W1_ACK,
574 test_bit(ENTRY_TXD_ACK, &txdesc->flags));
575 rt2x00_set_field32(&word, TXWI_W1_NSEQ,
576 test_bit(ENTRY_TXD_GENERATE_SEQ, &txdesc->flags));
577 rt2x00_set_field32(&word, TXWI_W1_BW_WIN_SIZE, txdesc->u.ht.ba_size);
578 rt2x00_set_field32(&word, TXWI_W1_WIRELESS_CLI_ID,
579 test_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags) ?
580 txdesc->key_idx : txdesc->u.ht.wcid);
581 rt2x00_set_field32(&word, TXWI_W1_MPDU_TOTAL_BYTE_COUNT,
582 txdesc->length);
583 rt2x00_set_field32(&word, TXWI_W1_PACKETID_QUEUE, entry->queue->qid);
584 rt2x00_set_field32(&word, TXWI_W1_PACKETID_ENTRY, (entry->entry_idx % 3) + 1);
585 rt2x00_desc_write(txwi, 1, word);
588 * Always write 0 to IV/EIV fields (word 2 and 3), hardware will insert
589 * the IV from the IVEIV register when TXD_W3_WIV is set to 0.
590 * When TXD_W3_WIV is set to 1 it will use the IV data
591 * from the descriptor. The TXWI_W1_WIRELESS_CLI_ID indicates which
592 * crypto entry in the registers should be used to encrypt the frame.
594 * Nulify all remaining words as well, we don't know how to program them.
596 for (i = 2; i < entry->queue->winfo_size / sizeof(__le32); i++)
597 _rt2x00_desc_write(txwi, i, 0);
599 EXPORT_SYMBOL_GPL(rt2800_write_tx_data);
601 static int rt2800_agc_to_rssi(struct rt2x00_dev *rt2x00dev, u32 rxwi_w2)
603 s8 rssi0 = rt2x00_get_field32(rxwi_w2, RXWI_W2_RSSI0);
604 s8 rssi1 = rt2x00_get_field32(rxwi_w2, RXWI_W2_RSSI1);
605 s8 rssi2 = rt2x00_get_field32(rxwi_w2, RXWI_W2_RSSI2);
606 u16 eeprom;
607 u8 offset0;
608 u8 offset1;
609 u8 offset2;
611 if (rt2x00dev->curr_band == IEEE80211_BAND_2GHZ) {
612 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_BG, &eeprom);
613 offset0 = rt2x00_get_field16(eeprom, EEPROM_RSSI_BG_OFFSET0);
614 offset1 = rt2x00_get_field16(eeprom, EEPROM_RSSI_BG_OFFSET1);
615 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_BG2, &eeprom);
616 offset2 = rt2x00_get_field16(eeprom, EEPROM_RSSI_BG2_OFFSET2);
617 } else {
618 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_A, &eeprom);
619 offset0 = rt2x00_get_field16(eeprom, EEPROM_RSSI_A_OFFSET0);
620 offset1 = rt2x00_get_field16(eeprom, EEPROM_RSSI_A_OFFSET1);
621 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_A2, &eeprom);
622 offset2 = rt2x00_get_field16(eeprom, EEPROM_RSSI_A2_OFFSET2);
626 * Convert the value from the descriptor into the RSSI value
627 * If the value in the descriptor is 0, it is considered invalid
628 * and the default (extremely low) rssi value is assumed
630 rssi0 = (rssi0) ? (-12 - offset0 - rt2x00dev->lna_gain - rssi0) : -128;
631 rssi1 = (rssi1) ? (-12 - offset1 - rt2x00dev->lna_gain - rssi1) : -128;
632 rssi2 = (rssi2) ? (-12 - offset2 - rt2x00dev->lna_gain - rssi2) : -128;
635 * mac80211 only accepts a single RSSI value. Calculating the
636 * average doesn't deliver a fair answer either since -60:-60 would
637 * be considered equally good as -50:-70 while the second is the one
638 * which gives less energy...
640 rssi0 = max(rssi0, rssi1);
641 return (int)max(rssi0, rssi2);
644 void rt2800_process_rxwi(struct queue_entry *entry,
645 struct rxdone_entry_desc *rxdesc)
647 __le32 *rxwi = (__le32 *) entry->skb->data;
648 u32 word;
650 rt2x00_desc_read(rxwi, 0, &word);
652 rxdesc->cipher = rt2x00_get_field32(word, RXWI_W0_UDF);
653 rxdesc->size = rt2x00_get_field32(word, RXWI_W0_MPDU_TOTAL_BYTE_COUNT);
655 rt2x00_desc_read(rxwi, 1, &word);
657 if (rt2x00_get_field32(word, RXWI_W1_SHORT_GI))
658 rxdesc->flags |= RX_FLAG_SHORT_GI;
660 if (rt2x00_get_field32(word, RXWI_W1_BW))
661 rxdesc->flags |= RX_FLAG_40MHZ;
664 * Detect RX rate, always use MCS as signal type.
666 rxdesc->dev_flags |= RXDONE_SIGNAL_MCS;
667 rxdesc->signal = rt2x00_get_field32(word, RXWI_W1_MCS);
668 rxdesc->rate_mode = rt2x00_get_field32(word, RXWI_W1_PHYMODE);
671 * Mask of 0x8 bit to remove the short preamble flag.
673 if (rxdesc->rate_mode == RATE_MODE_CCK)
674 rxdesc->signal &= ~0x8;
676 rt2x00_desc_read(rxwi, 2, &word);
679 * Convert descriptor AGC value to RSSI value.
681 rxdesc->rssi = rt2800_agc_to_rssi(entry->queue->rt2x00dev, word);
683 * Remove RXWI descriptor from start of the buffer.
685 skb_pull(entry->skb, entry->queue->winfo_size);
687 EXPORT_SYMBOL_GPL(rt2800_process_rxwi);
689 void rt2800_txdone_entry(struct queue_entry *entry, u32 status, __le32 *txwi)
691 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
692 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
693 struct txdone_entry_desc txdesc;
694 u32 word;
695 u16 mcs, real_mcs;
696 int aggr, ampdu;
699 * Obtain the status about this packet.
701 txdesc.flags = 0;
702 rt2x00_desc_read(txwi, 0, &word);
704 mcs = rt2x00_get_field32(word, TXWI_W0_MCS);
705 ampdu = rt2x00_get_field32(word, TXWI_W0_AMPDU);
707 real_mcs = rt2x00_get_field32(status, TX_STA_FIFO_MCS);
708 aggr = rt2x00_get_field32(status, TX_STA_FIFO_TX_AGGRE);
711 * If a frame was meant to be sent as a single non-aggregated MPDU
712 * but ended up in an aggregate the used tx rate doesn't correlate
713 * with the one specified in the TXWI as the whole aggregate is sent
714 * with the same rate.
716 * For example: two frames are sent to rt2x00, the first one sets
717 * AMPDU=1 and requests MCS7 whereas the second frame sets AMDPU=0
718 * and requests MCS15. If the hw aggregates both frames into one
719 * AMDPU the tx status for both frames will contain MCS7 although
720 * the frame was sent successfully.
722 * Hence, replace the requested rate with the real tx rate to not
723 * confuse the rate control algortihm by providing clearly wrong
724 * data.
726 if (unlikely(aggr == 1 && ampdu == 0 && real_mcs != mcs)) {
727 skbdesc->tx_rate_idx = real_mcs;
728 mcs = real_mcs;
731 if (aggr == 1 || ampdu == 1)
732 __set_bit(TXDONE_AMPDU, &txdesc.flags);
735 * Ralink has a retry mechanism using a global fallback
736 * table. We setup this fallback table to try the immediate
737 * lower rate for all rates. In the TX_STA_FIFO, the MCS field
738 * always contains the MCS used for the last transmission, be
739 * it successful or not.
741 if (rt2x00_get_field32(status, TX_STA_FIFO_TX_SUCCESS)) {
743 * Transmission succeeded. The number of retries is
744 * mcs - real_mcs
746 __set_bit(TXDONE_SUCCESS, &txdesc.flags);
747 txdesc.retry = ((mcs > real_mcs) ? mcs - real_mcs : 0);
748 } else {
750 * Transmission failed. The number of retries is
751 * always 7 in this case (for a total number of 8
752 * frames sent).
754 __set_bit(TXDONE_FAILURE, &txdesc.flags);
755 txdesc.retry = rt2x00dev->long_retry;
759 * the frame was retried at least once
760 * -> hw used fallback rates
762 if (txdesc.retry)
763 __set_bit(TXDONE_FALLBACK, &txdesc.flags);
765 rt2x00lib_txdone(entry, &txdesc);
767 EXPORT_SYMBOL_GPL(rt2800_txdone_entry);
769 void rt2800_write_beacon(struct queue_entry *entry, struct txentry_desc *txdesc)
771 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
772 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
773 unsigned int beacon_base;
774 unsigned int padding_len;
775 u32 orig_reg, reg;
776 const int txwi_desc_size = entry->queue->winfo_size;
779 * Disable beaconing while we are reloading the beacon data,
780 * otherwise we might be sending out invalid data.
782 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
783 orig_reg = reg;
784 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
785 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
788 * Add space for the TXWI in front of the skb.
790 memset(skb_push(entry->skb, txwi_desc_size), 0, txwi_desc_size);
793 * Register descriptor details in skb frame descriptor.
795 skbdesc->flags |= SKBDESC_DESC_IN_SKB;
796 skbdesc->desc = entry->skb->data;
797 skbdesc->desc_len = txwi_desc_size;
800 * Add the TXWI for the beacon to the skb.
802 rt2800_write_tx_data(entry, txdesc);
805 * Dump beacon to userspace through debugfs.
807 rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_BEACON, entry->skb);
810 * Write entire beacon with TXWI and padding to register.
812 padding_len = roundup(entry->skb->len, 4) - entry->skb->len;
813 if (padding_len && skb_pad(entry->skb, padding_len)) {
814 rt2x00_err(rt2x00dev, "Failure padding beacon, aborting\n");
815 /* skb freed by skb_pad() on failure */
816 entry->skb = NULL;
817 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, orig_reg);
818 return;
821 beacon_base = HW_BEACON_OFFSET(entry->entry_idx);
822 rt2800_register_multiwrite(rt2x00dev, beacon_base, entry->skb->data,
823 entry->skb->len + padding_len);
826 * Enable beaconing again.
828 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 1);
829 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
832 * Clean up beacon skb.
834 dev_kfree_skb_any(entry->skb);
835 entry->skb = NULL;
837 EXPORT_SYMBOL_GPL(rt2800_write_beacon);
839 static inline void rt2800_clear_beacon_register(struct rt2x00_dev *rt2x00dev,
840 unsigned int beacon_base)
842 int i;
843 const int txwi_desc_size = rt2x00dev->bcn->winfo_size;
846 * For the Beacon base registers we only need to clear
847 * the whole TXWI which (when set to 0) will invalidate
848 * the entire beacon.
850 for (i = 0; i < txwi_desc_size; i += sizeof(__le32))
851 rt2800_register_write(rt2x00dev, beacon_base + i, 0);
854 void rt2800_clear_beacon(struct queue_entry *entry)
856 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
857 u32 reg;
860 * Disable beaconing while we are reloading the beacon data,
861 * otherwise we might be sending out invalid data.
863 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
864 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
865 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
868 * Clear beacon.
870 rt2800_clear_beacon_register(rt2x00dev,
871 HW_BEACON_OFFSET(entry->entry_idx));
874 * Enabled beaconing again.
876 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 1);
877 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
879 EXPORT_SYMBOL_GPL(rt2800_clear_beacon);
881 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
882 const struct rt2x00debug rt2800_rt2x00debug = {
883 .owner = THIS_MODULE,
884 .csr = {
885 .read = rt2800_register_read,
886 .write = rt2800_register_write,
887 .flags = RT2X00DEBUGFS_OFFSET,
888 .word_base = CSR_REG_BASE,
889 .word_size = sizeof(u32),
890 .word_count = CSR_REG_SIZE / sizeof(u32),
892 .eeprom = {
893 .read = rt2x00_eeprom_read,
894 .write = rt2x00_eeprom_write,
895 .word_base = EEPROM_BASE,
896 .word_size = sizeof(u16),
897 .word_count = EEPROM_SIZE / sizeof(u16),
899 .bbp = {
900 .read = rt2800_bbp_read,
901 .write = rt2800_bbp_write,
902 .word_base = BBP_BASE,
903 .word_size = sizeof(u8),
904 .word_count = BBP_SIZE / sizeof(u8),
906 .rf = {
907 .read = rt2x00_rf_read,
908 .write = rt2800_rf_write,
909 .word_base = RF_BASE,
910 .word_size = sizeof(u32),
911 .word_count = RF_SIZE / sizeof(u32),
913 .rfcsr = {
914 .read = rt2800_rfcsr_read,
915 .write = rt2800_rfcsr_write,
916 .word_base = RFCSR_BASE,
917 .word_size = sizeof(u8),
918 .word_count = RFCSR_SIZE / sizeof(u8),
921 EXPORT_SYMBOL_GPL(rt2800_rt2x00debug);
922 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
924 int rt2800_rfkill_poll(struct rt2x00_dev *rt2x00dev)
926 u32 reg;
928 if (rt2x00_rt(rt2x00dev, RT3290)) {
929 rt2800_register_read(rt2x00dev, WLAN_FUN_CTRL, &reg);
930 return rt2x00_get_field32(reg, WLAN_GPIO_IN_BIT0);
931 } else {
932 rt2800_register_read(rt2x00dev, GPIO_CTRL, &reg);
933 return rt2x00_get_field32(reg, GPIO_CTRL_VAL2);
936 EXPORT_SYMBOL_GPL(rt2800_rfkill_poll);
938 #ifdef CONFIG_RT2X00_LIB_LEDS
939 static void rt2800_brightness_set(struct led_classdev *led_cdev,
940 enum led_brightness brightness)
942 struct rt2x00_led *led =
943 container_of(led_cdev, struct rt2x00_led, led_dev);
944 unsigned int enabled = brightness != LED_OFF;
945 unsigned int bg_mode =
946 (enabled && led->rt2x00dev->curr_band == IEEE80211_BAND_2GHZ);
947 unsigned int polarity =
948 rt2x00_get_field16(led->rt2x00dev->led_mcu_reg,
949 EEPROM_FREQ_LED_POLARITY);
950 unsigned int ledmode =
951 rt2x00_get_field16(led->rt2x00dev->led_mcu_reg,
952 EEPROM_FREQ_LED_MODE);
953 u32 reg;
955 /* Check for SoC (SOC devices don't support MCU requests) */
956 if (rt2x00_is_soc(led->rt2x00dev)) {
957 rt2800_register_read(led->rt2x00dev, LED_CFG, &reg);
959 /* Set LED Polarity */
960 rt2x00_set_field32(&reg, LED_CFG_LED_POLAR, polarity);
962 /* Set LED Mode */
963 if (led->type == LED_TYPE_RADIO) {
964 rt2x00_set_field32(&reg, LED_CFG_G_LED_MODE,
965 enabled ? 3 : 0);
966 } else if (led->type == LED_TYPE_ASSOC) {
967 rt2x00_set_field32(&reg, LED_CFG_Y_LED_MODE,
968 enabled ? 3 : 0);
969 } else if (led->type == LED_TYPE_QUALITY) {
970 rt2x00_set_field32(&reg, LED_CFG_R_LED_MODE,
971 enabled ? 3 : 0);
974 rt2800_register_write(led->rt2x00dev, LED_CFG, reg);
976 } else {
977 if (led->type == LED_TYPE_RADIO) {
978 rt2800_mcu_request(led->rt2x00dev, MCU_LED, 0xff, ledmode,
979 enabled ? 0x20 : 0);
980 } else if (led->type == LED_TYPE_ASSOC) {
981 rt2800_mcu_request(led->rt2x00dev, MCU_LED, 0xff, ledmode,
982 enabled ? (bg_mode ? 0x60 : 0xa0) : 0x20);
983 } else if (led->type == LED_TYPE_QUALITY) {
985 * The brightness is divided into 6 levels (0 - 5),
986 * The specs tell us the following levels:
987 * 0, 1 ,3, 7, 15, 31
988 * to determine the level in a simple way we can simply
989 * work with bitshifting:
990 * (1 << level) - 1
992 rt2800_mcu_request(led->rt2x00dev, MCU_LED_STRENGTH, 0xff,
993 (1 << brightness / (LED_FULL / 6)) - 1,
994 polarity);
999 static void rt2800_init_led(struct rt2x00_dev *rt2x00dev,
1000 struct rt2x00_led *led, enum led_type type)
1002 led->rt2x00dev = rt2x00dev;
1003 led->type = type;
1004 led->led_dev.brightness_set = rt2800_brightness_set;
1005 led->flags = LED_INITIALIZED;
1007 #endif /* CONFIG_RT2X00_LIB_LEDS */
1010 * Configuration handlers.
1012 static void rt2800_config_wcid(struct rt2x00_dev *rt2x00dev,
1013 const u8 *address,
1014 int wcid)
1016 struct mac_wcid_entry wcid_entry;
1017 u32 offset;
1019 offset = MAC_WCID_ENTRY(wcid);
1021 memset(&wcid_entry, 0xff, sizeof(wcid_entry));
1022 if (address)
1023 memcpy(wcid_entry.mac, address, ETH_ALEN);
1025 rt2800_register_multiwrite(rt2x00dev, offset,
1026 &wcid_entry, sizeof(wcid_entry));
1029 static void rt2800_delete_wcid_attr(struct rt2x00_dev *rt2x00dev, int wcid)
1031 u32 offset;
1032 offset = MAC_WCID_ATTR_ENTRY(wcid);
1033 rt2800_register_write(rt2x00dev, offset, 0);
1036 static void rt2800_config_wcid_attr_bssidx(struct rt2x00_dev *rt2x00dev,
1037 int wcid, u32 bssidx)
1039 u32 offset = MAC_WCID_ATTR_ENTRY(wcid);
1040 u32 reg;
1043 * The BSS Idx numbers is split in a main value of 3 bits,
1044 * and a extended field for adding one additional bit to the value.
1046 rt2800_register_read(rt2x00dev, offset, &reg);
1047 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_BSS_IDX, (bssidx & 0x7));
1048 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_BSS_IDX_EXT,
1049 (bssidx & 0x8) >> 3);
1050 rt2800_register_write(rt2x00dev, offset, reg);
1053 static void rt2800_config_wcid_attr_cipher(struct rt2x00_dev *rt2x00dev,
1054 struct rt2x00lib_crypto *crypto,
1055 struct ieee80211_key_conf *key)
1057 struct mac_iveiv_entry iveiv_entry;
1058 u32 offset;
1059 u32 reg;
1061 offset = MAC_WCID_ATTR_ENTRY(key->hw_key_idx);
1063 if (crypto->cmd == SET_KEY) {
1064 rt2800_register_read(rt2x00dev, offset, &reg);
1065 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_KEYTAB,
1066 !!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE));
1068 * Both the cipher as the BSS Idx numbers are split in a main
1069 * value of 3 bits, and a extended field for adding one additional
1070 * bit to the value.
1072 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_CIPHER,
1073 (crypto->cipher & 0x7));
1074 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_CIPHER_EXT,
1075 (crypto->cipher & 0x8) >> 3);
1076 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_RX_WIUDF, crypto->cipher);
1077 rt2800_register_write(rt2x00dev, offset, reg);
1078 } else {
1079 /* Delete the cipher without touching the bssidx */
1080 rt2800_register_read(rt2x00dev, offset, &reg);
1081 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_KEYTAB, 0);
1082 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_CIPHER, 0);
1083 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_CIPHER_EXT, 0);
1084 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_RX_WIUDF, 0);
1085 rt2800_register_write(rt2x00dev, offset, reg);
1088 offset = MAC_IVEIV_ENTRY(key->hw_key_idx);
1090 memset(&iveiv_entry, 0, sizeof(iveiv_entry));
1091 if ((crypto->cipher == CIPHER_TKIP) ||
1092 (crypto->cipher == CIPHER_TKIP_NO_MIC) ||
1093 (crypto->cipher == CIPHER_AES))
1094 iveiv_entry.iv[3] |= 0x20;
1095 iveiv_entry.iv[3] |= key->keyidx << 6;
1096 rt2800_register_multiwrite(rt2x00dev, offset,
1097 &iveiv_entry, sizeof(iveiv_entry));
1100 int rt2800_config_shared_key(struct rt2x00_dev *rt2x00dev,
1101 struct rt2x00lib_crypto *crypto,
1102 struct ieee80211_key_conf *key)
1104 struct hw_key_entry key_entry;
1105 struct rt2x00_field32 field;
1106 u32 offset;
1107 u32 reg;
1109 if (crypto->cmd == SET_KEY) {
1110 key->hw_key_idx = (4 * crypto->bssidx) + key->keyidx;
1112 memcpy(key_entry.key, crypto->key,
1113 sizeof(key_entry.key));
1114 memcpy(key_entry.tx_mic, crypto->tx_mic,
1115 sizeof(key_entry.tx_mic));
1116 memcpy(key_entry.rx_mic, crypto->rx_mic,
1117 sizeof(key_entry.rx_mic));
1119 offset = SHARED_KEY_ENTRY(key->hw_key_idx);
1120 rt2800_register_multiwrite(rt2x00dev, offset,
1121 &key_entry, sizeof(key_entry));
1125 * The cipher types are stored over multiple registers
1126 * starting with SHARED_KEY_MODE_BASE each word will have
1127 * 32 bits and contains the cipher types for 2 bssidx each.
1128 * Using the correct defines correctly will cause overhead,
1129 * so just calculate the correct offset.
1131 field.bit_offset = 4 * (key->hw_key_idx % 8);
1132 field.bit_mask = 0x7 << field.bit_offset;
1134 offset = SHARED_KEY_MODE_ENTRY(key->hw_key_idx / 8);
1136 rt2800_register_read(rt2x00dev, offset, &reg);
1137 rt2x00_set_field32(&reg, field,
1138 (crypto->cmd == SET_KEY) * crypto->cipher);
1139 rt2800_register_write(rt2x00dev, offset, reg);
1142 * Update WCID information
1144 rt2800_config_wcid(rt2x00dev, crypto->address, key->hw_key_idx);
1145 rt2800_config_wcid_attr_bssidx(rt2x00dev, key->hw_key_idx,
1146 crypto->bssidx);
1147 rt2800_config_wcid_attr_cipher(rt2x00dev, crypto, key);
1149 return 0;
1151 EXPORT_SYMBOL_GPL(rt2800_config_shared_key);
1153 static inline int rt2800_find_wcid(struct rt2x00_dev *rt2x00dev)
1155 struct mac_wcid_entry wcid_entry;
1156 int idx;
1157 u32 offset;
1160 * Search for the first free WCID entry and return the corresponding
1161 * index.
1163 * Make sure the WCID starts _after_ the last possible shared key
1164 * entry (>32).
1166 * Since parts of the pairwise key table might be shared with
1167 * the beacon frame buffers 6 & 7 we should only write into the
1168 * first 222 entries.
1170 for (idx = 33; idx <= 222; idx++) {
1171 offset = MAC_WCID_ENTRY(idx);
1172 rt2800_register_multiread(rt2x00dev, offset, &wcid_entry,
1173 sizeof(wcid_entry));
1174 if (is_broadcast_ether_addr(wcid_entry.mac))
1175 return idx;
1179 * Use -1 to indicate that we don't have any more space in the WCID
1180 * table.
1182 return -1;
1185 int rt2800_config_pairwise_key(struct rt2x00_dev *rt2x00dev,
1186 struct rt2x00lib_crypto *crypto,
1187 struct ieee80211_key_conf *key)
1189 struct hw_key_entry key_entry;
1190 u32 offset;
1192 if (crypto->cmd == SET_KEY) {
1194 * Allow key configuration only for STAs that are
1195 * known by the hw.
1197 if (crypto->wcid < 0)
1198 return -ENOSPC;
1199 key->hw_key_idx = crypto->wcid;
1201 memcpy(key_entry.key, crypto->key,
1202 sizeof(key_entry.key));
1203 memcpy(key_entry.tx_mic, crypto->tx_mic,
1204 sizeof(key_entry.tx_mic));
1205 memcpy(key_entry.rx_mic, crypto->rx_mic,
1206 sizeof(key_entry.rx_mic));
1208 offset = PAIRWISE_KEY_ENTRY(key->hw_key_idx);
1209 rt2800_register_multiwrite(rt2x00dev, offset,
1210 &key_entry, sizeof(key_entry));
1214 * Update WCID information
1216 rt2800_config_wcid_attr_cipher(rt2x00dev, crypto, key);
1218 return 0;
1220 EXPORT_SYMBOL_GPL(rt2800_config_pairwise_key);
1222 int rt2800_sta_add(struct rt2x00_dev *rt2x00dev, struct ieee80211_vif *vif,
1223 struct ieee80211_sta *sta)
1225 int wcid;
1226 struct rt2x00_sta *sta_priv = sta_to_rt2x00_sta(sta);
1229 * Find next free WCID.
1231 wcid = rt2800_find_wcid(rt2x00dev);
1234 * Store selected wcid even if it is invalid so that we can
1235 * later decide if the STA is uploaded into the hw.
1237 sta_priv->wcid = wcid;
1240 * No space left in the device, however, we can still communicate
1241 * with the STA -> No error.
1243 if (wcid < 0)
1244 return 0;
1247 * Clean up WCID attributes and write STA address to the device.
1249 rt2800_delete_wcid_attr(rt2x00dev, wcid);
1250 rt2800_config_wcid(rt2x00dev, sta->addr, wcid);
1251 rt2800_config_wcid_attr_bssidx(rt2x00dev, wcid,
1252 rt2x00lib_get_bssidx(rt2x00dev, vif));
1253 return 0;
1255 EXPORT_SYMBOL_GPL(rt2800_sta_add);
1257 int rt2800_sta_remove(struct rt2x00_dev *rt2x00dev, int wcid)
1260 * Remove WCID entry, no need to clean the attributes as they will
1261 * get renewed when the WCID is reused.
1263 rt2800_config_wcid(rt2x00dev, NULL, wcid);
1265 return 0;
1267 EXPORT_SYMBOL_GPL(rt2800_sta_remove);
1269 void rt2800_config_filter(struct rt2x00_dev *rt2x00dev,
1270 const unsigned int filter_flags)
1272 u32 reg;
1275 * Start configuration steps.
1276 * Note that the version error will always be dropped
1277 * and broadcast frames will always be accepted since
1278 * there is no filter for it at this time.
1280 rt2800_register_read(rt2x00dev, RX_FILTER_CFG, &reg);
1281 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_CRC_ERROR,
1282 !(filter_flags & FIF_FCSFAIL));
1283 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_PHY_ERROR,
1284 !(filter_flags & FIF_PLCPFAIL));
1285 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_NOT_TO_ME,
1286 !(filter_flags & FIF_PROMISC_IN_BSS));
1287 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_NOT_MY_BSSD, 0);
1288 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_VER_ERROR, 1);
1289 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_MULTICAST,
1290 !(filter_flags & FIF_ALLMULTI));
1291 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_BROADCAST, 0);
1292 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_DUPLICATE, 1);
1293 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_CF_END_ACK,
1294 !(filter_flags & FIF_CONTROL));
1295 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_CF_END,
1296 !(filter_flags & FIF_CONTROL));
1297 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_ACK,
1298 !(filter_flags & FIF_CONTROL));
1299 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_CTS,
1300 !(filter_flags & FIF_CONTROL));
1301 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_RTS,
1302 !(filter_flags & FIF_CONTROL));
1303 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_PSPOLL,
1304 !(filter_flags & FIF_PSPOLL));
1305 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_BA, 0);
1306 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_BAR,
1307 !(filter_flags & FIF_CONTROL));
1308 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_CNTL,
1309 !(filter_flags & FIF_CONTROL));
1310 rt2800_register_write(rt2x00dev, RX_FILTER_CFG, reg);
1312 EXPORT_SYMBOL_GPL(rt2800_config_filter);
1314 void rt2800_config_intf(struct rt2x00_dev *rt2x00dev, struct rt2x00_intf *intf,
1315 struct rt2x00intf_conf *conf, const unsigned int flags)
1317 u32 reg;
1318 bool update_bssid = false;
1320 if (flags & CONFIG_UPDATE_TYPE) {
1322 * Enable synchronisation.
1324 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
1325 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_SYNC, conf->sync);
1326 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
1328 if (conf->sync == TSF_SYNC_AP_NONE) {
1330 * Tune beacon queue transmit parameters for AP mode
1332 rt2800_register_read(rt2x00dev, TBTT_SYNC_CFG, &reg);
1333 rt2x00_set_field32(&reg, TBTT_SYNC_CFG_BCN_CWMIN, 0);
1334 rt2x00_set_field32(&reg, TBTT_SYNC_CFG_BCN_AIFSN, 1);
1335 rt2x00_set_field32(&reg, TBTT_SYNC_CFG_BCN_EXP_WIN, 32);
1336 rt2x00_set_field32(&reg, TBTT_SYNC_CFG_TBTT_ADJUST, 0);
1337 rt2800_register_write(rt2x00dev, TBTT_SYNC_CFG, reg);
1338 } else {
1339 rt2800_register_read(rt2x00dev, TBTT_SYNC_CFG, &reg);
1340 rt2x00_set_field32(&reg, TBTT_SYNC_CFG_BCN_CWMIN, 4);
1341 rt2x00_set_field32(&reg, TBTT_SYNC_CFG_BCN_AIFSN, 2);
1342 rt2x00_set_field32(&reg, TBTT_SYNC_CFG_BCN_EXP_WIN, 32);
1343 rt2x00_set_field32(&reg, TBTT_SYNC_CFG_TBTT_ADJUST, 16);
1344 rt2800_register_write(rt2x00dev, TBTT_SYNC_CFG, reg);
1348 if (flags & CONFIG_UPDATE_MAC) {
1349 if (flags & CONFIG_UPDATE_TYPE &&
1350 conf->sync == TSF_SYNC_AP_NONE) {
1352 * The BSSID register has to be set to our own mac
1353 * address in AP mode.
1355 memcpy(conf->bssid, conf->mac, sizeof(conf->mac));
1356 update_bssid = true;
1359 if (!is_zero_ether_addr((const u8 *)conf->mac)) {
1360 reg = le32_to_cpu(conf->mac[1]);
1361 rt2x00_set_field32(&reg, MAC_ADDR_DW1_UNICAST_TO_ME_MASK, 0xff);
1362 conf->mac[1] = cpu_to_le32(reg);
1365 rt2800_register_multiwrite(rt2x00dev, MAC_ADDR_DW0,
1366 conf->mac, sizeof(conf->mac));
1369 if ((flags & CONFIG_UPDATE_BSSID) || update_bssid) {
1370 if (!is_zero_ether_addr((const u8 *)conf->bssid)) {
1371 reg = le32_to_cpu(conf->bssid[1]);
1372 rt2x00_set_field32(&reg, MAC_BSSID_DW1_BSS_ID_MASK, 3);
1373 rt2x00_set_field32(&reg, MAC_BSSID_DW1_BSS_BCN_NUM, 7);
1374 conf->bssid[1] = cpu_to_le32(reg);
1377 rt2800_register_multiwrite(rt2x00dev, MAC_BSSID_DW0,
1378 conf->bssid, sizeof(conf->bssid));
1381 EXPORT_SYMBOL_GPL(rt2800_config_intf);
1383 static void rt2800_config_ht_opmode(struct rt2x00_dev *rt2x00dev,
1384 struct rt2x00lib_erp *erp)
1386 bool any_sta_nongf = !!(erp->ht_opmode &
1387 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
1388 u8 protection = erp->ht_opmode & IEEE80211_HT_OP_MODE_PROTECTION;
1389 u8 mm20_mode, mm40_mode, gf20_mode, gf40_mode;
1390 u16 mm20_rate, mm40_rate, gf20_rate, gf40_rate;
1391 u32 reg;
1393 /* default protection rate for HT20: OFDM 24M */
1394 mm20_rate = gf20_rate = 0x4004;
1396 /* default protection rate for HT40: duplicate OFDM 24M */
1397 mm40_rate = gf40_rate = 0x4084;
1399 switch (protection) {
1400 case IEEE80211_HT_OP_MODE_PROTECTION_NONE:
1402 * All STAs in this BSS are HT20/40 but there might be
1403 * STAs not supporting greenfield mode.
1404 * => Disable protection for HT transmissions.
1406 mm20_mode = mm40_mode = gf20_mode = gf40_mode = 0;
1408 break;
1409 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
1411 * All STAs in this BSS are HT20 or HT20/40 but there
1412 * might be STAs not supporting greenfield mode.
1413 * => Protect all HT40 transmissions.
1415 mm20_mode = gf20_mode = 0;
1416 mm40_mode = gf40_mode = 2;
1418 break;
1419 case IEEE80211_HT_OP_MODE_PROTECTION_NONMEMBER:
1421 * Nonmember protection:
1422 * According to 802.11n we _should_ protect all
1423 * HT transmissions (but we don't have to).
1425 * But if cts_protection is enabled we _shall_ protect
1426 * all HT transmissions using a CCK rate.
1428 * And if any station is non GF we _shall_ protect
1429 * GF transmissions.
1431 * We decide to protect everything
1432 * -> fall through to mixed mode.
1434 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
1436 * Legacy STAs are present
1437 * => Protect all HT transmissions.
1439 mm20_mode = mm40_mode = gf20_mode = gf40_mode = 2;
1442 * If erp protection is needed we have to protect HT
1443 * transmissions with CCK 11M long preamble.
1445 if (erp->cts_protection) {
1446 /* don't duplicate RTS/CTS in CCK mode */
1447 mm20_rate = mm40_rate = 0x0003;
1448 gf20_rate = gf40_rate = 0x0003;
1450 break;
1453 /* check for STAs not supporting greenfield mode */
1454 if (any_sta_nongf)
1455 gf20_mode = gf40_mode = 2;
1457 /* Update HT protection config */
1458 rt2800_register_read(rt2x00dev, MM20_PROT_CFG, &reg);
1459 rt2x00_set_field32(&reg, MM20_PROT_CFG_PROTECT_RATE, mm20_rate);
1460 rt2x00_set_field32(&reg, MM20_PROT_CFG_PROTECT_CTRL, mm20_mode);
1461 rt2800_register_write(rt2x00dev, MM20_PROT_CFG, reg);
1463 rt2800_register_read(rt2x00dev, MM40_PROT_CFG, &reg);
1464 rt2x00_set_field32(&reg, MM40_PROT_CFG_PROTECT_RATE, mm40_rate);
1465 rt2x00_set_field32(&reg, MM40_PROT_CFG_PROTECT_CTRL, mm40_mode);
1466 rt2800_register_write(rt2x00dev, MM40_PROT_CFG, reg);
1468 rt2800_register_read(rt2x00dev, GF20_PROT_CFG, &reg);
1469 rt2x00_set_field32(&reg, GF20_PROT_CFG_PROTECT_RATE, gf20_rate);
1470 rt2x00_set_field32(&reg, GF20_PROT_CFG_PROTECT_CTRL, gf20_mode);
1471 rt2800_register_write(rt2x00dev, GF20_PROT_CFG, reg);
1473 rt2800_register_read(rt2x00dev, GF40_PROT_CFG, &reg);
1474 rt2x00_set_field32(&reg, GF40_PROT_CFG_PROTECT_RATE, gf40_rate);
1475 rt2x00_set_field32(&reg, GF40_PROT_CFG_PROTECT_CTRL, gf40_mode);
1476 rt2800_register_write(rt2x00dev, GF40_PROT_CFG, reg);
1479 void rt2800_config_erp(struct rt2x00_dev *rt2x00dev, struct rt2x00lib_erp *erp,
1480 u32 changed)
1482 u32 reg;
1484 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
1485 rt2800_register_read(rt2x00dev, AUTO_RSP_CFG, &reg);
1486 rt2x00_set_field32(&reg, AUTO_RSP_CFG_BAC_ACK_POLICY,
1487 !!erp->short_preamble);
1488 rt2x00_set_field32(&reg, AUTO_RSP_CFG_AR_PREAMBLE,
1489 !!erp->short_preamble);
1490 rt2800_register_write(rt2x00dev, AUTO_RSP_CFG, reg);
1493 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
1494 rt2800_register_read(rt2x00dev, OFDM_PROT_CFG, &reg);
1495 rt2x00_set_field32(&reg, OFDM_PROT_CFG_PROTECT_CTRL,
1496 erp->cts_protection ? 2 : 0);
1497 rt2800_register_write(rt2x00dev, OFDM_PROT_CFG, reg);
1500 if (changed & BSS_CHANGED_BASIC_RATES) {
1501 rt2800_register_write(rt2x00dev, LEGACY_BASIC_RATE,
1502 erp->basic_rates);
1503 rt2800_register_write(rt2x00dev, HT_BASIC_RATE, 0x00008003);
1506 if (changed & BSS_CHANGED_ERP_SLOT) {
1507 rt2800_register_read(rt2x00dev, BKOFF_SLOT_CFG, &reg);
1508 rt2x00_set_field32(&reg, BKOFF_SLOT_CFG_SLOT_TIME,
1509 erp->slot_time);
1510 rt2800_register_write(rt2x00dev, BKOFF_SLOT_CFG, reg);
1512 rt2800_register_read(rt2x00dev, XIFS_TIME_CFG, &reg);
1513 rt2x00_set_field32(&reg, XIFS_TIME_CFG_EIFS, erp->eifs);
1514 rt2800_register_write(rt2x00dev, XIFS_TIME_CFG, reg);
1517 if (changed & BSS_CHANGED_BEACON_INT) {
1518 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
1519 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_INTERVAL,
1520 erp->beacon_int * 16);
1521 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
1524 if (changed & BSS_CHANGED_HT)
1525 rt2800_config_ht_opmode(rt2x00dev, erp);
1527 EXPORT_SYMBOL_GPL(rt2800_config_erp);
1529 static void rt2800_config_3572bt_ant(struct rt2x00_dev *rt2x00dev)
1531 u32 reg;
1532 u16 eeprom;
1533 u8 led_ctrl, led_g_mode, led_r_mode;
1535 rt2800_register_read(rt2x00dev, GPIO_SWITCH, &reg);
1536 if (rt2x00dev->curr_band == IEEE80211_BAND_5GHZ) {
1537 rt2x00_set_field32(&reg, GPIO_SWITCH_0, 1);
1538 rt2x00_set_field32(&reg, GPIO_SWITCH_1, 1);
1539 } else {
1540 rt2x00_set_field32(&reg, GPIO_SWITCH_0, 0);
1541 rt2x00_set_field32(&reg, GPIO_SWITCH_1, 0);
1543 rt2800_register_write(rt2x00dev, GPIO_SWITCH, reg);
1545 rt2800_register_read(rt2x00dev, LED_CFG, &reg);
1546 led_g_mode = rt2x00_get_field32(reg, LED_CFG_LED_POLAR) ? 3 : 0;
1547 led_r_mode = rt2x00_get_field32(reg, LED_CFG_LED_POLAR) ? 0 : 3;
1548 if (led_g_mode != rt2x00_get_field32(reg, LED_CFG_G_LED_MODE) ||
1549 led_r_mode != rt2x00_get_field32(reg, LED_CFG_R_LED_MODE)) {
1550 rt2x00_eeprom_read(rt2x00dev, EEPROM_FREQ, &eeprom);
1551 led_ctrl = rt2x00_get_field16(eeprom, EEPROM_FREQ_LED_MODE);
1552 if (led_ctrl == 0 || led_ctrl > 0x40) {
1553 rt2x00_set_field32(&reg, LED_CFG_G_LED_MODE, led_g_mode);
1554 rt2x00_set_field32(&reg, LED_CFG_R_LED_MODE, led_r_mode);
1555 rt2800_register_write(rt2x00dev, LED_CFG, reg);
1556 } else {
1557 rt2800_mcu_request(rt2x00dev, MCU_BAND_SELECT, 0xff,
1558 (led_g_mode << 2) | led_r_mode, 1);
1563 static void rt2800_set_ant_diversity(struct rt2x00_dev *rt2x00dev,
1564 enum antenna ant)
1566 u32 reg;
1567 u8 eesk_pin = (ant == ANTENNA_A) ? 1 : 0;
1568 u8 gpio_bit3 = (ant == ANTENNA_A) ? 0 : 1;
1570 if (rt2x00_is_pci(rt2x00dev)) {
1571 rt2800_register_read(rt2x00dev, E2PROM_CSR, &reg);
1572 rt2x00_set_field32(&reg, E2PROM_CSR_DATA_CLOCK, eesk_pin);
1573 rt2800_register_write(rt2x00dev, E2PROM_CSR, reg);
1574 } else if (rt2x00_is_usb(rt2x00dev))
1575 rt2800_mcu_request(rt2x00dev, MCU_ANT_SELECT, 0xff,
1576 eesk_pin, 0);
1578 rt2800_register_read(rt2x00dev, GPIO_CTRL, &reg);
1579 rt2x00_set_field32(&reg, GPIO_CTRL_DIR3, 0);
1580 rt2x00_set_field32(&reg, GPIO_CTRL_VAL3, gpio_bit3);
1581 rt2800_register_write(rt2x00dev, GPIO_CTRL, reg);
1584 void rt2800_config_ant(struct rt2x00_dev *rt2x00dev, struct antenna_setup *ant)
1586 u8 r1;
1587 u8 r3;
1588 u16 eeprom;
1590 rt2800_bbp_read(rt2x00dev, 1, &r1);
1591 rt2800_bbp_read(rt2x00dev, 3, &r3);
1593 if (rt2x00_rt(rt2x00dev, RT3572) &&
1594 test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags))
1595 rt2800_config_3572bt_ant(rt2x00dev);
1598 * Configure the TX antenna.
1600 switch (ant->tx_chain_num) {
1601 case 1:
1602 rt2x00_set_field8(&r1, BBP1_TX_ANTENNA, 0);
1603 break;
1604 case 2:
1605 if (rt2x00_rt(rt2x00dev, RT3572) &&
1606 test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags))
1607 rt2x00_set_field8(&r1, BBP1_TX_ANTENNA, 1);
1608 else
1609 rt2x00_set_field8(&r1, BBP1_TX_ANTENNA, 2);
1610 break;
1611 case 3:
1612 rt2x00_set_field8(&r1, BBP1_TX_ANTENNA, 0);
1613 break;
1617 * Configure the RX antenna.
1619 switch (ant->rx_chain_num) {
1620 case 1:
1621 if (rt2x00_rt(rt2x00dev, RT3070) ||
1622 rt2x00_rt(rt2x00dev, RT3090) ||
1623 rt2x00_rt(rt2x00dev, RT3352) ||
1624 rt2x00_rt(rt2x00dev, RT3390)) {
1625 rt2x00_eeprom_read(rt2x00dev,
1626 EEPROM_NIC_CONF1, &eeprom);
1627 if (rt2x00_get_field16(eeprom,
1628 EEPROM_NIC_CONF1_ANT_DIVERSITY))
1629 rt2800_set_ant_diversity(rt2x00dev,
1630 rt2x00dev->default_ant.rx);
1632 rt2x00_set_field8(&r3, BBP3_RX_ANTENNA, 0);
1633 break;
1634 case 2:
1635 if (rt2x00_rt(rt2x00dev, RT3572) &&
1636 test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags)) {
1637 rt2x00_set_field8(&r3, BBP3_RX_ADC, 1);
1638 rt2x00_set_field8(&r3, BBP3_RX_ANTENNA,
1639 rt2x00dev->curr_band == IEEE80211_BAND_5GHZ);
1640 rt2800_set_ant_diversity(rt2x00dev, ANTENNA_B);
1641 } else {
1642 rt2x00_set_field8(&r3, BBP3_RX_ANTENNA, 1);
1644 break;
1645 case 3:
1646 rt2x00_set_field8(&r3, BBP3_RX_ANTENNA, 2);
1647 break;
1650 rt2800_bbp_write(rt2x00dev, 3, r3);
1651 rt2800_bbp_write(rt2x00dev, 1, r1);
1653 EXPORT_SYMBOL_GPL(rt2800_config_ant);
1655 static void rt2800_config_lna_gain(struct rt2x00_dev *rt2x00dev,
1656 struct rt2x00lib_conf *libconf)
1658 u16 eeprom;
1659 short lna_gain;
1661 if (libconf->rf.channel <= 14) {
1662 rt2x00_eeprom_read(rt2x00dev, EEPROM_LNA, &eeprom);
1663 lna_gain = rt2x00_get_field16(eeprom, EEPROM_LNA_BG);
1664 } else if (libconf->rf.channel <= 64) {
1665 rt2x00_eeprom_read(rt2x00dev, EEPROM_LNA, &eeprom);
1666 lna_gain = rt2x00_get_field16(eeprom, EEPROM_LNA_A0);
1667 } else if (libconf->rf.channel <= 128) {
1668 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_BG2, &eeprom);
1669 lna_gain = rt2x00_get_field16(eeprom, EEPROM_RSSI_BG2_LNA_A1);
1670 } else {
1671 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_A2, &eeprom);
1672 lna_gain = rt2x00_get_field16(eeprom, EEPROM_RSSI_A2_LNA_A2);
1675 rt2x00dev->lna_gain = lna_gain;
1678 static void rt2800_config_channel_rf2xxx(struct rt2x00_dev *rt2x00dev,
1679 struct ieee80211_conf *conf,
1680 struct rf_channel *rf,
1681 struct channel_info *info)
1683 rt2x00_set_field32(&rf->rf4, RF4_FREQ_OFFSET, rt2x00dev->freq_offset);
1685 if (rt2x00dev->default_ant.tx_chain_num == 1)
1686 rt2x00_set_field32(&rf->rf2, RF2_ANTENNA_TX1, 1);
1688 if (rt2x00dev->default_ant.rx_chain_num == 1) {
1689 rt2x00_set_field32(&rf->rf2, RF2_ANTENNA_RX1, 1);
1690 rt2x00_set_field32(&rf->rf2, RF2_ANTENNA_RX2, 1);
1691 } else if (rt2x00dev->default_ant.rx_chain_num == 2)
1692 rt2x00_set_field32(&rf->rf2, RF2_ANTENNA_RX2, 1);
1694 if (rf->channel > 14) {
1696 * When TX power is below 0, we should increase it by 7 to
1697 * make it a positive value (Minimum value is -7).
1698 * However this means that values between 0 and 7 have
1699 * double meaning, and we should set a 7DBm boost flag.
1701 rt2x00_set_field32(&rf->rf3, RF3_TXPOWER_A_7DBM_BOOST,
1702 (info->default_power1 >= 0));
1704 if (info->default_power1 < 0)
1705 info->default_power1 += 7;
1707 rt2x00_set_field32(&rf->rf3, RF3_TXPOWER_A, info->default_power1);
1709 rt2x00_set_field32(&rf->rf4, RF4_TXPOWER_A_7DBM_BOOST,
1710 (info->default_power2 >= 0));
1712 if (info->default_power2 < 0)
1713 info->default_power2 += 7;
1715 rt2x00_set_field32(&rf->rf4, RF4_TXPOWER_A, info->default_power2);
1716 } else {
1717 rt2x00_set_field32(&rf->rf3, RF3_TXPOWER_G, info->default_power1);
1718 rt2x00_set_field32(&rf->rf4, RF4_TXPOWER_G, info->default_power2);
1721 rt2x00_set_field32(&rf->rf4, RF4_HT40, conf_is_ht40(conf));
1723 rt2800_rf_write(rt2x00dev, 1, rf->rf1);
1724 rt2800_rf_write(rt2x00dev, 2, rf->rf2);
1725 rt2800_rf_write(rt2x00dev, 3, rf->rf3 & ~0x00000004);
1726 rt2800_rf_write(rt2x00dev, 4, rf->rf4);
1728 udelay(200);
1730 rt2800_rf_write(rt2x00dev, 1, rf->rf1);
1731 rt2800_rf_write(rt2x00dev, 2, rf->rf2);
1732 rt2800_rf_write(rt2x00dev, 3, rf->rf3 | 0x00000004);
1733 rt2800_rf_write(rt2x00dev, 4, rf->rf4);
1735 udelay(200);
1737 rt2800_rf_write(rt2x00dev, 1, rf->rf1);
1738 rt2800_rf_write(rt2x00dev, 2, rf->rf2);
1739 rt2800_rf_write(rt2x00dev, 3, rf->rf3 & ~0x00000004);
1740 rt2800_rf_write(rt2x00dev, 4, rf->rf4);
1743 static void rt2800_config_channel_rf3xxx(struct rt2x00_dev *rt2x00dev,
1744 struct ieee80211_conf *conf,
1745 struct rf_channel *rf,
1746 struct channel_info *info)
1748 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
1749 u8 rfcsr, calib_tx, calib_rx;
1751 rt2800_rfcsr_write(rt2x00dev, 2, rf->rf1);
1753 rt2800_rfcsr_read(rt2x00dev, 3, &rfcsr);
1754 rt2x00_set_field8(&rfcsr, RFCSR3_K, rf->rf3);
1755 rt2800_rfcsr_write(rt2x00dev, 3, rfcsr);
1757 rt2800_rfcsr_read(rt2x00dev, 6, &rfcsr);
1758 rt2x00_set_field8(&rfcsr, RFCSR6_R1, rf->rf2);
1759 rt2800_rfcsr_write(rt2x00dev, 6, rfcsr);
1761 rt2800_rfcsr_read(rt2x00dev, 12, &rfcsr);
1762 rt2x00_set_field8(&rfcsr, RFCSR12_TX_POWER, info->default_power1);
1763 rt2800_rfcsr_write(rt2x00dev, 12, rfcsr);
1765 rt2800_rfcsr_read(rt2x00dev, 13, &rfcsr);
1766 rt2x00_set_field8(&rfcsr, RFCSR13_TX_POWER, info->default_power2);
1767 rt2800_rfcsr_write(rt2x00dev, 13, rfcsr);
1769 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
1770 rt2x00_set_field8(&rfcsr, RFCSR1_RX0_PD, 0);
1771 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD,
1772 rt2x00dev->default_ant.rx_chain_num <= 1);
1773 rt2x00_set_field8(&rfcsr, RFCSR1_RX2_PD,
1774 rt2x00dev->default_ant.rx_chain_num <= 2);
1775 rt2x00_set_field8(&rfcsr, RFCSR1_TX0_PD, 0);
1776 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD,
1777 rt2x00dev->default_ant.tx_chain_num <= 1);
1778 rt2x00_set_field8(&rfcsr, RFCSR1_TX2_PD,
1779 rt2x00dev->default_ant.tx_chain_num <= 2);
1780 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
1782 rt2800_rfcsr_read(rt2x00dev, 30, &rfcsr);
1783 rt2x00_set_field8(&rfcsr, RFCSR30_RF_CALIBRATION, 1);
1784 rt2800_rfcsr_write(rt2x00dev, 30, rfcsr);
1785 msleep(1);
1786 rt2x00_set_field8(&rfcsr, RFCSR30_RF_CALIBRATION, 0);
1787 rt2800_rfcsr_write(rt2x00dev, 30, rfcsr);
1789 rt2800_rfcsr_read(rt2x00dev, 23, &rfcsr);
1790 rt2x00_set_field8(&rfcsr, RFCSR23_FREQ_OFFSET, rt2x00dev->freq_offset);
1791 rt2800_rfcsr_write(rt2x00dev, 23, rfcsr);
1793 if (rt2x00_rt(rt2x00dev, RT3390)) {
1794 calib_tx = conf_is_ht40(conf) ? 0x68 : 0x4f;
1795 calib_rx = conf_is_ht40(conf) ? 0x6f : 0x4f;
1796 } else {
1797 if (conf_is_ht40(conf)) {
1798 calib_tx = drv_data->calibration_bw40;
1799 calib_rx = drv_data->calibration_bw40;
1800 } else {
1801 calib_tx = drv_data->calibration_bw20;
1802 calib_rx = drv_data->calibration_bw20;
1806 rt2800_rfcsr_read(rt2x00dev, 24, &rfcsr);
1807 rt2x00_set_field8(&rfcsr, RFCSR24_TX_CALIB, calib_tx);
1808 rt2800_rfcsr_write(rt2x00dev, 24, rfcsr);
1810 rt2800_rfcsr_read(rt2x00dev, 31, &rfcsr);
1811 rt2x00_set_field8(&rfcsr, RFCSR31_RX_CALIB, calib_rx);
1812 rt2800_rfcsr_write(rt2x00dev, 31, rfcsr);
1814 rt2800_rfcsr_read(rt2x00dev, 7, &rfcsr);
1815 rt2x00_set_field8(&rfcsr, RFCSR7_RF_TUNING, 1);
1816 rt2800_rfcsr_write(rt2x00dev, 7, rfcsr);
1818 rt2800_rfcsr_read(rt2x00dev, 30, &rfcsr);
1819 rt2x00_set_field8(&rfcsr, RFCSR30_RF_CALIBRATION, 1);
1820 rt2800_rfcsr_write(rt2x00dev, 30, rfcsr);
1821 msleep(1);
1822 rt2x00_set_field8(&rfcsr, RFCSR30_RF_CALIBRATION, 0);
1823 rt2800_rfcsr_write(rt2x00dev, 30, rfcsr);
1826 static void rt2800_config_channel_rf3052(struct rt2x00_dev *rt2x00dev,
1827 struct ieee80211_conf *conf,
1828 struct rf_channel *rf,
1829 struct channel_info *info)
1831 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
1832 u8 rfcsr;
1833 u32 reg;
1835 if (rf->channel <= 14) {
1836 rt2800_bbp_write(rt2x00dev, 25, drv_data->bbp25);
1837 rt2800_bbp_write(rt2x00dev, 26, drv_data->bbp26);
1838 } else {
1839 rt2800_bbp_write(rt2x00dev, 25, 0x09);
1840 rt2800_bbp_write(rt2x00dev, 26, 0xff);
1843 rt2800_rfcsr_write(rt2x00dev, 2, rf->rf1);
1844 rt2800_rfcsr_write(rt2x00dev, 3, rf->rf3);
1846 rt2800_rfcsr_read(rt2x00dev, 6, &rfcsr);
1847 rt2x00_set_field8(&rfcsr, RFCSR6_R1, rf->rf2);
1848 if (rf->channel <= 14)
1849 rt2x00_set_field8(&rfcsr, RFCSR6_TXDIV, 2);
1850 else
1851 rt2x00_set_field8(&rfcsr, RFCSR6_TXDIV, 1);
1852 rt2800_rfcsr_write(rt2x00dev, 6, rfcsr);
1854 rt2800_rfcsr_read(rt2x00dev, 5, &rfcsr);
1855 if (rf->channel <= 14)
1856 rt2x00_set_field8(&rfcsr, RFCSR5_R1, 1);
1857 else
1858 rt2x00_set_field8(&rfcsr, RFCSR5_R1, 2);
1859 rt2800_rfcsr_write(rt2x00dev, 5, rfcsr);
1861 rt2800_rfcsr_read(rt2x00dev, 12, &rfcsr);
1862 if (rf->channel <= 14) {
1863 rt2x00_set_field8(&rfcsr, RFCSR12_DR0, 3);
1864 rt2x00_set_field8(&rfcsr, RFCSR12_TX_POWER,
1865 info->default_power1);
1866 } else {
1867 rt2x00_set_field8(&rfcsr, RFCSR12_DR0, 7);
1868 rt2x00_set_field8(&rfcsr, RFCSR12_TX_POWER,
1869 (info->default_power1 & 0x3) |
1870 ((info->default_power1 & 0xC) << 1));
1872 rt2800_rfcsr_write(rt2x00dev, 12, rfcsr);
1874 rt2800_rfcsr_read(rt2x00dev, 13, &rfcsr);
1875 if (rf->channel <= 14) {
1876 rt2x00_set_field8(&rfcsr, RFCSR13_DR0, 3);
1877 rt2x00_set_field8(&rfcsr, RFCSR13_TX_POWER,
1878 info->default_power2);
1879 } else {
1880 rt2x00_set_field8(&rfcsr, RFCSR13_DR0, 7);
1881 rt2x00_set_field8(&rfcsr, RFCSR13_TX_POWER,
1882 (info->default_power2 & 0x3) |
1883 ((info->default_power2 & 0xC) << 1));
1885 rt2800_rfcsr_write(rt2x00dev, 13, rfcsr);
1887 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
1888 rt2x00_set_field8(&rfcsr, RFCSR1_RX0_PD, 0);
1889 rt2x00_set_field8(&rfcsr, RFCSR1_TX0_PD, 0);
1890 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD, 0);
1891 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD, 0);
1892 rt2x00_set_field8(&rfcsr, RFCSR1_RX2_PD, 0);
1893 rt2x00_set_field8(&rfcsr, RFCSR1_TX2_PD, 0);
1894 if (test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags)) {
1895 if (rf->channel <= 14) {
1896 rt2x00_set_field8(&rfcsr, RFCSR1_RX0_PD, 1);
1897 rt2x00_set_field8(&rfcsr, RFCSR1_TX0_PD, 1);
1899 rt2x00_set_field8(&rfcsr, RFCSR1_RX2_PD, 1);
1900 rt2x00_set_field8(&rfcsr, RFCSR1_TX2_PD, 1);
1901 } else {
1902 switch (rt2x00dev->default_ant.tx_chain_num) {
1903 case 1:
1904 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD, 1);
1905 case 2:
1906 rt2x00_set_field8(&rfcsr, RFCSR1_TX2_PD, 1);
1907 break;
1910 switch (rt2x00dev->default_ant.rx_chain_num) {
1911 case 1:
1912 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD, 1);
1913 case 2:
1914 rt2x00_set_field8(&rfcsr, RFCSR1_RX2_PD, 1);
1915 break;
1918 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
1920 rt2800_rfcsr_read(rt2x00dev, 23, &rfcsr);
1921 rt2x00_set_field8(&rfcsr, RFCSR23_FREQ_OFFSET, rt2x00dev->freq_offset);
1922 rt2800_rfcsr_write(rt2x00dev, 23, rfcsr);
1924 if (conf_is_ht40(conf)) {
1925 rt2800_rfcsr_write(rt2x00dev, 24, drv_data->calibration_bw40);
1926 rt2800_rfcsr_write(rt2x00dev, 31, drv_data->calibration_bw40);
1927 } else {
1928 rt2800_rfcsr_write(rt2x00dev, 24, drv_data->calibration_bw20);
1929 rt2800_rfcsr_write(rt2x00dev, 31, drv_data->calibration_bw20);
1932 if (rf->channel <= 14) {
1933 rt2800_rfcsr_write(rt2x00dev, 7, 0xd8);
1934 rt2800_rfcsr_write(rt2x00dev, 9, 0xc3);
1935 rt2800_rfcsr_write(rt2x00dev, 10, 0xf1);
1936 rt2800_rfcsr_write(rt2x00dev, 11, 0xb9);
1937 rt2800_rfcsr_write(rt2x00dev, 15, 0x53);
1938 rfcsr = 0x4c;
1939 rt2x00_set_field8(&rfcsr, RFCSR16_TXMIXER_GAIN,
1940 drv_data->txmixer_gain_24g);
1941 rt2800_rfcsr_write(rt2x00dev, 16, rfcsr);
1942 rt2800_rfcsr_write(rt2x00dev, 17, 0x23);
1943 rt2800_rfcsr_write(rt2x00dev, 19, 0x93);
1944 rt2800_rfcsr_write(rt2x00dev, 20, 0xb3);
1945 rt2800_rfcsr_write(rt2x00dev, 25, 0x15);
1946 rt2800_rfcsr_write(rt2x00dev, 26, 0x85);
1947 rt2800_rfcsr_write(rt2x00dev, 27, 0x00);
1948 rt2800_rfcsr_write(rt2x00dev, 29, 0x9b);
1949 } else {
1950 rt2800_rfcsr_read(rt2x00dev, 7, &rfcsr);
1951 rt2x00_set_field8(&rfcsr, RFCSR7_BIT2, 1);
1952 rt2x00_set_field8(&rfcsr, RFCSR7_BIT3, 0);
1953 rt2x00_set_field8(&rfcsr, RFCSR7_BIT4, 1);
1954 rt2x00_set_field8(&rfcsr, RFCSR7_BITS67, 0);
1955 rt2800_rfcsr_write(rt2x00dev, 7, rfcsr);
1956 rt2800_rfcsr_write(rt2x00dev, 9, 0xc0);
1957 rt2800_rfcsr_write(rt2x00dev, 10, 0xf1);
1958 rt2800_rfcsr_write(rt2x00dev, 11, 0x00);
1959 rt2800_rfcsr_write(rt2x00dev, 15, 0x43);
1960 rfcsr = 0x7a;
1961 rt2x00_set_field8(&rfcsr, RFCSR16_TXMIXER_GAIN,
1962 drv_data->txmixer_gain_5g);
1963 rt2800_rfcsr_write(rt2x00dev, 16, rfcsr);
1964 rt2800_rfcsr_write(rt2x00dev, 17, 0x23);
1965 if (rf->channel <= 64) {
1966 rt2800_rfcsr_write(rt2x00dev, 19, 0xb7);
1967 rt2800_rfcsr_write(rt2x00dev, 20, 0xf6);
1968 rt2800_rfcsr_write(rt2x00dev, 25, 0x3d);
1969 } else if (rf->channel <= 128) {
1970 rt2800_rfcsr_write(rt2x00dev, 19, 0x74);
1971 rt2800_rfcsr_write(rt2x00dev, 20, 0xf4);
1972 rt2800_rfcsr_write(rt2x00dev, 25, 0x01);
1973 } else {
1974 rt2800_rfcsr_write(rt2x00dev, 19, 0x72);
1975 rt2800_rfcsr_write(rt2x00dev, 20, 0xf3);
1976 rt2800_rfcsr_write(rt2x00dev, 25, 0x01);
1978 rt2800_rfcsr_write(rt2x00dev, 26, 0x87);
1979 rt2800_rfcsr_write(rt2x00dev, 27, 0x01);
1980 rt2800_rfcsr_write(rt2x00dev, 29, 0x9f);
1983 rt2800_register_read(rt2x00dev, GPIO_CTRL, &reg);
1984 rt2x00_set_field32(&reg, GPIO_CTRL_DIR7, 0);
1985 if (rf->channel <= 14)
1986 rt2x00_set_field32(&reg, GPIO_CTRL_VAL7, 1);
1987 else
1988 rt2x00_set_field32(&reg, GPIO_CTRL_VAL7, 0);
1989 rt2800_register_write(rt2x00dev, GPIO_CTRL, reg);
1991 rt2800_rfcsr_read(rt2x00dev, 7, &rfcsr);
1992 rt2x00_set_field8(&rfcsr, RFCSR7_RF_TUNING, 1);
1993 rt2800_rfcsr_write(rt2x00dev, 7, rfcsr);
1996 #define POWER_BOUND 0x27
1997 #define POWER_BOUND_5G 0x2b
1998 #define FREQ_OFFSET_BOUND 0x5f
2000 static void rt2800_adjust_freq_offset(struct rt2x00_dev *rt2x00dev)
2002 u8 rfcsr;
2004 rt2800_rfcsr_read(rt2x00dev, 17, &rfcsr);
2005 if (rt2x00dev->freq_offset > FREQ_OFFSET_BOUND)
2006 rt2x00_set_field8(&rfcsr, RFCSR17_CODE, FREQ_OFFSET_BOUND);
2007 else
2008 rt2x00_set_field8(&rfcsr, RFCSR17_CODE, rt2x00dev->freq_offset);
2009 rt2800_rfcsr_write(rt2x00dev, 17, rfcsr);
2012 static void rt2800_config_channel_rf3290(struct rt2x00_dev *rt2x00dev,
2013 struct ieee80211_conf *conf,
2014 struct rf_channel *rf,
2015 struct channel_info *info)
2017 u8 rfcsr;
2019 rt2800_rfcsr_write(rt2x00dev, 8, rf->rf1);
2020 rt2800_rfcsr_write(rt2x00dev, 9, rf->rf3);
2021 rt2800_rfcsr_read(rt2x00dev, 11, &rfcsr);
2022 rt2x00_set_field8(&rfcsr, RFCSR11_R, rf->rf2);
2023 rt2800_rfcsr_write(rt2x00dev, 11, rfcsr);
2025 rt2800_rfcsr_read(rt2x00dev, 49, &rfcsr);
2026 if (info->default_power1 > POWER_BOUND)
2027 rt2x00_set_field8(&rfcsr, RFCSR49_TX, POWER_BOUND);
2028 else
2029 rt2x00_set_field8(&rfcsr, RFCSR49_TX, info->default_power1);
2030 rt2800_rfcsr_write(rt2x00dev, 49, rfcsr);
2032 rt2800_adjust_freq_offset(rt2x00dev);
2034 if (rf->channel <= 14) {
2035 if (rf->channel == 6)
2036 rt2800_bbp_write(rt2x00dev, 68, 0x0c);
2037 else
2038 rt2800_bbp_write(rt2x00dev, 68, 0x0b);
2040 if (rf->channel >= 1 && rf->channel <= 6)
2041 rt2800_bbp_write(rt2x00dev, 59, 0x0f);
2042 else if (rf->channel >= 7 && rf->channel <= 11)
2043 rt2800_bbp_write(rt2x00dev, 59, 0x0e);
2044 else if (rf->channel >= 12 && rf->channel <= 14)
2045 rt2800_bbp_write(rt2x00dev, 59, 0x0d);
2049 static void rt2800_config_channel_rf3322(struct rt2x00_dev *rt2x00dev,
2050 struct ieee80211_conf *conf,
2051 struct rf_channel *rf,
2052 struct channel_info *info)
2054 u8 rfcsr;
2056 rt2800_rfcsr_write(rt2x00dev, 8, rf->rf1);
2057 rt2800_rfcsr_write(rt2x00dev, 9, rf->rf3);
2059 rt2800_rfcsr_write(rt2x00dev, 11, 0x42);
2060 rt2800_rfcsr_write(rt2x00dev, 12, 0x1c);
2061 rt2800_rfcsr_write(rt2x00dev, 13, 0x00);
2063 if (info->default_power1 > POWER_BOUND)
2064 rt2800_rfcsr_write(rt2x00dev, 47, POWER_BOUND);
2065 else
2066 rt2800_rfcsr_write(rt2x00dev, 47, info->default_power1);
2068 if (info->default_power2 > POWER_BOUND)
2069 rt2800_rfcsr_write(rt2x00dev, 48, POWER_BOUND);
2070 else
2071 rt2800_rfcsr_write(rt2x00dev, 48, info->default_power2);
2073 rt2800_adjust_freq_offset(rt2x00dev);
2075 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
2076 rt2x00_set_field8(&rfcsr, RFCSR1_RX0_PD, 1);
2077 rt2x00_set_field8(&rfcsr, RFCSR1_TX0_PD, 1);
2079 if ( rt2x00dev->default_ant.tx_chain_num == 2 )
2080 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD, 1);
2081 else
2082 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD, 0);
2084 if ( rt2x00dev->default_ant.rx_chain_num == 2 )
2085 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD, 1);
2086 else
2087 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD, 0);
2089 rt2x00_set_field8(&rfcsr, RFCSR1_RX2_PD, 0);
2090 rt2x00_set_field8(&rfcsr, RFCSR1_TX2_PD, 0);
2092 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
2094 rt2800_rfcsr_write(rt2x00dev, 31, 80);
2097 static void rt2800_config_channel_rf53xx(struct rt2x00_dev *rt2x00dev,
2098 struct ieee80211_conf *conf,
2099 struct rf_channel *rf,
2100 struct channel_info *info)
2102 u8 rfcsr;
2104 rt2800_rfcsr_write(rt2x00dev, 8, rf->rf1);
2105 rt2800_rfcsr_write(rt2x00dev, 9, rf->rf3);
2106 rt2800_rfcsr_read(rt2x00dev, 11, &rfcsr);
2107 rt2x00_set_field8(&rfcsr, RFCSR11_R, rf->rf2);
2108 rt2800_rfcsr_write(rt2x00dev, 11, rfcsr);
2110 rt2800_rfcsr_read(rt2x00dev, 49, &rfcsr);
2111 if (info->default_power1 > POWER_BOUND)
2112 rt2x00_set_field8(&rfcsr, RFCSR49_TX, POWER_BOUND);
2113 else
2114 rt2x00_set_field8(&rfcsr, RFCSR49_TX, info->default_power1);
2115 rt2800_rfcsr_write(rt2x00dev, 49, rfcsr);
2117 if (rt2x00_rt(rt2x00dev, RT5392)) {
2118 rt2800_rfcsr_read(rt2x00dev, 50, &rfcsr);
2119 if (info->default_power1 > POWER_BOUND)
2120 rt2x00_set_field8(&rfcsr, RFCSR50_TX, POWER_BOUND);
2121 else
2122 rt2x00_set_field8(&rfcsr, RFCSR50_TX,
2123 info->default_power2);
2124 rt2800_rfcsr_write(rt2x00dev, 50, rfcsr);
2127 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
2128 if (rt2x00_rt(rt2x00dev, RT5392)) {
2129 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD, 1);
2130 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD, 1);
2132 rt2x00_set_field8(&rfcsr, RFCSR1_RF_BLOCK_EN, 1);
2133 rt2x00_set_field8(&rfcsr, RFCSR1_PLL_PD, 1);
2134 rt2x00_set_field8(&rfcsr, RFCSR1_RX0_PD, 1);
2135 rt2x00_set_field8(&rfcsr, RFCSR1_TX0_PD, 1);
2136 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
2138 rt2800_adjust_freq_offset(rt2x00dev);
2140 if (rf->channel <= 14) {
2141 int idx = rf->channel-1;
2143 if (test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags)) {
2144 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F)) {
2145 /* r55/r59 value array of channel 1~14 */
2146 static const char r55_bt_rev[] = {0x83, 0x83,
2147 0x83, 0x73, 0x73, 0x63, 0x53, 0x53,
2148 0x53, 0x43, 0x43, 0x43, 0x43, 0x43};
2149 static const char r59_bt_rev[] = {0x0e, 0x0e,
2150 0x0e, 0x0e, 0x0e, 0x0b, 0x0a, 0x09,
2151 0x07, 0x07, 0x07, 0x07, 0x07, 0x07};
2153 rt2800_rfcsr_write(rt2x00dev, 55,
2154 r55_bt_rev[idx]);
2155 rt2800_rfcsr_write(rt2x00dev, 59,
2156 r59_bt_rev[idx]);
2157 } else {
2158 static const char r59_bt[] = {0x8b, 0x8b, 0x8b,
2159 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x89,
2160 0x88, 0x88, 0x86, 0x85, 0x84};
2162 rt2800_rfcsr_write(rt2x00dev, 59, r59_bt[idx]);
2164 } else {
2165 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F)) {
2166 static const char r55_nonbt_rev[] = {0x23, 0x23,
2167 0x23, 0x23, 0x13, 0x13, 0x03, 0x03,
2168 0x03, 0x03, 0x03, 0x03, 0x03, 0x03};
2169 static const char r59_nonbt_rev[] = {0x07, 0x07,
2170 0x07, 0x07, 0x07, 0x07, 0x07, 0x07,
2171 0x07, 0x07, 0x06, 0x05, 0x04, 0x04};
2173 rt2800_rfcsr_write(rt2x00dev, 55,
2174 r55_nonbt_rev[idx]);
2175 rt2800_rfcsr_write(rt2x00dev, 59,
2176 r59_nonbt_rev[idx]);
2177 } else if (rt2x00_rt(rt2x00dev, RT5390) ||
2178 rt2x00_rt(rt2x00dev, RT5392)) {
2179 static const char r59_non_bt[] = {0x8f, 0x8f,
2180 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8d,
2181 0x8a, 0x88, 0x88, 0x87, 0x87, 0x86};
2183 rt2800_rfcsr_write(rt2x00dev, 59,
2184 r59_non_bt[idx]);
2190 static void rt2800_config_channel_rf55xx(struct rt2x00_dev *rt2x00dev,
2191 struct ieee80211_conf *conf,
2192 struct rf_channel *rf,
2193 struct channel_info *info)
2195 u8 rfcsr, ep_reg;
2196 u32 reg;
2197 int power_bound;
2199 /* TODO */
2200 const bool is_11b = false;
2201 const bool is_type_ep = false;
2203 rt2800_register_read(rt2x00dev, LDO_CFG0, &reg);
2204 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL,
2205 (rf->channel > 14 || conf_is_ht40(conf)) ? 5 : 0);
2206 rt2800_register_write(rt2x00dev, LDO_CFG0, reg);
2208 /* Order of values on rf_channel entry: N, K, mod, R */
2209 rt2800_rfcsr_write(rt2x00dev, 8, rf->rf1 & 0xff);
2211 rt2800_rfcsr_read(rt2x00dev, 9, &rfcsr);
2212 rt2x00_set_field8(&rfcsr, RFCSR9_K, rf->rf2 & 0xf);
2213 rt2x00_set_field8(&rfcsr, RFCSR9_N, (rf->rf1 & 0x100) >> 8);
2214 rt2x00_set_field8(&rfcsr, RFCSR9_MOD, ((rf->rf3 - 8) & 0x4) >> 2);
2215 rt2800_rfcsr_write(rt2x00dev, 9, rfcsr);
2217 rt2800_rfcsr_read(rt2x00dev, 11, &rfcsr);
2218 rt2x00_set_field8(&rfcsr, RFCSR11_R, rf->rf4 - 1);
2219 rt2x00_set_field8(&rfcsr, RFCSR11_MOD, (rf->rf3 - 8) & 0x3);
2220 rt2800_rfcsr_write(rt2x00dev, 11, rfcsr);
2222 if (rf->channel <= 14) {
2223 rt2800_rfcsr_write(rt2x00dev, 10, 0x90);
2224 /* FIXME: RF11 owerwrite ? */
2225 rt2800_rfcsr_write(rt2x00dev, 11, 0x4A);
2226 rt2800_rfcsr_write(rt2x00dev, 12, 0x52);
2227 rt2800_rfcsr_write(rt2x00dev, 13, 0x42);
2228 rt2800_rfcsr_write(rt2x00dev, 22, 0x40);
2229 rt2800_rfcsr_write(rt2x00dev, 24, 0x4A);
2230 rt2800_rfcsr_write(rt2x00dev, 25, 0x80);
2231 rt2800_rfcsr_write(rt2x00dev, 27, 0x42);
2232 rt2800_rfcsr_write(rt2x00dev, 36, 0x80);
2233 rt2800_rfcsr_write(rt2x00dev, 37, 0x08);
2234 rt2800_rfcsr_write(rt2x00dev, 38, 0x89);
2235 rt2800_rfcsr_write(rt2x00dev, 39, 0x1B);
2236 rt2800_rfcsr_write(rt2x00dev, 40, 0x0D);
2237 rt2800_rfcsr_write(rt2x00dev, 41, 0x9B);
2238 rt2800_rfcsr_write(rt2x00dev, 42, 0xD5);
2239 rt2800_rfcsr_write(rt2x00dev, 43, 0x72);
2240 rt2800_rfcsr_write(rt2x00dev, 44, 0x0E);
2241 rt2800_rfcsr_write(rt2x00dev, 45, 0xA2);
2242 rt2800_rfcsr_write(rt2x00dev, 46, 0x6B);
2243 rt2800_rfcsr_write(rt2x00dev, 48, 0x10);
2244 rt2800_rfcsr_write(rt2x00dev, 51, 0x3E);
2245 rt2800_rfcsr_write(rt2x00dev, 52, 0x48);
2246 rt2800_rfcsr_write(rt2x00dev, 54, 0x38);
2247 rt2800_rfcsr_write(rt2x00dev, 56, 0xA1);
2248 rt2800_rfcsr_write(rt2x00dev, 57, 0x00);
2249 rt2800_rfcsr_write(rt2x00dev, 58, 0x39);
2250 rt2800_rfcsr_write(rt2x00dev, 60, 0x45);
2251 rt2800_rfcsr_write(rt2x00dev, 61, 0x91);
2252 rt2800_rfcsr_write(rt2x00dev, 62, 0x39);
2254 /* TODO RF27 <- tssi */
2256 rfcsr = rf->channel <= 10 ? 0x07 : 0x06;
2257 rt2800_rfcsr_write(rt2x00dev, 23, rfcsr);
2258 rt2800_rfcsr_write(rt2x00dev, 59, rfcsr);
2260 if (is_11b) {
2261 /* CCK */
2262 rt2800_rfcsr_write(rt2x00dev, 31, 0xF8);
2263 rt2800_rfcsr_write(rt2x00dev, 32, 0xC0);
2264 if (is_type_ep)
2265 rt2800_rfcsr_write(rt2x00dev, 55, 0x06);
2266 else
2267 rt2800_rfcsr_write(rt2x00dev, 55, 0x47);
2268 } else {
2269 /* OFDM */
2270 if (is_type_ep)
2271 rt2800_rfcsr_write(rt2x00dev, 55, 0x03);
2272 else
2273 rt2800_rfcsr_write(rt2x00dev, 55, 0x43);
2276 power_bound = POWER_BOUND;
2277 ep_reg = 0x2;
2278 } else {
2279 rt2800_rfcsr_write(rt2x00dev, 10, 0x97);
2280 /* FIMXE: RF11 overwrite */
2281 rt2800_rfcsr_write(rt2x00dev, 11, 0x40);
2282 rt2800_rfcsr_write(rt2x00dev, 25, 0xBF);
2283 rt2800_rfcsr_write(rt2x00dev, 27, 0x42);
2284 rt2800_rfcsr_write(rt2x00dev, 36, 0x00);
2285 rt2800_rfcsr_write(rt2x00dev, 37, 0x04);
2286 rt2800_rfcsr_write(rt2x00dev, 38, 0x85);
2287 rt2800_rfcsr_write(rt2x00dev, 40, 0x42);
2288 rt2800_rfcsr_write(rt2x00dev, 41, 0xBB);
2289 rt2800_rfcsr_write(rt2x00dev, 42, 0xD7);
2290 rt2800_rfcsr_write(rt2x00dev, 45, 0x41);
2291 rt2800_rfcsr_write(rt2x00dev, 48, 0x00);
2292 rt2800_rfcsr_write(rt2x00dev, 57, 0x77);
2293 rt2800_rfcsr_write(rt2x00dev, 60, 0x05);
2294 rt2800_rfcsr_write(rt2x00dev, 61, 0x01);
2296 /* TODO RF27 <- tssi */
2298 if (rf->channel >= 36 && rf->channel <= 64) {
2300 rt2800_rfcsr_write(rt2x00dev, 12, 0x2E);
2301 rt2800_rfcsr_write(rt2x00dev, 13, 0x22);
2302 rt2800_rfcsr_write(rt2x00dev, 22, 0x60);
2303 rt2800_rfcsr_write(rt2x00dev, 23, 0x7F);
2304 if (rf->channel <= 50)
2305 rt2800_rfcsr_write(rt2x00dev, 24, 0x09);
2306 else if (rf->channel >= 52)
2307 rt2800_rfcsr_write(rt2x00dev, 24, 0x07);
2308 rt2800_rfcsr_write(rt2x00dev, 39, 0x1C);
2309 rt2800_rfcsr_write(rt2x00dev, 43, 0x5B);
2310 rt2800_rfcsr_write(rt2x00dev, 44, 0X40);
2311 rt2800_rfcsr_write(rt2x00dev, 46, 0X00);
2312 rt2800_rfcsr_write(rt2x00dev, 51, 0xFE);
2313 rt2800_rfcsr_write(rt2x00dev, 52, 0x0C);
2314 rt2800_rfcsr_write(rt2x00dev, 54, 0xF8);
2315 if (rf->channel <= 50) {
2316 rt2800_rfcsr_write(rt2x00dev, 55, 0x06),
2317 rt2800_rfcsr_write(rt2x00dev, 56, 0xD3);
2318 } else if (rf->channel >= 52) {
2319 rt2800_rfcsr_write(rt2x00dev, 55, 0x04);
2320 rt2800_rfcsr_write(rt2x00dev, 56, 0xBB);
2323 rt2800_rfcsr_write(rt2x00dev, 58, 0x15);
2324 rt2800_rfcsr_write(rt2x00dev, 59, 0x7F);
2325 rt2800_rfcsr_write(rt2x00dev, 62, 0x15);
2327 } else if (rf->channel >= 100 && rf->channel <= 165) {
2329 rt2800_rfcsr_write(rt2x00dev, 12, 0x0E);
2330 rt2800_rfcsr_write(rt2x00dev, 13, 0x42);
2331 rt2800_rfcsr_write(rt2x00dev, 22, 0x40);
2332 if (rf->channel <= 153) {
2333 rt2800_rfcsr_write(rt2x00dev, 23, 0x3C);
2334 rt2800_rfcsr_write(rt2x00dev, 24, 0x06);
2335 } else if (rf->channel >= 155) {
2336 rt2800_rfcsr_write(rt2x00dev, 23, 0x38);
2337 rt2800_rfcsr_write(rt2x00dev, 24, 0x05);
2339 if (rf->channel <= 138) {
2340 rt2800_rfcsr_write(rt2x00dev, 39, 0x1A);
2341 rt2800_rfcsr_write(rt2x00dev, 43, 0x3B);
2342 rt2800_rfcsr_write(rt2x00dev, 44, 0x20);
2343 rt2800_rfcsr_write(rt2x00dev, 46, 0x18);
2344 } else if (rf->channel >= 140) {
2345 rt2800_rfcsr_write(rt2x00dev, 39, 0x18);
2346 rt2800_rfcsr_write(rt2x00dev, 43, 0x1B);
2347 rt2800_rfcsr_write(rt2x00dev, 44, 0x10);
2348 rt2800_rfcsr_write(rt2x00dev, 46, 0X08);
2350 if (rf->channel <= 124)
2351 rt2800_rfcsr_write(rt2x00dev, 51, 0xFC);
2352 else if (rf->channel >= 126)
2353 rt2800_rfcsr_write(rt2x00dev, 51, 0xEC);
2354 if (rf->channel <= 138)
2355 rt2800_rfcsr_write(rt2x00dev, 52, 0x06);
2356 else if (rf->channel >= 140)
2357 rt2800_rfcsr_write(rt2x00dev, 52, 0x06);
2358 rt2800_rfcsr_write(rt2x00dev, 54, 0xEB);
2359 if (rf->channel <= 138)
2360 rt2800_rfcsr_write(rt2x00dev, 55, 0x01);
2361 else if (rf->channel >= 140)
2362 rt2800_rfcsr_write(rt2x00dev, 55, 0x00);
2363 if (rf->channel <= 128)
2364 rt2800_rfcsr_write(rt2x00dev, 56, 0xBB);
2365 else if (rf->channel >= 130)
2366 rt2800_rfcsr_write(rt2x00dev, 56, 0xAB);
2367 if (rf->channel <= 116)
2368 rt2800_rfcsr_write(rt2x00dev, 58, 0x1D);
2369 else if (rf->channel >= 118)
2370 rt2800_rfcsr_write(rt2x00dev, 58, 0x15);
2371 if (rf->channel <= 138)
2372 rt2800_rfcsr_write(rt2x00dev, 59, 0x3F);
2373 else if (rf->channel >= 140)
2374 rt2800_rfcsr_write(rt2x00dev, 59, 0x7C);
2375 if (rf->channel <= 116)
2376 rt2800_rfcsr_write(rt2x00dev, 62, 0x1D);
2377 else if (rf->channel >= 118)
2378 rt2800_rfcsr_write(rt2x00dev, 62, 0x15);
2381 power_bound = POWER_BOUND_5G;
2382 ep_reg = 0x3;
2385 rt2800_rfcsr_read(rt2x00dev, 49, &rfcsr);
2386 if (info->default_power1 > power_bound)
2387 rt2x00_set_field8(&rfcsr, RFCSR49_TX, power_bound);
2388 else
2389 rt2x00_set_field8(&rfcsr, RFCSR49_TX, info->default_power1);
2390 if (is_type_ep)
2391 rt2x00_set_field8(&rfcsr, RFCSR49_EP, ep_reg);
2392 rt2800_rfcsr_write(rt2x00dev, 49, rfcsr);
2394 rt2800_rfcsr_read(rt2x00dev, 50, &rfcsr);
2395 if (info->default_power1 > power_bound)
2396 rt2x00_set_field8(&rfcsr, RFCSR50_TX, power_bound);
2397 else
2398 rt2x00_set_field8(&rfcsr, RFCSR50_TX, info->default_power2);
2399 if (is_type_ep)
2400 rt2x00_set_field8(&rfcsr, RFCSR50_EP, ep_reg);
2401 rt2800_rfcsr_write(rt2x00dev, 50, rfcsr);
2403 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
2404 rt2x00_set_field8(&rfcsr, RFCSR1_RF_BLOCK_EN, 1);
2405 rt2x00_set_field8(&rfcsr, RFCSR1_PLL_PD, 1);
2407 rt2x00_set_field8(&rfcsr, RFCSR1_TX0_PD,
2408 rt2x00dev->default_ant.tx_chain_num >= 1);
2409 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD,
2410 rt2x00dev->default_ant.tx_chain_num == 2);
2411 rt2x00_set_field8(&rfcsr, RFCSR1_TX2_PD, 0);
2413 rt2x00_set_field8(&rfcsr, RFCSR1_RX0_PD,
2414 rt2x00dev->default_ant.rx_chain_num >= 1);
2415 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD,
2416 rt2x00dev->default_ant.rx_chain_num == 2);
2417 rt2x00_set_field8(&rfcsr, RFCSR1_RX2_PD, 0);
2419 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
2420 rt2800_rfcsr_write(rt2x00dev, 6, 0xe4);
2422 if (conf_is_ht40(conf))
2423 rt2800_rfcsr_write(rt2x00dev, 30, 0x16);
2424 else
2425 rt2800_rfcsr_write(rt2x00dev, 30, 0x10);
2427 if (!is_11b) {
2428 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
2429 rt2800_rfcsr_write(rt2x00dev, 32, 0x80);
2432 /* TODO proper frequency adjustment */
2433 rt2800_adjust_freq_offset(rt2x00dev);
2435 /* TODO merge with others */
2436 rt2800_rfcsr_read(rt2x00dev, 3, &rfcsr);
2437 rt2x00_set_field8(&rfcsr, RFCSR3_VCOCAL_EN, 1);
2438 rt2800_rfcsr_write(rt2x00dev, 3, rfcsr);
2440 /* BBP settings */
2441 rt2800_bbp_write(rt2x00dev, 62, 0x37 - rt2x00dev->lna_gain);
2442 rt2800_bbp_write(rt2x00dev, 63, 0x37 - rt2x00dev->lna_gain);
2443 rt2800_bbp_write(rt2x00dev, 64, 0x37 - rt2x00dev->lna_gain);
2445 rt2800_bbp_write(rt2x00dev, 79, (rf->channel <= 14) ? 0x1C : 0x18);
2446 rt2800_bbp_write(rt2x00dev, 80, (rf->channel <= 14) ? 0x0E : 0x08);
2447 rt2800_bbp_write(rt2x00dev, 81, (rf->channel <= 14) ? 0x3A : 0x38);
2448 rt2800_bbp_write(rt2x00dev, 82, (rf->channel <= 14) ? 0x62 : 0x92);
2450 /* GLRT band configuration */
2451 rt2800_bbp_write(rt2x00dev, 195, 128);
2452 rt2800_bbp_write(rt2x00dev, 196, (rf->channel <= 14) ? 0xE0 : 0xF0);
2453 rt2800_bbp_write(rt2x00dev, 195, 129);
2454 rt2800_bbp_write(rt2x00dev, 196, (rf->channel <= 14) ? 0x1F : 0x1E);
2455 rt2800_bbp_write(rt2x00dev, 195, 130);
2456 rt2800_bbp_write(rt2x00dev, 196, (rf->channel <= 14) ? 0x38 : 0x28);
2457 rt2800_bbp_write(rt2x00dev, 195, 131);
2458 rt2800_bbp_write(rt2x00dev, 196, (rf->channel <= 14) ? 0x32 : 0x20);
2459 rt2800_bbp_write(rt2x00dev, 195, 133);
2460 rt2800_bbp_write(rt2x00dev, 196, (rf->channel <= 14) ? 0x28 : 0x7F);
2461 rt2800_bbp_write(rt2x00dev, 195, 124);
2462 rt2800_bbp_write(rt2x00dev, 196, (rf->channel <= 14) ? 0x19 : 0x7F);
2465 static void rt2800_bbp_write_with_rx_chain(struct rt2x00_dev *rt2x00dev,
2466 const unsigned int word,
2467 const u8 value)
2469 u8 chain, reg;
2471 for (chain = 0; chain < rt2x00dev->default_ant.rx_chain_num; chain++) {
2472 rt2800_bbp_read(rt2x00dev, 27, &reg);
2473 rt2x00_set_field8(&reg, BBP27_RX_CHAIN_SEL, chain);
2474 rt2800_bbp_write(rt2x00dev, 27, reg);
2476 rt2800_bbp_write(rt2x00dev, word, value);
2480 static void rt2800_iq_calibrate(struct rt2x00_dev *rt2x00dev, int channel)
2482 u8 cal;
2484 /* TX0 IQ Gain */
2485 rt2800_bbp_write(rt2x00dev, 158, 0x2c);
2486 if (channel <= 14)
2487 cal = rt2x00_eeprom_byte(rt2x00dev, EEPROM_IQ_GAIN_CAL_TX0_2G);
2488 else if (channel >= 36 && channel <= 64)
2489 cal = rt2x00_eeprom_byte(rt2x00dev,
2490 EEPROM_IQ_GAIN_CAL_TX0_CH36_TO_CH64_5G);
2491 else if (channel >= 100 && channel <= 138)
2492 cal = rt2x00_eeprom_byte(rt2x00dev,
2493 EEPROM_IQ_GAIN_CAL_TX0_CH100_TO_CH138_5G);
2494 else if (channel >= 140 && channel <= 165)
2495 cal = rt2x00_eeprom_byte(rt2x00dev,
2496 EEPROM_IQ_GAIN_CAL_TX0_CH140_TO_CH165_5G);
2497 else
2498 cal = 0;
2499 rt2800_bbp_write(rt2x00dev, 159, cal);
2501 /* TX0 IQ Phase */
2502 rt2800_bbp_write(rt2x00dev, 158, 0x2d);
2503 if (channel <= 14)
2504 cal = rt2x00_eeprom_byte(rt2x00dev, EEPROM_IQ_PHASE_CAL_TX0_2G);
2505 else if (channel >= 36 && channel <= 64)
2506 cal = rt2x00_eeprom_byte(rt2x00dev,
2507 EEPROM_IQ_PHASE_CAL_TX0_CH36_TO_CH64_5G);
2508 else if (channel >= 100 && channel <= 138)
2509 cal = rt2x00_eeprom_byte(rt2x00dev,
2510 EEPROM_IQ_PHASE_CAL_TX0_CH100_TO_CH138_5G);
2511 else if (channel >= 140 && channel <= 165)
2512 cal = rt2x00_eeprom_byte(rt2x00dev,
2513 EEPROM_IQ_PHASE_CAL_TX0_CH140_TO_CH165_5G);
2514 else
2515 cal = 0;
2516 rt2800_bbp_write(rt2x00dev, 159, cal);
2518 /* TX1 IQ Gain */
2519 rt2800_bbp_write(rt2x00dev, 158, 0x4a);
2520 if (channel <= 14)
2521 cal = rt2x00_eeprom_byte(rt2x00dev, EEPROM_IQ_GAIN_CAL_TX1_2G);
2522 else if (channel >= 36 && channel <= 64)
2523 cal = rt2x00_eeprom_byte(rt2x00dev,
2524 EEPROM_IQ_GAIN_CAL_TX1_CH36_TO_CH64_5G);
2525 else if (channel >= 100 && channel <= 138)
2526 cal = rt2x00_eeprom_byte(rt2x00dev,
2527 EEPROM_IQ_GAIN_CAL_TX1_CH100_TO_CH138_5G);
2528 else if (channel >= 140 && channel <= 165)
2529 cal = rt2x00_eeprom_byte(rt2x00dev,
2530 EEPROM_IQ_GAIN_CAL_TX1_CH140_TO_CH165_5G);
2531 else
2532 cal = 0;
2533 rt2800_bbp_write(rt2x00dev, 159, cal);
2535 /* TX1 IQ Phase */
2536 rt2800_bbp_write(rt2x00dev, 158, 0x4b);
2537 if (channel <= 14)
2538 cal = rt2x00_eeprom_byte(rt2x00dev, EEPROM_IQ_PHASE_CAL_TX1_2G);
2539 else if (channel >= 36 && channel <= 64)
2540 cal = rt2x00_eeprom_byte(rt2x00dev,
2541 EEPROM_IQ_PHASE_CAL_TX1_CH36_TO_CH64_5G);
2542 else if (channel >= 100 && channel <= 138)
2543 cal = rt2x00_eeprom_byte(rt2x00dev,
2544 EEPROM_IQ_PHASE_CAL_TX1_CH100_TO_CH138_5G);
2545 else if (channel >= 140 && channel <= 165)
2546 cal = rt2x00_eeprom_byte(rt2x00dev,
2547 EEPROM_IQ_PHASE_CAL_TX1_CH140_TO_CH165_5G);
2548 else
2549 cal = 0;
2550 rt2800_bbp_write(rt2x00dev, 159, cal);
2552 /* FIXME: possible RX0, RX1 callibration ? */
2554 /* RF IQ compensation control */
2555 rt2800_bbp_write(rt2x00dev, 158, 0x04);
2556 cal = rt2x00_eeprom_byte(rt2x00dev, EEPROM_RF_IQ_COMPENSATION_CONTROL);
2557 rt2800_bbp_write(rt2x00dev, 159, cal != 0xff ? cal : 0);
2559 /* RF IQ imbalance compensation control */
2560 rt2800_bbp_write(rt2x00dev, 158, 0x03);
2561 cal = rt2x00_eeprom_byte(rt2x00dev,
2562 EEPROM_RF_IQ_IMBALANCE_COMPENSATION_CONTROL);
2563 rt2800_bbp_write(rt2x00dev, 159, cal != 0xff ? cal : 0);
2566 static void rt2800_config_channel(struct rt2x00_dev *rt2x00dev,
2567 struct ieee80211_conf *conf,
2568 struct rf_channel *rf,
2569 struct channel_info *info)
2571 u32 reg;
2572 unsigned int tx_pin;
2573 u8 bbp, rfcsr;
2575 if (rf->channel <= 14) {
2576 info->default_power1 = TXPOWER_G_TO_DEV(info->default_power1);
2577 info->default_power2 = TXPOWER_G_TO_DEV(info->default_power2);
2578 } else {
2579 info->default_power1 = TXPOWER_A_TO_DEV(info->default_power1);
2580 info->default_power2 = TXPOWER_A_TO_DEV(info->default_power2);
2583 switch (rt2x00dev->chip.rf) {
2584 case RF2020:
2585 case RF3020:
2586 case RF3021:
2587 case RF3022:
2588 case RF3320:
2589 rt2800_config_channel_rf3xxx(rt2x00dev, conf, rf, info);
2590 break;
2591 case RF3052:
2592 rt2800_config_channel_rf3052(rt2x00dev, conf, rf, info);
2593 break;
2594 case RF3290:
2595 rt2800_config_channel_rf3290(rt2x00dev, conf, rf, info);
2596 break;
2597 case RF3322:
2598 rt2800_config_channel_rf3322(rt2x00dev, conf, rf, info);
2599 break;
2600 case RF5360:
2601 case RF5370:
2602 case RF5372:
2603 case RF5390:
2604 case RF5392:
2605 rt2800_config_channel_rf53xx(rt2x00dev, conf, rf, info);
2606 break;
2607 case RF5592:
2608 rt2800_config_channel_rf55xx(rt2x00dev, conf, rf, info);
2609 break;
2610 default:
2611 rt2800_config_channel_rf2xxx(rt2x00dev, conf, rf, info);
2614 if (rt2x00_rf(rt2x00dev, RF3290) ||
2615 rt2x00_rf(rt2x00dev, RF3322) ||
2616 rt2x00_rf(rt2x00dev, RF5360) ||
2617 rt2x00_rf(rt2x00dev, RF5370) ||
2618 rt2x00_rf(rt2x00dev, RF5372) ||
2619 rt2x00_rf(rt2x00dev, RF5390) ||
2620 rt2x00_rf(rt2x00dev, RF5392)) {
2621 rt2800_rfcsr_read(rt2x00dev, 30, &rfcsr);
2622 rt2x00_set_field8(&rfcsr, RFCSR30_TX_H20M, 0);
2623 rt2x00_set_field8(&rfcsr, RFCSR30_RX_H20M, 0);
2624 rt2800_rfcsr_write(rt2x00dev, 30, rfcsr);
2626 rt2800_rfcsr_read(rt2x00dev, 3, &rfcsr);
2627 rt2x00_set_field8(&rfcsr, RFCSR3_VCOCAL_EN, 1);
2628 rt2800_rfcsr_write(rt2x00dev, 3, rfcsr);
2632 * Change BBP settings
2634 if (rt2x00_rt(rt2x00dev, RT3352)) {
2635 rt2800_bbp_write(rt2x00dev, 27, 0x0);
2636 rt2800_bbp_write(rt2x00dev, 66, 0x26 + rt2x00dev->lna_gain);
2637 rt2800_bbp_write(rt2x00dev, 27, 0x20);
2638 rt2800_bbp_write(rt2x00dev, 66, 0x26 + rt2x00dev->lna_gain);
2639 } else {
2640 rt2800_bbp_write(rt2x00dev, 62, 0x37 - rt2x00dev->lna_gain);
2641 rt2800_bbp_write(rt2x00dev, 63, 0x37 - rt2x00dev->lna_gain);
2642 rt2800_bbp_write(rt2x00dev, 64, 0x37 - rt2x00dev->lna_gain);
2643 rt2800_bbp_write(rt2x00dev, 86, 0);
2646 if (rf->channel <= 14) {
2647 if (!rt2x00_rt(rt2x00dev, RT5390) &&
2648 !rt2x00_rt(rt2x00dev, RT5392)) {
2649 if (test_bit(CAPABILITY_EXTERNAL_LNA_BG,
2650 &rt2x00dev->cap_flags)) {
2651 rt2800_bbp_write(rt2x00dev, 82, 0x62);
2652 rt2800_bbp_write(rt2x00dev, 75, 0x46);
2653 } else {
2654 rt2800_bbp_write(rt2x00dev, 82, 0x84);
2655 rt2800_bbp_write(rt2x00dev, 75, 0x50);
2658 } else {
2659 if (rt2x00_rt(rt2x00dev, RT3572))
2660 rt2800_bbp_write(rt2x00dev, 82, 0x94);
2661 else
2662 rt2800_bbp_write(rt2x00dev, 82, 0xf2);
2664 if (test_bit(CAPABILITY_EXTERNAL_LNA_A, &rt2x00dev->cap_flags))
2665 rt2800_bbp_write(rt2x00dev, 75, 0x46);
2666 else
2667 rt2800_bbp_write(rt2x00dev, 75, 0x50);
2670 rt2800_register_read(rt2x00dev, TX_BAND_CFG, &reg);
2671 rt2x00_set_field32(&reg, TX_BAND_CFG_HT40_MINUS, conf_is_ht40_minus(conf));
2672 rt2x00_set_field32(&reg, TX_BAND_CFG_A, rf->channel > 14);
2673 rt2x00_set_field32(&reg, TX_BAND_CFG_BG, rf->channel <= 14);
2674 rt2800_register_write(rt2x00dev, TX_BAND_CFG, reg);
2676 if (rt2x00_rt(rt2x00dev, RT3572))
2677 rt2800_rfcsr_write(rt2x00dev, 8, 0);
2679 tx_pin = 0;
2681 /* Turn on unused PA or LNA when not using 1T or 1R */
2682 if (rt2x00dev->default_ant.tx_chain_num == 2) {
2683 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_A1_EN,
2684 rf->channel > 14);
2685 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_G1_EN,
2686 rf->channel <= 14);
2689 /* Turn on unused PA or LNA when not using 1T or 1R */
2690 if (rt2x00dev->default_ant.rx_chain_num == 2) {
2691 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_LNA_PE_A1_EN, 1);
2692 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_LNA_PE_G1_EN, 1);
2695 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_LNA_PE_A0_EN, 1);
2696 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_LNA_PE_G0_EN, 1);
2697 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_RFTR_EN, 1);
2698 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_TRSW_EN, 1);
2699 if (test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags))
2700 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_G0_EN, 1);
2701 else
2702 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_G0_EN,
2703 rf->channel <= 14);
2704 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_A0_EN, rf->channel > 14);
2706 rt2800_register_write(rt2x00dev, TX_PIN_CFG, tx_pin);
2708 if (rt2x00_rt(rt2x00dev, RT3572))
2709 rt2800_rfcsr_write(rt2x00dev, 8, 0x80);
2711 if (rt2x00_rt(rt2x00dev, RT5592)) {
2712 rt2800_bbp_write(rt2x00dev, 195, 141);
2713 rt2800_bbp_write(rt2x00dev, 196, conf_is_ht40(conf) ? 0x10 : 0x1a);
2715 /* AGC init */
2716 reg = (rf->channel <= 14 ? 0x1c : 0x24) + 2 * rt2x00dev->lna_gain;
2717 rt2800_bbp_write_with_rx_chain(rt2x00dev, 66, reg);
2719 rt2800_iq_calibrate(rt2x00dev, rf->channel);
2722 rt2800_bbp_read(rt2x00dev, 4, &bbp);
2723 rt2x00_set_field8(&bbp, BBP4_BANDWIDTH, 2 * conf_is_ht40(conf));
2724 rt2800_bbp_write(rt2x00dev, 4, bbp);
2726 rt2800_bbp_read(rt2x00dev, 3, &bbp);
2727 rt2x00_set_field8(&bbp, BBP3_HT40_MINUS, conf_is_ht40_minus(conf));
2728 rt2800_bbp_write(rt2x00dev, 3, bbp);
2730 if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860C)) {
2731 if (conf_is_ht40(conf)) {
2732 rt2800_bbp_write(rt2x00dev, 69, 0x1a);
2733 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
2734 rt2800_bbp_write(rt2x00dev, 73, 0x16);
2735 } else {
2736 rt2800_bbp_write(rt2x00dev, 69, 0x16);
2737 rt2800_bbp_write(rt2x00dev, 70, 0x08);
2738 rt2800_bbp_write(rt2x00dev, 73, 0x11);
2742 msleep(1);
2745 * Clear channel statistic counters
2747 rt2800_register_read(rt2x00dev, CH_IDLE_STA, &reg);
2748 rt2800_register_read(rt2x00dev, CH_BUSY_STA, &reg);
2749 rt2800_register_read(rt2x00dev, CH_BUSY_STA_SEC, &reg);
2752 * Clear update flag
2754 if (rt2x00_rt(rt2x00dev, RT3352)) {
2755 rt2800_bbp_read(rt2x00dev, 49, &bbp);
2756 rt2x00_set_field8(&bbp, BBP49_UPDATE_FLAG, 0);
2757 rt2800_bbp_write(rt2x00dev, 49, bbp);
2761 static int rt2800_get_gain_calibration_delta(struct rt2x00_dev *rt2x00dev)
2763 u8 tssi_bounds[9];
2764 u8 current_tssi;
2765 u16 eeprom;
2766 u8 step;
2767 int i;
2770 * Read TSSI boundaries for temperature compensation from
2771 * the EEPROM.
2773 * Array idx 0 1 2 3 4 5 6 7 8
2774 * Matching Delta value -4 -3 -2 -1 0 +1 +2 +3 +4
2775 * Example TSSI bounds 0xF0 0xD0 0xB5 0xA0 0x88 0x45 0x25 0x15 0x00
2777 if (rt2x00dev->curr_band == IEEE80211_BAND_2GHZ) {
2778 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG1, &eeprom);
2779 tssi_bounds[0] = rt2x00_get_field16(eeprom,
2780 EEPROM_TSSI_BOUND_BG1_MINUS4);
2781 tssi_bounds[1] = rt2x00_get_field16(eeprom,
2782 EEPROM_TSSI_BOUND_BG1_MINUS3);
2784 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG2, &eeprom);
2785 tssi_bounds[2] = rt2x00_get_field16(eeprom,
2786 EEPROM_TSSI_BOUND_BG2_MINUS2);
2787 tssi_bounds[3] = rt2x00_get_field16(eeprom,
2788 EEPROM_TSSI_BOUND_BG2_MINUS1);
2790 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG3, &eeprom);
2791 tssi_bounds[4] = rt2x00_get_field16(eeprom,
2792 EEPROM_TSSI_BOUND_BG3_REF);
2793 tssi_bounds[5] = rt2x00_get_field16(eeprom,
2794 EEPROM_TSSI_BOUND_BG3_PLUS1);
2796 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG4, &eeprom);
2797 tssi_bounds[6] = rt2x00_get_field16(eeprom,
2798 EEPROM_TSSI_BOUND_BG4_PLUS2);
2799 tssi_bounds[7] = rt2x00_get_field16(eeprom,
2800 EEPROM_TSSI_BOUND_BG4_PLUS3);
2802 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG5, &eeprom);
2803 tssi_bounds[8] = rt2x00_get_field16(eeprom,
2804 EEPROM_TSSI_BOUND_BG5_PLUS4);
2806 step = rt2x00_get_field16(eeprom,
2807 EEPROM_TSSI_BOUND_BG5_AGC_STEP);
2808 } else {
2809 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A1, &eeprom);
2810 tssi_bounds[0] = rt2x00_get_field16(eeprom,
2811 EEPROM_TSSI_BOUND_A1_MINUS4);
2812 tssi_bounds[1] = rt2x00_get_field16(eeprom,
2813 EEPROM_TSSI_BOUND_A1_MINUS3);
2815 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A2, &eeprom);
2816 tssi_bounds[2] = rt2x00_get_field16(eeprom,
2817 EEPROM_TSSI_BOUND_A2_MINUS2);
2818 tssi_bounds[3] = rt2x00_get_field16(eeprom,
2819 EEPROM_TSSI_BOUND_A2_MINUS1);
2821 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A3, &eeprom);
2822 tssi_bounds[4] = rt2x00_get_field16(eeprom,
2823 EEPROM_TSSI_BOUND_A3_REF);
2824 tssi_bounds[5] = rt2x00_get_field16(eeprom,
2825 EEPROM_TSSI_BOUND_A3_PLUS1);
2827 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A4, &eeprom);
2828 tssi_bounds[6] = rt2x00_get_field16(eeprom,
2829 EEPROM_TSSI_BOUND_A4_PLUS2);
2830 tssi_bounds[7] = rt2x00_get_field16(eeprom,
2831 EEPROM_TSSI_BOUND_A4_PLUS3);
2833 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A5, &eeprom);
2834 tssi_bounds[8] = rt2x00_get_field16(eeprom,
2835 EEPROM_TSSI_BOUND_A5_PLUS4);
2837 step = rt2x00_get_field16(eeprom,
2838 EEPROM_TSSI_BOUND_A5_AGC_STEP);
2842 * Check if temperature compensation is supported.
2844 if (tssi_bounds[4] == 0xff || step == 0xff)
2845 return 0;
2848 * Read current TSSI (BBP 49).
2850 rt2800_bbp_read(rt2x00dev, 49, &current_tssi);
2853 * Compare TSSI value (BBP49) with the compensation boundaries
2854 * from the EEPROM and increase or decrease tx power.
2856 for (i = 0; i <= 3; i++) {
2857 if (current_tssi > tssi_bounds[i])
2858 break;
2861 if (i == 4) {
2862 for (i = 8; i >= 5; i--) {
2863 if (current_tssi < tssi_bounds[i])
2864 break;
2868 return (i - 4) * step;
2871 static int rt2800_get_txpower_bw_comp(struct rt2x00_dev *rt2x00dev,
2872 enum ieee80211_band band)
2874 u16 eeprom;
2875 u8 comp_en;
2876 u8 comp_type;
2877 int comp_value = 0;
2879 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXPOWER_DELTA, &eeprom);
2882 * HT40 compensation not required.
2884 if (eeprom == 0xffff ||
2885 !test_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags))
2886 return 0;
2888 if (band == IEEE80211_BAND_2GHZ) {
2889 comp_en = rt2x00_get_field16(eeprom,
2890 EEPROM_TXPOWER_DELTA_ENABLE_2G);
2891 if (comp_en) {
2892 comp_type = rt2x00_get_field16(eeprom,
2893 EEPROM_TXPOWER_DELTA_TYPE_2G);
2894 comp_value = rt2x00_get_field16(eeprom,
2895 EEPROM_TXPOWER_DELTA_VALUE_2G);
2896 if (!comp_type)
2897 comp_value = -comp_value;
2899 } else {
2900 comp_en = rt2x00_get_field16(eeprom,
2901 EEPROM_TXPOWER_DELTA_ENABLE_5G);
2902 if (comp_en) {
2903 comp_type = rt2x00_get_field16(eeprom,
2904 EEPROM_TXPOWER_DELTA_TYPE_5G);
2905 comp_value = rt2x00_get_field16(eeprom,
2906 EEPROM_TXPOWER_DELTA_VALUE_5G);
2907 if (!comp_type)
2908 comp_value = -comp_value;
2912 return comp_value;
2915 static int rt2800_get_txpower_reg_delta(struct rt2x00_dev *rt2x00dev,
2916 int power_level, int max_power)
2918 int delta;
2920 if (test_bit(CAPABILITY_POWER_LIMIT, &rt2x00dev->cap_flags))
2921 return 0;
2924 * XXX: We don't know the maximum transmit power of our hardware since
2925 * the EEPROM doesn't expose it. We only know that we are calibrated
2926 * to 100% tx power.
2928 * Hence, we assume the regulatory limit that cfg80211 calulated for
2929 * the current channel is our maximum and if we are requested to lower
2930 * the value we just reduce our tx power accordingly.
2932 delta = power_level - max_power;
2933 return min(delta, 0);
2936 static u8 rt2800_compensate_txpower(struct rt2x00_dev *rt2x00dev, int is_rate_b,
2937 enum ieee80211_band band, int power_level,
2938 u8 txpower, int delta)
2940 u16 eeprom;
2941 u8 criterion;
2942 u8 eirp_txpower;
2943 u8 eirp_txpower_criterion;
2944 u8 reg_limit;
2946 if (test_bit(CAPABILITY_POWER_LIMIT, &rt2x00dev->cap_flags)) {
2948 * Check if eirp txpower exceed txpower_limit.
2949 * We use OFDM 6M as criterion and its eirp txpower
2950 * is stored at EEPROM_EIRP_MAX_TX_POWER.
2951 * .11b data rate need add additional 4dbm
2952 * when calculating eirp txpower.
2954 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXPOWER_BYRATE + 1,
2955 &eeprom);
2956 criterion = rt2x00_get_field16(eeprom,
2957 EEPROM_TXPOWER_BYRATE_RATE0);
2959 rt2x00_eeprom_read(rt2x00dev, EEPROM_EIRP_MAX_TX_POWER,
2960 &eeprom);
2962 if (band == IEEE80211_BAND_2GHZ)
2963 eirp_txpower_criterion = rt2x00_get_field16(eeprom,
2964 EEPROM_EIRP_MAX_TX_POWER_2GHZ);
2965 else
2966 eirp_txpower_criterion = rt2x00_get_field16(eeprom,
2967 EEPROM_EIRP_MAX_TX_POWER_5GHZ);
2969 eirp_txpower = eirp_txpower_criterion + (txpower - criterion) +
2970 (is_rate_b ? 4 : 0) + delta;
2972 reg_limit = (eirp_txpower > power_level) ?
2973 (eirp_txpower - power_level) : 0;
2974 } else
2975 reg_limit = 0;
2977 txpower = max(0, txpower + delta - reg_limit);
2978 return min_t(u8, txpower, 0xc);
2982 * We configure transmit power using MAC TX_PWR_CFG_{0,...,N} registers and
2983 * BBP R1 register. TX_PWR_CFG_X allow to configure per rate TX power values,
2984 * 4 bits for each rate (tune from 0 to 15 dBm). BBP_R1 controls transmit power
2985 * for all rates, but allow to set only 4 discrete values: -12, -6, 0 and 6 dBm.
2986 * Reference per rate transmit power values are located in the EEPROM at
2987 * EEPROM_TXPOWER_BYRATE offset. We adjust them and BBP R1 settings according to
2988 * current conditions (i.e. band, bandwidth, temperature, user settings).
2990 static void rt2800_config_txpower(struct rt2x00_dev *rt2x00dev,
2991 struct ieee80211_channel *chan,
2992 int power_level)
2994 u8 txpower, r1;
2995 u16 eeprom;
2996 u32 reg, offset;
2997 int i, is_rate_b, delta, power_ctrl;
2998 enum ieee80211_band band = chan->band;
3001 * Calculate HT40 compensation. For 40MHz we need to add or subtract
3002 * value read from EEPROM (different for 2GHz and for 5GHz).
3004 delta = rt2800_get_txpower_bw_comp(rt2x00dev, band);
3007 * Calculate temperature compensation. Depends on measurement of current
3008 * TSSI (Transmitter Signal Strength Indication) we know TX power (due
3009 * to temperature or maybe other factors) is smaller or bigger than
3010 * expected. We adjust it, based on TSSI reference and boundaries values
3011 * provided in EEPROM.
3013 delta += rt2800_get_gain_calibration_delta(rt2x00dev);
3016 * Decrease power according to user settings, on devices with unknown
3017 * maximum tx power. For other devices we take user power_level into
3018 * consideration on rt2800_compensate_txpower().
3020 delta += rt2800_get_txpower_reg_delta(rt2x00dev, power_level,
3021 chan->max_power);
3024 * BBP_R1 controls TX power for all rates, it allow to set the following
3025 * gains -12, -6, 0, +6 dBm by setting values 2, 1, 0, 3 respectively.
3027 * TODO: we do not use +6 dBm option to do not increase power beyond
3028 * regulatory limit, however this could be utilized for devices with
3029 * CAPABILITY_POWER_LIMIT.
3031 rt2800_bbp_read(rt2x00dev, 1, &r1);
3032 if (delta <= -12) {
3033 power_ctrl = 2;
3034 delta += 12;
3035 } else if (delta <= -6) {
3036 power_ctrl = 1;
3037 delta += 6;
3038 } else {
3039 power_ctrl = 0;
3041 rt2x00_set_field8(&r1, BBP1_TX_POWER_CTRL, power_ctrl);
3042 rt2800_bbp_write(rt2x00dev, 1, r1);
3043 offset = TX_PWR_CFG_0;
3045 for (i = 0; i < EEPROM_TXPOWER_BYRATE_SIZE; i += 2) {
3046 /* just to be safe */
3047 if (offset > TX_PWR_CFG_4)
3048 break;
3050 rt2800_register_read(rt2x00dev, offset, &reg);
3052 /* read the next four txpower values */
3053 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXPOWER_BYRATE + i,
3054 &eeprom);
3056 is_rate_b = i ? 0 : 1;
3058 * TX_PWR_CFG_0: 1MBS, TX_PWR_CFG_1: 24MBS,
3059 * TX_PWR_CFG_2: MCS4, TX_PWR_CFG_3: MCS12,
3060 * TX_PWR_CFG_4: unknown
3062 txpower = rt2x00_get_field16(eeprom,
3063 EEPROM_TXPOWER_BYRATE_RATE0);
3064 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
3065 power_level, txpower, delta);
3066 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE0, txpower);
3069 * TX_PWR_CFG_0: 2MBS, TX_PWR_CFG_1: 36MBS,
3070 * TX_PWR_CFG_2: MCS5, TX_PWR_CFG_3: MCS13,
3071 * TX_PWR_CFG_4: unknown
3073 txpower = rt2x00_get_field16(eeprom,
3074 EEPROM_TXPOWER_BYRATE_RATE1);
3075 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
3076 power_level, txpower, delta);
3077 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE1, txpower);
3080 * TX_PWR_CFG_0: 5.5MBS, TX_PWR_CFG_1: 48MBS,
3081 * TX_PWR_CFG_2: MCS6, TX_PWR_CFG_3: MCS14,
3082 * TX_PWR_CFG_4: unknown
3084 txpower = rt2x00_get_field16(eeprom,
3085 EEPROM_TXPOWER_BYRATE_RATE2);
3086 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
3087 power_level, txpower, delta);
3088 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE2, txpower);
3091 * TX_PWR_CFG_0: 11MBS, TX_PWR_CFG_1: 54MBS,
3092 * TX_PWR_CFG_2: MCS7, TX_PWR_CFG_3: MCS15,
3093 * TX_PWR_CFG_4: unknown
3095 txpower = rt2x00_get_field16(eeprom,
3096 EEPROM_TXPOWER_BYRATE_RATE3);
3097 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
3098 power_level, txpower, delta);
3099 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE3, txpower);
3101 /* read the next four txpower values */
3102 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXPOWER_BYRATE + i + 1,
3103 &eeprom);
3105 is_rate_b = 0;
3107 * TX_PWR_CFG_0: 6MBS, TX_PWR_CFG_1: MCS0,
3108 * TX_PWR_CFG_2: MCS8, TX_PWR_CFG_3: unknown,
3109 * TX_PWR_CFG_4: unknown
3111 txpower = rt2x00_get_field16(eeprom,
3112 EEPROM_TXPOWER_BYRATE_RATE0);
3113 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
3114 power_level, txpower, delta);
3115 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE4, txpower);
3118 * TX_PWR_CFG_0: 9MBS, TX_PWR_CFG_1: MCS1,
3119 * TX_PWR_CFG_2: MCS9, TX_PWR_CFG_3: unknown,
3120 * TX_PWR_CFG_4: unknown
3122 txpower = rt2x00_get_field16(eeprom,
3123 EEPROM_TXPOWER_BYRATE_RATE1);
3124 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
3125 power_level, txpower, delta);
3126 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE5, txpower);
3129 * TX_PWR_CFG_0: 12MBS, TX_PWR_CFG_1: MCS2,
3130 * TX_PWR_CFG_2: MCS10, TX_PWR_CFG_3: unknown,
3131 * TX_PWR_CFG_4: unknown
3133 txpower = rt2x00_get_field16(eeprom,
3134 EEPROM_TXPOWER_BYRATE_RATE2);
3135 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
3136 power_level, txpower, delta);
3137 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE6, txpower);
3140 * TX_PWR_CFG_0: 18MBS, TX_PWR_CFG_1: MCS3,
3141 * TX_PWR_CFG_2: MCS11, TX_PWR_CFG_3: unknown,
3142 * TX_PWR_CFG_4: unknown
3144 txpower = rt2x00_get_field16(eeprom,
3145 EEPROM_TXPOWER_BYRATE_RATE3);
3146 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
3147 power_level, txpower, delta);
3148 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE7, txpower);
3150 rt2800_register_write(rt2x00dev, offset, reg);
3152 /* next TX_PWR_CFG register */
3153 offset += 4;
3157 void rt2800_gain_calibration(struct rt2x00_dev *rt2x00dev)
3159 rt2800_config_txpower(rt2x00dev, rt2x00dev->hw->conf.chandef.chan,
3160 rt2x00dev->tx_power);
3162 EXPORT_SYMBOL_GPL(rt2800_gain_calibration);
3164 void rt2800_vco_calibration(struct rt2x00_dev *rt2x00dev)
3166 u32 tx_pin;
3167 u8 rfcsr;
3170 * A voltage-controlled oscillator(VCO) is an electronic oscillator
3171 * designed to be controlled in oscillation frequency by a voltage
3172 * input. Maybe the temperature will affect the frequency of
3173 * oscillation to be shifted. The VCO calibration will be called
3174 * periodically to adjust the frequency to be precision.
3177 rt2800_register_read(rt2x00dev, TX_PIN_CFG, &tx_pin);
3178 tx_pin &= TX_PIN_CFG_PA_PE_DISABLE;
3179 rt2800_register_write(rt2x00dev, TX_PIN_CFG, tx_pin);
3181 switch (rt2x00dev->chip.rf) {
3182 case RF2020:
3183 case RF3020:
3184 case RF3021:
3185 case RF3022:
3186 case RF3320:
3187 case RF3052:
3188 rt2800_rfcsr_read(rt2x00dev, 7, &rfcsr);
3189 rt2x00_set_field8(&rfcsr, RFCSR7_RF_TUNING, 1);
3190 rt2800_rfcsr_write(rt2x00dev, 7, rfcsr);
3191 break;
3192 case RF3290:
3193 case RF5360:
3194 case RF5370:
3195 case RF5372:
3196 case RF5390:
3197 case RF5392:
3198 rt2800_rfcsr_read(rt2x00dev, 3, &rfcsr);
3199 rt2x00_set_field8(&rfcsr, RFCSR3_VCOCAL_EN, 1);
3200 rt2800_rfcsr_write(rt2x00dev, 3, rfcsr);
3201 break;
3202 default:
3203 return;
3206 mdelay(1);
3208 rt2800_register_read(rt2x00dev, TX_PIN_CFG, &tx_pin);
3209 if (rt2x00dev->rf_channel <= 14) {
3210 switch (rt2x00dev->default_ant.tx_chain_num) {
3211 case 3:
3212 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_G2_EN, 1);
3213 /* fall through */
3214 case 2:
3215 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_G1_EN, 1);
3216 /* fall through */
3217 case 1:
3218 default:
3219 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_G0_EN, 1);
3220 break;
3222 } else {
3223 switch (rt2x00dev->default_ant.tx_chain_num) {
3224 case 3:
3225 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_A2_EN, 1);
3226 /* fall through */
3227 case 2:
3228 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_A1_EN, 1);
3229 /* fall through */
3230 case 1:
3231 default:
3232 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_A0_EN, 1);
3233 break;
3236 rt2800_register_write(rt2x00dev, TX_PIN_CFG, tx_pin);
3239 EXPORT_SYMBOL_GPL(rt2800_vco_calibration);
3241 static void rt2800_config_retry_limit(struct rt2x00_dev *rt2x00dev,
3242 struct rt2x00lib_conf *libconf)
3244 u32 reg;
3246 rt2800_register_read(rt2x00dev, TX_RTY_CFG, &reg);
3247 rt2x00_set_field32(&reg, TX_RTY_CFG_SHORT_RTY_LIMIT,
3248 libconf->conf->short_frame_max_tx_count);
3249 rt2x00_set_field32(&reg, TX_RTY_CFG_LONG_RTY_LIMIT,
3250 libconf->conf->long_frame_max_tx_count);
3251 rt2800_register_write(rt2x00dev, TX_RTY_CFG, reg);
3254 static void rt2800_config_ps(struct rt2x00_dev *rt2x00dev,
3255 struct rt2x00lib_conf *libconf)
3257 enum dev_state state =
3258 (libconf->conf->flags & IEEE80211_CONF_PS) ?
3259 STATE_SLEEP : STATE_AWAKE;
3260 u32 reg;
3262 if (state == STATE_SLEEP) {
3263 rt2800_register_write(rt2x00dev, AUTOWAKEUP_CFG, 0);
3265 rt2800_register_read(rt2x00dev, AUTOWAKEUP_CFG, &reg);
3266 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_AUTO_LEAD_TIME, 5);
3267 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_TBCN_BEFORE_WAKE,
3268 libconf->conf->listen_interval - 1);
3269 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_AUTOWAKE, 1);
3270 rt2800_register_write(rt2x00dev, AUTOWAKEUP_CFG, reg);
3272 rt2x00dev->ops->lib->set_device_state(rt2x00dev, state);
3273 } else {
3274 rt2800_register_read(rt2x00dev, AUTOWAKEUP_CFG, &reg);
3275 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_AUTO_LEAD_TIME, 0);
3276 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_TBCN_BEFORE_WAKE, 0);
3277 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_AUTOWAKE, 0);
3278 rt2800_register_write(rt2x00dev, AUTOWAKEUP_CFG, reg);
3280 rt2x00dev->ops->lib->set_device_state(rt2x00dev, state);
3284 void rt2800_config(struct rt2x00_dev *rt2x00dev,
3285 struct rt2x00lib_conf *libconf,
3286 const unsigned int flags)
3288 /* Always recalculate LNA gain before changing configuration */
3289 rt2800_config_lna_gain(rt2x00dev, libconf);
3291 if (flags & IEEE80211_CONF_CHANGE_CHANNEL) {
3292 rt2800_config_channel(rt2x00dev, libconf->conf,
3293 &libconf->rf, &libconf->channel);
3294 rt2800_config_txpower(rt2x00dev, libconf->conf->chandef.chan,
3295 libconf->conf->power_level);
3297 if (flags & IEEE80211_CONF_CHANGE_POWER)
3298 rt2800_config_txpower(rt2x00dev, libconf->conf->chandef.chan,
3299 libconf->conf->power_level);
3300 if (flags & IEEE80211_CONF_CHANGE_RETRY_LIMITS)
3301 rt2800_config_retry_limit(rt2x00dev, libconf);
3302 if (flags & IEEE80211_CONF_CHANGE_PS)
3303 rt2800_config_ps(rt2x00dev, libconf);
3305 EXPORT_SYMBOL_GPL(rt2800_config);
3308 * Link tuning
3310 void rt2800_link_stats(struct rt2x00_dev *rt2x00dev, struct link_qual *qual)
3312 u32 reg;
3315 * Update FCS error count from register.
3317 rt2800_register_read(rt2x00dev, RX_STA_CNT0, &reg);
3318 qual->rx_failed = rt2x00_get_field32(reg, RX_STA_CNT0_CRC_ERR);
3320 EXPORT_SYMBOL_GPL(rt2800_link_stats);
3322 static u8 rt2800_get_default_vgc(struct rt2x00_dev *rt2x00dev)
3324 u8 vgc;
3326 if (rt2x00dev->curr_band == IEEE80211_BAND_2GHZ) {
3327 if (rt2x00_rt(rt2x00dev, RT3070) ||
3328 rt2x00_rt(rt2x00dev, RT3071) ||
3329 rt2x00_rt(rt2x00dev, RT3090) ||
3330 rt2x00_rt(rt2x00dev, RT3290) ||
3331 rt2x00_rt(rt2x00dev, RT3390) ||
3332 rt2x00_rt(rt2x00dev, RT3572) ||
3333 rt2x00_rt(rt2x00dev, RT5390) ||
3334 rt2x00_rt(rt2x00dev, RT5392) ||
3335 rt2x00_rt(rt2x00dev, RT5592))
3336 vgc = 0x1c + (2 * rt2x00dev->lna_gain);
3337 else
3338 vgc = 0x2e + rt2x00dev->lna_gain;
3339 } else { /* 5GHZ band */
3340 if (rt2x00_rt(rt2x00dev, RT3572))
3341 vgc = 0x22 + (rt2x00dev->lna_gain * 5) / 3;
3342 else if (rt2x00_rt(rt2x00dev, RT5592))
3343 vgc = 0x24 + (2 * rt2x00dev->lna_gain);
3344 else {
3345 if (!test_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags))
3346 vgc = 0x32 + (rt2x00dev->lna_gain * 5) / 3;
3347 else
3348 vgc = 0x3a + (rt2x00dev->lna_gain * 5) / 3;
3352 return vgc;
3355 static inline void rt2800_set_vgc(struct rt2x00_dev *rt2x00dev,
3356 struct link_qual *qual, u8 vgc_level)
3358 if (qual->vgc_level != vgc_level) {
3359 if (rt2x00_rt(rt2x00dev, RT5592)) {
3360 rt2800_bbp_write(rt2x00dev, 83, qual->rssi > -65 ? 0x4a : 0x7a);
3361 rt2800_bbp_write_with_rx_chain(rt2x00dev, 66, vgc_level);
3362 } else
3363 rt2800_bbp_write(rt2x00dev, 66, vgc_level);
3364 qual->vgc_level = vgc_level;
3365 qual->vgc_level_reg = vgc_level;
3369 void rt2800_reset_tuner(struct rt2x00_dev *rt2x00dev, struct link_qual *qual)
3371 rt2800_set_vgc(rt2x00dev, qual, rt2800_get_default_vgc(rt2x00dev));
3373 EXPORT_SYMBOL_GPL(rt2800_reset_tuner);
3375 void rt2800_link_tuner(struct rt2x00_dev *rt2x00dev, struct link_qual *qual,
3376 const u32 count)
3378 u8 vgc;
3380 if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860C))
3381 return;
3383 * When RSSI is better then -80 increase VGC level with 0x10, except
3384 * for rt5592 chip.
3387 vgc = rt2800_get_default_vgc(rt2x00dev);
3389 if (rt2x00_rt(rt2x00dev, RT5592) && qual->rssi > -65)
3390 vgc += 0x20;
3391 else if (qual->rssi > -80)
3392 vgc += 0x10;
3394 rt2800_set_vgc(rt2x00dev, qual, vgc);
3396 EXPORT_SYMBOL_GPL(rt2800_link_tuner);
3399 * Initialization functions.
3401 static int rt2800_init_registers(struct rt2x00_dev *rt2x00dev)
3403 u32 reg;
3404 u16 eeprom;
3405 unsigned int i;
3406 int ret;
3408 rt2800_disable_wpdma(rt2x00dev);
3410 ret = rt2800_drv_init_registers(rt2x00dev);
3411 if (ret)
3412 return ret;
3414 rt2800_register_read(rt2x00dev, BCN_OFFSET0, &reg);
3415 rt2x00_set_field32(&reg, BCN_OFFSET0_BCN0, 0xe0); /* 0x3800 */
3416 rt2x00_set_field32(&reg, BCN_OFFSET0_BCN1, 0xe8); /* 0x3a00 */
3417 rt2x00_set_field32(&reg, BCN_OFFSET0_BCN2, 0xf0); /* 0x3c00 */
3418 rt2x00_set_field32(&reg, BCN_OFFSET0_BCN3, 0xf8); /* 0x3e00 */
3419 rt2800_register_write(rt2x00dev, BCN_OFFSET0, reg);
3421 rt2800_register_read(rt2x00dev, BCN_OFFSET1, &reg);
3422 rt2x00_set_field32(&reg, BCN_OFFSET1_BCN4, 0xc8); /* 0x3200 */
3423 rt2x00_set_field32(&reg, BCN_OFFSET1_BCN5, 0xd0); /* 0x3400 */
3424 rt2x00_set_field32(&reg, BCN_OFFSET1_BCN6, 0x77); /* 0x1dc0 */
3425 rt2x00_set_field32(&reg, BCN_OFFSET1_BCN7, 0x6f); /* 0x1bc0 */
3426 rt2800_register_write(rt2x00dev, BCN_OFFSET1, reg);
3428 rt2800_register_write(rt2x00dev, LEGACY_BASIC_RATE, 0x0000013f);
3429 rt2800_register_write(rt2x00dev, HT_BASIC_RATE, 0x00008003);
3431 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000);
3433 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
3434 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_INTERVAL, 1600);
3435 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 0);
3436 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_SYNC, 0);
3437 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 0);
3438 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
3439 rt2x00_set_field32(&reg, BCN_TIME_CFG_TX_TIME_COMPENSATE, 0);
3440 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
3442 rt2800_config_filter(rt2x00dev, FIF_ALLMULTI);
3444 rt2800_register_read(rt2x00dev, BKOFF_SLOT_CFG, &reg);
3445 rt2x00_set_field32(&reg, BKOFF_SLOT_CFG_SLOT_TIME, 9);
3446 rt2x00_set_field32(&reg, BKOFF_SLOT_CFG_CC_DELAY_TIME, 2);
3447 rt2800_register_write(rt2x00dev, BKOFF_SLOT_CFG, reg);
3449 if (rt2x00_rt(rt2x00dev, RT3290)) {
3450 rt2800_register_read(rt2x00dev, WLAN_FUN_CTRL, &reg);
3451 if (rt2x00_get_field32(reg, WLAN_EN) == 1) {
3452 rt2x00_set_field32(&reg, PCIE_APP0_CLK_REQ, 1);
3453 rt2800_register_write(rt2x00dev, WLAN_FUN_CTRL, reg);
3456 rt2800_register_read(rt2x00dev, CMB_CTRL, &reg);
3457 if (!(rt2x00_get_field32(reg, LDO0_EN) == 1)) {
3458 rt2x00_set_field32(&reg, LDO0_EN, 1);
3459 rt2x00_set_field32(&reg, LDO_BGSEL, 3);
3460 rt2800_register_write(rt2x00dev, CMB_CTRL, reg);
3463 rt2800_register_read(rt2x00dev, OSC_CTRL, &reg);
3464 rt2x00_set_field32(&reg, OSC_ROSC_EN, 1);
3465 rt2x00_set_field32(&reg, OSC_CAL_REQ, 1);
3466 rt2x00_set_field32(&reg, OSC_REF_CYCLE, 0x27);
3467 rt2800_register_write(rt2x00dev, OSC_CTRL, reg);
3469 rt2800_register_read(rt2x00dev, COEX_CFG0, &reg);
3470 rt2x00_set_field32(&reg, COEX_CFG_ANT, 0x5e);
3471 rt2800_register_write(rt2x00dev, COEX_CFG0, reg);
3473 rt2800_register_read(rt2x00dev, COEX_CFG2, &reg);
3474 rt2x00_set_field32(&reg, BT_COEX_CFG1, 0x00);
3475 rt2x00_set_field32(&reg, BT_COEX_CFG0, 0x17);
3476 rt2x00_set_field32(&reg, WL_COEX_CFG1, 0x93);
3477 rt2x00_set_field32(&reg, WL_COEX_CFG0, 0x7f);
3478 rt2800_register_write(rt2x00dev, COEX_CFG2, reg);
3480 rt2800_register_read(rt2x00dev, PLL_CTRL, &reg);
3481 rt2x00_set_field32(&reg, PLL_CONTROL, 1);
3482 rt2800_register_write(rt2x00dev, PLL_CTRL, reg);
3485 if (rt2x00_rt(rt2x00dev, RT3071) ||
3486 rt2x00_rt(rt2x00dev, RT3090) ||
3487 rt2x00_rt(rt2x00dev, RT3290) ||
3488 rt2x00_rt(rt2x00dev, RT3390)) {
3490 if (rt2x00_rt(rt2x00dev, RT3290))
3491 rt2800_register_write(rt2x00dev, TX_SW_CFG0,
3492 0x00000404);
3493 else
3494 rt2800_register_write(rt2x00dev, TX_SW_CFG0,
3495 0x00000400);
3497 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00000000);
3498 if (rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) ||
3499 rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E) ||
3500 rt2x00_rt_rev_lt(rt2x00dev, RT3390, REV_RT3390E)) {
3501 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
3502 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_DAC_TEST))
3503 rt2800_register_write(rt2x00dev, TX_SW_CFG2,
3504 0x0000002c);
3505 else
3506 rt2800_register_write(rt2x00dev, TX_SW_CFG2,
3507 0x0000000f);
3508 } else {
3509 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000);
3511 } else if (rt2x00_rt(rt2x00dev, RT3070)) {
3512 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000400);
3514 if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F)) {
3515 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00000000);
3516 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x0000002c);
3517 } else {
3518 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
3519 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000);
3521 } else if (rt2800_is_305x_soc(rt2x00dev)) {
3522 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000400);
3523 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00000000);
3524 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000030);
3525 } else if (rt2x00_rt(rt2x00dev, RT3352)) {
3526 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000402);
3527 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
3528 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000);
3529 } else if (rt2x00_rt(rt2x00dev, RT3572)) {
3530 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000400);
3531 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
3532 } else if (rt2x00_rt(rt2x00dev, RT5390) ||
3533 rt2x00_rt(rt2x00dev, RT5392) ||
3534 rt2x00_rt(rt2x00dev, RT5592)) {
3535 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000404);
3536 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
3537 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000);
3538 } else {
3539 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000000);
3540 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
3543 rt2800_register_read(rt2x00dev, TX_LINK_CFG, &reg);
3544 rt2x00_set_field32(&reg, TX_LINK_CFG_REMOTE_MFB_LIFETIME, 32);
3545 rt2x00_set_field32(&reg, TX_LINK_CFG_MFB_ENABLE, 0);
3546 rt2x00_set_field32(&reg, TX_LINK_CFG_REMOTE_UMFS_ENABLE, 0);
3547 rt2x00_set_field32(&reg, TX_LINK_CFG_TX_MRQ_EN, 0);
3548 rt2x00_set_field32(&reg, TX_LINK_CFG_TX_RDG_EN, 0);
3549 rt2x00_set_field32(&reg, TX_LINK_CFG_TX_CF_ACK_EN, 1);
3550 rt2x00_set_field32(&reg, TX_LINK_CFG_REMOTE_MFB, 0);
3551 rt2x00_set_field32(&reg, TX_LINK_CFG_REMOTE_MFS, 0);
3552 rt2800_register_write(rt2x00dev, TX_LINK_CFG, reg);
3554 rt2800_register_read(rt2x00dev, TX_TIMEOUT_CFG, &reg);
3555 rt2x00_set_field32(&reg, TX_TIMEOUT_CFG_MPDU_LIFETIME, 9);
3556 rt2x00_set_field32(&reg, TX_TIMEOUT_CFG_RX_ACK_TIMEOUT, 32);
3557 rt2x00_set_field32(&reg, TX_TIMEOUT_CFG_TX_OP_TIMEOUT, 10);
3558 rt2800_register_write(rt2x00dev, TX_TIMEOUT_CFG, reg);
3560 rt2800_register_read(rt2x00dev, MAX_LEN_CFG, &reg);
3561 rt2x00_set_field32(&reg, MAX_LEN_CFG_MAX_MPDU, AGGREGATION_SIZE);
3562 if (rt2x00_rt_rev_gte(rt2x00dev, RT2872, REV_RT2872E) ||
3563 rt2x00_rt(rt2x00dev, RT2883) ||
3564 rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070E))
3565 rt2x00_set_field32(&reg, MAX_LEN_CFG_MAX_PSDU, 2);
3566 else
3567 rt2x00_set_field32(&reg, MAX_LEN_CFG_MAX_PSDU, 1);
3568 rt2x00_set_field32(&reg, MAX_LEN_CFG_MIN_PSDU, 0);
3569 rt2x00_set_field32(&reg, MAX_LEN_CFG_MIN_MPDU, 0);
3570 rt2800_register_write(rt2x00dev, MAX_LEN_CFG, reg);
3572 rt2800_register_read(rt2x00dev, LED_CFG, &reg);
3573 rt2x00_set_field32(&reg, LED_CFG_ON_PERIOD, 70);
3574 rt2x00_set_field32(&reg, LED_CFG_OFF_PERIOD, 30);
3575 rt2x00_set_field32(&reg, LED_CFG_SLOW_BLINK_PERIOD, 3);
3576 rt2x00_set_field32(&reg, LED_CFG_R_LED_MODE, 3);
3577 rt2x00_set_field32(&reg, LED_CFG_G_LED_MODE, 3);
3578 rt2x00_set_field32(&reg, LED_CFG_Y_LED_MODE, 3);
3579 rt2x00_set_field32(&reg, LED_CFG_LED_POLAR, 1);
3580 rt2800_register_write(rt2x00dev, LED_CFG, reg);
3582 rt2800_register_write(rt2x00dev, PBF_MAX_PCNT, 0x1f3fbf9f);
3584 rt2800_register_read(rt2x00dev, TX_RTY_CFG, &reg);
3585 rt2x00_set_field32(&reg, TX_RTY_CFG_SHORT_RTY_LIMIT, 15);
3586 rt2x00_set_field32(&reg, TX_RTY_CFG_LONG_RTY_LIMIT, 31);
3587 rt2x00_set_field32(&reg, TX_RTY_CFG_LONG_RTY_THRE, 2000);
3588 rt2x00_set_field32(&reg, TX_RTY_CFG_NON_AGG_RTY_MODE, 0);
3589 rt2x00_set_field32(&reg, TX_RTY_CFG_AGG_RTY_MODE, 0);
3590 rt2x00_set_field32(&reg, TX_RTY_CFG_TX_AUTO_FB_ENABLE, 1);
3591 rt2800_register_write(rt2x00dev, TX_RTY_CFG, reg);
3593 rt2800_register_read(rt2x00dev, AUTO_RSP_CFG, &reg);
3594 rt2x00_set_field32(&reg, AUTO_RSP_CFG_AUTORESPONDER, 1);
3595 rt2x00_set_field32(&reg, AUTO_RSP_CFG_BAC_ACK_POLICY, 1);
3596 rt2x00_set_field32(&reg, AUTO_RSP_CFG_CTS_40_MMODE, 0);
3597 rt2x00_set_field32(&reg, AUTO_RSP_CFG_CTS_40_MREF, 0);
3598 rt2x00_set_field32(&reg, AUTO_RSP_CFG_AR_PREAMBLE, 1);
3599 rt2x00_set_field32(&reg, AUTO_RSP_CFG_DUAL_CTS_EN, 0);
3600 rt2x00_set_field32(&reg, AUTO_RSP_CFG_ACK_CTS_PSM_BIT, 0);
3601 rt2800_register_write(rt2x00dev, AUTO_RSP_CFG, reg);
3603 rt2800_register_read(rt2x00dev, CCK_PROT_CFG, &reg);
3604 rt2x00_set_field32(&reg, CCK_PROT_CFG_PROTECT_RATE, 3);
3605 rt2x00_set_field32(&reg, CCK_PROT_CFG_PROTECT_CTRL, 0);
3606 rt2x00_set_field32(&reg, CCK_PROT_CFG_PROTECT_NAV_SHORT, 1);
3607 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3608 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3609 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3610 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_MM40, 0);
3611 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3612 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_GF40, 0);
3613 rt2x00_set_field32(&reg, CCK_PROT_CFG_RTS_TH_EN, 1);
3614 rt2800_register_write(rt2x00dev, CCK_PROT_CFG, reg);
3616 rt2800_register_read(rt2x00dev, OFDM_PROT_CFG, &reg);
3617 rt2x00_set_field32(&reg, OFDM_PROT_CFG_PROTECT_RATE, 3);
3618 rt2x00_set_field32(&reg, OFDM_PROT_CFG_PROTECT_CTRL, 0);
3619 rt2x00_set_field32(&reg, OFDM_PROT_CFG_PROTECT_NAV_SHORT, 1);
3620 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3621 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3622 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3623 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_MM40, 0);
3624 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3625 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_GF40, 0);
3626 rt2x00_set_field32(&reg, OFDM_PROT_CFG_RTS_TH_EN, 1);
3627 rt2800_register_write(rt2x00dev, OFDM_PROT_CFG, reg);
3629 rt2800_register_read(rt2x00dev, MM20_PROT_CFG, &reg);
3630 rt2x00_set_field32(&reg, MM20_PROT_CFG_PROTECT_RATE, 0x4004);
3631 rt2x00_set_field32(&reg, MM20_PROT_CFG_PROTECT_CTRL, 0);
3632 rt2x00_set_field32(&reg, MM20_PROT_CFG_PROTECT_NAV_SHORT, 1);
3633 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3634 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3635 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3636 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_MM40, 0);
3637 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3638 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_GF40, 0);
3639 rt2x00_set_field32(&reg, MM20_PROT_CFG_RTS_TH_EN, 0);
3640 rt2800_register_write(rt2x00dev, MM20_PROT_CFG, reg);
3642 rt2800_register_read(rt2x00dev, MM40_PROT_CFG, &reg);
3643 rt2x00_set_field32(&reg, MM40_PROT_CFG_PROTECT_RATE, 0x4084);
3644 rt2x00_set_field32(&reg, MM40_PROT_CFG_PROTECT_CTRL, 0);
3645 rt2x00_set_field32(&reg, MM40_PROT_CFG_PROTECT_NAV_SHORT, 1);
3646 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3647 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3648 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3649 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_MM40, 1);
3650 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3651 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_GF40, 1);
3652 rt2x00_set_field32(&reg, MM40_PROT_CFG_RTS_TH_EN, 0);
3653 rt2800_register_write(rt2x00dev, MM40_PROT_CFG, reg);
3655 rt2800_register_read(rt2x00dev, GF20_PROT_CFG, &reg);
3656 rt2x00_set_field32(&reg, GF20_PROT_CFG_PROTECT_RATE, 0x4004);
3657 rt2x00_set_field32(&reg, GF20_PROT_CFG_PROTECT_CTRL, 0);
3658 rt2x00_set_field32(&reg, GF20_PROT_CFG_PROTECT_NAV_SHORT, 1);
3659 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3660 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3661 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3662 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_MM40, 0);
3663 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3664 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_GF40, 0);
3665 rt2x00_set_field32(&reg, GF20_PROT_CFG_RTS_TH_EN, 0);
3666 rt2800_register_write(rt2x00dev, GF20_PROT_CFG, reg);
3668 rt2800_register_read(rt2x00dev, GF40_PROT_CFG, &reg);
3669 rt2x00_set_field32(&reg, GF40_PROT_CFG_PROTECT_RATE, 0x4084);
3670 rt2x00_set_field32(&reg, GF40_PROT_CFG_PROTECT_CTRL, 0);
3671 rt2x00_set_field32(&reg, GF40_PROT_CFG_PROTECT_NAV_SHORT, 1);
3672 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3673 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3674 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3675 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_MM40, 1);
3676 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3677 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_GF40, 1);
3678 rt2x00_set_field32(&reg, GF40_PROT_CFG_RTS_TH_EN, 0);
3679 rt2800_register_write(rt2x00dev, GF40_PROT_CFG, reg);
3681 if (rt2x00_is_usb(rt2x00dev)) {
3682 rt2800_register_write(rt2x00dev, PBF_CFG, 0xf40006);
3684 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
3685 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0);
3686 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_DMA_BUSY, 0);
3687 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 0);
3688 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_RX_DMA_BUSY, 0);
3689 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_WP_DMA_BURST_SIZE, 3);
3690 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 0);
3691 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_BIG_ENDIAN, 0);
3692 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_RX_HDR_SCATTER, 0);
3693 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_HDR_SEG_LEN, 0);
3694 rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
3698 * The legacy driver also sets TXOP_CTRL_CFG_RESERVED_TRUN_EN to 1
3699 * although it is reserved.
3701 rt2800_register_read(rt2x00dev, TXOP_CTRL_CFG, &reg);
3702 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_TIMEOUT_TRUN_EN, 1);
3703 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_AC_TRUN_EN, 1);
3704 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_TXRATEGRP_TRUN_EN, 1);
3705 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_USER_MODE_TRUN_EN, 1);
3706 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_MIMO_PS_TRUN_EN, 1);
3707 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_RESERVED_TRUN_EN, 1);
3708 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_LSIG_TXOP_EN, 0);
3709 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_EXT_CCA_EN, 0);
3710 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_EXT_CCA_DLY, 88);
3711 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_EXT_CWMIN, 0);
3712 rt2800_register_write(rt2x00dev, TXOP_CTRL_CFG, reg);
3714 reg = rt2x00_rt(rt2x00dev, RT5592) ? 0x00000082 : 0x00000002;
3715 rt2800_register_write(rt2x00dev, TXOP_HLDR_ET, reg);
3717 rt2800_register_read(rt2x00dev, TX_RTS_CFG, &reg);
3718 rt2x00_set_field32(&reg, TX_RTS_CFG_AUTO_RTS_RETRY_LIMIT, 32);
3719 rt2x00_set_field32(&reg, TX_RTS_CFG_RTS_THRES,
3720 IEEE80211_MAX_RTS_THRESHOLD);
3721 rt2x00_set_field32(&reg, TX_RTS_CFG_RTS_FBK_EN, 0);
3722 rt2800_register_write(rt2x00dev, TX_RTS_CFG, reg);
3724 rt2800_register_write(rt2x00dev, EXP_ACK_TIME, 0x002400ca);
3727 * Usually the CCK SIFS time should be set to 10 and the OFDM SIFS
3728 * time should be set to 16. However, the original Ralink driver uses
3729 * 16 for both and indeed using a value of 10 for CCK SIFS results in
3730 * connection problems with 11g + CTS protection. Hence, use the same
3731 * defaults as the Ralink driver: 16 for both, CCK and OFDM SIFS.
3733 rt2800_register_read(rt2x00dev, XIFS_TIME_CFG, &reg);
3734 rt2x00_set_field32(&reg, XIFS_TIME_CFG_CCKM_SIFS_TIME, 16);
3735 rt2x00_set_field32(&reg, XIFS_TIME_CFG_OFDM_SIFS_TIME, 16);
3736 rt2x00_set_field32(&reg, XIFS_TIME_CFG_OFDM_XIFS_TIME, 4);
3737 rt2x00_set_field32(&reg, XIFS_TIME_CFG_EIFS, 314);
3738 rt2x00_set_field32(&reg, XIFS_TIME_CFG_BB_RXEND_ENABLE, 1);
3739 rt2800_register_write(rt2x00dev, XIFS_TIME_CFG, reg);
3741 rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0x00000003);
3744 * ASIC will keep garbage value after boot, clear encryption keys.
3746 for (i = 0; i < 4; i++)
3747 rt2800_register_write(rt2x00dev,
3748 SHARED_KEY_MODE_ENTRY(i), 0);
3750 for (i = 0; i < 256; i++) {
3751 rt2800_config_wcid(rt2x00dev, NULL, i);
3752 rt2800_delete_wcid_attr(rt2x00dev, i);
3753 rt2800_register_write(rt2x00dev, MAC_IVEIV_ENTRY(i), 0);
3757 * Clear all beacons
3759 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE0);
3760 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE1);
3761 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE2);
3762 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE3);
3763 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE4);
3764 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE5);
3765 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE6);
3766 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE7);
3768 if (rt2x00_is_usb(rt2x00dev)) {
3769 rt2800_register_read(rt2x00dev, US_CYC_CNT, &reg);
3770 rt2x00_set_field32(&reg, US_CYC_CNT_CLOCK_CYCLE, 30);
3771 rt2800_register_write(rt2x00dev, US_CYC_CNT, reg);
3772 } else if (rt2x00_is_pcie(rt2x00dev)) {
3773 rt2800_register_read(rt2x00dev, US_CYC_CNT, &reg);
3774 rt2x00_set_field32(&reg, US_CYC_CNT_CLOCK_CYCLE, 125);
3775 rt2800_register_write(rt2x00dev, US_CYC_CNT, reg);
3778 rt2800_register_read(rt2x00dev, HT_FBK_CFG0, &reg);
3779 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS0FBK, 0);
3780 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS1FBK, 0);
3781 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS2FBK, 1);
3782 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS3FBK, 2);
3783 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS4FBK, 3);
3784 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS5FBK, 4);
3785 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS6FBK, 5);
3786 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS7FBK, 6);
3787 rt2800_register_write(rt2x00dev, HT_FBK_CFG0, reg);
3789 rt2800_register_read(rt2x00dev, HT_FBK_CFG1, &reg);
3790 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS8FBK, 8);
3791 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS9FBK, 8);
3792 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS10FBK, 9);
3793 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS11FBK, 10);
3794 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS12FBK, 11);
3795 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS13FBK, 12);
3796 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS14FBK, 13);
3797 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS15FBK, 14);
3798 rt2800_register_write(rt2x00dev, HT_FBK_CFG1, reg);
3800 rt2800_register_read(rt2x00dev, LG_FBK_CFG0, &reg);
3801 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS0FBK, 8);
3802 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS1FBK, 8);
3803 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS2FBK, 9);
3804 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS3FBK, 10);
3805 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS4FBK, 11);
3806 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS5FBK, 12);
3807 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS6FBK, 13);
3808 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS7FBK, 14);
3809 rt2800_register_write(rt2x00dev, LG_FBK_CFG0, reg);
3811 rt2800_register_read(rt2x00dev, LG_FBK_CFG1, &reg);
3812 rt2x00_set_field32(&reg, LG_FBK_CFG0_CCKMCS0FBK, 0);
3813 rt2x00_set_field32(&reg, LG_FBK_CFG0_CCKMCS1FBK, 0);
3814 rt2x00_set_field32(&reg, LG_FBK_CFG0_CCKMCS2FBK, 1);
3815 rt2x00_set_field32(&reg, LG_FBK_CFG0_CCKMCS3FBK, 2);
3816 rt2800_register_write(rt2x00dev, LG_FBK_CFG1, reg);
3819 * Do not force the BA window size, we use the TXWI to set it
3821 rt2800_register_read(rt2x00dev, AMPDU_BA_WINSIZE, &reg);
3822 rt2x00_set_field32(&reg, AMPDU_BA_WINSIZE_FORCE_WINSIZE_ENABLE, 0);
3823 rt2x00_set_field32(&reg, AMPDU_BA_WINSIZE_FORCE_WINSIZE, 0);
3824 rt2800_register_write(rt2x00dev, AMPDU_BA_WINSIZE, reg);
3827 * We must clear the error counters.
3828 * These registers are cleared on read,
3829 * so we may pass a useless variable to store the value.
3831 rt2800_register_read(rt2x00dev, RX_STA_CNT0, &reg);
3832 rt2800_register_read(rt2x00dev, RX_STA_CNT1, &reg);
3833 rt2800_register_read(rt2x00dev, RX_STA_CNT2, &reg);
3834 rt2800_register_read(rt2x00dev, TX_STA_CNT0, &reg);
3835 rt2800_register_read(rt2x00dev, TX_STA_CNT1, &reg);
3836 rt2800_register_read(rt2x00dev, TX_STA_CNT2, &reg);
3839 * Setup leadtime for pre tbtt interrupt to 6ms
3841 rt2800_register_read(rt2x00dev, INT_TIMER_CFG, &reg);
3842 rt2x00_set_field32(&reg, INT_TIMER_CFG_PRE_TBTT_TIMER, 6 << 4);
3843 rt2800_register_write(rt2x00dev, INT_TIMER_CFG, reg);
3846 * Set up channel statistics timer
3848 rt2800_register_read(rt2x00dev, CH_TIME_CFG, &reg);
3849 rt2x00_set_field32(&reg, CH_TIME_CFG_EIFS_BUSY, 1);
3850 rt2x00_set_field32(&reg, CH_TIME_CFG_NAV_BUSY, 1);
3851 rt2x00_set_field32(&reg, CH_TIME_CFG_RX_BUSY, 1);
3852 rt2x00_set_field32(&reg, CH_TIME_CFG_TX_BUSY, 1);
3853 rt2x00_set_field32(&reg, CH_TIME_CFG_TMR_EN, 1);
3854 rt2800_register_write(rt2x00dev, CH_TIME_CFG, reg);
3856 return 0;
3859 static int rt2800_wait_bbp_rf_ready(struct rt2x00_dev *rt2x00dev)
3861 unsigned int i;
3862 u32 reg;
3864 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
3865 rt2800_register_read(rt2x00dev, MAC_STATUS_CFG, &reg);
3866 if (!rt2x00_get_field32(reg, MAC_STATUS_CFG_BBP_RF_BUSY))
3867 return 0;
3869 udelay(REGISTER_BUSY_DELAY);
3872 rt2x00_err(rt2x00dev, "BBP/RF register access failed, aborting\n");
3873 return -EACCES;
3876 static int rt2800_wait_bbp_ready(struct rt2x00_dev *rt2x00dev)
3878 unsigned int i;
3879 u8 value;
3882 * BBP was enabled after firmware was loaded,
3883 * but we need to reactivate it now.
3885 rt2800_register_write(rt2x00dev, H2M_BBP_AGENT, 0);
3886 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
3887 msleep(1);
3889 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
3890 rt2800_bbp_read(rt2x00dev, 0, &value);
3891 if ((value != 0xff) && (value != 0x00))
3892 return 0;
3893 udelay(REGISTER_BUSY_DELAY);
3896 rt2x00_err(rt2x00dev, "BBP register access failed, aborting\n");
3897 return -EACCES;
3900 static void rt2800_bbp4_mac_if_ctrl(struct rt2x00_dev *rt2x00dev)
3902 u8 value;
3904 rt2800_bbp_read(rt2x00dev, 4, &value);
3905 rt2x00_set_field8(&value, BBP4_MAC_IF_CTRL, 1);
3906 rt2800_bbp_write(rt2x00dev, 4, value);
3909 static void rt2800_init_freq_calibration(struct rt2x00_dev *rt2x00dev)
3911 rt2800_bbp_write(rt2x00dev, 142, 1);
3912 rt2800_bbp_write(rt2x00dev, 143, 57);
3915 static void rt2800_init_bbp_5592_glrt(struct rt2x00_dev *rt2x00dev)
3917 const u8 glrt_table[] = {
3918 0xE0, 0x1F, 0X38, 0x32, 0x08, 0x28, 0x19, 0x0A, 0xFF, 0x00, /* 128 ~ 137 */
3919 0x16, 0x10, 0x10, 0x0B, 0x36, 0x2C, 0x26, 0x24, 0x42, 0x36, /* 138 ~ 147 */
3920 0x30, 0x2D, 0x4C, 0x46, 0x3D, 0x40, 0x3E, 0x42, 0x3D, 0x40, /* 148 ~ 157 */
3921 0X3C, 0x34, 0x2C, 0x2F, 0x3C, 0x35, 0x2E, 0x2A, 0x49, 0x41, /* 158 ~ 167 */
3922 0x36, 0x31, 0x30, 0x30, 0x0E, 0x0D, 0x28, 0x21, 0x1C, 0x16, /* 168 ~ 177 */
3923 0x50, 0x4A, 0x43, 0x40, 0x10, 0x10, 0x10, 0x10, 0x00, 0x00, /* 178 ~ 187 */
3924 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 188 ~ 197 */
3925 0x00, 0x00, 0x7D, 0x14, 0x32, 0x2C, 0x36, 0x4C, 0x43, 0x2C, /* 198 ~ 207 */
3926 0x2E, 0x36, 0x30, 0x6E, /* 208 ~ 211 */
3928 int i;
3930 for (i = 0; i < ARRAY_SIZE(glrt_table); i++) {
3931 rt2800_bbp_write(rt2x00dev, 195, 128 + i);
3932 rt2800_bbp_write(rt2x00dev, 196, glrt_table[i]);
3936 static void rt2800_init_bbp_early(struct rt2x00_dev *rt2x00dev)
3938 rt2800_bbp_write(rt2x00dev, 65, 0x2C);
3939 rt2800_bbp_write(rt2x00dev, 66, 0x38);
3940 rt2800_bbp_write(rt2x00dev, 68, 0x0B);
3941 rt2800_bbp_write(rt2x00dev, 69, 0x12);
3942 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
3943 rt2800_bbp_write(rt2x00dev, 73, 0x10);
3944 rt2800_bbp_write(rt2x00dev, 81, 0x37);
3945 rt2800_bbp_write(rt2x00dev, 82, 0x62);
3946 rt2800_bbp_write(rt2x00dev, 83, 0x6A);
3947 rt2800_bbp_write(rt2x00dev, 84, 0x99);
3948 rt2800_bbp_write(rt2x00dev, 86, 0x00);
3949 rt2800_bbp_write(rt2x00dev, 91, 0x04);
3950 rt2800_bbp_write(rt2x00dev, 92, 0x00);
3951 rt2800_bbp_write(rt2x00dev, 103, 0x00);
3952 rt2800_bbp_write(rt2x00dev, 105, 0x05);
3953 rt2800_bbp_write(rt2x00dev, 106, 0x35);
3956 static void rt2800_init_bbp_305x_soc(struct rt2x00_dev *rt2x00dev)
3958 rt2800_bbp_write(rt2x00dev, 31, 0x08);
3960 rt2800_bbp_write(rt2x00dev, 65, 0x2c);
3961 rt2800_bbp_write(rt2x00dev, 66, 0x38);
3963 rt2800_bbp_write(rt2x00dev, 69, 0x12);
3964 rt2800_bbp_write(rt2x00dev, 73, 0x10);
3966 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
3968 rt2800_bbp_write(rt2x00dev, 78, 0x0e);
3969 rt2800_bbp_write(rt2x00dev, 80, 0x08);
3971 rt2800_bbp_write(rt2x00dev, 82, 0x62);
3973 rt2800_bbp_write(rt2x00dev, 83, 0x6a);
3975 rt2800_bbp_write(rt2x00dev, 84, 0x99);
3977 rt2800_bbp_write(rt2x00dev, 86, 0x00);
3979 rt2800_bbp_write(rt2x00dev, 91, 0x04);
3981 rt2800_bbp_write(rt2x00dev, 92, 0x00);
3983 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
3986 static void rt2800_init_bbp_28xx(struct rt2x00_dev *rt2x00dev)
3988 rt2800_bbp_write(rt2x00dev, 65, 0x2c);
3989 rt2800_bbp_write(rt2x00dev, 66, 0x38);
3991 if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860C)) {
3992 rt2800_bbp_write(rt2x00dev, 69, 0x16);
3993 rt2800_bbp_write(rt2x00dev, 73, 0x12);
3994 } else {
3995 rt2800_bbp_write(rt2x00dev, 69, 0x12);
3996 rt2800_bbp_write(rt2x00dev, 73, 0x10);
3999 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
4001 rt2800_bbp_write(rt2x00dev, 81, 0x37);
4003 rt2800_bbp_write(rt2x00dev, 82, 0x62);
4005 rt2800_bbp_write(rt2x00dev, 83, 0x6a);
4007 if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860D))
4008 rt2800_bbp_write(rt2x00dev, 84, 0x19);
4009 else
4010 rt2800_bbp_write(rt2x00dev, 84, 0x99);
4012 rt2800_bbp_write(rt2x00dev, 86, 0x00);
4014 rt2800_bbp_write(rt2x00dev, 91, 0x04);
4016 rt2800_bbp_write(rt2x00dev, 92, 0x00);
4018 rt2800_bbp_write(rt2x00dev, 103, 0x00);
4021 static void rt2800_init_bbp_30xx(struct rt2x00_dev *rt2x00dev)
4023 rt2800_bbp_write(rt2x00dev, 65, 0x2c);
4024 rt2800_bbp_write(rt2x00dev, 66, 0x38);
4026 rt2800_bbp_write(rt2x00dev, 69, 0x12);
4027 rt2800_bbp_write(rt2x00dev, 73, 0x10);
4029 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
4031 rt2800_bbp_write(rt2x00dev, 79, 0x13);
4032 rt2800_bbp_write(rt2x00dev, 80, 0x05);
4033 rt2800_bbp_write(rt2x00dev, 81, 0x33);
4035 rt2800_bbp_write(rt2x00dev, 82, 0x62);
4037 rt2800_bbp_write(rt2x00dev, 83, 0x6a);
4039 rt2800_bbp_write(rt2x00dev, 84, 0x99);
4041 rt2800_bbp_write(rt2x00dev, 86, 0x00);
4043 rt2800_bbp_write(rt2x00dev, 91, 0x04);
4045 rt2800_bbp_write(rt2x00dev, 92, 0x00);
4047 if (rt2x00_rt_rev_gte(rt2x00dev, RT3070, REV_RT3070F) ||
4048 rt2x00_rt_rev_gte(rt2x00dev, RT3071, REV_RT3071E) ||
4049 rt2x00_rt_rev_gte(rt2x00dev, RT3090, REV_RT3090E))
4050 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
4051 else
4052 rt2800_bbp_write(rt2x00dev, 103, 0x00);
4055 static void rt2800_init_bbp_3290(struct rt2x00_dev *rt2x00dev)
4057 rt2800_bbp4_mac_if_ctrl(rt2x00dev);
4059 rt2800_bbp_write(rt2x00dev, 31, 0x08);
4061 rt2800_bbp_write(rt2x00dev, 65, 0x2c);
4062 rt2800_bbp_write(rt2x00dev, 66, 0x38);
4064 rt2800_bbp_write(rt2x00dev, 68, 0x0b);
4066 rt2800_bbp_write(rt2x00dev, 69, 0x12);
4067 rt2800_bbp_write(rt2x00dev, 73, 0x13);
4068 rt2800_bbp_write(rt2x00dev, 75, 0x46);
4069 rt2800_bbp_write(rt2x00dev, 76, 0x28);
4071 rt2800_bbp_write(rt2x00dev, 77, 0x58);
4073 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
4075 rt2800_bbp_write(rt2x00dev, 74, 0x0b);
4076 rt2800_bbp_write(rt2x00dev, 79, 0x18);
4077 rt2800_bbp_write(rt2x00dev, 80, 0x09);
4078 rt2800_bbp_write(rt2x00dev, 81, 0x33);
4080 rt2800_bbp_write(rt2x00dev, 82, 0x62);
4082 rt2800_bbp_write(rt2x00dev, 83, 0x7a);
4084 rt2800_bbp_write(rt2x00dev, 84, 0x9a);
4086 rt2800_bbp_write(rt2x00dev, 86, 0x38);
4088 rt2800_bbp_write(rt2x00dev, 91, 0x04);
4090 rt2800_bbp_write(rt2x00dev, 92, 0x02);
4092 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
4094 rt2800_bbp_write(rt2x00dev, 104, 0x92);
4097 static void rt2800_init_bbp_3352(struct rt2x00_dev *rt2x00dev)
4099 rt2800_bbp_write(rt2x00dev, 3, 0x00);
4100 rt2800_bbp_write(rt2x00dev, 4, 0x50);
4102 rt2800_bbp_write(rt2x00dev, 31, 0x08);
4104 rt2800_bbp_write(rt2x00dev, 47, 0x48);
4106 rt2800_bbp_write(rt2x00dev, 65, 0x2c);
4107 rt2800_bbp_write(rt2x00dev, 66, 0x38);
4109 rt2800_bbp_write(rt2x00dev, 68, 0x0b);
4111 rt2800_bbp_write(rt2x00dev, 69, 0x12);
4112 rt2800_bbp_write(rt2x00dev, 73, 0x13);
4113 rt2800_bbp_write(rt2x00dev, 75, 0x46);
4114 rt2800_bbp_write(rt2x00dev, 76, 0x28);
4116 rt2800_bbp_write(rt2x00dev, 77, 0x59);
4118 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
4120 rt2800_bbp_write(rt2x00dev, 78, 0x0e);
4121 rt2800_bbp_write(rt2x00dev, 80, 0x08);
4122 rt2800_bbp_write(rt2x00dev, 81, 0x37);
4124 rt2800_bbp_write(rt2x00dev, 82, 0x62);
4126 rt2800_bbp_write(rt2x00dev, 83, 0x6a);
4128 rt2800_bbp_write(rt2x00dev, 84, 0x99);
4130 rt2800_bbp_write(rt2x00dev, 86, 0x38);
4132 rt2800_bbp_write(rt2x00dev, 88, 0x90);
4134 rt2800_bbp_write(rt2x00dev, 91, 0x04);
4136 rt2800_bbp_write(rt2x00dev, 92, 0x02);
4138 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
4140 rt2800_bbp_write(rt2x00dev, 104, 0x92);
4143 static void rt2800_init_bbp_3390(struct rt2x00_dev *rt2x00dev)
4145 rt2800_bbp_write(rt2x00dev, 65, 0x2c);
4146 rt2800_bbp_write(rt2x00dev, 66, 0x38);
4148 rt2800_bbp_write(rt2x00dev, 69, 0x12);
4149 rt2800_bbp_write(rt2x00dev, 73, 0x10);
4151 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
4153 rt2800_bbp_write(rt2x00dev, 79, 0x13);
4154 rt2800_bbp_write(rt2x00dev, 80, 0x05);
4155 rt2800_bbp_write(rt2x00dev, 81, 0x33);
4157 rt2800_bbp_write(rt2x00dev, 82, 0x62);
4159 rt2800_bbp_write(rt2x00dev, 83, 0x6a);
4161 rt2800_bbp_write(rt2x00dev, 84, 0x99);
4163 rt2800_bbp_write(rt2x00dev, 86, 0x00);
4165 rt2800_bbp_write(rt2x00dev, 91, 0x04);
4167 rt2800_bbp_write(rt2x00dev, 92, 0x00);
4169 if (rt2x00_rt_rev_gte(rt2x00dev, RT3390, REV_RT3390E))
4170 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
4171 else
4172 rt2800_bbp_write(rt2x00dev, 103, 0x00);
4175 static void rt2800_init_bbp_3572(struct rt2x00_dev *rt2x00dev)
4177 rt2800_bbp_write(rt2x00dev, 31, 0x08);
4179 rt2800_bbp_write(rt2x00dev, 65, 0x2c);
4180 rt2800_bbp_write(rt2x00dev, 66, 0x38);
4182 rt2800_bbp_write(rt2x00dev, 69, 0x12);
4183 rt2800_bbp_write(rt2x00dev, 73, 0x10);
4185 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
4187 rt2800_bbp_write(rt2x00dev, 79, 0x13);
4188 rt2800_bbp_write(rt2x00dev, 80, 0x05);
4189 rt2800_bbp_write(rt2x00dev, 81, 0x33);
4191 rt2800_bbp_write(rt2x00dev, 82, 0x62);
4193 rt2800_bbp_write(rt2x00dev, 83, 0x6a);
4195 rt2800_bbp_write(rt2x00dev, 84, 0x99);
4197 rt2800_bbp_write(rt2x00dev, 86, 0x00);
4199 rt2800_bbp_write(rt2x00dev, 91, 0x04);
4201 rt2800_bbp_write(rt2x00dev, 92, 0x00);
4203 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
4206 static void rt2800_init_bbp_53xx(struct rt2x00_dev *rt2x00dev)
4208 rt2800_bbp4_mac_if_ctrl(rt2x00dev);
4210 rt2800_bbp_write(rt2x00dev, 31, 0x08);
4212 rt2800_bbp_write(rt2x00dev, 65, 0x2c);
4213 rt2800_bbp_write(rt2x00dev, 66, 0x38);
4215 rt2800_bbp_write(rt2x00dev, 68, 0x0b);
4217 rt2800_bbp_write(rt2x00dev, 69, 0x12);
4218 rt2800_bbp_write(rt2x00dev, 73, 0x13);
4219 rt2800_bbp_write(rt2x00dev, 75, 0x46);
4220 rt2800_bbp_write(rt2x00dev, 76, 0x28);
4222 rt2800_bbp_write(rt2x00dev, 77, 0x59);
4224 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
4226 rt2800_bbp_write(rt2x00dev, 79, 0x13);
4227 rt2800_bbp_write(rt2x00dev, 80, 0x05);
4228 rt2800_bbp_write(rt2x00dev, 81, 0x33);
4230 rt2800_bbp_write(rt2x00dev, 82, 0x62);
4232 rt2800_bbp_write(rt2x00dev, 83, 0x7a);
4234 rt2800_bbp_write(rt2x00dev, 84, 0x9a);
4236 rt2800_bbp_write(rt2x00dev, 86, 0x38);
4238 if (rt2x00_rt(rt2x00dev, RT5392))
4239 rt2800_bbp_write(rt2x00dev, 88, 0x90);
4241 rt2800_bbp_write(rt2x00dev, 91, 0x04);
4243 rt2800_bbp_write(rt2x00dev, 92, 0x02);
4245 if (rt2x00_rt(rt2x00dev, RT5392)) {
4246 rt2800_bbp_write(rt2x00dev, 95, 0x9a);
4247 rt2800_bbp_write(rt2x00dev, 98, 0x12);
4250 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
4252 rt2800_bbp_write(rt2x00dev, 104, 0x92);
4255 static void rt2800_init_bbp_5592(struct rt2x00_dev *rt2x00dev)
4257 int ant, div_mode;
4258 u16 eeprom;
4259 u8 value;
4261 rt2800_init_bbp_early(rt2x00dev);
4263 rt2800_bbp_read(rt2x00dev, 105, &value);
4264 rt2x00_set_field8(&value, BBP105_MLD,
4265 rt2x00dev->default_ant.rx_chain_num == 2);
4266 rt2800_bbp_write(rt2x00dev, 105, value);
4268 rt2800_bbp4_mac_if_ctrl(rt2x00dev);
4270 rt2800_bbp_write(rt2x00dev, 20, 0x06);
4271 rt2800_bbp_write(rt2x00dev, 31, 0x08);
4272 rt2800_bbp_write(rt2x00dev, 65, 0x2C);
4273 rt2800_bbp_write(rt2x00dev, 68, 0xDD);
4274 rt2800_bbp_write(rt2x00dev, 69, 0x1A);
4275 rt2800_bbp_write(rt2x00dev, 70, 0x05);
4276 rt2800_bbp_write(rt2x00dev, 73, 0x13);
4277 rt2800_bbp_write(rt2x00dev, 74, 0x0F);
4278 rt2800_bbp_write(rt2x00dev, 75, 0x4F);
4279 rt2800_bbp_write(rt2x00dev, 76, 0x28);
4280 rt2800_bbp_write(rt2x00dev, 77, 0x59);
4281 rt2800_bbp_write(rt2x00dev, 84, 0x9A);
4282 rt2800_bbp_write(rt2x00dev, 86, 0x38);
4283 rt2800_bbp_write(rt2x00dev, 88, 0x90);
4284 rt2800_bbp_write(rt2x00dev, 91, 0x04);
4285 rt2800_bbp_write(rt2x00dev, 92, 0x02);
4286 rt2800_bbp_write(rt2x00dev, 95, 0x9a);
4287 rt2800_bbp_write(rt2x00dev, 98, 0x12);
4288 rt2800_bbp_write(rt2x00dev, 103, 0xC0);
4289 rt2800_bbp_write(rt2x00dev, 104, 0x92);
4290 /* FIXME BBP105 owerwrite */
4291 rt2800_bbp_write(rt2x00dev, 105, 0x3C);
4292 rt2800_bbp_write(rt2x00dev, 106, 0x35);
4293 rt2800_bbp_write(rt2x00dev, 128, 0x12);
4294 rt2800_bbp_write(rt2x00dev, 134, 0xD0);
4295 rt2800_bbp_write(rt2x00dev, 135, 0xF6);
4296 rt2800_bbp_write(rt2x00dev, 137, 0x0F);
4298 /* Initialize GLRT (Generalized Likehood Radio Test) */
4299 rt2800_init_bbp_5592_glrt(rt2x00dev);
4301 rt2800_bbp4_mac_if_ctrl(rt2x00dev);
4303 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
4304 div_mode = rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_ANT_DIVERSITY);
4305 ant = (div_mode == 3) ? 1 : 0;
4306 rt2800_bbp_read(rt2x00dev, 152, &value);
4307 if (ant == 0) {
4308 /* Main antenna */
4309 rt2x00_set_field8(&value, BBP152_RX_DEFAULT_ANT, 1);
4310 } else {
4311 /* Auxiliary antenna */
4312 rt2x00_set_field8(&value, BBP152_RX_DEFAULT_ANT, 0);
4314 rt2800_bbp_write(rt2x00dev, 152, value);
4316 if (rt2x00_rt_rev_gte(rt2x00dev, RT5592, REV_RT5592C)) {
4317 rt2800_bbp_read(rt2x00dev, 254, &value);
4318 rt2x00_set_field8(&value, BBP254_BIT7, 1);
4319 rt2800_bbp_write(rt2x00dev, 254, value);
4322 rt2800_init_freq_calibration(rt2x00dev);
4324 rt2800_bbp_write(rt2x00dev, 84, 0x19);
4325 if (rt2x00_rt_rev_gte(rt2x00dev, RT5592, REV_RT5592C))
4326 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
4329 static void rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
4331 unsigned int i;
4332 u16 eeprom;
4333 u8 reg_id;
4334 u8 value;
4336 if (rt2800_is_305x_soc(rt2x00dev))
4337 rt2800_init_bbp_305x_soc(rt2x00dev);
4339 switch (rt2x00dev->chip.rt) {
4340 case RT2860:
4341 case RT2872:
4342 case RT2883:
4343 rt2800_init_bbp_28xx(rt2x00dev);
4344 break;
4345 case RT3070:
4346 case RT3071:
4347 case RT3090:
4348 rt2800_init_bbp_30xx(rt2x00dev);
4349 break;
4350 case RT3290:
4351 rt2800_init_bbp_3290(rt2x00dev);
4352 break;
4353 case RT3352:
4354 rt2800_init_bbp_3352(rt2x00dev);
4355 break;
4356 case RT3390:
4357 rt2800_init_bbp_3390(rt2x00dev);
4358 break;
4359 case RT3572:
4360 rt2800_init_bbp_3572(rt2x00dev);
4361 break;
4362 case RT5390:
4363 case RT5392:
4364 rt2800_init_bbp_53xx(rt2x00dev);
4365 break;
4366 case RT5592:
4367 rt2800_init_bbp_5592(rt2x00dev);
4368 return;
4371 if (rt2800_is_305x_soc(rt2x00dev))
4372 rt2800_bbp_write(rt2x00dev, 105, 0x01);
4373 else if (rt2x00_rt(rt2x00dev, RT3290))
4374 rt2800_bbp_write(rt2x00dev, 105, 0x1c);
4375 else if (rt2x00_rt(rt2x00dev, RT3352))
4376 rt2800_bbp_write(rt2x00dev, 105, 0x34);
4377 else if (rt2x00_rt(rt2x00dev, RT5390) ||
4378 rt2x00_rt(rt2x00dev, RT5392))
4379 rt2800_bbp_write(rt2x00dev, 105, 0x3c);
4380 else
4381 rt2800_bbp_write(rt2x00dev, 105, 0x05);
4383 if (rt2x00_rt(rt2x00dev, RT3290) ||
4384 rt2x00_rt(rt2x00dev, RT5390))
4385 rt2800_bbp_write(rt2x00dev, 106, 0x03);
4386 else if (rt2x00_rt(rt2x00dev, RT3352))
4387 rt2800_bbp_write(rt2x00dev, 106, 0x05);
4388 else if (rt2x00_rt(rt2x00dev, RT5392))
4389 rt2800_bbp_write(rt2x00dev, 106, 0x12);
4390 else
4391 rt2800_bbp_write(rt2x00dev, 106, 0x35);
4393 if (rt2x00_rt(rt2x00dev, RT3352))
4394 rt2800_bbp_write(rt2x00dev, 120, 0x50);
4396 if (rt2x00_rt(rt2x00dev, RT3290) ||
4397 rt2x00_rt(rt2x00dev, RT5390) ||
4398 rt2x00_rt(rt2x00dev, RT5392))
4399 rt2800_bbp_write(rt2x00dev, 128, 0x12);
4401 if (rt2x00_rt(rt2x00dev, RT5392)) {
4402 rt2800_bbp_write(rt2x00dev, 134, 0xd0);
4403 rt2800_bbp_write(rt2x00dev, 135, 0xf6);
4406 if (rt2x00_rt(rt2x00dev, RT3352))
4407 rt2800_bbp_write(rt2x00dev, 137, 0x0f);
4409 if (rt2x00_rt(rt2x00dev, RT3071) ||
4410 rt2x00_rt(rt2x00dev, RT3090) ||
4411 rt2x00_rt(rt2x00dev, RT3390) ||
4412 rt2x00_rt(rt2x00dev, RT3572) ||
4413 rt2x00_rt(rt2x00dev, RT5390) ||
4414 rt2x00_rt(rt2x00dev, RT5392)) {
4415 rt2800_bbp_read(rt2x00dev, 138, &value);
4417 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
4418 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) == 1)
4419 value |= 0x20;
4420 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH) == 1)
4421 value &= ~0x02;
4423 rt2800_bbp_write(rt2x00dev, 138, value);
4426 if (rt2x00_rt(rt2x00dev, RT3290)) {
4427 rt2800_bbp_write(rt2x00dev, 67, 0x24);
4428 rt2800_bbp_write(rt2x00dev, 143, 0x04);
4429 rt2800_bbp_write(rt2x00dev, 142, 0x99);
4430 rt2800_bbp_write(rt2x00dev, 150, 0x30);
4431 rt2800_bbp_write(rt2x00dev, 151, 0x2e);
4432 rt2800_bbp_write(rt2x00dev, 152, 0x20);
4433 rt2800_bbp_write(rt2x00dev, 153, 0x34);
4434 rt2800_bbp_write(rt2x00dev, 154, 0x40);
4435 rt2800_bbp_write(rt2x00dev, 155, 0x3b);
4436 rt2800_bbp_write(rt2x00dev, 253, 0x04);
4438 rt2800_bbp_read(rt2x00dev, 47, &value);
4439 rt2x00_set_field8(&value, BBP47_TSSI_ADC6, 1);
4440 rt2800_bbp_write(rt2x00dev, 47, value);
4442 /* Use 5-bit ADC for Acquisition and 8-bit ADC for data */
4443 rt2800_bbp_read(rt2x00dev, 3, &value);
4444 rt2x00_set_field8(&value, BBP3_ADC_MODE_SWITCH, 1);
4445 rt2x00_set_field8(&value, BBP3_ADC_INIT_MODE, 1);
4446 rt2800_bbp_write(rt2x00dev, 3, value);
4449 if (rt2x00_rt(rt2x00dev, RT3352)) {
4450 rt2800_bbp_write(rt2x00dev, 163, 0xbd);
4451 /* Set ITxBF timeout to 0x9c40=1000msec */
4452 rt2800_bbp_write(rt2x00dev, 179, 0x02);
4453 rt2800_bbp_write(rt2x00dev, 180, 0x00);
4454 rt2800_bbp_write(rt2x00dev, 182, 0x40);
4455 rt2800_bbp_write(rt2x00dev, 180, 0x01);
4456 rt2800_bbp_write(rt2x00dev, 182, 0x9c);
4457 rt2800_bbp_write(rt2x00dev, 179, 0x00);
4458 /* Reprogram the inband interface to put right values in RXWI */
4459 rt2800_bbp_write(rt2x00dev, 142, 0x04);
4460 rt2800_bbp_write(rt2x00dev, 143, 0x3b);
4461 rt2800_bbp_write(rt2x00dev, 142, 0x06);
4462 rt2800_bbp_write(rt2x00dev, 143, 0xa0);
4463 rt2800_bbp_write(rt2x00dev, 142, 0x07);
4464 rt2800_bbp_write(rt2x00dev, 143, 0xa1);
4465 rt2800_bbp_write(rt2x00dev, 142, 0x08);
4466 rt2800_bbp_write(rt2x00dev, 143, 0xa2);
4468 rt2800_bbp_write(rt2x00dev, 148, 0xc8);
4471 if (rt2x00_rt(rt2x00dev, RT5390) ||
4472 rt2x00_rt(rt2x00dev, RT5392)) {
4473 int ant, div_mode;
4475 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
4476 div_mode = rt2x00_get_field16(eeprom,
4477 EEPROM_NIC_CONF1_ANT_DIVERSITY);
4478 ant = (div_mode == 3) ? 1 : 0;
4480 /* check if this is a Bluetooth combo card */
4481 if (test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags)) {
4482 u32 reg;
4484 rt2800_register_read(rt2x00dev, GPIO_CTRL, &reg);
4485 rt2x00_set_field32(&reg, GPIO_CTRL_DIR3, 0);
4486 rt2x00_set_field32(&reg, GPIO_CTRL_DIR6, 0);
4487 rt2x00_set_field32(&reg, GPIO_CTRL_VAL3, 0);
4488 rt2x00_set_field32(&reg, GPIO_CTRL_VAL6, 0);
4489 if (ant == 0)
4490 rt2x00_set_field32(&reg, GPIO_CTRL_VAL3, 1);
4491 else if (ant == 1)
4492 rt2x00_set_field32(&reg, GPIO_CTRL_VAL6, 1);
4493 rt2800_register_write(rt2x00dev, GPIO_CTRL, reg);
4496 /* This chip has hardware antenna diversity*/
4497 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390R)) {
4498 rt2800_bbp_write(rt2x00dev, 150, 0); /* Disable Antenna Software OFDM */
4499 rt2800_bbp_write(rt2x00dev, 151, 0); /* Disable Antenna Software CCK */
4500 rt2800_bbp_write(rt2x00dev, 154, 0); /* Clear previously selected antenna */
4503 rt2800_bbp_read(rt2x00dev, 152, &value);
4504 if (ant == 0)
4505 rt2x00_set_field8(&value, BBP152_RX_DEFAULT_ANT, 1);
4506 else
4507 rt2x00_set_field8(&value, BBP152_RX_DEFAULT_ANT, 0);
4508 rt2800_bbp_write(rt2x00dev, 152, value);
4510 rt2800_init_freq_calibration(rt2x00dev);
4513 for (i = 0; i < EEPROM_BBP_SIZE; i++) {
4514 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
4516 if (eeprom != 0xffff && eeprom != 0x0000) {
4517 reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
4518 value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
4519 rt2800_bbp_write(rt2x00dev, reg_id, value);
4524 static void rt2800_led_open_drain_enable(struct rt2x00_dev *rt2x00dev)
4526 u32 reg;
4528 rt2800_register_read(rt2x00dev, OPT_14_CSR, &reg);
4529 rt2x00_set_field32(&reg, OPT_14_CSR_BIT0, 1);
4530 rt2800_register_write(rt2x00dev, OPT_14_CSR, reg);
4533 static u8 rt2800_init_rx_filter(struct rt2x00_dev *rt2x00dev, bool bw40,
4534 u8 filter_target)
4536 unsigned int i;
4537 u8 bbp;
4538 u8 rfcsr;
4539 u8 passband;
4540 u8 stopband;
4541 u8 overtuned = 0;
4542 u8 rfcsr24 = (bw40) ? 0x27 : 0x07;
4544 rt2800_rfcsr_write(rt2x00dev, 24, rfcsr24);
4546 rt2800_bbp_read(rt2x00dev, 4, &bbp);
4547 rt2x00_set_field8(&bbp, BBP4_BANDWIDTH, 2 * bw40);
4548 rt2800_bbp_write(rt2x00dev, 4, bbp);
4550 rt2800_rfcsr_read(rt2x00dev, 31, &rfcsr);
4551 rt2x00_set_field8(&rfcsr, RFCSR31_RX_H20M, bw40);
4552 rt2800_rfcsr_write(rt2x00dev, 31, rfcsr);
4554 rt2800_rfcsr_read(rt2x00dev, 22, &rfcsr);
4555 rt2x00_set_field8(&rfcsr, RFCSR22_BASEBAND_LOOPBACK, 1);
4556 rt2800_rfcsr_write(rt2x00dev, 22, rfcsr);
4559 * Set power & frequency of passband test tone
4561 rt2800_bbp_write(rt2x00dev, 24, 0);
4563 for (i = 0; i < 100; i++) {
4564 rt2800_bbp_write(rt2x00dev, 25, 0x90);
4565 msleep(1);
4567 rt2800_bbp_read(rt2x00dev, 55, &passband);
4568 if (passband)
4569 break;
4573 * Set power & frequency of stopband test tone
4575 rt2800_bbp_write(rt2x00dev, 24, 0x06);
4577 for (i = 0; i < 100; i++) {
4578 rt2800_bbp_write(rt2x00dev, 25, 0x90);
4579 msleep(1);
4581 rt2800_bbp_read(rt2x00dev, 55, &stopband);
4583 if ((passband - stopband) <= filter_target) {
4584 rfcsr24++;
4585 overtuned += ((passband - stopband) == filter_target);
4586 } else
4587 break;
4589 rt2800_rfcsr_write(rt2x00dev, 24, rfcsr24);
4592 rfcsr24 -= !!overtuned;
4594 rt2800_rfcsr_write(rt2x00dev, 24, rfcsr24);
4595 return rfcsr24;
4598 static void rt2800_rf_init_calibration(struct rt2x00_dev *rt2x00dev,
4599 const unsigned int rf_reg)
4601 u8 rfcsr;
4603 rt2800_rfcsr_read(rt2x00dev, rf_reg, &rfcsr);
4604 rt2x00_set_field8(&rfcsr, FIELD8(0x80), 1);
4605 rt2800_rfcsr_write(rt2x00dev, rf_reg, rfcsr);
4606 msleep(1);
4607 rt2x00_set_field8(&rfcsr, FIELD8(0x80), 0);
4608 rt2800_rfcsr_write(rt2x00dev, rf_reg, rfcsr);
4611 static void rt2800_rx_filter_calibration(struct rt2x00_dev *rt2x00dev)
4613 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
4614 u8 filter_tgt_bw20;
4615 u8 filter_tgt_bw40;
4616 u8 rfcsr, bbp;
4619 * TODO: sync filter_tgt values with vendor driver
4621 if (rt2x00_rt(rt2x00dev, RT3070)) {
4622 filter_tgt_bw20 = 0x16;
4623 filter_tgt_bw40 = 0x19;
4624 } else {
4625 filter_tgt_bw20 = 0x13;
4626 filter_tgt_bw40 = 0x15;
4629 drv_data->calibration_bw20 =
4630 rt2800_init_rx_filter(rt2x00dev, false, filter_tgt_bw20);
4631 drv_data->calibration_bw40 =
4632 rt2800_init_rx_filter(rt2x00dev, true, filter_tgt_bw40);
4635 * Save BBP 25 & 26 values for later use in channel switching (for 3052)
4637 rt2800_bbp_read(rt2x00dev, 25, &drv_data->bbp25);
4638 rt2800_bbp_read(rt2x00dev, 26, &drv_data->bbp26);
4641 * Set back to initial state
4643 rt2800_bbp_write(rt2x00dev, 24, 0);
4645 rt2800_rfcsr_read(rt2x00dev, 22, &rfcsr);
4646 rt2x00_set_field8(&rfcsr, RFCSR22_BASEBAND_LOOPBACK, 0);
4647 rt2800_rfcsr_write(rt2x00dev, 22, rfcsr);
4650 * Set BBP back to BW20
4652 rt2800_bbp_read(rt2x00dev, 4, &bbp);
4653 rt2x00_set_field8(&bbp, BBP4_BANDWIDTH, 0);
4654 rt2800_bbp_write(rt2x00dev, 4, bbp);
4657 static void rt2800_normal_mode_setup_3xxx(struct rt2x00_dev *rt2x00dev)
4659 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
4660 u8 min_gain, rfcsr, bbp;
4661 u16 eeprom;
4663 rt2800_rfcsr_read(rt2x00dev, 17, &rfcsr);
4665 rt2x00_set_field8(&rfcsr, RFCSR17_TX_LO1_EN, 0);
4666 if (rt2x00_rt(rt2x00dev, RT3070) ||
4667 rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) ||
4668 rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E) ||
4669 rt2x00_rt_rev_lt(rt2x00dev, RT3390, REV_RT3390E)) {
4670 if (!test_bit(CAPABILITY_EXTERNAL_LNA_BG, &rt2x00dev->cap_flags))
4671 rt2x00_set_field8(&rfcsr, RFCSR17_R, 1);
4674 min_gain = rt2x00_rt(rt2x00dev, RT3070) ? 1 : 2;
4675 if (drv_data->txmixer_gain_24g >= min_gain) {
4676 rt2x00_set_field8(&rfcsr, RFCSR17_TXMIXER_GAIN,
4677 drv_data->txmixer_gain_24g);
4680 rt2800_rfcsr_write(rt2x00dev, 17, rfcsr);
4682 if (rt2x00_rt(rt2x00dev, RT3090)) {
4683 /* Turn off unused DAC1 and ADC1 to reduce power consumption */
4684 rt2800_bbp_read(rt2x00dev, 138, &bbp);
4685 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
4686 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH) == 1)
4687 rt2x00_set_field8(&bbp, BBP138_RX_ADC1, 0);
4688 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) == 1)
4689 rt2x00_set_field8(&bbp, BBP138_TX_DAC1, 1);
4690 rt2800_bbp_write(rt2x00dev, 138, bbp);
4693 if (rt2x00_rt(rt2x00dev, RT3070)) {
4694 rt2800_rfcsr_read(rt2x00dev, 27, &rfcsr);
4695 if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F))
4696 rt2x00_set_field8(&rfcsr, RFCSR27_R1, 3);
4697 else
4698 rt2x00_set_field8(&rfcsr, RFCSR27_R1, 0);
4699 rt2x00_set_field8(&rfcsr, RFCSR27_R2, 0);
4700 rt2x00_set_field8(&rfcsr, RFCSR27_R3, 0);
4701 rt2x00_set_field8(&rfcsr, RFCSR27_R4, 0);
4702 rt2800_rfcsr_write(rt2x00dev, 27, rfcsr);
4703 } else if (rt2x00_rt(rt2x00dev, RT3071) ||
4704 rt2x00_rt(rt2x00dev, RT3090) ||
4705 rt2x00_rt(rt2x00dev, RT3390)) {
4706 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
4707 rt2x00_set_field8(&rfcsr, RFCSR1_RF_BLOCK_EN, 1);
4708 rt2x00_set_field8(&rfcsr, RFCSR1_RX0_PD, 0);
4709 rt2x00_set_field8(&rfcsr, RFCSR1_TX0_PD, 0);
4710 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD, 1);
4711 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD, 1);
4712 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
4714 rt2800_rfcsr_read(rt2x00dev, 15, &rfcsr);
4715 rt2x00_set_field8(&rfcsr, RFCSR15_TX_LO2_EN, 0);
4716 rt2800_rfcsr_write(rt2x00dev, 15, rfcsr);
4718 rt2800_rfcsr_read(rt2x00dev, 20, &rfcsr);
4719 rt2x00_set_field8(&rfcsr, RFCSR20_RX_LO1_EN, 0);
4720 rt2800_rfcsr_write(rt2x00dev, 20, rfcsr);
4722 rt2800_rfcsr_read(rt2x00dev, 21, &rfcsr);
4723 rt2x00_set_field8(&rfcsr, RFCSR21_RX_LO2_EN, 0);
4724 rt2800_rfcsr_write(rt2x00dev, 21, rfcsr);
4728 static void rt2800_normal_mode_setup_5xxx(struct rt2x00_dev *rt2x00dev)
4730 u8 reg;
4731 u16 eeprom;
4733 /* Turn off unused DAC1 and ADC1 to reduce power consumption */
4734 rt2800_bbp_read(rt2x00dev, 138, &reg);
4735 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
4736 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH) == 1)
4737 rt2x00_set_field8(&reg, BBP138_RX_ADC1, 0);
4738 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) == 1)
4739 rt2x00_set_field8(&reg, BBP138_TX_DAC1, 1);
4740 rt2800_bbp_write(rt2x00dev, 138, reg);
4742 rt2800_rfcsr_read(rt2x00dev, 38, &reg);
4743 rt2x00_set_field8(&reg, RFCSR38_RX_LO1_EN, 0);
4744 rt2800_rfcsr_write(rt2x00dev, 38, reg);
4746 rt2800_rfcsr_read(rt2x00dev, 39, &reg);
4747 rt2x00_set_field8(&reg, RFCSR39_RX_LO2_EN, 0);
4748 rt2800_rfcsr_write(rt2x00dev, 39, reg);
4750 rt2800_bbp4_mac_if_ctrl(rt2x00dev);
4752 rt2800_rfcsr_read(rt2x00dev, 30, &reg);
4753 rt2x00_set_field8(&reg, RFCSR30_RX_VCM, 2);
4754 rt2800_rfcsr_write(rt2x00dev, 30, reg);
4757 static void rt2800_init_rfcsr_305x_soc(struct rt2x00_dev *rt2x00dev)
4759 rt2800_rf_init_calibration(rt2x00dev, 30);
4761 rt2800_rfcsr_write(rt2x00dev, 0, 0x50);
4762 rt2800_rfcsr_write(rt2x00dev, 1, 0x01);
4763 rt2800_rfcsr_write(rt2x00dev, 2, 0xf7);
4764 rt2800_rfcsr_write(rt2x00dev, 3, 0x75);
4765 rt2800_rfcsr_write(rt2x00dev, 4, 0x40);
4766 rt2800_rfcsr_write(rt2x00dev, 5, 0x03);
4767 rt2800_rfcsr_write(rt2x00dev, 6, 0x02);
4768 rt2800_rfcsr_write(rt2x00dev, 7, 0x50);
4769 rt2800_rfcsr_write(rt2x00dev, 8, 0x39);
4770 rt2800_rfcsr_write(rt2x00dev, 9, 0x0f);
4771 rt2800_rfcsr_write(rt2x00dev, 10, 0x60);
4772 rt2800_rfcsr_write(rt2x00dev, 11, 0x21);
4773 rt2800_rfcsr_write(rt2x00dev, 12, 0x75);
4774 rt2800_rfcsr_write(rt2x00dev, 13, 0x75);
4775 rt2800_rfcsr_write(rt2x00dev, 14, 0x90);
4776 rt2800_rfcsr_write(rt2x00dev, 15, 0x58);
4777 rt2800_rfcsr_write(rt2x00dev, 16, 0xb3);
4778 rt2800_rfcsr_write(rt2x00dev, 17, 0x92);
4779 rt2800_rfcsr_write(rt2x00dev, 18, 0x2c);
4780 rt2800_rfcsr_write(rt2x00dev, 19, 0x02);
4781 rt2800_rfcsr_write(rt2x00dev, 20, 0xba);
4782 rt2800_rfcsr_write(rt2x00dev, 21, 0xdb);
4783 rt2800_rfcsr_write(rt2x00dev, 22, 0x00);
4784 rt2800_rfcsr_write(rt2x00dev, 23, 0x31);
4785 rt2800_rfcsr_write(rt2x00dev, 24, 0x08);
4786 rt2800_rfcsr_write(rt2x00dev, 25, 0x01);
4787 rt2800_rfcsr_write(rt2x00dev, 26, 0x25);
4788 rt2800_rfcsr_write(rt2x00dev, 27, 0x23);
4789 rt2800_rfcsr_write(rt2x00dev, 28, 0x13);
4790 rt2800_rfcsr_write(rt2x00dev, 29, 0x83);
4791 rt2800_rfcsr_write(rt2x00dev, 30, 0x00);
4792 rt2800_rfcsr_write(rt2x00dev, 31, 0x00);
4795 static void rt2800_init_rfcsr_30xx(struct rt2x00_dev *rt2x00dev)
4797 u8 rfcsr;
4798 u16 eeprom;
4799 u32 reg;
4801 /* XXX vendor driver do this only for 3070 */
4802 rt2800_rf_init_calibration(rt2x00dev, 30);
4804 rt2800_rfcsr_write(rt2x00dev, 4, 0x40);
4805 rt2800_rfcsr_write(rt2x00dev, 5, 0x03);
4806 rt2800_rfcsr_write(rt2x00dev, 6, 0x02);
4807 rt2800_rfcsr_write(rt2x00dev, 7, 0x60);
4808 rt2800_rfcsr_write(rt2x00dev, 9, 0x0f);
4809 rt2800_rfcsr_write(rt2x00dev, 10, 0x41);
4810 rt2800_rfcsr_write(rt2x00dev, 11, 0x21);
4811 rt2800_rfcsr_write(rt2x00dev, 12, 0x7b);
4812 rt2800_rfcsr_write(rt2x00dev, 14, 0x90);
4813 rt2800_rfcsr_write(rt2x00dev, 15, 0x58);
4814 rt2800_rfcsr_write(rt2x00dev, 16, 0xb3);
4815 rt2800_rfcsr_write(rt2x00dev, 17, 0x92);
4816 rt2800_rfcsr_write(rt2x00dev, 18, 0x2c);
4817 rt2800_rfcsr_write(rt2x00dev, 19, 0x02);
4818 rt2800_rfcsr_write(rt2x00dev, 20, 0xba);
4819 rt2800_rfcsr_write(rt2x00dev, 21, 0xdb);
4820 rt2800_rfcsr_write(rt2x00dev, 24, 0x16);
4821 rt2800_rfcsr_write(rt2x00dev, 25, 0x01);
4822 rt2800_rfcsr_write(rt2x00dev, 29, 0x1f);
4824 if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F)) {
4825 rt2800_register_read(rt2x00dev, LDO_CFG0, &reg);
4826 rt2x00_set_field32(&reg, LDO_CFG0_BGSEL, 1);
4827 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 3);
4828 rt2800_register_write(rt2x00dev, LDO_CFG0, reg);
4829 } else if (rt2x00_rt(rt2x00dev, RT3071) ||
4830 rt2x00_rt(rt2x00dev, RT3090)) {
4831 rt2800_rfcsr_write(rt2x00dev, 31, 0x14);
4833 rt2800_rfcsr_read(rt2x00dev, 6, &rfcsr);
4834 rt2x00_set_field8(&rfcsr, RFCSR6_R2, 1);
4835 rt2800_rfcsr_write(rt2x00dev, 6, rfcsr);
4837 rt2800_register_read(rt2x00dev, LDO_CFG0, &reg);
4838 rt2x00_set_field32(&reg, LDO_CFG0_BGSEL, 1);
4839 if (rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) ||
4840 rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E)) {
4841 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
4842 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_DAC_TEST))
4843 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 3);
4844 else
4845 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 0);
4847 rt2800_register_write(rt2x00dev, LDO_CFG0, reg);
4849 rt2800_register_read(rt2x00dev, GPIO_SWITCH, &reg);
4850 rt2x00_set_field32(&reg, GPIO_SWITCH_5, 0);
4851 rt2800_register_write(rt2x00dev, GPIO_SWITCH, reg);
4854 rt2800_rx_filter_calibration(rt2x00dev);
4856 if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F) ||
4857 rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) ||
4858 rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E))
4859 rt2800_rfcsr_write(rt2x00dev, 27, 0x03);
4861 rt2800_led_open_drain_enable(rt2x00dev);
4862 rt2800_normal_mode_setup_3xxx(rt2x00dev);
4865 static void rt2800_init_rfcsr_3290(struct rt2x00_dev *rt2x00dev)
4867 u8 rfcsr;
4869 rt2800_rf_init_calibration(rt2x00dev, 2);
4871 rt2800_rfcsr_write(rt2x00dev, 1, 0x0f);
4872 rt2800_rfcsr_write(rt2x00dev, 2, 0x80);
4873 rt2800_rfcsr_write(rt2x00dev, 3, 0x08);
4874 rt2800_rfcsr_write(rt2x00dev, 4, 0x00);
4875 rt2800_rfcsr_write(rt2x00dev, 6, 0xa0);
4876 rt2800_rfcsr_write(rt2x00dev, 8, 0xf3);
4877 rt2800_rfcsr_write(rt2x00dev, 9, 0x02);
4878 rt2800_rfcsr_write(rt2x00dev, 10, 0x53);
4879 rt2800_rfcsr_write(rt2x00dev, 11, 0x4a);
4880 rt2800_rfcsr_write(rt2x00dev, 12, 0x46);
4881 rt2800_rfcsr_write(rt2x00dev, 13, 0x9f);
4882 rt2800_rfcsr_write(rt2x00dev, 18, 0x02);
4883 rt2800_rfcsr_write(rt2x00dev, 22, 0x20);
4884 rt2800_rfcsr_write(rt2x00dev, 25, 0x83);
4885 rt2800_rfcsr_write(rt2x00dev, 26, 0x82);
4886 rt2800_rfcsr_write(rt2x00dev, 27, 0x09);
4887 rt2800_rfcsr_write(rt2x00dev, 29, 0x10);
4888 rt2800_rfcsr_write(rt2x00dev, 30, 0x10);
4889 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
4890 rt2800_rfcsr_write(rt2x00dev, 32, 0x80);
4891 rt2800_rfcsr_write(rt2x00dev, 33, 0x00);
4892 rt2800_rfcsr_write(rt2x00dev, 34, 0x05);
4893 rt2800_rfcsr_write(rt2x00dev, 35, 0x12);
4894 rt2800_rfcsr_write(rt2x00dev, 36, 0x00);
4895 rt2800_rfcsr_write(rt2x00dev, 38, 0x85);
4896 rt2800_rfcsr_write(rt2x00dev, 39, 0x1b);
4897 rt2800_rfcsr_write(rt2x00dev, 40, 0x0b);
4898 rt2800_rfcsr_write(rt2x00dev, 41, 0xbb);
4899 rt2800_rfcsr_write(rt2x00dev, 42, 0xd5);
4900 rt2800_rfcsr_write(rt2x00dev, 43, 0x7b);
4901 rt2800_rfcsr_write(rt2x00dev, 44, 0x0e);
4902 rt2800_rfcsr_write(rt2x00dev, 45, 0xa2);
4903 rt2800_rfcsr_write(rt2x00dev, 46, 0x73);
4904 rt2800_rfcsr_write(rt2x00dev, 47, 0x00);
4905 rt2800_rfcsr_write(rt2x00dev, 48, 0x10);
4906 rt2800_rfcsr_write(rt2x00dev, 49, 0x98);
4907 rt2800_rfcsr_write(rt2x00dev, 52, 0x38);
4908 rt2800_rfcsr_write(rt2x00dev, 53, 0x00);
4909 rt2800_rfcsr_write(rt2x00dev, 54, 0x78);
4910 rt2800_rfcsr_write(rt2x00dev, 55, 0x43);
4911 rt2800_rfcsr_write(rt2x00dev, 56, 0x02);
4912 rt2800_rfcsr_write(rt2x00dev, 57, 0x80);
4913 rt2800_rfcsr_write(rt2x00dev, 58, 0x7f);
4914 rt2800_rfcsr_write(rt2x00dev, 59, 0x09);
4915 rt2800_rfcsr_write(rt2x00dev, 60, 0x45);
4916 rt2800_rfcsr_write(rt2x00dev, 61, 0xc1);
4918 rt2800_rfcsr_read(rt2x00dev, 29, &rfcsr);
4919 rt2x00_set_field8(&rfcsr, RFCSR29_RSSI_GAIN, 3);
4920 rt2800_rfcsr_write(rt2x00dev, 29, rfcsr);
4922 rt2800_led_open_drain_enable(rt2x00dev);
4923 rt2800_normal_mode_setup_3xxx(rt2x00dev);
4926 static void rt2800_init_rfcsr_3352(struct rt2x00_dev *rt2x00dev)
4928 rt2800_rf_init_calibration(rt2x00dev, 30);
4930 rt2800_rfcsr_write(rt2x00dev, 0, 0xf0);
4931 rt2800_rfcsr_write(rt2x00dev, 1, 0x23);
4932 rt2800_rfcsr_write(rt2x00dev, 2, 0x50);
4933 rt2800_rfcsr_write(rt2x00dev, 3, 0x18);
4934 rt2800_rfcsr_write(rt2x00dev, 4, 0x00);
4935 rt2800_rfcsr_write(rt2x00dev, 5, 0x00);
4936 rt2800_rfcsr_write(rt2x00dev, 6, 0x33);
4937 rt2800_rfcsr_write(rt2x00dev, 7, 0x00);
4938 rt2800_rfcsr_write(rt2x00dev, 8, 0xf1);
4939 rt2800_rfcsr_write(rt2x00dev, 9, 0x02);
4940 rt2800_rfcsr_write(rt2x00dev, 10, 0xd2);
4941 rt2800_rfcsr_write(rt2x00dev, 11, 0x42);
4942 rt2800_rfcsr_write(rt2x00dev, 12, 0x1c);
4943 rt2800_rfcsr_write(rt2x00dev, 13, 0x00);
4944 rt2800_rfcsr_write(rt2x00dev, 14, 0x5a);
4945 rt2800_rfcsr_write(rt2x00dev, 15, 0x00);
4946 rt2800_rfcsr_write(rt2x00dev, 16, 0x01);
4947 rt2800_rfcsr_write(rt2x00dev, 18, 0x45);
4948 rt2800_rfcsr_write(rt2x00dev, 19, 0x02);
4949 rt2800_rfcsr_write(rt2x00dev, 20, 0x00);
4950 rt2800_rfcsr_write(rt2x00dev, 21, 0x00);
4951 rt2800_rfcsr_write(rt2x00dev, 22, 0x00);
4952 rt2800_rfcsr_write(rt2x00dev, 23, 0x00);
4953 rt2800_rfcsr_write(rt2x00dev, 24, 0x00);
4954 rt2800_rfcsr_write(rt2x00dev, 25, 0x80);
4955 rt2800_rfcsr_write(rt2x00dev, 26, 0x00);
4956 rt2800_rfcsr_write(rt2x00dev, 27, 0x03);
4957 rt2800_rfcsr_write(rt2x00dev, 28, 0x03);
4958 rt2800_rfcsr_write(rt2x00dev, 29, 0x00);
4959 rt2800_rfcsr_write(rt2x00dev, 30, 0x10);
4960 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
4961 rt2800_rfcsr_write(rt2x00dev, 32, 0x80);
4962 rt2800_rfcsr_write(rt2x00dev, 33, 0x00);
4963 rt2800_rfcsr_write(rt2x00dev, 34, 0x01);
4964 rt2800_rfcsr_write(rt2x00dev, 35, 0x03);
4965 rt2800_rfcsr_write(rt2x00dev, 36, 0xbd);
4966 rt2800_rfcsr_write(rt2x00dev, 37, 0x3c);
4967 rt2800_rfcsr_write(rt2x00dev, 38, 0x5f);
4968 rt2800_rfcsr_write(rt2x00dev, 39, 0xc5);
4969 rt2800_rfcsr_write(rt2x00dev, 40, 0x33);
4970 rt2800_rfcsr_write(rt2x00dev, 41, 0x5b);
4971 rt2800_rfcsr_write(rt2x00dev, 42, 0x5b);
4972 rt2800_rfcsr_write(rt2x00dev, 43, 0xdb);
4973 rt2800_rfcsr_write(rt2x00dev, 44, 0xdb);
4974 rt2800_rfcsr_write(rt2x00dev, 45, 0xdb);
4975 rt2800_rfcsr_write(rt2x00dev, 46, 0xdd);
4976 rt2800_rfcsr_write(rt2x00dev, 47, 0x0d);
4977 rt2800_rfcsr_write(rt2x00dev, 48, 0x14);
4978 rt2800_rfcsr_write(rt2x00dev, 49, 0x00);
4979 rt2800_rfcsr_write(rt2x00dev, 50, 0x2d);
4980 rt2800_rfcsr_write(rt2x00dev, 51, 0x7f);
4981 rt2800_rfcsr_write(rt2x00dev, 52, 0x00);
4982 rt2800_rfcsr_write(rt2x00dev, 53, 0x52);
4983 rt2800_rfcsr_write(rt2x00dev, 54, 0x1b);
4984 rt2800_rfcsr_write(rt2x00dev, 55, 0x7f);
4985 rt2800_rfcsr_write(rt2x00dev, 56, 0x00);
4986 rt2800_rfcsr_write(rt2x00dev, 57, 0x52);
4987 rt2800_rfcsr_write(rt2x00dev, 58, 0x1b);
4988 rt2800_rfcsr_write(rt2x00dev, 59, 0x00);
4989 rt2800_rfcsr_write(rt2x00dev, 60, 0x00);
4990 rt2800_rfcsr_write(rt2x00dev, 61, 0x00);
4991 rt2800_rfcsr_write(rt2x00dev, 62, 0x00);
4992 rt2800_rfcsr_write(rt2x00dev, 63, 0x00);
4994 rt2800_rx_filter_calibration(rt2x00dev);
4995 rt2800_led_open_drain_enable(rt2x00dev);
4996 rt2800_normal_mode_setup_3xxx(rt2x00dev);
4999 static void rt2800_init_rfcsr_3390(struct rt2x00_dev *rt2x00dev)
5001 u32 reg;
5003 rt2800_rf_init_calibration(rt2x00dev, 30);
5005 rt2800_rfcsr_write(rt2x00dev, 0, 0xa0);
5006 rt2800_rfcsr_write(rt2x00dev, 1, 0xe1);
5007 rt2800_rfcsr_write(rt2x00dev, 2, 0xf1);
5008 rt2800_rfcsr_write(rt2x00dev, 3, 0x62);
5009 rt2800_rfcsr_write(rt2x00dev, 4, 0x40);
5010 rt2800_rfcsr_write(rt2x00dev, 5, 0x8b);
5011 rt2800_rfcsr_write(rt2x00dev, 6, 0x42);
5012 rt2800_rfcsr_write(rt2x00dev, 7, 0x34);
5013 rt2800_rfcsr_write(rt2x00dev, 8, 0x00);
5014 rt2800_rfcsr_write(rt2x00dev, 9, 0xc0);
5015 rt2800_rfcsr_write(rt2x00dev, 10, 0x61);
5016 rt2800_rfcsr_write(rt2x00dev, 11, 0x21);
5017 rt2800_rfcsr_write(rt2x00dev, 12, 0x3b);
5018 rt2800_rfcsr_write(rt2x00dev, 13, 0xe0);
5019 rt2800_rfcsr_write(rt2x00dev, 14, 0x90);
5020 rt2800_rfcsr_write(rt2x00dev, 15, 0x53);
5021 rt2800_rfcsr_write(rt2x00dev, 16, 0xe0);
5022 rt2800_rfcsr_write(rt2x00dev, 17, 0x94);
5023 rt2800_rfcsr_write(rt2x00dev, 18, 0x5c);
5024 rt2800_rfcsr_write(rt2x00dev, 19, 0x4a);
5025 rt2800_rfcsr_write(rt2x00dev, 20, 0xb2);
5026 rt2800_rfcsr_write(rt2x00dev, 21, 0xf6);
5027 rt2800_rfcsr_write(rt2x00dev, 22, 0x00);
5028 rt2800_rfcsr_write(rt2x00dev, 23, 0x14);
5029 rt2800_rfcsr_write(rt2x00dev, 24, 0x08);
5030 rt2800_rfcsr_write(rt2x00dev, 25, 0x3d);
5031 rt2800_rfcsr_write(rt2x00dev, 26, 0x85);
5032 rt2800_rfcsr_write(rt2x00dev, 27, 0x00);
5033 rt2800_rfcsr_write(rt2x00dev, 28, 0x41);
5034 rt2800_rfcsr_write(rt2x00dev, 29, 0x8f);
5035 rt2800_rfcsr_write(rt2x00dev, 30, 0x20);
5036 rt2800_rfcsr_write(rt2x00dev, 31, 0x0f);
5038 rt2800_register_read(rt2x00dev, GPIO_SWITCH, &reg);
5039 rt2x00_set_field32(&reg, GPIO_SWITCH_5, 0);
5040 rt2800_register_write(rt2x00dev, GPIO_SWITCH, reg);
5042 rt2800_rx_filter_calibration(rt2x00dev);
5044 if (rt2x00_rt_rev_lt(rt2x00dev, RT3390, REV_RT3390E))
5045 rt2800_rfcsr_write(rt2x00dev, 27, 0x03);
5047 rt2800_led_open_drain_enable(rt2x00dev);
5048 rt2800_normal_mode_setup_3xxx(rt2x00dev);
5051 static void rt2800_init_rfcsr_3572(struct rt2x00_dev *rt2x00dev)
5053 u8 rfcsr;
5054 u32 reg;
5056 rt2800_rf_init_calibration(rt2x00dev, 30);
5058 rt2800_rfcsr_write(rt2x00dev, 0, 0x70);
5059 rt2800_rfcsr_write(rt2x00dev, 1, 0x81);
5060 rt2800_rfcsr_write(rt2x00dev, 2, 0xf1);
5061 rt2800_rfcsr_write(rt2x00dev, 3, 0x02);
5062 rt2800_rfcsr_write(rt2x00dev, 4, 0x4c);
5063 rt2800_rfcsr_write(rt2x00dev, 5, 0x05);
5064 rt2800_rfcsr_write(rt2x00dev, 6, 0x4a);
5065 rt2800_rfcsr_write(rt2x00dev, 7, 0xd8);
5066 rt2800_rfcsr_write(rt2x00dev, 9, 0xc3);
5067 rt2800_rfcsr_write(rt2x00dev, 10, 0xf1);
5068 rt2800_rfcsr_write(rt2x00dev, 11, 0xb9);
5069 rt2800_rfcsr_write(rt2x00dev, 12, 0x70);
5070 rt2800_rfcsr_write(rt2x00dev, 13, 0x65);
5071 rt2800_rfcsr_write(rt2x00dev, 14, 0xa0);
5072 rt2800_rfcsr_write(rt2x00dev, 15, 0x53);
5073 rt2800_rfcsr_write(rt2x00dev, 16, 0x4c);
5074 rt2800_rfcsr_write(rt2x00dev, 17, 0x23);
5075 rt2800_rfcsr_write(rt2x00dev, 18, 0xac);
5076 rt2800_rfcsr_write(rt2x00dev, 19, 0x93);
5077 rt2800_rfcsr_write(rt2x00dev, 20, 0xb3);
5078 rt2800_rfcsr_write(rt2x00dev, 21, 0xd0);
5079 rt2800_rfcsr_write(rt2x00dev, 22, 0x00);
5080 rt2800_rfcsr_write(rt2x00dev, 23, 0x3c);
5081 rt2800_rfcsr_write(rt2x00dev, 24, 0x16);
5082 rt2800_rfcsr_write(rt2x00dev, 25, 0x15);
5083 rt2800_rfcsr_write(rt2x00dev, 26, 0x85);
5084 rt2800_rfcsr_write(rt2x00dev, 27, 0x00);
5085 rt2800_rfcsr_write(rt2x00dev, 28, 0x00);
5086 rt2800_rfcsr_write(rt2x00dev, 29, 0x9b);
5087 rt2800_rfcsr_write(rt2x00dev, 30, 0x09);
5088 rt2800_rfcsr_write(rt2x00dev, 31, 0x10);
5090 rt2800_rfcsr_read(rt2x00dev, 6, &rfcsr);
5091 rt2x00_set_field8(&rfcsr, RFCSR6_R2, 1);
5092 rt2800_rfcsr_write(rt2x00dev, 6, rfcsr);
5094 rt2800_register_read(rt2x00dev, LDO_CFG0, &reg);
5095 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 3);
5096 rt2x00_set_field32(&reg, LDO_CFG0_BGSEL, 1);
5097 rt2800_register_write(rt2x00dev, LDO_CFG0, reg);
5098 msleep(1);
5099 rt2800_register_read(rt2x00dev, LDO_CFG0, &reg);
5100 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 0);
5101 rt2x00_set_field32(&reg, LDO_CFG0_BGSEL, 1);
5102 rt2800_register_write(rt2x00dev, LDO_CFG0, reg);
5104 rt2800_rx_filter_calibration(rt2x00dev);
5105 rt2800_led_open_drain_enable(rt2x00dev);
5106 rt2800_normal_mode_setup_3xxx(rt2x00dev);
5109 static void rt2800_init_rfcsr_5390(struct rt2x00_dev *rt2x00dev)
5111 rt2800_rf_init_calibration(rt2x00dev, 2);
5113 rt2800_rfcsr_write(rt2x00dev, 1, 0x0f);
5114 rt2800_rfcsr_write(rt2x00dev, 2, 0x80);
5115 rt2800_rfcsr_write(rt2x00dev, 3, 0x88);
5116 rt2800_rfcsr_write(rt2x00dev, 5, 0x10);
5117 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
5118 rt2800_rfcsr_write(rt2x00dev, 6, 0xe0);
5119 else
5120 rt2800_rfcsr_write(rt2x00dev, 6, 0xa0);
5121 rt2800_rfcsr_write(rt2x00dev, 7, 0x00);
5122 rt2800_rfcsr_write(rt2x00dev, 10, 0x53);
5123 rt2800_rfcsr_write(rt2x00dev, 11, 0x4a);
5124 rt2800_rfcsr_write(rt2x00dev, 12, 0xc6);
5125 rt2800_rfcsr_write(rt2x00dev, 13, 0x9f);
5126 rt2800_rfcsr_write(rt2x00dev, 14, 0x00);
5127 rt2800_rfcsr_write(rt2x00dev, 15, 0x00);
5128 rt2800_rfcsr_write(rt2x00dev, 16, 0x00);
5129 rt2800_rfcsr_write(rt2x00dev, 18, 0x03);
5130 rt2800_rfcsr_write(rt2x00dev, 19, 0x00);
5132 rt2800_rfcsr_write(rt2x00dev, 20, 0x00);
5133 rt2800_rfcsr_write(rt2x00dev, 21, 0x00);
5134 rt2800_rfcsr_write(rt2x00dev, 22, 0x20);
5135 rt2800_rfcsr_write(rt2x00dev, 23, 0x00);
5136 rt2800_rfcsr_write(rt2x00dev, 24, 0x00);
5137 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
5138 rt2800_rfcsr_write(rt2x00dev, 25, 0x80);
5139 else
5140 rt2800_rfcsr_write(rt2x00dev, 25, 0xc0);
5141 rt2800_rfcsr_write(rt2x00dev, 26, 0x00);
5142 rt2800_rfcsr_write(rt2x00dev, 27, 0x09);
5143 rt2800_rfcsr_write(rt2x00dev, 28, 0x00);
5144 rt2800_rfcsr_write(rt2x00dev, 29, 0x10);
5146 rt2800_rfcsr_write(rt2x00dev, 30, 0x00);
5147 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
5148 rt2800_rfcsr_write(rt2x00dev, 32, 0x80);
5149 rt2800_rfcsr_write(rt2x00dev, 33, 0x00);
5150 rt2800_rfcsr_write(rt2x00dev, 34, 0x07);
5151 rt2800_rfcsr_write(rt2x00dev, 35, 0x12);
5152 rt2800_rfcsr_write(rt2x00dev, 36, 0x00);
5153 rt2800_rfcsr_write(rt2x00dev, 37, 0x08);
5154 rt2800_rfcsr_write(rt2x00dev, 38, 0x85);
5155 rt2800_rfcsr_write(rt2x00dev, 39, 0x1b);
5157 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
5158 rt2800_rfcsr_write(rt2x00dev, 40, 0x0b);
5159 else
5160 rt2800_rfcsr_write(rt2x00dev, 40, 0x4b);
5161 rt2800_rfcsr_write(rt2x00dev, 41, 0xbb);
5162 rt2800_rfcsr_write(rt2x00dev, 42, 0xd2);
5163 rt2800_rfcsr_write(rt2x00dev, 43, 0x9a);
5164 rt2800_rfcsr_write(rt2x00dev, 44, 0x0e);
5165 rt2800_rfcsr_write(rt2x00dev, 45, 0xa2);
5166 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
5167 rt2800_rfcsr_write(rt2x00dev, 46, 0x73);
5168 else
5169 rt2800_rfcsr_write(rt2x00dev, 46, 0x7b);
5170 rt2800_rfcsr_write(rt2x00dev, 47, 0x00);
5171 rt2800_rfcsr_write(rt2x00dev, 48, 0x10);
5172 rt2800_rfcsr_write(rt2x00dev, 49, 0x94);
5174 rt2800_rfcsr_write(rt2x00dev, 52, 0x38);
5175 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
5176 rt2800_rfcsr_write(rt2x00dev, 53, 0x00);
5177 else
5178 rt2800_rfcsr_write(rt2x00dev, 53, 0x84);
5179 rt2800_rfcsr_write(rt2x00dev, 54, 0x78);
5180 rt2800_rfcsr_write(rt2x00dev, 55, 0x44);
5181 rt2800_rfcsr_write(rt2x00dev, 56, 0x22);
5182 rt2800_rfcsr_write(rt2x00dev, 57, 0x80);
5183 rt2800_rfcsr_write(rt2x00dev, 58, 0x7f);
5184 rt2800_rfcsr_write(rt2x00dev, 59, 0x63);
5186 rt2800_rfcsr_write(rt2x00dev, 60, 0x45);
5187 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
5188 rt2800_rfcsr_write(rt2x00dev, 61, 0xd1);
5189 else
5190 rt2800_rfcsr_write(rt2x00dev, 61, 0xdd);
5191 rt2800_rfcsr_write(rt2x00dev, 62, 0x00);
5192 rt2800_rfcsr_write(rt2x00dev, 63, 0x00);
5194 rt2800_normal_mode_setup_5xxx(rt2x00dev);
5196 rt2800_led_open_drain_enable(rt2x00dev);
5199 static void rt2800_init_rfcsr_5392(struct rt2x00_dev *rt2x00dev)
5201 rt2800_rf_init_calibration(rt2x00dev, 2);
5203 rt2800_rfcsr_write(rt2x00dev, 1, 0x17);
5204 rt2800_rfcsr_write(rt2x00dev, 2, 0x80);
5205 rt2800_rfcsr_write(rt2x00dev, 3, 0x88);
5206 rt2800_rfcsr_write(rt2x00dev, 5, 0x10);
5207 rt2800_rfcsr_write(rt2x00dev, 6, 0xe0);
5208 rt2800_rfcsr_write(rt2x00dev, 7, 0x00);
5209 rt2800_rfcsr_write(rt2x00dev, 10, 0x53);
5210 rt2800_rfcsr_write(rt2x00dev, 11, 0x4a);
5211 rt2800_rfcsr_write(rt2x00dev, 12, 0x46);
5212 rt2800_rfcsr_write(rt2x00dev, 13, 0x9f);
5213 rt2800_rfcsr_write(rt2x00dev, 14, 0x00);
5214 rt2800_rfcsr_write(rt2x00dev, 15, 0x00);
5215 rt2800_rfcsr_write(rt2x00dev, 16, 0x00);
5216 rt2800_rfcsr_write(rt2x00dev, 18, 0x03);
5217 rt2800_rfcsr_write(rt2x00dev, 19, 0x4d);
5218 rt2800_rfcsr_write(rt2x00dev, 20, 0x00);
5219 rt2800_rfcsr_write(rt2x00dev, 21, 0x8d);
5220 rt2800_rfcsr_write(rt2x00dev, 22, 0x20);
5221 rt2800_rfcsr_write(rt2x00dev, 23, 0x0b);
5222 rt2800_rfcsr_write(rt2x00dev, 24, 0x44);
5223 rt2800_rfcsr_write(rt2x00dev, 25, 0x80);
5224 rt2800_rfcsr_write(rt2x00dev, 26, 0x82);
5225 rt2800_rfcsr_write(rt2x00dev, 27, 0x09);
5226 rt2800_rfcsr_write(rt2x00dev, 28, 0x00);
5227 rt2800_rfcsr_write(rt2x00dev, 29, 0x10);
5228 rt2800_rfcsr_write(rt2x00dev, 30, 0x10);
5229 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
5230 rt2800_rfcsr_write(rt2x00dev, 32, 0x20);
5231 rt2800_rfcsr_write(rt2x00dev, 33, 0xC0);
5232 rt2800_rfcsr_write(rt2x00dev, 34, 0x07);
5233 rt2800_rfcsr_write(rt2x00dev, 35, 0x12);
5234 rt2800_rfcsr_write(rt2x00dev, 36, 0x00);
5235 rt2800_rfcsr_write(rt2x00dev, 37, 0x08);
5236 rt2800_rfcsr_write(rt2x00dev, 38, 0x89);
5237 rt2800_rfcsr_write(rt2x00dev, 39, 0x1b);
5238 rt2800_rfcsr_write(rt2x00dev, 40, 0x0f);
5239 rt2800_rfcsr_write(rt2x00dev, 41, 0xbb);
5240 rt2800_rfcsr_write(rt2x00dev, 42, 0xd5);
5241 rt2800_rfcsr_write(rt2x00dev, 43, 0x9b);
5242 rt2800_rfcsr_write(rt2x00dev, 44, 0x0e);
5243 rt2800_rfcsr_write(rt2x00dev, 45, 0xa2);
5244 rt2800_rfcsr_write(rt2x00dev, 46, 0x73);
5245 rt2800_rfcsr_write(rt2x00dev, 47, 0x0c);
5246 rt2800_rfcsr_write(rt2x00dev, 48, 0x10);
5247 rt2800_rfcsr_write(rt2x00dev, 49, 0x94);
5248 rt2800_rfcsr_write(rt2x00dev, 50, 0x94);
5249 rt2800_rfcsr_write(rt2x00dev, 51, 0x3a);
5250 rt2800_rfcsr_write(rt2x00dev, 52, 0x48);
5251 rt2800_rfcsr_write(rt2x00dev, 53, 0x44);
5252 rt2800_rfcsr_write(rt2x00dev, 54, 0x38);
5253 rt2800_rfcsr_write(rt2x00dev, 55, 0x43);
5254 rt2800_rfcsr_write(rt2x00dev, 56, 0xa1);
5255 rt2800_rfcsr_write(rt2x00dev, 57, 0x00);
5256 rt2800_rfcsr_write(rt2x00dev, 58, 0x39);
5257 rt2800_rfcsr_write(rt2x00dev, 59, 0x07);
5258 rt2800_rfcsr_write(rt2x00dev, 60, 0x45);
5259 rt2800_rfcsr_write(rt2x00dev, 61, 0x91);
5260 rt2800_rfcsr_write(rt2x00dev, 62, 0x39);
5261 rt2800_rfcsr_write(rt2x00dev, 63, 0x07);
5263 rt2800_normal_mode_setup_5xxx(rt2x00dev);
5265 rt2800_led_open_drain_enable(rt2x00dev);
5268 static void rt2800_init_rfcsr_5592(struct rt2x00_dev *rt2x00dev)
5270 rt2800_rf_init_calibration(rt2x00dev, 30);
5272 rt2800_rfcsr_write(rt2x00dev, 1, 0x3F);
5273 rt2800_rfcsr_write(rt2x00dev, 3, 0x08);
5274 rt2800_rfcsr_write(rt2x00dev, 3, 0x08);
5275 rt2800_rfcsr_write(rt2x00dev, 5, 0x10);
5276 rt2800_rfcsr_write(rt2x00dev, 6, 0xE4);
5277 rt2800_rfcsr_write(rt2x00dev, 7, 0x00);
5278 rt2800_rfcsr_write(rt2x00dev, 14, 0x00);
5279 rt2800_rfcsr_write(rt2x00dev, 15, 0x00);
5280 rt2800_rfcsr_write(rt2x00dev, 16, 0x00);
5281 rt2800_rfcsr_write(rt2x00dev, 18, 0x03);
5282 rt2800_rfcsr_write(rt2x00dev, 19, 0x4D);
5283 rt2800_rfcsr_write(rt2x00dev, 20, 0x10);
5284 rt2800_rfcsr_write(rt2x00dev, 21, 0x8D);
5285 rt2800_rfcsr_write(rt2x00dev, 26, 0x82);
5286 rt2800_rfcsr_write(rt2x00dev, 28, 0x00);
5287 rt2800_rfcsr_write(rt2x00dev, 29, 0x10);
5288 rt2800_rfcsr_write(rt2x00dev, 33, 0xC0);
5289 rt2800_rfcsr_write(rt2x00dev, 34, 0x07);
5290 rt2800_rfcsr_write(rt2x00dev, 35, 0x12);
5291 rt2800_rfcsr_write(rt2x00dev, 47, 0x0C);
5292 rt2800_rfcsr_write(rt2x00dev, 53, 0x22);
5293 rt2800_rfcsr_write(rt2x00dev, 63, 0x07);
5295 rt2800_rfcsr_write(rt2x00dev, 2, 0x80);
5296 msleep(1);
5298 rt2800_adjust_freq_offset(rt2x00dev);
5300 /* Enable DC filter */
5301 if (rt2x00_rt_rev_gte(rt2x00dev, RT5592, REV_RT5592C))
5302 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
5304 rt2800_normal_mode_setup_5xxx(rt2x00dev);
5306 if (rt2x00_rt_rev_lt(rt2x00dev, RT5592, REV_RT5592C))
5307 rt2800_rfcsr_write(rt2x00dev, 27, 0x03);
5309 rt2800_led_open_drain_enable(rt2x00dev);
5312 static void rt2800_init_rfcsr(struct rt2x00_dev *rt2x00dev)
5314 if (rt2800_is_305x_soc(rt2x00dev)) {
5315 rt2800_init_rfcsr_305x_soc(rt2x00dev);
5316 return;
5319 switch (rt2x00dev->chip.rt) {
5320 case RT3070:
5321 case RT3071:
5322 case RT3090:
5323 rt2800_init_rfcsr_30xx(rt2x00dev);
5324 break;
5325 case RT3290:
5326 rt2800_init_rfcsr_3290(rt2x00dev);
5327 break;
5328 case RT3352:
5329 rt2800_init_rfcsr_3352(rt2x00dev);
5330 break;
5331 case RT3390:
5332 rt2800_init_rfcsr_3390(rt2x00dev);
5333 break;
5334 case RT3572:
5335 rt2800_init_rfcsr_3572(rt2x00dev);
5336 break;
5337 case RT5390:
5338 rt2800_init_rfcsr_5390(rt2x00dev);
5339 break;
5340 case RT5392:
5341 rt2800_init_rfcsr_5392(rt2x00dev);
5342 break;
5343 case RT5592:
5344 rt2800_init_rfcsr_5592(rt2x00dev);
5345 break;
5349 int rt2800_enable_radio(struct rt2x00_dev *rt2x00dev)
5351 u32 reg;
5352 u16 word;
5355 * Initialize all registers.
5357 if (unlikely(rt2800_wait_wpdma_ready(rt2x00dev) ||
5358 rt2800_init_registers(rt2x00dev)))
5359 return -EIO;
5362 * Send signal to firmware during boot time.
5364 rt2800_register_write(rt2x00dev, H2M_BBP_AGENT, 0);
5365 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
5366 if (rt2x00_is_usb(rt2x00dev)) {
5367 rt2800_register_write(rt2x00dev, H2M_INT_SRC, 0);
5368 rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0, 0, 0);
5370 msleep(1);
5372 if (unlikely(rt2800_wait_bbp_rf_ready(rt2x00dev) ||
5373 rt2800_wait_bbp_ready(rt2x00dev)))
5374 return -EIO;
5376 rt2800_init_bbp(rt2x00dev);
5377 rt2800_init_rfcsr(rt2x00dev);
5379 if (rt2x00_is_usb(rt2x00dev) &&
5380 (rt2x00_rt(rt2x00dev, RT3070) ||
5381 rt2x00_rt(rt2x00dev, RT3071) ||
5382 rt2x00_rt(rt2x00dev, RT3572))) {
5383 udelay(200);
5384 rt2800_mcu_request(rt2x00dev, MCU_CURRENT, 0, 0, 0);
5385 udelay(10);
5389 * Enable RX.
5391 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
5392 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
5393 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 0);
5394 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
5396 udelay(50);
5398 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
5399 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 1);
5400 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 1);
5401 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_WP_DMA_BURST_SIZE, 2);
5402 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 1);
5403 rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
5405 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
5406 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
5407 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 1);
5408 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
5411 * Initialize LED control
5413 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED_AG_CONF, &word);
5414 rt2800_mcu_request(rt2x00dev, MCU_LED_AG_CONF, 0xff,
5415 word & 0xff, (word >> 8) & 0xff);
5417 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED_ACT_CONF, &word);
5418 rt2800_mcu_request(rt2x00dev, MCU_LED_ACT_CONF, 0xff,
5419 word & 0xff, (word >> 8) & 0xff);
5421 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED_POLARITY, &word);
5422 rt2800_mcu_request(rt2x00dev, MCU_LED_LED_POLARITY, 0xff,
5423 word & 0xff, (word >> 8) & 0xff);
5425 return 0;
5427 EXPORT_SYMBOL_GPL(rt2800_enable_radio);
5429 void rt2800_disable_radio(struct rt2x00_dev *rt2x00dev)
5431 u32 reg;
5433 rt2800_disable_wpdma(rt2x00dev);
5435 /* Wait for DMA, ignore error */
5436 rt2800_wait_wpdma_ready(rt2x00dev);
5438 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
5439 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 0);
5440 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 0);
5441 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
5443 EXPORT_SYMBOL_GPL(rt2800_disable_radio);
5445 int rt2800_efuse_detect(struct rt2x00_dev *rt2x00dev)
5447 u32 reg;
5448 u16 efuse_ctrl_reg;
5450 if (rt2x00_rt(rt2x00dev, RT3290))
5451 efuse_ctrl_reg = EFUSE_CTRL_3290;
5452 else
5453 efuse_ctrl_reg = EFUSE_CTRL;
5455 rt2800_register_read(rt2x00dev, efuse_ctrl_reg, &reg);
5456 return rt2x00_get_field32(reg, EFUSE_CTRL_PRESENT);
5458 EXPORT_SYMBOL_GPL(rt2800_efuse_detect);
5460 static void rt2800_efuse_read(struct rt2x00_dev *rt2x00dev, unsigned int i)
5462 u32 reg;
5463 u16 efuse_ctrl_reg;
5464 u16 efuse_data0_reg;
5465 u16 efuse_data1_reg;
5466 u16 efuse_data2_reg;
5467 u16 efuse_data3_reg;
5469 if (rt2x00_rt(rt2x00dev, RT3290)) {
5470 efuse_ctrl_reg = EFUSE_CTRL_3290;
5471 efuse_data0_reg = EFUSE_DATA0_3290;
5472 efuse_data1_reg = EFUSE_DATA1_3290;
5473 efuse_data2_reg = EFUSE_DATA2_3290;
5474 efuse_data3_reg = EFUSE_DATA3_3290;
5475 } else {
5476 efuse_ctrl_reg = EFUSE_CTRL;
5477 efuse_data0_reg = EFUSE_DATA0;
5478 efuse_data1_reg = EFUSE_DATA1;
5479 efuse_data2_reg = EFUSE_DATA2;
5480 efuse_data3_reg = EFUSE_DATA3;
5482 mutex_lock(&rt2x00dev->csr_mutex);
5484 rt2800_register_read_lock(rt2x00dev, efuse_ctrl_reg, &reg);
5485 rt2x00_set_field32(&reg, EFUSE_CTRL_ADDRESS_IN, i);
5486 rt2x00_set_field32(&reg, EFUSE_CTRL_MODE, 0);
5487 rt2x00_set_field32(&reg, EFUSE_CTRL_KICK, 1);
5488 rt2800_register_write_lock(rt2x00dev, efuse_ctrl_reg, reg);
5490 /* Wait until the EEPROM has been loaded */
5491 rt2800_regbusy_read(rt2x00dev, efuse_ctrl_reg, EFUSE_CTRL_KICK, &reg);
5492 /* Apparently the data is read from end to start */
5493 rt2800_register_read_lock(rt2x00dev, efuse_data3_reg, &reg);
5494 /* The returned value is in CPU order, but eeprom is le */
5495 *(u32 *)&rt2x00dev->eeprom[i] = cpu_to_le32(reg);
5496 rt2800_register_read_lock(rt2x00dev, efuse_data2_reg, &reg);
5497 *(u32 *)&rt2x00dev->eeprom[i + 2] = cpu_to_le32(reg);
5498 rt2800_register_read_lock(rt2x00dev, efuse_data1_reg, &reg);
5499 *(u32 *)&rt2x00dev->eeprom[i + 4] = cpu_to_le32(reg);
5500 rt2800_register_read_lock(rt2x00dev, efuse_data0_reg, &reg);
5501 *(u32 *)&rt2x00dev->eeprom[i + 6] = cpu_to_le32(reg);
5503 mutex_unlock(&rt2x00dev->csr_mutex);
5506 int rt2800_read_eeprom_efuse(struct rt2x00_dev *rt2x00dev)
5508 unsigned int i;
5510 for (i = 0; i < EEPROM_SIZE / sizeof(u16); i += 8)
5511 rt2800_efuse_read(rt2x00dev, i);
5513 return 0;
5515 EXPORT_SYMBOL_GPL(rt2800_read_eeprom_efuse);
5517 static int rt2800_validate_eeprom(struct rt2x00_dev *rt2x00dev)
5519 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
5520 u16 word;
5521 u8 *mac;
5522 u8 default_lna_gain;
5523 int retval;
5526 * Read the EEPROM.
5528 retval = rt2800_read_eeprom(rt2x00dev);
5529 if (retval)
5530 return retval;
5533 * Start validation of the data that has been read.
5535 mac = rt2x00_eeprom_addr(rt2x00dev, EEPROM_MAC_ADDR_0);
5536 if (!is_valid_ether_addr(mac)) {
5537 eth_random_addr(mac);
5538 rt2x00_eeprom_dbg(rt2x00dev, "MAC: %pM\n", mac);
5541 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &word);
5542 if (word == 0xffff) {
5543 rt2x00_set_field16(&word, EEPROM_NIC_CONF0_RXPATH, 2);
5544 rt2x00_set_field16(&word, EEPROM_NIC_CONF0_TXPATH, 1);
5545 rt2x00_set_field16(&word, EEPROM_NIC_CONF0_RF_TYPE, RF2820);
5546 rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC_CONF0, word);
5547 rt2x00_eeprom_dbg(rt2x00dev, "Antenna: 0x%04x\n", word);
5548 } else if (rt2x00_rt(rt2x00dev, RT2860) ||
5549 rt2x00_rt(rt2x00dev, RT2872)) {
5551 * There is a max of 2 RX streams for RT28x0 series
5553 if (rt2x00_get_field16(word, EEPROM_NIC_CONF0_RXPATH) > 2)
5554 rt2x00_set_field16(&word, EEPROM_NIC_CONF0_RXPATH, 2);
5555 rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC_CONF0, word);
5558 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &word);
5559 if (word == 0xffff) {
5560 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_HW_RADIO, 0);
5561 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_EXTERNAL_TX_ALC, 0);
5562 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_EXTERNAL_LNA_2G, 0);
5563 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_EXTERNAL_LNA_5G, 0);
5564 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_CARDBUS_ACCEL, 0);
5565 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BW40M_SB_2G, 0);
5566 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BW40M_SB_5G, 0);
5567 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_WPS_PBC, 0);
5568 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BW40M_2G, 0);
5569 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BW40M_5G, 0);
5570 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BROADBAND_EXT_LNA, 0);
5571 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_ANT_DIVERSITY, 0);
5572 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_INTERNAL_TX_ALC, 0);
5573 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BT_COEXIST, 0);
5574 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_DAC_TEST, 0);
5575 rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC_CONF1, word);
5576 rt2x00_eeprom_dbg(rt2x00dev, "NIC: 0x%04x\n", word);
5579 rt2x00_eeprom_read(rt2x00dev, EEPROM_FREQ, &word);
5580 if ((word & 0x00ff) == 0x00ff) {
5581 rt2x00_set_field16(&word, EEPROM_FREQ_OFFSET, 0);
5582 rt2x00_eeprom_write(rt2x00dev, EEPROM_FREQ, word);
5583 rt2x00_eeprom_dbg(rt2x00dev, "Freq: 0x%04x\n", word);
5585 if ((word & 0xff00) == 0xff00) {
5586 rt2x00_set_field16(&word, EEPROM_FREQ_LED_MODE,
5587 LED_MODE_TXRX_ACTIVITY);
5588 rt2x00_set_field16(&word, EEPROM_FREQ_LED_POLARITY, 0);
5589 rt2x00_eeprom_write(rt2x00dev, EEPROM_FREQ, word);
5590 rt2x00_eeprom_write(rt2x00dev, EEPROM_LED_AG_CONF, 0x5555);
5591 rt2x00_eeprom_write(rt2x00dev, EEPROM_LED_ACT_CONF, 0x2221);
5592 rt2x00_eeprom_write(rt2x00dev, EEPROM_LED_POLARITY, 0xa9f8);
5593 rt2x00_eeprom_dbg(rt2x00dev, "Led Mode: 0x%04x\n", word);
5597 * During the LNA validation we are going to use
5598 * lna0 as correct value. Note that EEPROM_LNA
5599 * is never validated.
5601 rt2x00_eeprom_read(rt2x00dev, EEPROM_LNA, &word);
5602 default_lna_gain = rt2x00_get_field16(word, EEPROM_LNA_A0);
5604 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_BG, &word);
5605 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_BG_OFFSET0)) > 10)
5606 rt2x00_set_field16(&word, EEPROM_RSSI_BG_OFFSET0, 0);
5607 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_BG_OFFSET1)) > 10)
5608 rt2x00_set_field16(&word, EEPROM_RSSI_BG_OFFSET1, 0);
5609 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_BG, word);
5611 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXMIXER_GAIN_BG, &word);
5612 if ((word & 0x00ff) != 0x00ff) {
5613 drv_data->txmixer_gain_24g =
5614 rt2x00_get_field16(word, EEPROM_TXMIXER_GAIN_BG_VAL);
5615 } else {
5616 drv_data->txmixer_gain_24g = 0;
5619 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_BG2, &word);
5620 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_BG2_OFFSET2)) > 10)
5621 rt2x00_set_field16(&word, EEPROM_RSSI_BG2_OFFSET2, 0);
5622 if (rt2x00_get_field16(word, EEPROM_RSSI_BG2_LNA_A1) == 0x00 ||
5623 rt2x00_get_field16(word, EEPROM_RSSI_BG2_LNA_A1) == 0xff)
5624 rt2x00_set_field16(&word, EEPROM_RSSI_BG2_LNA_A1,
5625 default_lna_gain);
5626 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_BG2, word);
5628 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXMIXER_GAIN_A, &word);
5629 if ((word & 0x00ff) != 0x00ff) {
5630 drv_data->txmixer_gain_5g =
5631 rt2x00_get_field16(word, EEPROM_TXMIXER_GAIN_A_VAL);
5632 } else {
5633 drv_data->txmixer_gain_5g = 0;
5636 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_A, &word);
5637 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_A_OFFSET0)) > 10)
5638 rt2x00_set_field16(&word, EEPROM_RSSI_A_OFFSET0, 0);
5639 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_A_OFFSET1)) > 10)
5640 rt2x00_set_field16(&word, EEPROM_RSSI_A_OFFSET1, 0);
5641 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_A, word);
5643 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_A2, &word);
5644 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_A2_OFFSET2)) > 10)
5645 rt2x00_set_field16(&word, EEPROM_RSSI_A2_OFFSET2, 0);
5646 if (rt2x00_get_field16(word, EEPROM_RSSI_A2_LNA_A2) == 0x00 ||
5647 rt2x00_get_field16(word, EEPROM_RSSI_A2_LNA_A2) == 0xff)
5648 rt2x00_set_field16(&word, EEPROM_RSSI_A2_LNA_A2,
5649 default_lna_gain);
5650 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_A2, word);
5652 return 0;
5655 static int rt2800_init_eeprom(struct rt2x00_dev *rt2x00dev)
5657 u16 value;
5658 u16 eeprom;
5659 u16 rf;
5662 * Read EEPROM word for configuration.
5664 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
5667 * Identify RF chipset by EEPROM value
5668 * RT28xx/RT30xx: defined in "EEPROM_NIC_CONF0_RF_TYPE" field
5669 * RT53xx: defined in "EEPROM_CHIP_ID" field
5671 if (rt2x00_rt(rt2x00dev, RT3290) ||
5672 rt2x00_rt(rt2x00dev, RT5390) ||
5673 rt2x00_rt(rt2x00dev, RT5392))
5674 rt2x00_eeprom_read(rt2x00dev, EEPROM_CHIP_ID, &rf);
5675 else
5676 rf = rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RF_TYPE);
5678 switch (rf) {
5679 case RF2820:
5680 case RF2850:
5681 case RF2720:
5682 case RF2750:
5683 case RF3020:
5684 case RF2020:
5685 case RF3021:
5686 case RF3022:
5687 case RF3052:
5688 case RF3290:
5689 case RF3320:
5690 case RF3322:
5691 case RF5360:
5692 case RF5370:
5693 case RF5372:
5694 case RF5390:
5695 case RF5392:
5696 case RF5592:
5697 break;
5698 default:
5699 rt2x00_err(rt2x00dev, "Invalid RF chipset 0x%04x detected\n",
5700 rf);
5701 return -ENODEV;
5704 rt2x00_set_rf(rt2x00dev, rf);
5707 * Identify default antenna configuration.
5709 rt2x00dev->default_ant.tx_chain_num =
5710 rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH);
5711 rt2x00dev->default_ant.rx_chain_num =
5712 rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH);
5714 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
5716 if (rt2x00_rt(rt2x00dev, RT3070) ||
5717 rt2x00_rt(rt2x00dev, RT3090) ||
5718 rt2x00_rt(rt2x00dev, RT3352) ||
5719 rt2x00_rt(rt2x00dev, RT3390)) {
5720 value = rt2x00_get_field16(eeprom,
5721 EEPROM_NIC_CONF1_ANT_DIVERSITY);
5722 switch (value) {
5723 case 0:
5724 case 1:
5725 case 2:
5726 rt2x00dev->default_ant.tx = ANTENNA_A;
5727 rt2x00dev->default_ant.rx = ANTENNA_A;
5728 break;
5729 case 3:
5730 rt2x00dev->default_ant.tx = ANTENNA_A;
5731 rt2x00dev->default_ant.rx = ANTENNA_B;
5732 break;
5734 } else {
5735 rt2x00dev->default_ant.tx = ANTENNA_A;
5736 rt2x00dev->default_ant.rx = ANTENNA_A;
5739 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390R)) {
5740 rt2x00dev->default_ant.tx = ANTENNA_HW_DIVERSITY; /* Unused */
5741 rt2x00dev->default_ant.rx = ANTENNA_HW_DIVERSITY; /* Unused */
5745 * Determine external LNA informations.
5747 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_EXTERNAL_LNA_5G))
5748 __set_bit(CAPABILITY_EXTERNAL_LNA_A, &rt2x00dev->cap_flags);
5749 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_EXTERNAL_LNA_2G))
5750 __set_bit(CAPABILITY_EXTERNAL_LNA_BG, &rt2x00dev->cap_flags);
5753 * Detect if this device has an hardware controlled radio.
5755 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_HW_RADIO))
5756 __set_bit(CAPABILITY_HW_BUTTON, &rt2x00dev->cap_flags);
5759 * Detect if this device has Bluetooth co-existence.
5761 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_BT_COEXIST))
5762 __set_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags);
5765 * Read frequency offset and RF programming sequence.
5767 rt2x00_eeprom_read(rt2x00dev, EEPROM_FREQ, &eeprom);
5768 rt2x00dev->freq_offset = rt2x00_get_field16(eeprom, EEPROM_FREQ_OFFSET);
5771 * Store led settings, for correct led behaviour.
5773 #ifdef CONFIG_RT2X00_LIB_LEDS
5774 rt2800_init_led(rt2x00dev, &rt2x00dev->led_radio, LED_TYPE_RADIO);
5775 rt2800_init_led(rt2x00dev, &rt2x00dev->led_assoc, LED_TYPE_ASSOC);
5776 rt2800_init_led(rt2x00dev, &rt2x00dev->led_qual, LED_TYPE_QUALITY);
5778 rt2x00dev->led_mcu_reg = eeprom;
5779 #endif /* CONFIG_RT2X00_LIB_LEDS */
5782 * Check if support EIRP tx power limit feature.
5784 rt2x00_eeprom_read(rt2x00dev, EEPROM_EIRP_MAX_TX_POWER, &eeprom);
5786 if (rt2x00_get_field16(eeprom, EEPROM_EIRP_MAX_TX_POWER_2GHZ) <
5787 EIRP_MAX_TX_POWER_LIMIT)
5788 __set_bit(CAPABILITY_POWER_LIMIT, &rt2x00dev->cap_flags);
5790 return 0;
5794 * RF value list for rt28xx
5795 * Supports: 2.4 GHz (all) & 5.2 GHz (RF2850 & RF2750)
5797 static const struct rf_channel rf_vals[] = {
5798 { 1, 0x18402ecc, 0x184c0786, 0x1816b455, 0x1800510b },
5799 { 2, 0x18402ecc, 0x184c0786, 0x18168a55, 0x1800519f },
5800 { 3, 0x18402ecc, 0x184c078a, 0x18168a55, 0x1800518b },
5801 { 4, 0x18402ecc, 0x184c078a, 0x18168a55, 0x1800519f },
5802 { 5, 0x18402ecc, 0x184c078e, 0x18168a55, 0x1800518b },
5803 { 6, 0x18402ecc, 0x184c078e, 0x18168a55, 0x1800519f },
5804 { 7, 0x18402ecc, 0x184c0792, 0x18168a55, 0x1800518b },
5805 { 8, 0x18402ecc, 0x184c0792, 0x18168a55, 0x1800519f },
5806 { 9, 0x18402ecc, 0x184c0796, 0x18168a55, 0x1800518b },
5807 { 10, 0x18402ecc, 0x184c0796, 0x18168a55, 0x1800519f },
5808 { 11, 0x18402ecc, 0x184c079a, 0x18168a55, 0x1800518b },
5809 { 12, 0x18402ecc, 0x184c079a, 0x18168a55, 0x1800519f },
5810 { 13, 0x18402ecc, 0x184c079e, 0x18168a55, 0x1800518b },
5811 { 14, 0x18402ecc, 0x184c07a2, 0x18168a55, 0x18005193 },
5813 /* 802.11 UNI / HyperLan 2 */
5814 { 36, 0x18402ecc, 0x184c099a, 0x18158a55, 0x180ed1a3 },
5815 { 38, 0x18402ecc, 0x184c099e, 0x18158a55, 0x180ed193 },
5816 { 40, 0x18402ec8, 0x184c0682, 0x18158a55, 0x180ed183 },
5817 { 44, 0x18402ec8, 0x184c0682, 0x18158a55, 0x180ed1a3 },
5818 { 46, 0x18402ec8, 0x184c0686, 0x18158a55, 0x180ed18b },
5819 { 48, 0x18402ec8, 0x184c0686, 0x18158a55, 0x180ed19b },
5820 { 52, 0x18402ec8, 0x184c068a, 0x18158a55, 0x180ed193 },
5821 { 54, 0x18402ec8, 0x184c068a, 0x18158a55, 0x180ed1a3 },
5822 { 56, 0x18402ec8, 0x184c068e, 0x18158a55, 0x180ed18b },
5823 { 60, 0x18402ec8, 0x184c0692, 0x18158a55, 0x180ed183 },
5824 { 62, 0x18402ec8, 0x184c0692, 0x18158a55, 0x180ed193 },
5825 { 64, 0x18402ec8, 0x184c0692, 0x18158a55, 0x180ed1a3 },
5827 /* 802.11 HyperLan 2 */
5828 { 100, 0x18402ec8, 0x184c06b2, 0x18178a55, 0x180ed783 },
5829 { 102, 0x18402ec8, 0x184c06b2, 0x18578a55, 0x180ed793 },
5830 { 104, 0x18402ec8, 0x185c06b2, 0x18578a55, 0x180ed1a3 },
5831 { 108, 0x18402ecc, 0x185c0a32, 0x18578a55, 0x180ed193 },
5832 { 110, 0x18402ecc, 0x184c0a36, 0x18178a55, 0x180ed183 },
5833 { 112, 0x18402ecc, 0x184c0a36, 0x18178a55, 0x180ed19b },
5834 { 116, 0x18402ecc, 0x184c0a3a, 0x18178a55, 0x180ed1a3 },
5835 { 118, 0x18402ecc, 0x184c0a3e, 0x18178a55, 0x180ed193 },
5836 { 120, 0x18402ec4, 0x184c0382, 0x18178a55, 0x180ed183 },
5837 { 124, 0x18402ec4, 0x184c0382, 0x18178a55, 0x180ed193 },
5838 { 126, 0x18402ec4, 0x184c0382, 0x18178a55, 0x180ed15b },
5839 { 128, 0x18402ec4, 0x184c0382, 0x18178a55, 0x180ed1a3 },
5840 { 132, 0x18402ec4, 0x184c0386, 0x18178a55, 0x180ed18b },
5841 { 134, 0x18402ec4, 0x184c0386, 0x18178a55, 0x180ed193 },
5842 { 136, 0x18402ec4, 0x184c0386, 0x18178a55, 0x180ed19b },
5843 { 140, 0x18402ec4, 0x184c038a, 0x18178a55, 0x180ed183 },
5845 /* 802.11 UNII */
5846 { 149, 0x18402ec4, 0x184c038a, 0x18178a55, 0x180ed1a7 },
5847 { 151, 0x18402ec4, 0x184c038e, 0x18178a55, 0x180ed187 },
5848 { 153, 0x18402ec4, 0x184c038e, 0x18178a55, 0x180ed18f },
5849 { 157, 0x18402ec4, 0x184c038e, 0x18178a55, 0x180ed19f },
5850 { 159, 0x18402ec4, 0x184c038e, 0x18178a55, 0x180ed1a7 },
5851 { 161, 0x18402ec4, 0x184c0392, 0x18178a55, 0x180ed187 },
5852 { 165, 0x18402ec4, 0x184c0392, 0x18178a55, 0x180ed197 },
5853 { 167, 0x18402ec4, 0x184c03d2, 0x18179855, 0x1815531f },
5854 { 169, 0x18402ec4, 0x184c03d2, 0x18179855, 0x18155327 },
5855 { 171, 0x18402ec4, 0x184c03d6, 0x18179855, 0x18155307 },
5856 { 173, 0x18402ec4, 0x184c03d6, 0x18179855, 0x1815530f },
5858 /* 802.11 Japan */
5859 { 184, 0x15002ccc, 0x1500491e, 0x1509be55, 0x150c0a0b },
5860 { 188, 0x15002ccc, 0x15004922, 0x1509be55, 0x150c0a13 },
5861 { 192, 0x15002ccc, 0x15004926, 0x1509be55, 0x150c0a1b },
5862 { 196, 0x15002ccc, 0x1500492a, 0x1509be55, 0x150c0a23 },
5863 { 208, 0x15002ccc, 0x1500493a, 0x1509be55, 0x150c0a13 },
5864 { 212, 0x15002ccc, 0x1500493e, 0x1509be55, 0x150c0a1b },
5865 { 216, 0x15002ccc, 0x15004982, 0x1509be55, 0x150c0a23 },
5869 * RF value list for rt3xxx
5870 * Supports: 2.4 GHz (all) & 5.2 GHz (RF3052)
5872 static const struct rf_channel rf_vals_3x[] = {
5873 {1, 241, 2, 2 },
5874 {2, 241, 2, 7 },
5875 {3, 242, 2, 2 },
5876 {4, 242, 2, 7 },
5877 {5, 243, 2, 2 },
5878 {6, 243, 2, 7 },
5879 {7, 244, 2, 2 },
5880 {8, 244, 2, 7 },
5881 {9, 245, 2, 2 },
5882 {10, 245, 2, 7 },
5883 {11, 246, 2, 2 },
5884 {12, 246, 2, 7 },
5885 {13, 247, 2, 2 },
5886 {14, 248, 2, 4 },
5888 /* 802.11 UNI / HyperLan 2 */
5889 {36, 0x56, 0, 4},
5890 {38, 0x56, 0, 6},
5891 {40, 0x56, 0, 8},
5892 {44, 0x57, 0, 0},
5893 {46, 0x57, 0, 2},
5894 {48, 0x57, 0, 4},
5895 {52, 0x57, 0, 8},
5896 {54, 0x57, 0, 10},
5897 {56, 0x58, 0, 0},
5898 {60, 0x58, 0, 4},
5899 {62, 0x58, 0, 6},
5900 {64, 0x58, 0, 8},
5902 /* 802.11 HyperLan 2 */
5903 {100, 0x5b, 0, 8},
5904 {102, 0x5b, 0, 10},
5905 {104, 0x5c, 0, 0},
5906 {108, 0x5c, 0, 4},
5907 {110, 0x5c, 0, 6},
5908 {112, 0x5c, 0, 8},
5909 {116, 0x5d, 0, 0},
5910 {118, 0x5d, 0, 2},
5911 {120, 0x5d, 0, 4},
5912 {124, 0x5d, 0, 8},
5913 {126, 0x5d, 0, 10},
5914 {128, 0x5e, 0, 0},
5915 {132, 0x5e, 0, 4},
5916 {134, 0x5e, 0, 6},
5917 {136, 0x5e, 0, 8},
5918 {140, 0x5f, 0, 0},
5920 /* 802.11 UNII */
5921 {149, 0x5f, 0, 9},
5922 {151, 0x5f, 0, 11},
5923 {153, 0x60, 0, 1},
5924 {157, 0x60, 0, 5},
5925 {159, 0x60, 0, 7},
5926 {161, 0x60, 0, 9},
5927 {165, 0x61, 0, 1},
5928 {167, 0x61, 0, 3},
5929 {169, 0x61, 0, 5},
5930 {171, 0x61, 0, 7},
5931 {173, 0x61, 0, 9},
5934 static const struct rf_channel rf_vals_5592_xtal20[] = {
5935 /* Channel, N, K, mod, R */
5936 {1, 482, 4, 10, 3},
5937 {2, 483, 4, 10, 3},
5938 {3, 484, 4, 10, 3},
5939 {4, 485, 4, 10, 3},
5940 {5, 486, 4, 10, 3},
5941 {6, 487, 4, 10, 3},
5942 {7, 488, 4, 10, 3},
5943 {8, 489, 4, 10, 3},
5944 {9, 490, 4, 10, 3},
5945 {10, 491, 4, 10, 3},
5946 {11, 492, 4, 10, 3},
5947 {12, 493, 4, 10, 3},
5948 {13, 494, 4, 10, 3},
5949 {14, 496, 8, 10, 3},
5950 {36, 172, 8, 12, 1},
5951 {38, 173, 0, 12, 1},
5952 {40, 173, 4, 12, 1},
5953 {42, 173, 8, 12, 1},
5954 {44, 174, 0, 12, 1},
5955 {46, 174, 4, 12, 1},
5956 {48, 174, 8, 12, 1},
5957 {50, 175, 0, 12, 1},
5958 {52, 175, 4, 12, 1},
5959 {54, 175, 8, 12, 1},
5960 {56, 176, 0, 12, 1},
5961 {58, 176, 4, 12, 1},
5962 {60, 176, 8, 12, 1},
5963 {62, 177, 0, 12, 1},
5964 {64, 177, 4, 12, 1},
5965 {100, 183, 4, 12, 1},
5966 {102, 183, 8, 12, 1},
5967 {104, 184, 0, 12, 1},
5968 {106, 184, 4, 12, 1},
5969 {108, 184, 8, 12, 1},
5970 {110, 185, 0, 12, 1},
5971 {112, 185, 4, 12, 1},
5972 {114, 185, 8, 12, 1},
5973 {116, 186, 0, 12, 1},
5974 {118, 186, 4, 12, 1},
5975 {120, 186, 8, 12, 1},
5976 {122, 187, 0, 12, 1},
5977 {124, 187, 4, 12, 1},
5978 {126, 187, 8, 12, 1},
5979 {128, 188, 0, 12, 1},
5980 {130, 188, 4, 12, 1},
5981 {132, 188, 8, 12, 1},
5982 {134, 189, 0, 12, 1},
5983 {136, 189, 4, 12, 1},
5984 {138, 189, 8, 12, 1},
5985 {140, 190, 0, 12, 1},
5986 {149, 191, 6, 12, 1},
5987 {151, 191, 10, 12, 1},
5988 {153, 192, 2, 12, 1},
5989 {155, 192, 6, 12, 1},
5990 {157, 192, 10, 12, 1},
5991 {159, 193, 2, 12, 1},
5992 {161, 193, 6, 12, 1},
5993 {165, 194, 2, 12, 1},
5994 {184, 164, 0, 12, 1},
5995 {188, 164, 4, 12, 1},
5996 {192, 165, 8, 12, 1},
5997 {196, 166, 0, 12, 1},
6000 static const struct rf_channel rf_vals_5592_xtal40[] = {
6001 /* Channel, N, K, mod, R */
6002 {1, 241, 2, 10, 3},
6003 {2, 241, 7, 10, 3},
6004 {3, 242, 2, 10, 3},
6005 {4, 242, 7, 10, 3},
6006 {5, 243, 2, 10, 3},
6007 {6, 243, 7, 10, 3},
6008 {7, 244, 2, 10, 3},
6009 {8, 244, 7, 10, 3},
6010 {9, 245, 2, 10, 3},
6011 {10, 245, 7, 10, 3},
6012 {11, 246, 2, 10, 3},
6013 {12, 246, 7, 10, 3},
6014 {13, 247, 2, 10, 3},
6015 {14, 248, 4, 10, 3},
6016 {36, 86, 4, 12, 1},
6017 {38, 86, 6, 12, 1},
6018 {40, 86, 8, 12, 1},
6019 {42, 86, 10, 12, 1},
6020 {44, 87, 0, 12, 1},
6021 {46, 87, 2, 12, 1},
6022 {48, 87, 4, 12, 1},
6023 {50, 87, 6, 12, 1},
6024 {52, 87, 8, 12, 1},
6025 {54, 87, 10, 12, 1},
6026 {56, 88, 0, 12, 1},
6027 {58, 88, 2, 12, 1},
6028 {60, 88, 4, 12, 1},
6029 {62, 88, 6, 12, 1},
6030 {64, 88, 8, 12, 1},
6031 {100, 91, 8, 12, 1},
6032 {102, 91, 10, 12, 1},
6033 {104, 92, 0, 12, 1},
6034 {106, 92, 2, 12, 1},
6035 {108, 92, 4, 12, 1},
6036 {110, 92, 6, 12, 1},
6037 {112, 92, 8, 12, 1},
6038 {114, 92, 10, 12, 1},
6039 {116, 93, 0, 12, 1},
6040 {118, 93, 2, 12, 1},
6041 {120, 93, 4, 12, 1},
6042 {122, 93, 6, 12, 1},
6043 {124, 93, 8, 12, 1},
6044 {126, 93, 10, 12, 1},
6045 {128, 94, 0, 12, 1},
6046 {130, 94, 2, 12, 1},
6047 {132, 94, 4, 12, 1},
6048 {134, 94, 6, 12, 1},
6049 {136, 94, 8, 12, 1},
6050 {138, 94, 10, 12, 1},
6051 {140, 95, 0, 12, 1},
6052 {149, 95, 9, 12, 1},
6053 {151, 95, 11, 12, 1},
6054 {153, 96, 1, 12, 1},
6055 {155, 96, 3, 12, 1},
6056 {157, 96, 5, 12, 1},
6057 {159, 96, 7, 12, 1},
6058 {161, 96, 9, 12, 1},
6059 {165, 97, 1, 12, 1},
6060 {184, 82, 0, 12, 1},
6061 {188, 82, 4, 12, 1},
6062 {192, 82, 8, 12, 1},
6063 {196, 83, 0, 12, 1},
6066 static int rt2800_probe_hw_mode(struct rt2x00_dev *rt2x00dev)
6068 struct hw_mode_spec *spec = &rt2x00dev->spec;
6069 struct channel_info *info;
6070 char *default_power1;
6071 char *default_power2;
6072 unsigned int i;
6073 u16 eeprom;
6074 u32 reg;
6077 * Disable powersaving as default on PCI devices.
6079 if (rt2x00_is_pci(rt2x00dev) || rt2x00_is_soc(rt2x00dev))
6080 rt2x00dev->hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
6083 * Initialize all hw fields.
6085 rt2x00dev->hw->flags =
6086 IEEE80211_HW_SIGNAL_DBM |
6087 IEEE80211_HW_SUPPORTS_PS |
6088 IEEE80211_HW_PS_NULLFUNC_STACK |
6089 IEEE80211_HW_AMPDU_AGGREGATION |
6090 IEEE80211_HW_REPORTS_TX_ACK_STATUS;
6093 * Don't set IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING for USB devices
6094 * unless we are capable of sending the buffered frames out after the
6095 * DTIM transmission using rt2x00lib_beacondone. This will send out
6096 * multicast and broadcast traffic immediately instead of buffering it
6097 * infinitly and thus dropping it after some time.
6099 if (!rt2x00_is_usb(rt2x00dev))
6100 rt2x00dev->hw->flags |=
6101 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING;
6103 SET_IEEE80211_DEV(rt2x00dev->hw, rt2x00dev->dev);
6104 SET_IEEE80211_PERM_ADDR(rt2x00dev->hw,
6105 rt2x00_eeprom_addr(rt2x00dev,
6106 EEPROM_MAC_ADDR_0));
6109 * As rt2800 has a global fallback table we cannot specify
6110 * more then one tx rate per frame but since the hw will
6111 * try several rates (based on the fallback table) we should
6112 * initialize max_report_rates to the maximum number of rates
6113 * we are going to try. Otherwise mac80211 will truncate our
6114 * reported tx rates and the rc algortihm will end up with
6115 * incorrect data.
6117 rt2x00dev->hw->max_rates = 1;
6118 rt2x00dev->hw->max_report_rates = 7;
6119 rt2x00dev->hw->max_rate_tries = 1;
6121 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
6124 * Initialize hw_mode information.
6126 spec->supported_bands = SUPPORT_BAND_2GHZ;
6127 spec->supported_rates = SUPPORT_RATE_CCK | SUPPORT_RATE_OFDM;
6129 if (rt2x00_rf(rt2x00dev, RF2820) ||
6130 rt2x00_rf(rt2x00dev, RF2720)) {
6131 spec->num_channels = 14;
6132 spec->channels = rf_vals;
6133 } else if (rt2x00_rf(rt2x00dev, RF2850) ||
6134 rt2x00_rf(rt2x00dev, RF2750)) {
6135 spec->supported_bands |= SUPPORT_BAND_5GHZ;
6136 spec->num_channels = ARRAY_SIZE(rf_vals);
6137 spec->channels = rf_vals;
6138 } else if (rt2x00_rf(rt2x00dev, RF3020) ||
6139 rt2x00_rf(rt2x00dev, RF2020) ||
6140 rt2x00_rf(rt2x00dev, RF3021) ||
6141 rt2x00_rf(rt2x00dev, RF3022) ||
6142 rt2x00_rf(rt2x00dev, RF3290) ||
6143 rt2x00_rf(rt2x00dev, RF3320) ||
6144 rt2x00_rf(rt2x00dev, RF3322) ||
6145 rt2x00_rf(rt2x00dev, RF5360) ||
6146 rt2x00_rf(rt2x00dev, RF5370) ||
6147 rt2x00_rf(rt2x00dev, RF5372) ||
6148 rt2x00_rf(rt2x00dev, RF5390) ||
6149 rt2x00_rf(rt2x00dev, RF5392)) {
6150 spec->num_channels = 14;
6151 spec->channels = rf_vals_3x;
6152 } else if (rt2x00_rf(rt2x00dev, RF3052)) {
6153 spec->supported_bands |= SUPPORT_BAND_5GHZ;
6154 spec->num_channels = ARRAY_SIZE(rf_vals_3x);
6155 spec->channels = rf_vals_3x;
6156 } else if (rt2x00_rf(rt2x00dev, RF5592)) {
6157 spec->supported_bands |= SUPPORT_BAND_5GHZ;
6159 rt2800_register_read(rt2x00dev, MAC_DEBUG_INDEX, &reg);
6160 if (rt2x00_get_field32(reg, MAC_DEBUG_INDEX_XTAL)) {
6161 spec->num_channels = ARRAY_SIZE(rf_vals_5592_xtal40);
6162 spec->channels = rf_vals_5592_xtal40;
6163 } else {
6164 spec->num_channels = ARRAY_SIZE(rf_vals_5592_xtal20);
6165 spec->channels = rf_vals_5592_xtal20;
6169 if (WARN_ON_ONCE(!spec->channels))
6170 return -ENODEV;
6173 * Initialize HT information.
6175 if (!rt2x00_rf(rt2x00dev, RF2020))
6176 spec->ht.ht_supported = true;
6177 else
6178 spec->ht.ht_supported = false;
6180 spec->ht.cap =
6181 IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
6182 IEEE80211_HT_CAP_GRN_FLD |
6183 IEEE80211_HT_CAP_SGI_20 |
6184 IEEE80211_HT_CAP_SGI_40;
6186 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) >= 2)
6187 spec->ht.cap |= IEEE80211_HT_CAP_TX_STBC;
6189 spec->ht.cap |=
6190 rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH) <<
6191 IEEE80211_HT_CAP_RX_STBC_SHIFT;
6193 spec->ht.ampdu_factor = 3;
6194 spec->ht.ampdu_density = 4;
6195 spec->ht.mcs.tx_params =
6196 IEEE80211_HT_MCS_TX_DEFINED |
6197 IEEE80211_HT_MCS_TX_RX_DIFF |
6198 ((rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) - 1) <<
6199 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
6201 switch (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH)) {
6202 case 3:
6203 spec->ht.mcs.rx_mask[2] = 0xff;
6204 case 2:
6205 spec->ht.mcs.rx_mask[1] = 0xff;
6206 case 1:
6207 spec->ht.mcs.rx_mask[0] = 0xff;
6208 spec->ht.mcs.rx_mask[4] = 0x1; /* MCS32 */
6209 break;
6213 * Create channel information array
6215 info = kcalloc(spec->num_channels, sizeof(*info), GFP_KERNEL);
6216 if (!info)
6217 return -ENOMEM;
6219 spec->channels_info = info;
6221 default_power1 = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_BG1);
6222 default_power2 = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_BG2);
6224 for (i = 0; i < 14; i++) {
6225 info[i].default_power1 = default_power1[i];
6226 info[i].default_power2 = default_power2[i];
6229 if (spec->num_channels > 14) {
6230 default_power1 = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_A1);
6231 default_power2 = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_A2);
6233 for (i = 14; i < spec->num_channels; i++) {
6234 info[i].default_power1 = default_power1[i];
6235 info[i].default_power2 = default_power2[i];
6239 switch (rt2x00dev->chip.rf) {
6240 case RF2020:
6241 case RF3020:
6242 case RF3021:
6243 case RF3022:
6244 case RF3320:
6245 case RF3052:
6246 case RF3290:
6247 case RF5360:
6248 case RF5370:
6249 case RF5372:
6250 case RF5390:
6251 case RF5392:
6252 __set_bit(CAPABILITY_VCO_RECALIBRATION, &rt2x00dev->cap_flags);
6253 break;
6256 return 0;
6259 static int rt2800_probe_rt(struct rt2x00_dev *rt2x00dev)
6261 u32 reg;
6262 u32 rt;
6263 u32 rev;
6265 if (rt2x00_rt(rt2x00dev, RT3290))
6266 rt2800_register_read(rt2x00dev, MAC_CSR0_3290, &reg);
6267 else
6268 rt2800_register_read(rt2x00dev, MAC_CSR0, &reg);
6270 rt = rt2x00_get_field32(reg, MAC_CSR0_CHIPSET);
6271 rev = rt2x00_get_field32(reg, MAC_CSR0_REVISION);
6273 switch (rt) {
6274 case RT2860:
6275 case RT2872:
6276 case RT2883:
6277 case RT3070:
6278 case RT3071:
6279 case RT3090:
6280 case RT3290:
6281 case RT3352:
6282 case RT3390:
6283 case RT3572:
6284 case RT5390:
6285 case RT5392:
6286 case RT5592:
6287 break;
6288 default:
6289 rt2x00_err(rt2x00dev, "Invalid RT chipset 0x%04x, rev %04x detected\n",
6290 rt, rev);
6291 return -ENODEV;
6294 rt2x00_set_rt(rt2x00dev, rt, rev);
6296 return 0;
6299 int rt2800_probe_hw(struct rt2x00_dev *rt2x00dev)
6301 int retval;
6302 u32 reg;
6304 retval = rt2800_probe_rt(rt2x00dev);
6305 if (retval)
6306 return retval;
6309 * Allocate eeprom data.
6311 retval = rt2800_validate_eeprom(rt2x00dev);
6312 if (retval)
6313 return retval;
6315 retval = rt2800_init_eeprom(rt2x00dev);
6316 if (retval)
6317 return retval;
6320 * Enable rfkill polling by setting GPIO direction of the
6321 * rfkill switch GPIO pin correctly.
6323 rt2800_register_read(rt2x00dev, GPIO_CTRL, &reg);
6324 rt2x00_set_field32(&reg, GPIO_CTRL_DIR2, 1);
6325 rt2800_register_write(rt2x00dev, GPIO_CTRL, reg);
6328 * Initialize hw specifications.
6330 retval = rt2800_probe_hw_mode(rt2x00dev);
6331 if (retval)
6332 return retval;
6335 * Set device capabilities.
6337 __set_bit(CAPABILITY_CONTROL_FILTERS, &rt2x00dev->cap_flags);
6338 __set_bit(CAPABILITY_CONTROL_FILTER_PSPOLL, &rt2x00dev->cap_flags);
6339 if (!rt2x00_is_usb(rt2x00dev))
6340 __set_bit(CAPABILITY_PRE_TBTT_INTERRUPT, &rt2x00dev->cap_flags);
6343 * Set device requirements.
6345 if (!rt2x00_is_soc(rt2x00dev))
6346 __set_bit(REQUIRE_FIRMWARE, &rt2x00dev->cap_flags);
6347 __set_bit(REQUIRE_L2PAD, &rt2x00dev->cap_flags);
6348 __set_bit(REQUIRE_TXSTATUS_FIFO, &rt2x00dev->cap_flags);
6349 if (!rt2800_hwcrypt_disabled(rt2x00dev))
6350 __set_bit(CAPABILITY_HW_CRYPTO, &rt2x00dev->cap_flags);
6351 __set_bit(CAPABILITY_LINK_TUNING, &rt2x00dev->cap_flags);
6352 __set_bit(REQUIRE_HT_TX_DESC, &rt2x00dev->cap_flags);
6353 if (rt2x00_is_usb(rt2x00dev))
6354 __set_bit(REQUIRE_PS_AUTOWAKE, &rt2x00dev->cap_flags);
6355 else {
6356 __set_bit(REQUIRE_DMA, &rt2x00dev->cap_flags);
6357 __set_bit(REQUIRE_TASKLET_CONTEXT, &rt2x00dev->cap_flags);
6361 * Set the rssi offset.
6363 rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
6365 return 0;
6367 EXPORT_SYMBOL_GPL(rt2800_probe_hw);
6370 * IEEE80211 stack callback functions.
6372 void rt2800_get_tkip_seq(struct ieee80211_hw *hw, u8 hw_key_idx, u32 *iv32,
6373 u16 *iv16)
6375 struct rt2x00_dev *rt2x00dev = hw->priv;
6376 struct mac_iveiv_entry iveiv_entry;
6377 u32 offset;
6379 offset = MAC_IVEIV_ENTRY(hw_key_idx);
6380 rt2800_register_multiread(rt2x00dev, offset,
6381 &iveiv_entry, sizeof(iveiv_entry));
6383 memcpy(iv16, &iveiv_entry.iv[0], sizeof(*iv16));
6384 memcpy(iv32, &iveiv_entry.iv[4], sizeof(*iv32));
6386 EXPORT_SYMBOL_GPL(rt2800_get_tkip_seq);
6388 int rt2800_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
6390 struct rt2x00_dev *rt2x00dev = hw->priv;
6391 u32 reg;
6392 bool enabled = (value < IEEE80211_MAX_RTS_THRESHOLD);
6394 rt2800_register_read(rt2x00dev, TX_RTS_CFG, &reg);
6395 rt2x00_set_field32(&reg, TX_RTS_CFG_RTS_THRES, value);
6396 rt2800_register_write(rt2x00dev, TX_RTS_CFG, reg);
6398 rt2800_register_read(rt2x00dev, CCK_PROT_CFG, &reg);
6399 rt2x00_set_field32(&reg, CCK_PROT_CFG_RTS_TH_EN, enabled);
6400 rt2800_register_write(rt2x00dev, CCK_PROT_CFG, reg);
6402 rt2800_register_read(rt2x00dev, OFDM_PROT_CFG, &reg);
6403 rt2x00_set_field32(&reg, OFDM_PROT_CFG_RTS_TH_EN, enabled);
6404 rt2800_register_write(rt2x00dev, OFDM_PROT_CFG, reg);
6406 rt2800_register_read(rt2x00dev, MM20_PROT_CFG, &reg);
6407 rt2x00_set_field32(&reg, MM20_PROT_CFG_RTS_TH_EN, enabled);
6408 rt2800_register_write(rt2x00dev, MM20_PROT_CFG, reg);
6410 rt2800_register_read(rt2x00dev, MM40_PROT_CFG, &reg);
6411 rt2x00_set_field32(&reg, MM40_PROT_CFG_RTS_TH_EN, enabled);
6412 rt2800_register_write(rt2x00dev, MM40_PROT_CFG, reg);
6414 rt2800_register_read(rt2x00dev, GF20_PROT_CFG, &reg);
6415 rt2x00_set_field32(&reg, GF20_PROT_CFG_RTS_TH_EN, enabled);
6416 rt2800_register_write(rt2x00dev, GF20_PROT_CFG, reg);
6418 rt2800_register_read(rt2x00dev, GF40_PROT_CFG, &reg);
6419 rt2x00_set_field32(&reg, GF40_PROT_CFG_RTS_TH_EN, enabled);
6420 rt2800_register_write(rt2x00dev, GF40_PROT_CFG, reg);
6422 return 0;
6424 EXPORT_SYMBOL_GPL(rt2800_set_rts_threshold);
6426 int rt2800_conf_tx(struct ieee80211_hw *hw,
6427 struct ieee80211_vif *vif, u16 queue_idx,
6428 const struct ieee80211_tx_queue_params *params)
6430 struct rt2x00_dev *rt2x00dev = hw->priv;
6431 struct data_queue *queue;
6432 struct rt2x00_field32 field;
6433 int retval;
6434 u32 reg;
6435 u32 offset;
6438 * First pass the configuration through rt2x00lib, that will
6439 * update the queue settings and validate the input. After that
6440 * we are free to update the registers based on the value
6441 * in the queue parameter.
6443 retval = rt2x00mac_conf_tx(hw, vif, queue_idx, params);
6444 if (retval)
6445 return retval;
6448 * We only need to perform additional register initialization
6449 * for WMM queues/
6451 if (queue_idx >= 4)
6452 return 0;
6454 queue = rt2x00queue_get_tx_queue(rt2x00dev, queue_idx);
6456 /* Update WMM TXOP register */
6457 offset = WMM_TXOP0_CFG + (sizeof(u32) * (!!(queue_idx & 2)));
6458 field.bit_offset = (queue_idx & 1) * 16;
6459 field.bit_mask = 0xffff << field.bit_offset;
6461 rt2800_register_read(rt2x00dev, offset, &reg);
6462 rt2x00_set_field32(&reg, field, queue->txop);
6463 rt2800_register_write(rt2x00dev, offset, reg);
6465 /* Update WMM registers */
6466 field.bit_offset = queue_idx * 4;
6467 field.bit_mask = 0xf << field.bit_offset;
6469 rt2800_register_read(rt2x00dev, WMM_AIFSN_CFG, &reg);
6470 rt2x00_set_field32(&reg, field, queue->aifs);
6471 rt2800_register_write(rt2x00dev, WMM_AIFSN_CFG, reg);
6473 rt2800_register_read(rt2x00dev, WMM_CWMIN_CFG, &reg);
6474 rt2x00_set_field32(&reg, field, queue->cw_min);
6475 rt2800_register_write(rt2x00dev, WMM_CWMIN_CFG, reg);
6477 rt2800_register_read(rt2x00dev, WMM_CWMAX_CFG, &reg);
6478 rt2x00_set_field32(&reg, field, queue->cw_max);
6479 rt2800_register_write(rt2x00dev, WMM_CWMAX_CFG, reg);
6481 /* Update EDCA registers */
6482 offset = EDCA_AC0_CFG + (sizeof(u32) * queue_idx);
6484 rt2800_register_read(rt2x00dev, offset, &reg);
6485 rt2x00_set_field32(&reg, EDCA_AC0_CFG_TX_OP, queue->txop);
6486 rt2x00_set_field32(&reg, EDCA_AC0_CFG_AIFSN, queue->aifs);
6487 rt2x00_set_field32(&reg, EDCA_AC0_CFG_CWMIN, queue->cw_min);
6488 rt2x00_set_field32(&reg, EDCA_AC0_CFG_CWMAX, queue->cw_max);
6489 rt2800_register_write(rt2x00dev, offset, reg);
6491 return 0;
6493 EXPORT_SYMBOL_GPL(rt2800_conf_tx);
6495 u64 rt2800_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
6497 struct rt2x00_dev *rt2x00dev = hw->priv;
6498 u64 tsf;
6499 u32 reg;
6501 rt2800_register_read(rt2x00dev, TSF_TIMER_DW1, &reg);
6502 tsf = (u64) rt2x00_get_field32(reg, TSF_TIMER_DW1_HIGH_WORD) << 32;
6503 rt2800_register_read(rt2x00dev, TSF_TIMER_DW0, &reg);
6504 tsf |= rt2x00_get_field32(reg, TSF_TIMER_DW0_LOW_WORD);
6506 return tsf;
6508 EXPORT_SYMBOL_GPL(rt2800_get_tsf);
6510 int rt2800_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
6511 enum ieee80211_ampdu_mlme_action action,
6512 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
6513 u8 buf_size)
6515 struct rt2x00_sta *sta_priv = (struct rt2x00_sta *)sta->drv_priv;
6516 int ret = 0;
6519 * Don't allow aggregation for stations the hardware isn't aware
6520 * of because tx status reports for frames to an unknown station
6521 * always contain wcid=255 and thus we can't distinguish between
6522 * multiple stations which leads to unwanted situations when the
6523 * hw reorders frames due to aggregation.
6525 if (sta_priv->wcid < 0)
6526 return 1;
6528 switch (action) {
6529 case IEEE80211_AMPDU_RX_START:
6530 case IEEE80211_AMPDU_RX_STOP:
6532 * The hw itself takes care of setting up BlockAck mechanisms.
6533 * So, we only have to allow mac80211 to nagotiate a BlockAck
6534 * agreement. Once that is done, the hw will BlockAck incoming
6535 * AMPDUs without further setup.
6537 break;
6538 case IEEE80211_AMPDU_TX_START:
6539 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
6540 break;
6541 case IEEE80211_AMPDU_TX_STOP_CONT:
6542 case IEEE80211_AMPDU_TX_STOP_FLUSH:
6543 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
6544 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
6545 break;
6546 case IEEE80211_AMPDU_TX_OPERATIONAL:
6547 break;
6548 default:
6549 rt2x00_warn((struct rt2x00_dev *)hw->priv,
6550 "Unknown AMPDU action\n");
6553 return ret;
6555 EXPORT_SYMBOL_GPL(rt2800_ampdu_action);
6557 int rt2800_get_survey(struct ieee80211_hw *hw, int idx,
6558 struct survey_info *survey)
6560 struct rt2x00_dev *rt2x00dev = hw->priv;
6561 struct ieee80211_conf *conf = &hw->conf;
6562 u32 idle, busy, busy_ext;
6564 if (idx != 0)
6565 return -ENOENT;
6567 survey->channel = conf->chandef.chan;
6569 rt2800_register_read(rt2x00dev, CH_IDLE_STA, &idle);
6570 rt2800_register_read(rt2x00dev, CH_BUSY_STA, &busy);
6571 rt2800_register_read(rt2x00dev, CH_BUSY_STA_SEC, &busy_ext);
6573 if (idle || busy) {
6574 survey->filled = SURVEY_INFO_CHANNEL_TIME |
6575 SURVEY_INFO_CHANNEL_TIME_BUSY |
6576 SURVEY_INFO_CHANNEL_TIME_EXT_BUSY;
6578 survey->channel_time = (idle + busy) / 1000;
6579 survey->channel_time_busy = busy / 1000;
6580 survey->channel_time_ext_busy = busy_ext / 1000;
6583 if (!(hw->conf.flags & IEEE80211_CONF_OFFCHANNEL))
6584 survey->filled |= SURVEY_INFO_IN_USE;
6586 return 0;
6589 EXPORT_SYMBOL_GPL(rt2800_get_survey);
6591 MODULE_AUTHOR(DRV_PROJECT ", Bartlomiej Zolnierkiewicz");
6592 MODULE_VERSION(DRV_VERSION);
6593 MODULE_DESCRIPTION("Ralink RT2800 library");
6594 MODULE_LICENSE("GPL");