Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 1 | /* |
Sujith | cee075a | 2009-03-13 09:07:23 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2009 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 | |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 17 | #include "ath9k.h" |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 18 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 19 | static int ath9k_hw_get_ani_channel_idx(struct ath_hw *ah, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 20 | struct ath9k_channel *chan) |
| 21 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 22 | int i; |
| 23 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 24 | for (i = 0; i < ARRAY_SIZE(ah->ani); i++) { |
| 25 | if (ah->ani[i].c && |
| 26 | ah->ani[i].c->channel == chan->channel) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 27 | return i; |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 28 | if (ah->ani[i].c == NULL) { |
| 29 | ah->ani[i].c = chan; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 30 | return i; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 35 | "No more channel states left. Using channel 0\n"); |
| 36 | |
| 37 | return 0; |
| 38 | } |
| 39 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 40 | static bool ath9k_hw_ani_control(struct ath_hw *ah, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 41 | enum ath9k_ani_cmd cmd, int param) |
| 42 | { |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 43 | struct ar5416AniState *aniState = ah->curani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 44 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 45 | switch (cmd & ah->ani_function) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 46 | case ATH9K_ANI_NOISE_IMMUNITY_LEVEL:{ |
| 47 | u32 level = param; |
| 48 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 49 | if (level >= ARRAY_SIZE(ah->totalSizeDesired)) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 50 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 51 | "level out of range (%u > %u)\n", |
| 52 | level, |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 53 | (unsigned)ARRAY_SIZE(ah->totalSizeDesired)); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 54 | return false; |
| 55 | } |
| 56 | |
| 57 | REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ, |
| 58 | AR_PHY_DESIRED_SZ_TOT_DES, |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 59 | ah->totalSizeDesired[level]); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 60 | REG_RMW_FIELD(ah, AR_PHY_AGC_CTL1, |
| 61 | AR_PHY_AGC_CTL1_COARSE_LOW, |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 62 | ah->coarse_low[level]); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 63 | REG_RMW_FIELD(ah, AR_PHY_AGC_CTL1, |
| 64 | AR_PHY_AGC_CTL1_COARSE_HIGH, |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 65 | ah->coarse_high[level]); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 66 | REG_RMW_FIELD(ah, AR_PHY_FIND_SIG, |
| 67 | AR_PHY_FIND_SIG_FIRPWR, |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 68 | ah->firpwr[level]); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 69 | |
| 70 | if (level > aniState->noiseImmunityLevel) |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 71 | ah->stats.ast_ani_niup++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 72 | else if (level < aniState->noiseImmunityLevel) |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 73 | ah->stats.ast_ani_nidown++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 74 | aniState->noiseImmunityLevel = level; |
| 75 | break; |
| 76 | } |
| 77 | case ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION:{ |
| 78 | const int m1ThreshLow[] = { 127, 50 }; |
| 79 | const int m2ThreshLow[] = { 127, 40 }; |
| 80 | const int m1Thresh[] = { 127, 0x4d }; |
| 81 | const int m2Thresh[] = { 127, 0x40 }; |
| 82 | const int m2CountThr[] = { 31, 16 }; |
| 83 | const int m2CountThrLow[] = { 63, 48 }; |
| 84 | u32 on = param ? 1 : 0; |
| 85 | |
| 86 | REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW, |
| 87 | AR_PHY_SFCORR_LOW_M1_THRESH_LOW, |
| 88 | m1ThreshLow[on]); |
| 89 | REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW, |
| 90 | AR_PHY_SFCORR_LOW_M2_THRESH_LOW, |
| 91 | m2ThreshLow[on]); |
| 92 | REG_RMW_FIELD(ah, AR_PHY_SFCORR, |
| 93 | AR_PHY_SFCORR_M1_THRESH, |
| 94 | m1Thresh[on]); |
| 95 | REG_RMW_FIELD(ah, AR_PHY_SFCORR, |
| 96 | AR_PHY_SFCORR_M2_THRESH, |
| 97 | m2Thresh[on]); |
| 98 | REG_RMW_FIELD(ah, AR_PHY_SFCORR, |
| 99 | AR_PHY_SFCORR_M2COUNT_THR, |
| 100 | m2CountThr[on]); |
| 101 | REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW, |
| 102 | AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW, |
| 103 | m2CountThrLow[on]); |
| 104 | |
| 105 | REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT, |
| 106 | AR_PHY_SFCORR_EXT_M1_THRESH_LOW, |
| 107 | m1ThreshLow[on]); |
| 108 | REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT, |
| 109 | AR_PHY_SFCORR_EXT_M2_THRESH_LOW, |
| 110 | m2ThreshLow[on]); |
| 111 | REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT, |
| 112 | AR_PHY_SFCORR_EXT_M1_THRESH, |
| 113 | m1Thresh[on]); |
| 114 | REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT, |
| 115 | AR_PHY_SFCORR_EXT_M2_THRESH, |
| 116 | m2Thresh[on]); |
| 117 | |
| 118 | if (on) |
| 119 | REG_SET_BIT(ah, AR_PHY_SFCORR_LOW, |
| 120 | AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW); |
| 121 | else |
| 122 | REG_CLR_BIT(ah, AR_PHY_SFCORR_LOW, |
| 123 | AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW); |
| 124 | |
| 125 | if (!on != aniState->ofdmWeakSigDetectOff) { |
| 126 | if (on) |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 127 | ah->stats.ast_ani_ofdmon++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 128 | else |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 129 | ah->stats.ast_ani_ofdmoff++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 130 | aniState->ofdmWeakSigDetectOff = !on; |
| 131 | } |
| 132 | break; |
| 133 | } |
| 134 | case ATH9K_ANI_CCK_WEAK_SIGNAL_THR:{ |
| 135 | const int weakSigThrCck[] = { 8, 6 }; |
| 136 | u32 high = param ? 1 : 0; |
| 137 | |
| 138 | REG_RMW_FIELD(ah, AR_PHY_CCK_DETECT, |
| 139 | AR_PHY_CCK_DETECT_WEAK_SIG_THR_CCK, |
| 140 | weakSigThrCck[high]); |
| 141 | if (high != aniState->cckWeakSigThreshold) { |
| 142 | if (high) |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 143 | ah->stats.ast_ani_cckhigh++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 144 | else |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 145 | ah->stats.ast_ani_ccklow++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 146 | aniState->cckWeakSigThreshold = high; |
| 147 | } |
| 148 | break; |
| 149 | } |
| 150 | case ATH9K_ANI_FIRSTEP_LEVEL:{ |
| 151 | const int firstep[] = { 0, 4, 8 }; |
| 152 | u32 level = param; |
| 153 | |
| 154 | if (level >= ARRAY_SIZE(firstep)) { |
| 155 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 156 | "level out of range (%u > %u)\n", |
| 157 | level, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 158 | (unsigned) ARRAY_SIZE(firstep)); |
| 159 | return false; |
| 160 | } |
| 161 | REG_RMW_FIELD(ah, AR_PHY_FIND_SIG, |
| 162 | AR_PHY_FIND_SIG_FIRSTEP, |
| 163 | firstep[level]); |
| 164 | if (level > aniState->firstepLevel) |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 165 | ah->stats.ast_ani_stepup++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 166 | else if (level < aniState->firstepLevel) |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 167 | ah->stats.ast_ani_stepdown++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 168 | aniState->firstepLevel = level; |
| 169 | break; |
| 170 | } |
| 171 | case ATH9K_ANI_SPUR_IMMUNITY_LEVEL:{ |
| 172 | const int cycpwrThr1[] = |
| 173 | { 2, 4, 6, 8, 10, 12, 14, 16 }; |
| 174 | u32 level = param; |
| 175 | |
| 176 | if (level >= ARRAY_SIZE(cycpwrThr1)) { |
| 177 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 178 | "level out of range (%u > %u)\n", |
| 179 | level, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 180 | (unsigned) |
| 181 | ARRAY_SIZE(cycpwrThr1)); |
| 182 | return false; |
| 183 | } |
| 184 | REG_RMW_FIELD(ah, AR_PHY_TIMING5, |
| 185 | AR_PHY_TIMING5_CYCPWR_THR1, |
| 186 | cycpwrThr1[level]); |
| 187 | if (level > aniState->spurImmunityLevel) |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 188 | ah->stats.ast_ani_spurup++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 189 | else if (level < aniState->spurImmunityLevel) |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 190 | ah->stats.ast_ani_spurdown++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 191 | aniState->spurImmunityLevel = level; |
| 192 | break; |
| 193 | } |
| 194 | case ATH9K_ANI_PRESENT: |
| 195 | break; |
| 196 | default: |
| 197 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 198 | "invalid cmd %u\n", cmd); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 199 | return false; |
| 200 | } |
| 201 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 202 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "ANI parameters:\n"); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 203 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 204 | "noiseImmunityLevel=%d, spurImmunityLevel=%d, " |
| 205 | "ofdmWeakSigDetectOff=%d\n", |
| 206 | aniState->noiseImmunityLevel, aniState->spurImmunityLevel, |
| 207 | !aniState->ofdmWeakSigDetectOff); |
| 208 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 209 | "cckWeakSigThreshold=%d, " |
| 210 | "firstepLevel=%d, listenTime=%d\n", |
| 211 | aniState->cckWeakSigThreshold, aniState->firstepLevel, |
| 212 | aniState->listenTime); |
| 213 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 214 | "cycleCount=%d, ofdmPhyErrCount=%d, cckPhyErrCount=%d\n\n", |
| 215 | aniState->cycleCount, aniState->ofdmPhyErrCount, |
| 216 | aniState->cckPhyErrCount); |
| 217 | |
| 218 | return true; |
| 219 | } |
| 220 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 221 | static void ath9k_hw_update_mibstats(struct ath_hw *ah, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 222 | struct ath9k_mib_stats *stats) |
| 223 | { |
| 224 | stats->ackrcv_bad += REG_READ(ah, AR_ACK_FAIL); |
| 225 | stats->rts_bad += REG_READ(ah, AR_RTS_FAIL); |
| 226 | stats->fcs_bad += REG_READ(ah, AR_FCS_FAIL); |
| 227 | stats->rts_good += REG_READ(ah, AR_RTS_OK); |
| 228 | stats->beacons += REG_READ(ah, AR_BEACON_CNT); |
| 229 | } |
| 230 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 231 | static void ath9k_ani_restart(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 232 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 233 | struct ar5416AniState *aniState; |
| 234 | |
| 235 | if (!DO_ANI(ah)) |
| 236 | return; |
| 237 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 238 | aniState = ah->curani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 239 | aniState->listenTime = 0; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 240 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 241 | if (aniState->ofdmTrigHigh > AR_PHY_COUNTMAX) { |
| 242 | aniState->ofdmPhyErrBase = 0; |
| 243 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 244 | "OFDM Trigger is too high for hw counters\n"); |
| 245 | } else { |
| 246 | aniState->ofdmPhyErrBase = |
| 247 | AR_PHY_COUNTMAX - aniState->ofdmTrigHigh; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 248 | } |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 249 | if (aniState->cckTrigHigh > AR_PHY_COUNTMAX) { |
| 250 | aniState->cckPhyErrBase = 0; |
| 251 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 252 | "CCK Trigger is too high for hw counters\n"); |
| 253 | } else { |
| 254 | aniState->cckPhyErrBase = |
| 255 | AR_PHY_COUNTMAX - aniState->cckTrigHigh; |
| 256 | } |
| 257 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 258 | "Writing ofdmbase=%u cckbase=%u\n", |
| 259 | aniState->ofdmPhyErrBase, |
| 260 | aniState->cckPhyErrBase); |
| 261 | REG_WRITE(ah, AR_PHY_ERR_1, aniState->ofdmPhyErrBase); |
| 262 | REG_WRITE(ah, AR_PHY_ERR_2, aniState->cckPhyErrBase); |
| 263 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING); |
| 264 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING); |
| 265 | |
| 266 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
| 267 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 268 | aniState->ofdmPhyErrCount = 0; |
| 269 | aniState->cckPhyErrCount = 0; |
| 270 | } |
| 271 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 272 | static void ath9k_hw_ani_ofdm_err_trigger(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 273 | { |
Luis R. Rodriguez | 38b3370 | 2008-12-23 15:58:46 -0800 | [diff] [blame] | 274 | struct ieee80211_conf *conf = &ah->ah_sc->hw->conf; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 275 | struct ar5416AniState *aniState; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 276 | int32_t rssi; |
| 277 | |
| 278 | if (!DO_ANI(ah)) |
| 279 | return; |
| 280 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 281 | aniState = ah->curani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 282 | |
| 283 | if (aniState->noiseImmunityLevel < HAL_NOISE_IMMUNE_MAX) { |
| 284 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, |
| 285 | aniState->noiseImmunityLevel + 1)) { |
| 286 | return; |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | if (aniState->spurImmunityLevel < HAL_SPUR_IMMUNE_MAX) { |
| 291 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL, |
| 292 | aniState->spurImmunityLevel + 1)) { |
| 293 | return; |
| 294 | } |
| 295 | } |
| 296 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 297 | if (ah->opmode == NL80211_IFTYPE_AP) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 298 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) { |
| 299 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 300 | aniState->firstepLevel + 1); |
| 301 | } |
| 302 | return; |
| 303 | } |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 304 | rssi = BEACON_RSSI(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 305 | if (rssi > aniState->rssiThrHigh) { |
| 306 | if (!aniState->ofdmWeakSigDetectOff) { |
| 307 | if (ath9k_hw_ani_control(ah, |
| 308 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 309 | false)) { |
| 310 | ath9k_hw_ani_control(ah, |
| 311 | ATH9K_ANI_SPUR_IMMUNITY_LEVEL, 0); |
| 312 | return; |
| 313 | } |
| 314 | } |
| 315 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) { |
| 316 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 317 | aniState->firstepLevel + 1); |
| 318 | return; |
| 319 | } |
| 320 | } else if (rssi > aniState->rssiThrLow) { |
| 321 | if (aniState->ofdmWeakSigDetectOff) |
| 322 | ath9k_hw_ani_control(ah, |
| 323 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 324 | true); |
| 325 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) |
| 326 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 327 | aniState->firstepLevel + 1); |
| 328 | return; |
| 329 | } else { |
Luis R. Rodriguez | 38b3370 | 2008-12-23 15:58:46 -0800 | [diff] [blame] | 330 | if (conf->channel->band == IEEE80211_BAND_2GHZ) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 331 | if (!aniState->ofdmWeakSigDetectOff) |
| 332 | ath9k_hw_ani_control(ah, |
| 333 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 334 | false); |
| 335 | if (aniState->firstepLevel > 0) |
| 336 | ath9k_hw_ani_control(ah, |
| 337 | ATH9K_ANI_FIRSTEP_LEVEL, 0); |
| 338 | return; |
| 339 | } |
| 340 | } |
| 341 | } |
| 342 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 343 | static void ath9k_hw_ani_cck_err_trigger(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 344 | { |
Luis R. Rodriguez | 38b3370 | 2008-12-23 15:58:46 -0800 | [diff] [blame] | 345 | struct ieee80211_conf *conf = &ah->ah_sc->hw->conf; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 346 | struct ar5416AniState *aniState; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 347 | int32_t rssi; |
| 348 | |
| 349 | if (!DO_ANI(ah)) |
| 350 | return; |
| 351 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 352 | aniState = ah->curani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 353 | if (aniState->noiseImmunityLevel < HAL_NOISE_IMMUNE_MAX) { |
| 354 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, |
| 355 | aniState->noiseImmunityLevel + 1)) { |
| 356 | return; |
| 357 | } |
| 358 | } |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 359 | if (ah->opmode == NL80211_IFTYPE_AP) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 360 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) { |
| 361 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 362 | aniState->firstepLevel + 1); |
| 363 | } |
| 364 | return; |
| 365 | } |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 366 | rssi = BEACON_RSSI(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 367 | if (rssi > aniState->rssiThrLow) { |
| 368 | if (aniState->firstepLevel < HAL_FIRST_STEP_MAX) |
| 369 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 370 | aniState->firstepLevel + 1); |
| 371 | } else { |
Luis R. Rodriguez | 38b3370 | 2008-12-23 15:58:46 -0800 | [diff] [blame] | 372 | if (conf->channel->band == IEEE80211_BAND_2GHZ) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 373 | if (aniState->firstepLevel > 0) |
| 374 | ath9k_hw_ani_control(ah, |
| 375 | ATH9K_ANI_FIRSTEP_LEVEL, 0); |
| 376 | } |
| 377 | } |
| 378 | } |
| 379 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 380 | static void ath9k_hw_ani_lower_immunity(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 381 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 382 | struct ar5416AniState *aniState; |
| 383 | int32_t rssi; |
| 384 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 385 | aniState = ah->curani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 386 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 387 | if (ah->opmode == NL80211_IFTYPE_AP) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 388 | if (aniState->firstepLevel > 0) { |
| 389 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 390 | aniState->firstepLevel - 1)) |
| 391 | return; |
| 392 | } |
| 393 | } else { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 394 | rssi = BEACON_RSSI(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 395 | if (rssi > aniState->rssiThrHigh) { |
| 396 | /* XXX: Handle me */ |
| 397 | } else if (rssi > aniState->rssiThrLow) { |
| 398 | if (aniState->ofdmWeakSigDetectOff) { |
| 399 | if (ath9k_hw_ani_control(ah, |
| 400 | ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 401 | true) == true) |
| 402 | return; |
| 403 | } |
| 404 | if (aniState->firstepLevel > 0) { |
| 405 | if (ath9k_hw_ani_control(ah, |
| 406 | ATH9K_ANI_FIRSTEP_LEVEL, |
| 407 | aniState->firstepLevel - 1) == true) |
| 408 | return; |
| 409 | } |
| 410 | } else { |
| 411 | if (aniState->firstepLevel > 0) { |
| 412 | if (ath9k_hw_ani_control(ah, |
| 413 | ATH9K_ANI_FIRSTEP_LEVEL, |
| 414 | aniState->firstepLevel - 1) == true) |
| 415 | return; |
| 416 | } |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | if (aniState->spurImmunityLevel > 0) { |
| 421 | if (ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL, |
| 422 | aniState->spurImmunityLevel - 1)) |
| 423 | return; |
| 424 | } |
| 425 | |
| 426 | if (aniState->noiseImmunityLevel > 0) { |
| 427 | ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, |
| 428 | aniState->noiseImmunityLevel - 1); |
| 429 | return; |
| 430 | } |
| 431 | } |
| 432 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 433 | static int32_t ath9k_hw_ani_get_listen_time(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 434 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 435 | struct ar5416AniState *aniState; |
| 436 | u32 txFrameCount, rxFrameCount, cycleCount; |
| 437 | int32_t listenTime; |
| 438 | |
| 439 | txFrameCount = REG_READ(ah, AR_TFCNT); |
| 440 | rxFrameCount = REG_READ(ah, AR_RFCNT); |
| 441 | cycleCount = REG_READ(ah, AR_CCCNT); |
| 442 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 443 | aniState = ah->curani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 444 | if (aniState->cycleCount == 0 || aniState->cycleCount > cycleCount) { |
| 445 | |
| 446 | listenTime = 0; |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 447 | ah->stats.ast_ani_lzero++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 448 | } else { |
| 449 | int32_t ccdelta = cycleCount - aniState->cycleCount; |
| 450 | int32_t rfdelta = rxFrameCount - aniState->rxFrameCount; |
| 451 | int32_t tfdelta = txFrameCount - aniState->txFrameCount; |
| 452 | listenTime = (ccdelta - rfdelta - tfdelta) / 44000; |
| 453 | } |
| 454 | aniState->cycleCount = cycleCount; |
| 455 | aniState->txFrameCount = txFrameCount; |
| 456 | aniState->rxFrameCount = rxFrameCount; |
| 457 | |
| 458 | return listenTime; |
| 459 | } |
| 460 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 461 | void ath9k_ani_reset(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 462 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 463 | struct ar5416AniState *aniState; |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 464 | struct ath9k_channel *chan = ah->curchan; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 465 | int index; |
| 466 | |
| 467 | if (!DO_ANI(ah)) |
| 468 | return; |
| 469 | |
| 470 | index = ath9k_hw_get_ani_channel_idx(ah, chan); |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 471 | aniState = &ah->ani[index]; |
| 472 | ah->curani = aniState; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 473 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 474 | if (DO_ANI(ah) && ah->opmode != NL80211_IFTYPE_STATION |
| 475 | && ah->opmode != NL80211_IFTYPE_ADHOC) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 476 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 477 | "Reset ANI state opmode %u\n", ah->opmode); |
| 478 | ah->stats.ast_ani_reset++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 479 | |
Luis R. Rodriguez | c66284f | 2009-07-16 10:17:35 -0700 | [diff] [blame] | 480 | if (ah->opmode == NL80211_IFTYPE_AP) { |
| 481 | /* |
| 482 | * ath9k_hw_ani_control() will only process items set on |
| 483 | * ah->ani_function |
| 484 | */ |
| 485 | if (IS_CHAN_2GHZ(chan)) |
| 486 | ah->ani_function = (ATH9K_ANI_SPUR_IMMUNITY_LEVEL | |
| 487 | ATH9K_ANI_FIRSTEP_LEVEL); |
| 488 | else |
| 489 | ah->ani_function = 0; |
| 490 | } |
| 491 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 492 | ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, 0); |
| 493 | ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL, 0); |
| 494 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, 0); |
| 495 | ath9k_hw_ani_control(ah, ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 496 | !ATH9K_ANI_USE_OFDM_WEAK_SIG); |
| 497 | ath9k_hw_ani_control(ah, ATH9K_ANI_CCK_WEAK_SIGNAL_THR, |
| 498 | ATH9K_ANI_CCK_WEAK_SIG_THR); |
| 499 | |
| 500 | ath9k_hw_setrxfilter(ah, ath9k_hw_getrxfilter(ah) | |
| 501 | ATH9K_RX_FILTER_PHYERR); |
| 502 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 503 | if (ah->opmode == NL80211_IFTYPE_AP) { |
| 504 | ah->curani->ofdmTrigHigh = |
| 505 | ah->config.ofdm_trig_high; |
| 506 | ah->curani->ofdmTrigLow = |
| 507 | ah->config.ofdm_trig_low; |
| 508 | ah->curani->cckTrigHigh = |
| 509 | ah->config.cck_trig_high; |
| 510 | ah->curani->cckTrigLow = |
| 511 | ah->config.cck_trig_low; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 512 | } |
| 513 | ath9k_ani_restart(ah); |
| 514 | return; |
| 515 | } |
| 516 | |
| 517 | if (aniState->noiseImmunityLevel != 0) |
| 518 | ath9k_hw_ani_control(ah, ATH9K_ANI_NOISE_IMMUNITY_LEVEL, |
| 519 | aniState->noiseImmunityLevel); |
| 520 | if (aniState->spurImmunityLevel != 0) |
| 521 | ath9k_hw_ani_control(ah, ATH9K_ANI_SPUR_IMMUNITY_LEVEL, |
| 522 | aniState->spurImmunityLevel); |
| 523 | if (aniState->ofdmWeakSigDetectOff) |
| 524 | ath9k_hw_ani_control(ah, ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION, |
| 525 | !aniState->ofdmWeakSigDetectOff); |
| 526 | if (aniState->cckWeakSigThreshold) |
| 527 | ath9k_hw_ani_control(ah, ATH9K_ANI_CCK_WEAK_SIGNAL_THR, |
| 528 | aniState->cckWeakSigThreshold); |
| 529 | if (aniState->firstepLevel != 0) |
| 530 | ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL, |
| 531 | aniState->firstepLevel); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 532 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 533 | ath9k_hw_setrxfilter(ah, ath9k_hw_getrxfilter(ah) & |
| 534 | ~ATH9K_RX_FILTER_PHYERR); |
| 535 | ath9k_ani_restart(ah); |
| 536 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING); |
| 537 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 538 | } |
| 539 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 540 | void ath9k_hw_ani_monitor(struct ath_hw *ah, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 541 | const struct ath9k_node_stats *stats, |
| 542 | struct ath9k_channel *chan) |
| 543 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 544 | struct ar5416AniState *aniState; |
| 545 | int32_t listenTime; |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 546 | u32 phyCnt1, phyCnt2; |
| 547 | u32 ofdmPhyErrCnt, cckPhyErrCnt; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 548 | |
Gabor Juhos | 9950688 | 2009-01-14 20:17:11 +0100 | [diff] [blame] | 549 | if (!DO_ANI(ah)) |
| 550 | return; |
| 551 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 552 | aniState = ah->curani; |
| 553 | ah->stats.ast_nodestats = *stats; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 554 | |
| 555 | listenTime = ath9k_hw_ani_get_listen_time(ah); |
| 556 | if (listenTime < 0) { |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 557 | ah->stats.ast_ani_lneg++; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 558 | ath9k_ani_restart(ah); |
| 559 | return; |
| 560 | } |
| 561 | |
| 562 | aniState->listenTime += listenTime; |
| 563 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 564 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 565 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 566 | phyCnt1 = REG_READ(ah, AR_PHY_ERR_1); |
| 567 | phyCnt2 = REG_READ(ah, AR_PHY_ERR_2); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 568 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 569 | if (phyCnt1 < aniState->ofdmPhyErrBase || |
| 570 | phyCnt2 < aniState->cckPhyErrBase) { |
| 571 | if (phyCnt1 < aniState->ofdmPhyErrBase) { |
| 572 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 573 | "phyCnt1 0x%x, resetting " |
| 574 | "counter value to 0x%x\n", |
| 575 | phyCnt1, aniState->ofdmPhyErrBase); |
| 576 | REG_WRITE(ah, AR_PHY_ERR_1, |
| 577 | aniState->ofdmPhyErrBase); |
| 578 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, |
| 579 | AR_PHY_ERR_OFDM_TIMING); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 580 | } |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 581 | if (phyCnt2 < aniState->cckPhyErrBase) { |
| 582 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 583 | "phyCnt2 0x%x, resetting " |
| 584 | "counter value to 0x%x\n", |
| 585 | phyCnt2, aniState->cckPhyErrBase); |
| 586 | REG_WRITE(ah, AR_PHY_ERR_2, |
| 587 | aniState->cckPhyErrBase); |
| 588 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, |
| 589 | AR_PHY_ERR_CCK_TIMING); |
| 590 | } |
| 591 | return; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 592 | } |
| 593 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 594 | ofdmPhyErrCnt = phyCnt1 - aniState->ofdmPhyErrBase; |
| 595 | ah->stats.ast_ani_ofdmerrs += |
| 596 | ofdmPhyErrCnt - aniState->ofdmPhyErrCount; |
| 597 | aniState->ofdmPhyErrCount = ofdmPhyErrCnt; |
| 598 | |
| 599 | cckPhyErrCnt = phyCnt2 - aniState->cckPhyErrBase; |
| 600 | ah->stats.ast_ani_cckerrs += |
| 601 | cckPhyErrCnt - aniState->cckPhyErrCount; |
| 602 | aniState->cckPhyErrCount = cckPhyErrCnt; |
| 603 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 604 | if (aniState->listenTime > 5 * ah->aniperiod) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 605 | if (aniState->ofdmPhyErrCount <= aniState->listenTime * |
| 606 | aniState->ofdmTrigLow / 1000 && |
| 607 | aniState->cckPhyErrCount <= aniState->listenTime * |
| 608 | aniState->cckTrigLow / 1000) |
| 609 | ath9k_hw_ani_lower_immunity(ah); |
| 610 | ath9k_ani_restart(ah); |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 611 | } else if (aniState->listenTime > ah->aniperiod) { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 612 | if (aniState->ofdmPhyErrCount > aniState->listenTime * |
| 613 | aniState->ofdmTrigHigh / 1000) { |
| 614 | ath9k_hw_ani_ofdm_err_trigger(ah); |
| 615 | ath9k_ani_restart(ah); |
| 616 | } else if (aniState->cckPhyErrCount > |
| 617 | aniState->listenTime * aniState->cckTrigHigh / |
| 618 | 1000) { |
| 619 | ath9k_hw_ani_cck_err_trigger(ah); |
| 620 | ath9k_ani_restart(ah); |
| 621 | } |
| 622 | } |
| 623 | } |
| 624 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 625 | void ath9k_enable_mib_counters(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 626 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 627 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Enable MIB counters\n"); |
| 628 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 629 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 630 | |
| 631 | REG_WRITE(ah, AR_FILT_OFDM, 0); |
| 632 | REG_WRITE(ah, AR_FILT_CCK, 0); |
| 633 | REG_WRITE(ah, AR_MIBC, |
| 634 | ~(AR_MIBC_COW | AR_MIBC_FMC | AR_MIBC_CMC | AR_MIBC_MCS) |
| 635 | & 0x0f); |
| 636 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING); |
| 637 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING); |
| 638 | } |
| 639 | |
Sujith | 0fd06c9 | 2009-02-12 10:06:51 +0530 | [diff] [blame] | 640 | /* Freeze the MIB counters, get the stats and then clear them */ |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 641 | void ath9k_hw_disable_mib_counters(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 642 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 643 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Disable MIB counters\n"); |
Sujith | 0fd06c9 | 2009-02-12 10:06:51 +0530 | [diff] [blame] | 644 | REG_WRITE(ah, AR_MIBC, AR_MIBC_FMC); |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 645 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
Sujith | 0fd06c9 | 2009-02-12 10:06:51 +0530 | [diff] [blame] | 646 | REG_WRITE(ah, AR_MIBC, AR_MIBC_CMC); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 647 | REG_WRITE(ah, AR_FILT_OFDM, 0); |
| 648 | REG_WRITE(ah, AR_FILT_CCK, 0); |
| 649 | } |
| 650 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 651 | u32 ath9k_hw_GetMibCycleCountsPct(struct ath_hw *ah, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 652 | u32 *rxc_pcnt, |
| 653 | u32 *rxf_pcnt, |
| 654 | u32 *txf_pcnt) |
| 655 | { |
| 656 | static u32 cycles, rx_clear, rx_frame, tx_frame; |
| 657 | u32 good = 1; |
| 658 | |
| 659 | u32 rc = REG_READ(ah, AR_RCCNT); |
| 660 | u32 rf = REG_READ(ah, AR_RFCNT); |
| 661 | u32 tf = REG_READ(ah, AR_TFCNT); |
| 662 | u32 cc = REG_READ(ah, AR_CCCNT); |
| 663 | |
| 664 | if (cycles == 0 || cycles > cc) { |
Sujith | d8baa93 | 2009-03-30 15:28:25 +0530 | [diff] [blame] | 665 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 666 | "cycle counter wrap. ExtBusy = 0\n"); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 667 | good = 0; |
| 668 | } else { |
| 669 | u32 cc_d = cc - cycles; |
| 670 | u32 rc_d = rc - rx_clear; |
| 671 | u32 rf_d = rf - rx_frame; |
| 672 | u32 tf_d = tf - tx_frame; |
| 673 | |
| 674 | if (cc_d != 0) { |
| 675 | *rxc_pcnt = rc_d * 100 / cc_d; |
| 676 | *rxf_pcnt = rf_d * 100 / cc_d; |
| 677 | *txf_pcnt = tf_d * 100 / cc_d; |
| 678 | } else { |
| 679 | good = 0; |
| 680 | } |
| 681 | } |
| 682 | |
| 683 | cycles = cc; |
| 684 | rx_frame = rf; |
| 685 | rx_clear = rc; |
| 686 | tx_frame = tf; |
| 687 | |
| 688 | return good; |
| 689 | } |
| 690 | |
| 691 | /* |
| 692 | * Process a MIB interrupt. We may potentially be invoked because |
| 693 | * any of the MIB counters overflow/trigger so don't assume we're |
| 694 | * here because a PHY error counter triggered. |
| 695 | */ |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 696 | void ath9k_hw_procmibevent(struct ath_hw *ah, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 697 | const struct ath9k_node_stats *stats) |
| 698 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 699 | u32 phyCnt1, phyCnt2; |
| 700 | |
| 701 | /* Reset these counters regardless */ |
| 702 | REG_WRITE(ah, AR_FILT_OFDM, 0); |
| 703 | REG_WRITE(ah, AR_FILT_CCK, 0); |
| 704 | if (!(REG_READ(ah, AR_SLP_MIB_CTRL) & AR_SLP_MIB_PENDING)) |
| 705 | REG_WRITE(ah, AR_SLP_MIB_CTRL, AR_SLP_MIB_CLEAR); |
| 706 | |
| 707 | /* Clear the mib counters and save them in the stats */ |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 708 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 709 | ah->stats.ast_nodestats = *stats; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 710 | |
| 711 | if (!DO_ANI(ah)) |
| 712 | return; |
| 713 | |
| 714 | /* NB: these are not reset-on-read */ |
| 715 | phyCnt1 = REG_READ(ah, AR_PHY_ERR_1); |
| 716 | phyCnt2 = REG_READ(ah, AR_PHY_ERR_2); |
| 717 | if (((phyCnt1 & AR_MIBCNT_INTRMASK) == AR_MIBCNT_INTRMASK) || |
| 718 | ((phyCnt2 & AR_MIBCNT_INTRMASK) == AR_MIBCNT_INTRMASK)) { |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 719 | struct ar5416AniState *aniState = ah->curani; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 720 | u32 ofdmPhyErrCnt, cckPhyErrCnt; |
| 721 | |
| 722 | /* NB: only use ast_ani_*errs with AH_PRIVATE_DIAG */ |
| 723 | ofdmPhyErrCnt = phyCnt1 - aniState->ofdmPhyErrBase; |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 724 | ah->stats.ast_ani_ofdmerrs += |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 725 | ofdmPhyErrCnt - aniState->ofdmPhyErrCount; |
| 726 | aniState->ofdmPhyErrCount = ofdmPhyErrCnt; |
| 727 | |
| 728 | cckPhyErrCnt = phyCnt2 - aniState->cckPhyErrBase; |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 729 | ah->stats.ast_ani_cckerrs += |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 730 | cckPhyErrCnt - aniState->cckPhyErrCount; |
| 731 | aniState->cckPhyErrCount = cckPhyErrCnt; |
| 732 | |
| 733 | /* |
| 734 | * NB: figure out which counter triggered. If both |
| 735 | * trigger we'll only deal with one as the processing |
| 736 | * clobbers the error counter so the trigger threshold |
| 737 | * check will never be true. |
| 738 | */ |
| 739 | if (aniState->ofdmPhyErrCount > aniState->ofdmTrigHigh) |
| 740 | ath9k_hw_ani_ofdm_err_trigger(ah); |
| 741 | if (aniState->cckPhyErrCount > aniState->cckTrigHigh) |
| 742 | ath9k_hw_ani_cck_err_trigger(ah); |
| 743 | /* NB: always restart to insure the h/w counters are reset */ |
| 744 | ath9k_ani_restart(ah); |
| 745 | } |
| 746 | } |
| 747 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 748 | void ath9k_hw_ani_setup(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 749 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 750 | int i; |
| 751 | |
| 752 | const int totalSizeDesired[] = { -55, -55, -55, -55, -62 }; |
| 753 | const int coarseHigh[] = { -14, -14, -14, -14, -12 }; |
| 754 | const int coarseLow[] = { -64, -64, -64, -64, -70 }; |
| 755 | const int firpwr[] = { -78, -78, -78, -78, -80 }; |
| 756 | |
| 757 | for (i = 0; i < 5; i++) { |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 758 | ah->totalSizeDesired[i] = totalSizeDesired[i]; |
| 759 | ah->coarse_high[i] = coarseHigh[i]; |
| 760 | ah->coarse_low[i] = coarseLow[i]; |
| 761 | ah->firpwr[i] = firpwr[i]; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 762 | } |
| 763 | } |
| 764 | |
Luis R. Rodriguez | f637cfd | 2009-08-03 12:24:46 -0700 | [diff] [blame] | 765 | void ath9k_hw_ani_init(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 766 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 767 | int i; |
| 768 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 769 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Initialize ANI\n"); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 770 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 771 | memset(ah->ani, 0, sizeof(ah->ani)); |
| 772 | for (i = 0; i < ARRAY_SIZE(ah->ani); i++) { |
| 773 | ah->ani[i].ofdmTrigHigh = ATH9K_ANI_OFDM_TRIG_HIGH; |
| 774 | ah->ani[i].ofdmTrigLow = ATH9K_ANI_OFDM_TRIG_LOW; |
| 775 | ah->ani[i].cckTrigHigh = ATH9K_ANI_CCK_TRIG_HIGH; |
| 776 | ah->ani[i].cckTrigLow = ATH9K_ANI_CCK_TRIG_LOW; |
| 777 | ah->ani[i].rssiThrHigh = ATH9K_ANI_RSSI_THR_HIGH; |
| 778 | ah->ani[i].rssiThrLow = ATH9K_ANI_RSSI_THR_LOW; |
| 779 | ah->ani[i].ofdmWeakSigDetectOff = |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 780 | !ATH9K_ANI_USE_OFDM_WEAK_SIG; |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 781 | ah->ani[i].cckWeakSigThreshold = |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 782 | ATH9K_ANI_CCK_WEAK_SIG_THR; |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 783 | ah->ani[i].spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL; |
| 784 | ah->ani[i].firstepLevel = ATH9K_ANI_FIRSTEP_LVL; |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 785 | ah->ani[i].ofdmPhyErrBase = |
| 786 | AR_PHY_COUNTMAX - ATH9K_ANI_OFDM_TRIG_HIGH; |
| 787 | ah->ani[i].cckPhyErrBase = |
| 788 | AR_PHY_COUNTMAX - ATH9K_ANI_CCK_TRIG_HIGH; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 789 | } |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 790 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 791 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, |
| 792 | "Setting OfdmErrBase = 0x%08x\n", |
| 793 | ah->ani[0].ofdmPhyErrBase); |
| 794 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Setting cckErrBase = 0x%08x\n", |
| 795 | ah->ani[0].cckPhyErrBase); |
| 796 | |
| 797 | REG_WRITE(ah, AR_PHY_ERR_1, ah->ani[0].ofdmPhyErrBase); |
| 798 | REG_WRITE(ah, AR_PHY_ERR_2, ah->ani[0].cckPhyErrBase); |
| 799 | ath9k_enable_mib_counters(ah); |
| 800 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 801 | ah->aniperiod = ATH9K_ANI_PERIOD; |
| 802 | if (ah->config.enable_ani) |
| 803 | ah->proc_phyerr |= HAL_PROCESS_ANI; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 804 | } |
| 805 | |
Luis R. Rodriguez | e70c0cf | 2009-08-03 12:24:51 -0700 | [diff] [blame] | 806 | void ath9k_hw_ani_disable(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 807 | { |
Luis R. Rodriguez | e70c0cf | 2009-08-03 12:24:51 -0700 | [diff] [blame] | 808 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Disabling ANI\n"); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 809 | |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame^] | 810 | ath9k_hw_disable_mib_counters(ah); |
| 811 | REG_WRITE(ah, AR_PHY_ERR_1, 0); |
| 812 | REG_WRITE(ah, AR_PHY_ERR_2, 0); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 813 | } |