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