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 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 17 | #include "hw.h" |
Felix Fietkau | 641d992 | 2010-04-15 17:38:49 -0400 | [diff] [blame] | 18 | #include "hw-ops.h" |
Paul Gortmaker | ee40fa0 | 2011-05-27 16:14:23 -0400 | [diff] [blame] | 19 | #include <linux/export.h> |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 20 | |
Luis R. Rodriguez | 795f5e2 | 2010-04-15 17:39:00 -0400 | [diff] [blame] | 21 | /* Common calibration code */ |
| 22 | |
Felix Fietkau | 2292ca6 | 2010-08-02 15:53:13 +0200 | [diff] [blame] | 23 | #define ATH9K_NF_TOO_HIGH -60 |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 24 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 25 | static int16_t ath9k_hw_get_nf_hist_mid(int16_t *nfCalBuffer) |
| 26 | { |
| 27 | int16_t nfval; |
| 28 | int16_t sort[ATH9K_NF_CAL_HIST_MAX]; |
| 29 | int i, j; |
| 30 | |
| 31 | for (i = 0; i < ATH9K_NF_CAL_HIST_MAX; i++) |
| 32 | sort[i] = nfCalBuffer[i]; |
| 33 | |
| 34 | for (i = 0; i < ATH9K_NF_CAL_HIST_MAX - 1; i++) { |
| 35 | for (j = 1; j < ATH9K_NF_CAL_HIST_MAX - i; j++) { |
| 36 | if (sort[j] > sort[j - 1]) { |
| 37 | nfval = sort[j]; |
| 38 | sort[j] = sort[j - 1]; |
| 39 | sort[j - 1] = nfval; |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | nfval = sort[(ATH9K_NF_CAL_HIST_MAX - 1) >> 1]; |
| 44 | |
| 45 | return nfval; |
| 46 | } |
| 47 | |
Felix Fietkau | 2292ca6 | 2010-08-02 15:53:13 +0200 | [diff] [blame] | 48 | static struct ath_nf_limits *ath9k_hw_get_nf_limits(struct ath_hw *ah, |
| 49 | struct ath9k_channel *chan) |
| 50 | { |
| 51 | struct ath_nf_limits *limit; |
| 52 | |
| 53 | if (!chan || IS_CHAN_2GHZ(chan)) |
| 54 | limit = &ah->nf_2g; |
| 55 | else |
| 56 | limit = &ah->nf_5g; |
| 57 | |
| 58 | return limit; |
| 59 | } |
| 60 | |
| 61 | static s16 ath9k_hw_get_default_nf(struct ath_hw *ah, |
| 62 | struct ath9k_channel *chan) |
| 63 | { |
| 64 | return ath9k_hw_get_nf_limits(ah, chan)->nominal; |
| 65 | } |
| 66 | |
Felix Fietkau | f23fba4 | 2011-07-28 14:08:56 +0200 | [diff] [blame] | 67 | s16 ath9k_hw_getchan_noise(struct ath_hw *ah, struct ath9k_channel *chan) |
| 68 | { |
| 69 | s8 noise = ATH_DEFAULT_NOISE_FLOOR; |
| 70 | |
| 71 | if (chan && chan->noisefloor) { |
| 72 | s8 delta = chan->noisefloor - |
| 73 | ath9k_hw_get_default_nf(ah, chan); |
| 74 | if (delta > 0) |
| 75 | noise += delta; |
| 76 | } |
| 77 | return noise; |
| 78 | } |
| 79 | EXPORT_SYMBOL(ath9k_hw_getchan_noise); |
Felix Fietkau | 2292ca6 | 2010-08-02 15:53:13 +0200 | [diff] [blame] | 80 | |
| 81 | static void ath9k_hw_update_nfcal_hist_buffer(struct ath_hw *ah, |
Felix Fietkau | 70cf153 | 2010-08-02 15:53:14 +0200 | [diff] [blame] | 82 | struct ath9k_hw_cal_data *cal, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 83 | int16_t *nfarray) |
| 84 | { |
Felix Fietkau | 70cf153 | 2010-08-02 15:53:14 +0200 | [diff] [blame] | 85 | struct ath_common *common = ath9k_hw_common(ah); |
Felix Fietkau | 2292ca6 | 2010-08-02 15:53:13 +0200 | [diff] [blame] | 86 | struct ath_nf_limits *limit; |
Felix Fietkau | 70cf153 | 2010-08-02 15:53:14 +0200 | [diff] [blame] | 87 | struct ath9k_nfcal_hist *h; |
| 88 | bool high_nf_mid = false; |
Rajkumar Manoharan | 28ef645 | 2011-05-04 19:37:17 +0530 | [diff] [blame] | 89 | u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 90 | int i; |
| 91 | |
Felix Fietkau | 70cf153 | 2010-08-02 15:53:14 +0200 | [diff] [blame] | 92 | h = cal->nfCalHist; |
Felix Fietkau | 2292ca6 | 2010-08-02 15:53:13 +0200 | [diff] [blame] | 93 | limit = ath9k_hw_get_nf_limits(ah, ah->curchan); |
| 94 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 95 | for (i = 0; i < NUM_NF_READINGS; i++) { |
Rajkumar Manoharan | 28ef645 | 2011-05-04 19:37:17 +0530 | [diff] [blame] | 96 | if (!(chainmask & (1 << i)) || |
Rajkumar Manoharan | 6b3d348 | 2011-08-13 10:28:16 +0530 | [diff] [blame] | 97 | ((i >= AR5416_MAX_CHAINS) && !IS_CHAN_HT40(ah->curchan))) |
Rajkumar Manoharan | 28ef645 | 2011-05-04 19:37:17 +0530 | [diff] [blame] | 98 | continue; |
| 99 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 100 | h[i].nfCalBuffer[h[i].currIndex] = nfarray[i]; |
| 101 | |
| 102 | if (++h[i].currIndex >= ATH9K_NF_CAL_HIST_MAX) |
| 103 | h[i].currIndex = 0; |
| 104 | |
| 105 | if (h[i].invalidNFcount > 0) { |
Felix Fietkau | f2552e2 | 2010-07-02 00:09:50 +0200 | [diff] [blame] | 106 | h[i].invalidNFcount--; |
| 107 | h[i].privNF = nfarray[i]; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 108 | } else { |
| 109 | h[i].privNF = |
| 110 | ath9k_hw_get_nf_hist_mid(h[i].nfCalBuffer); |
| 111 | } |
Felix Fietkau | 2292ca6 | 2010-08-02 15:53:13 +0200 | [diff] [blame] | 112 | |
Felix Fietkau | 70cf153 | 2010-08-02 15:53:14 +0200 | [diff] [blame] | 113 | if (!h[i].privNF) |
| 114 | continue; |
| 115 | |
| 116 | if (h[i].privNF > limit->max) { |
| 117 | high_nf_mid = true; |
| 118 | |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 119 | ath_dbg(common, ATH_DBG_CALIBRATE, |
| 120 | "NFmid[%d] (%d) > MAX (%d), %s\n", |
| 121 | i, h[i].privNF, limit->max, |
| 122 | (cal->nfcal_interference ? |
| 123 | "not corrected (due to interference)" : |
| 124 | "correcting to MAX")); |
Felix Fietkau | 70cf153 | 2010-08-02 15:53:14 +0200 | [diff] [blame] | 125 | |
| 126 | /* |
| 127 | * Normally we limit the average noise floor by the |
| 128 | * hardware specific maximum here. However if we have |
| 129 | * encountered stuck beacons because of interference, |
| 130 | * we bypass this limit here in order to better deal |
| 131 | * with our environment. |
| 132 | */ |
| 133 | if (!cal->nfcal_interference) |
| 134 | h[i].privNF = limit->max; |
| 135 | } |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 136 | } |
Felix Fietkau | 70cf153 | 2010-08-02 15:53:14 +0200 | [diff] [blame] | 137 | |
| 138 | /* |
| 139 | * If the noise floor seems normal for all chains, assume that |
| 140 | * there is no significant interference in the environment anymore. |
| 141 | * Re-enable the enforcement of the NF maximum again. |
| 142 | */ |
| 143 | if (!high_nf_mid) |
| 144 | cal->nfcal_interference = false; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 145 | } |
| 146 | |
Luis R. Rodriguez | b43d59f | 2010-04-15 17:38:58 -0400 | [diff] [blame] | 147 | static bool ath9k_hw_get_nf_thresh(struct ath_hw *ah, |
| 148 | enum ieee80211_band band, |
| 149 | int16_t *nft) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 150 | { |
Luis R. Rodriguez | 76061ab | 2008-12-23 15:58:41 -0800 | [diff] [blame] | 151 | switch (band) { |
| 152 | case IEEE80211_BAND_5GHZ: |
Sujith | f74df6f | 2009-02-09 13:27:24 +0530 | [diff] [blame] | 153 | *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_5); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 154 | break; |
Luis R. Rodriguez | 76061ab | 2008-12-23 15:58:41 -0800 | [diff] [blame] | 155 | case IEEE80211_BAND_2GHZ: |
Sujith | f74df6f | 2009-02-09 13:27:24 +0530 | [diff] [blame] | 156 | *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_2); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 157 | break; |
| 158 | default: |
Luis R. Rodriguez | 76061ab | 2008-12-23 15:58:41 -0800 | [diff] [blame] | 159 | BUG_ON(1); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 160 | return false; |
| 161 | } |
| 162 | |
| 163 | return true; |
| 164 | } |
| 165 | |
Luis R. Rodriguez | 795f5e2 | 2010-04-15 17:39:00 -0400 | [diff] [blame] | 166 | void ath9k_hw_reset_calibration(struct ath_hw *ah, |
| 167 | struct ath9k_cal_list *currCal) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 168 | { |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 169 | int i; |
| 170 | |
| 171 | ath9k_hw_setup_calibration(ah, currCal); |
| 172 | |
| 173 | currCal->calState = CAL_RUNNING; |
| 174 | |
| 175 | for (i = 0; i < AR5416_MAX_CHAINS; i++) { |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 176 | ah->meas0.sign[i] = 0; |
| 177 | ah->meas1.sign[i] = 0; |
| 178 | ah->meas2.sign[i] = 0; |
| 179 | ah->meas3.sign[i] = 0; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 180 | } |
| 181 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 182 | ah->cal_samples = 0; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 183 | } |
| 184 | |
Luis R. Rodriguez | c9e27d9 | 2008-12-23 15:58:42 -0800 | [diff] [blame] | 185 | /* This is done for the currently configured channel */ |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 186 | bool ath9k_hw_reset_calvalid(struct ath_hw *ah) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 187 | { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 188 | struct ath_common *common = ath9k_hw_common(ah); |
| 189 | struct ieee80211_conf *conf = &common->hw->conf; |
Sujith | cbfe946 | 2009-04-13 21:56:56 +0530 | [diff] [blame] | 190 | struct ath9k_cal_list *currCal = ah->cal_list_curr; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 191 | |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 192 | if (!ah->caldata) |
Luis R. Rodriguez | c9e27d9 | 2008-12-23 15:58:42 -0800 | [diff] [blame] | 193 | return true; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 194 | |
| 195 | if (!AR_SREV_9100(ah) && !AR_SREV_9160_10_OR_LATER(ah)) |
Luis R. Rodriguez | c9e27d9 | 2008-12-23 15:58:42 -0800 | [diff] [blame] | 196 | return true; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 197 | |
| 198 | if (currCal == NULL) |
Luis R. Rodriguez | c9e27d9 | 2008-12-23 15:58:42 -0800 | [diff] [blame] | 199 | return true; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 200 | |
| 201 | if (currCal->calState != CAL_DONE) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 202 | ath_dbg(common, ATH_DBG_CALIBRATE, |
| 203 | "Calibration state incorrect, %d\n", |
| 204 | currCal->calState); |
Luis R. Rodriguez | c9e27d9 | 2008-12-23 15:58:42 -0800 | [diff] [blame] | 205 | return true; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 206 | } |
| 207 | |
Felix Fietkau | 6497827 | 2010-10-03 19:07:16 +0200 | [diff] [blame] | 208 | if (!(ah->supp_cals & currCal->calData->calType)) |
Luis R. Rodriguez | c9e27d9 | 2008-12-23 15:58:42 -0800 | [diff] [blame] | 209 | return true; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 210 | |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 211 | ath_dbg(common, ATH_DBG_CALIBRATE, |
| 212 | "Resetting Cal %d state for channel %u\n", |
| 213 | currCal->calData->calType, conf->channel->center_freq); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 214 | |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 215 | ah->caldata->CalValid &= ~currCal->calData->calType; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 216 | currCal->calState = CAL_WAITING; |
| 217 | |
Luis R. Rodriguez | c9e27d9 | 2008-12-23 15:58:42 -0800 | [diff] [blame] | 218 | return false; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 219 | } |
Luis R. Rodriguez | 7322fd1 | 2009-09-23 23:07:00 -0400 | [diff] [blame] | 220 | EXPORT_SYMBOL(ath9k_hw_reset_calvalid); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 221 | |
Felix Fietkau | 00c8659 | 2010-07-30 21:02:09 +0200 | [diff] [blame] | 222 | void ath9k_hw_start_nfcal(struct ath_hw *ah, bool update) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 223 | { |
Felix Fietkau | 4254bc1 | 2010-07-31 00:12:01 +0200 | [diff] [blame] | 224 | if (ah->caldata) |
| 225 | ah->caldata->nfcal_pending = true; |
| 226 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 227 | REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, |
| 228 | AR_PHY_AGC_CONTROL_ENABLE_NF); |
Felix Fietkau | 00c8659 | 2010-07-30 21:02:09 +0200 | [diff] [blame] | 229 | |
| 230 | if (update) |
| 231 | REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 232 | AR_PHY_AGC_CONTROL_NO_UPDATE_NF); |
Felix Fietkau | 00c8659 | 2010-07-30 21:02:09 +0200 | [diff] [blame] | 233 | else |
| 234 | REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, |
| 235 | AR_PHY_AGC_CONTROL_NO_UPDATE_NF); |
| 236 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 237 | REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF); |
| 238 | } |
| 239 | |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 240 | void ath9k_hw_loadnf(struct ath_hw *ah, struct ath9k_channel *chan) |
| 241 | { |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 242 | struct ath9k_nfcal_hist *h = NULL; |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 243 | unsigned i, j; |
| 244 | int32_t val; |
Felix Fietkau | 487f0e0 | 2010-07-23 04:31:56 +0200 | [diff] [blame] | 245 | u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask; |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 246 | struct ath_common *common = ath9k_hw_common(ah); |
Rajkumar Manoharan | 28ef645 | 2011-05-04 19:37:17 +0530 | [diff] [blame] | 247 | struct ieee80211_conf *conf = &common->hw->conf; |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 248 | s16 default_nf = ath9k_hw_get_default_nf(ah, chan); |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 249 | |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 250 | if (ah->caldata) |
| 251 | h = ah->caldata->nfCalHist; |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 252 | |
| 253 | for (i = 0; i < NUM_NF_READINGS; i++) { |
| 254 | if (chainmask & (1 << i)) { |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 255 | s16 nfval; |
| 256 | |
Rajkumar Manoharan | 28ef645 | 2011-05-04 19:37:17 +0530 | [diff] [blame] | 257 | if ((i >= AR5416_MAX_CHAINS) && !conf_is_ht40(conf)) |
| 258 | continue; |
| 259 | |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 260 | if (h) |
| 261 | nfval = h[i].privNF; |
| 262 | else |
| 263 | nfval = default_nf; |
| 264 | |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 265 | val = REG_READ(ah, ah->nf_regs[i]); |
| 266 | val &= 0xFFFFFE00; |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 267 | val |= (((u32) nfval << 1) & 0x1ff); |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 268 | REG_WRITE(ah, ah->nf_regs[i], val); |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | /* |
| 273 | * Load software filtered NF value into baseband internal minCCApwr |
| 274 | * variable. |
| 275 | */ |
| 276 | REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, |
| 277 | AR_PHY_AGC_CONTROL_ENABLE_NF); |
| 278 | REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, |
| 279 | AR_PHY_AGC_CONTROL_NO_UPDATE_NF); |
| 280 | REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF); |
| 281 | |
| 282 | /* |
| 283 | * Wait for load to complete, should be fast, a few 10s of us. |
| 284 | * The max delay was changed from an original 250us to 10000us |
| 285 | * since 250us often results in NF load timeout and causes deaf |
| 286 | * condition during stress testing 12/12/2009 |
| 287 | */ |
Vivek Natarajan | 23952ec | 2011-03-10 11:05:43 +0530 | [diff] [blame] | 288 | for (j = 0; j < 10000; j++) { |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 289 | if ((REG_READ(ah, AR_PHY_AGC_CONTROL) & |
| 290 | AR_PHY_AGC_CONTROL_NF) == 0) |
| 291 | break; |
| 292 | udelay(10); |
| 293 | } |
| 294 | |
| 295 | /* |
| 296 | * We timed out waiting for the noisefloor to load, probably due to an |
| 297 | * in-progress rx. Simply return here and allow the load plenty of time |
| 298 | * to complete before the next calibration interval. We need to avoid |
| 299 | * trying to load -50 (which happens below) while the previous load is |
| 300 | * still in progress as this can cause rx deafness. Instead by returning |
| 301 | * here, the baseband nf cal will just be capped by our present |
| 302 | * noisefloor until the next calibration timer. |
| 303 | */ |
Vivek Natarajan | 23952ec | 2011-03-10 11:05:43 +0530 | [diff] [blame] | 304 | if (j == 10000) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 305 | ath_dbg(common, ATH_DBG_ANY, |
| 306 | "Timeout while waiting for nf to load: AR_PHY_AGC_CONTROL=0x%x\n", |
| 307 | REG_READ(ah, AR_PHY_AGC_CONTROL)); |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 308 | return; |
| 309 | } |
| 310 | |
| 311 | /* |
| 312 | * Restore maxCCAPower register parameter again so that we're not capped |
| 313 | * by the median we just loaded. This will be initial (and max) value |
| 314 | * of next noise floor calibration the baseband does. |
| 315 | */ |
| 316 | ENABLE_REGWRITE_BUFFER(ah); |
| 317 | for (i = 0; i < NUM_NF_READINGS; i++) { |
| 318 | if (chainmask & (1 << i)) { |
Rajkumar Manoharan | 28ef645 | 2011-05-04 19:37:17 +0530 | [diff] [blame] | 319 | if ((i >= AR5416_MAX_CHAINS) && !conf_is_ht40(conf)) |
| 320 | continue; |
| 321 | |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 322 | val = REG_READ(ah, ah->nf_regs[i]); |
| 323 | val &= 0xFFFFFE00; |
| 324 | val |= (((u32) (-50) << 1) & 0x1ff); |
| 325 | REG_WRITE(ah, ah->nf_regs[i], val); |
| 326 | } |
| 327 | } |
| 328 | REGWRITE_BUFFER_FLUSH(ah); |
Felix Fietkau | bbacee1 | 2010-07-11 15:44:42 +0200 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | |
Felix Fietkau | f2552e2 | 2010-07-02 00:09:50 +0200 | [diff] [blame] | 332 | static void ath9k_hw_nf_sanitize(struct ath_hw *ah, s16 *nf) |
| 333 | { |
| 334 | struct ath_common *common = ath9k_hw_common(ah); |
| 335 | struct ath_nf_limits *limit; |
| 336 | int i; |
| 337 | |
| 338 | if (IS_CHAN_2GHZ(ah->curchan)) |
| 339 | limit = &ah->nf_2g; |
| 340 | else |
| 341 | limit = &ah->nf_5g; |
| 342 | |
| 343 | for (i = 0; i < NUM_NF_READINGS; i++) { |
| 344 | if (!nf[i]) |
| 345 | continue; |
| 346 | |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 347 | ath_dbg(common, ATH_DBG_CALIBRATE, |
| 348 | "NF calibrated [%s] [chain %d] is %d\n", |
| 349 | (i >= 3 ? "ext" : "ctl"), i % 3, nf[i]); |
Felix Fietkau | 54bd500 | 2010-07-02 00:09:51 +0200 | [diff] [blame] | 350 | |
Felix Fietkau | 2292ca6 | 2010-08-02 15:53:13 +0200 | [diff] [blame] | 351 | if (nf[i] > ATH9K_NF_TOO_HIGH) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 352 | ath_dbg(common, ATH_DBG_CALIBRATE, |
| 353 | "NF[%d] (%d) > MAX (%d), correcting to MAX\n", |
| 354 | i, nf[i], ATH9K_NF_TOO_HIGH); |
Felix Fietkau | f2552e2 | 2010-07-02 00:09:50 +0200 | [diff] [blame] | 355 | nf[i] = limit->max; |
| 356 | } else if (nf[i] < limit->min) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 357 | ath_dbg(common, ATH_DBG_CALIBRATE, |
| 358 | "NF[%d] (%d) < MIN (%d), correcting to NOM\n", |
| 359 | i, nf[i], limit->min); |
Felix Fietkau | f2552e2 | 2010-07-02 00:09:50 +0200 | [diff] [blame] | 360 | nf[i] = limit->nominal; |
| 361 | } |
| 362 | } |
| 363 | } |
| 364 | |
Felix Fietkau | 4254bc1 | 2010-07-31 00:12:01 +0200 | [diff] [blame] | 365 | bool ath9k_hw_getnf(struct ath_hw *ah, struct ath9k_channel *chan) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 366 | { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 367 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 368 | int16_t nf, nfThresh; |
| 369 | int16_t nfarray[NUM_NF_READINGS] = { 0 }; |
| 370 | struct ath9k_nfcal_hist *h; |
Luis R. Rodriguez | 76061ab | 2008-12-23 15:58:41 -0800 | [diff] [blame] | 371 | struct ieee80211_channel *c = chan->chan; |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 372 | struct ath9k_hw_cal_data *caldata = ah->caldata; |
| 373 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 374 | chan->channelFlags &= (~CHANNEL_CW_INT); |
| 375 | if (REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 376 | ath_dbg(common, ATH_DBG_CALIBRATE, |
| 377 | "NF did not complete in calibration window\n"); |
Felix Fietkau | 4254bc1 | 2010-07-31 00:12:01 +0200 | [diff] [blame] | 378 | return false; |
Felix Fietkau | d9891c7 | 2010-09-29 17:15:27 +0200 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | ath9k_hw_do_getnf(ah, nfarray); |
| 382 | ath9k_hw_nf_sanitize(ah, nfarray); |
| 383 | nf = nfarray[0]; |
| 384 | if (ath9k_hw_get_nf_thresh(ah, c->band, &nfThresh) |
| 385 | && nf > nfThresh) { |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 386 | ath_dbg(common, ATH_DBG_CALIBRATE, |
| 387 | "noise floor failed detected; detected %d, threshold %d\n", |
| 388 | nf, nfThresh); |
Felix Fietkau | d9891c7 | 2010-09-29 17:15:27 +0200 | [diff] [blame] | 389 | chan->channelFlags |= CHANNEL_CW_INT; |
| 390 | } |
| 391 | |
| 392 | if (!caldata) { |
| 393 | chan->noisefloor = nf; |
Felix Fietkau | f23fba4 | 2011-07-28 14:08:56 +0200 | [diff] [blame] | 394 | ah->noise = ath9k_hw_getchan_noise(ah, chan); |
Felix Fietkau | d9891c7 | 2010-09-29 17:15:27 +0200 | [diff] [blame] | 395 | return false; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 396 | } |
| 397 | |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 398 | h = caldata->nfCalHist; |
Felix Fietkau | 4254bc1 | 2010-07-31 00:12:01 +0200 | [diff] [blame] | 399 | caldata->nfcal_pending = false; |
Felix Fietkau | 70cf153 | 2010-08-02 15:53:14 +0200 | [diff] [blame] | 400 | ath9k_hw_update_nfcal_hist_buffer(ah, caldata, nfarray); |
Felix Fietkau | d9891c7 | 2010-09-29 17:15:27 +0200 | [diff] [blame] | 401 | chan->noisefloor = h[0].privNF; |
Felix Fietkau | f23fba4 | 2011-07-28 14:08:56 +0200 | [diff] [blame] | 402 | ah->noise = ath9k_hw_getchan_noise(ah, chan); |
Felix Fietkau | 4254bc1 | 2010-07-31 00:12:01 +0200 | [diff] [blame] | 403 | return true; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 404 | } |
| 405 | |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 406 | void ath9k_init_nfcal_hist_buffer(struct ath_hw *ah, |
| 407 | struct ath9k_channel *chan) |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 408 | { |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 409 | struct ath9k_nfcal_hist *h; |
| 410 | s16 default_nf; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 411 | int i, j; |
Senthil Balasubramanian | a59b5a5 | 2009-07-14 20:17:07 -0400 | [diff] [blame] | 412 | |
Rajkumar Manoharan | bdd196a | 2011-01-15 01:01:22 +0530 | [diff] [blame] | 413 | ah->caldata->channel = chan->channel; |
| 414 | ah->caldata->channelFlags = chan->channelFlags & ~CHANNEL_CW_INT; |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 415 | h = ah->caldata->nfCalHist; |
| 416 | default_nf = ath9k_hw_get_default_nf(ah, chan); |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 417 | for (i = 0; i < NUM_NF_READINGS; i++) { |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 418 | h[i].currIndex = 0; |
| 419 | h[i].privNF = default_nf; |
| 420 | h[i].invalidNFcount = AR_PHY_CCA_FILTERWINDOW_LENGTH; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 421 | for (j = 0; j < ATH9K_NF_CAL_HIST_MAX; j++) { |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 422 | h[i].nfCalBuffer[j] = default_nf; |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 423 | } |
| 424 | } |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 425 | } |
| 426 | |
Felix Fietkau | 70cf153 | 2010-08-02 15:53:14 +0200 | [diff] [blame] | 427 | |
| 428 | void ath9k_hw_bstuck_nfcal(struct ath_hw *ah) |
| 429 | { |
| 430 | struct ath9k_hw_cal_data *caldata = ah->caldata; |
| 431 | |
| 432 | if (unlikely(!caldata)) |
| 433 | return; |
| 434 | |
| 435 | /* |
| 436 | * If beacons are stuck, the most likely cause is interference. |
| 437 | * Triggering a noise floor calibration at this point helps the |
| 438 | * hardware adapt to a noisy environment much faster. |
| 439 | * To ensure that we recover from stuck beacons quickly, let |
| 440 | * the baseband update the internal NF value itself, similar to |
| 441 | * what is being done after a full reset. |
| 442 | */ |
| 443 | if (!caldata->nfcal_pending) |
| 444 | ath9k_hw_start_nfcal(ah, true); |
| 445 | else if (!(REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF)) |
| 446 | ath9k_hw_getnf(ah, ah->curchan); |
| 447 | |
| 448 | caldata->nfcal_interference = true; |
| 449 | } |
| 450 | EXPORT_SYMBOL(ath9k_hw_bstuck_nfcal); |
| 451 | |