dt-bindings: mtd: ingenic: Use standard ecc-engine property
[linux/fpc-iii.git] / drivers / net / wireless / ralink / rt2x00 / rt2x00link.c
blob2010a7715f2115a913182358d825b0d2492818cc
1 /*
2 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
3 <http://rt2x00.serialmonkey.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, see <http://www.gnu.org/licenses/>.
20 Module: rt2x00lib
21 Abstract: rt2x00 generic link tuning routines.
24 #include <linux/kernel.h>
25 #include <linux/module.h>
27 #include "rt2x00.h"
28 #include "rt2x00lib.h"
31 * When we lack RSSI information return something less then -80 to
32 * tell the driver to tune the device to maximum sensitivity.
34 #define DEFAULT_RSSI -128
36 static inline int rt2x00link_get_avg_rssi(struct ewma_rssi *ewma)
38 unsigned long avg;
40 avg = ewma_rssi_read(ewma);
41 if (avg)
42 return -avg;
44 return DEFAULT_RSSI;
47 static int rt2x00link_antenna_get_link_rssi(struct rt2x00_dev *rt2x00dev)
49 struct link_ant *ant = &rt2x00dev->link.ant;
51 if (rt2x00dev->link.qual.rx_success)
52 return rt2x00link_get_avg_rssi(&ant->rssi_ant);
54 return DEFAULT_RSSI;
57 static int rt2x00link_antenna_get_rssi_history(struct rt2x00_dev *rt2x00dev)
59 struct link_ant *ant = &rt2x00dev->link.ant;
61 if (ant->rssi_history)
62 return ant->rssi_history;
63 return DEFAULT_RSSI;
66 static void rt2x00link_antenna_update_rssi_history(struct rt2x00_dev *rt2x00dev,
67 int rssi)
69 struct link_ant *ant = &rt2x00dev->link.ant;
70 ant->rssi_history = rssi;
73 static void rt2x00link_antenna_reset(struct rt2x00_dev *rt2x00dev)
75 ewma_rssi_init(&rt2x00dev->link.ant.rssi_ant);
78 static void rt2x00lib_antenna_diversity_sample(struct rt2x00_dev *rt2x00dev)
80 struct link_ant *ant = &rt2x00dev->link.ant;
81 struct antenna_setup new_ant;
82 int other_antenna;
84 int sample_current = rt2x00link_antenna_get_link_rssi(rt2x00dev);
85 int sample_other = rt2x00link_antenna_get_rssi_history(rt2x00dev);
87 memcpy(&new_ant, &ant->active, sizeof(new_ant));
90 * We are done sampling. Now we should evaluate the results.
92 ant->flags &= ~ANTENNA_MODE_SAMPLE;
95 * During the last period we have sampled the RSSI
96 * from both antennas. It now is time to determine
97 * which antenna demonstrated the best performance.
98 * When we are already on the antenna with the best
99 * performance, just create a good starting point
100 * for the history and we are done.
102 if (sample_current >= sample_other) {
103 rt2x00link_antenna_update_rssi_history(rt2x00dev,
104 sample_current);
105 return;
108 other_antenna = (ant->active.rx == ANTENNA_A) ? ANTENNA_B : ANTENNA_A;
110 if (ant->flags & ANTENNA_RX_DIVERSITY)
111 new_ant.rx = other_antenna;
113 if (ant->flags & ANTENNA_TX_DIVERSITY)
114 new_ant.tx = other_antenna;
116 rt2x00lib_config_antenna(rt2x00dev, new_ant);
119 static void rt2x00lib_antenna_diversity_eval(struct rt2x00_dev *rt2x00dev)
121 struct link_ant *ant = &rt2x00dev->link.ant;
122 struct antenna_setup new_ant;
123 int rssi_curr;
124 int rssi_old;
126 memcpy(&new_ant, &ant->active, sizeof(new_ant));
129 * Get current RSSI value along with the historical value,
130 * after that update the history with the current value.
132 rssi_curr = rt2x00link_antenna_get_link_rssi(rt2x00dev);
133 rssi_old = rt2x00link_antenna_get_rssi_history(rt2x00dev);
134 rt2x00link_antenna_update_rssi_history(rt2x00dev, rssi_curr);
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.
145 if (abs(rssi_curr - rssi_old) < 5)
146 return;
148 ant->flags |= ANTENNA_MODE_SAMPLE;
150 if (ant->flags & ANTENNA_RX_DIVERSITY)
151 new_ant.rx = (new_ant.rx == ANTENNA_A) ? ANTENNA_B : ANTENNA_A;
153 if (ant->flags & ANTENNA_TX_DIVERSITY)
154 new_ant.tx = (new_ant.tx == ANTENNA_A) ? ANTENNA_B : ANTENNA_A;
156 rt2x00lib_config_antenna(rt2x00dev, new_ant);
159 static bool rt2x00lib_antenna_diversity(struct rt2x00_dev *rt2x00dev)
161 struct link_ant *ant = &rt2x00dev->link.ant;
164 * Determine if software diversity is enabled for
165 * either the TX or RX antenna (or both).
167 if (!(ant->flags & ANTENNA_RX_DIVERSITY) &&
168 !(ant->flags & ANTENNA_TX_DIVERSITY)) {
169 ant->flags = 0;
170 return true;
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.
179 if (ant->flags & ANTENNA_MODE_SAMPLE) {
180 rt2x00lib_antenna_diversity_sample(rt2x00dev);
181 return true;
182 } else if (rt2x00dev->link.count & 1) {
183 rt2x00lib_antenna_diversity_eval(rt2x00dev);
184 return true;
187 return false;
190 void rt2x00link_update_stats(struct rt2x00_dev *rt2x00dev,
191 struct sk_buff *skb,
192 struct rxdone_entry_desc *rxdesc)
194 struct link *link = &rt2x00dev->link;
195 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;
200 * No need to update the stats for !=STA interfaces
202 if (!rt2x00dev->intf_sta_count)
203 return;
206 * Frame was received successfully since non-succesfull
207 * frames would have been dropped by the hardware.
209 qual->rx_success++;
212 * We are only interested in quality statistics from
213 * beacons which came from the BSS which we are
214 * associated with.
216 if (!ieee80211_is_beacon(hdr->frame_control) ||
217 !(rxdesc->dev_flags & RXDONE_MY_BSS))
218 return;
221 * Update global RSSI
223 ewma_rssi_add(&link->avg_rssi, -rxdesc->rssi);
226 * Update antenna RSSI
228 ewma_rssi_add(&ant->rssi_ant, -rxdesc->rssi);
231 void rt2x00link_start_tuner(struct rt2x00_dev *rt2x00dev)
233 struct link *link = &rt2x00dev->link;
236 * Single monitor mode interfaces should never have
237 * work with link tuners.
239 if (!rt2x00dev->intf_ap_count && !rt2x00dev->intf_sta_count)
240 return;
243 * While scanning, link tuning is disabled. By default
244 * the most sensitive settings will be used to make sure
245 * that all beacons and probe responses will be received
246 * during the scan.
248 if (test_bit(DEVICE_STATE_SCANNING, &rt2x00dev->flags))
249 return;
251 rt2x00link_reset_tuner(rt2x00dev, false);
253 if (test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
254 ieee80211_queue_delayed_work(rt2x00dev->hw,
255 &link->work, LINK_TUNE_INTERVAL);
258 void rt2x00link_stop_tuner(struct rt2x00_dev *rt2x00dev)
260 cancel_delayed_work_sync(&rt2x00dev->link.work);
263 void rt2x00link_reset_tuner(struct rt2x00_dev *rt2x00dev, bool antenna)
265 struct link_qual *qual = &rt2x00dev->link.qual;
266 u8 vgc_level = qual->vgc_level_reg;
268 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
269 return;
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.
279 rt2x00dev->link.count = 0;
280 memset(qual, 0, sizeof(*qual));
281 ewma_rssi_init(&rt2x00dev->link.avg_rssi);
284 * 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.
288 qual->vgc_level_reg = vgc_level;
291 * Reset the link tuner.
293 rt2x00dev->ops->lib->reset_tuner(rt2x00dev, qual);
295 if (antenna)
296 rt2x00link_antenna_reset(rt2x00dev);
299 static void rt2x00link_reset_qual(struct rt2x00_dev *rt2x00dev)
301 struct link_qual *qual = &rt2x00dev->link.qual;
303 qual->rx_success = 0;
304 qual->rx_failed = 0;
305 qual->tx_success = 0;
306 qual->tx_failed = 0;
309 static void rt2x00link_tuner_sta(struct rt2x00_dev *rt2x00dev, struct link *link)
311 struct link_qual *qual = &rt2x00dev->link.qual;
314 * Update statistics.
316 rt2x00dev->ops->lib->link_stats(rt2x00dev, qual);
317 rt2x00dev->low_level_stats.dot11FCSErrorCount += qual->rx_failed;
320 * 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.
325 if (!qual->rx_success)
326 qual->rssi = DEFAULT_RSSI;
327 else
328 qual->rssi = rt2x00link_get_avg_rssi(&link->avg_rssi);
331 * 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.
335 if (rt2x00_has_cap_link_tuning(rt2x00dev))
336 rt2x00dev->ops->lib->link_tuner(rt2x00dev, qual, link->count);
339 * Send a signal to the led to update the led signal strength.
341 rt2x00leds_led_quality(rt2x00dev, qual->rssi);
344 * Evaluate antenna setup, make this the last step when
345 * rt2x00lib_antenna_diversity made changes the quality
346 * statistics will be reset.
348 if (rt2x00lib_antenna_diversity(rt2x00dev))
349 rt2x00link_reset_qual(rt2x00dev);
352 static void rt2x00link_tuner(struct work_struct *work)
354 struct rt2x00_dev *rt2x00dev =
355 container_of(work, struct rt2x00_dev, link.work.work);
356 struct link *link = &rt2x00dev->link;
359 * When the radio is shutting down we should
360 * immediately cease all link tuning.
362 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags) ||
363 test_bit(DEVICE_STATE_SCANNING, &rt2x00dev->flags))
364 return;
366 /* Do not race with rt2x00mac_config(). */
367 mutex_lock(&rt2x00dev->conf_mutex);
369 if (rt2x00dev->intf_sta_count)
370 rt2x00link_tuner_sta(rt2x00dev, link);
372 if (rt2x00dev->ops->lib->gain_calibration &&
373 (link->count % (AGC_SECONDS / LINK_TUNE_SECONDS)) == 0)
374 rt2x00dev->ops->lib->gain_calibration(rt2x00dev);
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);
381 mutex_unlock(&rt2x00dev->conf_mutex);
384 * Increase tuner counter, and reschedule the next link tuner run.
386 link->count++;
388 if (test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
389 ieee80211_queue_delayed_work(rt2x00dev->hw,
390 &link->work, LINK_TUNE_INTERVAL);
393 void rt2x00link_start_watchdog(struct rt2x00_dev *rt2x00dev)
395 struct link *link = &rt2x00dev->link;
397 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);
404 void rt2x00link_stop_watchdog(struct rt2x00_dev *rt2x00dev)
406 cancel_delayed_work_sync(&rt2x00dev->link.watchdog_work);
409 static void rt2x00link_watchdog(struct work_struct *work)
411 struct rt2x00_dev *rt2x00dev =
412 container_of(work, struct rt2x00_dev, link.watchdog_work.work);
413 struct link *link = &rt2x00dev->link;
416 * When the radio is shutting down we should
417 * immediately cease the watchdog monitoring.
419 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
420 return;
422 rt2x00dev->ops->lib->watchdog(rt2x00dev);
424 if (test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
425 ieee80211_queue_delayed_work(rt2x00dev->hw,
426 &link->watchdog_work,
427 WATCHDOG_INTERVAL);
430 void rt2x00link_register(struct rt2x00_dev *rt2x00dev)
432 INIT_DELAYED_WORK(&rt2x00dev->link.watchdog_work, rt2x00link_watchdog);
433 INIT_DELAYED_WORK(&rt2x00dev->link.work, rt2x00link_tuner);