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