blob: a639b94f764301792a23765333b1509f64fec39a [file] [log] [blame]
Sujithf1dc5602008-10-29 10:16:30 +05301/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Sujithf1dc5602008-10-29 10:16:30 +05303 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Nikitas Angelinasbbce80e2010-09-08 22:25:42 +010017#include <linux/kernel.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -040018#include <linux/export.h>
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070019#include "hw.h"
Felix Fietkauc16fcb42010-04-15 17:38:39 -040020#include "hw-ops.h"
Sujithf1dc5602008-10-29 10:16:30 +053021
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040022struct ani_ofdm_level_entry {
23 int spur_immunity_level;
24 int fir_step_level;
25 int ofdm_weak_signal_on;
26};
27
28/* values here are relative to the INI */
29
30/*
31 * Legend:
32 *
33 * SI: Spur immunity
34 * FS: FIR Step
35 * WS: OFDM / CCK Weak Signal detection
36 * MRC-CCK: Maximal Ratio Combining for CCK
37 */
38
39static const struct ani_ofdm_level_entry ofdm_level_table[] = {
40 /* SI FS WS */
41 { 0, 0, 1 }, /* lvl 0 */
42 { 1, 1, 1 }, /* lvl 1 */
43 { 2, 2, 1 }, /* lvl 2 */
44 { 3, 2, 1 }, /* lvl 3 (default) */
45 { 4, 3, 1 }, /* lvl 4 */
46 { 5, 4, 1 }, /* lvl 5 */
47 { 6, 5, 1 }, /* lvl 6 */
48 { 7, 6, 1 }, /* lvl 7 */
49 { 7, 7, 1 }, /* lvl 8 */
50 { 7, 8, 0 } /* lvl 9 */
51};
52#define ATH9K_ANI_OFDM_NUM_LEVEL \
Nikitas Angelinasbbce80e2010-09-08 22:25:42 +010053 ARRAY_SIZE(ofdm_level_table)
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040054#define ATH9K_ANI_OFDM_MAX_LEVEL \
55 (ATH9K_ANI_OFDM_NUM_LEVEL-1)
56#define ATH9K_ANI_OFDM_DEF_LEVEL \
57 3 /* default level - matches the INI settings */
58
59/*
60 * MRC (Maximal Ratio Combining) has always been used with multi-antenna ofdm.
61 * With OFDM for single stream you just add up all antenna inputs, you're
62 * only interested in what you get after FFT. Signal aligment is also not
63 * required for OFDM because any phase difference adds up in the frequency
64 * domain.
65 *
66 * MRC requires extra work for use with CCK. You need to align the antenna
67 * signals from the different antenna before you can add the signals together.
68 * You need aligment of signals as CCK is in time domain, so addition can cancel
69 * your signal completely if phase is 180 degrees (think of adding sine waves).
70 * You also need to remove noise before the addition and this is where ANI
71 * MRC CCK comes into play. One of the antenna inputs may be stronger but
72 * lower SNR, so just adding after alignment can be dangerous.
73 *
74 * Regardless of alignment in time, the antenna signals add constructively after
75 * FFT and improve your reception. For more information:
76 *
77 * http://en.wikipedia.org/wiki/Maximal-ratio_combining
78 */
79
80struct ani_cck_level_entry {
81 int fir_step_level;
82 int mrc_cck_on;
83};
84
85static const struct ani_cck_level_entry cck_level_table[] = {
86 /* FS MRC-CCK */
87 { 0, 1 }, /* lvl 0 */
88 { 1, 1 }, /* lvl 1 */
89 { 2, 1 }, /* lvl 2 (default) */
90 { 3, 1 }, /* lvl 3 */
91 { 4, 0 }, /* lvl 4 */
92 { 5, 0 }, /* lvl 5 */
93 { 6, 0 }, /* lvl 6 */
94 { 7, 0 }, /* lvl 7 (only for high rssi) */
95 { 8, 0 } /* lvl 8 (only for high rssi) */
96};
97
98#define ATH9K_ANI_CCK_NUM_LEVEL \
Nikitas Angelinasbbce80e2010-09-08 22:25:42 +010099 ARRAY_SIZE(cck_level_table)
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400100#define ATH9K_ANI_CCK_MAX_LEVEL \
101 (ATH9K_ANI_CCK_NUM_LEVEL-1)
102#define ATH9K_ANI_CCK_MAX_LEVEL_LOW_RSSI \
103 (ATH9K_ANI_CCK_NUM_LEVEL-3)
104#define ATH9K_ANI_CCK_DEF_LEVEL \
105 2 /* default level - matches the INI settings */
106
Felix Fietkau71ea4202010-10-04 20:09:46 +0200107static bool use_new_ani(struct ath_hw *ah)
108{
109 return AR_SREV_9300_20_OR_LATER(ah) || modparam_force_new_ani;
110}
111
Sujithcbe61d82009-02-09 13:27:12 +0530112static void ath9k_hw_update_mibstats(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530113 struct ath9k_mib_stats *stats)
114{
115 stats->ackrcv_bad += REG_READ(ah, AR_ACK_FAIL);
116 stats->rts_bad += REG_READ(ah, AR_RTS_FAIL);
117 stats->fcs_bad += REG_READ(ah, AR_FCS_FAIL);
118 stats->rts_good += REG_READ(ah, AR_RTS_OK);
119 stats->beacons += REG_READ(ah, AR_BEACON_CNT);
120}
121
Felix Fietkau093115b2010-10-04 20:09:47 +0200122static void ath9k_ani_restart(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530123{
Sujithf1dc5602008-10-29 10:16:30 +0530124 struct ar5416AniState *aniState;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700125 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau093115b2010-10-04 20:09:47 +0200126 u32 ofdm_base = 0, cck_base = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530127
128 if (!DO_ANI(ah))
129 return;
130
Felix Fietkau093115b2010-10-04 20:09:47 +0200131 aniState = &ah->curchan->ani;
Sujithf1dc5602008-10-29 10:16:30 +0530132 aniState->listenTime = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530133
Felix Fietkau093115b2010-10-04 20:09:47 +0200134 if (!use_new_ani(ah)) {
135 ofdm_base = AR_PHY_COUNTMAX - ah->config.ofdm_trig_high;
136 cck_base = AR_PHY_COUNTMAX - ah->config.cck_trig_high;
Sujithf1dc5602008-10-29 10:16:30 +0530137 }
Felix Fietkau093115b2010-10-04 20:09:47 +0200138
Joe Perches226afe62010-12-02 19:12:37 -0800139 ath_dbg(common, ATH_DBG_ANI,
140 "Writing ofdmbase=%u cckbase=%u\n", ofdm_base, cck_base);
Sujith7d0d0df2010-04-16 11:53:57 +0530141
142 ENABLE_REGWRITE_BUFFER(ah);
143
Felix Fietkau093115b2010-10-04 20:09:47 +0200144 REG_WRITE(ah, AR_PHY_ERR_1, ofdm_base);
145 REG_WRITE(ah, AR_PHY_ERR_2, cck_base);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400146 REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING);
147 REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING);
148
149 REGWRITE_BUFFER_FLUSH(ah);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400150
151 ath9k_hw_update_mibstats(ah, &ah->ah_mibStats);
152
153 aniState->ofdmPhyErrCount = 0;
154 aniState->cckPhyErrCount = 0;
155}
156
157static void ath9k_hw_ani_ofdm_err_trigger_old(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530158{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -0700159 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +0530160 struct ar5416AniState *aniState;
Sujithf1dc5602008-10-29 10:16:30 +0530161 int32_t rssi;
162
Felix Fietkau093115b2010-10-04 20:09:47 +0200163 aniState = &ah->curchan->ani;
Sujithf1dc5602008-10-29 10:16:30 +0530164
165 if (aniState->noiseImmunityLevel < HAL_NOISE_IMMUNE_MAX) {
166 if (ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL,
167 aniState->noiseImmunityLevel + 1)) {
168 return;
169 }
170 }
171
172 if (aniState->spurImmunityLevel < HAL_SPUR_IMMUNE_MAX) {
173 if (ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL,
174 aniState->spurImmunityLevel + 1)) {
175 return;
176 }
177 }
178
Sujith2660b812009-02-09 13:27:26 +0530179 if (ah->opmode == NL80211_IFTYPE_AP) {
Sujithf1dc5602008-10-29 10:16:30 +0530180 if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) {
181 ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL,
182 aniState->firstepLevel + 1);
183 }
184 return;
185 }
Sujithcbe61d82009-02-09 13:27:12 +0530186 rssi = BEACON_RSSI(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530187 if (rssi > aniState->rssiThrHigh) {
188 if (!aniState->ofdmWeakSigDetectOff) {
189 if (ath9k_hw_ani_control(ah,
190 ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION,
191 false)) {
192 ath9k_hw_ani_control(ah,
193 ATH9K_ANI_SPUR_IMMUNITY_LEVEL, 0);
194 return;
195 }
196 }
197 if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) {
198 ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL,
199 aniState->firstepLevel + 1);
200 return;
201 }
202 } else if (rssi > aniState->rssiThrLow) {
203 if (aniState->ofdmWeakSigDetectOff)
204 ath9k_hw_ani_control(ah,
205 ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION,
206 true);
207 if (aniState->firstepLevel < HAL_FIRST_STEP_MAX)
208 ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL,
209 aniState->firstepLevel + 1);
210 return;
211 } else {
Sujithd37b7da2009-09-11 08:30:03 +0530212 if ((conf->channel->band == IEEE80211_BAND_2GHZ) &&
213 !conf_is_ht(conf)) {
Sujithf1dc5602008-10-29 10:16:30 +0530214 if (!aniState->ofdmWeakSigDetectOff)
215 ath9k_hw_ani_control(ah,
216 ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION,
217 false);
218 if (aniState->firstepLevel > 0)
219 ath9k_hw_ani_control(ah,
220 ATH9K_ANI_FIRSTEP_LEVEL, 0);
221 return;
222 }
223 }
224}
225
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400226static void ath9k_hw_ani_cck_err_trigger_old(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530227{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -0700228 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +0530229 struct ar5416AniState *aniState;
Sujithf1dc5602008-10-29 10:16:30 +0530230 int32_t rssi;
231
Felix Fietkau093115b2010-10-04 20:09:47 +0200232 aniState = &ah->curchan->ani;
Sujithf1dc5602008-10-29 10:16:30 +0530233 if (aniState->noiseImmunityLevel < HAL_NOISE_IMMUNE_MAX) {
234 if (ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL,
235 aniState->noiseImmunityLevel + 1)) {
236 return;
237 }
238 }
Sujith2660b812009-02-09 13:27:26 +0530239 if (ah->opmode == NL80211_IFTYPE_AP) {
Sujithf1dc5602008-10-29 10:16:30 +0530240 if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) {
241 ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL,
242 aniState->firstepLevel + 1);
243 }
244 return;
245 }
Sujithcbe61d82009-02-09 13:27:12 +0530246 rssi = BEACON_RSSI(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530247 if (rssi > aniState->rssiThrLow) {
248 if (aniState->firstepLevel < HAL_FIRST_STEP_MAX)
249 ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL,
250 aniState->firstepLevel + 1);
251 } else {
Sujithd37b7da2009-09-11 08:30:03 +0530252 if ((conf->channel->band == IEEE80211_BAND_2GHZ) &&
253 !conf_is_ht(conf)) {
Sujithf1dc5602008-10-29 10:16:30 +0530254 if (aniState->firstepLevel > 0)
255 ath9k_hw_ani_control(ah,
256 ATH9K_ANI_FIRSTEP_LEVEL, 0);
257 }
258 }
259}
260
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400261/* Adjust the OFDM Noise Immunity Level */
262static void ath9k_hw_set_ofdm_nil(struct ath_hw *ah, u8 immunityLevel)
263{
Felix Fietkau093115b2010-10-04 20:09:47 +0200264 struct ar5416AniState *aniState = &ah->curchan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400265 struct ath_common *common = ath9k_hw_common(ah);
266 const struct ani_ofdm_level_entry *entry_ofdm;
267 const struct ani_cck_level_entry *entry_cck;
268
269 aniState->noiseFloor = BEACON_RSSI(ah);
270
Joe Perches226afe62010-12-02 19:12:37 -0800271 ath_dbg(common, ATH_DBG_ANI,
272 "**** ofdmlevel %d=>%d, rssi=%d[lo=%d hi=%d]\n",
273 aniState->ofdmNoiseImmunityLevel,
274 immunityLevel, aniState->noiseFloor,
275 aniState->rssiThrLow, aniState->rssiThrHigh);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400276
Rajkumar Manoharanf36369a2011-09-19 20:15:48 +0530277 if (aniState->update_ani)
278 aniState->ofdmNoiseImmunityLevel = immunityLevel;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400279
280 entry_ofdm = &ofdm_level_table[aniState->ofdmNoiseImmunityLevel];
281 entry_cck = &cck_level_table[aniState->cckNoiseImmunityLevel];
282
283 if (aniState->spurImmunityLevel != entry_ofdm->spur_immunity_level)
284 ath9k_hw_ani_control(ah,
285 ATH9K_ANI_SPUR_IMMUNITY_LEVEL,
286 entry_ofdm->spur_immunity_level);
287
288 if (aniState->firstepLevel != entry_ofdm->fir_step_level &&
289 entry_ofdm->fir_step_level >= entry_cck->fir_step_level)
290 ath9k_hw_ani_control(ah,
291 ATH9K_ANI_FIRSTEP_LEVEL,
292 entry_ofdm->fir_step_level);
293
294 if ((ah->opmode != NL80211_IFTYPE_STATION &&
295 ah->opmode != NL80211_IFTYPE_ADHOC) ||
296 aniState->noiseFloor <= aniState->rssiThrHigh) {
297 if (aniState->ofdmWeakSigDetectOff)
298 /* force on ofdm weak sig detect */
299 ath9k_hw_ani_control(ah,
300 ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION,
301 true);
302 else if (aniState->ofdmWeakSigDetectOff ==
303 entry_ofdm->ofdm_weak_signal_on)
304 ath9k_hw_ani_control(ah,
305 ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION,
306 entry_ofdm->ofdm_weak_signal_on);
307 }
308}
309
Felix Fietkau8eb49802010-10-04 20:09:49 +0200310static void ath9k_hw_ani_ofdm_err_trigger(struct ath_hw *ah)
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400311{
312 struct ar5416AniState *aniState;
313
314 if (!DO_ANI(ah))
315 return;
316
Felix Fietkau8eb49802010-10-04 20:09:49 +0200317 if (!use_new_ani(ah)) {
318 ath9k_hw_ani_ofdm_err_trigger_old(ah);
319 return;
320 }
321
Felix Fietkau093115b2010-10-04 20:09:47 +0200322 aniState = &ah->curchan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400323
324 if (aniState->ofdmNoiseImmunityLevel < ATH9K_ANI_OFDM_MAX_LEVEL)
325 ath9k_hw_set_ofdm_nil(ah, aniState->ofdmNoiseImmunityLevel + 1);
326}
327
328/*
329 * Set the ANI settings to match an CCK level.
330 */
331static void ath9k_hw_set_cck_nil(struct ath_hw *ah, u_int8_t immunityLevel)
332{
Felix Fietkau093115b2010-10-04 20:09:47 +0200333 struct ar5416AniState *aniState = &ah->curchan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400334 struct ath_common *common = ath9k_hw_common(ah);
335 const struct ani_ofdm_level_entry *entry_ofdm;
336 const struct ani_cck_level_entry *entry_cck;
337
338 aniState->noiseFloor = BEACON_RSSI(ah);
Joe Perches226afe62010-12-02 19:12:37 -0800339 ath_dbg(common, ATH_DBG_ANI,
340 "**** ccklevel %d=>%d, rssi=%d[lo=%d hi=%d]\n",
341 aniState->cckNoiseImmunityLevel, immunityLevel,
342 aniState->noiseFloor, aniState->rssiThrLow,
343 aniState->rssiThrHigh);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400344
345 if ((ah->opmode == NL80211_IFTYPE_STATION ||
346 ah->opmode == NL80211_IFTYPE_ADHOC) &&
347 aniState->noiseFloor <= aniState->rssiThrLow &&
348 immunityLevel > ATH9K_ANI_CCK_MAX_LEVEL_LOW_RSSI)
349 immunityLevel = ATH9K_ANI_CCK_MAX_LEVEL_LOW_RSSI;
350
Rajkumar Manoharanf36369a2011-09-19 20:15:48 +0530351 if (aniState->update_ani)
352 aniState->cckNoiseImmunityLevel = immunityLevel;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400353
354 entry_ofdm = &ofdm_level_table[aniState->ofdmNoiseImmunityLevel];
355 entry_cck = &cck_level_table[aniState->cckNoiseImmunityLevel];
356
357 if (aniState->firstepLevel != entry_cck->fir_step_level &&
358 entry_cck->fir_step_level >= entry_ofdm->fir_step_level)
359 ath9k_hw_ani_control(ah,
360 ATH9K_ANI_FIRSTEP_LEVEL,
361 entry_cck->fir_step_level);
362
363 /* Skip MRC CCK for pre AR9003 families */
Vasanthakumar Thiagarajana95f1602010-12-06 04:27:59 -0800364 if (!AR_SREV_9300_20_OR_LATER(ah) || AR_SREV_9485(ah))
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400365 return;
366
367 if (aniState->mrcCCKOff == entry_cck->mrc_cck_on)
368 ath9k_hw_ani_control(ah,
369 ATH9K_ANI_MRC_CCK,
370 entry_cck->mrc_cck_on);
371}
372
Felix Fietkau8eb49802010-10-04 20:09:49 +0200373static void ath9k_hw_ani_cck_err_trigger(struct ath_hw *ah)
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400374{
375 struct ar5416AniState *aniState;
376
377 if (!DO_ANI(ah))
378 return;
379
Felix Fietkau8eb49802010-10-04 20:09:49 +0200380 if (!use_new_ani(ah)) {
381 ath9k_hw_ani_cck_err_trigger_old(ah);
382 return;
383 }
384
Felix Fietkau093115b2010-10-04 20:09:47 +0200385 aniState = &ah->curchan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400386
387 if (aniState->cckNoiseImmunityLevel < ATH9K_ANI_CCK_MAX_LEVEL)
388 ath9k_hw_set_cck_nil(ah, aniState->cckNoiseImmunityLevel + 1);
389}
390
Luis R. Rodriguezac0bb762010-06-12 00:33:42 -0400391static void ath9k_hw_ani_lower_immunity_old(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530392{
Sujithf1dc5602008-10-29 10:16:30 +0530393 struct ar5416AniState *aniState;
394 int32_t rssi;
395
Felix Fietkau093115b2010-10-04 20:09:47 +0200396 aniState = &ah->curchan->ani;
Sujithf1dc5602008-10-29 10:16:30 +0530397
Sujith2660b812009-02-09 13:27:26 +0530398 if (ah->opmode == NL80211_IFTYPE_AP) {
Sujithf1dc5602008-10-29 10:16:30 +0530399 if (aniState->firstepLevel > 0) {
400 if (ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL,
401 aniState->firstepLevel - 1))
402 return;
403 }
404 } else {
Sujithcbe61d82009-02-09 13:27:12 +0530405 rssi = BEACON_RSSI(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530406 if (rssi > aniState->rssiThrHigh) {
407 /* XXX: Handle me */
408 } else if (rssi > aniState->rssiThrLow) {
409 if (aniState->ofdmWeakSigDetectOff) {
410 if (ath9k_hw_ani_control(ah,
411 ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION,
412 true) == true)
413 return;
414 }
415 if (aniState->firstepLevel > 0) {
416 if (ath9k_hw_ani_control(ah,
417 ATH9K_ANI_FIRSTEP_LEVEL,
418 aniState->firstepLevel - 1) == true)
419 return;
420 }
421 } else {
422 if (aniState->firstepLevel > 0) {
423 if (ath9k_hw_ani_control(ah,
424 ATH9K_ANI_FIRSTEP_LEVEL,
425 aniState->firstepLevel - 1) == true)
426 return;
427 }
428 }
429 }
430
431 if (aniState->spurImmunityLevel > 0) {
432 if (ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL,
433 aniState->spurImmunityLevel - 1))
434 return;
435 }
436
437 if (aniState->noiseImmunityLevel > 0) {
438 ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL,
439 aniState->noiseImmunityLevel - 1);
440 return;
441 }
442}
443
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400444/*
445 * only lower either OFDM or CCK errors per turn
446 * we lower the other one next time
447 */
Felix Fietkau8eb49802010-10-04 20:09:49 +0200448static void ath9k_hw_ani_lower_immunity(struct ath_hw *ah)
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400449{
450 struct ar5416AniState *aniState;
451
Felix Fietkau093115b2010-10-04 20:09:47 +0200452 aniState = &ah->curchan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400453
Felix Fietkau8eb49802010-10-04 20:09:49 +0200454 if (!use_new_ani(ah)) {
455 ath9k_hw_ani_lower_immunity_old(ah);
456 return;
457 }
458
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400459 /* lower OFDM noise immunity */
460 if (aniState->ofdmNoiseImmunityLevel > 0 &&
461 (aniState->ofdmsTurn || aniState->cckNoiseImmunityLevel == 0)) {
462 ath9k_hw_set_ofdm_nil(ah, aniState->ofdmNoiseImmunityLevel - 1);
463 return;
464 }
465
466 /* lower CCK noise immunity */
467 if (aniState->cckNoiseImmunityLevel > 0)
468 ath9k_hw_set_cck_nil(ah, aniState->cckNoiseImmunityLevel - 1);
469}
470
Luis R. Rodriguez40346b62010-06-12 00:33:44 -0400471static void ath9k_ani_reset_old(struct ath_hw *ah, bool is_scanning)
Sujithf1dc5602008-10-29 10:16:30 +0530472{
Sujithf1dc5602008-10-29 10:16:30 +0530473 struct ar5416AniState *aniState;
Sujith2660b812009-02-09 13:27:26 +0530474 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700475 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530476
477 if (!DO_ANI(ah))
478 return;
479
Felix Fietkau093115b2010-10-04 20:09:47 +0200480 aniState = &ah->curchan->ani;
Sujithf1dc5602008-10-29 10:16:30 +0530481
Felix Fietkau093115b2010-10-04 20:09:47 +0200482 if (ah->opmode != NL80211_IFTYPE_STATION
Sujith2660b812009-02-09 13:27:26 +0530483 && ah->opmode != NL80211_IFTYPE_ADHOC) {
Joe Perches226afe62010-12-02 19:12:37 -0800484 ath_dbg(common, ATH_DBG_ANI,
485 "Reset ANI state opmode %u\n", ah->opmode);
Sujith2660b812009-02-09 13:27:26 +0530486 ah->stats.ast_ani_reset++;
Sujithf1dc5602008-10-29 10:16:30 +0530487
Luis R. Rodriguezc66284f2009-07-16 10:17:35 -0700488 if (ah->opmode == NL80211_IFTYPE_AP) {
489 /*
490 * ath9k_hw_ani_control() will only process items set on
491 * ah->ani_function
492 */
493 if (IS_CHAN_2GHZ(chan))
494 ah->ani_function = (ATH9K_ANI_SPUR_IMMUNITY_LEVEL |
495 ATH9K_ANI_FIRSTEP_LEVEL);
496 else
497 ah->ani_function = 0;
498 }
499
Sujithf1dc5602008-10-29 10:16:30 +0530500 ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, 0);
501 ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL, 0);
502 ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, 0);
503 ath9k_hw_ani_control(ah, ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION,
504 !ATH9K_ANI_USE_OFDM_WEAK_SIG);
505 ath9k_hw_ani_control(ah, ATH9K_ANI_CCK_WEAK_SIGNAL_THR,
506 ATH9K_ANI_CCK_WEAK_SIG_THR);
507
Felix Fietkau093115b2010-10-04 20:09:47 +0200508 ath9k_ani_restart(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530509 return;
510 }
511
512 if (aniState->noiseImmunityLevel != 0)
513 ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL,
514 aniState->noiseImmunityLevel);
515 if (aniState->spurImmunityLevel != 0)
516 ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL,
517 aniState->spurImmunityLevel);
518 if (aniState->ofdmWeakSigDetectOff)
519 ath9k_hw_ani_control(ah, ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION,
520 !aniState->ofdmWeakSigDetectOff);
521 if (aniState->cckWeakSigThreshold)
522 ath9k_hw_ani_control(ah, ATH9K_ANI_CCK_WEAK_SIGNAL_THR,
523 aniState->cckWeakSigThreshold);
524 if (aniState->firstepLevel != 0)
525 ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL,
526 aniState->firstepLevel);
Sujithf1dc5602008-10-29 10:16:30 +0530527
Felix Fietkau093115b2010-10-04 20:09:47 +0200528 ath9k_ani_restart(ah);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400529
530 ENABLE_REGWRITE_BUFFER(ah);
531
532 REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING);
533 REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING);
534
535 REGWRITE_BUFFER_FLUSH(ah);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400536}
537
538/*
539 * Restore the ANI parameters in the HAL and reset the statistics.
540 * This routine should be called for every hardware reset and for
541 * every channel change.
542 */
Felix Fietkau8eb49802010-10-04 20:09:49 +0200543void ath9k_ani_reset(struct ath_hw *ah, bool is_scanning)
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400544{
Felix Fietkau093115b2010-10-04 20:09:47 +0200545 struct ar5416AniState *aniState = &ah->curchan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400546 struct ath9k_channel *chan = ah->curchan;
547 struct ath_common *common = ath9k_hw_common(ah);
548
549 if (!DO_ANI(ah))
550 return;
551
Felix Fietkau8eb49802010-10-04 20:09:49 +0200552 if (!use_new_ani(ah))
553 return ath9k_ani_reset_old(ah, is_scanning);
554
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400555 BUG_ON(aniState == NULL);
556 ah->stats.ast_ani_reset++;
557
558 /* only allow a subset of functions in AP mode */
559 if (ah->opmode == NL80211_IFTYPE_AP) {
560 if (IS_CHAN_2GHZ(chan)) {
561 ah->ani_function = (ATH9K_ANI_SPUR_IMMUNITY_LEVEL |
562 ATH9K_ANI_FIRSTEP_LEVEL);
563 if (AR_SREV_9300_20_OR_LATER(ah))
564 ah->ani_function |= ATH9K_ANI_MRC_CCK;
565 } else
566 ah->ani_function = 0;
567 }
568
569 /* always allow mode (on/off) to be controlled */
570 ah->ani_function |= ATH9K_ANI_MODE;
571
572 if (is_scanning ||
573 (ah->opmode != NL80211_IFTYPE_STATION &&
574 ah->opmode != NL80211_IFTYPE_ADHOC)) {
575 /*
576 * If we're scanning or in AP mode, the defaults (ini)
577 * should be in place. For an AP we assume the historical
578 * levels for this channel are probably outdated so start
579 * from defaults instead.
580 */
581 if (aniState->ofdmNoiseImmunityLevel !=
582 ATH9K_ANI_OFDM_DEF_LEVEL ||
583 aniState->cckNoiseImmunityLevel !=
584 ATH9K_ANI_CCK_DEF_LEVEL) {
Joe Perches226afe62010-12-02 19:12:37 -0800585 ath_dbg(common, ATH_DBG_ANI,
586 "Restore defaults: opmode %u chan %d Mhz/0x%x is_scanning=%d ofdm:%d cck:%d\n",
587 ah->opmode,
588 chan->channel,
589 chan->channelFlags,
590 is_scanning,
591 aniState->ofdmNoiseImmunityLevel,
592 aniState->cckNoiseImmunityLevel);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400593
Rajkumar Manoharanf36369a2011-09-19 20:15:48 +0530594 aniState->update_ani = false;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400595 ath9k_hw_set_ofdm_nil(ah, ATH9K_ANI_OFDM_DEF_LEVEL);
596 ath9k_hw_set_cck_nil(ah, ATH9K_ANI_CCK_DEF_LEVEL);
597 }
598 } else {
599 /*
600 * restore historical levels for this channel
601 */
Joe Perches226afe62010-12-02 19:12:37 -0800602 ath_dbg(common, ATH_DBG_ANI,
603 "Restore history: opmode %u chan %d Mhz/0x%x is_scanning=%d ofdm:%d cck:%d\n",
604 ah->opmode,
605 chan->channel,
606 chan->channelFlags,
607 is_scanning,
608 aniState->ofdmNoiseImmunityLevel,
609 aniState->cckNoiseImmunityLevel);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400610
Rajkumar Manoharanf36369a2011-09-19 20:15:48 +0530611 aniState->update_ani = true;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400612 ath9k_hw_set_ofdm_nil(ah,
613 aniState->ofdmNoiseImmunityLevel);
614 ath9k_hw_set_cck_nil(ah,
615 aniState->cckNoiseImmunityLevel);
616 }
617
618 /*
619 * enable phy counters if hw supports or if not, enable phy
620 * interrupts (so we can count each one)
621 */
Felix Fietkau093115b2010-10-04 20:09:47 +0200622 ath9k_ani_restart(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530623
624 ENABLE_REGWRITE_BUFFER(ah);
625
Sujith1aa8e842009-08-13 09:34:25 +0530626 REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING);
627 REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING);
Sujith7d0d0df2010-04-16 11:53:57 +0530628
629 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530630}
631
Felix Fietkaue49f9132010-10-12 16:08:01 +0200632static bool ath9k_hw_ani_read_counters(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530633{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700634 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkaubfc472b2010-10-04 20:09:48 +0200635 struct ar5416AniState *aniState = &ah->curchan->ani;
636 u32 ofdm_base = 0;
637 u32 cck_base = 0;
Sujith1aa8e842009-08-13 09:34:25 +0530638 u32 ofdmPhyErrCnt, cckPhyErrCnt;
Felix Fietkaubfc472b2010-10-04 20:09:48 +0200639 u32 phyCnt1, phyCnt2;
640 int32_t listenTime;
Sujithf1dc5602008-10-29 10:16:30 +0530641
Felix Fietkaub5bfc562010-10-08 22:13:53 +0200642 ath_hw_cycle_counters_update(common);
643 listenTime = ath_hw_get_listen_time(common);
644
Felix Fietkaue49f9132010-10-12 16:08:01 +0200645 if (listenTime <= 0) {
Mohammed Shafi Shajakhan107021c2011-08-26 11:19:57 +0530646 ah->stats.ast_ani_lneg_or_lzero++;
Felix Fietkau093115b2010-10-04 20:09:47 +0200647 ath9k_ani_restart(ah);
Felix Fietkaue49f9132010-10-12 16:08:01 +0200648 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530649 }
650
Felix Fietkaubfc472b2010-10-04 20:09:48 +0200651 if (!use_new_ani(ah)) {
652 ofdm_base = AR_PHY_COUNTMAX - ah->config.ofdm_trig_high;
653 cck_base = AR_PHY_COUNTMAX - ah->config.cck_trig_high;
654 }
655
Sujithf1dc5602008-10-29 10:16:30 +0530656 aniState->listenTime += listenTime;
657
Sujith1aa8e842009-08-13 09:34:25 +0530658 ath9k_hw_update_mibstats(ah, &ah->ah_mibStats);
Sujithf1dc5602008-10-29 10:16:30 +0530659
Sujith1aa8e842009-08-13 09:34:25 +0530660 phyCnt1 = REG_READ(ah, AR_PHY_ERR_1);
661 phyCnt2 = REG_READ(ah, AR_PHY_ERR_2);
Sujithf1dc5602008-10-29 10:16:30 +0530662
Felix Fietkau431c7482010-10-12 16:08:02 +0200663 if (!use_new_ani(ah) && (phyCnt1 < ofdm_base || phyCnt2 < cck_base)) {
Felix Fietkau093115b2010-10-04 20:09:47 +0200664 if (phyCnt1 < ofdm_base) {
Joe Perches226afe62010-12-02 19:12:37 -0800665 ath_dbg(common, ATH_DBG_ANI,
666 "phyCnt1 0x%x, resetting counter value to 0x%x\n",
667 phyCnt1, ofdm_base);
Felix Fietkau093115b2010-10-04 20:09:47 +0200668 REG_WRITE(ah, AR_PHY_ERR_1, ofdm_base);
Sujith1aa8e842009-08-13 09:34:25 +0530669 REG_WRITE(ah, AR_PHY_ERR_MASK_1,
670 AR_PHY_ERR_OFDM_TIMING);
Sujithf1dc5602008-10-29 10:16:30 +0530671 }
Felix Fietkau093115b2010-10-04 20:09:47 +0200672 if (phyCnt2 < cck_base) {
Joe Perches226afe62010-12-02 19:12:37 -0800673 ath_dbg(common, ATH_DBG_ANI,
674 "phyCnt2 0x%x, resetting counter value to 0x%x\n",
675 phyCnt2, cck_base);
Felix Fietkau093115b2010-10-04 20:09:47 +0200676 REG_WRITE(ah, AR_PHY_ERR_2, cck_base);
Sujith1aa8e842009-08-13 09:34:25 +0530677 REG_WRITE(ah, AR_PHY_ERR_MASK_2,
678 AR_PHY_ERR_CCK_TIMING);
679 }
Felix Fietkaue49f9132010-10-12 16:08:01 +0200680 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530681 }
682
Felix Fietkau093115b2010-10-04 20:09:47 +0200683 ofdmPhyErrCnt = phyCnt1 - ofdm_base;
Sujith1aa8e842009-08-13 09:34:25 +0530684 ah->stats.ast_ani_ofdmerrs +=
685 ofdmPhyErrCnt - aniState->ofdmPhyErrCount;
686 aniState->ofdmPhyErrCount = ofdmPhyErrCnt;
687
Felix Fietkau093115b2010-10-04 20:09:47 +0200688 cckPhyErrCnt = phyCnt2 - cck_base;
Sujith1aa8e842009-08-13 09:34:25 +0530689 ah->stats.ast_ani_cckerrs +=
690 cckPhyErrCnt - aniState->cckPhyErrCount;
691 aniState->cckPhyErrCount = cckPhyErrCnt;
Felix Fietkaue49f9132010-10-12 16:08:01 +0200692 return true;
Felix Fietkaubfc472b2010-10-04 20:09:48 +0200693}
694
Felix Fietkau95792172010-10-04 20:09:50 +0200695void ath9k_hw_ani_monitor(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400696{
697 struct ar5416AniState *aniState;
698 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400699 u32 ofdmPhyErrRate, cckPhyErrRate;
700
701 if (!DO_ANI(ah))
702 return;
703
Felix Fietkau093115b2010-10-04 20:09:47 +0200704 aniState = &ah->curchan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400705 if (WARN_ON(!aniState))
706 return;
707
Felix Fietkaue49f9132010-10-12 16:08:01 +0200708 if (!ath9k_hw_ani_read_counters(ah))
709 return;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400710
711 ofdmPhyErrRate = aniState->ofdmPhyErrCount * 1000 /
712 aniState->listenTime;
713 cckPhyErrRate = aniState->cckPhyErrCount * 1000 /
714 aniState->listenTime;
715
Joe Perches226afe62010-12-02 19:12:37 -0800716 ath_dbg(common, ATH_DBG_ANI,
717 "listenTime=%d OFDM:%d errs=%d/s CCK:%d errs=%d/s ofdm_turn=%d\n",
718 aniState->listenTime,
719 aniState->ofdmNoiseImmunityLevel,
720 ofdmPhyErrRate, aniState->cckNoiseImmunityLevel,
721 cckPhyErrRate, aniState->ofdmsTurn);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400722
723 if (aniState->listenTime > 5 * ah->aniperiod) {
Felix Fietkau093115b2010-10-04 20:09:47 +0200724 if (ofdmPhyErrRate <= ah->config.ofdm_trig_low &&
725 cckPhyErrRate <= ah->config.cck_trig_low) {
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400726 ath9k_hw_ani_lower_immunity(ah);
727 aniState->ofdmsTurn = !aniState->ofdmsTurn;
728 }
Felix Fietkau093115b2010-10-04 20:09:47 +0200729 ath9k_ani_restart(ah);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400730 } else if (aniState->listenTime > ah->aniperiod) {
731 /* check to see if need to raise immunity */
Felix Fietkau093115b2010-10-04 20:09:47 +0200732 if (ofdmPhyErrRate > ah->config.ofdm_trig_high &&
733 (cckPhyErrRate <= ah->config.cck_trig_high ||
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400734 aniState->ofdmsTurn)) {
Felix Fietkau8eb49802010-10-04 20:09:49 +0200735 ath9k_hw_ani_ofdm_err_trigger(ah);
Felix Fietkau093115b2010-10-04 20:09:47 +0200736 ath9k_ani_restart(ah);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400737 aniState->ofdmsTurn = false;
Felix Fietkau093115b2010-10-04 20:09:47 +0200738 } else if (cckPhyErrRate > ah->config.cck_trig_high) {
Felix Fietkau8eb49802010-10-04 20:09:49 +0200739 ath9k_hw_ani_cck_err_trigger(ah);
Felix Fietkau093115b2010-10-04 20:09:47 +0200740 ath9k_ani_restart(ah);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400741 aniState->ofdmsTurn = true;
Sujithf1dc5602008-10-29 10:16:30 +0530742 }
743 }
744}
Felix Fietkau95792172010-10-04 20:09:50 +0200745EXPORT_SYMBOL(ath9k_hw_ani_monitor);
Sujithf1dc5602008-10-29 10:16:30 +0530746
Sujithcbe61d82009-02-09 13:27:12 +0530747void ath9k_enable_mib_counters(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530748{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700749 struct ath_common *common = ath9k_hw_common(ah);
750
Joe Perches226afe62010-12-02 19:12:37 -0800751 ath_dbg(common, ATH_DBG_ANI, "Enable MIB counters\n");
Sujithf1dc5602008-10-29 10:16:30 +0530752
Sujithcbe61d82009-02-09 13:27:12 +0530753 ath9k_hw_update_mibstats(ah, &ah->ah_mibStats);
Sujithf1dc5602008-10-29 10:16:30 +0530754
Sujith7d0d0df2010-04-16 11:53:57 +0530755 ENABLE_REGWRITE_BUFFER(ah);
756
Sujithf1dc5602008-10-29 10:16:30 +0530757 REG_WRITE(ah, AR_FILT_OFDM, 0);
758 REG_WRITE(ah, AR_FILT_CCK, 0);
759 REG_WRITE(ah, AR_MIBC,
760 ~(AR_MIBC_COW | AR_MIBC_FMC | AR_MIBC_CMC | AR_MIBC_MCS)
761 & 0x0f);
762 REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING);
763 REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING);
Sujith7d0d0df2010-04-16 11:53:57 +0530764
765 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530766}
767
Sujith0fd06c92009-02-12 10:06:51 +0530768/* Freeze the MIB counters, get the stats and then clear them */
Sujithcbe61d82009-02-09 13:27:12 +0530769void ath9k_hw_disable_mib_counters(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530770{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700771 struct ath_common *common = ath9k_hw_common(ah);
772
Joe Perches226afe62010-12-02 19:12:37 -0800773 ath_dbg(common, ATH_DBG_ANI, "Disable MIB counters\n");
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700774
Sujith0fd06c92009-02-12 10:06:51 +0530775 REG_WRITE(ah, AR_MIBC, AR_MIBC_FMC);
Sujithcbe61d82009-02-09 13:27:12 +0530776 ath9k_hw_update_mibstats(ah, &ah->ah_mibStats);
Sujith0fd06c92009-02-12 10:06:51 +0530777 REG_WRITE(ah, AR_MIBC, AR_MIBC_CMC);
Sujithf1dc5602008-10-29 10:16:30 +0530778 REG_WRITE(ah, AR_FILT_OFDM, 0);
779 REG_WRITE(ah, AR_FILT_CCK, 0);
780}
Sujith21d51302010-06-01 15:14:18 +0530781EXPORT_SYMBOL(ath9k_hw_disable_mib_counters);
Sujithf1dc5602008-10-29 10:16:30 +0530782
Sujithf1dc5602008-10-29 10:16:30 +0530783/*
784 * Process a MIB interrupt. We may potentially be invoked because
785 * any of the MIB counters overflow/trigger so don't assume we're
786 * here because a PHY error counter triggered.
787 */
Felix Fietkaubfc472b2010-10-04 20:09:48 +0200788void ath9k_hw_proc_mib_event(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530789{
Sujithf1dc5602008-10-29 10:16:30 +0530790 u32 phyCnt1, phyCnt2;
791
792 /* Reset these counters regardless */
793 REG_WRITE(ah, AR_FILT_OFDM, 0);
794 REG_WRITE(ah, AR_FILT_CCK, 0);
795 if (!(REG_READ(ah, AR_SLP_MIB_CTRL) & AR_SLP_MIB_PENDING))
796 REG_WRITE(ah, AR_SLP_MIB_CTRL, AR_SLP_MIB_CLEAR);
797
798 /* Clear the mib counters and save them in the stats */
Sujithcbe61d82009-02-09 13:27:12 +0530799 ath9k_hw_update_mibstats(ah, &ah->ah_mibStats);
Sujithf1dc5602008-10-29 10:16:30 +0530800
Luis R. Rodriguez6e97f0f2010-06-12 00:33:41 -0400801 if (!DO_ANI(ah)) {
802 /*
803 * We must always clear the interrupt cause by
804 * resetting the phy error regs.
805 */
806 REG_WRITE(ah, AR_PHY_ERR_1, 0);
807 REG_WRITE(ah, AR_PHY_ERR_2, 0);
Sujithf1dc5602008-10-29 10:16:30 +0530808 return;
Luis R. Rodriguez6e97f0f2010-06-12 00:33:41 -0400809 }
Sujithf1dc5602008-10-29 10:16:30 +0530810
811 /* NB: these are not reset-on-read */
812 phyCnt1 = REG_READ(ah, AR_PHY_ERR_1);
813 phyCnt2 = REG_READ(ah, AR_PHY_ERR_2);
814 if (((phyCnt1 & AR_MIBCNT_INTRMASK) == AR_MIBCNT_INTRMASK) ||
815 ((phyCnt2 & AR_MIBCNT_INTRMASK) == AR_MIBCNT_INTRMASK)) {
Sujithf1dc5602008-10-29 10:16:30 +0530816
Felix Fietkaubfc472b2010-10-04 20:09:48 +0200817 if (!use_new_ani(ah))
818 ath9k_hw_ani_read_counters(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530819
Sujithf1dc5602008-10-29 10:16:30 +0530820 /* NB: always restart to insure the h/w counters are reset */
Felix Fietkau093115b2010-10-04 20:09:47 +0200821 ath9k_ani_restart(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530822 }
823}
Felix Fietkaubfc472b2010-10-04 20:09:48 +0200824EXPORT_SYMBOL(ath9k_hw_proc_mib_event);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400825
Sujithcbe61d82009-02-09 13:27:12 +0530826void ath9k_hw_ani_setup(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530827{
Sujithf1dc5602008-10-29 10:16:30 +0530828 int i;
829
Joe Perches07b2fa52010-11-20 18:38:53 -0800830 static const int totalSizeDesired[] = { -55, -55, -55, -55, -62 };
831 static const int coarseHigh[] = { -14, -14, -14, -14, -12 };
832 static const int coarseLow[] = { -64, -64, -64, -64, -70 };
833 static const int firpwr[] = { -78, -78, -78, -78, -80 };
Sujithf1dc5602008-10-29 10:16:30 +0530834
835 for (i = 0; i < 5; i++) {
Sujith2660b812009-02-09 13:27:26 +0530836 ah->totalSizeDesired[i] = totalSizeDesired[i];
837 ah->coarse_high[i] = coarseHigh[i];
838 ah->coarse_low[i] = coarseLow[i];
839 ah->firpwr[i] = firpwr[i];
Sujithf1dc5602008-10-29 10:16:30 +0530840 }
841}
842
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700843void ath9k_hw_ani_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530844{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700845 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530846 int i;
847
Joe Perches226afe62010-12-02 19:12:37 -0800848 ath_dbg(common, ATH_DBG_ANI, "Initialize ANI\n");
Sujithf1dc5602008-10-29 10:16:30 +0530849
Felix Fietkau093115b2010-10-04 20:09:47 +0200850 if (use_new_ani(ah)) {
851 ah->config.ofdm_trig_high = ATH9K_ANI_OFDM_TRIG_HIGH_NEW;
852 ah->config.ofdm_trig_low = ATH9K_ANI_OFDM_TRIG_LOW_NEW;
853
854 ah->config.cck_trig_high = ATH9K_ANI_CCK_TRIG_HIGH_NEW;
855 ah->config.cck_trig_low = ATH9K_ANI_CCK_TRIG_LOW_NEW;
856 } else {
857 ah->config.ofdm_trig_high = ATH9K_ANI_OFDM_TRIG_HIGH_OLD;
858 ah->config.ofdm_trig_low = ATH9K_ANI_OFDM_TRIG_LOW_OLD;
859
860 ah->config.cck_trig_high = ATH9K_ANI_CCK_TRIG_HIGH_OLD;
861 ah->config.cck_trig_low = ATH9K_ANI_CCK_TRIG_LOW_OLD;
862 }
863
864 for (i = 0; i < ARRAY_SIZE(ah->channels); i++) {
865 struct ath9k_channel *chan = &ah->channels[i];
866 struct ar5416AniState *ani = &chan->ani;
867
Felix Fietkau71ea4202010-10-04 20:09:46 +0200868 if (use_new_ani(ah)) {
Felix Fietkau093115b2010-10-04 20:09:47 +0200869 ani->spurImmunityLevel =
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400870 ATH9K_ANI_SPUR_IMMUNE_LVL_NEW;
871
Felix Fietkau093115b2010-10-04 20:09:47 +0200872 ani->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_NEW;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400873
874 if (AR_SREV_9300_20_OR_LATER(ah))
Felix Fietkau093115b2010-10-04 20:09:47 +0200875 ani->mrcCCKOff =
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400876 !ATH9K_ANI_ENABLE_MRC_CCK;
877 else
Felix Fietkau093115b2010-10-04 20:09:47 +0200878 ani->mrcCCKOff = true;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400879
Felix Fietkau093115b2010-10-04 20:09:47 +0200880 ani->ofdmsTurn = true;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400881 } else {
Felix Fietkau093115b2010-10-04 20:09:47 +0200882 ani->spurImmunityLevel =
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400883 ATH9K_ANI_SPUR_IMMUNE_LVL_OLD;
Felix Fietkau093115b2010-10-04 20:09:47 +0200884 ani->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_OLD;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400885
Felix Fietkau093115b2010-10-04 20:09:47 +0200886 ani->cckWeakSigThreshold =
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400887 ATH9K_ANI_CCK_WEAK_SIG_THR;
888 }
889
Felix Fietkau093115b2010-10-04 20:09:47 +0200890 ani->rssiThrHigh = ATH9K_ANI_RSSI_THR_HIGH;
891 ani->rssiThrLow = ATH9K_ANI_RSSI_THR_LOW;
892 ani->ofdmWeakSigDetectOff =
Sujithf1dc5602008-10-29 10:16:30 +0530893 !ATH9K_ANI_USE_OFDM_WEAK_SIG;
Felix Fietkau093115b2010-10-04 20:09:47 +0200894 ani->cckNoiseImmunityLevel = ATH9K_ANI_CCK_DEF_LEVEL;
Rajkumar Manoharanf36369a2011-09-19 20:15:48 +0530895 ani->ofdmNoiseImmunityLevel = ATH9K_ANI_OFDM_DEF_LEVEL;
896 ani->update_ani = false;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400897 }
898
899 /*
900 * since we expect some ongoing maintenance on the tables, let's sanity
901 * check here default level should not modify INI setting.
902 */
Felix Fietkau71ea4202010-10-04 20:09:46 +0200903 if (use_new_ani(ah)) {
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400904 ah->aniperiod = ATH9K_ANI_PERIOD_NEW;
905 ah->config.ani_poll_interval = ATH9K_ANI_POLLINTERVAL_NEW;
906 } else {
907 ah->aniperiod = ATH9K_ANI_PERIOD_OLD;
908 ah->config.ani_poll_interval = ATH9K_ANI_POLLINTERVAL_OLD;
Sujithf1dc5602008-10-29 10:16:30 +0530909 }
Sujithf1dc5602008-10-29 10:16:30 +0530910
Sujith2660b812009-02-09 13:27:26 +0530911 if (ah->config.enable_ani)
912 ah->proc_phyerr |= HAL_PROCESS_ANI;
Felix Fietkau093115b2010-10-04 20:09:47 +0200913
914 ath9k_ani_restart(ah);
915 ath9k_enable_mib_counters(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530916}