blob: a1250c586e40884989a853845e1c68230434f6c2 [file] [log] [blame]
Sujithf1dc5602008-10-29 10:16:30 +05301/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Sujithf1dc5602008-10-29 10:16:30 +05303 *
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. Rodriguezc46917b2009-09-13 02:42:02 -070017#include "hw.h"
Felix Fietkau641d9922010-04-15 17:38:49 -040018#include "hw-ops.h"
Sujithf1dc5602008-10-29 10:16:30 +053019
Luis R. Rodriguez795f5e22010-04-15 17:39:00 -040020/* Common calibration code */
21
Felix Fietkau2292ca62010-08-02 15:53:13 +020022#define ATH9K_NF_TOO_HIGH -60
Sujithf1dc5602008-10-29 10:16:30 +053023
Sujithf1dc5602008-10-29 10:16:30 +053024static 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 Fietkau2292ca62010-08-02 15:53:13 +020047static 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
60static 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
67static void ath9k_hw_update_nfcal_hist_buffer(struct ath_hw *ah,
Felix Fietkau70cf1532010-08-02 15:53:14 +020068 struct ath9k_hw_cal_data *cal,
Sujithf1dc5602008-10-29 10:16:30 +053069 int16_t *nfarray)
70{
Felix Fietkau70cf1532010-08-02 15:53:14 +020071 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +053072 struct ieee80211_conf *conf = &common->hw->conf;
Felix Fietkau2292ca62010-08-02 15:53:13 +020073 struct ath_nf_limits *limit;
Felix Fietkau70cf1532010-08-02 15:53:14 +020074 struct ath9k_nfcal_hist *h;
75 bool high_nf_mid = false;
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +053076 u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask;
Sujithf1dc5602008-10-29 10:16:30 +053077 int i;
78
Felix Fietkau70cf1532010-08-02 15:53:14 +020079 h = cal->nfCalHist;
Felix Fietkau2292ca62010-08-02 15:53:13 +020080 limit = ath9k_hw_get_nf_limits(ah, ah->curchan);
81
Sujithf1dc5602008-10-29 10:16:30 +053082 for (i = 0; i < NUM_NF_READINGS; i++) {
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +053083 if (!(chainmask & (1 << i)) ||
84 ((i >= AR5416_MAX_CHAINS) && !conf_is_ht40(conf)))
85 continue;
86
Sujithf1dc5602008-10-29 10:16:30 +053087 h[i].nfCalBuffer[h[i].currIndex] = nfarray[i];
88
89 if (++h[i].currIndex >= ATH9K_NF_CAL_HIST_MAX)
90 h[i].currIndex = 0;
91
92 if (h[i].invalidNFcount > 0) {
Felix Fietkauf2552e22010-07-02 00:09:50 +020093 h[i].invalidNFcount--;
94 h[i].privNF = nfarray[i];
Sujithf1dc5602008-10-29 10:16:30 +053095 } else {
96 h[i].privNF =
97 ath9k_hw_get_nf_hist_mid(h[i].nfCalBuffer);
98 }
Felix Fietkau2292ca62010-08-02 15:53:13 +020099
Felix Fietkau70cf1532010-08-02 15:53:14 +0200100 if (!h[i].privNF)
101 continue;
102
103 if (h[i].privNF > limit->max) {
104 high_nf_mid = true;
105
Joe Perches226afe62010-12-02 19:12:37 -0800106 ath_dbg(common, ATH_DBG_CALIBRATE,
107 "NFmid[%d] (%d) > MAX (%d), %s\n",
108 i, h[i].privNF, limit->max,
109 (cal->nfcal_interference ?
110 "not corrected (due to interference)" :
111 "correcting to MAX"));
Felix Fietkau70cf1532010-08-02 15:53:14 +0200112
113 /*
114 * Normally we limit the average noise floor by the
115 * hardware specific maximum here. However if we have
116 * encountered stuck beacons because of interference,
117 * we bypass this limit here in order to better deal
118 * with our environment.
119 */
120 if (!cal->nfcal_interference)
121 h[i].privNF = limit->max;
122 }
Sujithf1dc5602008-10-29 10:16:30 +0530123 }
Felix Fietkau70cf1532010-08-02 15:53:14 +0200124
125 /*
126 * If the noise floor seems normal for all chains, assume that
127 * there is no significant interference in the environment anymore.
128 * Re-enable the enforcement of the NF maximum again.
129 */
130 if (!high_nf_mid)
131 cal->nfcal_interference = false;
Sujithf1dc5602008-10-29 10:16:30 +0530132}
133
Luis R. Rodriguezb43d59f2010-04-15 17:38:58 -0400134static bool ath9k_hw_get_nf_thresh(struct ath_hw *ah,
135 enum ieee80211_band band,
136 int16_t *nft)
Sujithf1dc5602008-10-29 10:16:30 +0530137{
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800138 switch (band) {
139 case IEEE80211_BAND_5GHZ:
Sujithf74df6f2009-02-09 13:27:24 +0530140 *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_5);
Sujithf1dc5602008-10-29 10:16:30 +0530141 break;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800142 case IEEE80211_BAND_2GHZ:
Sujithf74df6f2009-02-09 13:27:24 +0530143 *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_2);
Sujithf1dc5602008-10-29 10:16:30 +0530144 break;
145 default:
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800146 BUG_ON(1);
Sujithf1dc5602008-10-29 10:16:30 +0530147 return false;
148 }
149
150 return true;
151}
152
Luis R. Rodriguez795f5e22010-04-15 17:39:00 -0400153void ath9k_hw_reset_calibration(struct ath_hw *ah,
154 struct ath9k_cal_list *currCal)
Sujithf1dc5602008-10-29 10:16:30 +0530155{
Sujithf1dc5602008-10-29 10:16:30 +0530156 int i;
157
158 ath9k_hw_setup_calibration(ah, currCal);
159
160 currCal->calState = CAL_RUNNING;
161
162 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530163 ah->meas0.sign[i] = 0;
164 ah->meas1.sign[i] = 0;
165 ah->meas2.sign[i] = 0;
166 ah->meas3.sign[i] = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530167 }
168
Sujith2660b812009-02-09 13:27:26 +0530169 ah->cal_samples = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530170}
171
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800172/* This is done for the currently configured channel */
Sujithcbe61d82009-02-09 13:27:12 +0530173bool ath9k_hw_reset_calvalid(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530174{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700175 struct ath_common *common = ath9k_hw_common(ah);
176 struct ieee80211_conf *conf = &common->hw->conf;
Sujithcbfe9462009-04-13 21:56:56 +0530177 struct ath9k_cal_list *currCal = ah->cal_list_curr;
Sujithf1dc5602008-10-29 10:16:30 +0530178
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200179 if (!ah->caldata)
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800180 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530181
182 if (!AR_SREV_9100(ah) && !AR_SREV_9160_10_OR_LATER(ah))
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800183 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530184
185 if (currCal == NULL)
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800186 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530187
188 if (currCal->calState != CAL_DONE) {
Joe Perches226afe62010-12-02 19:12:37 -0800189 ath_dbg(common, ATH_DBG_CALIBRATE,
190 "Calibration state incorrect, %d\n",
191 currCal->calState);
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800192 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530193 }
194
Felix Fietkau64978272010-10-03 19:07:16 +0200195 if (!(ah->supp_cals & currCal->calData->calType))
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800196 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530197
Joe Perches226afe62010-12-02 19:12:37 -0800198 ath_dbg(common, ATH_DBG_CALIBRATE,
199 "Resetting Cal %d state for channel %u\n",
200 currCal->calData->calType, conf->channel->center_freq);
Sujithf1dc5602008-10-29 10:16:30 +0530201
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200202 ah->caldata->CalValid &= ~currCal->calData->calType;
Sujithf1dc5602008-10-29 10:16:30 +0530203 currCal->calState = CAL_WAITING;
204
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800205 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530206}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400207EXPORT_SYMBOL(ath9k_hw_reset_calvalid);
Sujithf1dc5602008-10-29 10:16:30 +0530208
Felix Fietkau00c86592010-07-30 21:02:09 +0200209void ath9k_hw_start_nfcal(struct ath_hw *ah, bool update)
Sujithf1dc5602008-10-29 10:16:30 +0530210{
Felix Fietkau4254bc12010-07-31 00:12:01 +0200211 if (ah->caldata)
212 ah->caldata->nfcal_pending = true;
213
Sujithf1dc5602008-10-29 10:16:30 +0530214 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
215 AR_PHY_AGC_CONTROL_ENABLE_NF);
Felix Fietkau00c86592010-07-30 21:02:09 +0200216
217 if (update)
218 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
Sujithf1dc5602008-10-29 10:16:30 +0530219 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
Felix Fietkau00c86592010-07-30 21:02:09 +0200220 else
221 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
222 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
223
Sujithf1dc5602008-10-29 10:16:30 +0530224 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
225}
226
Felix Fietkaubbacee12010-07-11 15:44:42 +0200227void ath9k_hw_loadnf(struct ath_hw *ah, struct ath9k_channel *chan)
228{
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200229 struct ath9k_nfcal_hist *h = NULL;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200230 unsigned i, j;
231 int32_t val;
Felix Fietkau487f0e02010-07-23 04:31:56 +0200232 u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200233 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +0530234 struct ieee80211_conf *conf = &common->hw->conf;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200235 s16 default_nf = ath9k_hw_get_default_nf(ah, chan);
Felix Fietkaubbacee12010-07-11 15:44:42 +0200236
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200237 if (ah->caldata)
238 h = ah->caldata->nfCalHist;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200239
240 for (i = 0; i < NUM_NF_READINGS; i++) {
241 if (chainmask & (1 << i)) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200242 s16 nfval;
243
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +0530244 if ((i >= AR5416_MAX_CHAINS) && !conf_is_ht40(conf))
245 continue;
246
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200247 if (h)
248 nfval = h[i].privNF;
249 else
250 nfval = default_nf;
251
Felix Fietkaubbacee12010-07-11 15:44:42 +0200252 val = REG_READ(ah, ah->nf_regs[i]);
253 val &= 0xFFFFFE00;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200254 val |= (((u32) nfval << 1) & 0x1ff);
Felix Fietkaubbacee12010-07-11 15:44:42 +0200255 REG_WRITE(ah, ah->nf_regs[i], val);
256 }
257 }
258
259 /*
260 * Load software filtered NF value into baseband internal minCCApwr
261 * variable.
262 */
263 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
264 AR_PHY_AGC_CONTROL_ENABLE_NF);
265 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
266 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
267 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
268
269 /*
270 * Wait for load to complete, should be fast, a few 10s of us.
271 * The max delay was changed from an original 250us to 10000us
272 * since 250us often results in NF load timeout and causes deaf
273 * condition during stress testing 12/12/2009
274 */
Vivek Natarajan23952ec2011-03-10 11:05:43 +0530275 for (j = 0; j < 10000; j++) {
Felix Fietkaubbacee12010-07-11 15:44:42 +0200276 if ((REG_READ(ah, AR_PHY_AGC_CONTROL) &
277 AR_PHY_AGC_CONTROL_NF) == 0)
278 break;
279 udelay(10);
280 }
281
282 /*
283 * We timed out waiting for the noisefloor to load, probably due to an
284 * in-progress rx. Simply return here and allow the load plenty of time
285 * to complete before the next calibration interval. We need to avoid
286 * trying to load -50 (which happens below) while the previous load is
287 * still in progress as this can cause rx deafness. Instead by returning
288 * here, the baseband nf cal will just be capped by our present
289 * noisefloor until the next calibration timer.
290 */
Vivek Natarajan23952ec2011-03-10 11:05:43 +0530291 if (j == 10000) {
Joe Perches226afe62010-12-02 19:12:37 -0800292 ath_dbg(common, ATH_DBG_ANY,
293 "Timeout while waiting for nf to load: AR_PHY_AGC_CONTROL=0x%x\n",
294 REG_READ(ah, AR_PHY_AGC_CONTROL));
Felix Fietkaubbacee12010-07-11 15:44:42 +0200295 return;
296 }
297
298 /*
299 * Restore maxCCAPower register parameter again so that we're not capped
300 * by the median we just loaded. This will be initial (and max) value
301 * of next noise floor calibration the baseband does.
302 */
303 ENABLE_REGWRITE_BUFFER(ah);
304 for (i = 0; i < NUM_NF_READINGS; i++) {
305 if (chainmask & (1 << i)) {
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +0530306 if ((i >= AR5416_MAX_CHAINS) && !conf_is_ht40(conf))
307 continue;
308
Felix Fietkaubbacee12010-07-11 15:44:42 +0200309 val = REG_READ(ah, ah->nf_regs[i]);
310 val &= 0xFFFFFE00;
311 val |= (((u32) (-50) << 1) & 0x1ff);
312 REG_WRITE(ah, ah->nf_regs[i], val);
313 }
314 }
315 REGWRITE_BUFFER_FLUSH(ah);
Felix Fietkaubbacee12010-07-11 15:44:42 +0200316}
317
318
Felix Fietkauf2552e22010-07-02 00:09:50 +0200319static void ath9k_hw_nf_sanitize(struct ath_hw *ah, s16 *nf)
320{
321 struct ath_common *common = ath9k_hw_common(ah);
322 struct ath_nf_limits *limit;
323 int i;
324
325 if (IS_CHAN_2GHZ(ah->curchan))
326 limit = &ah->nf_2g;
327 else
328 limit = &ah->nf_5g;
329
330 for (i = 0; i < NUM_NF_READINGS; i++) {
331 if (!nf[i])
332 continue;
333
Joe Perches226afe62010-12-02 19:12:37 -0800334 ath_dbg(common, ATH_DBG_CALIBRATE,
335 "NF calibrated [%s] [chain %d] is %d\n",
336 (i >= 3 ? "ext" : "ctl"), i % 3, nf[i]);
Felix Fietkau54bd5002010-07-02 00:09:51 +0200337
Felix Fietkau2292ca62010-08-02 15:53:13 +0200338 if (nf[i] > ATH9K_NF_TOO_HIGH) {
Joe Perches226afe62010-12-02 19:12:37 -0800339 ath_dbg(common, ATH_DBG_CALIBRATE,
340 "NF[%d] (%d) > MAX (%d), correcting to MAX\n",
341 i, nf[i], ATH9K_NF_TOO_HIGH);
Felix Fietkauf2552e22010-07-02 00:09:50 +0200342 nf[i] = limit->max;
343 } else if (nf[i] < limit->min) {
Joe Perches226afe62010-12-02 19:12:37 -0800344 ath_dbg(common, ATH_DBG_CALIBRATE,
345 "NF[%d] (%d) < MIN (%d), correcting to NOM\n",
346 i, nf[i], limit->min);
Felix Fietkauf2552e22010-07-02 00:09:50 +0200347 nf[i] = limit->nominal;
348 }
349 }
350}
351
Felix Fietkau4254bc12010-07-31 00:12:01 +0200352bool ath9k_hw_getnf(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +0530353{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700354 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530355 int16_t nf, nfThresh;
356 int16_t nfarray[NUM_NF_READINGS] = { 0 };
357 struct ath9k_nfcal_hist *h;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800358 struct ieee80211_channel *c = chan->chan;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200359 struct ath9k_hw_cal_data *caldata = ah->caldata;
360
Sujithf1dc5602008-10-29 10:16:30 +0530361 chan->channelFlags &= (~CHANNEL_CW_INT);
362 if (REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF) {
Joe Perches226afe62010-12-02 19:12:37 -0800363 ath_dbg(common, ATH_DBG_CALIBRATE,
364 "NF did not complete in calibration window\n");
Felix Fietkau4254bc12010-07-31 00:12:01 +0200365 return false;
Felix Fietkaud9891c72010-09-29 17:15:27 +0200366 }
367
368 ath9k_hw_do_getnf(ah, nfarray);
369 ath9k_hw_nf_sanitize(ah, nfarray);
370 nf = nfarray[0];
371 if (ath9k_hw_get_nf_thresh(ah, c->band, &nfThresh)
372 && nf > nfThresh) {
Joe Perches226afe62010-12-02 19:12:37 -0800373 ath_dbg(common, ATH_DBG_CALIBRATE,
374 "noise floor failed detected; detected %d, threshold %d\n",
375 nf, nfThresh);
Felix Fietkaud9891c72010-09-29 17:15:27 +0200376 chan->channelFlags |= CHANNEL_CW_INT;
377 }
378
379 if (!caldata) {
380 chan->noisefloor = nf;
381 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530382 }
383
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200384 h = caldata->nfCalHist;
Felix Fietkau4254bc12010-07-31 00:12:01 +0200385 caldata->nfcal_pending = false;
Felix Fietkau70cf1532010-08-02 15:53:14 +0200386 ath9k_hw_update_nfcal_hist_buffer(ah, caldata, nfarray);
Felix Fietkaud9891c72010-09-29 17:15:27 +0200387 chan->noisefloor = h[0].privNF;
Felix Fietkau4254bc12010-07-31 00:12:01 +0200388 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530389}
390
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200391void ath9k_init_nfcal_hist_buffer(struct ath_hw *ah,
392 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +0530393{
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200394 struct ath9k_nfcal_hist *h;
395 s16 default_nf;
Sujithf1dc5602008-10-29 10:16:30 +0530396 int i, j;
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400397
Rajkumar Manoharanbdd196a2011-01-15 01:01:22 +0530398 ah->caldata->channel = chan->channel;
399 ah->caldata->channelFlags = chan->channelFlags & ~CHANNEL_CW_INT;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200400 h = ah->caldata->nfCalHist;
401 default_nf = ath9k_hw_get_default_nf(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530402 for (i = 0; i < NUM_NF_READINGS; i++) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200403 h[i].currIndex = 0;
404 h[i].privNF = default_nf;
405 h[i].invalidNFcount = AR_PHY_CCA_FILTERWINDOW_LENGTH;
Sujithf1dc5602008-10-29 10:16:30 +0530406 for (j = 0; j < ATH9K_NF_CAL_HIST_MAX; j++) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200407 h[i].nfCalBuffer[j] = default_nf;
Sujithf1dc5602008-10-29 10:16:30 +0530408 }
409 }
Sujithf1dc5602008-10-29 10:16:30 +0530410}
411
Felix Fietkau70cf1532010-08-02 15:53:14 +0200412
413void ath9k_hw_bstuck_nfcal(struct ath_hw *ah)
414{
415 struct ath9k_hw_cal_data *caldata = ah->caldata;
416
417 if (unlikely(!caldata))
418 return;
419
420 /*
421 * If beacons are stuck, the most likely cause is interference.
422 * Triggering a noise floor calibration at this point helps the
423 * hardware adapt to a noisy environment much faster.
424 * To ensure that we recover from stuck beacons quickly, let
425 * the baseband update the internal NF value itself, similar to
426 * what is being done after a full reset.
427 */
428 if (!caldata->nfcal_pending)
429 ath9k_hw_start_nfcal(ah, true);
430 else if (!(REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF))
431 ath9k_hw_getnf(ah, ah->curchan);
432
433 caldata->nfcal_interference = true;
434}
435EXPORT_SYMBOL(ath9k_hw_bstuck_nfcal);
436