blob: f281971919f5356ef4344e9fdc92de1b9241298a [file] [log] [blame]
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +01001/*
Ivo van Doorn96481b22010-08-06 20:47:57 +02002 Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
Ivo van Doorna5ea2f02010-06-14 22:13:15 +02003 Copyright (C) 2010 Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01004 Copyright (C) 2009 Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Gertjan van Wingerdecce5fc42009-11-10 22:42:40 +01005 Copyright (C) 2009 Gertjan van Wingerde <gwingerde@gmail.com>
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +01006
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01007 Based on the original rt2800pci.c and rt2800usb.c.
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01008 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>
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +010014 <http://rt2x00.serialmonkey.com>
15
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.
20
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.
25
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.
30 */
31
32/*
33 Module: rt2800lib
34 Abstract: rt2800 generic device routines.
35 */
36
Ivo van Doornf31c9a82010-07-11 12:30:37 +020037#include <linux/crc-ccitt.h>
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +010038#include <linux/kernel.h>
39#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +010041
42#include "rt2x00.h"
43#include "rt2800lib.h"
44#include "rt2800.h"
45
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +010046/*
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
59 */
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))
69
Helmut Schaabaff8002010-04-28 09:58:59 +020070static inline bool rt2800_is_305x_soc(struct rt2x00_dev *rt2x00dev)
71{
72 /* check for rt2872 on SoC */
73 if (!rt2x00_is_soc(rt2x00dev) ||
74 !rt2x00_rt(rt2x00dev, RT2872))
75 return false;
76
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;
82
Joe Perchesec9c4982013-04-19 08:33:40 -070083 rt2x00_warn(rt2x00dev, "Unknown RF chipset on rt305x\n");
Helmut Schaabaff8002010-04-28 09:58:59 +020084 return false;
85}
86
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +010087static void rt2800_bbp_write(struct rt2x00_dev *rt2x00dev,
88 const unsigned int word, const u8 value)
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +010089{
90 u32 reg;
91
92 mutex_lock(&rt2x00dev->csr_mutex);
93
94 /*
95 * Wait until the BBP becomes available, afterwards we
96 * can safely write the new data into the register.
97 */
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);
Ivo van Doornefc7d362010-06-29 21:49:26 +0200104 rt2x00_set_field32(&reg, BBP_CSR_CFG_BBP_RW_MODE, 1);
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100105
106 rt2800_register_write_lock(rt2x00dev, BBP_CSR_CFG, reg);
107 }
108
109 mutex_unlock(&rt2x00dev->csr_mutex);
110}
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100111
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +0100112static void rt2800_bbp_read(struct rt2x00_dev *rt2x00dev,
113 const unsigned int word, u8 *value)
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100114{
115 u32 reg;
116
117 mutex_lock(&rt2x00dev->csr_mutex);
118
119 /*
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.
126 */
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);
Ivo van Doornefc7d362010-06-29 21:49:26 +0200132 rt2x00_set_field32(&reg, BBP_CSR_CFG_BBP_RW_MODE, 1);
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100133
134 rt2800_register_write_lock(rt2x00dev, BBP_CSR_CFG, reg);
135
136 WAIT_FOR_BBP(rt2x00dev, &reg);
137 }
138
139 *value = rt2x00_get_field32(reg, BBP_CSR_CFG_VALUE);
140
141 mutex_unlock(&rt2x00dev->csr_mutex);
142}
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100143
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +0100144static void rt2800_rfcsr_write(struct rt2x00_dev *rt2x00dev,
145 const unsigned int word, const u8 value)
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100146{
147 u32 reg;
148
149 mutex_lock(&rt2x00dev->csr_mutex);
150
151 /*
152 * Wait until the RFCSR becomes available, afterwards we
153 * can safely write the new data into the register.
154 */
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);
161
162 rt2800_register_write_lock(rt2x00dev, RF_CSR_CFG, reg);
163 }
164
165 mutex_unlock(&rt2x00dev->csr_mutex);
166}
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100167
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +0100168static void rt2800_rfcsr_read(struct rt2x00_dev *rt2x00dev,
169 const unsigned int word, u8 *value)
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100170{
171 u32 reg;
172
173 mutex_lock(&rt2x00dev->csr_mutex);
174
175 /*
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.
182 */
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);
188
189 rt2800_register_write_lock(rt2x00dev, RF_CSR_CFG, reg);
190
191 WAIT_FOR_RFCSR(rt2x00dev, &reg);
192 }
193
194 *value = rt2x00_get_field32(reg, RF_CSR_CFG_DATA);
195
196 mutex_unlock(&rt2x00dev->csr_mutex);
197}
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100198
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +0100199static void rt2800_rf_write(struct rt2x00_dev *rt2x00dev,
200 const unsigned int word, const u32 value)
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100201{
202 u32 reg;
203
204 mutex_lock(&rt2x00dev->csr_mutex);
205
206 /*
207 * Wait until the RF becomes available, afterwards we
208 * can safely write the new data into the register.
209 */
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);
216
217 rt2800_register_write_lock(rt2x00dev, RF_CSR_CFG0, reg);
218 rt2x00_rf_write(rt2x00dev, word, value);
219 }
220
221 mutex_unlock(&rt2x00dev->csr_mutex);
222}
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100223
Woody Hung16ebd602012-07-31 21:53:33 +0800224static int rt2800_enable_wlan_rt3290(struct rt2x00_dev *rt2x00dev)
225{
226 u32 reg;
227 int i, count;
228
229 rt2800_register_read(rt2x00dev, WLAN_FUN_CTRL, &reg);
230 if (rt2x00_get_field32(reg, WLAN_EN))
231 return 0;
232
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);
238
239 udelay(REGISTER_BUSY_DELAY);
240
241 count = 0;
242 do {
243 /*
244 * Check PLL_LD & XTAL_RDY.
245 */
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);
252 }
253
254 if (i >= REGISTER_BUSY_COUNT) {
255
256 if (count >= 10)
257 return -EIO;
258
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;
268 }
269
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);
281
282 return 0;
283}
284
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100285void rt2800_mcu_request(struct rt2x00_dev *rt2x00dev,
286 const u8 command, const u8 token,
287 const u8 arg0, const u8 arg1)
288{
289 u32 reg;
290
Gertjan van Wingerdeee303e52009-11-23 22:44:49 +0100291 /*
Gertjan van Wingerdecea90e52010-02-13 20:55:47 +0100292 * SOC devices don't support MCU requests.
Gertjan van Wingerdeee303e52009-11-23 22:44:49 +0100293 */
Gertjan van Wingerdecea90e52010-02-13 20:55:47 +0100294 if (rt2x00_is_soc(rt2x00dev))
Gertjan van Wingerdeee303e52009-11-23 22:44:49 +0100295 return;
Bartlomiej Zolnierkiewicz89297422009-11-04 18:36:24 +0100296
297 mutex_lock(&rt2x00dev->csr_mutex);
298
299 /*
300 * Wait until the MCU becomes available, afterwards we
301 * can safely write the new data into the register.
302 */
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);
309
310 reg = 0;
311 rt2x00_set_field32(&reg, HOST_CMD_CSR_HOST_COMMAND, command);
312 rt2800_register_write_lock(rt2x00dev, HOST_CMD_CSR, reg);
313 }
314
315 mutex_unlock(&rt2x00dev->csr_mutex);
316}
317EXPORT_SYMBOL_GPL(rt2800_mcu_request);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100318
Ivo van Doorn5ffddc42010-08-30 21:13:08 +0200319int rt2800_wait_csr_ready(struct rt2x00_dev *rt2x00dev)
320{
321 unsigned int i = 0;
322 u32 reg;
323
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);
329 }
330
Joe Perchesec9c4982013-04-19 08:33:40 -0700331 rt2x00_err(rt2x00dev, "Unstable hardware\n");
Ivo van Doorn5ffddc42010-08-30 21:13:08 +0200332 return -EBUSY;
333}
334EXPORT_SYMBOL_GPL(rt2800_wait_csr_ready);
335
Gertjan van Wingerde67a4c1e2009-12-30 11:36:32 +0100336int rt2800_wait_wpdma_ready(struct rt2x00_dev *rt2x00dev)
337{
338 unsigned int i;
339 u32 reg;
340
Helmut Schaa08e53102010-11-04 20:37:47 +0100341 /*
342 * Some devices are really slow to respond here. Wait a whole second
343 * before timing out.
344 */
Gertjan van Wingerde67a4c1e2009-12-30 11:36:32 +0100345 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;
350
Helmut Schaa08e53102010-11-04 20:37:47 +0100351 msleep(10);
Gertjan van Wingerde67a4c1e2009-12-30 11:36:32 +0100352 }
353
Joe Perchesec9c4982013-04-19 08:33:40 -0700354 rt2x00_err(rt2x00dev, "WPDMA TX/RX busy [0x%08x]\n", reg);
Gertjan van Wingerde67a4c1e2009-12-30 11:36:32 +0100355 return -EACCES;
356}
357EXPORT_SYMBOL_GPL(rt2800_wait_wpdma_ready);
358
Jakub Kicinskif7b395e2012-04-03 03:40:47 +0200359void rt2800_disable_wpdma(struct rt2x00_dev *rt2x00dev)
360{
361 u32 reg;
362
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);
370}
371EXPORT_SYMBOL_GPL(rt2800_disable_wpdma);
372
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200373static bool rt2800_check_firmware_crc(const u8 *data, const size_t len)
374{
375 u16 fw_crc;
376 u16 crc;
377
378 /*
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.
382 */
383 fw_crc = (data[len - 2] << 8 | data[len - 1]);
384
385 /*
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.
391 */
392 crc = crc_ccitt(~0, data, len - 2);
393
394 /*
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.
399 */
400 crc = swab16(crc);
401
402 return fw_crc == crc;
403}
404
405int rt2800_check_firmware(struct rt2x00_dev *rt2x00dev,
406 const u8 *data, const size_t len)
407{
408 size_t offset = 0;
409 size_t fw_len;
410 bool multiple;
411
412 /*
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
Woody Hunga89534e2012-06-13 15:01:16 +0800418 * which is a multiple of 4kb. The firmware for rt3290 chip also
419 * have a length which is a multiple of 4kb.
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200420 */
Woody Hunga89534e2012-06-13 15:01:16 +0800421 if (rt2x00_is_usb(rt2x00dev) || rt2x00_rt(rt2x00dev, RT3290))
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200422 fw_len = 4096;
Woody Hunga89534e2012-06-13 15:01:16 +0800423 else
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200424 fw_len = 8192;
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200425
Woody Hunga89534e2012-06-13 15:01:16 +0800426 multiple = true;
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200427 /*
428 * Validate the firmware length
429 */
430 if (len != fw_len && (!multiple || (len % fw_len) != 0))
431 return FW_BAD_LENGTH;
432
433 /*
434 * Check if the chipset requires one of the upper parts
435 * of the firmware.
436 */
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;
443
444 /*
445 * 8kb firmware files must be checked as if it were
446 * 2 separate firmware files.
447 */
448 while (offset < len) {
449 if (!rt2800_check_firmware_crc(data + offset, fw_len))
450 return FW_BAD_CRC;
451
452 offset += fw_len;
453 }
454
455 return FW_OK;
456}
457EXPORT_SYMBOL_GPL(rt2800_check_firmware);
458
459int rt2800_load_firmware(struct rt2x00_dev *rt2x00dev,
460 const u8 *data, const size_t len)
461{
462 unsigned int i;
463 u32 reg;
Woody Hung16ebd602012-07-31 21:53:33 +0800464 int retval;
465
466 if (rt2x00_rt(rt2x00dev, RT3290)) {
467 retval = rt2800_enable_wlan_rt3290(rt2x00dev);
468 if (retval)
469 return -EBUSY;
470 }
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200471
472 /*
Ivo van Doornb9eca242010-08-30 21:13:54 +0200473 * If driver doesn't wake up firmware here,
474 * rt2800_load_firmware will hang forever when interface is up again.
475 */
476 rt2800_register_write(rt2x00dev, AUTOWAKEUP_CFG, 0x00000000);
477
478 /*
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200479 * Wait for stable hardware.
480 */
Ivo van Doorn5ffddc42010-08-30 21:13:08 +0200481 if (rt2800_wait_csr_ready(rt2x00dev))
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200482 return -EBUSY;
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200483
Gabor Juhosadde5882011-03-03 11:46:45 +0100484 if (rt2x00_is_pci(rt2x00dev)) {
Woody Hunga89534e2012-06-13 15:01:16 +0800485 if (rt2x00_rt(rt2x00dev, RT3290) ||
486 rt2x00_rt(rt2x00dev, RT3572) ||
John Li2ed71882012-02-17 17:33:06 +0800487 rt2x00_rt(rt2x00dev, RT5390) ||
488 rt2x00_rt(rt2x00dev, RT5392)) {
Gabor Juhosadde5882011-03-03 11:46:45 +0100489 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);
493 }
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200494 rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0x00000002);
Gabor Juhosadde5882011-03-03 11:46:45 +0100495 }
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200496
Jakub Kicinskib7e1d222012-04-03 03:40:48 +0200497 rt2800_disable_wpdma(rt2x00dev);
498
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200499 /*
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200500 * Write firmware to the device.
501 */
502 rt2800_drv_write_firmware(rt2x00dev, data, len);
503
504 /*
505 * Wait for device to stabilize.
506 */
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);
512 }
513
514 if (i == REGISTER_BUSY_COUNT) {
Joe Perchesec9c4982013-04-19 08:33:40 -0700515 rt2x00_err(rt2x00dev, "PBF system register not ready\n");
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200516 return -EBUSY;
517 }
518
519 /*
Stanislaw Gruszka4ed1dd22012-01-24 14:09:07 +0100520 * Disable DMA, will be reenabled later when enabling
521 * the radio.
522 */
Jakub Kicinskif7b395e2012-04-03 03:40:47 +0200523 rt2800_disable_wpdma(rt2x00dev);
Stanislaw Gruszka4ed1dd22012-01-24 14:09:07 +0100524
525 /*
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200526 * Initialize firmware.
527 */
528 rt2800_register_write(rt2x00dev, H2M_BBP_AGENT, 0);
529 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
Stanislaw Gruszka87561302013-03-16 19:19:45 +0100530 if (rt2x00_is_usb(rt2x00dev)) {
Stanislaw Gruszka0c17cf92012-01-24 14:09:06 +0100531 rt2800_register_write(rt2x00dev, H2M_INT_SRC, 0);
Stanislaw Gruszka87561302013-03-16 19:19:45 +0100532 rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0, 0, 0);
533 }
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200534 msleep(1);
535
536 return 0;
537}
538EXPORT_SYMBOL_GPL(rt2800_load_firmware);
539
Ivo van Doorn0c5879b2010-08-06 20:47:20 +0200540void rt2800_write_tx_data(struct queue_entry *entry,
541 struct txentry_desc *txdesc)
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200542{
Ivo van Doorn0c5879b2010-08-06 20:47:20 +0200543 __le32 *txwi = rt2800_drv_get_txwi(entry);
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200544 u32 word;
Stanislaw Gruszka557985a2013-04-17 14:30:48 +0200545 int i;
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200546
547 /*
548 * Initialize TX Info descriptor
549 */
550 rt2x00_desc_read(txwi, 0, &word);
551 rt2x00_set_field32(&word, TXWI_W0_FRAG,
552 test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
Ivo van Doorn84804cd2010-08-06 20:46:19 +0200553 rt2x00_set_field32(&word, TXWI_W0_MIMO_PS,
554 test_bit(ENTRY_TXD_HT_MIMO_PS, &txdesc->flags));
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200555 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));
Helmut Schaa26a1d072011-03-03 19:42:35 +0100560 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);
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200564 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));
Helmut Schaa26a1d072011-03-03 19:42:35 +0100568 rt2x00_set_field32(&word, TXWI_W0_STBC, txdesc->u.ht.stbc);
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200569 rt2x00_set_field32(&word, TXWI_W0_PHYMODE, txdesc->rate_mode);
570 rt2x00_desc_write(txwi, 0, word);
571
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));
Helmut Schaa26a1d072011-03-03 19:42:35 +0100577 rt2x00_set_field32(&word, TXWI_W1_BW_WIN_SIZE, txdesc->u.ht.ba_size);
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200578 rt2x00_set_field32(&word, TXWI_W1_WIRELESS_CLI_ID,
579 test_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags) ?
Helmut Schaaa2b13282011-09-08 14:38:01 +0200580 txdesc->key_idx : txdesc->u.ht.wcid);
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200581 rt2x00_set_field32(&word, TXWI_W1_MPDU_TOTAL_BYTE_COUNT,
582 txdesc->length);
Helmut Schaa2b23cda2010-11-04 20:38:15 +0100583 rt2x00_set_field32(&word, TXWI_W1_PACKETID_QUEUE, entry->queue->qid);
Ivo van Doornbc8a9792010-10-02 11:32:43 +0200584 rt2x00_set_field32(&word, TXWI_W1_PACKETID_ENTRY, (entry->entry_idx % 3) + 1);
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200585 rt2x00_desc_write(txwi, 1, word);
586
587 /*
Stanislaw Gruszka557985a2013-04-17 14:30:48 +0200588 * 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.
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200590 * 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.
Stanislaw Gruszka557985a2013-04-17 14:30:48 +0200593 *
594 * Nulify all remaining words as well, we don't know how to program them.
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200595 */
Stanislaw Gruszka557985a2013-04-17 14:30:48 +0200596 for (i = 2; i < entry->queue->winfo_size / sizeof(__le32); i++)
597 _rt2x00_desc_write(txwi, i, 0);
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200598}
Ivo van Doorn0c5879b2010-08-06 20:47:20 +0200599EXPORT_SYMBOL_GPL(rt2800_write_tx_data);
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200600
Helmut Schaaff6133b2010-10-09 13:34:11 +0200601static int rt2800_agc_to_rssi(struct rt2x00_dev *rt2x00dev, u32 rxwi_w2)
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200602{
Luigi Tarenga7fc41752012-01-31 18:51:23 +0100603 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);
Ivo van Doorn74861922010-07-11 12:23:50 +0200606 u16 eeprom;
607 u8 offset0;
608 u8 offset1;
609 u8 offset2;
610
Ivo van Doorne5ef5ba2010-08-06 20:49:27 +0200611 if (rt2x00dev->curr_band == IEEE80211_BAND_2GHZ) {
Ivo van Doorn74861922010-07-11 12:23:50 +0200612 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);
623 }
624
625 /*
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
629 */
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;
633
634 /*
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...
639 */
640 rssi0 = max(rssi0, rssi1);
Luigi Tarenga7fc41752012-01-31 18:51:23 +0100641 return (int)max(rssi0, rssi2);
Ivo van Doorn74861922010-07-11 12:23:50 +0200642}
643
644void rt2800_process_rxwi(struct queue_entry *entry,
645 struct rxdone_entry_desc *rxdesc)
646{
647 __le32 *rxwi = (__le32 *) entry->skb->data;
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200648 u32 word;
649
650 rt2x00_desc_read(rxwi, 0, &word);
651
652 rxdesc->cipher = rt2x00_get_field32(word, RXWI_W0_UDF);
653 rxdesc->size = rt2x00_get_field32(word, RXWI_W0_MPDU_TOTAL_BYTE_COUNT);
654
655 rt2x00_desc_read(rxwi, 1, &word);
656
657 if (rt2x00_get_field32(word, RXWI_W1_SHORT_GI))
658 rxdesc->flags |= RX_FLAG_SHORT_GI;
659
660 if (rt2x00_get_field32(word, RXWI_W1_BW))
661 rxdesc->flags |= RX_FLAG_40MHZ;
662
663 /*
664 * Detect RX rate, always use MCS as signal type.
665 */
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);
669
670 /*
671 * Mask of 0x8 bit to remove the short preamble flag.
672 */
673 if (rxdesc->rate_mode == RATE_MODE_CCK)
674 rxdesc->signal &= ~0x8;
675
676 rt2x00_desc_read(rxwi, 2, &word);
677
Ivo van Doorn74861922010-07-11 12:23:50 +0200678 /*
679 * Convert descriptor AGC value to RSSI value.
680 */
681 rxdesc->rssi = rt2800_agc_to_rssi(entry->queue->rt2x00dev, word);
Stanislaw Gruszkaf0bda572013-04-17 14:30:47 +0200682 /*
683 * Remove RXWI descriptor from start of the buffer.
684 */
685 skb_pull(entry->skb, entry->queue->winfo_size);
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200686}
687EXPORT_SYMBOL_GPL(rt2800_process_rxwi);
688
Helmut Schaa31937c42011-09-07 20:10:02 +0200689void rt2800_txdone_entry(struct queue_entry *entry, u32 status, __le32 *txwi)
Helmut Schaa14433332010-10-02 11:27:03 +0200690{
691 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Helmut Schaab34793e2010-10-02 11:34:56 +0200692 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
Helmut Schaa14433332010-10-02 11:27:03 +0200693 struct txdone_entry_desc txdesc;
694 u32 word;
695 u16 mcs, real_mcs;
Helmut Schaab34793e2010-10-02 11:34:56 +0200696 int aggr, ampdu;
Helmut Schaa14433332010-10-02 11:27:03 +0200697
698 /*
699 * Obtain the status about this packet.
700 */
701 txdesc.flags = 0;
Helmut Schaa14433332010-10-02 11:27:03 +0200702 rt2x00_desc_read(txwi, 0, &word);
Helmut Schaab34793e2010-10-02 11:34:56 +0200703
Helmut Schaa14433332010-10-02 11:27:03 +0200704 mcs = rt2x00_get_field32(word, TXWI_W0_MCS);
Helmut Schaab34793e2010-10-02 11:34:56 +0200705 ampdu = rt2x00_get_field32(word, TXWI_W0_AMPDU);
706
Helmut Schaa14433332010-10-02 11:27:03 +0200707 real_mcs = rt2x00_get_field32(status, TX_STA_FIFO_MCS);
Helmut Schaab34793e2010-10-02 11:34:56 +0200708 aggr = rt2x00_get_field32(status, TX_STA_FIFO_TX_AGGRE);
709
710 /*
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.
715 *
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.
721 *
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.
725 */
Helmut Schaa5356d962011-03-03 19:40:33 +0100726 if (unlikely(aggr == 1 && ampdu == 0 && real_mcs != mcs)) {
Helmut Schaab34793e2010-10-02 11:34:56 +0200727 skbdesc->tx_rate_idx = real_mcs;
728 mcs = real_mcs;
729 }
Helmut Schaa14433332010-10-02 11:27:03 +0200730
Helmut Schaaf16d2db2011-03-28 13:35:21 +0200731 if (aggr == 1 || ampdu == 1)
732 __set_bit(TXDONE_AMPDU, &txdesc.flags);
733
Helmut Schaa14433332010-10-02 11:27:03 +0200734 /*
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.
740 */
741 if (rt2x00_get_field32(status, TX_STA_FIFO_TX_SUCCESS)) {
742 /*
743 * Transmission succeeded. The number of retries is
744 * mcs - real_mcs
745 */
746 __set_bit(TXDONE_SUCCESS, &txdesc.flags);
747 txdesc.retry = ((mcs > real_mcs) ? mcs - real_mcs : 0);
748 } else {
749 /*
750 * Transmission failed. The number of retries is
751 * always 7 in this case (for a total number of 8
752 * frames sent).
753 */
754 __set_bit(TXDONE_FAILURE, &txdesc.flags);
755 txdesc.retry = rt2x00dev->long_retry;
756 }
757
758 /*
759 * the frame was retried at least once
760 * -> hw used fallback rates
761 */
762 if (txdesc.retry)
763 __set_bit(TXDONE_FALLBACK, &txdesc.flags);
764
765 rt2x00lib_txdone(entry, &txdesc);
766}
767EXPORT_SYMBOL_GPL(rt2800_txdone_entry);
768
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200769void rt2800_write_beacon(struct queue_entry *entry, struct txentry_desc *txdesc)
770{
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;
Wolfgang Kufner739fd942010-12-13 12:39:12 +0100774 unsigned int padding_len;
Seth Forsheed76dfc62011-02-14 08:52:25 -0600775 u32 orig_reg, reg;
Stanislaw Gruszkaf0bda572013-04-17 14:30:47 +0200776 const int txwi_desc_size = entry->queue->winfo_size;
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200777
778 /*
779 * Disable beaconing while we are reloading the beacon data,
780 * otherwise we might be sending out invalid data.
781 */
782 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
Seth Forsheed76dfc62011-02-14 08:52:25 -0600783 orig_reg = reg;
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200784 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
785 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
786
787 /*
788 * Add space for the TXWI in front of the skb.
789 */
Stanislaw Gruszkaf0bda572013-04-17 14:30:47 +0200790 memset(skb_push(entry->skb, txwi_desc_size), 0, txwi_desc_size);
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200791
792 /*
793 * Register descriptor details in skb frame descriptor.
794 */
795 skbdesc->flags |= SKBDESC_DESC_IN_SKB;
796 skbdesc->desc = entry->skb->data;
Stanislaw Gruszkaf0bda572013-04-17 14:30:47 +0200797 skbdesc->desc_len = txwi_desc_size;
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200798
799 /*
800 * Add the TXWI for the beacon to the skb.
801 */
Ivo van Doorn0c5879b2010-08-06 20:47:20 +0200802 rt2800_write_tx_data(entry, txdesc);
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200803
804 /*
805 * Dump beacon to userspace through debugfs.
806 */
807 rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_BEACON, entry->skb);
808
809 /*
Wolfgang Kufner739fd942010-12-13 12:39:12 +0100810 * Write entire beacon with TXWI and padding to register.
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200811 */
Wolfgang Kufner739fd942010-12-13 12:39:12 +0100812 padding_len = roundup(entry->skb->len, 4) - entry->skb->len;
Seth Forsheed76dfc62011-02-14 08:52:25 -0600813 if (padding_len && skb_pad(entry->skb, padding_len)) {
Joe Perchesec9c4982013-04-19 08:33:40 -0700814 rt2x00_err(rt2x00dev, "Failure padding beacon, aborting\n");
Seth Forsheed76dfc62011-02-14 08:52:25 -0600815 /* skb freed by skb_pad() on failure */
816 entry->skb = NULL;
817 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, orig_reg);
818 return;
819 }
820
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200821 beacon_base = HW_BEACON_OFFSET(entry->entry_idx);
Wolfgang Kufner739fd942010-12-13 12:39:12 +0100822 rt2800_register_multiwrite(rt2x00dev, beacon_base, entry->skb->data,
823 entry->skb->len + padding_len);
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200824
825 /*
826 * Enable beaconing again.
827 */
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200828 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 1);
829 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
830
831 /*
832 * Clean up beacon skb.
833 */
834 dev_kfree_skb_any(entry->skb);
835 entry->skb = NULL;
836}
Ivo van Doorn50e888e2010-07-11 12:26:12 +0200837EXPORT_SYMBOL_GPL(rt2800_write_beacon);
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200838
Helmut Schaa69cf36a2011-01-30 13:16:03 +0100839static inline void rt2800_clear_beacon_register(struct rt2x00_dev *rt2x00dev,
840 unsigned int beacon_base)
Helmut Schaafdb87252010-06-29 21:48:06 +0200841{
842 int i;
Stanislaw Gruszkaf0bda572013-04-17 14:30:47 +0200843 const int txwi_desc_size = rt2x00dev->ops->bcn->winfo_size;
Helmut Schaafdb87252010-06-29 21:48:06 +0200844
845 /*
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.
849 */
Stanislaw Gruszkaf0bda572013-04-17 14:30:47 +0200850 for (i = 0; i < txwi_desc_size; i += sizeof(__le32))
Helmut Schaafdb87252010-06-29 21:48:06 +0200851 rt2800_register_write(rt2x00dev, beacon_base + i, 0);
852}
853
Helmut Schaa69cf36a2011-01-30 13:16:03 +0100854void rt2800_clear_beacon(struct queue_entry *entry)
855{
856 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
857 u32 reg;
858
859 /*
860 * Disable beaconing while we are reloading the beacon data,
861 * otherwise we might be sending out invalid data.
862 */
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);
866
867 /*
868 * Clear beacon.
869 */
870 rt2800_clear_beacon_register(rt2x00dev,
871 HW_BEACON_OFFSET(entry->entry_idx));
872
873 /*
874 * Enabled beaconing again.
875 */
876 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 1);
877 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
878}
879EXPORT_SYMBOL_GPL(rt2800_clear_beacon);
880
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100881#ifdef CONFIG_RT2X00_LIB_DEBUGFS
882const 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),
891 },
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),
898 },
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),
905 },
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),
912 },
Anisse Astierf2bd7f12012-04-19 15:53:10 +0200913 .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),
919 },
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100920};
921EXPORT_SYMBOL_GPL(rt2800_rt2x00debug);
922#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
923
924int rt2800_rfkill_poll(struct rt2x00_dev *rt2x00dev)
925{
926 u32 reg;
927
Woody Hunga89534e2012-06-13 15:01:16 +0800928 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 {
Gertjan van Wingerde99bdf512012-08-31 19:22:13 +0200932 rt2800_register_read(rt2x00dev, GPIO_CTRL, &reg);
933 return rt2x00_get_field32(reg, GPIO_CTRL_VAL2);
Woody Hunga89534e2012-06-13 15:01:16 +0800934 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100935}
936EXPORT_SYMBOL_GPL(rt2800_rfkill_poll);
937
938#ifdef CONFIG_RT2X00_LIB_LEDS
939static void rt2800_brightness_set(struct led_classdev *led_cdev,
940 enum led_brightness brightness)
941{
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);
Layne Edwards44704e52011-04-18 15:26:00 +0200953 u32 reg;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100954
Layne Edwards44704e52011-04-18 15:26:00 +0200955 /* 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);
958
959 /* Set LED Polarity */
960 rt2x00_set_field32(&reg, LED_CFG_LED_POLAR, polarity);
961
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);
972 }
973
974 rt2800_register_write(led->rt2x00dev, LED_CFG, reg);
975
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) {
984 /*
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
991 */
992 rt2800_mcu_request(led->rt2x00dev, MCU_LED_STRENGTH, 0xff,
993 (1 << brightness / (LED_FULL / 6)) - 1,
994 polarity);
995 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100996 }
997}
998
Gertjan van Wingerdeb3579d62009-12-30 11:36:34 +0100999static void rt2800_init_led(struct rt2x00_dev *rt2x00dev,
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001000 struct rt2x00_led *led, enum led_type type)
1001{
1002 led->rt2x00dev = rt2x00dev;
1003 led->type = type;
1004 led->led_dev.brightness_set = rt2800_brightness_set;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001005 led->flags = LED_INITIALIZED;
1006}
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001007#endif /* CONFIG_RT2X00_LIB_LEDS */
1008
1009/*
1010 * Configuration handlers.
1011 */
Helmut Schaaa2b13282011-09-08 14:38:01 +02001012static void rt2800_config_wcid(struct rt2x00_dev *rt2x00dev,
1013 const u8 *address,
1014 int wcid)
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001015{
1016 struct mac_wcid_entry wcid_entry;
Helmut Schaaa2b13282011-09-08 14:38:01 +02001017 u32 offset;
1018
1019 offset = MAC_WCID_ENTRY(wcid);
1020
1021 memset(&wcid_entry, 0xff, sizeof(wcid_entry));
1022 if (address)
1023 memcpy(wcid_entry.mac, address, ETH_ALEN);
1024
1025 rt2800_register_multiwrite(rt2x00dev, offset,
1026 &wcid_entry, sizeof(wcid_entry));
1027}
1028
1029static void rt2800_delete_wcid_attr(struct rt2x00_dev *rt2x00dev, int wcid)
1030{
1031 u32 offset;
1032 offset = MAC_WCID_ATTR_ENTRY(wcid);
1033 rt2800_register_write(rt2x00dev, offset, 0);
1034}
1035
1036static void rt2800_config_wcid_attr_bssidx(struct rt2x00_dev *rt2x00dev,
1037 int wcid, u32 bssidx)
1038{
1039 u32 offset = MAC_WCID_ATTR_ENTRY(wcid);
1040 u32 reg;
1041
1042 /*
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.
1045 */
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);
1051}
1052
1053static void rt2800_config_wcid_attr_cipher(struct rt2x00_dev *rt2x00dev,
1054 struct rt2x00lib_crypto *crypto,
1055 struct ieee80211_key_conf *key)
1056{
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001057 struct mac_iveiv_entry iveiv_entry;
1058 u32 offset;
1059 u32 reg;
1060
1061 offset = MAC_WCID_ATTR_ENTRY(key->hw_key_idx);
1062
Ivo van Doorne4a0ab32010-06-14 22:14:19 +02001063 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));
1067 /*
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.
1071 */
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);
Ivo van Doorne4a0ab32010-06-14 22:14:19 +02001076 rt2x00_set_field32(&reg, MAC_WCID_ATTRIBUTE_RX_WIUDF, crypto->cipher);
1077 rt2800_register_write(rt2x00dev, offset, reg);
1078 } else {
Helmut Schaaa2b13282011-09-08 14:38:01 +02001079 /* 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);
Ivo van Doorne4a0ab32010-06-14 22:14:19 +02001086 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001087
1088 offset = MAC_IVEIV_ENTRY(key->hw_key_idx);
1089
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));
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001098}
1099
1100int rt2800_config_shared_key(struct rt2x00_dev *rt2x00dev,
1101 struct rt2x00lib_crypto *crypto,
1102 struct ieee80211_key_conf *key)
1103{
1104 struct hw_key_entry key_entry;
1105 struct rt2x00_field32 field;
1106 u32 offset;
1107 u32 reg;
1108
1109 if (crypto->cmd == SET_KEY) {
1110 key->hw_key_idx = (4 * crypto->bssidx) + key->keyidx;
1111
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));
1118
1119 offset = SHARED_KEY_ENTRY(key->hw_key_idx);
1120 rt2800_register_multiwrite(rt2x00dev, offset,
1121 &key_entry, sizeof(key_entry));
1122 }
1123
1124 /*
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.
1130 */
1131 field.bit_offset = 4 * (key->hw_key_idx % 8);
1132 field.bit_mask = 0x7 << field.bit_offset;
1133
1134 offset = SHARED_KEY_MODE_ENTRY(key->hw_key_idx / 8);
1135
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);
1140
1141 /*
1142 * Update WCID information
1143 */
Helmut Schaaa2b13282011-09-08 14:38:01 +02001144 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);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001148
1149 return 0;
1150}
1151EXPORT_SYMBOL_GPL(rt2800_config_shared_key);
1152
Helmut Schaaa2b13282011-09-08 14:38:01 +02001153static inline int rt2800_find_wcid(struct rt2x00_dev *rt2x00dev)
Helmut Schaa1ed38112011-03-03 19:44:33 +01001154{
Helmut Schaaa2b13282011-09-08 14:38:01 +02001155 struct mac_wcid_entry wcid_entry;
Helmut Schaa1ed38112011-03-03 19:44:33 +01001156 int idx;
Helmut Schaaa2b13282011-09-08 14:38:01 +02001157 u32 offset;
Helmut Schaa1ed38112011-03-03 19:44:33 +01001158
1159 /*
Helmut Schaaa2b13282011-09-08 14:38:01 +02001160 * Search for the first free WCID entry and return the corresponding
1161 * index.
Helmut Schaa1ed38112011-03-03 19:44:33 +01001162 *
1163 * Make sure the WCID starts _after_ the last possible shared key
1164 * entry (>32).
1165 *
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.
1169 */
1170 for (idx = 33; idx <= 222; idx++) {
Helmut Schaaa2b13282011-09-08 14:38:01 +02001171 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))
Helmut Schaa1ed38112011-03-03 19:44:33 +01001175 return idx;
1176 }
Helmut Schaaa2b13282011-09-08 14:38:01 +02001177
1178 /*
1179 * Use -1 to indicate that we don't have any more space in the WCID
1180 * table.
1181 */
Helmut Schaa1ed38112011-03-03 19:44:33 +01001182 return -1;
1183}
1184
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001185int rt2800_config_pairwise_key(struct rt2x00_dev *rt2x00dev,
1186 struct rt2x00lib_crypto *crypto,
1187 struct ieee80211_key_conf *key)
1188{
1189 struct hw_key_entry key_entry;
1190 u32 offset;
1191
1192 if (crypto->cmd == SET_KEY) {
Helmut Schaaa2b13282011-09-08 14:38:01 +02001193 /*
1194 * Allow key configuration only for STAs that are
1195 * known by the hw.
1196 */
1197 if (crypto->wcid < 0)
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001198 return -ENOSPC;
Helmut Schaaa2b13282011-09-08 14:38:01 +02001199 key->hw_key_idx = crypto->wcid;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001200
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));
1207
1208 offset = PAIRWISE_KEY_ENTRY(key->hw_key_idx);
1209 rt2800_register_multiwrite(rt2x00dev, offset,
1210 &key_entry, sizeof(key_entry));
1211 }
1212
1213 /*
1214 * Update WCID information
1215 */
Helmut Schaaa2b13282011-09-08 14:38:01 +02001216 rt2800_config_wcid_attr_cipher(rt2x00dev, crypto, key);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001217
1218 return 0;
1219}
1220EXPORT_SYMBOL_GPL(rt2800_config_pairwise_key);
1221
Helmut Schaaa2b13282011-09-08 14:38:01 +02001222int rt2800_sta_add(struct rt2x00_dev *rt2x00dev, struct ieee80211_vif *vif,
1223 struct ieee80211_sta *sta)
1224{
1225 int wcid;
1226 struct rt2x00_sta *sta_priv = sta_to_rt2x00_sta(sta);
1227
1228 /*
1229 * Find next free WCID.
1230 */
1231 wcid = rt2800_find_wcid(rt2x00dev);
1232
1233 /*
1234 * Store selected wcid even if it is invalid so that we can
1235 * later decide if the STA is uploaded into the hw.
1236 */
1237 sta_priv->wcid = wcid;
1238
1239 /*
1240 * No space left in the device, however, we can still communicate
1241 * with the STA -> No error.
1242 */
1243 if (wcid < 0)
1244 return 0;
1245
1246 /*
1247 * Clean up WCID attributes and write STA address to the device.
1248 */
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;
1254}
1255EXPORT_SYMBOL_GPL(rt2800_sta_add);
1256
1257int rt2800_sta_remove(struct rt2x00_dev *rt2x00dev, int wcid)
1258{
1259 /*
1260 * Remove WCID entry, no need to clean the attributes as they will
1261 * get renewed when the WCID is reused.
1262 */
1263 rt2800_config_wcid(rt2x00dev, NULL, wcid);
1264
1265 return 0;
1266}
1267EXPORT_SYMBOL_GPL(rt2800_sta_remove);
1268
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001269void rt2800_config_filter(struct rt2x00_dev *rt2x00dev,
1270 const unsigned int filter_flags)
1271{
1272 u32 reg;
1273
1274 /*
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.
1279 */
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));
Helmut Schaa84e9e8ebd2013-01-17 17:34:32 +01001305 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_BA, 0);
Helmut Schaa48839932011-11-24 09:13:26 +01001306 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_BAR,
1307 !(filter_flags & FIF_CONTROL));
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001308 rt2x00_set_field32(&reg, RX_FILTER_CFG_DROP_CNTL,
1309 !(filter_flags & FIF_CONTROL));
1310 rt2800_register_write(rt2x00dev, RX_FILTER_CFG, reg);
1311}
1312EXPORT_SYMBOL_GPL(rt2800_config_filter);
1313
1314void rt2800_config_intf(struct rt2x00_dev *rt2x00dev, struct rt2x00_intf *intf,
1315 struct rt2x00intf_conf *conf, const unsigned int flags)
1316{
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001317 u32 reg;
Helmut Schaafa8b4b22010-11-04 20:42:36 +01001318 bool update_bssid = false;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001319
1320 if (flags & CONFIG_UPDATE_TYPE) {
1321 /*
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001322 * Enable synchronisation.
1323 */
1324 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001325 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_SYNC, conf->sync);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001326 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
Helmut Schaa15a533c2011-04-18 15:28:04 +02001327
1328 if (conf->sync == TSF_SYNC_AP_NONE) {
1329 /*
1330 * Tune beacon queue transmit parameters for AP mode
1331 */
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);
1345 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001346 }
1347
1348 if (flags & CONFIG_UPDATE_MAC) {
Helmut Schaafa8b4b22010-11-04 20:42:36 +01001349 if (flags & CONFIG_UPDATE_TYPE &&
1350 conf->sync == TSF_SYNC_AP_NONE) {
1351 /*
1352 * The BSSID register has to be set to our own mac
1353 * address in AP mode.
1354 */
1355 memcpy(conf->bssid, conf->mac, sizeof(conf->mac));
1356 update_bssid = true;
1357 }
1358
Ivo van Doornc600c822010-08-30 21:14:15 +02001359 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);
1363 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001364
1365 rt2800_register_multiwrite(rt2x00dev, MAC_ADDR_DW0,
1366 conf->mac, sizeof(conf->mac));
1367 }
1368
Helmut Schaafa8b4b22010-11-04 20:42:36 +01001369 if ((flags & CONFIG_UPDATE_BSSID) || update_bssid) {
Ivo van Doornc600c822010-08-30 21:14:15 +02001370 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);
1375 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001376
1377 rt2800_register_multiwrite(rt2x00dev, MAC_BSSID_DW0,
1378 conf->bssid, sizeof(conf->bssid));
1379 }
1380}
1381EXPORT_SYMBOL_GPL(rt2800_config_intf);
1382
Helmut Schaa87c19152010-10-02 11:28:34 +02001383static void rt2800_config_ht_opmode(struct rt2x00_dev *rt2x00dev,
1384 struct rt2x00lib_erp *erp)
1385{
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;
1392
1393 /* default protection rate for HT20: OFDM 24M */
1394 mm20_rate = gf20_rate = 0x4004;
1395
1396 /* default protection rate for HT40: duplicate OFDM 24M */
1397 mm40_rate = gf40_rate = 0x4084;
1398
1399 switch (protection) {
1400 case IEEE80211_HT_OP_MODE_PROTECTION_NONE:
1401 /*
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.
1405 */
1406 mm20_mode = mm40_mode = gf20_mode = gf40_mode = 0;
1407
1408 break;
1409 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
1410 /*
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.
1414 */
1415 mm20_mode = gf20_mode = 0;
1416 mm40_mode = gf40_mode = 2;
1417
1418 break;
1419 case IEEE80211_HT_OP_MODE_PROTECTION_NONMEMBER:
1420 /*
1421 * Nonmember protection:
1422 * According to 802.11n we _should_ protect all
1423 * HT transmissions (but we don't have to).
1424 *
1425 * But if cts_protection is enabled we _shall_ protect
1426 * all HT transmissions using a CCK rate.
1427 *
1428 * And if any station is non GF we _shall_ protect
1429 * GF transmissions.
1430 *
1431 * We decide to protect everything
1432 * -> fall through to mixed mode.
1433 */
1434 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
1435 /*
1436 * Legacy STAs are present
1437 * => Protect all HT transmissions.
1438 */
1439 mm20_mode = mm40_mode = gf20_mode = gf40_mode = 2;
1440
1441 /*
1442 * If erp protection is needed we have to protect HT
1443 * transmissions with CCK 11M long preamble.
1444 */
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;
1449 }
1450 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001451 }
Helmut Schaa87c19152010-10-02 11:28:34 +02001452
1453 /* check for STAs not supporting greenfield mode */
1454 if (any_sta_nongf)
1455 gf20_mode = gf40_mode = 2;
1456
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);
1462
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);
1467
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);
1472
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);
1477}
1478
Helmut Schaa02044642010-09-08 20:56:32 +02001479void rt2800_config_erp(struct rt2x00_dev *rt2x00dev, struct rt2x00lib_erp *erp,
1480 u32 changed)
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001481{
1482 u32 reg;
1483
Helmut Schaa02044642010-09-08 20:56:32 +02001484 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);
1491 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001492
Helmut Schaa02044642010-09-08 20:56:32 +02001493 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);
1498 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001499
Helmut Schaa02044642010-09-08 20:56:32 +02001500 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);
1504 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001505
Helmut Schaa02044642010-09-08 20:56:32 +02001506 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);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001511
Helmut Schaa02044642010-09-08 20:56:32 +02001512 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);
1515 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001516
Helmut Schaa02044642010-09-08 20:56:32 +02001517 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);
1522 }
Helmut Schaa87c19152010-10-02 11:28:34 +02001523
1524 if (changed & BSS_CHANGED_HT)
1525 rt2800_config_ht_opmode(rt2x00dev, erp);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001526}
1527EXPORT_SYMBOL_GPL(rt2800_config_erp);
1528
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001529static void rt2800_config_3572bt_ant(struct rt2x00_dev *rt2x00dev)
1530{
1531 u32 reg;
1532 u16 eeprom;
1533 u8 led_ctrl, led_g_mode, led_r_mode;
1534
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);
1542 }
1543 rt2800_register_write(rt2x00dev, GPIO_SWITCH, reg);
1544
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);
1559 }
1560 }
1561}
1562
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001563static void rt2800_set_ant_diversity(struct rt2x00_dev *rt2x00dev,
1564 enum antenna ant)
1565{
1566 u32 reg;
1567 u8 eesk_pin = (ant == ANTENNA_A) ? 1 : 0;
1568 u8 gpio_bit3 = (ant == ANTENNA_A) ? 0 : 1;
1569
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);
1577
Gertjan van Wingerde99bdf512012-08-31 19:22:13 +02001578 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);
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001582}
1583
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001584void rt2800_config_ant(struct rt2x00_dev *rt2x00dev, struct antenna_setup *ant)
1585{
1586 u8 r1;
1587 u8 r3;
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001588 u16 eeprom;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001589
1590 rt2800_bbp_read(rt2x00dev, 1, &r1);
1591 rt2800_bbp_read(rt2x00dev, 3, &r3);
1592
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001593 if (rt2x00_rt(rt2x00dev, RT3572) &&
1594 test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags))
1595 rt2800_config_3572bt_ant(rt2x00dev);
1596
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001597 /*
1598 * Configure the TX antenna.
1599 */
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001600 switch (ant->tx_chain_num) {
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001601 case 1:
1602 rt2x00_set_field8(&r1, BBP1_TX_ANTENNA, 0);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001603 break;
1604 case 2:
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001605 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);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001610 break;
1611 case 3:
Ivo van Doorne22557f2010-06-29 21:49:05 +02001612 rt2x00_set_field8(&r1, BBP1_TX_ANTENNA, 0);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001613 break;
1614 }
1615
1616 /*
1617 * Configure the RX antenna.
1618 */
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001619 switch (ant->rx_chain_num) {
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001620 case 1:
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001621 if (rt2x00_rt(rt2x00dev, RT3070) ||
1622 rt2x00_rt(rt2x00dev, RT3090) ||
Daniel Golle03839952012-09-09 14:24:39 +03001623 rt2x00_rt(rt2x00dev, RT3352) ||
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001624 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);
1631 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001632 rt2x00_set_field8(&r3, BBP3_RX_ANTENNA, 0);
1633 break;
1634 case 2:
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001635 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);
1643 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001644 break;
1645 case 3:
1646 rt2x00_set_field8(&r3, BBP3_RX_ANTENNA, 2);
1647 break;
1648 }
1649
1650 rt2800_bbp_write(rt2x00dev, 3, r3);
1651 rt2800_bbp_write(rt2x00dev, 1, r1);
1652}
1653EXPORT_SYMBOL_GPL(rt2800_config_ant);
1654
1655static void rt2800_config_lna_gain(struct rt2x00_dev *rt2x00dev,
1656 struct rt2x00lib_conf *libconf)
1657{
1658 u16 eeprom;
1659 short lna_gain;
1660
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);
1673 }
1674
1675 rt2x00dev->lna_gain = lna_gain;
1676}
1677
Gertjan van Wingerde06855ef2010-04-11 14:31:07 +02001678static void rt2800_config_channel_rf2xxx(struct rt2x00_dev *rt2x00dev,
1679 struct ieee80211_conf *conf,
1680 struct rf_channel *rf,
1681 struct channel_info *info)
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001682{
1683 rt2x00_set_field32(&rf->rf4, RF4_FREQ_OFFSET, rt2x00dev->freq_offset);
1684
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001685 if (rt2x00dev->default_ant.tx_chain_num == 1)
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001686 rt2x00_set_field32(&rf->rf2, RF2_ANTENNA_TX1, 1);
1687
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001688 if (rt2x00dev->default_ant.rx_chain_num == 1) {
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001689 rt2x00_set_field32(&rf->rf2, RF2_ANTENNA_RX1, 1);
1690 rt2x00_set_field32(&rf->rf2, RF2_ANTENNA_RX2, 1);
RA-Jay Hungd96aa642011-02-20 13:54:52 +01001691 } else if (rt2x00dev->default_ant.rx_chain_num == 2)
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001692 rt2x00_set_field32(&rf->rf2, RF2_ANTENNA_RX2, 1);
1693
1694 if (rf->channel > 14) {
1695 /*
1696 * When TX power is below 0, we should increase it by 7 to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001697 * make it a positive value (Minimum value is -7).
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001698 * However this means that values between 0 and 7 have
1699 * double meaning, and we should set a 7DBm boost flag.
1700 */
1701 rt2x00_set_field32(&rf->rf3, RF3_TXPOWER_A_7DBM_BOOST,
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02001702 (info->default_power1 >= 0));
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001703
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02001704 if (info->default_power1 < 0)
1705 info->default_power1 += 7;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001706
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02001707 rt2x00_set_field32(&rf->rf3, RF3_TXPOWER_A, info->default_power1);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001708
1709 rt2x00_set_field32(&rf->rf4, RF4_TXPOWER_A_7DBM_BOOST,
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02001710 (info->default_power2 >= 0));
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001711
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02001712 if (info->default_power2 < 0)
1713 info->default_power2 += 7;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001714
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02001715 rt2x00_set_field32(&rf->rf4, RF4_TXPOWER_A, info->default_power2);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001716 } else {
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02001717 rt2x00_set_field32(&rf->rf3, RF3_TXPOWER_G, info->default_power1);
1718 rt2x00_set_field32(&rf->rf4, RF4_TXPOWER_G, info->default_power2);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001719 }
1720
1721 rt2x00_set_field32(&rf->rf4, RF4_HT40, conf_is_ht40(conf));
1722
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);
1727
1728 udelay(200);
1729
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);
1734
1735 udelay(200);
1736
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);
1741}
1742
Gertjan van Wingerde06855ef2010-04-11 14:31:07 +02001743static void rt2800_config_channel_rf3xxx(struct rt2x00_dev *rt2x00dev,
1744 struct ieee80211_conf *conf,
1745 struct rf_channel *rf,
1746 struct channel_info *info)
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001747{
Gertjan van Wingerde3a1c0122012-02-06 23:45:07 +01001748 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
Stanislaw Gruszkaf1f12f92012-01-30 16:17:59 +01001749 u8 rfcsr, calib_tx, calib_rx;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001750
1751 rt2800_rfcsr_write(rt2x00dev, 2, rf->rf1);
Stanislaw Gruszka7f4666a2012-01-30 16:17:56 +01001752
1753 rt2800_rfcsr_read(rt2x00dev, 3, &rfcsr);
1754 rt2x00_set_field8(&rfcsr, RFCSR3_K, rf->rf3);
1755 rt2800_rfcsr_write(rt2x00dev, 3, rfcsr);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001756
1757 rt2800_rfcsr_read(rt2x00dev, 6, &rfcsr);
Gertjan van Wingerdefab799c2010-04-11 14:31:08 +02001758 rt2x00_set_field8(&rfcsr, RFCSR6_R1, rf->rf2);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001759 rt2800_rfcsr_write(rt2x00dev, 6, rfcsr);
1760
1761 rt2800_rfcsr_read(rt2x00dev, 12, &rfcsr);
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02001762 rt2x00_set_field8(&rfcsr, RFCSR12_TX_POWER, info->default_power1);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001763 rt2800_rfcsr_write(rt2x00dev, 12, rfcsr);
1764
Helmut Schaa5a673962010-04-23 15:54:43 +02001765 rt2800_rfcsr_read(rt2x00dev, 13, &rfcsr);
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02001766 rt2x00_set_field8(&rfcsr, RFCSR13_TX_POWER, info->default_power2);
Helmut Schaa5a673962010-04-23 15:54:43 +02001767 rt2800_rfcsr_write(rt2x00dev, 13, rfcsr);
1768
Stanislaw Gruszkae3bab192012-01-30 16:17:57 +01001769 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
1770 rt2x00_set_field8(&rfcsr, RFCSR1_RX0_PD, 0);
Gertjan van Wingerde7ad63032012-09-16 22:29:53 +02001771 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);
Stanislaw Gruszkae3bab192012-01-30 16:17:57 +01001775 rt2x00_set_field8(&rfcsr, RFCSR1_TX0_PD, 0);
Gertjan van Wingerde7ad63032012-09-16 22:29:53 +02001776 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);
Stanislaw Gruszkae3bab192012-01-30 16:17:57 +01001780 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
1781
Stanislaw Gruszka3e0c7642012-01-30 16:17:58 +01001782 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);
1788
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001789 rt2800_rfcsr_read(rt2x00dev, 23, &rfcsr);
1790 rt2x00_set_field8(&rfcsr, RFCSR23_FREQ_OFFSET, rt2x00dev->freq_offset);
1791 rt2800_rfcsr_write(rt2x00dev, 23, rfcsr);
1792
Stanislaw Gruszkaf1f12f92012-01-30 16:17:59 +01001793 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 {
Gertjan van Wingerde3a1c0122012-02-06 23:45:07 +01001797 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;
1803 }
Stanislaw Gruszkaf1f12f92012-01-30 16:17:59 +01001804 }
1805
1806 rt2800_rfcsr_read(rt2x00dev, 24, &rfcsr);
1807 rt2x00_set_field8(&rfcsr, RFCSR24_TX_CALIB, calib_tx);
1808 rt2800_rfcsr_write(rt2x00dev, 24, rfcsr);
1809
1810 rt2800_rfcsr_read(rt2x00dev, 31, &rfcsr);
1811 rt2x00_set_field8(&rfcsr, RFCSR31_RX_CALIB, calib_rx);
1812 rt2800_rfcsr_write(rt2x00dev, 31, rfcsr);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001813
Gertjan van Wingerde71976902010-03-24 21:42:36 +01001814 rt2800_rfcsr_read(rt2x00dev, 7, &rfcsr);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001815 rt2x00_set_field8(&rfcsr, RFCSR7_RF_TUNING, 1);
Gertjan van Wingerde71976902010-03-24 21:42:36 +01001816 rt2800_rfcsr_write(rt2x00dev, 7, rfcsr);
Stanislaw Gruszka3e0c7642012-01-30 16:17:58 +01001817
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);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01001824}
1825
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001826static void rt2800_config_channel_rf3052(struct rt2x00_dev *rt2x00dev,
1827 struct ieee80211_conf *conf,
1828 struct rf_channel *rf,
1829 struct channel_info *info)
1830{
Gertjan van Wingerde3a1c0122012-02-06 23:45:07 +01001831 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001832 u8 rfcsr;
1833 u32 reg;
1834
1835 if (rf->channel <= 14) {
Gertjan van Wingerde5d137df2012-02-06 23:45:09 +01001836 rt2800_bbp_write(rt2x00dev, 25, drv_data->bbp25);
1837 rt2800_bbp_write(rt2x00dev, 26, drv_data->bbp26);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001838 } else {
1839 rt2800_bbp_write(rt2x00dev, 25, 0x09);
1840 rt2800_bbp_write(rt2x00dev, 26, 0xff);
1841 }
1842
1843 rt2800_rfcsr_write(rt2x00dev, 2, rf->rf1);
1844 rt2800_rfcsr_write(rt2x00dev, 3, rf->rf3);
1845
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);
1853
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);
1860
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,
Gertjan van Wingerde569ffa52012-02-06 23:45:10 +01001865 info->default_power1);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001866 } 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));
1871 }
1872 rt2800_rfcsr_write(rt2x00dev, 12, rfcsr);
1873
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,
Gertjan van Wingerde569ffa52012-02-06 23:45:10 +01001878 info->default_power2);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001879 } 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));
1884 }
1885 rt2800_rfcsr_write(rt2x00dev, 13, rfcsr);
1886
1887 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001888 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);
Gertjan van Wingerde0cd461e2012-02-06 23:45:11 +01001892 rt2x00_set_field8(&rfcsr, RFCSR1_RX2_PD, 0);
1893 rt2x00_set_field8(&rfcsr, RFCSR1_TX2_PD, 0);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001894 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);
1898 }
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;
1908 }
1909
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;
1916 }
1917 }
1918 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
1919
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);
1923
Gertjan van Wingerde3a1c0122012-02-06 23:45:07 +01001924 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);
1930 }
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001931
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);
Gertjan van Wingerde77c06c22012-02-06 23:45:13 +01001938 rfcsr = 0x4c;
1939 rt2x00_set_field8(&rfcsr, RFCSR16_TXMIXER_GAIN,
1940 drv_data->txmixer_gain_24g);
1941 rt2800_rfcsr_write(rt2x00dev, 16, rfcsr);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001942 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 {
Gertjan van Wingerde58b8ae12012-02-06 23:45:12 +01001950 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);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001956 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);
Gertjan van Wingerde77c06c22012-02-06 23:45:13 +01001960 rfcsr = 0x7a;
1961 rt2x00_set_field8(&rfcsr, RFCSR16_TXMIXER_GAIN,
1962 drv_data->txmixer_gain_5g);
1963 rt2800_rfcsr_write(rt2x00dev, 16, rfcsr);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001964 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);
1977 }
1978 rt2800_rfcsr_write(rt2x00dev, 26, 0x87);
1979 rt2800_rfcsr_write(rt2x00dev, 27, 0x01);
1980 rt2800_rfcsr_write(rt2x00dev, 29, 0x9f);
1981 }
1982
Gertjan van Wingerde99bdf512012-08-31 19:22:13 +02001983 rt2800_register_read(rt2x00dev, GPIO_CTRL, &reg);
1984 rt2x00_set_field32(&reg, GPIO_CTRL_DIR7, 0);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001985 if (rf->channel <= 14)
Gertjan van Wingerde99bdf512012-08-31 19:22:13 +02001986 rt2x00_set_field32(&reg, GPIO_CTRL_VAL7, 1);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001987 else
Gertjan van Wingerde99bdf512012-08-31 19:22:13 +02001988 rt2x00_set_field32(&reg, GPIO_CTRL_VAL7, 0);
1989 rt2800_register_write(rt2x00dev, GPIO_CTRL, reg);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02001990
1991 rt2800_rfcsr_read(rt2x00dev, 7, &rfcsr);
1992 rt2x00_set_field8(&rfcsr, RFCSR7_RF_TUNING, 1);
1993 rt2800_rfcsr_write(rt2x00dev, 7, rfcsr);
1994}
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01001995
Stanislaw Gruszka7573cb52012-07-09 14:41:48 +02001996#define POWER_BOUND 0x27
Stanislaw Gruszka8f821092013-03-16 19:19:32 +01001997#define POWER_BOUND_5G 0x2b
Stanislaw Gruszka7573cb52012-07-09 14:41:48 +02001998#define FREQ_OFFSET_BOUND 0x5f
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01001999
Stanislaw Gruszka0c9e5fb2013-03-16 19:19:36 +01002000static void rt2800_adjust_freq_offset(struct rt2x00_dev *rt2x00dev)
2001{
2002 u8 rfcsr;
2003
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);
2010}
2011
Woody Hunga89534e2012-06-13 15:01:16 +08002012static void rt2800_config_channel_rf3290(struct rt2x00_dev *rt2x00dev,
2013 struct ieee80211_conf *conf,
2014 struct rf_channel *rf,
2015 struct channel_info *info)
2016{
2017 u8 rfcsr;
2018
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);
2024
2025 rt2800_rfcsr_read(rt2x00dev, 49, &rfcsr);
Stanislaw Gruszka7573cb52012-07-09 14:41:48 +02002026 if (info->default_power1 > POWER_BOUND)
2027 rt2x00_set_field8(&rfcsr, RFCSR49_TX, POWER_BOUND);
Woody Hunga89534e2012-06-13 15:01:16 +08002028 else
2029 rt2x00_set_field8(&rfcsr, RFCSR49_TX, info->default_power1);
2030 rt2800_rfcsr_write(rt2x00dev, 49, rfcsr);
2031
Stanislaw Gruszka0c9e5fb2013-03-16 19:19:36 +01002032 rt2800_adjust_freq_offset(rt2x00dev);
Woody Hunga89534e2012-06-13 15:01:16 +08002033
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);
2039
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);
2046 }
2047}
2048
Daniel Golle03839952012-09-09 14:24:39 +03002049static void rt2800_config_channel_rf3322(struct rt2x00_dev *rt2x00dev,
2050 struct ieee80211_conf *conf,
2051 struct rf_channel *rf,
2052 struct channel_info *info)
2053{
2054 u8 rfcsr;
2055
2056 rt2800_rfcsr_write(rt2x00dev, 8, rf->rf1);
2057 rt2800_rfcsr_write(rt2x00dev, 9, rf->rf3);
2058
2059 rt2800_rfcsr_write(rt2x00dev, 11, 0x42);
2060 rt2800_rfcsr_write(rt2x00dev, 12, 0x1c);
2061 rt2800_rfcsr_write(rt2x00dev, 13, 0x00);
2062
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);
2067
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);
2072
Stanislaw Gruszka0c9e5fb2013-03-16 19:19:36 +01002073 rt2800_adjust_freq_offset(rt2x00dev);
Daniel Golle03839952012-09-09 14:24:39 +03002074
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);
2078
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);
2083
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);
2088
2089 rt2x00_set_field8(&rfcsr, RFCSR1_RX2_PD, 0);
2090 rt2x00_set_field8(&rfcsr, RFCSR1_TX2_PD, 0);
2091
2092 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
2093
2094 rt2800_rfcsr_write(rt2x00dev, 31, 80);
2095}
2096
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002097static void rt2800_config_channel_rf53xx(struct rt2x00_dev *rt2x00dev,
Gabor Juhosadde5882011-03-03 11:46:45 +01002098 struct ieee80211_conf *conf,
2099 struct rf_channel *rf,
2100 struct channel_info *info)
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002101{
Gabor Juhosadde5882011-03-03 11:46:45 +01002102 u8 rfcsr;
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002103
Gabor Juhosadde5882011-03-03 11:46:45 +01002104 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);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002109
Gabor Juhosadde5882011-03-03 11:46:45 +01002110 rt2800_rfcsr_read(rt2x00dev, 49, &rfcsr);
Stanislaw Gruszka7573cb52012-07-09 14:41:48 +02002111 if (info->default_power1 > POWER_BOUND)
2112 rt2x00_set_field8(&rfcsr, RFCSR49_TX, POWER_BOUND);
Gabor Juhosadde5882011-03-03 11:46:45 +01002113 else
2114 rt2x00_set_field8(&rfcsr, RFCSR49_TX, info->default_power1);
2115 rt2800_rfcsr_write(rt2x00dev, 49, rfcsr);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002116
Zero.Lincff3d1f2012-05-29 16:11:09 +08002117 if (rt2x00_rt(rt2x00dev, RT5392)) {
2118 rt2800_rfcsr_read(rt2x00dev, 50, &rfcsr);
Stanislaw Gruszka7573cb52012-07-09 14:41:48 +02002119 if (info->default_power1 > POWER_BOUND)
2120 rt2x00_set_field8(&rfcsr, RFCSR50_TX, POWER_BOUND);
Zero.Lincff3d1f2012-05-29 16:11:09 +08002121 else
2122 rt2x00_set_field8(&rfcsr, RFCSR50_TX,
2123 info->default_power2);
2124 rt2800_rfcsr_write(rt2x00dev, 50, rfcsr);
2125 }
2126
Gabor Juhosadde5882011-03-03 11:46:45 +01002127 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
Zero.Lincff3d1f2012-05-29 16:11:09 +08002128 if (rt2x00_rt(rt2x00dev, RT5392)) {
2129 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD, 1);
2130 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD, 1);
2131 }
Gabor Juhosadde5882011-03-03 11:46:45 +01002132 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);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002137
Stanislaw Gruszka0c9e5fb2013-03-16 19:19:36 +01002138 rt2800_adjust_freq_offset(rt2x00dev);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002139
Gabor Juhosadde5882011-03-03 11:46:45 +01002140 if (rf->channel <= 14) {
2141 int idx = rf->channel-1;
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002142
Gertjan van Wingerdefdbc7b02011-04-30 17:15:37 +02002143 if (test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags)) {
Gabor Juhosadde5882011-03-03 11:46:45 +01002144 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};
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002152
Gabor Juhosadde5882011-03-03 11:46:45 +01002153 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};
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002161
Gabor Juhosadde5882011-03-03 11:46:45 +01002162 rt2800_rfcsr_write(rt2x00dev, 59, r59_bt[idx]);
2163 }
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};
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002172
Gabor Juhosadde5882011-03-03 11:46:45 +01002173 rt2800_rfcsr_write(rt2x00dev, 55,
2174 r55_nonbt_rev[idx]);
2175 rt2800_rfcsr_write(rt2x00dev, 59,
2176 r59_nonbt_rev[idx]);
John Li2ed71882012-02-17 17:33:06 +08002177 } else if (rt2x00_rt(rt2x00dev, RT5390) ||
Gabor Juhose6d227b2012-12-02 15:53:28 +01002178 rt2x00_rt(rt2x00dev, RT5392)) {
Gabor Juhosadde5882011-03-03 11:46:45 +01002179 static const char r59_non_bt[] = {0x8f, 0x8f,
2180 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8d,
2181 0x8a, 0x88, 0x88, 0x87, 0x87, 0x86};
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002182
Gabor Juhosadde5882011-03-03 11:46:45 +01002183 rt2800_rfcsr_write(rt2x00dev, 59,
2184 r59_non_bt[idx]);
2185 }
2186 }
2187 }
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01002188}
2189
Stanislaw Gruszka8f821092013-03-16 19:19:32 +01002190static void rt2800_config_channel_rf55xx(struct rt2x00_dev *rt2x00dev,
2191 struct ieee80211_conf *conf,
2192 struct rf_channel *rf,
2193 struct channel_info *info)
2194{
2195 u8 rfcsr, ep_reg;
Stanislaw Gruszkad5ae7a62013-03-16 19:19:42 +01002196 u32 reg;
Stanislaw Gruszka8f821092013-03-16 19:19:32 +01002197 int power_bound;
2198
2199 /* TODO */
2200 const bool is_11b = false;
2201 const bool is_type_ep = false;
2202
Stanislaw Gruszkad5ae7a62013-03-16 19:19:42 +01002203 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);
Stanislaw Gruszka8f821092013-03-16 19:19:32 +01002207
2208 /* Order of values on rf_channel entry: N, K, mod, R */
2209 rt2800_rfcsr_write(rt2x00dev, 8, rf->rf1 & 0xff);
2210
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);
2216
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);
2221
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);
2253
2254 /* TODO RF27 <- tssi */
2255
2256 rfcsr = rf->channel <= 10 ? 0x07 : 0x06;
2257 rt2800_rfcsr_write(rt2x00dev, 23, rfcsr);
2258 rt2800_rfcsr_write(rt2x00dev, 59, rfcsr);
2259
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);
2274 }
2275
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);
2295
2296 /* TODO RF27 <- tssi */
2297
2298 if (rf->channel >= 36 && rf->channel <= 64) {
2299
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);
2321 }
2322
2323 rt2800_rfcsr_write(rt2x00dev, 58, 0x15);
2324 rt2800_rfcsr_write(rt2x00dev, 59, 0x7F);
2325 rt2800_rfcsr_write(rt2x00dev, 62, 0x15);
2326
2327 } else if (rf->channel >= 100 && rf->channel <= 165) {
2328
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);
2338 }
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);
2349 }
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);
2379 }
2380
2381 power_bound = POWER_BOUND_5G;
2382 ep_reg = 0x3;
2383 }
2384
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);
2393
2394 rt2800_rfcsr_read(rt2x00dev, 50, &rfcsr);
Gabor Juhos0530bd42013-06-25 22:57:29 +02002395 if (info->default_power2 > power_bound)
Stanislaw Gruszka8f821092013-03-16 19:19:32 +01002396 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);
2402
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);
2406
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);
2412
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);
2418
2419 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
2420 rt2800_rfcsr_write(rt2x00dev, 6, 0xe4);
2421
2422 if (conf_is_ht40(conf))
2423 rt2800_rfcsr_write(rt2x00dev, 30, 0x16);
2424 else
2425 rt2800_rfcsr_write(rt2x00dev, 30, 0x10);
2426
2427 if (!is_11b) {
2428 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
2429 rt2800_rfcsr_write(rt2x00dev, 32, 0x80);
2430 }
2431
2432 /* TODO proper frequency adjustment */
Stanislaw Gruszka0c9e5fb2013-03-16 19:19:36 +01002433 rt2800_adjust_freq_offset(rt2x00dev);
Stanislaw Gruszka8f821092013-03-16 19:19:32 +01002434
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);
Stanislaw Gruszka68031412013-03-16 19:19:44 +01002439
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);
2444
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);
2449
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);
Stanislaw Gruszka8f821092013-03-16 19:19:32 +01002463}
2464
Stanislaw Gruszka5bc2dd02013-03-16 19:19:47 +01002465static void rt2800_bbp_write_with_rx_chain(struct rt2x00_dev *rt2x00dev,
2466 const unsigned int word,
2467 const u8 value)
2468{
2469 u8 chain, reg;
2470
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);
2475
2476 rt2800_bbp_write(rt2x00dev, word, value);
2477 }
2478}
2479
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002480static void rt2800_iq_calibrate(struct rt2x00_dev *rt2x00dev, int channel)
2481{
2482 u8 cal;
2483
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002484 /* TX0 IQ Gain */
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002485 rt2800_bbp_write(rt2x00dev, 158, 0x2c);
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002486 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;
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002499 rt2800_bbp_write(rt2x00dev, 159, cal);
2500
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002501 /* TX0 IQ Phase */
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002502 rt2800_bbp_write(rt2x00dev, 158, 0x2d);
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002503 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;
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002516 rt2800_bbp_write(rt2x00dev, 159, cal);
2517
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002518 /* TX1 IQ Gain */
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002519 rt2800_bbp_write(rt2x00dev, 158, 0x4a);
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002520 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;
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002533 rt2800_bbp_write(rt2x00dev, 159, cal);
2534
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002535 /* TX1 IQ Phase */
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002536 rt2800_bbp_write(rt2x00dev, 158, 0x4b);
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002537 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;
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002550 rt2800_bbp_write(rt2x00dev, 159, cal);
2551
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002552 /* FIXME: possible RX0, RX1 callibration ? */
2553
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002554 /* 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);
2558
2559 /* RF IQ imbalance compensation control */
2560 rt2800_bbp_write(rt2x00dev, 158, 0x03);
Stanislaw Gruszka415e3f22013-03-16 19:19:52 +01002561 cal = rt2x00_eeprom_byte(rt2x00dev,
2562 EEPROM_RF_IQ_IMBALANCE_COMPENSATION_CONTROL);
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002563 rt2800_bbp_write(rt2x00dev, 159, cal != 0xff ? cal : 0);
2564}
2565
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002566static void rt2800_config_channel(struct rt2x00_dev *rt2x00dev,
2567 struct ieee80211_conf *conf,
2568 struct rf_channel *rf,
2569 struct channel_info *info)
2570{
2571 u32 reg;
2572 unsigned int tx_pin;
Woody Hunga89534e2012-06-13 15:01:16 +08002573 u8 bbp, rfcsr;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002574
Ivo van Doorn46323e12010-08-23 19:55:43 +02002575 if (rf->channel <= 14) {
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02002576 info->default_power1 = TXPOWER_G_TO_DEV(info->default_power1);
2577 info->default_power2 = TXPOWER_G_TO_DEV(info->default_power2);
Ivo van Doorn46323e12010-08-23 19:55:43 +02002578 } else {
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02002579 info->default_power1 = TXPOWER_A_TO_DEV(info->default_power1);
2580 info->default_power2 = TXPOWER_A_TO_DEV(info->default_power2);
Ivo van Doorn46323e12010-08-23 19:55:43 +02002581 }
2582
Gertjan van Wingerde5aa57012011-12-28 01:53:20 +01002583 switch (rt2x00dev->chip.rf) {
2584 case RF2020:
2585 case RF3020:
2586 case RF3021:
2587 case RF3022:
2588 case RF3320:
Gertjan van Wingerde06855ef2010-04-11 14:31:07 +02002589 rt2800_config_channel_rf3xxx(rt2x00dev, conf, rf, info);
Gertjan van Wingerde5aa57012011-12-28 01:53:20 +01002590 break;
2591 case RF3052:
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02002592 rt2800_config_channel_rf3052(rt2x00dev, conf, rf, info);
Gertjan van Wingerde5aa57012011-12-28 01:53:20 +01002593 break;
Woody Hunga89534e2012-06-13 15:01:16 +08002594 case RF3290:
2595 rt2800_config_channel_rf3290(rt2x00dev, conf, rf, info);
2596 break;
Daniel Golle03839952012-09-09 14:24:39 +03002597 case RF3322:
2598 rt2800_config_channel_rf3322(rt2x00dev, conf, rf, info);
2599 break;
villacis@palosanto.comccf91bd2012-05-16 21:07:12 +02002600 case RF5360:
Gertjan van Wingerde5aa57012011-12-28 01:53:20 +01002601 case RF5370:
John Li2ed71882012-02-17 17:33:06 +08002602 case RF5372:
Gertjan van Wingerde5aa57012011-12-28 01:53:20 +01002603 case RF5390:
Zero.Lincff3d1f2012-05-29 16:11:09 +08002604 case RF5392:
Gabor Juhosadde5882011-03-03 11:46:45 +01002605 rt2800_config_channel_rf53xx(rt2x00dev, conf, rf, info);
Gertjan van Wingerde5aa57012011-12-28 01:53:20 +01002606 break;
Stanislaw Gruszka8f821092013-03-16 19:19:32 +01002607 case RF5592:
2608 rt2800_config_channel_rf55xx(rt2x00dev, conf, rf, info);
2609 break;
Gertjan van Wingerde5aa57012011-12-28 01:53:20 +01002610 default:
Gertjan van Wingerde06855ef2010-04-11 14:31:07 +02002611 rt2800_config_channel_rf2xxx(rt2x00dev, conf, rf, info);
Gertjan van Wingerde5aa57012011-12-28 01:53:20 +01002612 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002613
Woody Hunga89534e2012-06-13 15:01:16 +08002614 if (rt2x00_rf(rt2x00dev, RF3290) ||
Daniel Golle03839952012-09-09 14:24:39 +03002615 rt2x00_rf(rt2x00dev, RF3322) ||
Woody Hunga89534e2012-06-13 15:01:16 +08002616 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);
2625
2626 rt2800_rfcsr_read(rt2x00dev, 3, &rfcsr);
Gabor Juhosd6d82022012-12-02 18:34:47 +01002627 rt2x00_set_field8(&rfcsr, RFCSR3_VCOCAL_EN, 1);
Woody Hunga89534e2012-06-13 15:01:16 +08002628 rt2800_rfcsr_write(rt2x00dev, 3, rfcsr);
2629 }
2630
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002631 /*
2632 * Change BBP settings
2633 */
Daniel Golle03839952012-09-09 14:24:39 +03002634 if (rt2x00_rt(rt2x00dev, RT3352)) {
2635 rt2800_bbp_write(rt2x00dev, 27, 0x0);
Daniel Gollecf193f62012-10-04 01:20:41 +02002636 rt2800_bbp_write(rt2x00dev, 66, 0x26 + rt2x00dev->lna_gain);
Daniel Golle03839952012-09-09 14:24:39 +03002637 rt2800_bbp_write(rt2x00dev, 27, 0x20);
Daniel Gollecf193f62012-10-04 01:20:41 +02002638 rt2800_bbp_write(rt2x00dev, 66, 0x26 + rt2x00dev->lna_gain);
Daniel Golle03839952012-09-09 14:24:39 +03002639 } 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);
2644 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002645
2646 if (rf->channel <= 14) {
John Li2ed71882012-02-17 17:33:06 +08002647 if (!rt2x00_rt(rt2x00dev, RT5390) &&
Gabor Juhose6d227b2012-12-02 15:53:28 +01002648 !rt2x00_rt(rt2x00dev, RT5392)) {
Ivo van Doorn7dab73b2011-04-18 15:27:06 +02002649 if (test_bit(CAPABILITY_EXTERNAL_LNA_BG,
2650 &rt2x00dev->cap_flags)) {
Gabor Juhosadde5882011-03-03 11:46:45 +01002651 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);
2656 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002657 }
2658 } else {
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02002659 if (rt2x00_rt(rt2x00dev, RT3572))
2660 rt2800_bbp_write(rt2x00dev, 82, 0x94);
2661 else
2662 rt2800_bbp_write(rt2x00dev, 82, 0xf2);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002663
Ivo van Doorn7dab73b2011-04-18 15:27:06 +02002664 if (test_bit(CAPABILITY_EXTERNAL_LNA_A, &rt2x00dev->cap_flags))
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002665 rt2800_bbp_write(rt2x00dev, 75, 0x46);
2666 else
2667 rt2800_bbp_write(rt2x00dev, 75, 0x50);
2668 }
2669
2670 rt2800_register_read(rt2x00dev, TX_BAND_CFG, &reg);
Gertjan van Wingerdea21ee722010-05-03 22:43:04 +02002671 rt2x00_set_field32(&reg, TX_BAND_CFG_HT40_MINUS, conf_is_ht40_minus(conf));
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002672 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);
2675
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02002676 if (rt2x00_rt(rt2x00dev, RT3572))
2677 rt2800_rfcsr_write(rt2x00dev, 8, 0);
2678
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002679 tx_pin = 0;
2680
2681 /* Turn on unused PA or LNA when not using 1T or 1R */
RA-Jay Hungd96aa642011-02-20 13:54:52 +01002682 if (rt2x00dev->default_ant.tx_chain_num == 2) {
Gertjan van Wingerde65f31b52011-05-18 20:25:05 +02002683 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);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002687 }
2688
2689 /* Turn on unused PA or LNA when not using 1T or 1R */
RA-Jay Hungd96aa642011-02-20 13:54:52 +01002690 if (rt2x00dev->default_ant.rx_chain_num == 2) {
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002691 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);
2693 }
2694
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);
Gertjan van Wingerde8f96e912011-05-18 20:25:18 +02002699 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);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002704 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_A0_EN, rf->channel > 14);
2705
2706 rt2800_register_write(rt2x00dev, TX_PIN_CFG, tx_pin);
2707
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02002708 if (rt2x00_rt(rt2x00dev, RT3572))
2709 rt2800_rfcsr_write(rt2x00dev, 8, 0x80);
2710
Stanislaw Gruszka68031412013-03-16 19:19:44 +01002711 if (rt2x00_rt(rt2x00dev, RT5592)) {
2712 rt2800_bbp_write(rt2x00dev, 195, 141);
2713 rt2800_bbp_write(rt2x00dev, 196, conf_is_ht40(conf) ? 0x10 : 0x1a);
2714
Stanislaw Gruszka8ba0ebf2013-03-16 19:19:48 +01002715 /* AGC init */
2716 reg = (rf->channel <= 14 ? 0x1c : 0x24) + 2 * rt2x00dev->lna_gain;
2717 rt2800_bbp_write_with_rx_chain(rt2x00dev, 66, reg);
2718
Stanislaw Gruszka87561302013-03-16 19:19:45 +01002719 rt2800_iq_calibrate(rt2x00dev, rf->channel);
Stanislaw Gruszka68031412013-03-16 19:19:44 +01002720 }
2721
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002722 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);
2725
2726 rt2800_bbp_read(rt2x00dev, 3, &bbp);
Gertjan van Wingerdea21ee722010-05-03 22:43:04 +02002727 rt2x00_set_field8(&bbp, BBP3_HT40_MINUS, conf_is_ht40_minus(conf));
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002728 rt2800_bbp_write(rt2x00dev, 3, bbp);
2729
Gertjan van Wingerde8d0c9b62010-04-11 14:31:10 +02002730 if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860C)) {
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002731 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);
2739 }
2740 }
2741
2742 msleep(1);
Helmut Schaa977206d2010-12-13 12:31:58 +01002743
2744 /*
2745 * Clear channel statistic counters
2746 */
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);
Daniel Golle03839952012-09-09 14:24:39 +03002750
2751 /*
2752 * Clear update flag
2753 */
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);
2758 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002759}
2760
Helmut Schaa9e33a352011-03-28 13:33:40 +02002761static int rt2800_get_gain_calibration_delta(struct rt2x00_dev *rt2x00dev)
2762{
2763 u8 tssi_bounds[9];
2764 u8 current_tssi;
2765 u16 eeprom;
2766 u8 step;
2767 int i;
2768
2769 /*
Stanislaw Gruszkabeb6f0e2013-08-26 15:18:53 +02002770 * First check if temperature compensation is supported.
2771 */
2772 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
2773 if (!rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_EXTERNAL_TX_ALC))
2774 return 0;
2775
2776 /*
Helmut Schaa9e33a352011-03-28 13:33:40 +02002777 * Read TSSI boundaries for temperature compensation from
2778 * the EEPROM.
2779 *
2780 * Array idx 0 1 2 3 4 5 6 7 8
2781 * Matching Delta value -4 -3 -2 -1 0 +1 +2 +3 +4
2782 * Example TSSI bounds 0xF0 0xD0 0xB5 0xA0 0x88 0x45 0x25 0x15 0x00
2783 */
2784 if (rt2x00dev->curr_band == IEEE80211_BAND_2GHZ) {
2785 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG1, &eeprom);
2786 tssi_bounds[0] = rt2x00_get_field16(eeprom,
2787 EEPROM_TSSI_BOUND_BG1_MINUS4);
2788 tssi_bounds[1] = rt2x00_get_field16(eeprom,
2789 EEPROM_TSSI_BOUND_BG1_MINUS3);
2790
2791 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG2, &eeprom);
2792 tssi_bounds[2] = rt2x00_get_field16(eeprom,
2793 EEPROM_TSSI_BOUND_BG2_MINUS2);
2794 tssi_bounds[3] = rt2x00_get_field16(eeprom,
2795 EEPROM_TSSI_BOUND_BG2_MINUS1);
2796
2797 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG3, &eeprom);
2798 tssi_bounds[4] = rt2x00_get_field16(eeprom,
2799 EEPROM_TSSI_BOUND_BG3_REF);
2800 tssi_bounds[5] = rt2x00_get_field16(eeprom,
2801 EEPROM_TSSI_BOUND_BG3_PLUS1);
2802
2803 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG4, &eeprom);
2804 tssi_bounds[6] = rt2x00_get_field16(eeprom,
2805 EEPROM_TSSI_BOUND_BG4_PLUS2);
2806 tssi_bounds[7] = rt2x00_get_field16(eeprom,
2807 EEPROM_TSSI_BOUND_BG4_PLUS3);
2808
2809 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_BG5, &eeprom);
2810 tssi_bounds[8] = rt2x00_get_field16(eeprom,
2811 EEPROM_TSSI_BOUND_BG5_PLUS4);
2812
2813 step = rt2x00_get_field16(eeprom,
2814 EEPROM_TSSI_BOUND_BG5_AGC_STEP);
2815 } else {
2816 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A1, &eeprom);
2817 tssi_bounds[0] = rt2x00_get_field16(eeprom,
2818 EEPROM_TSSI_BOUND_A1_MINUS4);
2819 tssi_bounds[1] = rt2x00_get_field16(eeprom,
2820 EEPROM_TSSI_BOUND_A1_MINUS3);
2821
2822 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A2, &eeprom);
2823 tssi_bounds[2] = rt2x00_get_field16(eeprom,
2824 EEPROM_TSSI_BOUND_A2_MINUS2);
2825 tssi_bounds[3] = rt2x00_get_field16(eeprom,
2826 EEPROM_TSSI_BOUND_A2_MINUS1);
2827
2828 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A3, &eeprom);
2829 tssi_bounds[4] = rt2x00_get_field16(eeprom,
2830 EEPROM_TSSI_BOUND_A3_REF);
2831 tssi_bounds[5] = rt2x00_get_field16(eeprom,
2832 EEPROM_TSSI_BOUND_A3_PLUS1);
2833
2834 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A4, &eeprom);
2835 tssi_bounds[6] = rt2x00_get_field16(eeprom,
2836 EEPROM_TSSI_BOUND_A4_PLUS2);
2837 tssi_bounds[7] = rt2x00_get_field16(eeprom,
2838 EEPROM_TSSI_BOUND_A4_PLUS3);
2839
2840 rt2x00_eeprom_read(rt2x00dev, EEPROM_TSSI_BOUND_A5, &eeprom);
2841 tssi_bounds[8] = rt2x00_get_field16(eeprom,
2842 EEPROM_TSSI_BOUND_A5_PLUS4);
2843
2844 step = rt2x00_get_field16(eeprom,
2845 EEPROM_TSSI_BOUND_A5_AGC_STEP);
2846 }
2847
2848 /*
2849 * Check if temperature compensation is supported.
2850 */
Stanislaw Gruszkabf7e1ab2012-10-25 09:51:39 +02002851 if (tssi_bounds[4] == 0xff || step == 0xff)
Helmut Schaa9e33a352011-03-28 13:33:40 +02002852 return 0;
2853
2854 /*
2855 * Read current TSSI (BBP 49).
2856 */
2857 rt2800_bbp_read(rt2x00dev, 49, &current_tssi);
2858
2859 /*
2860 * Compare TSSI value (BBP49) with the compensation boundaries
2861 * from the EEPROM and increase or decrease tx power.
2862 */
2863 for (i = 0; i <= 3; i++) {
2864 if (current_tssi > tssi_bounds[i])
2865 break;
2866 }
2867
2868 if (i == 4) {
2869 for (i = 8; i >= 5; i--) {
2870 if (current_tssi < tssi_bounds[i])
2871 break;
2872 }
2873 }
2874
2875 return (i - 4) * step;
2876}
2877
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002878static int rt2800_get_txpower_bw_comp(struct rt2x00_dev *rt2x00dev,
2879 enum ieee80211_band band)
2880{
2881 u16 eeprom;
2882 u8 comp_en;
2883 u8 comp_type;
Helmut Schaa75faae82011-03-28 13:31:30 +02002884 int comp_value = 0;
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002885
2886 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXPOWER_DELTA, &eeprom);
2887
Helmut Schaa75faae82011-03-28 13:31:30 +02002888 /*
2889 * HT40 compensation not required.
2890 */
2891 if (eeprom == 0xffff ||
2892 !test_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags))
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002893 return 0;
2894
2895 if (band == IEEE80211_BAND_2GHZ) {
2896 comp_en = rt2x00_get_field16(eeprom,
2897 EEPROM_TXPOWER_DELTA_ENABLE_2G);
2898 if (comp_en) {
2899 comp_type = rt2x00_get_field16(eeprom,
2900 EEPROM_TXPOWER_DELTA_TYPE_2G);
2901 comp_value = rt2x00_get_field16(eeprom,
2902 EEPROM_TXPOWER_DELTA_VALUE_2G);
2903 if (!comp_type)
2904 comp_value = -comp_value;
2905 }
2906 } else {
2907 comp_en = rt2x00_get_field16(eeprom,
2908 EEPROM_TXPOWER_DELTA_ENABLE_5G);
2909 if (comp_en) {
2910 comp_type = rt2x00_get_field16(eeprom,
2911 EEPROM_TXPOWER_DELTA_TYPE_5G);
2912 comp_value = rt2x00_get_field16(eeprom,
2913 EEPROM_TXPOWER_DELTA_VALUE_5G);
2914 if (!comp_type)
2915 comp_value = -comp_value;
2916 }
2917 }
2918
2919 return comp_value;
2920}
2921
Stanislaw Gruszka1e4cf242012-10-05 13:44:14 +02002922static int rt2800_get_txpower_reg_delta(struct rt2x00_dev *rt2x00dev,
2923 int power_level, int max_power)
2924{
2925 int delta;
2926
2927 if (test_bit(CAPABILITY_POWER_LIMIT, &rt2x00dev->cap_flags))
2928 return 0;
2929
2930 /*
2931 * XXX: We don't know the maximum transmit power of our hardware since
2932 * the EEPROM doesn't expose it. We only know that we are calibrated
2933 * to 100% tx power.
2934 *
2935 * Hence, we assume the regulatory limit that cfg80211 calulated for
2936 * the current channel is our maximum and if we are requested to lower
2937 * the value we just reduce our tx power accordingly.
2938 */
2939 delta = power_level - max_power;
2940 return min(delta, 0);
2941}
2942
Helmut Schaafa71a162011-03-28 13:32:32 +02002943static u8 rt2800_compensate_txpower(struct rt2x00_dev *rt2x00dev, int is_rate_b,
2944 enum ieee80211_band band, int power_level,
2945 u8 txpower, int delta)
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002946{
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002947 u16 eeprom;
2948 u8 criterion;
2949 u8 eirp_txpower;
2950 u8 eirp_txpower_criterion;
2951 u8 reg_limit;
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002952
Ivo van Doorn7dab73b2011-04-18 15:27:06 +02002953 if (test_bit(CAPABILITY_POWER_LIMIT, &rt2x00dev->cap_flags)) {
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002954 /*
2955 * Check if eirp txpower exceed txpower_limit.
2956 * We use OFDM 6M as criterion and its eirp txpower
2957 * is stored at EEPROM_EIRP_MAX_TX_POWER.
2958 * .11b data rate need add additional 4dbm
2959 * when calculating eirp txpower.
2960 */
Stanislaw Gruszkad9bceae2012-10-05 13:44:12 +02002961 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXPOWER_BYRATE + 1,
2962 &eeprom);
2963 criterion = rt2x00_get_field16(eeprom,
2964 EEPROM_TXPOWER_BYRATE_RATE0);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002965
Stanislaw Gruszkad9bceae2012-10-05 13:44:12 +02002966 rt2x00_eeprom_read(rt2x00dev, EEPROM_EIRP_MAX_TX_POWER,
2967 &eeprom);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002968
2969 if (band == IEEE80211_BAND_2GHZ)
2970 eirp_txpower_criterion = rt2x00_get_field16(eeprom,
2971 EEPROM_EIRP_MAX_TX_POWER_2GHZ);
2972 else
2973 eirp_txpower_criterion = rt2x00_get_field16(eeprom,
2974 EEPROM_EIRP_MAX_TX_POWER_5GHZ);
2975
2976 eirp_txpower = eirp_txpower_criterion + (txpower - criterion) +
Helmut Schaa2af242e2011-03-28 13:32:01 +02002977 (is_rate_b ? 4 : 0) + delta;
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002978
2979 reg_limit = (eirp_txpower > power_level) ?
2980 (eirp_txpower - power_level) : 0;
2981 } else
2982 reg_limit = 0;
2983
Stanislaw Gruszka19f3fa22012-10-05 13:44:10 +02002984 txpower = max(0, txpower + delta - reg_limit);
2985 return min_t(u8, txpower, 0xc);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01002986}
2987
Stanislaw Gruszka7a662052012-10-05 13:44:15 +02002988/*
2989 * We configure transmit power using MAC TX_PWR_CFG_{0,...,N} registers and
2990 * BBP R1 register. TX_PWR_CFG_X allow to configure per rate TX power values,
2991 * 4 bits for each rate (tune from 0 to 15 dBm). BBP_R1 controls transmit power
2992 * for all rates, but allow to set only 4 discrete values: -12, -6, 0 and 6 dBm.
2993 * Reference per rate transmit power values are located in the EEPROM at
2994 * EEPROM_TXPOWER_BYRATE offset. We adjust them and BBP R1 settings according to
2995 * current conditions (i.e. band, bandwidth, temperature, user settings).
2996 */
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01002997static void rt2800_config_txpower(struct rt2x00_dev *rt2x00dev,
Stanislaw Gruszka146c3b02012-10-05 13:44:13 +02002998 struct ieee80211_channel *chan,
Helmut Schaa9e33a352011-03-28 13:33:40 +02002999 int power_level)
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003000{
Stanislaw Gruszkacee2c732012-10-05 13:44:09 +02003001 u8 txpower, r1;
Helmut Schaa5e846002010-07-11 12:23:09 +02003002 u16 eeprom;
Stanislaw Gruszkacee2c732012-10-05 13:44:09 +02003003 u32 reg, offset;
3004 int i, is_rate_b, delta, power_ctrl;
Stanislaw Gruszka146c3b02012-10-05 13:44:13 +02003005 enum ieee80211_band band = chan->band;
Helmut Schaa2af242e2011-03-28 13:32:01 +02003006
3007 /*
Stanislaw Gruszka7a662052012-10-05 13:44:15 +02003008 * Calculate HT40 compensation. For 40MHz we need to add or subtract
3009 * value read from EEPROM (different for 2GHz and for 5GHz).
Helmut Schaa2af242e2011-03-28 13:32:01 +02003010 */
3011 delta = rt2800_get_txpower_bw_comp(rt2x00dev, band);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003012
Helmut Schaa5e846002010-07-11 12:23:09 +02003013 /*
Stanislaw Gruszka7a662052012-10-05 13:44:15 +02003014 * Calculate temperature compensation. Depends on measurement of current
3015 * TSSI (Transmitter Signal Strength Indication) we know TX power (due
3016 * to temperature or maybe other factors) is smaller or bigger than
3017 * expected. We adjust it, based on TSSI reference and boundaries values
3018 * provided in EEPROM.
Helmut Schaa9e33a352011-03-28 13:33:40 +02003019 */
3020 delta += rt2800_get_gain_calibration_delta(rt2x00dev);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003021
Helmut Schaa5e846002010-07-11 12:23:09 +02003022 /*
Stanislaw Gruszka7a662052012-10-05 13:44:15 +02003023 * Decrease power according to user settings, on devices with unknown
3024 * maximum tx power. For other devices we take user power_level into
3025 * consideration on rt2800_compensate_txpower().
Stanislaw Gruszka1e4cf242012-10-05 13:44:14 +02003026 */
3027 delta += rt2800_get_txpower_reg_delta(rt2x00dev, power_level,
3028 chan->max_power);
3029
3030 /*
Stanislaw Gruszkacee2c732012-10-05 13:44:09 +02003031 * BBP_R1 controls TX power for all rates, it allow to set the following
3032 * gains -12, -6, 0, +6 dBm by setting values 2, 1, 0, 3 respectively.
3033 *
3034 * TODO: we do not use +6 dBm option to do not increase power beyond
3035 * regulatory limit, however this could be utilized for devices with
3036 * CAPABILITY_POWER_LIMIT.
Stanislaw Gruszka8c8d20172013-06-11 18:48:53 +02003037 *
3038 * TODO: add different temperature compensation code for RT3290 & RT5390
3039 * to allow to use BBP_R1 for those chips.
Helmut Schaa5e846002010-07-11 12:23:09 +02003040 */
Stanislaw Gruszka8c8d20172013-06-11 18:48:53 +02003041 if (!rt2x00_rt(rt2x00dev, RT3290) &&
3042 !rt2x00_rt(rt2x00dev, RT5390)) {
3043 rt2800_bbp_read(rt2x00dev, 1, &r1);
3044 if (delta <= -12) {
3045 power_ctrl = 2;
3046 delta += 12;
3047 } else if (delta <= -6) {
3048 power_ctrl = 1;
3049 delta += 6;
3050 } else {
3051 power_ctrl = 0;
3052 }
3053 rt2x00_set_field8(&r1, BBP1_TX_POWER_CTRL, power_ctrl);
3054 rt2800_bbp_write(rt2x00dev, 1, r1);
Stanislaw Gruszkacee2c732012-10-05 13:44:09 +02003055 }
Stanislaw Gruszka8c8d20172013-06-11 18:48:53 +02003056
Helmut Schaa5e846002010-07-11 12:23:09 +02003057 offset = TX_PWR_CFG_0;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003058
Helmut Schaa5e846002010-07-11 12:23:09 +02003059 for (i = 0; i < EEPROM_TXPOWER_BYRATE_SIZE; i += 2) {
3060 /* just to be safe */
3061 if (offset > TX_PWR_CFG_4)
3062 break;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003063
Helmut Schaa5e846002010-07-11 12:23:09 +02003064 rt2800_register_read(rt2x00dev, offset, &reg);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003065
Helmut Schaa5e846002010-07-11 12:23:09 +02003066 /* read the next four txpower values */
3067 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXPOWER_BYRATE + i,
3068 &eeprom);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003069
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003070 is_rate_b = i ? 0 : 1;
3071 /*
3072 * TX_PWR_CFG_0: 1MBS, TX_PWR_CFG_1: 24MBS,
Helmut Schaa5e846002010-07-11 12:23:09 +02003073 * TX_PWR_CFG_2: MCS4, TX_PWR_CFG_3: MCS12,
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003074 * TX_PWR_CFG_4: unknown
3075 */
Helmut Schaa5e846002010-07-11 12:23:09 +02003076 txpower = rt2x00_get_field16(eeprom,
3077 EEPROM_TXPOWER_BYRATE_RATE0);
Helmut Schaafa71a162011-03-28 13:32:32 +02003078 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
Helmut Schaa2af242e2011-03-28 13:32:01 +02003079 power_level, txpower, delta);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003080 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE0, txpower);
Helmut Schaa5e846002010-07-11 12:23:09 +02003081
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003082 /*
3083 * TX_PWR_CFG_0: 2MBS, TX_PWR_CFG_1: 36MBS,
Helmut Schaa5e846002010-07-11 12:23:09 +02003084 * TX_PWR_CFG_2: MCS5, TX_PWR_CFG_3: MCS13,
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003085 * TX_PWR_CFG_4: unknown
3086 */
Helmut Schaa5e846002010-07-11 12:23:09 +02003087 txpower = rt2x00_get_field16(eeprom,
3088 EEPROM_TXPOWER_BYRATE_RATE1);
Helmut Schaafa71a162011-03-28 13:32:32 +02003089 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
Helmut Schaa2af242e2011-03-28 13:32:01 +02003090 power_level, txpower, delta);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003091 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE1, txpower);
Helmut Schaa5e846002010-07-11 12:23:09 +02003092
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003093 /*
3094 * TX_PWR_CFG_0: 5.5MBS, TX_PWR_CFG_1: 48MBS,
Helmut Schaa5e846002010-07-11 12:23:09 +02003095 * TX_PWR_CFG_2: MCS6, TX_PWR_CFG_3: MCS14,
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003096 * TX_PWR_CFG_4: unknown
3097 */
Helmut Schaa5e846002010-07-11 12:23:09 +02003098 txpower = rt2x00_get_field16(eeprom,
3099 EEPROM_TXPOWER_BYRATE_RATE2);
Helmut Schaafa71a162011-03-28 13:32:32 +02003100 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
Helmut Schaa2af242e2011-03-28 13:32:01 +02003101 power_level, txpower, delta);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003102 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE2, txpower);
Helmut Schaa5e846002010-07-11 12:23:09 +02003103
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003104 /*
3105 * TX_PWR_CFG_0: 11MBS, TX_PWR_CFG_1: 54MBS,
Helmut Schaa5e846002010-07-11 12:23:09 +02003106 * TX_PWR_CFG_2: MCS7, TX_PWR_CFG_3: MCS15,
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003107 * TX_PWR_CFG_4: unknown
3108 */
Helmut Schaa5e846002010-07-11 12:23:09 +02003109 txpower = rt2x00_get_field16(eeprom,
3110 EEPROM_TXPOWER_BYRATE_RATE3);
Helmut Schaafa71a162011-03-28 13:32:32 +02003111 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
Helmut Schaa2af242e2011-03-28 13:32:01 +02003112 power_level, txpower, delta);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003113 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE3, txpower);
Helmut Schaa5e846002010-07-11 12:23:09 +02003114
3115 /* read the next four txpower values */
3116 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXPOWER_BYRATE + i + 1,
3117 &eeprom);
3118
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003119 is_rate_b = 0;
3120 /*
3121 * TX_PWR_CFG_0: 6MBS, TX_PWR_CFG_1: MCS0,
Helmut Schaa5e846002010-07-11 12:23:09 +02003122 * TX_PWR_CFG_2: MCS8, TX_PWR_CFG_3: unknown,
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003123 * TX_PWR_CFG_4: unknown
3124 */
Helmut Schaa5e846002010-07-11 12:23:09 +02003125 txpower = rt2x00_get_field16(eeprom,
3126 EEPROM_TXPOWER_BYRATE_RATE0);
Helmut Schaafa71a162011-03-28 13:32:32 +02003127 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
Helmut Schaa2af242e2011-03-28 13:32:01 +02003128 power_level, txpower, delta);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003129 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE4, txpower);
Helmut Schaa5e846002010-07-11 12:23:09 +02003130
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003131 /*
3132 * TX_PWR_CFG_0: 9MBS, TX_PWR_CFG_1: MCS1,
Helmut Schaa5e846002010-07-11 12:23:09 +02003133 * TX_PWR_CFG_2: MCS9, TX_PWR_CFG_3: unknown,
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003134 * TX_PWR_CFG_4: unknown
3135 */
Helmut Schaa5e846002010-07-11 12:23:09 +02003136 txpower = rt2x00_get_field16(eeprom,
3137 EEPROM_TXPOWER_BYRATE_RATE1);
Helmut Schaafa71a162011-03-28 13:32:32 +02003138 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
Helmut Schaa2af242e2011-03-28 13:32:01 +02003139 power_level, txpower, delta);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003140 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE5, txpower);
Helmut Schaa5e846002010-07-11 12:23:09 +02003141
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003142 /*
3143 * TX_PWR_CFG_0: 12MBS, TX_PWR_CFG_1: MCS2,
Helmut Schaa5e846002010-07-11 12:23:09 +02003144 * TX_PWR_CFG_2: MCS10, TX_PWR_CFG_3: unknown,
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003145 * TX_PWR_CFG_4: unknown
3146 */
Helmut Schaa5e846002010-07-11 12:23:09 +02003147 txpower = rt2x00_get_field16(eeprom,
3148 EEPROM_TXPOWER_BYRATE_RATE2);
Helmut Schaafa71a162011-03-28 13:32:32 +02003149 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
Helmut Schaa2af242e2011-03-28 13:32:01 +02003150 power_level, txpower, delta);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003151 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE6, txpower);
Helmut Schaa5e846002010-07-11 12:23:09 +02003152
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003153 /*
3154 * TX_PWR_CFG_0: 18MBS, TX_PWR_CFG_1: MCS3,
Helmut Schaa5e846002010-07-11 12:23:09 +02003155 * TX_PWR_CFG_2: MCS11, TX_PWR_CFG_3: unknown,
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003156 * TX_PWR_CFG_4: unknown
3157 */
Helmut Schaa5e846002010-07-11 12:23:09 +02003158 txpower = rt2x00_get_field16(eeprom,
3159 EEPROM_TXPOWER_BYRATE_RATE3);
Helmut Schaafa71a162011-03-28 13:32:32 +02003160 txpower = rt2800_compensate_txpower(rt2x00dev, is_rate_b, band,
Helmut Schaa2af242e2011-03-28 13:32:01 +02003161 power_level, txpower, delta);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003162 rt2x00_set_field32(&reg, TX_PWR_CFG_RATE7, txpower);
Helmut Schaa5e846002010-07-11 12:23:09 +02003163
3164 rt2800_register_write(rt2x00dev, offset, reg);
3165
3166 /* next TX_PWR_CFG register */
3167 offset += 4;
3168 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003169}
3170
Helmut Schaa9e33a352011-03-28 13:33:40 +02003171void rt2800_gain_calibration(struct rt2x00_dev *rt2x00dev)
3172{
Karl Beldan675a0b02013-03-25 16:26:57 +01003173 rt2800_config_txpower(rt2x00dev, rt2x00dev->hw->conf.chandef.chan,
Helmut Schaa9e33a352011-03-28 13:33:40 +02003174 rt2x00dev->tx_power);
3175}
3176EXPORT_SYMBOL_GPL(rt2800_gain_calibration);
3177
John Li2e9c43d2012-02-16 21:40:57 +08003178void rt2800_vco_calibration(struct rt2x00_dev *rt2x00dev)
3179{
3180 u32 tx_pin;
3181 u8 rfcsr;
3182
3183 /*
3184 * A voltage-controlled oscillator(VCO) is an electronic oscillator
3185 * designed to be controlled in oscillation frequency by a voltage
3186 * input. Maybe the temperature will affect the frequency of
3187 * oscillation to be shifted. The VCO calibration will be called
3188 * periodically to adjust the frequency to be precision.
3189 */
3190
3191 rt2800_register_read(rt2x00dev, TX_PIN_CFG, &tx_pin);
3192 tx_pin &= TX_PIN_CFG_PA_PE_DISABLE;
3193 rt2800_register_write(rt2x00dev, TX_PIN_CFG, tx_pin);
3194
3195 switch (rt2x00dev->chip.rf) {
3196 case RF2020:
3197 case RF3020:
3198 case RF3021:
3199 case RF3022:
3200 case RF3320:
3201 case RF3052:
3202 rt2800_rfcsr_read(rt2x00dev, 7, &rfcsr);
3203 rt2x00_set_field8(&rfcsr, RFCSR7_RF_TUNING, 1);
3204 rt2800_rfcsr_write(rt2x00dev, 7, rfcsr);
3205 break;
Woody Hunga89534e2012-06-13 15:01:16 +08003206 case RF3290:
villacis@palosanto.comccf91bd2012-05-16 21:07:12 +02003207 case RF5360:
John Li2e9c43d2012-02-16 21:40:57 +08003208 case RF5370:
3209 case RF5372:
3210 case RF5390:
Zero.Lincff3d1f2012-05-29 16:11:09 +08003211 case RF5392:
John Li2e9c43d2012-02-16 21:40:57 +08003212 rt2800_rfcsr_read(rt2x00dev, 3, &rfcsr);
Gabor Juhosd6d82022012-12-02 18:34:47 +01003213 rt2x00_set_field8(&rfcsr, RFCSR3_VCOCAL_EN, 1);
John Li2e9c43d2012-02-16 21:40:57 +08003214 rt2800_rfcsr_write(rt2x00dev, 3, rfcsr);
3215 break;
3216 default:
3217 return;
3218 }
3219
3220 mdelay(1);
3221
3222 rt2800_register_read(rt2x00dev, TX_PIN_CFG, &tx_pin);
3223 if (rt2x00dev->rf_channel <= 14) {
3224 switch (rt2x00dev->default_ant.tx_chain_num) {
3225 case 3:
3226 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_G2_EN, 1);
3227 /* fall through */
3228 case 2:
3229 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_G1_EN, 1);
3230 /* fall through */
3231 case 1:
3232 default:
3233 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_G0_EN, 1);
3234 break;
3235 }
3236 } else {
3237 switch (rt2x00dev->default_ant.tx_chain_num) {
3238 case 3:
3239 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_A2_EN, 1);
3240 /* fall through */
3241 case 2:
3242 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_A1_EN, 1);
3243 /* fall through */
3244 case 1:
3245 default:
3246 rt2x00_set_field32(&tx_pin, TX_PIN_CFG_PA_PE_A0_EN, 1);
3247 break;
3248 }
3249 }
3250 rt2800_register_write(rt2x00dev, TX_PIN_CFG, tx_pin);
3251
3252}
3253EXPORT_SYMBOL_GPL(rt2800_vco_calibration);
3254
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003255static void rt2800_config_retry_limit(struct rt2x00_dev *rt2x00dev,
3256 struct rt2x00lib_conf *libconf)
3257{
3258 u32 reg;
3259
3260 rt2800_register_read(rt2x00dev, TX_RTY_CFG, &reg);
3261 rt2x00_set_field32(&reg, TX_RTY_CFG_SHORT_RTY_LIMIT,
3262 libconf->conf->short_frame_max_tx_count);
3263 rt2x00_set_field32(&reg, TX_RTY_CFG_LONG_RTY_LIMIT,
3264 libconf->conf->long_frame_max_tx_count);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003265 rt2800_register_write(rt2x00dev, TX_RTY_CFG, reg);
3266}
3267
3268static void rt2800_config_ps(struct rt2x00_dev *rt2x00dev,
3269 struct rt2x00lib_conf *libconf)
3270{
3271 enum dev_state state =
3272 (libconf->conf->flags & IEEE80211_CONF_PS) ?
3273 STATE_SLEEP : STATE_AWAKE;
3274 u32 reg;
3275
3276 if (state == STATE_SLEEP) {
3277 rt2800_register_write(rt2x00dev, AUTOWAKEUP_CFG, 0);
3278
3279 rt2800_register_read(rt2x00dev, AUTOWAKEUP_CFG, &reg);
3280 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_AUTO_LEAD_TIME, 5);
3281 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_TBCN_BEFORE_WAKE,
3282 libconf->conf->listen_interval - 1);
3283 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_AUTOWAKE, 1);
3284 rt2800_register_write(rt2x00dev, AUTOWAKEUP_CFG, reg);
3285
3286 rt2x00dev->ops->lib->set_device_state(rt2x00dev, state);
3287 } else {
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003288 rt2800_register_read(rt2x00dev, AUTOWAKEUP_CFG, &reg);
3289 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_AUTO_LEAD_TIME, 0);
3290 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_TBCN_BEFORE_WAKE, 0);
3291 rt2x00_set_field32(&reg, AUTOWAKEUP_CFG_AUTOWAKE, 0);
3292 rt2800_register_write(rt2x00dev, AUTOWAKEUP_CFG, reg);
Gertjan van Wingerde57318582010-03-30 23:50:23 +02003293
3294 rt2x00dev->ops->lib->set_device_state(rt2x00dev, state);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003295 }
3296}
3297
3298void rt2800_config(struct rt2x00_dev *rt2x00dev,
3299 struct rt2x00lib_conf *libconf,
3300 const unsigned int flags)
3301{
3302 /* Always recalculate LNA gain before changing configuration */
3303 rt2800_config_lna_gain(rt2x00dev, libconf);
3304
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003305 if (flags & IEEE80211_CONF_CHANGE_CHANNEL) {
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003306 rt2800_config_channel(rt2x00dev, libconf->conf,
3307 &libconf->rf, &libconf->channel);
Karl Beldan675a0b02013-03-25 16:26:57 +01003308 rt2800_config_txpower(rt2x00dev, libconf->conf->chandef.chan,
Helmut Schaa9e33a352011-03-28 13:33:40 +02003309 libconf->conf->power_level);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01003310 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003311 if (flags & IEEE80211_CONF_CHANGE_POWER)
Karl Beldan675a0b02013-03-25 16:26:57 +01003312 rt2800_config_txpower(rt2x00dev, libconf->conf->chandef.chan,
Helmut Schaa9e33a352011-03-28 13:33:40 +02003313 libconf->conf->power_level);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003314 if (flags & IEEE80211_CONF_CHANGE_RETRY_LIMITS)
3315 rt2800_config_retry_limit(rt2x00dev, libconf);
3316 if (flags & IEEE80211_CONF_CHANGE_PS)
3317 rt2800_config_ps(rt2x00dev, libconf);
3318}
3319EXPORT_SYMBOL_GPL(rt2800_config);
3320
3321/*
3322 * Link tuning
3323 */
3324void rt2800_link_stats(struct rt2x00_dev *rt2x00dev, struct link_qual *qual)
3325{
3326 u32 reg;
3327
3328 /*
3329 * Update FCS error count from register.
3330 */
3331 rt2800_register_read(rt2x00dev, RX_STA_CNT0, &reg);
3332 qual->rx_failed = rt2x00_get_field32(reg, RX_STA_CNT0_CRC_ERR);
3333}
3334EXPORT_SYMBOL_GPL(rt2800_link_stats);
3335
3336static u8 rt2800_get_default_vgc(struct rt2x00_dev *rt2x00dev)
3337{
Gertjan van Wingerde8c6728b2012-09-16 22:29:49 +02003338 u8 vgc;
3339
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003340 if (rt2x00dev->curr_band == IEEE80211_BAND_2GHZ) {
Gertjan van Wingerded5385bf2010-04-11 14:31:13 +02003341 if (rt2x00_rt(rt2x00dev, RT3070) ||
Gertjan van Wingerde64522952010-04-11 14:31:14 +02003342 rt2x00_rt(rt2x00dev, RT3071) ||
Gertjan van Wingerdecc78e902010-04-11 14:31:15 +02003343 rt2x00_rt(rt2x00dev, RT3090) ||
Woody Hunga89534e2012-06-13 15:01:16 +08003344 rt2x00_rt(rt2x00dev, RT3290) ||
Gabor Juhosadde5882011-03-03 11:46:45 +01003345 rt2x00_rt(rt2x00dev, RT3390) ||
Gertjan van Wingerded961e442012-09-16 22:29:50 +02003346 rt2x00_rt(rt2x00dev, RT3572) ||
John Li2ed71882012-02-17 17:33:06 +08003347 rt2x00_rt(rt2x00dev, RT5390) ||
Stanislaw Gruszka3d815352013-03-16 19:19:49 +01003348 rt2x00_rt(rt2x00dev, RT5392) ||
3349 rt2x00_rt(rt2x00dev, RT5592))
Gertjan van Wingerde8c6728b2012-09-16 22:29:49 +02003350 vgc = 0x1c + (2 * rt2x00dev->lna_gain);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003351 else
Gertjan van Wingerde8c6728b2012-09-16 22:29:49 +02003352 vgc = 0x2e + rt2x00dev->lna_gain;
3353 } else { /* 5GHZ band */
Gertjan van Wingerded961e442012-09-16 22:29:50 +02003354 if (rt2x00_rt(rt2x00dev, RT3572))
3355 vgc = 0x22 + (rt2x00dev->lna_gain * 5) / 3;
Stanislaw Gruszka3d815352013-03-16 19:19:49 +01003356 else if (rt2x00_rt(rt2x00dev, RT5592))
3357 vgc = 0x24 + (2 * rt2x00dev->lna_gain);
Gertjan van Wingerded961e442012-09-16 22:29:50 +02003358 else {
3359 if (!test_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags))
3360 vgc = 0x32 + (rt2x00dev->lna_gain * 5) / 3;
3361 else
3362 vgc = 0x3a + (rt2x00dev->lna_gain * 5) / 3;
3363 }
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003364 }
3365
Gertjan van Wingerde8c6728b2012-09-16 22:29:49 +02003366 return vgc;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003367}
3368
3369static inline void rt2800_set_vgc(struct rt2x00_dev *rt2x00dev,
3370 struct link_qual *qual, u8 vgc_level)
3371{
3372 if (qual->vgc_level != vgc_level) {
Stanislaw Gruszka3d815352013-03-16 19:19:49 +01003373 if (rt2x00_rt(rt2x00dev, RT5592)) {
3374 rt2800_bbp_write(rt2x00dev, 83, qual->rssi > -65 ? 0x4a : 0x7a);
3375 rt2800_bbp_write_with_rx_chain(rt2x00dev, 66, vgc_level);
3376 } else
3377 rt2800_bbp_write(rt2x00dev, 66, vgc_level);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003378 qual->vgc_level = vgc_level;
3379 qual->vgc_level_reg = vgc_level;
3380 }
3381}
3382
3383void rt2800_reset_tuner(struct rt2x00_dev *rt2x00dev, struct link_qual *qual)
3384{
3385 rt2800_set_vgc(rt2x00dev, qual, rt2800_get_default_vgc(rt2x00dev));
3386}
3387EXPORT_SYMBOL_GPL(rt2800_reset_tuner);
3388
3389void rt2800_link_tuner(struct rt2x00_dev *rt2x00dev, struct link_qual *qual,
3390 const u32 count)
3391{
Stanislaw Gruszka3d815352013-03-16 19:19:49 +01003392 u8 vgc;
3393
Gertjan van Wingerde8d0c9b62010-04-11 14:31:10 +02003394 if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860C))
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003395 return;
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003396 /*
Stanislaw Gruszka3d815352013-03-16 19:19:49 +01003397 * When RSSI is better then -80 increase VGC level with 0x10, except
3398 * for rt5592 chip.
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003399 */
Stanislaw Gruszka3d815352013-03-16 19:19:49 +01003400
3401 vgc = rt2800_get_default_vgc(rt2x00dev);
3402
3403 if (rt2x00_rt(rt2x00dev, RT5592) && qual->rssi > -65)
3404 vgc += 0x20;
3405 else if (qual->rssi > -80)
3406 vgc += 0x10;
3407
3408 rt2800_set_vgc(rt2x00dev, qual, vgc);
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +01003409}
3410EXPORT_SYMBOL_GPL(rt2800_link_tuner);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003411
3412/*
3413 * Initialization functions.
3414 */
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02003415static int rt2800_init_registers(struct rt2x00_dev *rt2x00dev)
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003416{
3417 u32 reg;
Gertjan van Wingerded5385bf2010-04-11 14:31:13 +02003418 u16 eeprom;
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003419 unsigned int i;
Gertjan van Wingerdee3a896b2010-06-03 10:52:04 +02003420 int ret;
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003421
Jakub Kicinskif7b395e2012-04-03 03:40:47 +02003422 rt2800_disable_wpdma(rt2x00dev);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003423
Gertjan van Wingerdee3a896b2010-06-03 10:52:04 +02003424 ret = rt2800_drv_init_registers(rt2x00dev);
3425 if (ret)
3426 return ret;
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003427
3428 rt2800_register_read(rt2x00dev, BCN_OFFSET0, &reg);
3429 rt2x00_set_field32(&reg, BCN_OFFSET0_BCN0, 0xe0); /* 0x3800 */
3430 rt2x00_set_field32(&reg, BCN_OFFSET0_BCN1, 0xe8); /* 0x3a00 */
3431 rt2x00_set_field32(&reg, BCN_OFFSET0_BCN2, 0xf0); /* 0x3c00 */
3432 rt2x00_set_field32(&reg, BCN_OFFSET0_BCN3, 0xf8); /* 0x3e00 */
3433 rt2800_register_write(rt2x00dev, BCN_OFFSET0, reg);
3434
3435 rt2800_register_read(rt2x00dev, BCN_OFFSET1, &reg);
3436 rt2x00_set_field32(&reg, BCN_OFFSET1_BCN4, 0xc8); /* 0x3200 */
3437 rt2x00_set_field32(&reg, BCN_OFFSET1_BCN5, 0xd0); /* 0x3400 */
3438 rt2x00_set_field32(&reg, BCN_OFFSET1_BCN6, 0x77); /* 0x1dc0 */
3439 rt2x00_set_field32(&reg, BCN_OFFSET1_BCN7, 0x6f); /* 0x1bc0 */
3440 rt2800_register_write(rt2x00dev, BCN_OFFSET1, reg);
3441
3442 rt2800_register_write(rt2x00dev, LEGACY_BASIC_RATE, 0x0000013f);
3443 rt2800_register_write(rt2x00dev, HT_BASIC_RATE, 0x00008003);
3444
3445 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000);
3446
3447 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
Helmut Schaa8544df32010-07-11 12:29:49 +02003448 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_INTERVAL, 1600);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003449 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 0);
3450 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_SYNC, 0);
3451 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 0);
3452 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
3453 rt2x00_set_field32(&reg, BCN_TIME_CFG_TX_TIME_COMPENSATE, 0);
3454 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
3455
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003456 rt2800_config_filter(rt2x00dev, FIF_ALLMULTI);
3457
3458 rt2800_register_read(rt2x00dev, BKOFF_SLOT_CFG, &reg);
3459 rt2x00_set_field32(&reg, BKOFF_SLOT_CFG_SLOT_TIME, 9);
3460 rt2x00_set_field32(&reg, BKOFF_SLOT_CFG_CC_DELAY_TIME, 2);
3461 rt2800_register_write(rt2x00dev, BKOFF_SLOT_CFG, reg);
3462
Woody Hunga89534e2012-06-13 15:01:16 +08003463 if (rt2x00_rt(rt2x00dev, RT3290)) {
3464 rt2800_register_read(rt2x00dev, WLAN_FUN_CTRL, &reg);
3465 if (rt2x00_get_field32(reg, WLAN_EN) == 1) {
3466 rt2x00_set_field32(&reg, PCIE_APP0_CLK_REQ, 1);
3467 rt2800_register_write(rt2x00dev, WLAN_FUN_CTRL, reg);
3468 }
3469
3470 rt2800_register_read(rt2x00dev, CMB_CTRL, &reg);
3471 if (!(rt2x00_get_field32(reg, LDO0_EN) == 1)) {
3472 rt2x00_set_field32(&reg, LDO0_EN, 1);
3473 rt2x00_set_field32(&reg, LDO_BGSEL, 3);
3474 rt2800_register_write(rt2x00dev, CMB_CTRL, reg);
3475 }
3476
3477 rt2800_register_read(rt2x00dev, OSC_CTRL, &reg);
3478 rt2x00_set_field32(&reg, OSC_ROSC_EN, 1);
3479 rt2x00_set_field32(&reg, OSC_CAL_REQ, 1);
3480 rt2x00_set_field32(&reg, OSC_REF_CYCLE, 0x27);
3481 rt2800_register_write(rt2x00dev, OSC_CTRL, reg);
3482
3483 rt2800_register_read(rt2x00dev, COEX_CFG0, &reg);
3484 rt2x00_set_field32(&reg, COEX_CFG_ANT, 0x5e);
3485 rt2800_register_write(rt2x00dev, COEX_CFG0, reg);
3486
3487 rt2800_register_read(rt2x00dev, COEX_CFG2, &reg);
3488 rt2x00_set_field32(&reg, BT_COEX_CFG1, 0x00);
3489 rt2x00_set_field32(&reg, BT_COEX_CFG0, 0x17);
3490 rt2x00_set_field32(&reg, WL_COEX_CFG1, 0x93);
3491 rt2x00_set_field32(&reg, WL_COEX_CFG0, 0x7f);
3492 rt2800_register_write(rt2x00dev, COEX_CFG2, reg);
3493
3494 rt2800_register_read(rt2x00dev, PLL_CTRL, &reg);
3495 rt2x00_set_field32(&reg, PLL_CONTROL, 1);
3496 rt2800_register_write(rt2x00dev, PLL_CTRL, reg);
3497 }
3498
Gertjan van Wingerde64522952010-04-11 14:31:14 +02003499 if (rt2x00_rt(rt2x00dev, RT3071) ||
Gertjan van Wingerdecc78e902010-04-11 14:31:15 +02003500 rt2x00_rt(rt2x00dev, RT3090) ||
Woody Hunga89534e2012-06-13 15:01:16 +08003501 rt2x00_rt(rt2x00dev, RT3290) ||
Gertjan van Wingerdecc78e902010-04-11 14:31:15 +02003502 rt2x00_rt(rt2x00dev, RT3390)) {
Woody Hunga89534e2012-06-13 15:01:16 +08003503
3504 if (rt2x00_rt(rt2x00dev, RT3290))
3505 rt2800_register_write(rt2x00dev, TX_SW_CFG0,
3506 0x00000404);
3507 else
3508 rt2800_register_write(rt2x00dev, TX_SW_CFG0,
3509 0x00000400);
3510
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003511 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00000000);
Gertjan van Wingerde64522952010-04-11 14:31:14 +02003512 if (rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) ||
Gertjan van Wingerdecc78e902010-04-11 14:31:15 +02003513 rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E) ||
3514 rt2x00_rt_rev_lt(rt2x00dev, RT3390, REV_RT3390E)) {
RA-Jay Hung38c8a562010-12-13 12:31:27 +01003515 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
3516 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_DAC_TEST))
Gertjan van Wingerded5385bf2010-04-11 14:31:13 +02003517 rt2800_register_write(rt2x00dev, TX_SW_CFG2,
3518 0x0000002c);
3519 else
3520 rt2800_register_write(rt2x00dev, TX_SW_CFG2,
3521 0x0000000f);
3522 } else {
3523 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000);
3524 }
Gertjan van Wingerded5385bf2010-04-11 14:31:13 +02003525 } else if (rt2x00_rt(rt2x00dev, RT3070)) {
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003526 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000400);
Gertjan van Wingerde8cdd15e2010-04-11 14:31:12 +02003527
3528 if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F)) {
3529 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00000000);
3530 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x0000002c);
3531 } else {
3532 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
3533 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000);
3534 }
Helmut Schaac295a812010-06-03 10:52:13 +02003535 } else if (rt2800_is_305x_soc(rt2x00dev)) {
3536 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000400);
3537 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00000000);
Helmut Schaa961636b2011-04-18 15:28:27 +02003538 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000030);
Daniel Golle03839952012-09-09 14:24:39 +03003539 } else if (rt2x00_rt(rt2x00dev, RT3352)) {
3540 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000402);
3541 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
3542 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000);
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02003543 } else if (rt2x00_rt(rt2x00dev, RT3572)) {
3544 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000400);
3545 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
John Li2ed71882012-02-17 17:33:06 +08003546 } else if (rt2x00_rt(rt2x00dev, RT5390) ||
Stanislaw Gruszka76413282013-03-16 19:19:33 +01003547 rt2x00_rt(rt2x00dev, RT5392) ||
3548 rt2x00_rt(rt2x00dev, RT5592)) {
Gabor Juhosadde5882011-03-03 11:46:45 +01003549 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000404);
3550 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
3551 rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003552 } else {
3553 rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000000);
3554 rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606);
3555 }
3556
3557 rt2800_register_read(rt2x00dev, TX_LINK_CFG, &reg);
3558 rt2x00_set_field32(&reg, TX_LINK_CFG_REMOTE_MFB_LIFETIME, 32);
3559 rt2x00_set_field32(&reg, TX_LINK_CFG_MFB_ENABLE, 0);
3560 rt2x00_set_field32(&reg, TX_LINK_CFG_REMOTE_UMFS_ENABLE, 0);
3561 rt2x00_set_field32(&reg, TX_LINK_CFG_TX_MRQ_EN, 0);
3562 rt2x00_set_field32(&reg, TX_LINK_CFG_TX_RDG_EN, 0);
3563 rt2x00_set_field32(&reg, TX_LINK_CFG_TX_CF_ACK_EN, 1);
3564 rt2x00_set_field32(&reg, TX_LINK_CFG_REMOTE_MFB, 0);
3565 rt2x00_set_field32(&reg, TX_LINK_CFG_REMOTE_MFS, 0);
3566 rt2800_register_write(rt2x00dev, TX_LINK_CFG, reg);
3567
3568 rt2800_register_read(rt2x00dev, TX_TIMEOUT_CFG, &reg);
3569 rt2x00_set_field32(&reg, TX_TIMEOUT_CFG_MPDU_LIFETIME, 9);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003570 rt2x00_set_field32(&reg, TX_TIMEOUT_CFG_RX_ACK_TIMEOUT, 32);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003571 rt2x00_set_field32(&reg, TX_TIMEOUT_CFG_TX_OP_TIMEOUT, 10);
3572 rt2800_register_write(rt2x00dev, TX_TIMEOUT_CFG, reg);
3573
3574 rt2800_register_read(rt2x00dev, MAX_LEN_CFG, &reg);
3575 rt2x00_set_field32(&reg, MAX_LEN_CFG_MAX_MPDU, AGGREGATION_SIZE);
Gertjan van Wingerde8d0c9b62010-04-11 14:31:10 +02003576 if (rt2x00_rt_rev_gte(rt2x00dev, RT2872, REV_RT2872E) ||
Gertjan van Wingerde49e721e2010-02-13 20:55:49 +01003577 rt2x00_rt(rt2x00dev, RT2883) ||
Gertjan van Wingerde8d0c9b62010-04-11 14:31:10 +02003578 rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070E))
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003579 rt2x00_set_field32(&reg, MAX_LEN_CFG_MAX_PSDU, 2);
3580 else
3581 rt2x00_set_field32(&reg, MAX_LEN_CFG_MAX_PSDU, 1);
3582 rt2x00_set_field32(&reg, MAX_LEN_CFG_MIN_PSDU, 0);
3583 rt2x00_set_field32(&reg, MAX_LEN_CFG_MIN_MPDU, 0);
3584 rt2800_register_write(rt2x00dev, MAX_LEN_CFG, reg);
3585
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003586 rt2800_register_read(rt2x00dev, LED_CFG, &reg);
3587 rt2x00_set_field32(&reg, LED_CFG_ON_PERIOD, 70);
3588 rt2x00_set_field32(&reg, LED_CFG_OFF_PERIOD, 30);
3589 rt2x00_set_field32(&reg, LED_CFG_SLOW_BLINK_PERIOD, 3);
3590 rt2x00_set_field32(&reg, LED_CFG_R_LED_MODE, 3);
3591 rt2x00_set_field32(&reg, LED_CFG_G_LED_MODE, 3);
3592 rt2x00_set_field32(&reg, LED_CFG_Y_LED_MODE, 3);
3593 rt2x00_set_field32(&reg, LED_CFG_LED_POLAR, 1);
3594 rt2800_register_write(rt2x00dev, LED_CFG, reg);
3595
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003596 rt2800_register_write(rt2x00dev, PBF_MAX_PCNT, 0x1f3fbf9f);
3597
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003598 rt2800_register_read(rt2x00dev, TX_RTY_CFG, &reg);
3599 rt2x00_set_field32(&reg, TX_RTY_CFG_SHORT_RTY_LIMIT, 15);
3600 rt2x00_set_field32(&reg, TX_RTY_CFG_LONG_RTY_LIMIT, 31);
3601 rt2x00_set_field32(&reg, TX_RTY_CFG_LONG_RTY_THRE, 2000);
3602 rt2x00_set_field32(&reg, TX_RTY_CFG_NON_AGG_RTY_MODE, 0);
3603 rt2x00_set_field32(&reg, TX_RTY_CFG_AGG_RTY_MODE, 0);
3604 rt2x00_set_field32(&reg, TX_RTY_CFG_TX_AUTO_FB_ENABLE, 1);
3605 rt2800_register_write(rt2x00dev, TX_RTY_CFG, reg);
3606
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003607 rt2800_register_read(rt2x00dev, AUTO_RSP_CFG, &reg);
3608 rt2x00_set_field32(&reg, AUTO_RSP_CFG_AUTORESPONDER, 1);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003609 rt2x00_set_field32(&reg, AUTO_RSP_CFG_BAC_ACK_POLICY, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003610 rt2x00_set_field32(&reg, AUTO_RSP_CFG_CTS_40_MMODE, 0);
3611 rt2x00_set_field32(&reg, AUTO_RSP_CFG_CTS_40_MREF, 0);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003612 rt2x00_set_field32(&reg, AUTO_RSP_CFG_AR_PREAMBLE, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003613 rt2x00_set_field32(&reg, AUTO_RSP_CFG_DUAL_CTS_EN, 0);
3614 rt2x00_set_field32(&reg, AUTO_RSP_CFG_ACK_CTS_PSM_BIT, 0);
3615 rt2800_register_write(rt2x00dev, AUTO_RSP_CFG, reg);
3616
3617 rt2800_register_read(rt2x00dev, CCK_PROT_CFG, &reg);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003618 rt2x00_set_field32(&reg, CCK_PROT_CFG_PROTECT_RATE, 3);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003619 rt2x00_set_field32(&reg, CCK_PROT_CFG_PROTECT_CTRL, 0);
Shiang Tu6f492b62011-02-20 13:56:54 +01003620 rt2x00_set_field32(&reg, CCK_PROT_CFG_PROTECT_NAV_SHORT, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003621 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3622 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3623 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_MM20, 1);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003624 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_MM40, 0);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003625 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_GF20, 1);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003626 rt2x00_set_field32(&reg, CCK_PROT_CFG_TX_OP_ALLOW_GF40, 0);
3627 rt2x00_set_field32(&reg, CCK_PROT_CFG_RTS_TH_EN, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003628 rt2800_register_write(rt2x00dev, CCK_PROT_CFG, reg);
3629
3630 rt2800_register_read(rt2x00dev, OFDM_PROT_CFG, &reg);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003631 rt2x00_set_field32(&reg, OFDM_PROT_CFG_PROTECT_RATE, 3);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003632 rt2x00_set_field32(&reg, OFDM_PROT_CFG_PROTECT_CTRL, 0);
Shiang Tu6f492b62011-02-20 13:56:54 +01003633 rt2x00_set_field32(&reg, OFDM_PROT_CFG_PROTECT_NAV_SHORT, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003634 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3635 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3636 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_MM20, 1);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003637 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_MM40, 0);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003638 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_GF20, 1);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003639 rt2x00_set_field32(&reg, OFDM_PROT_CFG_TX_OP_ALLOW_GF40, 0);
3640 rt2x00_set_field32(&reg, OFDM_PROT_CFG_RTS_TH_EN, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003641 rt2800_register_write(rt2x00dev, OFDM_PROT_CFG, reg);
3642
3643 rt2800_register_read(rt2x00dev, MM20_PROT_CFG, &reg);
3644 rt2x00_set_field32(&reg, MM20_PROT_CFG_PROTECT_RATE, 0x4004);
3645 rt2x00_set_field32(&reg, MM20_PROT_CFG_PROTECT_CTRL, 0);
Shiang Tu6f492b62011-02-20 13:56:54 +01003646 rt2x00_set_field32(&reg, MM20_PROT_CFG_PROTECT_NAV_SHORT, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003647 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3648 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3649 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3650 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_MM40, 0);
3651 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3652 rt2x00_set_field32(&reg, MM20_PROT_CFG_TX_OP_ALLOW_GF40, 0);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003653 rt2x00_set_field32(&reg, MM20_PROT_CFG_RTS_TH_EN, 0);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003654 rt2800_register_write(rt2x00dev, MM20_PROT_CFG, reg);
3655
3656 rt2800_register_read(rt2x00dev, MM40_PROT_CFG, &reg);
3657 rt2x00_set_field32(&reg, MM40_PROT_CFG_PROTECT_RATE, 0x4084);
Helmut Schaad13a97f2010-10-02 11:29:08 +02003658 rt2x00_set_field32(&reg, MM40_PROT_CFG_PROTECT_CTRL, 0);
Shiang Tu6f492b62011-02-20 13:56:54 +01003659 rt2x00_set_field32(&reg, MM40_PROT_CFG_PROTECT_NAV_SHORT, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003660 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3661 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3662 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3663 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_MM40, 1);
3664 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3665 rt2x00_set_field32(&reg, MM40_PROT_CFG_TX_OP_ALLOW_GF40, 1);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003666 rt2x00_set_field32(&reg, MM40_PROT_CFG_RTS_TH_EN, 0);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003667 rt2800_register_write(rt2x00dev, MM40_PROT_CFG, reg);
3668
3669 rt2800_register_read(rt2x00dev, GF20_PROT_CFG, &reg);
3670 rt2x00_set_field32(&reg, GF20_PROT_CFG_PROTECT_RATE, 0x4004);
3671 rt2x00_set_field32(&reg, GF20_PROT_CFG_PROTECT_CTRL, 0);
Shiang Tu6f492b62011-02-20 13:56:54 +01003672 rt2x00_set_field32(&reg, GF20_PROT_CFG_PROTECT_NAV_SHORT, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003673 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3674 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3675 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3676 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_MM40, 0);
3677 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3678 rt2x00_set_field32(&reg, GF20_PROT_CFG_TX_OP_ALLOW_GF40, 0);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003679 rt2x00_set_field32(&reg, GF20_PROT_CFG_RTS_TH_EN, 0);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003680 rt2800_register_write(rt2x00dev, GF20_PROT_CFG, reg);
3681
3682 rt2800_register_read(rt2x00dev, GF40_PROT_CFG, &reg);
3683 rt2x00_set_field32(&reg, GF40_PROT_CFG_PROTECT_RATE, 0x4084);
3684 rt2x00_set_field32(&reg, GF40_PROT_CFG_PROTECT_CTRL, 0);
Shiang Tu6f492b62011-02-20 13:56:54 +01003685 rt2x00_set_field32(&reg, GF40_PROT_CFG_PROTECT_NAV_SHORT, 1);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003686 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_CCK, 1);
3687 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_OFDM, 1);
3688 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_MM20, 1);
3689 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_MM40, 1);
3690 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_GF20, 1);
3691 rt2x00_set_field32(&reg, GF40_PROT_CFG_TX_OP_ALLOW_GF40, 1);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003692 rt2x00_set_field32(&reg, GF40_PROT_CFG_RTS_TH_EN, 0);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003693 rt2800_register_write(rt2x00dev, GF40_PROT_CFG, reg);
3694
Gertjan van Wingerdecea90e52010-02-13 20:55:47 +01003695 if (rt2x00_is_usb(rt2x00dev)) {
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003696 rt2800_register_write(rt2x00dev, PBF_CFG, 0xf40006);
3697
3698 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
3699 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0);
3700 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_DMA_BUSY, 0);
3701 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 0);
3702 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_RX_DMA_BUSY, 0);
3703 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_WP_DMA_BURST_SIZE, 3);
3704 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 0);
3705 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_BIG_ENDIAN, 0);
3706 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_RX_HDR_SCATTER, 0);
3707 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_HDR_SEG_LEN, 0);
3708 rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
3709 }
3710
Helmut Schaa961621a2010-11-04 20:36:59 +01003711 /*
3712 * The legacy driver also sets TXOP_CTRL_CFG_RESERVED_TRUN_EN to 1
3713 * although it is reserved.
3714 */
3715 rt2800_register_read(rt2x00dev, TXOP_CTRL_CFG, &reg);
3716 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_TIMEOUT_TRUN_EN, 1);
3717 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_AC_TRUN_EN, 1);
3718 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_TXRATEGRP_TRUN_EN, 1);
3719 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_USER_MODE_TRUN_EN, 1);
3720 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_MIMO_PS_TRUN_EN, 1);
3721 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_RESERVED_TRUN_EN, 1);
3722 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_LSIG_TXOP_EN, 0);
3723 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_EXT_CCA_EN, 0);
3724 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_EXT_CCA_DLY, 88);
3725 rt2x00_set_field32(&reg, TXOP_CTRL_CFG_EXT_CWMIN, 0);
3726 rt2800_register_write(rt2x00dev, TXOP_CTRL_CFG, reg);
3727
Stanislaw Gruszka76413282013-03-16 19:19:33 +01003728 reg = rt2x00_rt(rt2x00dev, RT5592) ? 0x00000082 : 0x00000002;
3729 rt2800_register_write(rt2x00dev, TXOP_HLDR_ET, reg);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003730
3731 rt2800_register_read(rt2x00dev, TX_RTS_CFG, &reg);
3732 rt2x00_set_field32(&reg, TX_RTS_CFG_AUTO_RTS_RETRY_LIMIT, 32);
3733 rt2x00_set_field32(&reg, TX_RTS_CFG_RTS_THRES,
3734 IEEE80211_MAX_RTS_THRESHOLD);
3735 rt2x00_set_field32(&reg, TX_RTS_CFG_RTS_FBK_EN, 0);
3736 rt2800_register_write(rt2x00dev, TX_RTS_CFG, reg);
3737
3738 rt2800_register_write(rt2x00dev, EXP_ACK_TIME, 0x002400ca);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003739
Helmut Schaaa21c2ab2010-05-06 12:29:04 +02003740 /*
3741 * Usually the CCK SIFS time should be set to 10 and the OFDM SIFS
3742 * time should be set to 16. However, the original Ralink driver uses
3743 * 16 for both and indeed using a value of 10 for CCK SIFS results in
3744 * connection problems with 11g + CTS protection. Hence, use the same
3745 * defaults as the Ralink driver: 16 for both, CCK and OFDM SIFS.
3746 */
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003747 rt2800_register_read(rt2x00dev, XIFS_TIME_CFG, &reg);
Helmut Schaaa21c2ab2010-05-06 12:29:04 +02003748 rt2x00_set_field32(&reg, XIFS_TIME_CFG_CCKM_SIFS_TIME, 16);
3749 rt2x00_set_field32(&reg, XIFS_TIME_CFG_OFDM_SIFS_TIME, 16);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02003750 rt2x00_set_field32(&reg, XIFS_TIME_CFG_OFDM_XIFS_TIME, 4);
3751 rt2x00_set_field32(&reg, XIFS_TIME_CFG_EIFS, 314);
3752 rt2x00_set_field32(&reg, XIFS_TIME_CFG_BB_RXEND_ENABLE, 1);
3753 rt2800_register_write(rt2x00dev, XIFS_TIME_CFG, reg);
3754
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003755 rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0x00000003);
3756
3757 /*
3758 * ASIC will keep garbage value after boot, clear encryption keys.
3759 */
3760 for (i = 0; i < 4; i++)
3761 rt2800_register_write(rt2x00dev,
3762 SHARED_KEY_MODE_ENTRY(i), 0);
3763
3764 for (i = 0; i < 256; i++) {
Helmut Schaad7d259d2011-09-08 14:39:04 +02003765 rt2800_config_wcid(rt2x00dev, NULL, i);
3766 rt2800_delete_wcid_attr(rt2x00dev, i);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003767 rt2800_register_write(rt2x00dev, MAC_IVEIV_ENTRY(i), 0);
3768 }
3769
3770 /*
3771 * Clear all beacons
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003772 */
Helmut Schaa69cf36a2011-01-30 13:16:03 +01003773 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE0);
3774 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE1);
3775 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE2);
3776 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE3);
3777 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE4);
3778 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE5);
3779 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE6);
3780 rt2800_clear_beacon_register(rt2x00dev, HW_BEACON_BASE7);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003781
Gertjan van Wingerdecea90e52010-02-13 20:55:47 +01003782 if (rt2x00_is_usb(rt2x00dev)) {
Gertjan van Wingerde785c3c02010-06-03 10:51:59 +02003783 rt2800_register_read(rt2x00dev, US_CYC_CNT, &reg);
3784 rt2x00_set_field32(&reg, US_CYC_CNT_CLOCK_CYCLE, 30);
3785 rt2800_register_write(rt2x00dev, US_CYC_CNT, reg);
RA-Jay Hungc6fcc0e2011-01-30 13:21:22 +01003786 } else if (rt2x00_is_pcie(rt2x00dev)) {
3787 rt2800_register_read(rt2x00dev, US_CYC_CNT, &reg);
3788 rt2x00_set_field32(&reg, US_CYC_CNT_CLOCK_CYCLE, 125);
3789 rt2800_register_write(rt2x00dev, US_CYC_CNT, reg);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003790 }
3791
3792 rt2800_register_read(rt2x00dev, HT_FBK_CFG0, &reg);
3793 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS0FBK, 0);
3794 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS1FBK, 0);
3795 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS2FBK, 1);
3796 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS3FBK, 2);
3797 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS4FBK, 3);
3798 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS5FBK, 4);
3799 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS6FBK, 5);
3800 rt2x00_set_field32(&reg, HT_FBK_CFG0_HTMCS7FBK, 6);
3801 rt2800_register_write(rt2x00dev, HT_FBK_CFG0, reg);
3802
3803 rt2800_register_read(rt2x00dev, HT_FBK_CFG1, &reg);
3804 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS8FBK, 8);
3805 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS9FBK, 8);
3806 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS10FBK, 9);
3807 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS11FBK, 10);
3808 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS12FBK, 11);
3809 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS13FBK, 12);
3810 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS14FBK, 13);
3811 rt2x00_set_field32(&reg, HT_FBK_CFG1_HTMCS15FBK, 14);
3812 rt2800_register_write(rt2x00dev, HT_FBK_CFG1, reg);
3813
3814 rt2800_register_read(rt2x00dev, LG_FBK_CFG0, &reg);
3815 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS0FBK, 8);
3816 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS1FBK, 8);
3817 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS2FBK, 9);
3818 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS3FBK, 10);
3819 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS4FBK, 11);
3820 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS5FBK, 12);
3821 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS6FBK, 13);
3822 rt2x00_set_field32(&reg, LG_FBK_CFG0_OFDMMCS7FBK, 14);
3823 rt2800_register_write(rt2x00dev, LG_FBK_CFG0, reg);
3824
3825 rt2800_register_read(rt2x00dev, LG_FBK_CFG1, &reg);
3826 rt2x00_set_field32(&reg, LG_FBK_CFG0_CCKMCS0FBK, 0);
3827 rt2x00_set_field32(&reg, LG_FBK_CFG0_CCKMCS1FBK, 0);
3828 rt2x00_set_field32(&reg, LG_FBK_CFG0_CCKMCS2FBK, 1);
3829 rt2x00_set_field32(&reg, LG_FBK_CFG0_CCKMCS3FBK, 2);
3830 rt2800_register_write(rt2x00dev, LG_FBK_CFG1, reg);
3831
3832 /*
Helmut Schaa47ee3eb2010-09-08 20:56:04 +02003833 * Do not force the BA window size, we use the TXWI to set it
3834 */
3835 rt2800_register_read(rt2x00dev, AMPDU_BA_WINSIZE, &reg);
3836 rt2x00_set_field32(&reg, AMPDU_BA_WINSIZE_FORCE_WINSIZE_ENABLE, 0);
3837 rt2x00_set_field32(&reg, AMPDU_BA_WINSIZE_FORCE_WINSIZE, 0);
3838 rt2800_register_write(rt2x00dev, AMPDU_BA_WINSIZE, reg);
3839
3840 /*
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003841 * We must clear the error counters.
3842 * These registers are cleared on read,
3843 * so we may pass a useless variable to store the value.
3844 */
3845 rt2800_register_read(rt2x00dev, RX_STA_CNT0, &reg);
3846 rt2800_register_read(rt2x00dev, RX_STA_CNT1, &reg);
3847 rt2800_register_read(rt2x00dev, RX_STA_CNT2, &reg);
3848 rt2800_register_read(rt2x00dev, TX_STA_CNT0, &reg);
3849 rt2800_register_read(rt2x00dev, TX_STA_CNT1, &reg);
3850 rt2800_register_read(rt2x00dev, TX_STA_CNT2, &reg);
3851
Helmut Schaa9f926fb2010-07-11 12:28:23 +02003852 /*
3853 * Setup leadtime for pre tbtt interrupt to 6ms
3854 */
3855 rt2800_register_read(rt2x00dev, INT_TIMER_CFG, &reg);
3856 rt2x00_set_field32(&reg, INT_TIMER_CFG_PRE_TBTT_TIMER, 6 << 4);
3857 rt2800_register_write(rt2x00dev, INT_TIMER_CFG, reg);
3858
Helmut Schaa977206d2010-12-13 12:31:58 +01003859 /*
3860 * Set up channel statistics timer
3861 */
3862 rt2800_register_read(rt2x00dev, CH_TIME_CFG, &reg);
3863 rt2x00_set_field32(&reg, CH_TIME_CFG_EIFS_BUSY, 1);
3864 rt2x00_set_field32(&reg, CH_TIME_CFG_NAV_BUSY, 1);
3865 rt2x00_set_field32(&reg, CH_TIME_CFG_RX_BUSY, 1);
3866 rt2x00_set_field32(&reg, CH_TIME_CFG_TX_BUSY, 1);
3867 rt2x00_set_field32(&reg, CH_TIME_CFG_TMR_EN, 1);
3868 rt2800_register_write(rt2x00dev, CH_TIME_CFG, reg);
3869
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003870 return 0;
3871}
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003872
3873static int rt2800_wait_bbp_rf_ready(struct rt2x00_dev *rt2x00dev)
3874{
3875 unsigned int i;
3876 u32 reg;
3877
3878 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
3879 rt2800_register_read(rt2x00dev, MAC_STATUS_CFG, &reg);
3880 if (!rt2x00_get_field32(reg, MAC_STATUS_CFG_BBP_RF_BUSY))
3881 return 0;
3882
3883 udelay(REGISTER_BUSY_DELAY);
3884 }
3885
Joe Perchesec9c4982013-04-19 08:33:40 -07003886 rt2x00_err(rt2x00dev, "BBP/RF register access failed, aborting\n");
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003887 return -EACCES;
3888}
3889
3890static int rt2800_wait_bbp_ready(struct rt2x00_dev *rt2x00dev)
3891{
3892 unsigned int i;
3893 u8 value;
3894
3895 /*
3896 * BBP was enabled after firmware was loaded,
3897 * but we need to reactivate it now.
3898 */
3899 rt2800_register_write(rt2x00dev, H2M_BBP_AGENT, 0);
3900 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
3901 msleep(1);
3902
3903 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
3904 rt2800_bbp_read(rt2x00dev, 0, &value);
3905 if ((value != 0xff) && (value != 0x00))
3906 return 0;
3907 udelay(REGISTER_BUSY_DELAY);
3908 }
3909
Joe Perchesec9c4982013-04-19 08:33:40 -07003910 rt2x00_err(rt2x00dev, "BBP register access failed, aborting\n");
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01003911 return -EACCES;
3912}
3913
Stanislaw Gruszkaa7bbbe52013-03-16 19:19:34 +01003914static void rt2800_bbp4_mac_if_ctrl(struct rt2x00_dev *rt2x00dev)
3915{
3916 u8 value;
3917
3918 rt2800_bbp_read(rt2x00dev, 4, &value);
3919 rt2x00_set_field8(&value, BBP4_MAC_IF_CTRL, 1);
3920 rt2800_bbp_write(rt2x00dev, 4, value);
3921}
3922
Stanislaw Gruszkac2675482013-03-16 19:19:41 +01003923static void rt2800_init_freq_calibration(struct rt2x00_dev *rt2x00dev)
3924{
3925 rt2800_bbp_write(rt2x00dev, 142, 1);
3926 rt2800_bbp_write(rt2x00dev, 143, 57);
3927}
3928
Stanislaw Gruszkaa7bbbe52013-03-16 19:19:34 +01003929static void rt2800_init_bbp_5592_glrt(struct rt2x00_dev *rt2x00dev)
3930{
3931 const u8 glrt_table[] = {
3932 0xE0, 0x1F, 0X38, 0x32, 0x08, 0x28, 0x19, 0x0A, 0xFF, 0x00, /* 128 ~ 137 */
3933 0x16, 0x10, 0x10, 0x0B, 0x36, 0x2C, 0x26, 0x24, 0x42, 0x36, /* 138 ~ 147 */
3934 0x30, 0x2D, 0x4C, 0x46, 0x3D, 0x40, 0x3E, 0x42, 0x3D, 0x40, /* 148 ~ 157 */
3935 0X3C, 0x34, 0x2C, 0x2F, 0x3C, 0x35, 0x2E, 0x2A, 0x49, 0x41, /* 158 ~ 167 */
3936 0x36, 0x31, 0x30, 0x30, 0x0E, 0x0D, 0x28, 0x21, 0x1C, 0x16, /* 168 ~ 177 */
3937 0x50, 0x4A, 0x43, 0x40, 0x10, 0x10, 0x10, 0x10, 0x00, 0x00, /* 178 ~ 187 */
3938 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 188 ~ 197 */
3939 0x00, 0x00, 0x7D, 0x14, 0x32, 0x2C, 0x36, 0x4C, 0x43, 0x2C, /* 198 ~ 207 */
3940 0x2E, 0x36, 0x30, 0x6E, /* 208 ~ 211 */
3941 };
3942 int i;
3943
3944 for (i = 0; i < ARRAY_SIZE(glrt_table); i++) {
3945 rt2800_bbp_write(rt2x00dev, 195, 128 + i);
3946 rt2800_bbp_write(rt2x00dev, 196, glrt_table[i]);
3947 }
3948};
3949
Gabor Juhos624708b2013-04-19 10:13:52 +02003950static void rt2800_init_bbp_early(struct rt2x00_dev *rt2x00dev)
Stanislaw Gruszkaa4969d02013-03-16 19:19:35 +01003951{
3952 rt2800_bbp_write(rt2x00dev, 65, 0x2C);
3953 rt2800_bbp_write(rt2x00dev, 66, 0x38);
3954 rt2800_bbp_write(rt2x00dev, 68, 0x0B);
3955 rt2800_bbp_write(rt2x00dev, 69, 0x12);
3956 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
3957 rt2800_bbp_write(rt2x00dev, 73, 0x10);
3958 rt2800_bbp_write(rt2x00dev, 81, 0x37);
3959 rt2800_bbp_write(rt2x00dev, 82, 0x62);
3960 rt2800_bbp_write(rt2x00dev, 83, 0x6A);
3961 rt2800_bbp_write(rt2x00dev, 84, 0x99);
3962 rt2800_bbp_write(rt2x00dev, 86, 0x00);
3963 rt2800_bbp_write(rt2x00dev, 91, 0x04);
3964 rt2800_bbp_write(rt2x00dev, 92, 0x00);
3965 rt2800_bbp_write(rt2x00dev, 103, 0x00);
3966 rt2800_bbp_write(rt2x00dev, 105, 0x05);
3967 rt2800_bbp_write(rt2x00dev, 106, 0x35);
3968}
3969
Stanislaw Gruszkaa7bbbe52013-03-16 19:19:34 +01003970static void rt2800_init_bbp_5592(struct rt2x00_dev *rt2x00dev)
3971{
3972 int ant, div_mode;
3973 u16 eeprom;
3974 u8 value;
3975
Gabor Juhos624708b2013-04-19 10:13:52 +02003976 rt2800_init_bbp_early(rt2x00dev);
Stanislaw Gruszkaa4969d02013-03-16 19:19:35 +01003977
Stanislaw Gruszkaa7bbbe52013-03-16 19:19:34 +01003978 rt2800_bbp_read(rt2x00dev, 105, &value);
3979 rt2x00_set_field8(&value, BBP105_MLD,
3980 rt2x00dev->default_ant.rx_chain_num == 2);
3981 rt2800_bbp_write(rt2x00dev, 105, value);
3982
3983 rt2800_bbp4_mac_if_ctrl(rt2x00dev);
3984
3985 rt2800_bbp_write(rt2x00dev, 20, 0x06);
3986 rt2800_bbp_write(rt2x00dev, 31, 0x08);
3987 rt2800_bbp_write(rt2x00dev, 65, 0x2C);
3988 rt2800_bbp_write(rt2x00dev, 68, 0xDD);
3989 rt2800_bbp_write(rt2x00dev, 69, 0x1A);
3990 rt2800_bbp_write(rt2x00dev, 70, 0x05);
3991 rt2800_bbp_write(rt2x00dev, 73, 0x13);
3992 rt2800_bbp_write(rt2x00dev, 74, 0x0F);
3993 rt2800_bbp_write(rt2x00dev, 75, 0x4F);
3994 rt2800_bbp_write(rt2x00dev, 76, 0x28);
3995 rt2800_bbp_write(rt2x00dev, 77, 0x59);
3996 rt2800_bbp_write(rt2x00dev, 84, 0x9A);
3997 rt2800_bbp_write(rt2x00dev, 86, 0x38);
3998 rt2800_bbp_write(rt2x00dev, 88, 0x90);
3999 rt2800_bbp_write(rt2x00dev, 91, 0x04);
4000 rt2800_bbp_write(rt2x00dev, 92, 0x02);
4001 rt2800_bbp_write(rt2x00dev, 95, 0x9a);
4002 rt2800_bbp_write(rt2x00dev, 98, 0x12);
4003 rt2800_bbp_write(rt2x00dev, 103, 0xC0);
4004 rt2800_bbp_write(rt2x00dev, 104, 0x92);
4005 /* FIXME BBP105 owerwrite */
4006 rt2800_bbp_write(rt2x00dev, 105, 0x3C);
4007 rt2800_bbp_write(rt2x00dev, 106, 0x35);
4008 rt2800_bbp_write(rt2x00dev, 128, 0x12);
4009 rt2800_bbp_write(rt2x00dev, 134, 0xD0);
4010 rt2800_bbp_write(rt2x00dev, 135, 0xF6);
4011 rt2800_bbp_write(rt2x00dev, 137, 0x0F);
4012
4013 /* Initialize GLRT (Generalized Likehood Radio Test) */
4014 rt2800_init_bbp_5592_glrt(rt2x00dev);
4015
4016 rt2800_bbp4_mac_if_ctrl(rt2x00dev);
4017
4018 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
4019 div_mode = rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_ANT_DIVERSITY);
4020 ant = (div_mode == 3) ? 1 : 0;
4021 rt2800_bbp_read(rt2x00dev, 152, &value);
4022 if (ant == 0) {
4023 /* Main antenna */
4024 rt2x00_set_field8(&value, BBP152_RX_DEFAULT_ANT, 1);
4025 } else {
4026 /* Auxiliary antenna */
4027 rt2x00_set_field8(&value, BBP152_RX_DEFAULT_ANT, 0);
4028 }
4029 rt2800_bbp_write(rt2x00dev, 152, value);
4030
4031 if (rt2x00_rt_rev_gte(rt2x00dev, RT5592, REV_RT5592C)) {
4032 rt2800_bbp_read(rt2x00dev, 254, &value);
4033 rt2x00_set_field8(&value, BBP254_BIT7, 1);
4034 rt2800_bbp_write(rt2x00dev, 254, value);
4035 }
4036
Stanislaw Gruszkac2675482013-03-16 19:19:41 +01004037 rt2800_init_freq_calibration(rt2x00dev);
4038
Stanislaw Gruszkaa7bbbe52013-03-16 19:19:34 +01004039 rt2800_bbp_write(rt2x00dev, 84, 0x19);
Stanislaw Gruszka6e04f252013-03-16 19:19:38 +01004040 if (rt2x00_rt_rev_gte(rt2x00dev, RT5592, REV_RT5592C))
4041 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
Stanislaw Gruszkaa7bbbe52013-03-16 19:19:34 +01004042}
4043
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02004044static int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004045{
4046 unsigned int i;
4047 u16 eeprom;
4048 u8 reg_id;
4049 u8 value;
4050
Stanislaw Gruszkaa7bbbe52013-03-16 19:19:34 +01004051 if (rt2x00_rt(rt2x00dev, RT5592)) {
4052 rt2800_init_bbp_5592(rt2x00dev);
4053 return 0;
4054 }
4055
Daniel Golle03839952012-09-09 14:24:39 +03004056 if (rt2x00_rt(rt2x00dev, RT3352)) {
4057 rt2800_bbp_write(rt2x00dev, 3, 0x00);
4058 rt2800_bbp_write(rt2x00dev, 4, 0x50);
4059 }
4060
Woody Hunga89534e2012-06-13 15:01:16 +08004061 if (rt2x00_rt(rt2x00dev, RT3290) ||
4062 rt2x00_rt(rt2x00dev, RT5390) ||
Stanislaw Gruszkaa7bbbe52013-03-16 19:19:34 +01004063 rt2x00_rt(rt2x00dev, RT5392))
4064 rt2800_bbp4_mac_if_ctrl(rt2x00dev);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004065
Gabor Juhosadde5882011-03-03 11:46:45 +01004066 if (rt2800_is_305x_soc(rt2x00dev) ||
Woody Hunga89534e2012-06-13 15:01:16 +08004067 rt2x00_rt(rt2x00dev, RT3290) ||
Daniel Golle03839952012-09-09 14:24:39 +03004068 rt2x00_rt(rt2x00dev, RT3352) ||
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02004069 rt2x00_rt(rt2x00dev, RT3572) ||
John Li2ed71882012-02-17 17:33:06 +08004070 rt2x00_rt(rt2x00dev, RT5390) ||
4071 rt2x00_rt(rt2x00dev, RT5392))
Helmut Schaabaff8002010-04-28 09:58:59 +02004072 rt2800_bbp_write(rt2x00dev, 31, 0x08);
4073
Daniel Golle03839952012-09-09 14:24:39 +03004074 if (rt2x00_rt(rt2x00dev, RT3352))
4075 rt2800_bbp_write(rt2x00dev, 47, 0x48);
4076
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004077 rt2800_bbp_write(rt2x00dev, 65, 0x2c);
4078 rt2800_bbp_write(rt2x00dev, 66, 0x38);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02004079
Woody Hunga89534e2012-06-13 15:01:16 +08004080 if (rt2x00_rt(rt2x00dev, RT3290) ||
Daniel Golle03839952012-09-09 14:24:39 +03004081 rt2x00_rt(rt2x00dev, RT3352) ||
Woody Hunga89534e2012-06-13 15:01:16 +08004082 rt2x00_rt(rt2x00dev, RT5390) ||
4083 rt2x00_rt(rt2x00dev, RT5392))
Gabor Juhosadde5882011-03-03 11:46:45 +01004084 rt2800_bbp_write(rt2x00dev, 68, 0x0b);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004085
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02004086 if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860C)) {
4087 rt2800_bbp_write(rt2x00dev, 69, 0x16);
4088 rt2800_bbp_write(rt2x00dev, 73, 0x12);
Woody Hunga89534e2012-06-13 15:01:16 +08004089 } else if (rt2x00_rt(rt2x00dev, RT3290) ||
Daniel Golle03839952012-09-09 14:24:39 +03004090 rt2x00_rt(rt2x00dev, RT3352) ||
Woody Hunga89534e2012-06-13 15:01:16 +08004091 rt2x00_rt(rt2x00dev, RT5390) ||
4092 rt2x00_rt(rt2x00dev, RT5392)) {
Gabor Juhosadde5882011-03-03 11:46:45 +01004093 rt2800_bbp_write(rt2x00dev, 69, 0x12);
4094 rt2800_bbp_write(rt2x00dev, 73, 0x13);
4095 rt2800_bbp_write(rt2x00dev, 75, 0x46);
4096 rt2800_bbp_write(rt2x00dev, 76, 0x28);
Woody Hunga89534e2012-06-13 15:01:16 +08004097
4098 if (rt2x00_rt(rt2x00dev, RT3290))
4099 rt2800_bbp_write(rt2x00dev, 77, 0x58);
4100 else
4101 rt2800_bbp_write(rt2x00dev, 77, 0x59);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02004102 } else {
4103 rt2800_bbp_write(rt2x00dev, 69, 0x12);
4104 rt2800_bbp_write(rt2x00dev, 73, 0x10);
4105 }
4106
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004107 rt2800_bbp_write(rt2x00dev, 70, 0x0a);
Gertjan van Wingerde8cdd15e2010-04-11 14:31:12 +02004108
Gertjan van Wingerded5385bf2010-04-11 14:31:13 +02004109 if (rt2x00_rt(rt2x00dev, RT3070) ||
Gertjan van Wingerde64522952010-04-11 14:31:14 +02004110 rt2x00_rt(rt2x00dev, RT3071) ||
Gertjan van Wingerdecc78e902010-04-11 14:31:15 +02004111 rt2x00_rt(rt2x00dev, RT3090) ||
Gabor Juhosadde5882011-03-03 11:46:45 +01004112 rt2x00_rt(rt2x00dev, RT3390) ||
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02004113 rt2x00_rt(rt2x00dev, RT3572) ||
John Li2ed71882012-02-17 17:33:06 +08004114 rt2x00_rt(rt2x00dev, RT5390) ||
4115 rt2x00_rt(rt2x00dev, RT5392)) {
Gertjan van Wingerde8cdd15e2010-04-11 14:31:12 +02004116 rt2800_bbp_write(rt2x00dev, 79, 0x13);
4117 rt2800_bbp_write(rt2x00dev, 80, 0x05);
4118 rt2800_bbp_write(rt2x00dev, 81, 0x33);
Helmut Schaabaff8002010-04-28 09:58:59 +02004119 } else if (rt2800_is_305x_soc(rt2x00dev)) {
4120 rt2800_bbp_write(rt2x00dev, 78, 0x0e);
4121 rt2800_bbp_write(rt2x00dev, 80, 0x08);
Gertjan van Wingerde59d12872012-09-16 22:29:51 +02004122 } else if (rt2x00_rt(rt2x00dev, RT3290)) {
4123 rt2800_bbp_write(rt2x00dev, 74, 0x0b);
4124 rt2800_bbp_write(rt2x00dev, 79, 0x18);
4125 rt2800_bbp_write(rt2x00dev, 80, 0x09);
4126 rt2800_bbp_write(rt2x00dev, 81, 0x33);
Daniel Golle03839952012-09-09 14:24:39 +03004127 } else if (rt2x00_rt(rt2x00dev, RT3352)) {
4128 rt2800_bbp_write(rt2x00dev, 78, 0x0e);
4129 rt2800_bbp_write(rt2x00dev, 80, 0x08);
4130 rt2800_bbp_write(rt2x00dev, 81, 0x37);
Gertjan van Wingerde8cdd15e2010-04-11 14:31:12 +02004131 } else {
4132 rt2800_bbp_write(rt2x00dev, 81, 0x37);
4133 }
4134
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004135 rt2800_bbp_write(rt2x00dev, 82, 0x62);
Woody Hunga89534e2012-06-13 15:01:16 +08004136 if (rt2x00_rt(rt2x00dev, RT3290) ||
4137 rt2x00_rt(rt2x00dev, RT5390) ||
4138 rt2x00_rt(rt2x00dev, RT5392))
Gabor Juhosadde5882011-03-03 11:46:45 +01004139 rt2800_bbp_write(rt2x00dev, 83, 0x7a);
4140 else
4141 rt2800_bbp_write(rt2x00dev, 83, 0x6a);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02004142
Gertjan van Wingerde5ed8f452010-06-03 10:51:57 +02004143 if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860D))
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02004144 rt2800_bbp_write(rt2x00dev, 84, 0x19);
Woody Hunga89534e2012-06-13 15:01:16 +08004145 else if (rt2x00_rt(rt2x00dev, RT3290) ||
Gabor Juhose6d227b2012-12-02 15:53:28 +01004146 rt2x00_rt(rt2x00dev, RT5390) ||
4147 rt2x00_rt(rt2x00dev, RT5392))
Gabor Juhosadde5882011-03-03 11:46:45 +01004148 rt2800_bbp_write(rt2x00dev, 84, 0x9a);
Gertjan van Wingerdea9dce142010-04-11 14:31:11 +02004149 else
4150 rt2800_bbp_write(rt2x00dev, 84, 0x99);
4151
Woody Hunga89534e2012-06-13 15:01:16 +08004152 if (rt2x00_rt(rt2x00dev, RT3290) ||
Daniel Golle03839952012-09-09 14:24:39 +03004153 rt2x00_rt(rt2x00dev, RT3352) ||
Woody Hunga89534e2012-06-13 15:01:16 +08004154 rt2x00_rt(rt2x00dev, RT5390) ||
4155 rt2x00_rt(rt2x00dev, RT5392))
Gabor Juhosadde5882011-03-03 11:46:45 +01004156 rt2800_bbp_write(rt2x00dev, 86, 0x38);
4157 else
4158 rt2800_bbp_write(rt2x00dev, 86, 0x00);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004159
Daniel Golle03839952012-09-09 14:24:39 +03004160 if (rt2x00_rt(rt2x00dev, RT3352) ||
4161 rt2x00_rt(rt2x00dev, RT5392))
John Li2ed71882012-02-17 17:33:06 +08004162 rt2800_bbp_write(rt2x00dev, 88, 0x90);
4163
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004164 rt2800_bbp_write(rt2x00dev, 91, 0x04);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004165
Woody Hunga89534e2012-06-13 15:01:16 +08004166 if (rt2x00_rt(rt2x00dev, RT3290) ||
Daniel Golle03839952012-09-09 14:24:39 +03004167 rt2x00_rt(rt2x00dev, RT3352) ||
Woody Hunga89534e2012-06-13 15:01:16 +08004168 rt2x00_rt(rt2x00dev, RT5390) ||
4169 rt2x00_rt(rt2x00dev, RT5392))
Gabor Juhosadde5882011-03-03 11:46:45 +01004170 rt2800_bbp_write(rt2x00dev, 92, 0x02);
4171 else
4172 rt2800_bbp_write(rt2x00dev, 92, 0x00);
Gertjan van Wingerde8cdd15e2010-04-11 14:31:12 +02004173
John Li2ed71882012-02-17 17:33:06 +08004174 if (rt2x00_rt(rt2x00dev, RT5392)) {
4175 rt2800_bbp_write(rt2x00dev, 95, 0x9a);
4176 rt2800_bbp_write(rt2x00dev, 98, 0x12);
4177 }
4178
Gertjan van Wingerded5385bf2010-04-11 14:31:13 +02004179 if (rt2x00_rt_rev_gte(rt2x00dev, RT3070, REV_RT3070F) ||
Gertjan van Wingerde64522952010-04-11 14:31:14 +02004180 rt2x00_rt_rev_gte(rt2x00dev, RT3071, REV_RT3071E) ||
Gertjan van Wingerdecc78e902010-04-11 14:31:15 +02004181 rt2x00_rt_rev_gte(rt2x00dev, RT3090, REV_RT3090E) ||
Helmut Schaabaff8002010-04-28 09:58:59 +02004182 rt2x00_rt_rev_gte(rt2x00dev, RT3390, REV_RT3390E) ||
Woody Hunga89534e2012-06-13 15:01:16 +08004183 rt2x00_rt(rt2x00dev, RT3290) ||
Daniel Golle03839952012-09-09 14:24:39 +03004184 rt2x00_rt(rt2x00dev, RT3352) ||
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02004185 rt2x00_rt(rt2x00dev, RT3572) ||
Gabor Juhosadde5882011-03-03 11:46:45 +01004186 rt2x00_rt(rt2x00dev, RT5390) ||
John Li2ed71882012-02-17 17:33:06 +08004187 rt2x00_rt(rt2x00dev, RT5392) ||
Helmut Schaabaff8002010-04-28 09:58:59 +02004188 rt2800_is_305x_soc(rt2x00dev))
Gertjan van Wingerde8cdd15e2010-04-11 14:31:12 +02004189 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
4190 else
4191 rt2800_bbp_write(rt2x00dev, 103, 0x00);
4192
Woody Hunga89534e2012-06-13 15:01:16 +08004193 if (rt2x00_rt(rt2x00dev, RT3290) ||
Daniel Golle03839952012-09-09 14:24:39 +03004194 rt2x00_rt(rt2x00dev, RT3352) ||
Woody Hunga89534e2012-06-13 15:01:16 +08004195 rt2x00_rt(rt2x00dev, RT5390) ||
4196 rt2x00_rt(rt2x00dev, RT5392))
Gabor Juhosadde5882011-03-03 11:46:45 +01004197 rt2800_bbp_write(rt2x00dev, 104, 0x92);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004198
Helmut Schaabaff8002010-04-28 09:58:59 +02004199 if (rt2800_is_305x_soc(rt2x00dev))
4200 rt2800_bbp_write(rt2x00dev, 105, 0x01);
Woody Hunga89534e2012-06-13 15:01:16 +08004201 else if (rt2x00_rt(rt2x00dev, RT3290))
4202 rt2800_bbp_write(rt2x00dev, 105, 0x1c);
Daniel Golle03839952012-09-09 14:24:39 +03004203 else if (rt2x00_rt(rt2x00dev, RT3352))
4204 rt2800_bbp_write(rt2x00dev, 105, 0x34);
John Li2ed71882012-02-17 17:33:06 +08004205 else if (rt2x00_rt(rt2x00dev, RT5390) ||
Gabor Juhose6d227b2012-12-02 15:53:28 +01004206 rt2x00_rt(rt2x00dev, RT5392))
Gabor Juhosadde5882011-03-03 11:46:45 +01004207 rt2800_bbp_write(rt2x00dev, 105, 0x3c);
Helmut Schaabaff8002010-04-28 09:58:59 +02004208 else
4209 rt2800_bbp_write(rt2x00dev, 105, 0x05);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004210
Woody Hunga89534e2012-06-13 15:01:16 +08004211 if (rt2x00_rt(rt2x00dev, RT3290) ||
4212 rt2x00_rt(rt2x00dev, RT5390))
Gabor Juhosadde5882011-03-03 11:46:45 +01004213 rt2800_bbp_write(rt2x00dev, 106, 0x03);
Daniel Golle03839952012-09-09 14:24:39 +03004214 else if (rt2x00_rt(rt2x00dev, RT3352))
4215 rt2800_bbp_write(rt2x00dev, 106, 0x05);
John Li2ed71882012-02-17 17:33:06 +08004216 else if (rt2x00_rt(rt2x00dev, RT5392))
4217 rt2800_bbp_write(rt2x00dev, 106, 0x12);
Gabor Juhosadde5882011-03-03 11:46:45 +01004218 else
4219 rt2800_bbp_write(rt2x00dev, 106, 0x35);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004220
Daniel Golle03839952012-09-09 14:24:39 +03004221 if (rt2x00_rt(rt2x00dev, RT3352))
4222 rt2800_bbp_write(rt2x00dev, 120, 0x50);
4223
Woody Hunga89534e2012-06-13 15:01:16 +08004224 if (rt2x00_rt(rt2x00dev, RT3290) ||
4225 rt2x00_rt(rt2x00dev, RT5390) ||
4226 rt2x00_rt(rt2x00dev, RT5392))
Gabor Juhosadde5882011-03-03 11:46:45 +01004227 rt2800_bbp_write(rt2x00dev, 128, 0x12);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004228
John Li2ed71882012-02-17 17:33:06 +08004229 if (rt2x00_rt(rt2x00dev, RT5392)) {
4230 rt2800_bbp_write(rt2x00dev, 134, 0xd0);
4231 rt2800_bbp_write(rt2x00dev, 135, 0xf6);
4232 }
4233
Daniel Golle03839952012-09-09 14:24:39 +03004234 if (rt2x00_rt(rt2x00dev, RT3352))
4235 rt2800_bbp_write(rt2x00dev, 137, 0x0f);
4236
Gertjan van Wingerde64522952010-04-11 14:31:14 +02004237 if (rt2x00_rt(rt2x00dev, RT3071) ||
Gertjan van Wingerdecc78e902010-04-11 14:31:15 +02004238 rt2x00_rt(rt2x00dev, RT3090) ||
Gabor Juhosadde5882011-03-03 11:46:45 +01004239 rt2x00_rt(rt2x00dev, RT3390) ||
Gertjan van Wingerde872834d2011-05-18 20:25:31 +02004240 rt2x00_rt(rt2x00dev, RT3572) ||
John Li2ed71882012-02-17 17:33:06 +08004241 rt2x00_rt(rt2x00dev, RT5390) ||
4242 rt2x00_rt(rt2x00dev, RT5392)) {
Gertjan van Wingerded5385bf2010-04-11 14:31:13 +02004243 rt2800_bbp_read(rt2x00dev, 138, &value);
4244
RA-Jay Hung38c8a562010-12-13 12:31:27 +01004245 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
4246 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) == 1)
Gertjan van Wingerded5385bf2010-04-11 14:31:13 +02004247 value |= 0x20;
RA-Jay Hung38c8a562010-12-13 12:31:27 +01004248 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH) == 1)
Gertjan van Wingerded5385bf2010-04-11 14:31:13 +02004249 value &= ~0x02;
4250
4251 rt2800_bbp_write(rt2x00dev, 138, value);
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004252 }
4253
Woody Hunga89534e2012-06-13 15:01:16 +08004254 if (rt2x00_rt(rt2x00dev, RT3290)) {
4255 rt2800_bbp_write(rt2x00dev, 67, 0x24);
4256 rt2800_bbp_write(rt2x00dev, 143, 0x04);
4257 rt2800_bbp_write(rt2x00dev, 142, 0x99);
4258 rt2800_bbp_write(rt2x00dev, 150, 0x30);
4259 rt2800_bbp_write(rt2x00dev, 151, 0x2e);
4260 rt2800_bbp_write(rt2x00dev, 152, 0x20);
4261 rt2800_bbp_write(rt2x00dev, 153, 0x34);
4262 rt2800_bbp_write(rt2x00dev, 154, 0x40);
4263 rt2800_bbp_write(rt2x00dev, 155, 0x3b);
4264 rt2800_bbp_write(rt2x00dev, 253, 0x04);
4265
4266 rt2800_bbp_read(rt2x00dev, 47, &value);
4267 rt2x00_set_field8(&value, BBP47_TSSI_ADC6, 1);
4268 rt2800_bbp_write(rt2x00dev, 47, value);
4269
4270 /* Use 5-bit ADC for Acquisition and 8-bit ADC for data */
4271 rt2800_bbp_read(rt2x00dev, 3, &value);
4272 rt2x00_set_field8(&value, BBP3_ADC_MODE_SWITCH, 1);
4273 rt2x00_set_field8(&value, BBP3_ADC_INIT_MODE, 1);
4274 rt2800_bbp_write(rt2x00dev, 3, value);
4275 }
4276
Daniel Golle03839952012-09-09 14:24:39 +03004277 if (rt2x00_rt(rt2x00dev, RT3352)) {
4278 rt2800_bbp_write(rt2x00dev, 163, 0xbd);
4279 /* Set ITxBF timeout to 0x9c40=1000msec */
4280 rt2800_bbp_write(rt2x00dev, 179, 0x02);
4281 rt2800_bbp_write(rt2x00dev, 180, 0x00);
4282 rt2800_bbp_write(rt2x00dev, 182, 0x40);
4283 rt2800_bbp_write(rt2x00dev, 180, 0x01);
4284 rt2800_bbp_write(rt2x00dev, 182, 0x9c);
4285 rt2800_bbp_write(rt2x00dev, 179, 0x00);
4286 /* Reprogram the inband interface to put right values in RXWI */
4287 rt2800_bbp_write(rt2x00dev, 142, 0x04);
4288 rt2800_bbp_write(rt2x00dev, 143, 0x3b);
4289 rt2800_bbp_write(rt2x00dev, 142, 0x06);
4290 rt2800_bbp_write(rt2x00dev, 143, 0xa0);
4291 rt2800_bbp_write(rt2x00dev, 142, 0x07);
4292 rt2800_bbp_write(rt2x00dev, 143, 0xa1);
4293 rt2800_bbp_write(rt2x00dev, 142, 0x08);
4294 rt2800_bbp_write(rt2x00dev, 143, 0xa2);
4295
4296 rt2800_bbp_write(rt2x00dev, 148, 0xc8);
4297 }
4298
John Li2ed71882012-02-17 17:33:06 +08004299 if (rt2x00_rt(rt2x00dev, RT5390) ||
Gabor Juhose6d227b2012-12-02 15:53:28 +01004300 rt2x00_rt(rt2x00dev, RT5392)) {
Gabor Juhosadde5882011-03-03 11:46:45 +01004301 int ant, div_mode;
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004302
Gabor Juhosadde5882011-03-03 11:46:45 +01004303 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
4304 div_mode = rt2x00_get_field16(eeprom,
4305 EEPROM_NIC_CONF1_ANT_DIVERSITY);
4306 ant = (div_mode == 3) ? 1 : 0;
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004307
Gabor Juhosadde5882011-03-03 11:46:45 +01004308 /* check if this is a Bluetooth combo card */
Gertjan van Wingerdefdbc7b02011-04-30 17:15:37 +02004309 if (test_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags)) {
Gabor Juhosadde5882011-03-03 11:46:45 +01004310 u32 reg;
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004311
Gertjan van Wingerde99bdf512012-08-31 19:22:13 +02004312 rt2800_register_read(rt2x00dev, GPIO_CTRL, &reg);
4313 rt2x00_set_field32(&reg, GPIO_CTRL_DIR3, 0);
4314 rt2x00_set_field32(&reg, GPIO_CTRL_DIR6, 0);
4315 rt2x00_set_field32(&reg, GPIO_CTRL_VAL3, 0);
4316 rt2x00_set_field32(&reg, GPIO_CTRL_VAL6, 0);
Gabor Juhosadde5882011-03-03 11:46:45 +01004317 if (ant == 0)
Gertjan van Wingerde99bdf512012-08-31 19:22:13 +02004318 rt2x00_set_field32(&reg, GPIO_CTRL_VAL3, 1);
Gabor Juhosadde5882011-03-03 11:46:45 +01004319 else if (ant == 1)
Gertjan van Wingerde99bdf512012-08-31 19:22:13 +02004320 rt2x00_set_field32(&reg, GPIO_CTRL_VAL6, 1);
4321 rt2800_register_write(rt2x00dev, GPIO_CTRL, reg);
Gabor Juhosadde5882011-03-03 11:46:45 +01004322 }
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004323
Anisse Astier0586a112012-04-23 12:33:11 +02004324 /* This chip has hardware antenna diversity*/
4325 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390R)) {
4326 rt2800_bbp_write(rt2x00dev, 150, 0); /* Disable Antenna Software OFDM */
4327 rt2800_bbp_write(rt2x00dev, 151, 0); /* Disable Antenna Software CCK */
4328 rt2800_bbp_write(rt2x00dev, 154, 0); /* Clear previously selected antenna */
4329 }
4330
Gabor Juhosadde5882011-03-03 11:46:45 +01004331 rt2800_bbp_read(rt2x00dev, 152, &value);
4332 if (ant == 0)
4333 rt2x00_set_field8(&value, BBP152_RX_DEFAULT_ANT, 1);
4334 else
4335 rt2x00_set_field8(&value, BBP152_RX_DEFAULT_ANT, 0);
4336 rt2800_bbp_write(rt2x00dev, 152, value);
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01004337
Stanislaw Gruszkac2675482013-03-16 19:19:41 +01004338 rt2800_init_freq_calibration(rt2x00dev);
Gabor Juhosadde5882011-03-03 11:46:45 +01004339 }
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004340
4341 for (i = 0; i < EEPROM_BBP_SIZE; i++) {
4342 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
4343
4344 if (eeprom != 0xffff && eeprom != 0x0000) {
4345 reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
4346 value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
4347 rt2800_bbp_write(rt2x00dev, reg_id, value);
4348 }
4349 }
4350
4351 return 0;
4352}
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004353
Stanislaw Gruszkad9517f22013-04-17 14:08:18 +02004354static void rt2800_led_open_drain_enable(struct rt2x00_dev *rt2x00dev)
4355{
4356 u32 reg;
4357
4358 rt2800_register_read(rt2x00dev, OPT_14_CSR, &reg);
4359 rt2x00_set_field32(&reg, OPT_14_CSR_BIT0, 1);
4360 rt2800_register_write(rt2x00dev, OPT_14_CSR, reg);
4361}
4362
Stanislaw Gruszkac5b3c352013-04-17 14:08:16 +02004363static u8 rt2800_init_rx_filter(struct rt2x00_dev *rt2x00dev, bool bw40,
4364 u8 filter_target)
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004365{
4366 unsigned int i;
4367 u8 bbp;
4368 u8 rfcsr;
4369 u8 passband;
4370 u8 stopband;
4371 u8 overtuned = 0;
Stanislaw Gruszkac5b3c352013-04-17 14:08:16 +02004372 u8 rfcsr24 = (bw40) ? 0x27 : 0x07;
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004373
4374 rt2800_rfcsr_write(rt2x00dev, 24, rfcsr24);
4375
4376 rt2800_bbp_read(rt2x00dev, 4, &bbp);
4377 rt2x00_set_field8(&bbp, BBP4_BANDWIDTH, 2 * bw40);
4378 rt2800_bbp_write(rt2x00dev, 4, bbp);
4379
RA-Jay Hung80d184e2011-01-10 11:28:10 +01004380 rt2800_rfcsr_read(rt2x00dev, 31, &rfcsr);
4381 rt2x00_set_field8(&rfcsr, RFCSR31_RX_H20M, bw40);
4382 rt2800_rfcsr_write(rt2x00dev, 31, rfcsr);
4383
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01004384 rt2800_rfcsr_read(rt2x00dev, 22, &rfcsr);
4385 rt2x00_set_field8(&rfcsr, RFCSR22_BASEBAND_LOOPBACK, 1);
4386 rt2800_rfcsr_write(rt2x00dev, 22, rfcsr);
4387
4388 /*
4389 * Set power & frequency of passband test tone
4390 */
4391 rt2800_bbp_write(rt2x00dev, 24, 0);
4392
4393 for (i = 0; i < 100; i++) {
4394 rt2800_bbp_write(rt2x00dev, 25, 0x90);
4395 msleep(1);
4396
4397 rt2800_bbp_read(rt2x00dev, 55, &passband);
4398 if (passband)
4399 break;
4400 }
4401
4402 /*
4403 * Set power & frequency of stopband test tone
4404 */
4405 rt2800_bbp_write(rt2x00dev, 24, 0x06);
4406
4407 for (i = 0; i < 100; i++) {
4408 rt2800_bbp_write(rt2x00dev, 25, 0x90);
4409 msleep(1);
4410
4411 rt2800_bbp_read(rt2x00dev, 55, &stopband);
4412
4413 if ((passband - stopband) <= filter_target) {
4414 rfcsr24++;
4415 overtuned += ((passband - stopband) == filter_target);
4416 } else
4417 break;
4418
4419 rt2800_rfcsr_write(rt2x00dev, 24, rfcsr24);
4420 }
4421
4422 rfcsr24 -= !!overtuned;
4423
4424 rt2800_rfcsr_write(rt2x00dev, 24, rfcsr24);
4425 return rfcsr24;
4426}
4427
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02004428static void rt2800_rf_init_calibration(struct rt2x00_dev *rt2x00dev,
4429 const unsigned int rf_reg)
4430{
4431 u8 rfcsr;
4432
4433 rt2800_rfcsr_read(rt2x00dev, rf_reg, &rfcsr);
4434 rt2x00_set_field8(&rfcsr, FIELD8(0x80), 1);
4435 rt2800_rfcsr_write(rt2x00dev, rf_reg, rfcsr);
4436 msleep(1);
4437 rt2x00_set_field8(&rfcsr, FIELD8(0x80), 0);
4438 rt2800_rfcsr_write(rt2x00dev, rf_reg, rfcsr);
4439}
4440
Stanislaw Gruszkac5b3c352013-04-17 14:08:16 +02004441static void rt2800_rx_filter_calibration(struct rt2x00_dev *rt2x00dev)
4442{
4443 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
4444 u8 filter_tgt_bw20;
4445 u8 filter_tgt_bw40;
4446 u8 rfcsr, bbp;
4447
4448 /*
4449 * TODO: sync filter_tgt values with vendor driver
4450 */
4451 if (rt2x00_rt(rt2x00dev, RT3070)) {
4452 filter_tgt_bw20 = 0x16;
4453 filter_tgt_bw40 = 0x19;
4454 } else {
4455 filter_tgt_bw20 = 0x13;
4456 filter_tgt_bw40 = 0x15;
4457 }
4458
4459 drv_data->calibration_bw20 =
4460 rt2800_init_rx_filter(rt2x00dev, false, filter_tgt_bw20);
4461 drv_data->calibration_bw40 =
4462 rt2800_init_rx_filter(rt2x00dev, true, filter_tgt_bw40);
4463
4464 /*
4465 * Save BBP 25 & 26 values for later use in channel switching (for 3052)
4466 */
4467 rt2800_bbp_read(rt2x00dev, 25, &drv_data->bbp25);
4468 rt2800_bbp_read(rt2x00dev, 26, &drv_data->bbp26);
4469
4470 /*
4471 * Set back to initial state
4472 */
4473 rt2800_bbp_write(rt2x00dev, 24, 0);
4474
4475 rt2800_rfcsr_read(rt2x00dev, 22, &rfcsr);
4476 rt2x00_set_field8(&rfcsr, RFCSR22_BASEBAND_LOOPBACK, 0);
4477 rt2800_rfcsr_write(rt2x00dev, 22, rfcsr);
4478
4479 /*
4480 * Set BBP back to BW20
4481 */
4482 rt2800_bbp_read(rt2x00dev, 4, &bbp);
4483 rt2x00_set_field8(&bbp, BBP4_BANDWIDTH, 0);
4484 rt2800_bbp_write(rt2x00dev, 4, bbp);
4485}
4486
Stanislaw Gruszkada8064c2013-04-17 14:08:19 +02004487static void rt2800_normal_mode_setup_3xxx(struct rt2x00_dev *rt2x00dev)
4488{
4489 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
4490 u8 min_gain, rfcsr, bbp;
4491 u16 eeprom;
4492
4493 rt2800_rfcsr_read(rt2x00dev, 17, &rfcsr);
4494
4495 rt2x00_set_field8(&rfcsr, RFCSR17_TX_LO1_EN, 0);
4496 if (rt2x00_rt(rt2x00dev, RT3070) ||
4497 rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) ||
4498 rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E) ||
4499 rt2x00_rt_rev_lt(rt2x00dev, RT3390, REV_RT3390E)) {
4500 if (!test_bit(CAPABILITY_EXTERNAL_LNA_BG, &rt2x00dev->cap_flags))
4501 rt2x00_set_field8(&rfcsr, RFCSR17_R, 1);
4502 }
4503
4504 min_gain = rt2x00_rt(rt2x00dev, RT3070) ? 1 : 2;
4505 if (drv_data->txmixer_gain_24g >= min_gain) {
4506 rt2x00_set_field8(&rfcsr, RFCSR17_TXMIXER_GAIN,
4507 drv_data->txmixer_gain_24g);
4508 }
4509
4510 rt2800_rfcsr_write(rt2x00dev, 17, rfcsr);
4511
4512 if (rt2x00_rt(rt2x00dev, RT3090)) {
4513 /* Turn off unused DAC1 and ADC1 to reduce power consumption */
4514 rt2800_bbp_read(rt2x00dev, 138, &bbp);
4515 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
4516 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH) == 1)
4517 rt2x00_set_field8(&bbp, BBP138_RX_ADC1, 0);
4518 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) == 1)
4519 rt2x00_set_field8(&bbp, BBP138_TX_DAC1, 1);
4520 rt2800_bbp_write(rt2x00dev, 138, bbp);
4521 }
4522
4523 if (rt2x00_rt(rt2x00dev, RT3070)) {
4524 rt2800_rfcsr_read(rt2x00dev, 27, &rfcsr);
4525 if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F))
4526 rt2x00_set_field8(&rfcsr, RFCSR27_R1, 3);
4527 else
4528 rt2x00_set_field8(&rfcsr, RFCSR27_R1, 0);
4529 rt2x00_set_field8(&rfcsr, RFCSR27_R2, 0);
4530 rt2x00_set_field8(&rfcsr, RFCSR27_R3, 0);
4531 rt2x00_set_field8(&rfcsr, RFCSR27_R4, 0);
4532 rt2800_rfcsr_write(rt2x00dev, 27, rfcsr);
4533 } else if (rt2x00_rt(rt2x00dev, RT3071) ||
4534 rt2x00_rt(rt2x00dev, RT3090) ||
4535 rt2x00_rt(rt2x00dev, RT3390)) {
4536 rt2800_rfcsr_read(rt2x00dev, 1, &rfcsr);
4537 rt2x00_set_field8(&rfcsr, RFCSR1_RF_BLOCK_EN, 1);
4538 rt2x00_set_field8(&rfcsr, RFCSR1_RX0_PD, 0);
4539 rt2x00_set_field8(&rfcsr, RFCSR1_TX0_PD, 0);
4540 rt2x00_set_field8(&rfcsr, RFCSR1_RX1_PD, 1);
4541 rt2x00_set_field8(&rfcsr, RFCSR1_TX1_PD, 1);
4542 rt2800_rfcsr_write(rt2x00dev, 1, rfcsr);
4543
4544 rt2800_rfcsr_read(rt2x00dev, 15, &rfcsr);
4545 rt2x00_set_field8(&rfcsr, RFCSR15_TX_LO2_EN, 0);
4546 rt2800_rfcsr_write(rt2x00dev, 15, rfcsr);
4547
4548 rt2800_rfcsr_read(rt2x00dev, 20, &rfcsr);
4549 rt2x00_set_field8(&rfcsr, RFCSR20_RX_LO1_EN, 0);
4550 rt2800_rfcsr_write(rt2x00dev, 20, rfcsr);
4551
4552 rt2800_rfcsr_read(rt2x00dev, 21, &rfcsr);
4553 rt2x00_set_field8(&rfcsr, RFCSR21_RX_LO2_EN, 0);
4554 rt2800_rfcsr_write(rt2x00dev, 21, rfcsr);
4555 }
4556}
4557
Stanislaw Gruszkaf7df8fe2013-04-17 14:08:10 +02004558static void rt2800_normal_mode_setup_5xxx(struct rt2x00_dev *rt2x00dev)
4559{
4560 u8 reg;
4561 u16 eeprom;
4562
4563 /* Turn off unused DAC1 and ADC1 to reduce power consumption */
4564 rt2800_bbp_read(rt2x00dev, 138, &reg);
4565 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
4566 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH) == 1)
4567 rt2x00_set_field8(&reg, BBP138_RX_ADC1, 0);
4568 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) == 1)
4569 rt2x00_set_field8(&reg, BBP138_TX_DAC1, 1);
4570 rt2800_bbp_write(rt2x00dev, 138, reg);
4571
4572 rt2800_rfcsr_read(rt2x00dev, 38, &reg);
4573 rt2x00_set_field8(&reg, RFCSR38_RX_LO1_EN, 0);
4574 rt2800_rfcsr_write(rt2x00dev, 38, reg);
4575
4576 rt2800_rfcsr_read(rt2x00dev, 39, &reg);
4577 rt2x00_set_field8(&reg, RFCSR39_RX_LO2_EN, 0);
4578 rt2800_rfcsr_write(rt2x00dev, 39, reg);
4579
4580 rt2800_bbp4_mac_if_ctrl(rt2x00dev);
4581
4582 rt2800_rfcsr_read(rt2x00dev, 30, &reg);
4583 rt2x00_set_field8(&reg, RFCSR30_RX_VCM, 2);
4584 rt2800_rfcsr_write(rt2x00dev, 30, reg);
4585}
4586
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004587static void rt2800_init_rfcsr_305x_soc(struct rt2x00_dev *rt2x00dev)
4588{
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02004589 rt2800_rf_init_calibration(rt2x00dev, 30);
4590
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004591 rt2800_rfcsr_write(rt2x00dev, 0, 0x50);
4592 rt2800_rfcsr_write(rt2x00dev, 1, 0x01);
4593 rt2800_rfcsr_write(rt2x00dev, 2, 0xf7);
4594 rt2800_rfcsr_write(rt2x00dev, 3, 0x75);
4595 rt2800_rfcsr_write(rt2x00dev, 4, 0x40);
4596 rt2800_rfcsr_write(rt2x00dev, 5, 0x03);
4597 rt2800_rfcsr_write(rt2x00dev, 6, 0x02);
4598 rt2800_rfcsr_write(rt2x00dev, 7, 0x50);
4599 rt2800_rfcsr_write(rt2x00dev, 8, 0x39);
4600 rt2800_rfcsr_write(rt2x00dev, 9, 0x0f);
4601 rt2800_rfcsr_write(rt2x00dev, 10, 0x60);
4602 rt2800_rfcsr_write(rt2x00dev, 11, 0x21);
4603 rt2800_rfcsr_write(rt2x00dev, 12, 0x75);
4604 rt2800_rfcsr_write(rt2x00dev, 13, 0x75);
4605 rt2800_rfcsr_write(rt2x00dev, 14, 0x90);
4606 rt2800_rfcsr_write(rt2x00dev, 15, 0x58);
4607 rt2800_rfcsr_write(rt2x00dev, 16, 0xb3);
4608 rt2800_rfcsr_write(rt2x00dev, 17, 0x92);
4609 rt2800_rfcsr_write(rt2x00dev, 18, 0x2c);
4610 rt2800_rfcsr_write(rt2x00dev, 19, 0x02);
4611 rt2800_rfcsr_write(rt2x00dev, 20, 0xba);
4612 rt2800_rfcsr_write(rt2x00dev, 21, 0xdb);
4613 rt2800_rfcsr_write(rt2x00dev, 22, 0x00);
4614 rt2800_rfcsr_write(rt2x00dev, 23, 0x31);
4615 rt2800_rfcsr_write(rt2x00dev, 24, 0x08);
4616 rt2800_rfcsr_write(rt2x00dev, 25, 0x01);
4617 rt2800_rfcsr_write(rt2x00dev, 26, 0x25);
4618 rt2800_rfcsr_write(rt2x00dev, 27, 0x23);
4619 rt2800_rfcsr_write(rt2x00dev, 28, 0x13);
4620 rt2800_rfcsr_write(rt2x00dev, 29, 0x83);
4621 rt2800_rfcsr_write(rt2x00dev, 30, 0x00);
4622 rt2800_rfcsr_write(rt2x00dev, 31, 0x00);
4623}
4624
4625static void rt2800_init_rfcsr_30xx(struct rt2x00_dev *rt2x00dev)
4626{
Stanislaw Gruszkac9a221b2013-04-17 14:08:13 +02004627 u8 rfcsr;
4628 u16 eeprom;
4629 u32 reg;
4630
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02004631 /* XXX vendor driver do this only for 3070 */
4632 rt2800_rf_init_calibration(rt2x00dev, 30);
4633
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004634 rt2800_rfcsr_write(rt2x00dev, 4, 0x40);
4635 rt2800_rfcsr_write(rt2x00dev, 5, 0x03);
4636 rt2800_rfcsr_write(rt2x00dev, 6, 0x02);
4637 rt2800_rfcsr_write(rt2x00dev, 7, 0x60);
4638 rt2800_rfcsr_write(rt2x00dev, 9, 0x0f);
4639 rt2800_rfcsr_write(rt2x00dev, 10, 0x41);
4640 rt2800_rfcsr_write(rt2x00dev, 11, 0x21);
4641 rt2800_rfcsr_write(rt2x00dev, 12, 0x7b);
4642 rt2800_rfcsr_write(rt2x00dev, 14, 0x90);
4643 rt2800_rfcsr_write(rt2x00dev, 15, 0x58);
4644 rt2800_rfcsr_write(rt2x00dev, 16, 0xb3);
4645 rt2800_rfcsr_write(rt2x00dev, 17, 0x92);
4646 rt2800_rfcsr_write(rt2x00dev, 18, 0x2c);
4647 rt2800_rfcsr_write(rt2x00dev, 19, 0x02);
4648 rt2800_rfcsr_write(rt2x00dev, 20, 0xba);
4649 rt2800_rfcsr_write(rt2x00dev, 21, 0xdb);
4650 rt2800_rfcsr_write(rt2x00dev, 24, 0x16);
4651 rt2800_rfcsr_write(rt2x00dev, 25, 0x01);
4652 rt2800_rfcsr_write(rt2x00dev, 29, 0x1f);
Stanislaw Gruszkac9a221b2013-04-17 14:08:13 +02004653
4654 if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F)) {
4655 rt2800_register_read(rt2x00dev, LDO_CFG0, &reg);
4656 rt2x00_set_field32(&reg, LDO_CFG0_BGSEL, 1);
4657 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 3);
4658 rt2800_register_write(rt2x00dev, LDO_CFG0, reg);
4659 } else if (rt2x00_rt(rt2x00dev, RT3071) ||
4660 rt2x00_rt(rt2x00dev, RT3090)) {
4661 rt2800_rfcsr_write(rt2x00dev, 31, 0x14);
4662
4663 rt2800_rfcsr_read(rt2x00dev, 6, &rfcsr);
4664 rt2x00_set_field8(&rfcsr, RFCSR6_R2, 1);
4665 rt2800_rfcsr_write(rt2x00dev, 6, rfcsr);
4666
4667 rt2800_register_read(rt2x00dev, LDO_CFG0, &reg);
4668 rt2x00_set_field32(&reg, LDO_CFG0_BGSEL, 1);
4669 if (rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) ||
4670 rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E)) {
4671 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
4672 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_DAC_TEST))
4673 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 3);
4674 else
4675 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 0);
4676 }
4677 rt2800_register_write(rt2x00dev, LDO_CFG0, reg);
4678
4679 rt2800_register_read(rt2x00dev, GPIO_SWITCH, &reg);
4680 rt2x00_set_field32(&reg, GPIO_SWITCH_5, 0);
4681 rt2800_register_write(rt2x00dev, GPIO_SWITCH, reg);
4682 }
Stanislaw Gruszkac5b3c352013-04-17 14:08:16 +02004683
4684 rt2800_rx_filter_calibration(rt2x00dev);
Stanislaw Gruszka5de5a1f2013-04-17 14:08:17 +02004685
4686 if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F) ||
4687 rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) ||
4688 rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E))
4689 rt2800_rfcsr_write(rt2x00dev, 27, 0x03);
Stanislaw Gruszkad9517f22013-04-17 14:08:18 +02004690
4691 rt2800_led_open_drain_enable(rt2x00dev);
Stanislaw Gruszkada8064c2013-04-17 14:08:19 +02004692 rt2800_normal_mode_setup_3xxx(rt2x00dev);
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004693}
4694
4695static void rt2800_init_rfcsr_3290(struct rt2x00_dev *rt2x00dev)
4696{
Stanislaw Gruszkaf9cdcbb2013-04-17 14:08:12 +02004697 u8 rfcsr;
4698
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02004699 rt2800_rf_init_calibration(rt2x00dev, 2);
4700
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004701 rt2800_rfcsr_write(rt2x00dev, 1, 0x0f);
4702 rt2800_rfcsr_write(rt2x00dev, 2, 0x80);
4703 rt2800_rfcsr_write(rt2x00dev, 3, 0x08);
4704 rt2800_rfcsr_write(rt2x00dev, 4, 0x00);
4705 rt2800_rfcsr_write(rt2x00dev, 6, 0xa0);
4706 rt2800_rfcsr_write(rt2x00dev, 8, 0xf3);
4707 rt2800_rfcsr_write(rt2x00dev, 9, 0x02);
4708 rt2800_rfcsr_write(rt2x00dev, 10, 0x53);
4709 rt2800_rfcsr_write(rt2x00dev, 11, 0x4a);
4710 rt2800_rfcsr_write(rt2x00dev, 12, 0x46);
4711 rt2800_rfcsr_write(rt2x00dev, 13, 0x9f);
4712 rt2800_rfcsr_write(rt2x00dev, 18, 0x02);
4713 rt2800_rfcsr_write(rt2x00dev, 22, 0x20);
4714 rt2800_rfcsr_write(rt2x00dev, 25, 0x83);
4715 rt2800_rfcsr_write(rt2x00dev, 26, 0x82);
4716 rt2800_rfcsr_write(rt2x00dev, 27, 0x09);
4717 rt2800_rfcsr_write(rt2x00dev, 29, 0x10);
4718 rt2800_rfcsr_write(rt2x00dev, 30, 0x10);
4719 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
4720 rt2800_rfcsr_write(rt2x00dev, 32, 0x80);
4721 rt2800_rfcsr_write(rt2x00dev, 33, 0x00);
4722 rt2800_rfcsr_write(rt2x00dev, 34, 0x05);
4723 rt2800_rfcsr_write(rt2x00dev, 35, 0x12);
4724 rt2800_rfcsr_write(rt2x00dev, 36, 0x00);
4725 rt2800_rfcsr_write(rt2x00dev, 38, 0x85);
4726 rt2800_rfcsr_write(rt2x00dev, 39, 0x1b);
4727 rt2800_rfcsr_write(rt2x00dev, 40, 0x0b);
4728 rt2800_rfcsr_write(rt2x00dev, 41, 0xbb);
4729 rt2800_rfcsr_write(rt2x00dev, 42, 0xd5);
4730 rt2800_rfcsr_write(rt2x00dev, 43, 0x7b);
4731 rt2800_rfcsr_write(rt2x00dev, 44, 0x0e);
4732 rt2800_rfcsr_write(rt2x00dev, 45, 0xa2);
4733 rt2800_rfcsr_write(rt2x00dev, 46, 0x73);
4734 rt2800_rfcsr_write(rt2x00dev, 47, 0x00);
4735 rt2800_rfcsr_write(rt2x00dev, 48, 0x10);
4736 rt2800_rfcsr_write(rt2x00dev, 49, 0x98);
4737 rt2800_rfcsr_write(rt2x00dev, 52, 0x38);
4738 rt2800_rfcsr_write(rt2x00dev, 53, 0x00);
4739 rt2800_rfcsr_write(rt2x00dev, 54, 0x78);
4740 rt2800_rfcsr_write(rt2x00dev, 55, 0x43);
4741 rt2800_rfcsr_write(rt2x00dev, 56, 0x02);
4742 rt2800_rfcsr_write(rt2x00dev, 57, 0x80);
4743 rt2800_rfcsr_write(rt2x00dev, 58, 0x7f);
4744 rt2800_rfcsr_write(rt2x00dev, 59, 0x09);
4745 rt2800_rfcsr_write(rt2x00dev, 60, 0x45);
4746 rt2800_rfcsr_write(rt2x00dev, 61, 0xc1);
Stanislaw Gruszkaf9cdcbb2013-04-17 14:08:12 +02004747
4748 rt2800_rfcsr_read(rt2x00dev, 29, &rfcsr);
4749 rt2x00_set_field8(&rfcsr, RFCSR29_RSSI_GAIN, 3);
4750 rt2800_rfcsr_write(rt2x00dev, 29, rfcsr);
Stanislaw Gruszkad9517f22013-04-17 14:08:18 +02004751
4752 rt2800_led_open_drain_enable(rt2x00dev);
Stanislaw Gruszkada8064c2013-04-17 14:08:19 +02004753 rt2800_normal_mode_setup_3xxx(rt2x00dev);
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004754}
4755
4756static void rt2800_init_rfcsr_3352(struct rt2x00_dev *rt2x00dev)
4757{
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02004758 rt2800_rf_init_calibration(rt2x00dev, 30);
4759
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004760 rt2800_rfcsr_write(rt2x00dev, 0, 0xf0);
4761 rt2800_rfcsr_write(rt2x00dev, 1, 0x23);
4762 rt2800_rfcsr_write(rt2x00dev, 2, 0x50);
4763 rt2800_rfcsr_write(rt2x00dev, 3, 0x18);
4764 rt2800_rfcsr_write(rt2x00dev, 4, 0x00);
4765 rt2800_rfcsr_write(rt2x00dev, 5, 0x00);
4766 rt2800_rfcsr_write(rt2x00dev, 6, 0x33);
4767 rt2800_rfcsr_write(rt2x00dev, 7, 0x00);
4768 rt2800_rfcsr_write(rt2x00dev, 8, 0xf1);
4769 rt2800_rfcsr_write(rt2x00dev, 9, 0x02);
4770 rt2800_rfcsr_write(rt2x00dev, 10, 0xd2);
4771 rt2800_rfcsr_write(rt2x00dev, 11, 0x42);
4772 rt2800_rfcsr_write(rt2x00dev, 12, 0x1c);
4773 rt2800_rfcsr_write(rt2x00dev, 13, 0x00);
4774 rt2800_rfcsr_write(rt2x00dev, 14, 0x5a);
4775 rt2800_rfcsr_write(rt2x00dev, 15, 0x00);
4776 rt2800_rfcsr_write(rt2x00dev, 16, 0x01);
4777 rt2800_rfcsr_write(rt2x00dev, 18, 0x45);
4778 rt2800_rfcsr_write(rt2x00dev, 19, 0x02);
4779 rt2800_rfcsr_write(rt2x00dev, 20, 0x00);
4780 rt2800_rfcsr_write(rt2x00dev, 21, 0x00);
4781 rt2800_rfcsr_write(rt2x00dev, 22, 0x00);
4782 rt2800_rfcsr_write(rt2x00dev, 23, 0x00);
4783 rt2800_rfcsr_write(rt2x00dev, 24, 0x00);
4784 rt2800_rfcsr_write(rt2x00dev, 25, 0x80);
4785 rt2800_rfcsr_write(rt2x00dev, 26, 0x00);
4786 rt2800_rfcsr_write(rt2x00dev, 27, 0x03);
4787 rt2800_rfcsr_write(rt2x00dev, 28, 0x03);
4788 rt2800_rfcsr_write(rt2x00dev, 29, 0x00);
4789 rt2800_rfcsr_write(rt2x00dev, 30, 0x10);
4790 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
4791 rt2800_rfcsr_write(rt2x00dev, 32, 0x80);
4792 rt2800_rfcsr_write(rt2x00dev, 33, 0x00);
4793 rt2800_rfcsr_write(rt2x00dev, 34, 0x01);
4794 rt2800_rfcsr_write(rt2x00dev, 35, 0x03);
4795 rt2800_rfcsr_write(rt2x00dev, 36, 0xbd);
4796 rt2800_rfcsr_write(rt2x00dev, 37, 0x3c);
4797 rt2800_rfcsr_write(rt2x00dev, 38, 0x5f);
4798 rt2800_rfcsr_write(rt2x00dev, 39, 0xc5);
4799 rt2800_rfcsr_write(rt2x00dev, 40, 0x33);
4800 rt2800_rfcsr_write(rt2x00dev, 41, 0x5b);
4801 rt2800_rfcsr_write(rt2x00dev, 42, 0x5b);
4802 rt2800_rfcsr_write(rt2x00dev, 43, 0xdb);
4803 rt2800_rfcsr_write(rt2x00dev, 44, 0xdb);
4804 rt2800_rfcsr_write(rt2x00dev, 45, 0xdb);
4805 rt2800_rfcsr_write(rt2x00dev, 46, 0xdd);
4806 rt2800_rfcsr_write(rt2x00dev, 47, 0x0d);
4807 rt2800_rfcsr_write(rt2x00dev, 48, 0x14);
4808 rt2800_rfcsr_write(rt2x00dev, 49, 0x00);
4809 rt2800_rfcsr_write(rt2x00dev, 50, 0x2d);
4810 rt2800_rfcsr_write(rt2x00dev, 51, 0x7f);
4811 rt2800_rfcsr_write(rt2x00dev, 52, 0x00);
4812 rt2800_rfcsr_write(rt2x00dev, 53, 0x52);
4813 rt2800_rfcsr_write(rt2x00dev, 54, 0x1b);
4814 rt2800_rfcsr_write(rt2x00dev, 55, 0x7f);
4815 rt2800_rfcsr_write(rt2x00dev, 56, 0x00);
4816 rt2800_rfcsr_write(rt2x00dev, 57, 0x52);
4817 rt2800_rfcsr_write(rt2x00dev, 58, 0x1b);
4818 rt2800_rfcsr_write(rt2x00dev, 59, 0x00);
4819 rt2800_rfcsr_write(rt2x00dev, 60, 0x00);
4820 rt2800_rfcsr_write(rt2x00dev, 61, 0x00);
4821 rt2800_rfcsr_write(rt2x00dev, 62, 0x00);
4822 rt2800_rfcsr_write(rt2x00dev, 63, 0x00);
Stanislaw Gruszkac5b3c352013-04-17 14:08:16 +02004823
4824 rt2800_rx_filter_calibration(rt2x00dev);
Stanislaw Gruszkad9517f22013-04-17 14:08:18 +02004825 rt2800_led_open_drain_enable(rt2x00dev);
Stanislaw Gruszkada8064c2013-04-17 14:08:19 +02004826 rt2800_normal_mode_setup_3xxx(rt2x00dev);
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004827}
4828
4829static void rt2800_init_rfcsr_3390(struct rt2x00_dev *rt2x00dev)
4830{
Stanislaw Gruszka2971e662013-04-17 14:08:14 +02004831 u32 reg;
4832
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02004833 rt2800_rf_init_calibration(rt2x00dev, 30);
4834
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004835 rt2800_rfcsr_write(rt2x00dev, 0, 0xa0);
4836 rt2800_rfcsr_write(rt2x00dev, 1, 0xe1);
4837 rt2800_rfcsr_write(rt2x00dev, 2, 0xf1);
4838 rt2800_rfcsr_write(rt2x00dev, 3, 0x62);
4839 rt2800_rfcsr_write(rt2x00dev, 4, 0x40);
4840 rt2800_rfcsr_write(rt2x00dev, 5, 0x8b);
4841 rt2800_rfcsr_write(rt2x00dev, 6, 0x42);
4842 rt2800_rfcsr_write(rt2x00dev, 7, 0x34);
4843 rt2800_rfcsr_write(rt2x00dev, 8, 0x00);
4844 rt2800_rfcsr_write(rt2x00dev, 9, 0xc0);
4845 rt2800_rfcsr_write(rt2x00dev, 10, 0x61);
4846 rt2800_rfcsr_write(rt2x00dev, 11, 0x21);
4847 rt2800_rfcsr_write(rt2x00dev, 12, 0x3b);
4848 rt2800_rfcsr_write(rt2x00dev, 13, 0xe0);
4849 rt2800_rfcsr_write(rt2x00dev, 14, 0x90);
4850 rt2800_rfcsr_write(rt2x00dev, 15, 0x53);
4851 rt2800_rfcsr_write(rt2x00dev, 16, 0xe0);
4852 rt2800_rfcsr_write(rt2x00dev, 17, 0x94);
4853 rt2800_rfcsr_write(rt2x00dev, 18, 0x5c);
4854 rt2800_rfcsr_write(rt2x00dev, 19, 0x4a);
4855 rt2800_rfcsr_write(rt2x00dev, 20, 0xb2);
4856 rt2800_rfcsr_write(rt2x00dev, 21, 0xf6);
4857 rt2800_rfcsr_write(rt2x00dev, 22, 0x00);
4858 rt2800_rfcsr_write(rt2x00dev, 23, 0x14);
4859 rt2800_rfcsr_write(rt2x00dev, 24, 0x08);
4860 rt2800_rfcsr_write(rt2x00dev, 25, 0x3d);
4861 rt2800_rfcsr_write(rt2x00dev, 26, 0x85);
4862 rt2800_rfcsr_write(rt2x00dev, 27, 0x00);
4863 rt2800_rfcsr_write(rt2x00dev, 28, 0x41);
4864 rt2800_rfcsr_write(rt2x00dev, 29, 0x8f);
4865 rt2800_rfcsr_write(rt2x00dev, 30, 0x20);
4866 rt2800_rfcsr_write(rt2x00dev, 31, 0x0f);
Stanislaw Gruszka2971e662013-04-17 14:08:14 +02004867
4868 rt2800_register_read(rt2x00dev, GPIO_SWITCH, &reg);
4869 rt2x00_set_field32(&reg, GPIO_SWITCH_5, 0);
4870 rt2800_register_write(rt2x00dev, GPIO_SWITCH, reg);
Stanislaw Gruszkac5b3c352013-04-17 14:08:16 +02004871
4872 rt2800_rx_filter_calibration(rt2x00dev);
Stanislaw Gruszka5de5a1f2013-04-17 14:08:17 +02004873
4874 if (rt2x00_rt_rev_lt(rt2x00dev, RT3390, REV_RT3390E))
4875 rt2800_rfcsr_write(rt2x00dev, 27, 0x03);
Stanislaw Gruszkad9517f22013-04-17 14:08:18 +02004876
4877 rt2800_led_open_drain_enable(rt2x00dev);
Stanislaw Gruszkada8064c2013-04-17 14:08:19 +02004878 rt2800_normal_mode_setup_3xxx(rt2x00dev);
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004879}
4880
4881static void rt2800_init_rfcsr_3572(struct rt2x00_dev *rt2x00dev)
4882{
Stanislaw Gruszka87d91db2013-04-17 14:08:15 +02004883 u8 rfcsr;
4884 u32 reg;
4885
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02004886 rt2800_rf_init_calibration(rt2x00dev, 30);
4887
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004888 rt2800_rfcsr_write(rt2x00dev, 0, 0x70);
4889 rt2800_rfcsr_write(rt2x00dev, 1, 0x81);
4890 rt2800_rfcsr_write(rt2x00dev, 2, 0xf1);
4891 rt2800_rfcsr_write(rt2x00dev, 3, 0x02);
4892 rt2800_rfcsr_write(rt2x00dev, 4, 0x4c);
4893 rt2800_rfcsr_write(rt2x00dev, 5, 0x05);
4894 rt2800_rfcsr_write(rt2x00dev, 6, 0x4a);
4895 rt2800_rfcsr_write(rt2x00dev, 7, 0xd8);
4896 rt2800_rfcsr_write(rt2x00dev, 9, 0xc3);
4897 rt2800_rfcsr_write(rt2x00dev, 10, 0xf1);
4898 rt2800_rfcsr_write(rt2x00dev, 11, 0xb9);
4899 rt2800_rfcsr_write(rt2x00dev, 12, 0x70);
4900 rt2800_rfcsr_write(rt2x00dev, 13, 0x65);
4901 rt2800_rfcsr_write(rt2x00dev, 14, 0xa0);
4902 rt2800_rfcsr_write(rt2x00dev, 15, 0x53);
4903 rt2800_rfcsr_write(rt2x00dev, 16, 0x4c);
4904 rt2800_rfcsr_write(rt2x00dev, 17, 0x23);
4905 rt2800_rfcsr_write(rt2x00dev, 18, 0xac);
4906 rt2800_rfcsr_write(rt2x00dev, 19, 0x93);
4907 rt2800_rfcsr_write(rt2x00dev, 20, 0xb3);
4908 rt2800_rfcsr_write(rt2x00dev, 21, 0xd0);
4909 rt2800_rfcsr_write(rt2x00dev, 22, 0x00);
4910 rt2800_rfcsr_write(rt2x00dev, 23, 0x3c);
4911 rt2800_rfcsr_write(rt2x00dev, 24, 0x16);
4912 rt2800_rfcsr_write(rt2x00dev, 25, 0x15);
4913 rt2800_rfcsr_write(rt2x00dev, 26, 0x85);
4914 rt2800_rfcsr_write(rt2x00dev, 27, 0x00);
4915 rt2800_rfcsr_write(rt2x00dev, 28, 0x00);
4916 rt2800_rfcsr_write(rt2x00dev, 29, 0x9b);
4917 rt2800_rfcsr_write(rt2x00dev, 30, 0x09);
4918 rt2800_rfcsr_write(rt2x00dev, 31, 0x10);
Stanislaw Gruszka87d91db2013-04-17 14:08:15 +02004919
4920 rt2800_rfcsr_read(rt2x00dev, 6, &rfcsr);
4921 rt2x00_set_field8(&rfcsr, RFCSR6_R2, 1);
4922 rt2800_rfcsr_write(rt2x00dev, 6, rfcsr);
4923
4924 rt2800_register_read(rt2x00dev, LDO_CFG0, &reg);
4925 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 3);
4926 rt2x00_set_field32(&reg, LDO_CFG0_BGSEL, 1);
4927 rt2800_register_write(rt2x00dev, LDO_CFG0, reg);
4928 msleep(1);
4929 rt2800_register_read(rt2x00dev, LDO_CFG0, &reg);
4930 rt2x00_set_field32(&reg, LDO_CFG0_LDO_CORE_VLEVEL, 0);
4931 rt2x00_set_field32(&reg, LDO_CFG0_BGSEL, 1);
4932 rt2800_register_write(rt2x00dev, LDO_CFG0, reg);
Stanislaw Gruszkac5b3c352013-04-17 14:08:16 +02004933
4934 rt2800_rx_filter_calibration(rt2x00dev);
Stanislaw Gruszkad9517f22013-04-17 14:08:18 +02004935 rt2800_led_open_drain_enable(rt2x00dev);
Stanislaw Gruszkada8064c2013-04-17 14:08:19 +02004936 rt2800_normal_mode_setup_3xxx(rt2x00dev);
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004937}
4938
4939static void rt2800_init_rfcsr_5390(struct rt2x00_dev *rt2x00dev)
4940{
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02004941 rt2800_rf_init_calibration(rt2x00dev, 2);
4942
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01004943 rt2800_rfcsr_write(rt2x00dev, 1, 0x0f);
4944 rt2800_rfcsr_write(rt2x00dev, 2, 0x80);
4945 rt2800_rfcsr_write(rt2x00dev, 3, 0x88);
4946 rt2800_rfcsr_write(rt2x00dev, 5, 0x10);
4947 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
4948 rt2800_rfcsr_write(rt2x00dev, 6, 0xe0);
4949 else
4950 rt2800_rfcsr_write(rt2x00dev, 6, 0xa0);
4951 rt2800_rfcsr_write(rt2x00dev, 7, 0x00);
4952 rt2800_rfcsr_write(rt2x00dev, 10, 0x53);
4953 rt2800_rfcsr_write(rt2x00dev, 11, 0x4a);
4954 rt2800_rfcsr_write(rt2x00dev, 12, 0xc6);
4955 rt2800_rfcsr_write(rt2x00dev, 13, 0x9f);
4956 rt2800_rfcsr_write(rt2x00dev, 14, 0x00);
4957 rt2800_rfcsr_write(rt2x00dev, 15, 0x00);
4958 rt2800_rfcsr_write(rt2x00dev, 16, 0x00);
4959 rt2800_rfcsr_write(rt2x00dev, 18, 0x03);
4960 rt2800_rfcsr_write(rt2x00dev, 19, 0x00);
4961
4962 rt2800_rfcsr_write(rt2x00dev, 20, 0x00);
4963 rt2800_rfcsr_write(rt2x00dev, 21, 0x00);
4964 rt2800_rfcsr_write(rt2x00dev, 22, 0x20);
4965 rt2800_rfcsr_write(rt2x00dev, 23, 0x00);
4966 rt2800_rfcsr_write(rt2x00dev, 24, 0x00);
4967 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
4968 rt2800_rfcsr_write(rt2x00dev, 25, 0x80);
4969 else
4970 rt2800_rfcsr_write(rt2x00dev, 25, 0xc0);
4971 rt2800_rfcsr_write(rt2x00dev, 26, 0x00);
4972 rt2800_rfcsr_write(rt2x00dev, 27, 0x09);
4973 rt2800_rfcsr_write(rt2x00dev, 28, 0x00);
4974 rt2800_rfcsr_write(rt2x00dev, 29, 0x10);
4975
4976 rt2800_rfcsr_write(rt2x00dev, 30, 0x00);
4977 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
4978 rt2800_rfcsr_write(rt2x00dev, 32, 0x80);
4979 rt2800_rfcsr_write(rt2x00dev, 33, 0x00);
4980 rt2800_rfcsr_write(rt2x00dev, 34, 0x07);
4981 rt2800_rfcsr_write(rt2x00dev, 35, 0x12);
4982 rt2800_rfcsr_write(rt2x00dev, 36, 0x00);
4983 rt2800_rfcsr_write(rt2x00dev, 37, 0x08);
4984 rt2800_rfcsr_write(rt2x00dev, 38, 0x85);
4985 rt2800_rfcsr_write(rt2x00dev, 39, 0x1b);
4986
4987 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
4988 rt2800_rfcsr_write(rt2x00dev, 40, 0x0b);
4989 else
4990 rt2800_rfcsr_write(rt2x00dev, 40, 0x4b);
4991 rt2800_rfcsr_write(rt2x00dev, 41, 0xbb);
4992 rt2800_rfcsr_write(rt2x00dev, 42, 0xd2);
4993 rt2800_rfcsr_write(rt2x00dev, 43, 0x9a);
4994 rt2800_rfcsr_write(rt2x00dev, 44, 0x0e);
4995 rt2800_rfcsr_write(rt2x00dev, 45, 0xa2);
4996 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
4997 rt2800_rfcsr_write(rt2x00dev, 46, 0x73);
4998 else
4999 rt2800_rfcsr_write(rt2x00dev, 46, 0x7b);
5000 rt2800_rfcsr_write(rt2x00dev, 47, 0x00);
5001 rt2800_rfcsr_write(rt2x00dev, 48, 0x10);
5002 rt2800_rfcsr_write(rt2x00dev, 49, 0x94);
5003
5004 rt2800_rfcsr_write(rt2x00dev, 52, 0x38);
5005 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
5006 rt2800_rfcsr_write(rt2x00dev, 53, 0x00);
5007 else
5008 rt2800_rfcsr_write(rt2x00dev, 53, 0x84);
5009 rt2800_rfcsr_write(rt2x00dev, 54, 0x78);
5010 rt2800_rfcsr_write(rt2x00dev, 55, 0x44);
5011 rt2800_rfcsr_write(rt2x00dev, 56, 0x22);
5012 rt2800_rfcsr_write(rt2x00dev, 57, 0x80);
5013 rt2800_rfcsr_write(rt2x00dev, 58, 0x7f);
5014 rt2800_rfcsr_write(rt2x00dev, 59, 0x63);
5015
5016 rt2800_rfcsr_write(rt2x00dev, 60, 0x45);
5017 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390F))
5018 rt2800_rfcsr_write(rt2x00dev, 61, 0xd1);
5019 else
5020 rt2800_rfcsr_write(rt2x00dev, 61, 0xdd);
5021 rt2800_rfcsr_write(rt2x00dev, 62, 0x00);
5022 rt2800_rfcsr_write(rt2x00dev, 63, 0x00);
Stanislaw Gruszkaf7df8fe2013-04-17 14:08:10 +02005023
5024 rt2800_normal_mode_setup_5xxx(rt2x00dev);
Stanislaw Gruszkad9517f22013-04-17 14:08:18 +02005025
5026 rt2800_led_open_drain_enable(rt2x00dev);
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01005027}
5028
5029static void rt2800_init_rfcsr_5392(struct rt2x00_dev *rt2x00dev)
5030{
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02005031 rt2800_rf_init_calibration(rt2x00dev, 2);
5032
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01005033 rt2800_rfcsr_write(rt2x00dev, 1, 0x17);
5034 rt2800_rfcsr_write(rt2x00dev, 2, 0x80);
5035 rt2800_rfcsr_write(rt2x00dev, 3, 0x88);
5036 rt2800_rfcsr_write(rt2x00dev, 5, 0x10);
5037 rt2800_rfcsr_write(rt2x00dev, 6, 0xe0);
5038 rt2800_rfcsr_write(rt2x00dev, 7, 0x00);
5039 rt2800_rfcsr_write(rt2x00dev, 10, 0x53);
5040 rt2800_rfcsr_write(rt2x00dev, 11, 0x4a);
5041 rt2800_rfcsr_write(rt2x00dev, 12, 0x46);
5042 rt2800_rfcsr_write(rt2x00dev, 13, 0x9f);
5043 rt2800_rfcsr_write(rt2x00dev, 14, 0x00);
5044 rt2800_rfcsr_write(rt2x00dev, 15, 0x00);
5045 rt2800_rfcsr_write(rt2x00dev, 16, 0x00);
5046 rt2800_rfcsr_write(rt2x00dev, 18, 0x03);
5047 rt2800_rfcsr_write(rt2x00dev, 19, 0x4d);
5048 rt2800_rfcsr_write(rt2x00dev, 20, 0x00);
5049 rt2800_rfcsr_write(rt2x00dev, 21, 0x8d);
5050 rt2800_rfcsr_write(rt2x00dev, 22, 0x20);
5051 rt2800_rfcsr_write(rt2x00dev, 23, 0x0b);
5052 rt2800_rfcsr_write(rt2x00dev, 24, 0x44);
5053 rt2800_rfcsr_write(rt2x00dev, 25, 0x80);
5054 rt2800_rfcsr_write(rt2x00dev, 26, 0x82);
5055 rt2800_rfcsr_write(rt2x00dev, 27, 0x09);
5056 rt2800_rfcsr_write(rt2x00dev, 28, 0x00);
5057 rt2800_rfcsr_write(rt2x00dev, 29, 0x10);
5058 rt2800_rfcsr_write(rt2x00dev, 30, 0x10);
5059 rt2800_rfcsr_write(rt2x00dev, 31, 0x80);
5060 rt2800_rfcsr_write(rt2x00dev, 32, 0x20);
5061 rt2800_rfcsr_write(rt2x00dev, 33, 0xC0);
5062 rt2800_rfcsr_write(rt2x00dev, 34, 0x07);
5063 rt2800_rfcsr_write(rt2x00dev, 35, 0x12);
5064 rt2800_rfcsr_write(rt2x00dev, 36, 0x00);
5065 rt2800_rfcsr_write(rt2x00dev, 37, 0x08);
5066 rt2800_rfcsr_write(rt2x00dev, 38, 0x89);
5067 rt2800_rfcsr_write(rt2x00dev, 39, 0x1b);
5068 rt2800_rfcsr_write(rt2x00dev, 40, 0x0f);
5069 rt2800_rfcsr_write(rt2x00dev, 41, 0xbb);
5070 rt2800_rfcsr_write(rt2x00dev, 42, 0xd5);
5071 rt2800_rfcsr_write(rt2x00dev, 43, 0x9b);
5072 rt2800_rfcsr_write(rt2x00dev, 44, 0x0e);
5073 rt2800_rfcsr_write(rt2x00dev, 45, 0xa2);
5074 rt2800_rfcsr_write(rt2x00dev, 46, 0x73);
5075 rt2800_rfcsr_write(rt2x00dev, 47, 0x0c);
5076 rt2800_rfcsr_write(rt2x00dev, 48, 0x10);
5077 rt2800_rfcsr_write(rt2x00dev, 49, 0x94);
5078 rt2800_rfcsr_write(rt2x00dev, 50, 0x94);
5079 rt2800_rfcsr_write(rt2x00dev, 51, 0x3a);
5080 rt2800_rfcsr_write(rt2x00dev, 52, 0x48);
5081 rt2800_rfcsr_write(rt2x00dev, 53, 0x44);
5082 rt2800_rfcsr_write(rt2x00dev, 54, 0x38);
5083 rt2800_rfcsr_write(rt2x00dev, 55, 0x43);
5084 rt2800_rfcsr_write(rt2x00dev, 56, 0xa1);
5085 rt2800_rfcsr_write(rt2x00dev, 57, 0x00);
5086 rt2800_rfcsr_write(rt2x00dev, 58, 0x39);
5087 rt2800_rfcsr_write(rt2x00dev, 59, 0x07);
5088 rt2800_rfcsr_write(rt2x00dev, 60, 0x45);
5089 rt2800_rfcsr_write(rt2x00dev, 61, 0x91);
5090 rt2800_rfcsr_write(rt2x00dev, 62, 0x39);
5091 rt2800_rfcsr_write(rt2x00dev, 63, 0x07);
Stanislaw Gruszkaf7df8fe2013-04-17 14:08:10 +02005092
5093 rt2800_normal_mode_setup_5xxx(rt2x00dev);
Stanislaw Gruszkad9517f22013-04-17 14:08:18 +02005094
5095 rt2800_led_open_drain_enable(rt2x00dev);
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01005096}
5097
Stanislaw Gruszka0c9e5fb2013-03-16 19:19:36 +01005098static void rt2800_init_rfcsr_5592(struct rt2x00_dev *rt2x00dev)
5099{
Stanislaw Gruszkace94ede92013-04-17 14:08:11 +02005100 rt2800_rf_init_calibration(rt2x00dev, 30);
5101
Stanislaw Gruszka0c9e5fb2013-03-16 19:19:36 +01005102 rt2800_rfcsr_write(rt2x00dev, 1, 0x3F);
5103 rt2800_rfcsr_write(rt2x00dev, 3, 0x08);
5104 rt2800_rfcsr_write(rt2x00dev, 3, 0x08);
5105 rt2800_rfcsr_write(rt2x00dev, 5, 0x10);
5106 rt2800_rfcsr_write(rt2x00dev, 6, 0xE4);
5107 rt2800_rfcsr_write(rt2x00dev, 7, 0x00);
5108 rt2800_rfcsr_write(rt2x00dev, 14, 0x00);
5109 rt2800_rfcsr_write(rt2x00dev, 15, 0x00);
5110 rt2800_rfcsr_write(rt2x00dev, 16, 0x00);
5111 rt2800_rfcsr_write(rt2x00dev, 18, 0x03);
5112 rt2800_rfcsr_write(rt2x00dev, 19, 0x4D);
5113 rt2800_rfcsr_write(rt2x00dev, 20, 0x10);
5114 rt2800_rfcsr_write(rt2x00dev, 21, 0x8D);
5115 rt2800_rfcsr_write(rt2x00dev, 26, 0x82);
5116 rt2800_rfcsr_write(rt2x00dev, 28, 0x00);
5117 rt2800_rfcsr_write(rt2x00dev, 29, 0x10);
5118 rt2800_rfcsr_write(rt2x00dev, 33, 0xC0);
5119 rt2800_rfcsr_write(rt2x00dev, 34, 0x07);
5120 rt2800_rfcsr_write(rt2x00dev, 35, 0x12);
5121 rt2800_rfcsr_write(rt2x00dev, 47, 0x0C);
5122 rt2800_rfcsr_write(rt2x00dev, 53, 0x22);
5123 rt2800_rfcsr_write(rt2x00dev, 63, 0x07);
5124
5125 rt2800_rfcsr_write(rt2x00dev, 2, 0x80);
5126 msleep(1);
5127
5128 rt2800_adjust_freq_offset(rt2x00dev);
Stanislaw Gruszkac630ccf2013-03-16 19:19:46 +01005129
Stanislaw Gruszkac630ccf2013-03-16 19:19:46 +01005130 /* Enable DC filter */
5131 if (rt2x00_rt_rev_gte(rt2x00dev, RT5592, REV_RT5592C))
5132 rt2800_bbp_write(rt2x00dev, 103, 0xc0);
5133
Stanislaw Gruszkaf7df8fe2013-04-17 14:08:10 +02005134 rt2800_normal_mode_setup_5xxx(rt2x00dev);
Stanislaw Gruszka5de5a1f2013-04-17 14:08:17 +02005135
5136 if (rt2x00_rt_rev_lt(rt2x00dev, RT5592, REV_RT5592C))
5137 rt2800_rfcsr_write(rt2x00dev, 27, 0x03);
Stanislaw Gruszkad9517f22013-04-17 14:08:18 +02005138
5139 rt2800_led_open_drain_enable(rt2x00dev);
Stanislaw Gruszka0c9e5fb2013-03-16 19:19:36 +01005140}
5141
Stanislaw Gruszka074f2522013-04-17 14:08:20 +02005142static void rt2800_init_rfcsr(struct rt2x00_dev *rt2x00dev)
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01005143{
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01005144 if (rt2800_is_305x_soc(rt2x00dev)) {
5145 rt2800_init_rfcsr_305x_soc(rt2x00dev);
Stanislaw Gruszka074f2522013-04-17 14:08:20 +02005146 return;
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01005147 }
RA-Shiang Tu60687ba2011-02-20 13:57:46 +01005148
Stanislaw Gruszkad5374ef2012-12-12 06:30:55 +01005149 switch (rt2x00dev->chip.rt) {
5150 case RT3070:
5151 case RT3071:
5152 case RT3090:
5153 rt2800_init_rfcsr_30xx(rt2x00dev);
5154 break;
5155 case RT3290:
5156 rt2800_init_rfcsr_3290(rt2x00dev);
5157 break;
5158 case RT3352:
5159 rt2800_init_rfcsr_3352(rt2x00dev);
5160 break;
5161 case RT3390:
5162 rt2800_init_rfcsr_3390(rt2x00dev);
5163 break;
5164 case RT3572:
5165 rt2800_init_rfcsr_3572(rt2x00dev);
5166 break;
5167 case RT5390:
5168 rt2800_init_rfcsr_5390(rt2x00dev);
5169 break;
5170 case RT5392:
5171 rt2800_init_rfcsr_5392(rt2x00dev);
5172 break;
Stanislaw Gruszka0c9e5fb2013-03-16 19:19:36 +01005173 case RT5592:
5174 rt2800_init_rfcsr_5592(rt2x00dev);
Stanislaw Gruszka074f2522013-04-17 14:08:20 +02005175 break;
Gertjan van Wingerde8cdd15e2010-04-11 14:31:12 +02005176 }
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +01005177}
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005178
5179int rt2800_enable_radio(struct rt2x00_dev *rt2x00dev)
5180{
5181 u32 reg;
5182 u16 word;
5183
5184 /*
5185 * Initialize all registers.
5186 */
5187 if (unlikely(rt2800_wait_wpdma_ready(rt2x00dev) ||
Stanislaw Gruszkac630ccf2013-03-16 19:19:46 +01005188 rt2800_init_registers(rt2x00dev)))
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005189 return -EIO;
5190
Stanislaw Gruszka39bad382013-09-09 12:37:37 +02005191 if (unlikely(rt2800_wait_bbp_rf_ready(rt2x00dev)))
5192 return -EIO;
5193
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005194 /*
5195 * Send signal to firmware during boot time.
5196 */
Stanislaw Gruszkac630ccf2013-03-16 19:19:46 +01005197 rt2800_register_write(rt2x00dev, H2M_BBP_AGENT, 0);
5198 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
Stanislaw Gruszka39bad382013-09-09 12:37:37 +02005199 if (rt2x00_is_usb(rt2x00dev))
Stanislaw Gruszkac630ccf2013-03-16 19:19:46 +01005200 rt2800_register_write(rt2x00dev, H2M_INT_SRC, 0);
Stanislaw Gruszka39bad382013-09-09 12:37:37 +02005201 rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0, 0, 0);
Stanislaw Gruszkac630ccf2013-03-16 19:19:46 +01005202 msleep(1);
5203
Stanislaw Gruszka39bad382013-09-09 12:37:37 +02005204 if (unlikely(rt2800_wait_bbp_ready(rt2x00dev)))
Stanislaw Gruszkac630ccf2013-03-16 19:19:46 +01005205 return -EIO;
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005206
Stanislaw Gruszka39bad382013-09-09 12:37:37 +02005207 rt2800_init_bbp(rt2x00dev);
Stanislaw Gruszka074f2522013-04-17 14:08:20 +02005208 rt2800_init_rfcsr(rt2x00dev);
5209
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005210 if (rt2x00_is_usb(rt2x00dev) &&
5211 (rt2x00_rt(rt2x00dev, RT3070) ||
5212 rt2x00_rt(rt2x00dev, RT3071) ||
5213 rt2x00_rt(rt2x00dev, RT3572))) {
5214 udelay(200);
5215 rt2800_mcu_request(rt2x00dev, MCU_CURRENT, 0, 0, 0);
5216 udelay(10);
5217 }
5218
5219 /*
5220 * Enable RX.
5221 */
5222 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
5223 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
5224 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 0);
5225 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
5226
5227 udelay(50);
5228
5229 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
5230 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 1);
5231 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 1);
5232 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_WP_DMA_BURST_SIZE, 2);
5233 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 1);
5234 rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
5235
5236 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
5237 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
5238 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 1);
5239 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
5240
5241 /*
5242 * Initialize LED control
5243 */
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005244 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED_AG_CONF, &word);
5245 rt2800_mcu_request(rt2x00dev, MCU_LED_AG_CONF, 0xff,
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005246 word & 0xff, (word >> 8) & 0xff);
5247
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005248 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED_ACT_CONF, &word);
5249 rt2800_mcu_request(rt2x00dev, MCU_LED_ACT_CONF, 0xff,
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005250 word & 0xff, (word >> 8) & 0xff);
5251
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005252 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED_POLARITY, &word);
5253 rt2800_mcu_request(rt2x00dev, MCU_LED_LED_POLARITY, 0xff,
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005254 word & 0xff, (word >> 8) & 0xff);
5255
5256 return 0;
5257}
5258EXPORT_SYMBOL_GPL(rt2800_enable_radio);
5259
5260void rt2800_disable_radio(struct rt2x00_dev *rt2x00dev)
5261{
5262 u32 reg;
5263
Jakub Kicinskif7b395e2012-04-03 03:40:47 +02005264 rt2800_disable_wpdma(rt2x00dev);
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005265
5266 /* Wait for DMA, ignore error */
5267 rt2800_wait_wpdma_ready(rt2x00dev);
5268
5269 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
5270 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 0);
5271 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 0);
5272 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
Ivo van Doornb9a07ae2010-08-23 19:55:22 +02005273}
5274EXPORT_SYMBOL_GPL(rt2800_disable_radio);
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01005275
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005276int rt2800_efuse_detect(struct rt2x00_dev *rt2x00dev)
5277{
5278 u32 reg;
Woody Hunga89534e2012-06-13 15:01:16 +08005279 u16 efuse_ctrl_reg;
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005280
Woody Hunga89534e2012-06-13 15:01:16 +08005281 if (rt2x00_rt(rt2x00dev, RT3290))
5282 efuse_ctrl_reg = EFUSE_CTRL_3290;
5283 else
5284 efuse_ctrl_reg = EFUSE_CTRL;
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005285
Woody Hunga89534e2012-06-13 15:01:16 +08005286 rt2800_register_read(rt2x00dev, efuse_ctrl_reg, &reg);
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005287 return rt2x00_get_field32(reg, EFUSE_CTRL_PRESENT);
5288}
5289EXPORT_SYMBOL_GPL(rt2800_efuse_detect);
5290
5291static void rt2800_efuse_read(struct rt2x00_dev *rt2x00dev, unsigned int i)
5292{
5293 u32 reg;
Woody Hunga89534e2012-06-13 15:01:16 +08005294 u16 efuse_ctrl_reg;
5295 u16 efuse_data0_reg;
5296 u16 efuse_data1_reg;
5297 u16 efuse_data2_reg;
5298 u16 efuse_data3_reg;
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005299
Woody Hunga89534e2012-06-13 15:01:16 +08005300 if (rt2x00_rt(rt2x00dev, RT3290)) {
5301 efuse_ctrl_reg = EFUSE_CTRL_3290;
5302 efuse_data0_reg = EFUSE_DATA0_3290;
5303 efuse_data1_reg = EFUSE_DATA1_3290;
5304 efuse_data2_reg = EFUSE_DATA2_3290;
5305 efuse_data3_reg = EFUSE_DATA3_3290;
5306 } else {
5307 efuse_ctrl_reg = EFUSE_CTRL;
5308 efuse_data0_reg = EFUSE_DATA0;
5309 efuse_data1_reg = EFUSE_DATA1;
5310 efuse_data2_reg = EFUSE_DATA2;
5311 efuse_data3_reg = EFUSE_DATA3;
5312 }
Gertjan van Wingerde31a4cf12009-11-14 20:20:36 +01005313 mutex_lock(&rt2x00dev->csr_mutex);
5314
Woody Hunga89534e2012-06-13 15:01:16 +08005315 rt2800_register_read_lock(rt2x00dev, efuse_ctrl_reg, &reg);
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005316 rt2x00_set_field32(&reg, EFUSE_CTRL_ADDRESS_IN, i);
5317 rt2x00_set_field32(&reg, EFUSE_CTRL_MODE, 0);
5318 rt2x00_set_field32(&reg, EFUSE_CTRL_KICK, 1);
Woody Hunga89534e2012-06-13 15:01:16 +08005319 rt2800_register_write_lock(rt2x00dev, efuse_ctrl_reg, reg);
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005320
5321 /* Wait until the EEPROM has been loaded */
Woody Hunga89534e2012-06-13 15:01:16 +08005322 rt2800_regbusy_read(rt2x00dev, efuse_ctrl_reg, EFUSE_CTRL_KICK, &reg);
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005323 /* Apparently the data is read from end to start */
Woody Hunga89534e2012-06-13 15:01:16 +08005324 rt2800_register_read_lock(rt2x00dev, efuse_data3_reg, &reg);
Larry Fingerdaabead2011-09-14 16:50:23 -05005325 /* The returned value is in CPU order, but eeprom is le */
Gertjan van Wingerde68fa64e2011-11-16 23:16:15 +01005326 *(u32 *)&rt2x00dev->eeprom[i] = cpu_to_le32(reg);
Woody Hunga89534e2012-06-13 15:01:16 +08005327 rt2800_register_read_lock(rt2x00dev, efuse_data2_reg, &reg);
Larry Fingerdaabead2011-09-14 16:50:23 -05005328 *(u32 *)&rt2x00dev->eeprom[i + 2] = cpu_to_le32(reg);
Woody Hunga89534e2012-06-13 15:01:16 +08005329 rt2800_register_read_lock(rt2x00dev, efuse_data1_reg, &reg);
Larry Fingerdaabead2011-09-14 16:50:23 -05005330 *(u32 *)&rt2x00dev->eeprom[i + 4] = cpu_to_le32(reg);
Woody Hunga89534e2012-06-13 15:01:16 +08005331 rt2800_register_read_lock(rt2x00dev, efuse_data0_reg, &reg);
Larry Fingerdaabead2011-09-14 16:50:23 -05005332 *(u32 *)&rt2x00dev->eeprom[i + 6] = cpu_to_le32(reg);
Gertjan van Wingerde31a4cf12009-11-14 20:20:36 +01005333
5334 mutex_unlock(&rt2x00dev->csr_mutex);
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005335}
5336
Gabor Juhosa02308e2012-12-29 14:51:51 +01005337int rt2800_read_eeprom_efuse(struct rt2x00_dev *rt2x00dev)
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005338{
5339 unsigned int i;
5340
5341 for (i = 0; i < EEPROM_SIZE / sizeof(u16); i += 8)
5342 rt2800_efuse_read(rt2x00dev, i);
Gabor Juhosa02308e2012-12-29 14:51:51 +01005343
5344 return 0;
Bartlomiej Zolnierkiewicz30e84032009-11-08 14:39:48 +01005345}
5346EXPORT_SYMBOL_GPL(rt2800_read_eeprom_efuse);
5347
Gertjan van Wingerdead417a52012-09-03 03:25:51 +02005348static int rt2800_validate_eeprom(struct rt2x00_dev *rt2x00dev)
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005349{
Gertjan van Wingerde77c06c22012-02-06 23:45:13 +01005350 struct rt2800_drv_data *drv_data = rt2x00dev->drv_data;
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005351 u16 word;
5352 u8 *mac;
5353 u8 default_lna_gain;
Gabor Juhosa02308e2012-12-29 14:51:51 +01005354 int retval;
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005355
5356 /*
Gertjan van Wingerdead417a52012-09-03 03:25:51 +02005357 * Read the EEPROM.
5358 */
Gabor Juhosa02308e2012-12-29 14:51:51 +01005359 retval = rt2800_read_eeprom(rt2x00dev);
5360 if (retval)
5361 return retval;
Gertjan van Wingerdead417a52012-09-03 03:25:51 +02005362
5363 /*
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005364 * Start validation of the data that has been read.
5365 */
5366 mac = rt2x00_eeprom_addr(rt2x00dev, EEPROM_MAC_ADDR_0);
5367 if (!is_valid_ether_addr(mac)) {
Joe Perchesf4f7f4142012-07-12 19:33:08 +00005368 eth_random_addr(mac);
Joe Perchesec9c4982013-04-19 08:33:40 -07005369 rt2x00_eeprom_dbg(rt2x00dev, "MAC: %pM\n", mac);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005370 }
5371
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005372 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &word);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005373 if (word == 0xffff) {
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005374 rt2x00_set_field16(&word, EEPROM_NIC_CONF0_RXPATH, 2);
5375 rt2x00_set_field16(&word, EEPROM_NIC_CONF0_TXPATH, 1);
5376 rt2x00_set_field16(&word, EEPROM_NIC_CONF0_RF_TYPE, RF2820);
5377 rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC_CONF0, word);
Joe Perchesec9c4982013-04-19 08:33:40 -07005378 rt2x00_eeprom_dbg(rt2x00dev, "Antenna: 0x%04x\n", word);
Gertjan van Wingerde49e721e2010-02-13 20:55:49 +01005379 } else if (rt2x00_rt(rt2x00dev, RT2860) ||
Gertjan van Wingerdee148b4c2010-04-11 14:31:09 +02005380 rt2x00_rt(rt2x00dev, RT2872)) {
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005381 /*
5382 * There is a max of 2 RX streams for RT28x0 series
5383 */
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005384 if (rt2x00_get_field16(word, EEPROM_NIC_CONF0_RXPATH) > 2)
5385 rt2x00_set_field16(&word, EEPROM_NIC_CONF0_RXPATH, 2);
5386 rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC_CONF0, word);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005387 }
5388
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005389 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &word);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005390 if (word == 0xffff) {
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005391 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_HW_RADIO, 0);
5392 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_EXTERNAL_TX_ALC, 0);
5393 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_EXTERNAL_LNA_2G, 0);
5394 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_EXTERNAL_LNA_5G, 0);
5395 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_CARDBUS_ACCEL, 0);
5396 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BW40M_SB_2G, 0);
5397 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BW40M_SB_5G, 0);
5398 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_WPS_PBC, 0);
5399 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BW40M_2G, 0);
5400 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BW40M_5G, 0);
5401 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BROADBAND_EXT_LNA, 0);
5402 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_ANT_DIVERSITY, 0);
5403 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_INTERNAL_TX_ALC, 0);
5404 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_BT_COEXIST, 0);
5405 rt2x00_set_field16(&word, EEPROM_NIC_CONF1_DAC_TEST, 0);
5406 rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC_CONF1, word);
Joe Perchesec9c4982013-04-19 08:33:40 -07005407 rt2x00_eeprom_dbg(rt2x00dev, "NIC: 0x%04x\n", word);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005408 }
5409
5410 rt2x00_eeprom_read(rt2x00dev, EEPROM_FREQ, &word);
5411 if ((word & 0x00ff) == 0x00ff) {
5412 rt2x00_set_field16(&word, EEPROM_FREQ_OFFSET, 0);
Gertjan van Wingerdeec2d1792010-06-29 21:44:50 +02005413 rt2x00_eeprom_write(rt2x00dev, EEPROM_FREQ, word);
Joe Perchesec9c4982013-04-19 08:33:40 -07005414 rt2x00_eeprom_dbg(rt2x00dev, "Freq: 0x%04x\n", word);
Gertjan van Wingerdeec2d1792010-06-29 21:44:50 +02005415 }
5416 if ((word & 0xff00) == 0xff00) {
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005417 rt2x00_set_field16(&word, EEPROM_FREQ_LED_MODE,
5418 LED_MODE_TXRX_ACTIVITY);
5419 rt2x00_set_field16(&word, EEPROM_FREQ_LED_POLARITY, 0);
5420 rt2x00_eeprom_write(rt2x00dev, EEPROM_FREQ, word);
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005421 rt2x00_eeprom_write(rt2x00dev, EEPROM_LED_AG_CONF, 0x5555);
5422 rt2x00_eeprom_write(rt2x00dev, EEPROM_LED_ACT_CONF, 0x2221);
5423 rt2x00_eeprom_write(rt2x00dev, EEPROM_LED_POLARITY, 0xa9f8);
Joe Perchesec9c4982013-04-19 08:33:40 -07005424 rt2x00_eeprom_dbg(rt2x00dev, "Led Mode: 0x%04x\n", word);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005425 }
5426
5427 /*
5428 * During the LNA validation we are going to use
5429 * lna0 as correct value. Note that EEPROM_LNA
5430 * is never validated.
5431 */
5432 rt2x00_eeprom_read(rt2x00dev, EEPROM_LNA, &word);
5433 default_lna_gain = rt2x00_get_field16(word, EEPROM_LNA_A0);
5434
5435 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_BG, &word);
5436 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_BG_OFFSET0)) > 10)
5437 rt2x00_set_field16(&word, EEPROM_RSSI_BG_OFFSET0, 0);
5438 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_BG_OFFSET1)) > 10)
5439 rt2x00_set_field16(&word, EEPROM_RSSI_BG_OFFSET1, 0);
5440 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_BG, word);
5441
Gertjan van Wingerde77c06c22012-02-06 23:45:13 +01005442 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXMIXER_GAIN_BG, &word);
5443 if ((word & 0x00ff) != 0x00ff) {
5444 drv_data->txmixer_gain_24g =
5445 rt2x00_get_field16(word, EEPROM_TXMIXER_GAIN_BG_VAL);
5446 } else {
5447 drv_data->txmixer_gain_24g = 0;
5448 }
5449
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005450 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_BG2, &word);
5451 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_BG2_OFFSET2)) > 10)
5452 rt2x00_set_field16(&word, EEPROM_RSSI_BG2_OFFSET2, 0);
5453 if (rt2x00_get_field16(word, EEPROM_RSSI_BG2_LNA_A1) == 0x00 ||
5454 rt2x00_get_field16(word, EEPROM_RSSI_BG2_LNA_A1) == 0xff)
5455 rt2x00_set_field16(&word, EEPROM_RSSI_BG2_LNA_A1,
5456 default_lna_gain);
5457 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_BG2, word);
5458
Gertjan van Wingerde77c06c22012-02-06 23:45:13 +01005459 rt2x00_eeprom_read(rt2x00dev, EEPROM_TXMIXER_GAIN_A, &word);
5460 if ((word & 0x00ff) != 0x00ff) {
5461 drv_data->txmixer_gain_5g =
5462 rt2x00_get_field16(word, EEPROM_TXMIXER_GAIN_A_VAL);
5463 } else {
5464 drv_data->txmixer_gain_5g = 0;
5465 }
5466
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005467 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_A, &word);
5468 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_A_OFFSET0)) > 10)
5469 rt2x00_set_field16(&word, EEPROM_RSSI_A_OFFSET0, 0);
5470 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_A_OFFSET1)) > 10)
5471 rt2x00_set_field16(&word, EEPROM_RSSI_A_OFFSET1, 0);
5472 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_A, word);
5473
5474 rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_A2, &word);
5475 if (abs(rt2x00_get_field16(word, EEPROM_RSSI_A2_OFFSET2)) > 10)
5476 rt2x00_set_field16(&word, EEPROM_RSSI_A2_OFFSET2, 0);
5477 if (rt2x00_get_field16(word, EEPROM_RSSI_A2_LNA_A2) == 0x00 ||
5478 rt2x00_get_field16(word, EEPROM_RSSI_A2_LNA_A2) == 0xff)
5479 rt2x00_set_field16(&word, EEPROM_RSSI_A2_LNA_A2,
5480 default_lna_gain);
5481 rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_A2, word);
5482
5483 return 0;
5484}
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005485
Gertjan van Wingerdead417a52012-09-03 03:25:51 +02005486static int rt2800_init_eeprom(struct rt2x00_dev *rt2x00dev)
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005487{
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005488 u16 value;
5489 u16 eeprom;
Gabor Juhos86868b22013-03-30 14:53:09 +01005490 u16 rf;
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005491
Gabor Juhos86868b22013-03-30 14:53:09 +01005492 /*
5493 * Read EEPROM word for configuration.
5494 */
5495 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
5496
5497 /*
5498 * Identify RF chipset by EEPROM value
5499 * RT28xx/RT30xx: defined in "EEPROM_NIC_CONF0_RF_TYPE" field
5500 * RT53xx: defined in "EEPROM_CHIP_ID" field
5501 */
5502 if (rt2x00_rt(rt2x00dev, RT3290) ||
5503 rt2x00_rt(rt2x00dev, RT5390) ||
5504 rt2x00_rt(rt2x00dev, RT5392))
5505 rt2x00_eeprom_read(rt2x00dev, EEPROM_CHIP_ID, &rf);
5506 else
5507 rf = rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RF_TYPE);
5508
5509 switch (rf) {
Larry Fingerd331eb52011-09-14 16:50:22 -05005510 case RF2820:
5511 case RF2850:
5512 case RF2720:
5513 case RF2750:
5514 case RF3020:
5515 case RF2020:
5516 case RF3021:
5517 case RF3022:
5518 case RF3052:
Woody Hunga89534e2012-06-13 15:01:16 +08005519 case RF3290:
Larry Fingerd331eb52011-09-14 16:50:22 -05005520 case RF3320:
Daniel Golle03839952012-09-09 14:24:39 +03005521 case RF3322:
villacis@palosanto.comccf91bd2012-05-16 21:07:12 +02005522 case RF5360:
Larry Fingerd331eb52011-09-14 16:50:22 -05005523 case RF5370:
John Li2ed71882012-02-17 17:33:06 +08005524 case RF5372:
Larry Fingerd331eb52011-09-14 16:50:22 -05005525 case RF5390:
Zero.Lincff3d1f2012-05-29 16:11:09 +08005526 case RF5392:
Stanislaw Gruszkab8863f82013-03-16 19:19:30 +01005527 case RF5592:
Larry Fingerd331eb52011-09-14 16:50:22 -05005528 break;
5529 default:
Joe Perchesec9c4982013-04-19 08:33:40 -07005530 rt2x00_err(rt2x00dev, "Invalid RF chipset 0x%04x detected\n",
5531 rf);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005532 return -ENODEV;
5533 }
5534
Gabor Juhos86868b22013-03-30 14:53:09 +01005535 rt2x00_set_rf(rt2x00dev, rf);
5536
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005537 /*
5538 * Identify default antenna configuration.
5539 */
RA-Jay Hungd96aa642011-02-20 13:54:52 +01005540 rt2x00dev->default_ant.tx_chain_num =
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005541 rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH);
RA-Jay Hungd96aa642011-02-20 13:54:52 +01005542 rt2x00dev->default_ant.rx_chain_num =
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005543 rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005544
RA-Jay Hungd96aa642011-02-20 13:54:52 +01005545 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF1, &eeprom);
5546
5547 if (rt2x00_rt(rt2x00dev, RT3070) ||
5548 rt2x00_rt(rt2x00dev, RT3090) ||
Daniel Golle03839952012-09-09 14:24:39 +03005549 rt2x00_rt(rt2x00dev, RT3352) ||
RA-Jay Hungd96aa642011-02-20 13:54:52 +01005550 rt2x00_rt(rt2x00dev, RT3390)) {
5551 value = rt2x00_get_field16(eeprom,
5552 EEPROM_NIC_CONF1_ANT_DIVERSITY);
5553 switch (value) {
5554 case 0:
5555 case 1:
5556 case 2:
5557 rt2x00dev->default_ant.tx = ANTENNA_A;
5558 rt2x00dev->default_ant.rx = ANTENNA_A;
5559 break;
5560 case 3:
5561 rt2x00dev->default_ant.tx = ANTENNA_A;
5562 rt2x00dev->default_ant.rx = ANTENNA_B;
5563 break;
5564 }
5565 } else {
5566 rt2x00dev->default_ant.tx = ANTENNA_A;
5567 rt2x00dev->default_ant.rx = ANTENNA_A;
5568 }
5569
Anisse Astier0586a112012-04-23 12:33:11 +02005570 if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390R)) {
5571 rt2x00dev->default_ant.tx = ANTENNA_HW_DIVERSITY; /* Unused */
5572 rt2x00dev->default_ant.rx = ANTENNA_HW_DIVERSITY; /* Unused */
5573 }
5574
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005575 /*
Gertjan van Wingerde9328fda2011-04-30 17:15:13 +02005576 * Determine external LNA informations.
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005577 */
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005578 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_EXTERNAL_LNA_5G))
Ivo van Doorn7dab73b2011-04-18 15:27:06 +02005579 __set_bit(CAPABILITY_EXTERNAL_LNA_A, &rt2x00dev->cap_flags);
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005580 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_EXTERNAL_LNA_2G))
Ivo van Doorn7dab73b2011-04-18 15:27:06 +02005581 __set_bit(CAPABILITY_EXTERNAL_LNA_BG, &rt2x00dev->cap_flags);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005582
5583 /*
5584 * Detect if this device has an hardware controlled radio.
5585 */
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005586 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_HW_RADIO))
Ivo van Doorn7dab73b2011-04-18 15:27:06 +02005587 __set_bit(CAPABILITY_HW_BUTTON, &rt2x00dev->cap_flags);
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005588
5589 /*
Gertjan van Wingerdefdbc7b02011-04-30 17:15:37 +02005590 * Detect if this device has Bluetooth co-existence.
5591 */
5592 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF1_BT_COEXIST))
5593 __set_bit(CAPABILITY_BT_COEXIST, &rt2x00dev->cap_flags);
5594
5595 /*
Gertjan van Wingerde9328fda2011-04-30 17:15:13 +02005596 * Read frequency offset and RF programming sequence.
5597 */
5598 rt2x00_eeprom_read(rt2x00dev, EEPROM_FREQ, &eeprom);
5599 rt2x00dev->freq_offset = rt2x00_get_field16(eeprom, EEPROM_FREQ_OFFSET);
5600
5601 /*
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005602 * Store led settings, for correct led behaviour.
5603 */
5604#ifdef CONFIG_RT2X00_LIB_LEDS
5605 rt2800_init_led(rt2x00dev, &rt2x00dev->led_radio, LED_TYPE_RADIO);
5606 rt2800_init_led(rt2x00dev, &rt2x00dev->led_assoc, LED_TYPE_ASSOC);
5607 rt2800_init_led(rt2x00dev, &rt2x00dev->led_qual, LED_TYPE_QUALITY);
5608
Gertjan van Wingerde9328fda2011-04-30 17:15:13 +02005609 rt2x00dev->led_mcu_reg = eeprom;
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005610#endif /* CONFIG_RT2X00_LIB_LEDS */
5611
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01005612 /*
5613 * Check if support EIRP tx power limit feature.
5614 */
5615 rt2x00_eeprom_read(rt2x00dev, EEPROM_EIRP_MAX_TX_POWER, &eeprom);
5616
5617 if (rt2x00_get_field16(eeprom, EEPROM_EIRP_MAX_TX_POWER_2GHZ) <
5618 EIRP_MAX_TX_POWER_LIMIT)
Ivo van Doorn7dab73b2011-04-18 15:27:06 +02005619 __set_bit(CAPABILITY_POWER_LIMIT, &rt2x00dev->cap_flags);
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01005620
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005621 return 0;
5622}
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +01005623
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01005624/*
Ivo van Doorn55f93212010-05-06 14:45:46 +02005625 * RF value list for rt28xx
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005626 * Supports: 2.4 GHz (all) & 5.2 GHz (RF2850 & RF2750)
5627 */
5628static const struct rf_channel rf_vals[] = {
5629 { 1, 0x18402ecc, 0x184c0786, 0x1816b455, 0x1800510b },
5630 { 2, 0x18402ecc, 0x184c0786, 0x18168a55, 0x1800519f },
5631 { 3, 0x18402ecc, 0x184c078a, 0x18168a55, 0x1800518b },
5632 { 4, 0x18402ecc, 0x184c078a, 0x18168a55, 0x1800519f },
5633 { 5, 0x18402ecc, 0x184c078e, 0x18168a55, 0x1800518b },
5634 { 6, 0x18402ecc, 0x184c078e, 0x18168a55, 0x1800519f },
5635 { 7, 0x18402ecc, 0x184c0792, 0x18168a55, 0x1800518b },
5636 { 8, 0x18402ecc, 0x184c0792, 0x18168a55, 0x1800519f },
5637 { 9, 0x18402ecc, 0x184c0796, 0x18168a55, 0x1800518b },
5638 { 10, 0x18402ecc, 0x184c0796, 0x18168a55, 0x1800519f },
5639 { 11, 0x18402ecc, 0x184c079a, 0x18168a55, 0x1800518b },
5640 { 12, 0x18402ecc, 0x184c079a, 0x18168a55, 0x1800519f },
5641 { 13, 0x18402ecc, 0x184c079e, 0x18168a55, 0x1800518b },
5642 { 14, 0x18402ecc, 0x184c07a2, 0x18168a55, 0x18005193 },
5643
5644 /* 802.11 UNI / HyperLan 2 */
5645 { 36, 0x18402ecc, 0x184c099a, 0x18158a55, 0x180ed1a3 },
5646 { 38, 0x18402ecc, 0x184c099e, 0x18158a55, 0x180ed193 },
5647 { 40, 0x18402ec8, 0x184c0682, 0x18158a55, 0x180ed183 },
5648 { 44, 0x18402ec8, 0x184c0682, 0x18158a55, 0x180ed1a3 },
5649 { 46, 0x18402ec8, 0x184c0686, 0x18158a55, 0x180ed18b },
5650 { 48, 0x18402ec8, 0x184c0686, 0x18158a55, 0x180ed19b },
5651 { 52, 0x18402ec8, 0x184c068a, 0x18158a55, 0x180ed193 },
5652 { 54, 0x18402ec8, 0x184c068a, 0x18158a55, 0x180ed1a3 },
5653 { 56, 0x18402ec8, 0x184c068e, 0x18158a55, 0x180ed18b },
5654 { 60, 0x18402ec8, 0x184c0692, 0x18158a55, 0x180ed183 },
5655 { 62, 0x18402ec8, 0x184c0692, 0x18158a55, 0x180ed193 },
5656 { 64, 0x18402ec8, 0x184c0692, 0x18158a55, 0x180ed1a3 },
5657
5658 /* 802.11 HyperLan 2 */
5659 { 100, 0x18402ec8, 0x184c06b2, 0x18178a55, 0x180ed783 },
5660 { 102, 0x18402ec8, 0x184c06b2, 0x18578a55, 0x180ed793 },
5661 { 104, 0x18402ec8, 0x185c06b2, 0x18578a55, 0x180ed1a3 },
5662 { 108, 0x18402ecc, 0x185c0a32, 0x18578a55, 0x180ed193 },
5663 { 110, 0x18402ecc, 0x184c0a36, 0x18178a55, 0x180ed183 },
5664 { 112, 0x18402ecc, 0x184c0a36, 0x18178a55, 0x180ed19b },
5665 { 116, 0x18402ecc, 0x184c0a3a, 0x18178a55, 0x180ed1a3 },
5666 { 118, 0x18402ecc, 0x184c0a3e, 0x18178a55, 0x180ed193 },
5667 { 120, 0x18402ec4, 0x184c0382, 0x18178a55, 0x180ed183 },
5668 { 124, 0x18402ec4, 0x184c0382, 0x18178a55, 0x180ed193 },
5669 { 126, 0x18402ec4, 0x184c0382, 0x18178a55, 0x180ed15b },
5670 { 128, 0x18402ec4, 0x184c0382, 0x18178a55, 0x180ed1a3 },
5671 { 132, 0x18402ec4, 0x184c0386, 0x18178a55, 0x180ed18b },
5672 { 134, 0x18402ec4, 0x184c0386, 0x18178a55, 0x180ed193 },
5673 { 136, 0x18402ec4, 0x184c0386, 0x18178a55, 0x180ed19b },
5674 { 140, 0x18402ec4, 0x184c038a, 0x18178a55, 0x180ed183 },
5675
5676 /* 802.11 UNII */
5677 { 149, 0x18402ec4, 0x184c038a, 0x18178a55, 0x180ed1a7 },
5678 { 151, 0x18402ec4, 0x184c038e, 0x18178a55, 0x180ed187 },
5679 { 153, 0x18402ec4, 0x184c038e, 0x18178a55, 0x180ed18f },
5680 { 157, 0x18402ec4, 0x184c038e, 0x18178a55, 0x180ed19f },
5681 { 159, 0x18402ec4, 0x184c038e, 0x18178a55, 0x180ed1a7 },
5682 { 161, 0x18402ec4, 0x184c0392, 0x18178a55, 0x180ed187 },
5683 { 165, 0x18402ec4, 0x184c0392, 0x18178a55, 0x180ed197 },
5684 { 167, 0x18402ec4, 0x184c03d2, 0x18179855, 0x1815531f },
5685 { 169, 0x18402ec4, 0x184c03d2, 0x18179855, 0x18155327 },
5686 { 171, 0x18402ec4, 0x184c03d6, 0x18179855, 0x18155307 },
5687 { 173, 0x18402ec4, 0x184c03d6, 0x18179855, 0x1815530f },
5688
5689 /* 802.11 Japan */
5690 { 184, 0x15002ccc, 0x1500491e, 0x1509be55, 0x150c0a0b },
5691 { 188, 0x15002ccc, 0x15004922, 0x1509be55, 0x150c0a13 },
5692 { 192, 0x15002ccc, 0x15004926, 0x1509be55, 0x150c0a1b },
5693 { 196, 0x15002ccc, 0x1500492a, 0x1509be55, 0x150c0a23 },
5694 { 208, 0x15002ccc, 0x1500493a, 0x1509be55, 0x150c0a13 },
5695 { 212, 0x15002ccc, 0x1500493e, 0x1509be55, 0x150c0a1b },
5696 { 216, 0x15002ccc, 0x15004982, 0x1509be55, 0x150c0a23 },
5697};
5698
5699/*
Ivo van Doorn55f93212010-05-06 14:45:46 +02005700 * RF value list for rt3xxx
5701 * Supports: 2.4 GHz (all) & 5.2 GHz (RF3052)
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005702 */
Ivo van Doorn55f93212010-05-06 14:45:46 +02005703static const struct rf_channel rf_vals_3x[] = {
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005704 {1, 241, 2, 2 },
5705 {2, 241, 2, 7 },
5706 {3, 242, 2, 2 },
5707 {4, 242, 2, 7 },
5708 {5, 243, 2, 2 },
5709 {6, 243, 2, 7 },
5710 {7, 244, 2, 2 },
5711 {8, 244, 2, 7 },
5712 {9, 245, 2, 2 },
5713 {10, 245, 2, 7 },
5714 {11, 246, 2, 2 },
5715 {12, 246, 2, 7 },
5716 {13, 247, 2, 2 },
5717 {14, 248, 2, 4 },
Ivo van Doorn55f93212010-05-06 14:45:46 +02005718
5719 /* 802.11 UNI / HyperLan 2 */
5720 {36, 0x56, 0, 4},
5721 {38, 0x56, 0, 6},
5722 {40, 0x56, 0, 8},
5723 {44, 0x57, 0, 0},
5724 {46, 0x57, 0, 2},
5725 {48, 0x57, 0, 4},
5726 {52, 0x57, 0, 8},
5727 {54, 0x57, 0, 10},
5728 {56, 0x58, 0, 0},
5729 {60, 0x58, 0, 4},
5730 {62, 0x58, 0, 6},
5731 {64, 0x58, 0, 8},
5732
5733 /* 802.11 HyperLan 2 */
5734 {100, 0x5b, 0, 8},
5735 {102, 0x5b, 0, 10},
5736 {104, 0x5c, 0, 0},
5737 {108, 0x5c, 0, 4},
5738 {110, 0x5c, 0, 6},
5739 {112, 0x5c, 0, 8},
5740 {116, 0x5d, 0, 0},
5741 {118, 0x5d, 0, 2},
5742 {120, 0x5d, 0, 4},
5743 {124, 0x5d, 0, 8},
5744 {126, 0x5d, 0, 10},
5745 {128, 0x5e, 0, 0},
5746 {132, 0x5e, 0, 4},
5747 {134, 0x5e, 0, 6},
5748 {136, 0x5e, 0, 8},
5749 {140, 0x5f, 0, 0},
5750
5751 /* 802.11 UNII */
5752 {149, 0x5f, 0, 9},
5753 {151, 0x5f, 0, 11},
5754 {153, 0x60, 0, 1},
5755 {157, 0x60, 0, 5},
5756 {159, 0x60, 0, 7},
5757 {161, 0x60, 0, 9},
5758 {165, 0x61, 0, 1},
5759 {167, 0x61, 0, 3},
5760 {169, 0x61, 0, 5},
5761 {171, 0x61, 0, 7},
5762 {173, 0x61, 0, 9},
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005763};
5764
Stanislaw Gruszka7848b232013-03-16 19:19:31 +01005765static const struct rf_channel rf_vals_5592_xtal20[] = {
5766 /* Channel, N, K, mod, R */
5767 {1, 482, 4, 10, 3},
5768 {2, 483, 4, 10, 3},
5769 {3, 484, 4, 10, 3},
5770 {4, 485, 4, 10, 3},
5771 {5, 486, 4, 10, 3},
5772 {6, 487, 4, 10, 3},
5773 {7, 488, 4, 10, 3},
5774 {8, 489, 4, 10, 3},
5775 {9, 490, 4, 10, 3},
5776 {10, 491, 4, 10, 3},
5777 {11, 492, 4, 10, 3},
5778 {12, 493, 4, 10, 3},
5779 {13, 494, 4, 10, 3},
5780 {14, 496, 8, 10, 3},
5781 {36, 172, 8, 12, 1},
5782 {38, 173, 0, 12, 1},
5783 {40, 173, 4, 12, 1},
5784 {42, 173, 8, 12, 1},
5785 {44, 174, 0, 12, 1},
5786 {46, 174, 4, 12, 1},
5787 {48, 174, 8, 12, 1},
5788 {50, 175, 0, 12, 1},
5789 {52, 175, 4, 12, 1},
5790 {54, 175, 8, 12, 1},
5791 {56, 176, 0, 12, 1},
5792 {58, 176, 4, 12, 1},
5793 {60, 176, 8, 12, 1},
5794 {62, 177, 0, 12, 1},
5795 {64, 177, 4, 12, 1},
5796 {100, 183, 4, 12, 1},
5797 {102, 183, 8, 12, 1},
5798 {104, 184, 0, 12, 1},
5799 {106, 184, 4, 12, 1},
5800 {108, 184, 8, 12, 1},
5801 {110, 185, 0, 12, 1},
5802 {112, 185, 4, 12, 1},
5803 {114, 185, 8, 12, 1},
5804 {116, 186, 0, 12, 1},
5805 {118, 186, 4, 12, 1},
5806 {120, 186, 8, 12, 1},
5807 {122, 187, 0, 12, 1},
5808 {124, 187, 4, 12, 1},
5809 {126, 187, 8, 12, 1},
5810 {128, 188, 0, 12, 1},
5811 {130, 188, 4, 12, 1},
5812 {132, 188, 8, 12, 1},
5813 {134, 189, 0, 12, 1},
5814 {136, 189, 4, 12, 1},
5815 {138, 189, 8, 12, 1},
5816 {140, 190, 0, 12, 1},
5817 {149, 191, 6, 12, 1},
5818 {151, 191, 10, 12, 1},
5819 {153, 192, 2, 12, 1},
5820 {155, 192, 6, 12, 1},
5821 {157, 192, 10, 12, 1},
5822 {159, 193, 2, 12, 1},
5823 {161, 193, 6, 12, 1},
5824 {165, 194, 2, 12, 1},
5825 {184, 164, 0, 12, 1},
5826 {188, 164, 4, 12, 1},
5827 {192, 165, 8, 12, 1},
5828 {196, 166, 0, 12, 1},
5829};
5830
5831static const struct rf_channel rf_vals_5592_xtal40[] = {
5832 /* Channel, N, K, mod, R */
5833 {1, 241, 2, 10, 3},
5834 {2, 241, 7, 10, 3},
5835 {3, 242, 2, 10, 3},
5836 {4, 242, 7, 10, 3},
5837 {5, 243, 2, 10, 3},
5838 {6, 243, 7, 10, 3},
5839 {7, 244, 2, 10, 3},
5840 {8, 244, 7, 10, 3},
5841 {9, 245, 2, 10, 3},
5842 {10, 245, 7, 10, 3},
5843 {11, 246, 2, 10, 3},
5844 {12, 246, 7, 10, 3},
5845 {13, 247, 2, 10, 3},
5846 {14, 248, 4, 10, 3},
5847 {36, 86, 4, 12, 1},
5848 {38, 86, 6, 12, 1},
5849 {40, 86, 8, 12, 1},
5850 {42, 86, 10, 12, 1},
5851 {44, 87, 0, 12, 1},
5852 {46, 87, 2, 12, 1},
5853 {48, 87, 4, 12, 1},
5854 {50, 87, 6, 12, 1},
5855 {52, 87, 8, 12, 1},
5856 {54, 87, 10, 12, 1},
5857 {56, 88, 0, 12, 1},
5858 {58, 88, 2, 12, 1},
5859 {60, 88, 4, 12, 1},
5860 {62, 88, 6, 12, 1},
5861 {64, 88, 8, 12, 1},
5862 {100, 91, 8, 12, 1},
5863 {102, 91, 10, 12, 1},
5864 {104, 92, 0, 12, 1},
5865 {106, 92, 2, 12, 1},
5866 {108, 92, 4, 12, 1},
5867 {110, 92, 6, 12, 1},
5868 {112, 92, 8, 12, 1},
5869 {114, 92, 10, 12, 1},
5870 {116, 93, 0, 12, 1},
5871 {118, 93, 2, 12, 1},
5872 {120, 93, 4, 12, 1},
5873 {122, 93, 6, 12, 1},
5874 {124, 93, 8, 12, 1},
5875 {126, 93, 10, 12, 1},
5876 {128, 94, 0, 12, 1},
5877 {130, 94, 2, 12, 1},
5878 {132, 94, 4, 12, 1},
5879 {134, 94, 6, 12, 1},
5880 {136, 94, 8, 12, 1},
5881 {138, 94, 10, 12, 1},
5882 {140, 95, 0, 12, 1},
5883 {149, 95, 9, 12, 1},
5884 {151, 95, 11, 12, 1},
5885 {153, 96, 1, 12, 1},
5886 {155, 96, 3, 12, 1},
5887 {157, 96, 5, 12, 1},
5888 {159, 96, 7, 12, 1},
5889 {161, 96, 9, 12, 1},
5890 {165, 97, 1, 12, 1},
5891 {184, 82, 0, 12, 1},
5892 {188, 82, 4, 12, 1},
5893 {192, 82, 8, 12, 1},
5894 {196, 83, 0, 12, 1},
5895};
5896
Gertjan van Wingerdead417a52012-09-03 03:25:51 +02005897static int rt2800_probe_hw_mode(struct rt2x00_dev *rt2x00dev)
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005898{
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005899 struct hw_mode_spec *spec = &rt2x00dev->spec;
5900 struct channel_info *info;
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02005901 char *default_power1;
5902 char *default_power2;
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005903 unsigned int i;
5904 u16 eeprom;
Stanislaw Gruszka7848b232013-03-16 19:19:31 +01005905 u32 reg;
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005906
5907 /*
Gertjan van Wingerde93b6bd22009-12-14 20:33:55 +01005908 * Disable powersaving as default on PCI devices.
5909 */
Gertjan van Wingerdecea90e52010-02-13 20:55:47 +01005910 if (rt2x00_is_pci(rt2x00dev) || rt2x00_is_soc(rt2x00dev))
Gertjan van Wingerde93b6bd22009-12-14 20:33:55 +01005911 rt2x00dev->hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
5912
5913 /*
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005914 * Initialize all hw fields.
5915 */
5916 rt2x00dev->hw->flags =
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005917 IEEE80211_HW_SIGNAL_DBM |
5918 IEEE80211_HW_SUPPORTS_PS |
Helmut Schaa1df90802010-06-29 21:38:12 +02005919 IEEE80211_HW_PS_NULLFUNC_STACK |
Helmut Schaa9d4f09b2012-03-14 08:56:47 +01005920 IEEE80211_HW_AMPDU_AGGREGATION |
Felix Fietkau9ddc34b2013-08-20 19:43:54 +02005921 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
5922 IEEE80211_HW_SUPPORTS_HT_CCK_RATES;
Helmut Schaa9d4f09b2012-03-14 08:56:47 +01005923
Helmut Schaa5a5b6ed2010-10-02 11:31:33 +02005924 /*
5925 * Don't set IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING for USB devices
5926 * unless we are capable of sending the buffered frames out after the
5927 * DTIM transmission using rt2x00lib_beacondone. This will send out
5928 * multicast and broadcast traffic immediately instead of buffering it
5929 * infinitly and thus dropping it after some time.
5930 */
5931 if (!rt2x00_is_usb(rt2x00dev))
5932 rt2x00dev->hw->flags |=
5933 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING;
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005934
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005935 SET_IEEE80211_DEV(rt2x00dev->hw, rt2x00dev->dev);
5936 SET_IEEE80211_PERM_ADDR(rt2x00dev->hw,
5937 rt2x00_eeprom_addr(rt2x00dev,
5938 EEPROM_MAC_ADDR_0));
5939
Helmut Schaa3f2bee22010-06-14 22:12:01 +02005940 /*
5941 * As rt2800 has a global fallback table we cannot specify
5942 * more then one tx rate per frame but since the hw will
5943 * try several rates (based on the fallback table) we should
Helmut Schaaba3b9e52010-10-02 11:32:16 +02005944 * initialize max_report_rates to the maximum number of rates
Helmut Schaa3f2bee22010-06-14 22:12:01 +02005945 * we are going to try. Otherwise mac80211 will truncate our
5946 * reported tx rates and the rc algortihm will end up with
5947 * incorrect data.
5948 */
Helmut Schaaba3b9e52010-10-02 11:32:16 +02005949 rt2x00dev->hw->max_rates = 1;
5950 rt2x00dev->hw->max_report_rates = 7;
Helmut Schaa3f2bee22010-06-14 22:12:01 +02005951 rt2x00dev->hw->max_rate_tries = 1;
5952
RA-Jay Hung38c8a562010-12-13 12:31:27 +01005953 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC_CONF0, &eeprom);
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005954
5955 /*
5956 * Initialize hw_mode information.
5957 */
5958 spec->supported_bands = SUPPORT_BAND_2GHZ;
5959 spec->supported_rates = SUPPORT_RATE_CCK | SUPPORT_RATE_OFDM;
5960
Gertjan van Wingerde5122d892009-12-23 00:03:25 +01005961 if (rt2x00_rf(rt2x00dev, RF2820) ||
Ivo van Doorn55f93212010-05-06 14:45:46 +02005962 rt2x00_rf(rt2x00dev, RF2720)) {
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005963 spec->num_channels = 14;
5964 spec->channels = rf_vals;
Ivo van Doorn55f93212010-05-06 14:45:46 +02005965 } else if (rt2x00_rf(rt2x00dev, RF2850) ||
5966 rt2x00_rf(rt2x00dev, RF2750)) {
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005967 spec->supported_bands |= SUPPORT_BAND_5GHZ;
5968 spec->num_channels = ARRAY_SIZE(rf_vals);
5969 spec->channels = rf_vals;
Gertjan van Wingerde5122d892009-12-23 00:03:25 +01005970 } else if (rt2x00_rf(rt2x00dev, RF3020) ||
5971 rt2x00_rf(rt2x00dev, RF2020) ||
5972 rt2x00_rf(rt2x00dev, RF3021) ||
Gertjan van Wingerdef93bc9b2010-11-13 19:09:50 +01005973 rt2x00_rf(rt2x00dev, RF3022) ||
Woody Hunga89534e2012-06-13 15:01:16 +08005974 rt2x00_rf(rt2x00dev, RF3290) ||
Gabor Juhosadde5882011-03-03 11:46:45 +01005975 rt2x00_rf(rt2x00dev, RF3320) ||
Daniel Golle03839952012-09-09 14:24:39 +03005976 rt2x00_rf(rt2x00dev, RF3322) ||
villacis@palosanto.comccf91bd2012-05-16 21:07:12 +02005977 rt2x00_rf(rt2x00dev, RF5360) ||
Gertjan van Wingerdeaca355b2011-05-04 21:41:36 +02005978 rt2x00_rf(rt2x00dev, RF5370) ||
John Li2ed71882012-02-17 17:33:06 +08005979 rt2x00_rf(rt2x00dev, RF5372) ||
Zero.Lincff3d1f2012-05-29 16:11:09 +08005980 rt2x00_rf(rt2x00dev, RF5390) ||
5981 rt2x00_rf(rt2x00dev, RF5392)) {
Ivo van Doorn55f93212010-05-06 14:45:46 +02005982 spec->num_channels = 14;
5983 spec->channels = rf_vals_3x;
5984 } else if (rt2x00_rf(rt2x00dev, RF3052)) {
5985 spec->supported_bands |= SUPPORT_BAND_5GHZ;
5986 spec->num_channels = ARRAY_SIZE(rf_vals_3x);
5987 spec->channels = rf_vals_3x;
Stanislaw Gruszka7848b232013-03-16 19:19:31 +01005988 } else if (rt2x00_rf(rt2x00dev, RF5592)) {
5989 spec->supported_bands |= SUPPORT_BAND_5GHZ;
5990
5991 rt2800_register_read(rt2x00dev, MAC_DEBUG_INDEX, &reg);
5992 if (rt2x00_get_field32(reg, MAC_DEBUG_INDEX_XTAL)) {
5993 spec->num_channels = ARRAY_SIZE(rf_vals_5592_xtal40);
5994 spec->channels = rf_vals_5592_xtal40;
5995 } else {
5996 spec->num_channels = ARRAY_SIZE(rf_vals_5592_xtal20);
5997 spec->channels = rf_vals_5592_xtal20;
5998 }
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01005999 }
6000
Stanislaw Gruszka53216d62013-03-16 19:19:29 +01006001 if (WARN_ON_ONCE(!spec->channels))
6002 return -ENODEV;
6003
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006004 /*
6005 * Initialize HT information.
6006 */
Gertjan van Wingerde5122d892009-12-23 00:03:25 +01006007 if (!rt2x00_rf(rt2x00dev, RF2020))
Gertjan van Wingerde38a522e2009-11-23 22:44:47 +01006008 spec->ht.ht_supported = true;
6009 else
6010 spec->ht.ht_supported = false;
6011
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006012 spec->ht.cap =
Gertjan van Wingerde06443e42010-06-03 10:52:08 +02006013 IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006014 IEEE80211_HT_CAP_GRN_FLD |
6015 IEEE80211_HT_CAP_SGI_20 |
Ivo van Doornaa674632010-06-29 21:48:37 +02006016 IEEE80211_HT_CAP_SGI_40;
Helmut Schaa22cabaa2010-06-03 10:52:10 +02006017
RA-Jay Hung38c8a562010-12-13 12:31:27 +01006018 if (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) >= 2)
Helmut Schaa22cabaa2010-06-03 10:52:10 +02006019 spec->ht.cap |= IEEE80211_HT_CAP_TX_STBC;
6020
Ivo van Doornaa674632010-06-29 21:48:37 +02006021 spec->ht.cap |=
RA-Jay Hung38c8a562010-12-13 12:31:27 +01006022 rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH) <<
Ivo van Doornaa674632010-06-29 21:48:37 +02006023 IEEE80211_HT_CAP_RX_STBC_SHIFT;
6024
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006025 spec->ht.ampdu_factor = 3;
6026 spec->ht.ampdu_density = 4;
6027 spec->ht.mcs.tx_params =
6028 IEEE80211_HT_MCS_TX_DEFINED |
6029 IEEE80211_HT_MCS_TX_RX_DIFF |
RA-Jay Hung38c8a562010-12-13 12:31:27 +01006030 ((rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_TXPATH) - 1) <<
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006031 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
6032
RA-Jay Hung38c8a562010-12-13 12:31:27 +01006033 switch (rt2x00_get_field16(eeprom, EEPROM_NIC_CONF0_RXPATH)) {
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006034 case 3:
6035 spec->ht.mcs.rx_mask[2] = 0xff;
6036 case 2:
6037 spec->ht.mcs.rx_mask[1] = 0xff;
6038 case 1:
6039 spec->ht.mcs.rx_mask[0] = 0xff;
6040 spec->ht.mcs.rx_mask[4] = 0x1; /* MCS32 */
6041 break;
6042 }
6043
6044 /*
6045 * Create channel information array
6046 */
Joe Perchesbaeb2ff2010-08-11 07:02:48 +00006047 info = kcalloc(spec->num_channels, sizeof(*info), GFP_KERNEL);
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006048 if (!info)
6049 return -ENOMEM;
6050
6051 spec->channels_info = info;
6052
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02006053 default_power1 = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_BG1);
6054 default_power2 = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_BG2);
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006055
6056 for (i = 0; i < 14; i++) {
RA-Jay Hunge90c54b2011-02-20 13:55:25 +01006057 info[i].default_power1 = default_power1[i];
6058 info[i].default_power2 = default_power2[i];
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006059 }
6060
6061 if (spec->num_channels > 14) {
Ivo van Doorn8d1331b2010-08-23 19:56:07 +02006062 default_power1 = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_A1);
6063 default_power2 = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_A2);
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006064
6065 for (i = 14; i < spec->num_channels; i++) {
Gabor Juhos24e095c2013-06-22 13:13:25 +02006066 info[i].default_power1 = default_power1[i - 14];
6067 info[i].default_power2 = default_power2[i - 14];
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006068 }
6069 }
6070
John Li2e9c43d2012-02-16 21:40:57 +08006071 switch (rt2x00dev->chip.rf) {
6072 case RF2020:
6073 case RF3020:
6074 case RF3021:
6075 case RF3022:
6076 case RF3320:
6077 case RF3052:
Woody Hunga89534e2012-06-13 15:01:16 +08006078 case RF3290:
villacis@palosanto.comccf91bd2012-05-16 21:07:12 +02006079 case RF5360:
John Li2e9c43d2012-02-16 21:40:57 +08006080 case RF5370:
6081 case RF5372:
6082 case RF5390:
Zero.Lincff3d1f2012-05-29 16:11:09 +08006083 case RF5392:
John Li2e9c43d2012-02-16 21:40:57 +08006084 __set_bit(CAPABILITY_VCO_RECALIBRATION, &rt2x00dev->cap_flags);
6085 break;
6086 }
6087
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006088 return 0;
6089}
Gertjan van Wingerdead417a52012-09-03 03:25:51 +02006090
Gabor Juhoscbafb602013-03-30 14:53:10 +01006091static int rt2800_probe_rt(struct rt2x00_dev *rt2x00dev)
6092{
6093 u32 reg;
6094 u32 rt;
6095 u32 rev;
6096
6097 if (rt2x00_rt(rt2x00dev, RT3290))
6098 rt2800_register_read(rt2x00dev, MAC_CSR0_3290, &reg);
6099 else
6100 rt2800_register_read(rt2x00dev, MAC_CSR0, &reg);
6101
6102 rt = rt2x00_get_field32(reg, MAC_CSR0_CHIPSET);
6103 rev = rt2x00_get_field32(reg, MAC_CSR0_REVISION);
6104
6105 switch (rt) {
6106 case RT2860:
6107 case RT2872:
6108 case RT2883:
6109 case RT3070:
6110 case RT3071:
6111 case RT3090:
6112 case RT3290:
6113 case RT3352:
6114 case RT3390:
6115 case RT3572:
6116 case RT5390:
6117 case RT5392:
6118 case RT5592:
6119 break;
6120 default:
Joe Perchesec9c4982013-04-19 08:33:40 -07006121 rt2x00_err(rt2x00dev, "Invalid RT chipset 0x%04x, rev %04x detected\n",
6122 rt, rev);
Gabor Juhoscbafb602013-03-30 14:53:10 +01006123 return -ENODEV;
6124 }
6125
6126 rt2x00_set_rt(rt2x00dev, rt, rev);
6127
6128 return 0;
6129}
6130
Gertjan van Wingerdead417a52012-09-03 03:25:51 +02006131int rt2800_probe_hw(struct rt2x00_dev *rt2x00dev)
6132{
6133 int retval;
6134 u32 reg;
6135
Gabor Juhoscbafb602013-03-30 14:53:10 +01006136 retval = rt2800_probe_rt(rt2x00dev);
6137 if (retval)
6138 return retval;
6139
Gertjan van Wingerdead417a52012-09-03 03:25:51 +02006140 /*
6141 * Allocate eeprom data.
6142 */
6143 retval = rt2800_validate_eeprom(rt2x00dev);
6144 if (retval)
6145 return retval;
6146
6147 retval = rt2800_init_eeprom(rt2x00dev);
6148 if (retval)
6149 return retval;
6150
6151 /*
6152 * Enable rfkill polling by setting GPIO direction of the
6153 * rfkill switch GPIO pin correctly.
6154 */
6155 rt2800_register_read(rt2x00dev, GPIO_CTRL, &reg);
6156 rt2x00_set_field32(&reg, GPIO_CTRL_DIR2, 1);
6157 rt2800_register_write(rt2x00dev, GPIO_CTRL, reg);
6158
6159 /*
6160 * Initialize hw specifications.
6161 */
6162 retval = rt2800_probe_hw_mode(rt2x00dev);
6163 if (retval)
6164 return retval;
6165
6166 /*
6167 * Set device capabilities.
6168 */
6169 __set_bit(CAPABILITY_CONTROL_FILTERS, &rt2x00dev->cap_flags);
6170 __set_bit(CAPABILITY_CONTROL_FILTER_PSPOLL, &rt2x00dev->cap_flags);
6171 if (!rt2x00_is_usb(rt2x00dev))
6172 __set_bit(CAPABILITY_PRE_TBTT_INTERRUPT, &rt2x00dev->cap_flags);
6173
6174 /*
6175 * Set device requirements.
6176 */
6177 if (!rt2x00_is_soc(rt2x00dev))
6178 __set_bit(REQUIRE_FIRMWARE, &rt2x00dev->cap_flags);
6179 __set_bit(REQUIRE_L2PAD, &rt2x00dev->cap_flags);
6180 __set_bit(REQUIRE_TXSTATUS_FIFO, &rt2x00dev->cap_flags);
6181 if (!rt2800_hwcrypt_disabled(rt2x00dev))
6182 __set_bit(CAPABILITY_HW_CRYPTO, &rt2x00dev->cap_flags);
6183 __set_bit(CAPABILITY_LINK_TUNING, &rt2x00dev->cap_flags);
6184 __set_bit(REQUIRE_HT_TX_DESC, &rt2x00dev->cap_flags);
6185 if (rt2x00_is_usb(rt2x00dev))
6186 __set_bit(REQUIRE_PS_AUTOWAKE, &rt2x00dev->cap_flags);
6187 else {
6188 __set_bit(REQUIRE_DMA, &rt2x00dev->cap_flags);
6189 __set_bit(REQUIRE_TASKLET_CONTEXT, &rt2x00dev->cap_flags);
6190 }
6191
6192 /*
6193 * Set the rssi offset.
6194 */
6195 rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
6196
6197 return 0;
6198}
6199EXPORT_SYMBOL_GPL(rt2800_probe_hw);
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +01006200
6201/*
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006202 * IEEE80211 stack callback functions.
6203 */
Helmut Schaae7836192010-07-11 12:28:54 +02006204void rt2800_get_tkip_seq(struct ieee80211_hw *hw, u8 hw_key_idx, u32 *iv32,
6205 u16 *iv16)
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006206{
6207 struct rt2x00_dev *rt2x00dev = hw->priv;
6208 struct mac_iveiv_entry iveiv_entry;
6209 u32 offset;
6210
6211 offset = MAC_IVEIV_ENTRY(hw_key_idx);
6212 rt2800_register_multiread(rt2x00dev, offset,
6213 &iveiv_entry, sizeof(iveiv_entry));
6214
Julia Lawall855da5e2009-12-13 17:07:45 +01006215 memcpy(iv16, &iveiv_entry.iv[0], sizeof(*iv16));
6216 memcpy(iv32, &iveiv_entry.iv[4], sizeof(*iv32));
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006217}
Helmut Schaae7836192010-07-11 12:28:54 +02006218EXPORT_SYMBOL_GPL(rt2800_get_tkip_seq);
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006219
Helmut Schaae7836192010-07-11 12:28:54 +02006220int rt2800_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006221{
6222 struct rt2x00_dev *rt2x00dev = hw->priv;
6223 u32 reg;
6224 bool enabled = (value < IEEE80211_MAX_RTS_THRESHOLD);
6225
6226 rt2800_register_read(rt2x00dev, TX_RTS_CFG, &reg);
6227 rt2x00_set_field32(&reg, TX_RTS_CFG_RTS_THRES, value);
6228 rt2800_register_write(rt2x00dev, TX_RTS_CFG, reg);
6229
6230 rt2800_register_read(rt2x00dev, CCK_PROT_CFG, &reg);
6231 rt2x00_set_field32(&reg, CCK_PROT_CFG_RTS_TH_EN, enabled);
6232 rt2800_register_write(rt2x00dev, CCK_PROT_CFG, reg);
6233
6234 rt2800_register_read(rt2x00dev, OFDM_PROT_CFG, &reg);
6235 rt2x00_set_field32(&reg, OFDM_PROT_CFG_RTS_TH_EN, enabled);
6236 rt2800_register_write(rt2x00dev, OFDM_PROT_CFG, reg);
6237
6238 rt2800_register_read(rt2x00dev, MM20_PROT_CFG, &reg);
6239 rt2x00_set_field32(&reg, MM20_PROT_CFG_RTS_TH_EN, enabled);
6240 rt2800_register_write(rt2x00dev, MM20_PROT_CFG, reg);
6241
6242 rt2800_register_read(rt2x00dev, MM40_PROT_CFG, &reg);
6243 rt2x00_set_field32(&reg, MM40_PROT_CFG_RTS_TH_EN, enabled);
6244 rt2800_register_write(rt2x00dev, MM40_PROT_CFG, reg);
6245
6246 rt2800_register_read(rt2x00dev, GF20_PROT_CFG, &reg);
6247 rt2x00_set_field32(&reg, GF20_PROT_CFG_RTS_TH_EN, enabled);
6248 rt2800_register_write(rt2x00dev, GF20_PROT_CFG, reg);
6249
6250 rt2800_register_read(rt2x00dev, GF40_PROT_CFG, &reg);
6251 rt2x00_set_field32(&reg, GF40_PROT_CFG_RTS_TH_EN, enabled);
6252 rt2800_register_write(rt2x00dev, GF40_PROT_CFG, reg);
6253
6254 return 0;
6255}
Helmut Schaae7836192010-07-11 12:28:54 +02006256EXPORT_SYMBOL_GPL(rt2800_set_rts_threshold);
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006257
Eliad Peller8a3a3c82011-10-02 10:15:52 +02006258int rt2800_conf_tx(struct ieee80211_hw *hw,
6259 struct ieee80211_vif *vif, u16 queue_idx,
Helmut Schaae7836192010-07-11 12:28:54 +02006260 const struct ieee80211_tx_queue_params *params)
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006261{
6262 struct rt2x00_dev *rt2x00dev = hw->priv;
6263 struct data_queue *queue;
6264 struct rt2x00_field32 field;
6265 int retval;
6266 u32 reg;
6267 u32 offset;
6268
6269 /*
6270 * First pass the configuration through rt2x00lib, that will
6271 * update the queue settings and validate the input. After that
6272 * we are free to update the registers based on the value
6273 * in the queue parameter.
6274 */
Eliad Peller8a3a3c82011-10-02 10:15:52 +02006275 retval = rt2x00mac_conf_tx(hw, vif, queue_idx, params);
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006276 if (retval)
6277 return retval;
6278
6279 /*
6280 * We only need to perform additional register initialization
6281 * for WMM queues/
6282 */
6283 if (queue_idx >= 4)
6284 return 0;
6285
Helmut Schaa11f818e2011-03-03 19:38:55 +01006286 queue = rt2x00queue_get_tx_queue(rt2x00dev, queue_idx);
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006287
6288 /* Update WMM TXOP register */
6289 offset = WMM_TXOP0_CFG + (sizeof(u32) * (!!(queue_idx & 2)));
6290 field.bit_offset = (queue_idx & 1) * 16;
6291 field.bit_mask = 0xffff << field.bit_offset;
6292
6293 rt2800_register_read(rt2x00dev, offset, &reg);
6294 rt2x00_set_field32(&reg, field, queue->txop);
6295 rt2800_register_write(rt2x00dev, offset, reg);
6296
6297 /* Update WMM registers */
6298 field.bit_offset = queue_idx * 4;
6299 field.bit_mask = 0xf << field.bit_offset;
6300
6301 rt2800_register_read(rt2x00dev, WMM_AIFSN_CFG, &reg);
6302 rt2x00_set_field32(&reg, field, queue->aifs);
6303 rt2800_register_write(rt2x00dev, WMM_AIFSN_CFG, reg);
6304
6305 rt2800_register_read(rt2x00dev, WMM_CWMIN_CFG, &reg);
6306 rt2x00_set_field32(&reg, field, queue->cw_min);
6307 rt2800_register_write(rt2x00dev, WMM_CWMIN_CFG, reg);
6308
6309 rt2800_register_read(rt2x00dev, WMM_CWMAX_CFG, &reg);
6310 rt2x00_set_field32(&reg, field, queue->cw_max);
6311 rt2800_register_write(rt2x00dev, WMM_CWMAX_CFG, reg);
6312
6313 /* Update EDCA registers */
6314 offset = EDCA_AC0_CFG + (sizeof(u32) * queue_idx);
6315
6316 rt2800_register_read(rt2x00dev, offset, &reg);
6317 rt2x00_set_field32(&reg, EDCA_AC0_CFG_TX_OP, queue->txop);
6318 rt2x00_set_field32(&reg, EDCA_AC0_CFG_AIFSN, queue->aifs);
6319 rt2x00_set_field32(&reg, EDCA_AC0_CFG_CWMIN, queue->cw_min);
6320 rt2x00_set_field32(&reg, EDCA_AC0_CFG_CWMAX, queue->cw_max);
6321 rt2800_register_write(rt2x00dev, offset, reg);
6322
6323 return 0;
6324}
Helmut Schaae7836192010-07-11 12:28:54 +02006325EXPORT_SYMBOL_GPL(rt2800_conf_tx);
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006326
Eliad Peller37a41b42011-09-21 14:06:11 +03006327u64 rt2800_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006328{
6329 struct rt2x00_dev *rt2x00dev = hw->priv;
6330 u64 tsf;
6331 u32 reg;
6332
6333 rt2800_register_read(rt2x00dev, TSF_TIMER_DW1, &reg);
6334 tsf = (u64) rt2x00_get_field32(reg, TSF_TIMER_DW1_HIGH_WORD) << 32;
6335 rt2800_register_read(rt2x00dev, TSF_TIMER_DW0, &reg);
6336 tsf |= rt2x00_get_field32(reg, TSF_TIMER_DW0_LOW_WORD);
6337
6338 return tsf;
6339}
Helmut Schaae7836192010-07-11 12:28:54 +02006340EXPORT_SYMBOL_GPL(rt2800_get_tsf);
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +01006341
Helmut Schaae7836192010-07-11 12:28:54 +02006342int rt2800_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
6343 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01006344 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
6345 u8 buf_size)
Helmut Schaa1df90802010-06-29 21:38:12 +02006346{
Helmut Schaaaf353232011-09-08 14:38:36 +02006347 struct rt2x00_sta *sta_priv = (struct rt2x00_sta *)sta->drv_priv;
Helmut Schaa1df90802010-06-29 21:38:12 +02006348 int ret = 0;
6349
Helmut Schaaaf353232011-09-08 14:38:36 +02006350 /*
6351 * Don't allow aggregation for stations the hardware isn't aware
6352 * of because tx status reports for frames to an unknown station
6353 * always contain wcid=255 and thus we can't distinguish between
6354 * multiple stations which leads to unwanted situations when the
6355 * hw reorders frames due to aggregation.
6356 */
6357 if (sta_priv->wcid < 0)
6358 return 1;
6359
Helmut Schaa1df90802010-06-29 21:38:12 +02006360 switch (action) {
6361 case IEEE80211_AMPDU_RX_START:
6362 case IEEE80211_AMPDU_RX_STOP:
Helmut Schaa58ed8262010-10-02 11:33:17 +02006363 /*
6364 * The hw itself takes care of setting up BlockAck mechanisms.
6365 * So, we only have to allow mac80211 to nagotiate a BlockAck
6366 * agreement. Once that is done, the hw will BlockAck incoming
6367 * AMPDUs without further setup.
6368 */
Helmut Schaa1df90802010-06-29 21:38:12 +02006369 break;
6370 case IEEE80211_AMPDU_TX_START:
6371 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
6372 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02006373 case IEEE80211_AMPDU_TX_STOP_CONT:
6374 case IEEE80211_AMPDU_TX_STOP_FLUSH:
6375 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Helmut Schaa1df90802010-06-29 21:38:12 +02006376 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
6377 break;
6378 case IEEE80211_AMPDU_TX_OPERATIONAL:
6379 break;
6380 default:
Joe Perchesec9c4982013-04-19 08:33:40 -07006381 rt2x00_warn((struct rt2x00_dev *)hw->priv,
6382 "Unknown AMPDU action\n");
Helmut Schaa1df90802010-06-29 21:38:12 +02006383 }
6384
6385 return ret;
6386}
Helmut Schaae7836192010-07-11 12:28:54 +02006387EXPORT_SYMBOL_GPL(rt2800_ampdu_action);
Ivo van Doorna5ea2f02010-06-14 22:13:15 +02006388
Helmut Schaa977206d2010-12-13 12:31:58 +01006389int rt2800_get_survey(struct ieee80211_hw *hw, int idx,
6390 struct survey_info *survey)
6391{
6392 struct rt2x00_dev *rt2x00dev = hw->priv;
6393 struct ieee80211_conf *conf = &hw->conf;
6394 u32 idle, busy, busy_ext;
6395
6396 if (idx != 0)
6397 return -ENOENT;
6398
Karl Beldan675a0b02013-03-25 16:26:57 +01006399 survey->channel = conf->chandef.chan;
Helmut Schaa977206d2010-12-13 12:31:58 +01006400
6401 rt2800_register_read(rt2x00dev, CH_IDLE_STA, &idle);
6402 rt2800_register_read(rt2x00dev, CH_BUSY_STA, &busy);
6403 rt2800_register_read(rt2x00dev, CH_BUSY_STA_SEC, &busy_ext);
6404
6405 if (idle || busy) {
6406 survey->filled = SURVEY_INFO_CHANNEL_TIME |
6407 SURVEY_INFO_CHANNEL_TIME_BUSY |
6408 SURVEY_INFO_CHANNEL_TIME_EXT_BUSY;
6409
6410 survey->channel_time = (idle + busy) / 1000;
6411 survey->channel_time_busy = busy / 1000;
6412 survey->channel_time_ext_busy = busy_ext / 1000;
6413 }
6414
Helmut Schaa9931df22011-12-22 09:36:29 +01006415 if (!(hw->conf.flags & IEEE80211_CONF_OFFCHANNEL))
6416 survey->filled |= SURVEY_INFO_IN_USE;
6417
Helmut Schaa977206d2010-12-13 12:31:58 +01006418 return 0;
6419
6420}
6421EXPORT_SYMBOL_GPL(rt2800_get_survey);
6422
Ivo van Doorna5ea2f02010-06-14 22:13:15 +02006423MODULE_AUTHOR(DRV_PROJECT ", Bartlomiej Zolnierkiewicz");
6424MODULE_VERSION(DRV_VERSION);
6425MODULE_DESCRIPTION("Ralink RT2800 library");
6426MODULE_LICENSE("GPL");