blob: 2010a7715f2115a913182358d825b0d2492818cc [file] [log] [blame]
Ivo van Doorn84e31962008-12-20 10:53:29 +01001/*
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01002 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
Ivo van Doorn84e31962008-12-20 10:53:29 +01003 <http://rt2x00.serialmonkey.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
Jeff Kirshera05b8c52013-12-06 03:32:11 -080016 along with this program; if not, see <http://www.gnu.org/licenses/>.
Ivo van Doorn84e31962008-12-20 10:53:29 +010017 */
18
19/*
20 Module: rt2x00lib
21 Abstract: rt2x00 generic link tuning routines.
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26
27#include "rt2x00.h"
28#include "rt2x00lib.h"
29
Ivo van Doorn5352ff62008-12-20 10:54:54 +010030/*
31 * When we lack RSSI information return something less then -80 to
32 * tell the driver to tune the device to maximum sensitivity.
33 */
34#define DEFAULT_RSSI -128
35
Johannes Berg11ab35e2015-08-19 09:46:21 +020036static inline int rt2x00link_get_avg_rssi(struct ewma_rssi *ewma)
Gabor Juhos1dc254a2013-10-09 11:00:38 +020037{
38 unsigned long avg;
39
Johannes Berg11ab35e2015-08-19 09:46:21 +020040 avg = ewma_rssi_read(ewma);
Gabor Juhos1dc254a2013-10-09 11:00:38 +020041 if (avg)
42 return -avg;
43
44 return DEFAULT_RSSI;
45}
Ivo van Doorn5352ff62008-12-20 10:54:54 +010046
Ivo van Doorn84e31962008-12-20 10:53:29 +010047static int rt2x00link_antenna_get_link_rssi(struct rt2x00_dev *rt2x00dev)
48{
49 struct link_ant *ant = &rt2x00dev->link.ant;
50
Gabor Juhos1dc254a2013-10-09 11:00:38 +020051 if (rt2x00dev->link.qual.rx_success)
52 return rt2x00link_get_avg_rssi(&ant->rssi_ant);
53
Ivo van Doorn84e31962008-12-20 10:53:29 +010054 return DEFAULT_RSSI;
55}
56
Lars Ericsson193df182009-08-08 23:54:24 +020057static int rt2x00link_antenna_get_rssi_history(struct rt2x00_dev *rt2x00dev)
Ivo van Doorn84e31962008-12-20 10:53:29 +010058{
59 struct link_ant *ant = &rt2x00dev->link.ant;
60
Lars Ericsson193df182009-08-08 23:54:24 +020061 if (ant->rssi_history)
62 return ant->rssi_history;
Ivo van Doorn84e31962008-12-20 10:53:29 +010063 return DEFAULT_RSSI;
64}
Ivo van Doorn84e31962008-12-20 10:53:29 +010065
66static void rt2x00link_antenna_update_rssi_history(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn84e31962008-12-20 10:53:29 +010067 int rssi)
68{
69 struct link_ant *ant = &rt2x00dev->link.ant;
Lars Ericsson193df182009-08-08 23:54:24 +020070 ant->rssi_history = rssi;
Ivo van Doorn84e31962008-12-20 10:53:29 +010071}
Ivo van Doorn84e31962008-12-20 10:53:29 +010072
73static void rt2x00link_antenna_reset(struct rt2x00_dev *rt2x00dev)
74{
Johannes Berg11ab35e2015-08-19 09:46:21 +020075 ewma_rssi_init(&rt2x00dev->link.ant.rssi_ant);
Ivo van Doorn84e31962008-12-20 10:53:29 +010076}
77
78static void rt2x00lib_antenna_diversity_sample(struct rt2x00_dev *rt2x00dev)
79{
80 struct link_ant *ant = &rt2x00dev->link.ant;
81 struct antenna_setup new_ant;
Lars Ericsson193df182009-08-08 23:54:24 +020082 int other_antenna;
83
84 int sample_current = rt2x00link_antenna_get_link_rssi(rt2x00dev);
85 int sample_other = rt2x00link_antenna_get_rssi_history(rt2x00dev);
Ivo van Doorn84e31962008-12-20 10:53:29 +010086
87 memcpy(&new_ant, &ant->active, sizeof(new_ant));
88
89 /*
90 * We are done sampling. Now we should evaluate the results.
91 */
92 ant->flags &= ~ANTENNA_MODE_SAMPLE;
93
94 /*
95 * During the last period we have sampled the RSSI
Luis Correia49513482009-07-17 21:39:19 +020096 * from both antennas. It now is time to determine
Ivo van Doorn84e31962008-12-20 10:53:29 +010097 * which antenna demonstrated the best performance.
98 * When we are already on the antenna with the best
Lars Ericsson193df182009-08-08 23:54:24 +020099 * performance, just create a good starting point
100 * for the history and we are done.
Ivo van Doorn84e31962008-12-20 10:53:29 +0100101 */
Lars Ericsson193df182009-08-08 23:54:24 +0200102 if (sample_current >= sample_other) {
103 rt2x00link_antenna_update_rssi_history(rt2x00dev,
104 sample_current);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100105 return;
Lars Ericsson193df182009-08-08 23:54:24 +0200106 }
107
108 other_antenna = (ant->active.rx == ANTENNA_A) ? ANTENNA_B : ANTENNA_A;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100109
110 if (ant->flags & ANTENNA_RX_DIVERSITY)
Lars Ericsson193df182009-08-08 23:54:24 +0200111 new_ant.rx = other_antenna;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100112
113 if (ant->flags & ANTENNA_TX_DIVERSITY)
Lars Ericsson193df182009-08-08 23:54:24 +0200114 new_ant.tx = other_antenna;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100115
Lars Ericssoneb87eaa2009-07-18 20:21:52 +0200116 rt2x00lib_config_antenna(rt2x00dev, new_ant);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100117}
118
119static void rt2x00lib_antenna_diversity_eval(struct rt2x00_dev *rt2x00dev)
120{
121 struct link_ant *ant = &rt2x00dev->link.ant;
122 struct antenna_setup new_ant;
123 int rssi_curr;
124 int rssi_old;
125
126 memcpy(&new_ant, &ant->active, sizeof(new_ant));
127
128 /*
129 * Get current RSSI value along with the historical value,
130 * after that update the history with the current value.
131 */
132 rssi_curr = rt2x00link_antenna_get_link_rssi(rt2x00dev);
Lars Ericsson193df182009-08-08 23:54:24 +0200133 rssi_old = rt2x00link_antenna_get_rssi_history(rt2x00dev);
134 rt2x00link_antenna_update_rssi_history(rt2x00dev, rssi_curr);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100135
136 /*
137 * Legacy driver indicates that we should swap antenna's
138 * when the difference in RSSI is greater that 5. This
139 * also should be done when the RSSI was actually better
140 * then the previous sample.
141 * When the difference exceeds the threshold we should
142 * sample the rssi from the other antenna to make a valid
143 * comparison between the 2 antennas.
144 */
145 if (abs(rssi_curr - rssi_old) < 5)
146 return;
147
148 ant->flags |= ANTENNA_MODE_SAMPLE;
149
150 if (ant->flags & ANTENNA_RX_DIVERSITY)
151 new_ant.rx = (new_ant.rx == ANTENNA_A) ? ANTENNA_B : ANTENNA_A;
152
153 if (ant->flags & ANTENNA_TX_DIVERSITY)
154 new_ant.tx = (new_ant.tx == ANTENNA_A) ? ANTENNA_B : ANTENNA_A;
155
Lars Ericssoneb87eaa2009-07-18 20:21:52 +0200156 rt2x00lib_config_antenna(rt2x00dev, new_ant);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100157}
158
Lars Ericsson193df182009-08-08 23:54:24 +0200159static bool rt2x00lib_antenna_diversity(struct rt2x00_dev *rt2x00dev)
Ivo van Doorn84e31962008-12-20 10:53:29 +0100160{
161 struct link_ant *ant = &rt2x00dev->link.ant;
162
163 /*
164 * Determine if software diversity is enabled for
165 * either the TX or RX antenna (or both).
Ivo van Doorn84e31962008-12-20 10:53:29 +0100166 */
Ivo van Doorn84e31962008-12-20 10:53:29 +0100167 if (!(ant->flags & ANTENNA_RX_DIVERSITY) &&
168 !(ant->flags & ANTENNA_TX_DIVERSITY)) {
169 ant->flags = 0;
Lars Ericsson193df182009-08-08 23:54:24 +0200170 return true;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100171 }
172
173 /*
174 * If we have only sampled the data over the last period
175 * we should now harvest the data. Otherwise just evaluate
176 * the data. The latter should only be performed once
177 * every 2 seconds.
178 */
Lars Ericsson193df182009-08-08 23:54:24 +0200179 if (ant->flags & ANTENNA_MODE_SAMPLE) {
Ivo van Doorn84e31962008-12-20 10:53:29 +0100180 rt2x00lib_antenna_diversity_sample(rt2x00dev);
Lars Ericsson193df182009-08-08 23:54:24 +0200181 return true;
182 } else if (rt2x00dev->link.count & 1) {
Ivo van Doorn84e31962008-12-20 10:53:29 +0100183 rt2x00lib_antenna_diversity_eval(rt2x00dev);
Lars Ericsson193df182009-08-08 23:54:24 +0200184 return true;
185 }
186
187 return false;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100188}
189
190void rt2x00link_update_stats(struct rt2x00_dev *rt2x00dev,
191 struct sk_buff *skb,
192 struct rxdone_entry_desc *rxdesc)
193{
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100194 struct link *link = &rt2x00dev->link;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100195 struct link_qual *qual = &rt2x00dev->link.qual;
196 struct link_ant *ant = &rt2x00dev->link.ant;
197 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100198
199 /*
Helmut Schaaa23c2202010-10-09 13:33:16 +0200200 * No need to update the stats for !=STA interfaces
201 */
202 if (!rt2x00dev->intf_sta_count)
203 return;
204
205 /*
Ivo van Doorn84e31962008-12-20 10:53:29 +0100206 * Frame was received successfully since non-succesfull
207 * frames would have been dropped by the hardware.
208 */
209 qual->rx_success++;
210
211 /*
212 * We are only interested in quality statistics from
213 * beacons which came from the BSS which we are
214 * associated with.
215 */
216 if (!ieee80211_is_beacon(hdr->frame_control) ||
217 !(rxdesc->dev_flags & RXDONE_MY_BSS))
218 return;
219
220 /*
221 * Update global RSSI
222 */
Johannes Berg11ab35e2015-08-19 09:46:21 +0200223 ewma_rssi_add(&link->avg_rssi, -rxdesc->rssi);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100224
225 /*
226 * Update antenna RSSI
227 */
Johannes Berg11ab35e2015-08-19 09:46:21 +0200228 ewma_rssi_add(&ant->rssi_ant, -rxdesc->rssi);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100229}
230
Ivo van Doorn84e31962008-12-20 10:53:29 +0100231void rt2x00link_start_tuner(struct rt2x00_dev *rt2x00dev)
232{
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100233 struct link *link = &rt2x00dev->link;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100234
235 /*
Stanislaw Gruszkad9632472016-12-19 11:52:54 +0100236 * Single monitor mode interfaces should never have
237 * work with link tuners.
Ivo van Doorn84e31962008-12-20 10:53:29 +0100238 */
Stanislaw Gruszkad9632472016-12-19 11:52:54 +0100239 if (!rt2x00dev->intf_ap_count && !rt2x00dev->intf_sta_count)
Ivo van Doorn84e31962008-12-20 10:53:29 +0100240 return;
241
Stanislaw Gruszkad9632472016-12-19 11:52:54 +0100242 /*
Ivo van Doornd8147f92010-07-11 12:24:47 +0200243 * While scanning, link tuning is disabled. By default
244 * the most sensitive settings will be used to make sure
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300245 * that all beacons and probe responses will be received
Ivo van Doornd8147f92010-07-11 12:24:47 +0200246 * during the scan.
247 */
248 if (test_bit(DEVICE_STATE_SCANNING, &rt2x00dev->flags))
249 return;
250
Ivo van Doorn84e31962008-12-20 10:53:29 +0100251 rt2x00link_reset_tuner(rt2x00dev, false);
252
Sean Cross66f84d62009-11-05 20:22:03 +0100253 if (test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
254 ieee80211_queue_delayed_work(rt2x00dev->hw,
255 &link->work, LINK_TUNE_INTERVAL);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100256}
257
258void rt2x00link_stop_tuner(struct rt2x00_dev *rt2x00dev)
259{
260 cancel_delayed_work_sync(&rt2x00dev->link.work);
261}
262
263void rt2x00link_reset_tuner(struct rt2x00_dev *rt2x00dev, bool antenna)
264{
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100265 struct link_qual *qual = &rt2x00dev->link.qual;
Ivo van Doorn223dcc22010-07-11 12:25:17 +0200266 u8 vgc_level = qual->vgc_level_reg;
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100267
Ivo van Doorn84e31962008-12-20 10:53:29 +0100268 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
269 return;
270
271 /*
272 * Reset link information.
273 * Both the currently active vgc level as well as
274 * the link tuner counter should be reset. Resetting
275 * the counter is important for devices where the
276 * device should only perform link tuning during the
277 * first minute after being enabled.
278 */
279 rt2x00dev->link.count = 0;
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100280 memset(qual, 0, sizeof(*qual));
Johannes Berg11ab35e2015-08-19 09:46:21 +0200281 ewma_rssi_init(&rt2x00dev->link.avg_rssi);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100282
283 /*
Ivo van Doorn223dcc22010-07-11 12:25:17 +0200284 * Restore the VGC level as stored in the registers,
285 * the driver can use this to determine if the register
286 * must be updated during reset or not.
287 */
288 qual->vgc_level_reg = vgc_level;
289
290 /*
Ivo van Doorn84e31962008-12-20 10:53:29 +0100291 * Reset the link tuner.
292 */
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100293 rt2x00dev->ops->lib->reset_tuner(rt2x00dev, qual);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100294
295 if (antenna)
296 rt2x00link_antenna_reset(rt2x00dev);
297}
298
Ivo van Doorna57e2e82009-03-28 20:51:41 +0100299static void rt2x00link_reset_qual(struct rt2x00_dev *rt2x00dev)
Ivo van Doorn64abd802009-03-01 17:42:00 +0100300{
301 struct link_qual *qual = &rt2x00dev->link.qual;
302
303 qual->rx_success = 0;
304 qual->rx_failed = 0;
305 qual->tx_success = 0;
306 qual->tx_failed = 0;
307}
308
Stanislaw Gruszkad9632472016-12-19 11:52:54 +0100309static void rt2x00link_tuner_sta(struct rt2x00_dev *rt2x00dev, struct link *link)
Ivo van Doorn84e31962008-12-20 10:53:29 +0100310{
Ivo van Doorn84e31962008-12-20 10:53:29 +0100311 struct link_qual *qual = &rt2x00dev->link.qual;
312
313 /*
Ivo van Doorn84e31962008-12-20 10:53:29 +0100314 * Update statistics.
315 */
316 rt2x00dev->ops->lib->link_stats(rt2x00dev, qual);
317 rt2x00dev->low_level_stats.dot11FCSErrorCount += qual->rx_failed;
318
319 /*
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100320 * Update quality RSSI for link tuning,
321 * when we have received some frames and we managed to
322 * collect the RSSI data we could use this. Otherwise we
323 * must fallback to the default RSSI value.
324 */
Gabor Juhos1dc254a2013-10-09 11:00:38 +0200325 if (!qual->rx_success)
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100326 qual->rssi = DEFAULT_RSSI;
327 else
Gabor Juhos1dc254a2013-10-09 11:00:38 +0200328 qual->rssi = rt2x00link_get_avg_rssi(&link->avg_rssi);
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100329
330 /*
Ivo van Doorn27df2a92010-07-11 12:24:22 +0200331 * Check if link tuning is supported by the hardware, some hardware
332 * do not support link tuning at all, while other devices can disable
333 * the feature from the EEPROM.
Ivo van Doorn84e31962008-12-20 10:53:29 +0100334 */
Gabor Juhos7b8a00d2013-10-11 13:18:41 +0200335 if (rt2x00_has_cap_link_tuning(rt2x00dev))
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100336 rt2x00dev->ops->lib->link_tuner(rt2x00dev, qual, link->count);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100337
338 /*
Ivo van Doorn84e31962008-12-20 10:53:29 +0100339 * Send a signal to the led to update the led signal strength.
340 */
Lars Ericsson66679a62009-08-08 23:54:51 +0200341 rt2x00leds_led_quality(rt2x00dev, qual->rssi);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100342
343 /*
Lars Ericsson193df182009-08-08 23:54:24 +0200344 * Evaluate antenna setup, make this the last step when
345 * rt2x00lib_antenna_diversity made changes the quality
346 * statistics will be reset.
Ivo van Doorn84e31962008-12-20 10:53:29 +0100347 */
Lars Ericsson193df182009-08-08 23:54:24 +0200348 if (rt2x00lib_antenna_diversity(rt2x00dev))
349 rt2x00link_reset_qual(rt2x00dev);
Stanislaw Gruszkad9632472016-12-19 11:52:54 +0100350}
351
352static void rt2x00link_tuner(struct work_struct *work)
353{
354 struct rt2x00_dev *rt2x00dev =
355 container_of(work, struct rt2x00_dev, link.work.work);
356 struct link *link = &rt2x00dev->link;
357
358 /*
359 * When the radio is shutting down we should
360 * immediately cease all link tuning.
361 */
362 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags) ||
363 test_bit(DEVICE_STATE_SCANNING, &rt2x00dev->flags))
364 return;
365
Stanislaw Gruszkac7d1c772016-12-19 11:52:57 +0100366 /* Do not race with rt2x00mac_config(). */
367 mutex_lock(&rt2x00dev->conf_mutex);
368
Stanislaw Gruszkad9632472016-12-19 11:52:54 +0100369 if (rt2x00dev->intf_sta_count)
370 rt2x00link_tuner_sta(rt2x00dev, link);
371
372 if (rt2x00dev->ops->lib->gain_calibration &&
373 (link->count % (AGC_SECONDS / LINK_TUNE_SECONDS)) == 0)
374 rt2x00dev->ops->lib->gain_calibration(rt2x00dev);
375
376 if (rt2x00dev->ops->lib->vco_calibration &&
377 rt2x00_has_cap_vco_recalibration(rt2x00dev) &&
378 (link->count % (VCO_SECONDS / LINK_TUNE_SECONDS)) == 0)
379 rt2x00dev->ops->lib->vco_calibration(rt2x00dev);
Ivo van Doorn64abd802009-03-01 17:42:00 +0100380
Stanislaw Gruszkac7d1c772016-12-19 11:52:57 +0100381 mutex_unlock(&rt2x00dev->conf_mutex);
382
Ivo van Doorn64abd802009-03-01 17:42:00 +0100383 /*
Ivo van Doorn84e31962008-12-20 10:53:29 +0100384 * Increase tuner counter, and reschedule the next link tuner run.
385 */
Ivo van Doorn5352ff62008-12-20 10:54:54 +0100386 link->count++;
Sean Cross66f84d62009-11-05 20:22:03 +0100387
388 if (test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
389 ieee80211_queue_delayed_work(rt2x00dev->hw,
390 &link->work, LINK_TUNE_INTERVAL);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100391}
392
Ivo van Doornc965c742010-07-11 12:25:46 +0200393void rt2x00link_start_watchdog(struct rt2x00_dev *rt2x00dev)
394{
395 struct link *link = &rt2x00dev->link;
396
Helmut Schaaaca7305b2011-03-28 13:30:59 +0200397 if (test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags) &&
398 rt2x00dev->ops->lib->watchdog)
399 ieee80211_queue_delayed_work(rt2x00dev->hw,
400 &link->watchdog_work,
401 WATCHDOG_INTERVAL);
Ivo van Doornc965c742010-07-11 12:25:46 +0200402}
403
404void rt2x00link_stop_watchdog(struct rt2x00_dev *rt2x00dev)
405{
406 cancel_delayed_work_sync(&rt2x00dev->link.watchdog_work);
407}
408
409static void rt2x00link_watchdog(struct work_struct *work)
410{
411 struct rt2x00_dev *rt2x00dev =
412 container_of(work, struct rt2x00_dev, link.watchdog_work.work);
413 struct link *link = &rt2x00dev->link;
414
415 /*
416 * When the radio is shutting down we should
417 * immediately cease the watchdog monitoring.
418 */
419 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
420 return;
421
422 rt2x00dev->ops->lib->watchdog(rt2x00dev);
423
424 if (test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
Ivo van Doorn0439f532011-01-30 13:24:05 +0100425 ieee80211_queue_delayed_work(rt2x00dev->hw,
426 &link->watchdog_work,
427 WATCHDOG_INTERVAL);
Ivo van Doornc965c742010-07-11 12:25:46 +0200428}
429
Ivo van Doorn84e31962008-12-20 10:53:29 +0100430void rt2x00link_register(struct rt2x00_dev *rt2x00dev)
431{
Ivo van Doornc965c742010-07-11 12:25:46 +0200432 INIT_DELAYED_WORK(&rt2x00dev->link.watchdog_work, rt2x00link_watchdog);
Ivo van Doorn84e31962008-12-20 10:53:29 +0100433 INIT_DELAYED_WORK(&rt2x00dev->link.work, rt2x00link_tuner);
434}