Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 1 | /* |
Sujith Manoharan | 5b68138 | 2011-05-17 13:36:18 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2011 Atheros Communications Inc. |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 3 | * |
| 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 Angelinas | bbce80e | 2010-09-08 22:25:42 +0100 | [diff] [blame] | 17 | #include <linux/kernel.h> |
Luis R. Rodriguez | cfe8cba | 2009-09-13 23:39:31 -0700 | [diff] [blame] | 18 | #include "hw.h" |
Felix Fietkau | c16fcb4 | 2010-04-15 17:38:39 -0400 | [diff] [blame] | 19 | #include "hw-ops.h" |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 20 | |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 21 | struct ani_ofdm_level_entry { |
| 22 | int spur_immunity_level; |
| 23 | int fir_step_level; |
| 24 | int ofdm_weak_signal_on; |
| 25 | }; |
| 26 | |
| 27 | /* values here are relative to the INI */ |
| 28 | |
| 29 | /* |
| 30 | * Legend: |
| 31 | * |
| 32 | * SI: Spur immunity |
| 33 | * FS: FIR Step |
| 34 | * WS: OFDM / CCK Weak Signal detection |
| 35 | * MRC-CCK: Maximal Ratio Combining for CCK |
| 36 | */ |
| 37 | |
| 38 | static const struct ani_ofdm_level_entry ofdm_level_table[] = { |
| 39 | /* SI FS WS */ |
| 40 | { 0, 0, 1 }, /* lvl 0 */ |
| 41 | { 1, 1, 1 }, /* lvl 1 */ |
| 42 | { 2, 2, 1 }, /* lvl 2 */ |
| 43 | { 3, 2, 1 }, /* lvl 3 (default) */ |
| 44 | { 4, 3, 1 }, /* lvl 4 */ |
| 45 | { 5, 4, 1 }, /* lvl 5 */ |
| 46 | { 6, 5, 1 }, /* lvl 6 */ |
| 47 | { 7, 6, 1 }, /* lvl 7 */ |
| 48 | { 7, 7, 1 }, /* lvl 8 */ |
| 49 | { 7, 8, 0 } /* lvl 9 */ |
| 50 | }; |
| 51 | #define ATH9K_ANI_OFDM_NUM_LEVEL \ |
Nikitas Angelinas | bbce80e | 2010-09-08 22:25:42 +0100 | [diff] [blame] | 52 | ARRAY_SIZE(ofdm_level_table) |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 53 | #define ATH9K_ANI_OFDM_MAX_LEVEL \ |
| 54 | (ATH9K_ANI_OFDM_NUM_LEVEL-1) |
| 55 | #define ATH9K_ANI_OFDM_DEF_LEVEL \ |
| 56 | 3 /* default level - matches the INI settings */ |
| 57 | |
| 58 | /* |
| 59 | * MRC (Maximal Ratio Combining) has always been used with multi-antenna ofdm. |
| 60 | * With OFDM for single stream you just add up all antenna inputs, you're |
| 61 | * only interested in what you get after FFT. Signal aligment is also not |
| 62 | * required for OFDM because any phase difference adds up in the frequency |
| 63 | * domain. |
| 64 | * |
| 65 | * MRC requires extra work for use with CCK. You need to align the antenna |
| 66 | * signals from the different antenna before you can add the signals together. |
| 67 | * You need aligment of signals as CCK is in time domain, so addition can cancel |
| 68 | * your signal completely if phase is 180 degrees (think of adding sine waves). |
| 69 | * You also need to remove noise before the addition and this is where ANI |
| 70 | * MRC CCK comes into play. One of the antenna inputs may be stronger but |
| 71 | * lower SNR, so just adding after alignment can be dangerous. |
| 72 | * |
| 73 | * Regardless of alignment in time, the antenna signals add constructively after |
| 74 | * FFT and improve your reception. For more information: |
| 75 | * |
| 76 | * http://en.wikipedia.org/wiki/Maximal-ratio_combining |
| 77 | */ |
| 78 | |
| 79 | struct ani_cck_level_entry { |
| 80 | int fir_step_level; |
| 81 | int mrc_cck_on; |
| 82 | }; |
| 83 | |
| 84 | static const struct ani_cck_level_entry cck_level_table[] = { |
| 85 | /* FS MRC-CCK */ |
| 86 | { 0, 1 }, /* lvl 0 */ |
| 87 | { 1, 1 }, /* lvl 1 */ |
| 88 | { 2, 1 }, /* lvl 2 (default) */ |
| 89 | { 3, 1 }, /* lvl 3 */ |
| 90 | { 4, 0 }, /* lvl 4 */ |
| 91 | { 5, 0 }, /* lvl 5 */ |
| 92 | { 6, 0 }, /* lvl 6 */ |
| 93 | { 7, 0 }, /* lvl 7 (only for high rssi) */ |
| 94 | { 8, 0 } /* lvl 8 (only for high rssi) */ |
| 95 | }; |
| 96 | |
| 97 | #define ATH9K_ANI_CCK_NUM_LEVEL \ |
Nikitas Angelinas | bbce80e | 2010-09-08 22:25:42 +0100 | [diff] [blame] | 98 | ARRAY_SIZE(cck_level_table) |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 99 | #define ATH9K_ANI_CCK_MAX_LEVEL \ |
| 100 | (ATH9K_ANI_CCK_NUM_LEVEL-1) |
| 101 | #define ATH9K_ANI_CCK_MAX_LEVEL_LOW_RSSI \ |
| 102 | (ATH9K_ANI_CCK_NUM_LEVEL-3) |
| 103 | #define ATH9K_ANI_CCK_DEF_LEVEL \ |
| 104 | 2 /* default level - matches the INI settings */ |
| 105 | |
Felix Fietkau | 71ea420 | 2010-10-04 20:09:46 +0200 | [diff] [blame] | 106 | static bool use_new_ani(struct ath_hw *ah) |
| 107 | { |
| 108 | return AR_SREV_9300_20_OR_LATER(ah) || modparam_force_new_ani; |
| 109 | } |
| 110 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 111 | static void ath9k_hw_update_mibstats(struct ath_hw *ah, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 112 | struct ath9k_mib_stats *stats) |
| 113 | { |
| 114 | stats->ackrcv_bad += REG_READ(ah, AR_ACK_FAIL); |
| 115 | stats->rts_bad += REG_READ(ah, AR_RTS_FAIL); |
| 116 | stats->fcs_bad += REG_READ(ah, AR_FCS_FAIL); |
| 117 | stats->rts_good += REG_READ(ah, AR_RTS_OK); |
| 118 | stats->beacons += REG_READ(ah, AR_BEACON_CNT); |
| 119 | } |
| 120 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 121 | static void ath9k_ani_restart(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 122 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 123 | struct ar5416AniState *aniState; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 124 | struct ath_common *common = ath9k_hw_common(ah); |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 125 | u32 ofdm_base = 0, cck_base = 0; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 126 | |
| 127 | if (!DO_ANI(ah)) |
| 128 | return; |
| 129 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 130 | aniState = &ah->curchan->ani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 131 | aniState->listenTime = 0; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 132 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 133 | if (!use_new_ani(ah)) { |
| 134 | ofdm_base = AR_PHY_COUNTMAX - ah->config.ofdm_trig_high; |
| 135 | cck_base = AR_PHY_COUNTMAX - ah->config.cck_trig_high; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 136 | } |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 137 | |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 138 | ath_dbg(common, ATH_DBG_ANI, |
| 139 | "Writing ofdmbase=%u cckbase=%u\n", ofdm_base, cck_base); |
Sujith | 7d0d0df | 2010-04-16 11:53:57 +0530 | [diff] [blame] | 140 | |
| 141 | ENABLE_REGWRITE_BUFFER(ah); |
| 142 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 143 | REG_WRITE(ah, AR_PHY_ERR_1, ofdm_base); |
| 144 | REG_WRITE(ah, AR_PHY_ERR_2, cck_base); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 145 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING); |
| 146 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING); |
| 147 | |
| 148 | REGWRITE_BUFFER_FLUSH(ah); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 149 | |
| 150 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
| 151 | |
| 152 | aniState->ofdmPhyErrCount = 0; |
| 153 | aniState->cckPhyErrCount = 0; |
| 154 | } |
| 155 | |
| 156 | static void ath9k_hw_ani_ofdm_err_trigger_old(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 157 | { |
Luis R. Rodriguez | b002a4a | 2009-09-13 00:03:27 -0700 | [diff] [blame] | 158 | struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 159 | struct ar5416AniState *aniState; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 160 | int32_t rssi; |
| 161 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 162 | aniState = &ah->curchan->ani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 163 | |
| 164 | if (aniState->noiseImmunityLevel < HAL_NOISE_IMMUNE_MAX) { |
| 165 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, |
| 166 | aniState->noiseImmunityLevel + 1)) { |
| 167 | return; |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | if (aniState->spurImmunityLevel < HAL_SPUR_IMMUNE_MAX) { |
| 172 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL, |
| 173 | aniState->spurImmunityLevel + 1)) { |
| 174 | return; |
| 175 | } |
| 176 | } |
| 177 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 178 | if (ah->opmode == NL80211_IFTYPE_AP) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 179 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) { |
| 180 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 181 | aniState->firstepLevel + 1); |
| 182 | } |
| 183 | return; |
| 184 | } |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 185 | rssi = BEACON_RSSI(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 186 | if (rssi > aniState->rssiThrHigh) { |
| 187 | if (!aniState->ofdmWeakSigDetectOff) { |
| 188 | if (ath9k_hw_ani_control(ah, |
| 189 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 190 | false)) { |
| 191 | ath9k_hw_ani_control(ah, |
| 192 | ATH9K_ANI_SPUR_IMMUNITY_LEVEL, 0); |
| 193 | return; |
| 194 | } |
| 195 | } |
| 196 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) { |
| 197 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 198 | aniState->firstepLevel + 1); |
| 199 | return; |
| 200 | } |
| 201 | } else if (rssi > aniState->rssiThrLow) { |
| 202 | if (aniState->ofdmWeakSigDetectOff) |
| 203 | ath9k_hw_ani_control(ah, |
| 204 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 205 | true); |
| 206 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) |
| 207 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 208 | aniState->firstepLevel + 1); |
| 209 | return; |
| 210 | } else { |
Sujith | d37b7da | 2009-09-11 08:30:03 +0530 | [diff] [blame] | 211 | if ((conf->channel->band == IEEE80211_BAND_2GHZ) && |
| 212 | !conf_is_ht(conf)) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 213 | if (!aniState->ofdmWeakSigDetectOff) |
| 214 | ath9k_hw_ani_control(ah, |
| 215 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 216 | false); |
| 217 | if (aniState->firstepLevel > 0) |
| 218 | ath9k_hw_ani_control(ah, |
| 219 | ATH9K_ANI_FIRSTEP_LEVEL, 0); |
| 220 | return; |
| 221 | } |
| 222 | } |
| 223 | } |
| 224 | |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 225 | static void ath9k_hw_ani_cck_err_trigger_old(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 226 | { |
Luis R. Rodriguez | b002a4a | 2009-09-13 00:03:27 -0700 | [diff] [blame] | 227 | struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 228 | struct ar5416AniState *aniState; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 229 | int32_t rssi; |
| 230 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 231 | aniState = &ah->curchan->ani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 232 | if (aniState->noiseImmunityLevel < HAL_NOISE_IMMUNE_MAX) { |
| 233 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, |
| 234 | aniState->noiseImmunityLevel + 1)) { |
| 235 | return; |
| 236 | } |
| 237 | } |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 238 | if (ah->opmode == NL80211_IFTYPE_AP) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 239 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) { |
| 240 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 241 | aniState->firstepLevel + 1); |
| 242 | } |
| 243 | return; |
| 244 | } |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 245 | rssi = BEACON_RSSI(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 246 | if (rssi > aniState->rssiThrLow) { |
| 247 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) |
| 248 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 249 | aniState->firstepLevel + 1); |
| 250 | } else { |
Sujith | d37b7da | 2009-09-11 08:30:03 +0530 | [diff] [blame] | 251 | if ((conf->channel->band == IEEE80211_BAND_2GHZ) && |
| 252 | !conf_is_ht(conf)) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 253 | if (aniState->firstepLevel > 0) |
| 254 | ath9k_hw_ani_control(ah, |
| 255 | ATH9K_ANI_FIRSTEP_LEVEL, 0); |
| 256 | } |
| 257 | } |
| 258 | } |
| 259 | |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 260 | /* Adjust the OFDM Noise Immunity Level */ |
| 261 | static void ath9k_hw_set_ofdm_nil(struct ath_hw *ah, u8 immunityLevel) |
| 262 | { |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 263 | struct ar5416AniState *aniState = &ah->curchan->ani; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 264 | struct ath_common *common = ath9k_hw_common(ah); |
| 265 | const struct ani_ofdm_level_entry *entry_ofdm; |
| 266 | const struct ani_cck_level_entry *entry_cck; |
| 267 | |
| 268 | aniState->noiseFloor = BEACON_RSSI(ah); |
| 269 | |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 270 | ath_dbg(common, ATH_DBG_ANI, |
| 271 | "**** ofdmlevel %d=>%d, rssi=%d[lo=%d hi=%d]\n", |
| 272 | aniState->ofdmNoiseImmunityLevel, |
| 273 | immunityLevel, aniState->noiseFloor, |
| 274 | aniState->rssiThrLow, aniState->rssiThrHigh); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 275 | |
Rajkumar Manoharan | f36369a | 2011-09-19 20:15:48 +0530 | [diff] [blame] | 276 | if (aniState->update_ani) |
| 277 | aniState->ofdmNoiseImmunityLevel = immunityLevel; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 278 | |
| 279 | entry_ofdm = &ofdm_level_table[aniState->ofdmNoiseImmunityLevel]; |
| 280 | entry_cck = &cck_level_table[aniState->cckNoiseImmunityLevel]; |
| 281 | |
| 282 | if (aniState->spurImmunityLevel != entry_ofdm->spur_immunity_level) |
| 283 | ath9k_hw_ani_control(ah, |
| 284 | ATH9K_ANI_SPUR_IMMUNITY_LEVEL, |
| 285 | entry_ofdm->spur_immunity_level); |
| 286 | |
| 287 | if (aniState->firstepLevel != entry_ofdm->fir_step_level && |
| 288 | entry_ofdm->fir_step_level >= entry_cck->fir_step_level) |
| 289 | ath9k_hw_ani_control(ah, |
| 290 | ATH9K_ANI_FIRSTEP_LEVEL, |
| 291 | entry_ofdm->fir_step_level); |
| 292 | |
| 293 | if ((ah->opmode != NL80211_IFTYPE_STATION && |
| 294 | ah->opmode != NL80211_IFTYPE_ADHOC) || |
| 295 | aniState->noiseFloor <= aniState->rssiThrHigh) { |
| 296 | if (aniState->ofdmWeakSigDetectOff) |
| 297 | /* force on ofdm weak sig detect */ |
| 298 | ath9k_hw_ani_control(ah, |
| 299 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 300 | true); |
| 301 | else if (aniState->ofdmWeakSigDetectOff == |
| 302 | entry_ofdm->ofdm_weak_signal_on) |
| 303 | ath9k_hw_ani_control(ah, |
| 304 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 305 | entry_ofdm->ofdm_weak_signal_on); |
| 306 | } |
| 307 | } |
| 308 | |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 309 | static void ath9k_hw_ani_ofdm_err_trigger(struct ath_hw *ah) |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 310 | { |
| 311 | struct ar5416AniState *aniState; |
| 312 | |
| 313 | if (!DO_ANI(ah)) |
| 314 | return; |
| 315 | |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 316 | if (!use_new_ani(ah)) { |
| 317 | ath9k_hw_ani_ofdm_err_trigger_old(ah); |
| 318 | return; |
| 319 | } |
| 320 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 321 | aniState = &ah->curchan->ani; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 322 | |
| 323 | if (aniState->ofdmNoiseImmunityLevel < ATH9K_ANI_OFDM_MAX_LEVEL) |
| 324 | ath9k_hw_set_ofdm_nil(ah, aniState->ofdmNoiseImmunityLevel + 1); |
| 325 | } |
| 326 | |
| 327 | /* |
| 328 | * Set the ANI settings to match an CCK level. |
| 329 | */ |
| 330 | static void ath9k_hw_set_cck_nil(struct ath_hw *ah, u_int8_t immunityLevel) |
| 331 | { |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 332 | struct ar5416AniState *aniState = &ah->curchan->ani; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 333 | struct ath_common *common = ath9k_hw_common(ah); |
| 334 | const struct ani_ofdm_level_entry *entry_ofdm; |
| 335 | const struct ani_cck_level_entry *entry_cck; |
| 336 | |
| 337 | aniState->noiseFloor = BEACON_RSSI(ah); |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 338 | ath_dbg(common, ATH_DBG_ANI, |
| 339 | "**** ccklevel %d=>%d, rssi=%d[lo=%d hi=%d]\n", |
| 340 | aniState->cckNoiseImmunityLevel, immunityLevel, |
| 341 | aniState->noiseFloor, aniState->rssiThrLow, |
| 342 | aniState->rssiThrHigh); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 343 | |
| 344 | if ((ah->opmode == NL80211_IFTYPE_STATION || |
| 345 | ah->opmode == NL80211_IFTYPE_ADHOC) && |
| 346 | aniState->noiseFloor <= aniState->rssiThrLow && |
| 347 | immunityLevel > ATH9K_ANI_CCK_MAX_LEVEL_LOW_RSSI) |
| 348 | immunityLevel = ATH9K_ANI_CCK_MAX_LEVEL_LOW_RSSI; |
| 349 | |
Rajkumar Manoharan | f36369a | 2011-09-19 20:15:48 +0530 | [diff] [blame] | 350 | if (aniState->update_ani) |
| 351 | aniState->cckNoiseImmunityLevel = immunityLevel; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 352 | |
| 353 | entry_ofdm = &ofdm_level_table[aniState->ofdmNoiseImmunityLevel]; |
| 354 | entry_cck = &cck_level_table[aniState->cckNoiseImmunityLevel]; |
| 355 | |
| 356 | if (aniState->firstepLevel != entry_cck->fir_step_level && |
| 357 | entry_cck->fir_step_level >= entry_ofdm->fir_step_level) |
| 358 | ath9k_hw_ani_control(ah, |
| 359 | ATH9K_ANI_FIRSTEP_LEVEL, |
| 360 | entry_cck->fir_step_level); |
| 361 | |
| 362 | /* Skip MRC CCK for pre AR9003 families */ |
Vasanthakumar Thiagarajan | a95f160 | 2010-12-06 04:27:59 -0800 | [diff] [blame] | 363 | if (!AR_SREV_9300_20_OR_LATER(ah) || AR_SREV_9485(ah)) |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 364 | return; |
| 365 | |
| 366 | if (aniState->mrcCCKOff == entry_cck->mrc_cck_on) |
| 367 | ath9k_hw_ani_control(ah, |
| 368 | ATH9K_ANI_MRC_CCK, |
| 369 | entry_cck->mrc_cck_on); |
| 370 | } |
| 371 | |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 372 | static void ath9k_hw_ani_cck_err_trigger(struct ath_hw *ah) |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 373 | { |
| 374 | struct ar5416AniState *aniState; |
| 375 | |
| 376 | if (!DO_ANI(ah)) |
| 377 | return; |
| 378 | |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 379 | if (!use_new_ani(ah)) { |
| 380 | ath9k_hw_ani_cck_err_trigger_old(ah); |
| 381 | return; |
| 382 | } |
| 383 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 384 | aniState = &ah->curchan->ani; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 385 | |
| 386 | if (aniState->cckNoiseImmunityLevel < ATH9K_ANI_CCK_MAX_LEVEL) |
| 387 | ath9k_hw_set_cck_nil(ah, aniState->cckNoiseImmunityLevel + 1); |
| 388 | } |
| 389 | |
Luis R. Rodriguez | ac0bb76 | 2010-06-12 00:33:42 -0400 | [diff] [blame] | 390 | static void ath9k_hw_ani_lower_immunity_old(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 391 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 392 | struct ar5416AniState *aniState; |
| 393 | int32_t rssi; |
| 394 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 395 | aniState = &ah->curchan->ani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 396 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 397 | if (ah->opmode == NL80211_IFTYPE_AP) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 398 | if (aniState->firstepLevel > 0) { |
| 399 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 400 | aniState->firstepLevel - 1)) |
| 401 | return; |
| 402 | } |
| 403 | } else { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 404 | rssi = BEACON_RSSI(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 405 | if (rssi > aniState->rssiThrHigh) { |
| 406 | /* XXX: Handle me */ |
| 407 | } else if (rssi > aniState->rssiThrLow) { |
| 408 | if (aniState->ofdmWeakSigDetectOff) { |
| 409 | if (ath9k_hw_ani_control(ah, |
| 410 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 411 | true) == true) |
| 412 | return; |
| 413 | } |
| 414 | if (aniState->firstepLevel > 0) { |
| 415 | if (ath9k_hw_ani_control(ah, |
| 416 | ATH9K_ANI_FIRSTEP_LEVEL, |
| 417 | aniState->firstepLevel - 1) == true) |
| 418 | return; |
| 419 | } |
| 420 | } else { |
| 421 | if (aniState->firstepLevel > 0) { |
| 422 | if (ath9k_hw_ani_control(ah, |
| 423 | ATH9K_ANI_FIRSTEP_LEVEL, |
| 424 | aniState->firstepLevel - 1) == true) |
| 425 | return; |
| 426 | } |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | if (aniState->spurImmunityLevel > 0) { |
| 431 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL, |
| 432 | aniState->spurImmunityLevel - 1)) |
| 433 | return; |
| 434 | } |
| 435 | |
| 436 | if (aniState->noiseImmunityLevel > 0) { |
| 437 | ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, |
| 438 | aniState->noiseImmunityLevel - 1); |
| 439 | return; |
| 440 | } |
| 441 | } |
| 442 | |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 443 | /* |
| 444 | * only lower either OFDM or CCK errors per turn |
| 445 | * we lower the other one next time |
| 446 | */ |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 447 | static void ath9k_hw_ani_lower_immunity(struct ath_hw *ah) |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 448 | { |
| 449 | struct ar5416AniState *aniState; |
| 450 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 451 | aniState = &ah->curchan->ani; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 452 | |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 453 | if (!use_new_ani(ah)) { |
| 454 | ath9k_hw_ani_lower_immunity_old(ah); |
| 455 | return; |
| 456 | } |
| 457 | |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 458 | /* lower OFDM noise immunity */ |
| 459 | if (aniState->ofdmNoiseImmunityLevel > 0 && |
| 460 | (aniState->ofdmsTurn || aniState->cckNoiseImmunityLevel == 0)) { |
| 461 | ath9k_hw_set_ofdm_nil(ah, aniState->ofdmNoiseImmunityLevel - 1); |
| 462 | return; |
| 463 | } |
| 464 | |
| 465 | /* lower CCK noise immunity */ |
| 466 | if (aniState->cckNoiseImmunityLevel > 0) |
| 467 | ath9k_hw_set_cck_nil(ah, aniState->cckNoiseImmunityLevel - 1); |
| 468 | } |
| 469 | |
Luis R. Rodriguez | 40346b6 | 2010-06-12 00:33:44 -0400 | [diff] [blame] | 470 | static void ath9k_ani_reset_old(struct ath_hw *ah, bool is_scanning) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 471 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 472 | struct ar5416AniState *aniState; |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 473 | struct ath9k_channel *chan = ah->curchan; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 474 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 475 | |
| 476 | if (!DO_ANI(ah)) |
| 477 | return; |
| 478 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 479 | aniState = &ah->curchan->ani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 480 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 481 | if (ah->opmode != NL80211_IFTYPE_STATION |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 482 | && ah->opmode != NL80211_IFTYPE_ADHOC) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 483 | ath_dbg(common, ATH_DBG_ANI, |
| 484 | "Reset ANI state opmode %u\n", ah->opmode); |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 485 | ah->stats.ast_ani_reset++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 486 | |
Luis R. Rodriguez | c66284f | 2009-07-16 10:17:35 -0700 | [diff] [blame] | 487 | if (ah->opmode == NL80211_IFTYPE_AP) { |
| 488 | /* |
| 489 | * ath9k_hw_ani_control() will only process items set on |
| 490 | * ah->ani_function |
| 491 | */ |
| 492 | if (IS_CHAN_2GHZ(chan)) |
| 493 | ah->ani_function = (ATH9K_ANI_SPUR_IMMUNITY_LEVEL | |
| 494 | ATH9K_ANI_FIRSTEP_LEVEL); |
| 495 | else |
| 496 | ah->ani_function = 0; |
| 497 | } |
| 498 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 499 | ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, 0); |
| 500 | ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL, 0); |
| 501 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, 0); |
| 502 | ath9k_hw_ani_control(ah, ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 503 | !ATH9K_ANI_USE_OFDM_WEAK_SIG); |
| 504 | ath9k_hw_ani_control(ah, ATH9K_ANI_CCK_WEAK_SIGNAL_THR, |
| 505 | ATH9K_ANI_CCK_WEAK_SIG_THR); |
| 506 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 507 | ath9k_ani_restart(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 508 | return; |
| 509 | } |
| 510 | |
| 511 | if (aniState->noiseImmunityLevel != 0) |
| 512 | ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, |
| 513 | aniState->noiseImmunityLevel); |
| 514 | if (aniState->spurImmunityLevel != 0) |
| 515 | ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL, |
| 516 | aniState->spurImmunityLevel); |
| 517 | if (aniState->ofdmWeakSigDetectOff) |
| 518 | ath9k_hw_ani_control(ah, ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 519 | !aniState->ofdmWeakSigDetectOff); |
| 520 | if (aniState->cckWeakSigThreshold) |
| 521 | ath9k_hw_ani_control(ah, ATH9K_ANI_CCK_WEAK_SIGNAL_THR, |
| 522 | aniState->cckWeakSigThreshold); |
| 523 | if (aniState->firstepLevel != 0) |
| 524 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 525 | aniState->firstepLevel); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 526 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 527 | ath9k_ani_restart(ah); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 528 | |
| 529 | ENABLE_REGWRITE_BUFFER(ah); |
| 530 | |
| 531 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING); |
| 532 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING); |
| 533 | |
| 534 | REGWRITE_BUFFER_FLUSH(ah); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | /* |
| 538 | * Restore the ANI parameters in the HAL and reset the statistics. |
| 539 | * This routine should be called for every hardware reset and for |
| 540 | * every channel change. |
| 541 | */ |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 542 | void ath9k_ani_reset(struct ath_hw *ah, bool is_scanning) |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 543 | { |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 544 | struct ar5416AniState *aniState = &ah->curchan->ani; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 545 | struct ath9k_channel *chan = ah->curchan; |
| 546 | struct ath_common *common = ath9k_hw_common(ah); |
| 547 | |
| 548 | if (!DO_ANI(ah)) |
| 549 | return; |
| 550 | |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 551 | if (!use_new_ani(ah)) |
| 552 | return ath9k_ani_reset_old(ah, is_scanning); |
| 553 | |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 554 | BUG_ON(aniState == NULL); |
| 555 | ah->stats.ast_ani_reset++; |
| 556 | |
| 557 | /* only allow a subset of functions in AP mode */ |
| 558 | if (ah->opmode == NL80211_IFTYPE_AP) { |
| 559 | if (IS_CHAN_2GHZ(chan)) { |
| 560 | ah->ani_function = (ATH9K_ANI_SPUR_IMMUNITY_LEVEL | |
| 561 | ATH9K_ANI_FIRSTEP_LEVEL); |
| 562 | if (AR_SREV_9300_20_OR_LATER(ah)) |
| 563 | ah->ani_function |= ATH9K_ANI_MRC_CCK; |
| 564 | } else |
| 565 | ah->ani_function = 0; |
| 566 | } |
| 567 | |
| 568 | /* always allow mode (on/off) to be controlled */ |
| 569 | ah->ani_function |= ATH9K_ANI_MODE; |
| 570 | |
| 571 | if (is_scanning || |
| 572 | (ah->opmode != NL80211_IFTYPE_STATION && |
| 573 | ah->opmode != NL80211_IFTYPE_ADHOC)) { |
| 574 | /* |
| 575 | * If we're scanning or in AP mode, the defaults (ini) |
| 576 | * should be in place. For an AP we assume the historical |
| 577 | * levels for this channel are probably outdated so start |
| 578 | * from defaults instead. |
| 579 | */ |
| 580 | if (aniState->ofdmNoiseImmunityLevel != |
| 581 | ATH9K_ANI_OFDM_DEF_LEVEL || |
| 582 | aniState->cckNoiseImmunityLevel != |
| 583 | ATH9K_ANI_CCK_DEF_LEVEL) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 584 | ath_dbg(common, ATH_DBG_ANI, |
| 585 | "Restore defaults: opmode %u chan %d Mhz/0x%x is_scanning=%d ofdm:%d cck:%d\n", |
| 586 | ah->opmode, |
| 587 | chan->channel, |
| 588 | chan->channelFlags, |
| 589 | is_scanning, |
| 590 | aniState->ofdmNoiseImmunityLevel, |
| 591 | aniState->cckNoiseImmunityLevel); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 592 | |
Rajkumar Manoharan | f36369a | 2011-09-19 20:15:48 +0530 | [diff] [blame] | 593 | aniState->update_ani = false; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 594 | ath9k_hw_set_ofdm_nil(ah, ATH9K_ANI_OFDM_DEF_LEVEL); |
| 595 | ath9k_hw_set_cck_nil(ah, ATH9K_ANI_CCK_DEF_LEVEL); |
| 596 | } |
| 597 | } else { |
| 598 | /* |
| 599 | * restore historical levels for this channel |
| 600 | */ |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 601 | ath_dbg(common, ATH_DBG_ANI, |
| 602 | "Restore history: opmode %u chan %d Mhz/0x%x is_scanning=%d ofdm:%d cck:%d\n", |
| 603 | ah->opmode, |
| 604 | chan->channel, |
| 605 | chan->channelFlags, |
| 606 | is_scanning, |
| 607 | aniState->ofdmNoiseImmunityLevel, |
| 608 | aniState->cckNoiseImmunityLevel); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 609 | |
Rajkumar Manoharan | f36369a | 2011-09-19 20:15:48 +0530 | [diff] [blame] | 610 | aniState->update_ani = true; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 611 | ath9k_hw_set_ofdm_nil(ah, |
| 612 | aniState->ofdmNoiseImmunityLevel); |
| 613 | ath9k_hw_set_cck_nil(ah, |
| 614 | aniState->cckNoiseImmunityLevel); |
| 615 | } |
| 616 | |
| 617 | /* |
| 618 | * enable phy counters if hw supports or if not, enable phy |
| 619 | * interrupts (so we can count each one) |
| 620 | */ |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 621 | ath9k_ani_restart(ah); |
Sujith | 7d0d0df | 2010-04-16 11:53:57 +0530 | [diff] [blame] | 622 | |
| 623 | ENABLE_REGWRITE_BUFFER(ah); |
| 624 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame] | 625 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING); |
| 626 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING); |
Sujith | 7d0d0df | 2010-04-16 11:53:57 +0530 | [diff] [blame] | 627 | |
| 628 | REGWRITE_BUFFER_FLUSH(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 629 | } |
| 630 | |
Felix Fietkau | e49f913 | 2010-10-12 16:08:01 +0200 | [diff] [blame] | 631 | static bool ath9k_hw_ani_read_counters(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 632 | { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 633 | struct ath_common *common = ath9k_hw_common(ah); |
Felix Fietkau | bfc472b | 2010-10-04 20:09:48 +0200 | [diff] [blame] | 634 | struct ar5416AniState *aniState = &ah->curchan->ani; |
| 635 | u32 ofdm_base = 0; |
| 636 | u32 cck_base = 0; |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame] | 637 | u32 ofdmPhyErrCnt, cckPhyErrCnt; |
Felix Fietkau | bfc472b | 2010-10-04 20:09:48 +0200 | [diff] [blame] | 638 | u32 phyCnt1, phyCnt2; |
| 639 | int32_t listenTime; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 640 | |
Felix Fietkau | b5bfc56 | 2010-10-08 22:13:53 +0200 | [diff] [blame] | 641 | ath_hw_cycle_counters_update(common); |
| 642 | listenTime = ath_hw_get_listen_time(common); |
| 643 | |
Felix Fietkau | e49f913 | 2010-10-12 16:08:01 +0200 | [diff] [blame] | 644 | if (listenTime <= 0) { |
Mohammed Shafi Shajakhan | 107021c | 2011-08-26 11:19:57 +0530 | [diff] [blame] | 645 | ah->stats.ast_ani_lneg_or_lzero++; |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 646 | ath9k_ani_restart(ah); |
Felix Fietkau | e49f913 | 2010-10-12 16:08:01 +0200 | [diff] [blame] | 647 | return false; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 648 | } |
| 649 | |
Felix Fietkau | bfc472b | 2010-10-04 20:09:48 +0200 | [diff] [blame] | 650 | if (!use_new_ani(ah)) { |
| 651 | ofdm_base = AR_PHY_COUNTMAX - ah->config.ofdm_trig_high; |
| 652 | cck_base = AR_PHY_COUNTMAX - ah->config.cck_trig_high; |
| 653 | } |
| 654 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 655 | aniState->listenTime += listenTime; |
| 656 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame] | 657 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 658 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame] | 659 | phyCnt1 = REG_READ(ah, AR_PHY_ERR_1); |
| 660 | phyCnt2 = REG_READ(ah, AR_PHY_ERR_2); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 661 | |
Felix Fietkau | 431c748 | 2010-10-12 16:08:02 +0200 | [diff] [blame] | 662 | if (!use_new_ani(ah) && (phyCnt1 < ofdm_base || phyCnt2 < cck_base)) { |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 663 | if (phyCnt1 < ofdm_base) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 664 | ath_dbg(common, ATH_DBG_ANI, |
| 665 | "phyCnt1 0x%x, resetting counter value to 0x%x\n", |
| 666 | phyCnt1, ofdm_base); |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 667 | REG_WRITE(ah, AR_PHY_ERR_1, ofdm_base); |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame] | 668 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, |
| 669 | AR_PHY_ERR_OFDM_TIMING); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 670 | } |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 671 | if (phyCnt2 < cck_base) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 672 | ath_dbg(common, ATH_DBG_ANI, |
| 673 | "phyCnt2 0x%x, resetting counter value to 0x%x\n", |
| 674 | phyCnt2, cck_base); |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 675 | REG_WRITE(ah, AR_PHY_ERR_2, cck_base); |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame] | 676 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, |
| 677 | AR_PHY_ERR_CCK_TIMING); |
| 678 | } |
Felix Fietkau | e49f913 | 2010-10-12 16:08:01 +0200 | [diff] [blame] | 679 | return false; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 680 | } |
| 681 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 682 | ofdmPhyErrCnt = phyCnt1 - ofdm_base; |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame] | 683 | ah->stats.ast_ani_ofdmerrs += |
| 684 | ofdmPhyErrCnt - aniState->ofdmPhyErrCount; |
| 685 | aniState->ofdmPhyErrCount = ofdmPhyErrCnt; |
| 686 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 687 | cckPhyErrCnt = phyCnt2 - cck_base; |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame] | 688 | ah->stats.ast_ani_cckerrs += |
| 689 | cckPhyErrCnt - aniState->cckPhyErrCount; |
| 690 | aniState->cckPhyErrCount = cckPhyErrCnt; |
Felix Fietkau | e49f913 | 2010-10-12 16:08:01 +0200 | [diff] [blame] | 691 | return true; |
Felix Fietkau | bfc472b | 2010-10-04 20:09:48 +0200 | [diff] [blame] | 692 | } |
| 693 | |
Felix Fietkau | 9579217 | 2010-10-04 20:09:50 +0200 | [diff] [blame] | 694 | void ath9k_hw_ani_monitor(struct ath_hw *ah, struct ath9k_channel *chan) |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 695 | { |
| 696 | struct ar5416AniState *aniState; |
| 697 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 698 | u32 ofdmPhyErrRate, cckPhyErrRate; |
| 699 | |
| 700 | if (!DO_ANI(ah)) |
| 701 | return; |
| 702 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 703 | aniState = &ah->curchan->ani; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 704 | if (WARN_ON(!aniState)) |
| 705 | return; |
| 706 | |
Felix Fietkau | e49f913 | 2010-10-12 16:08:01 +0200 | [diff] [blame] | 707 | if (!ath9k_hw_ani_read_counters(ah)) |
| 708 | return; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 709 | |
| 710 | ofdmPhyErrRate = aniState->ofdmPhyErrCount * 1000 / |
| 711 | aniState->listenTime; |
| 712 | cckPhyErrRate = aniState->cckPhyErrCount * 1000 / |
| 713 | aniState->listenTime; |
| 714 | |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 715 | ath_dbg(common, ATH_DBG_ANI, |
| 716 | "listenTime=%d OFDM:%d errs=%d/s CCK:%d errs=%d/s ofdm_turn=%d\n", |
| 717 | aniState->listenTime, |
| 718 | aniState->ofdmNoiseImmunityLevel, |
| 719 | ofdmPhyErrRate, aniState->cckNoiseImmunityLevel, |
| 720 | cckPhyErrRate, aniState->ofdmsTurn); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 721 | |
| 722 | if (aniState->listenTime > 5 * ah->aniperiod) { |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 723 | if (ofdmPhyErrRate <= ah->config.ofdm_trig_low && |
| 724 | cckPhyErrRate <= ah->config.cck_trig_low) { |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 725 | ath9k_hw_ani_lower_immunity(ah); |
| 726 | aniState->ofdmsTurn = !aniState->ofdmsTurn; |
| 727 | } |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 728 | ath9k_ani_restart(ah); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 729 | } else if (aniState->listenTime > ah->aniperiod) { |
| 730 | /* check to see if need to raise immunity */ |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 731 | if (ofdmPhyErrRate > ah->config.ofdm_trig_high && |
| 732 | (cckPhyErrRate <= ah->config.cck_trig_high || |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 733 | aniState->ofdmsTurn)) { |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 734 | ath9k_hw_ani_ofdm_err_trigger(ah); |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 735 | ath9k_ani_restart(ah); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 736 | aniState->ofdmsTurn = false; |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 737 | } else if (cckPhyErrRate > ah->config.cck_trig_high) { |
Felix Fietkau | 8eb4980 | 2010-10-04 20:09:49 +0200 | [diff] [blame] | 738 | ath9k_hw_ani_cck_err_trigger(ah); |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 739 | ath9k_ani_restart(ah); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 740 | aniState->ofdmsTurn = true; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 741 | } |
| 742 | } |
| 743 | } |
Felix Fietkau | 9579217 | 2010-10-04 20:09:50 +0200 | [diff] [blame] | 744 | EXPORT_SYMBOL(ath9k_hw_ani_monitor); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 745 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 746 | void ath9k_enable_mib_counters(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 747 | { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 748 | struct ath_common *common = ath9k_hw_common(ah); |
| 749 | |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 750 | ath_dbg(common, ATH_DBG_ANI, "Enable MIB counters\n"); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 751 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 752 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 753 | |
Sujith | 7d0d0df | 2010-04-16 11:53:57 +0530 | [diff] [blame] | 754 | ENABLE_REGWRITE_BUFFER(ah); |
| 755 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 756 | REG_WRITE(ah, AR_FILT_OFDM, 0); |
| 757 | REG_WRITE(ah, AR_FILT_CCK, 0); |
| 758 | REG_WRITE(ah, AR_MIBC, |
| 759 | ~(AR_MIBC_COW | AR_MIBC_FMC | AR_MIBC_CMC | AR_MIBC_MCS) |
| 760 | & 0x0f); |
| 761 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING); |
| 762 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING); |
Sujith | 7d0d0df | 2010-04-16 11:53:57 +0530 | [diff] [blame] | 763 | |
| 764 | REGWRITE_BUFFER_FLUSH(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 765 | } |
| 766 | |
Sujith | 0fd06c9 | 2009-02-12 10:06:51 +0530 | [diff] [blame] | 767 | /* Freeze the MIB counters, get the stats and then clear them */ |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 768 | void ath9k_hw_disable_mib_counters(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 769 | { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 770 | struct ath_common *common = ath9k_hw_common(ah); |
| 771 | |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 772 | ath_dbg(common, ATH_DBG_ANI, "Disable MIB counters\n"); |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 773 | |
Sujith | 0fd06c9 | 2009-02-12 10:06:51 +0530 | [diff] [blame] | 774 | REG_WRITE(ah, AR_MIBC, AR_MIBC_FMC); |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 775 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
Sujith | 0fd06c9 | 2009-02-12 10:06:51 +0530 | [diff] [blame] | 776 | REG_WRITE(ah, AR_MIBC, AR_MIBC_CMC); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 777 | REG_WRITE(ah, AR_FILT_OFDM, 0); |
| 778 | REG_WRITE(ah, AR_FILT_CCK, 0); |
| 779 | } |
Sujith | 21d5130 | 2010-06-01 15:14:18 +0530 | [diff] [blame] | 780 | EXPORT_SYMBOL(ath9k_hw_disable_mib_counters); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 781 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 782 | /* |
| 783 | * Process a MIB interrupt. We may potentially be invoked because |
| 784 | * any of the MIB counters overflow/trigger so don't assume we're |
| 785 | * here because a PHY error counter triggered. |
| 786 | */ |
Felix Fietkau | bfc472b | 2010-10-04 20:09:48 +0200 | [diff] [blame] | 787 | void ath9k_hw_proc_mib_event(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 788 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 789 | u32 phyCnt1, phyCnt2; |
| 790 | |
| 791 | /* Reset these counters regardless */ |
| 792 | REG_WRITE(ah, AR_FILT_OFDM, 0); |
| 793 | REG_WRITE(ah, AR_FILT_CCK, 0); |
| 794 | if (!(REG_READ(ah, AR_SLP_MIB_CTRL) & AR_SLP_MIB_PENDING)) |
| 795 | REG_WRITE(ah, AR_SLP_MIB_CTRL, AR_SLP_MIB_CLEAR); |
| 796 | |
| 797 | /* Clear the mib counters and save them in the stats */ |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 798 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 799 | |
Luis R. Rodriguez | 6e97f0f | 2010-06-12 00:33:41 -0400 | [diff] [blame] | 800 | if (!DO_ANI(ah)) { |
| 801 | /* |
| 802 | * We must always clear the interrupt cause by |
| 803 | * resetting the phy error regs. |
| 804 | */ |
| 805 | REG_WRITE(ah, AR_PHY_ERR_1, 0); |
| 806 | REG_WRITE(ah, AR_PHY_ERR_2, 0); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 807 | return; |
Luis R. Rodriguez | 6e97f0f | 2010-06-12 00:33:41 -0400 | [diff] [blame] | 808 | } |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 809 | |
| 810 | /* NB: these are not reset-on-read */ |
| 811 | phyCnt1 = REG_READ(ah, AR_PHY_ERR_1); |
| 812 | phyCnt2 = REG_READ(ah, AR_PHY_ERR_2); |
| 813 | if (((phyCnt1 & AR_MIBCNT_INTRMASK) == AR_MIBCNT_INTRMASK) || |
| 814 | ((phyCnt2 & AR_MIBCNT_INTRMASK) == AR_MIBCNT_INTRMASK)) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 815 | |
Felix Fietkau | bfc472b | 2010-10-04 20:09:48 +0200 | [diff] [blame] | 816 | if (!use_new_ani(ah)) |
| 817 | ath9k_hw_ani_read_counters(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 818 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 819 | /* NB: always restart to insure the h/w counters are reset */ |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 820 | ath9k_ani_restart(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 821 | } |
| 822 | } |
Felix Fietkau | bfc472b | 2010-10-04 20:09:48 +0200 | [diff] [blame] | 823 | EXPORT_SYMBOL(ath9k_hw_proc_mib_event); |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 824 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 825 | void ath9k_hw_ani_setup(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 826 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 827 | int i; |
| 828 | |
Joe Perches | 07b2fa5 | 2010-11-20 18:38:53 -0800 | [diff] [blame] | 829 | static const int totalSizeDesired[] = { -55, -55, -55, -55, -62 }; |
| 830 | static const int coarseHigh[] = { -14, -14, -14, -14, -12 }; |
| 831 | static const int coarseLow[] = { -64, -64, -64, -64, -70 }; |
| 832 | static const int firpwr[] = { -78, -78, -78, -78, -80 }; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 833 | |
| 834 | for (i = 0; i < 5; i++) { |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 835 | ah->totalSizeDesired[i] = totalSizeDesired[i]; |
| 836 | ah->coarse_high[i] = coarseHigh[i]; |
| 837 | ah->coarse_low[i] = coarseLow[i]; |
| 838 | ah->firpwr[i] = firpwr[i]; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 839 | } |
| 840 | } |
| 841 | |
Luis R. Rodriguez | f637cfd | 2009-08-03 12:24:46 -0700 | [diff] [blame] | 842 | void ath9k_hw_ani_init(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 843 | { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 844 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 845 | int i; |
| 846 | |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 847 | ath_dbg(common, ATH_DBG_ANI, "Initialize ANI\n"); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 848 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 849 | if (use_new_ani(ah)) { |
| 850 | ah->config.ofdm_trig_high = ATH9K_ANI_OFDM_TRIG_HIGH_NEW; |
| 851 | ah->config.ofdm_trig_low = ATH9K_ANI_OFDM_TRIG_LOW_NEW; |
| 852 | |
| 853 | ah->config.cck_trig_high = ATH9K_ANI_CCK_TRIG_HIGH_NEW; |
| 854 | ah->config.cck_trig_low = ATH9K_ANI_CCK_TRIG_LOW_NEW; |
| 855 | } else { |
| 856 | ah->config.ofdm_trig_high = ATH9K_ANI_OFDM_TRIG_HIGH_OLD; |
| 857 | ah->config.ofdm_trig_low = ATH9K_ANI_OFDM_TRIG_LOW_OLD; |
| 858 | |
| 859 | ah->config.cck_trig_high = ATH9K_ANI_CCK_TRIG_HIGH_OLD; |
| 860 | ah->config.cck_trig_low = ATH9K_ANI_CCK_TRIG_LOW_OLD; |
| 861 | } |
| 862 | |
| 863 | for (i = 0; i < ARRAY_SIZE(ah->channels); i++) { |
| 864 | struct ath9k_channel *chan = &ah->channels[i]; |
| 865 | struct ar5416AniState *ani = &chan->ani; |
| 866 | |
Felix Fietkau | 71ea420 | 2010-10-04 20:09:46 +0200 | [diff] [blame] | 867 | if (use_new_ani(ah)) { |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 868 | ani->spurImmunityLevel = |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 869 | ATH9K_ANI_SPUR_IMMUNE_LVL_NEW; |
| 870 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 871 | ani->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_NEW; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 872 | |
| 873 | if (AR_SREV_9300_20_OR_LATER(ah)) |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 874 | ani->mrcCCKOff = |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 875 | !ATH9K_ANI_ENABLE_MRC_CCK; |
| 876 | else |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 877 | ani->mrcCCKOff = true; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 878 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 879 | ani->ofdmsTurn = true; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 880 | } else { |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 881 | ani->spurImmunityLevel = |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 882 | ATH9K_ANI_SPUR_IMMUNE_LVL_OLD; |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 883 | ani->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_OLD; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 884 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 885 | ani->cckWeakSigThreshold = |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 886 | ATH9K_ANI_CCK_WEAK_SIG_THR; |
| 887 | } |
| 888 | |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 889 | ani->rssiThrHigh = ATH9K_ANI_RSSI_THR_HIGH; |
| 890 | ani->rssiThrLow = ATH9K_ANI_RSSI_THR_LOW; |
| 891 | ani->ofdmWeakSigDetectOff = |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 892 | !ATH9K_ANI_USE_OFDM_WEAK_SIG; |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 893 | ani->cckNoiseImmunityLevel = ATH9K_ANI_CCK_DEF_LEVEL; |
Rajkumar Manoharan | f36369a | 2011-09-19 20:15:48 +0530 | [diff] [blame] | 894 | ani->ofdmNoiseImmunityLevel = ATH9K_ANI_OFDM_DEF_LEVEL; |
| 895 | ani->update_ani = false; |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | /* |
| 899 | * since we expect some ongoing maintenance on the tables, let's sanity |
| 900 | * check here default level should not modify INI setting. |
| 901 | */ |
Felix Fietkau | 71ea420 | 2010-10-04 20:09:46 +0200 | [diff] [blame] | 902 | if (use_new_ani(ah)) { |
Luis R. Rodriguez | e36b27a | 2010-06-12 00:33:45 -0400 | [diff] [blame] | 903 | ah->aniperiod = ATH9K_ANI_PERIOD_NEW; |
| 904 | ah->config.ani_poll_interval = ATH9K_ANI_POLLINTERVAL_NEW; |
| 905 | } else { |
| 906 | ah->aniperiod = ATH9K_ANI_PERIOD_OLD; |
| 907 | ah->config.ani_poll_interval = ATH9K_ANI_POLLINTERVAL_OLD; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 908 | } |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 909 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 910 | if (ah->config.enable_ani) |
| 911 | ah->proc_phyerr |= HAL_PROCESS_ANI; |
Felix Fietkau | 093115b | 2010-10-04 20:09:47 +0200 | [diff] [blame] | 912 | |
| 913 | ath9k_ani_restart(ah); |
| 914 | ath9k_enable_mib_counters(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 915 | } |