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