blob: 278365b8a8955dda362292b99949e63155be354c [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"
Paul Gortmakeree40fa02011-05-27 16:14:23 -040019#include <linux/export.h>
Sujithf1dc5602008-10-29 10:16:30 +053020
Luis R. Rodriguez795f5e22010-04-15 17:39:00 -040021/* Common calibration code */
22
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
Lorenzo Bianconi5bc225a2013-10-11 14:09:54 +020066s16 ath9k_hw_getchan_noise(struct ath_hw *ah, struct ath9k_channel *chan,
67 s16 nf)
Felix Fietkauf23fba42011-07-28 14:08:56 +020068{
69 s8 noise = ATH_DEFAULT_NOISE_FLOOR;
70
Lorenzo Bianconi5bc225a2013-10-11 14:09:54 +020071 if (nf) {
72 s8 delta = nf - ATH9K_NF_CAL_NOISE_THRESH -
Felix Fietkauf23fba42011-07-28 14:08:56 +020073 ath9k_hw_get_default_nf(ah, chan);
74 if (delta > 0)
75 noise += delta;
76 }
77 return noise;
78}
79EXPORT_SYMBOL(ath9k_hw_getchan_noise);
Felix Fietkau2292ca62010-08-02 15:53:13 +020080
81static void ath9k_hw_update_nfcal_hist_buffer(struct ath_hw *ah,
Felix Fietkau70cf1532010-08-02 15:53:14 +020082 struct ath9k_hw_cal_data *cal,
Sujithf1dc5602008-10-29 10:16:30 +053083 int16_t *nfarray)
84{
Felix Fietkau70cf1532010-08-02 15:53:14 +020085 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau2292ca62010-08-02 15:53:13 +020086 struct ath_nf_limits *limit;
Felix Fietkau70cf1532010-08-02 15:53:14 +020087 struct ath9k_nfcal_hist *h;
88 bool high_nf_mid = false;
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +053089 u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask;
Sujithf1dc5602008-10-29 10:16:30 +053090 int i;
91
Felix Fietkau70cf1532010-08-02 15:53:14 +020092 h = cal->nfCalHist;
Felix Fietkau2292ca62010-08-02 15:53:13 +020093 limit = ath9k_hw_get_nf_limits(ah, ah->curchan);
94
Sujithf1dc5602008-10-29 10:16:30 +053095 for (i = 0; i < NUM_NF_READINGS; i++) {
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +053096 if (!(chainmask & (1 << i)) ||
Rajkumar Manoharan6b3d3482011-08-13 10:28:16 +053097 ((i >= AR5416_MAX_CHAINS) && !IS_CHAN_HT40(ah->curchan)))
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +053098 continue;
99
Sujithf1dc5602008-10-29 10:16:30 +0530100 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 Fietkauf2552e22010-07-02 00:09:50 +0200106 h[i].invalidNFcount--;
107 h[i].privNF = nfarray[i];
Sujithf1dc5602008-10-29 10:16:30 +0530108 } else {
109 h[i].privNF =
110 ath9k_hw_get_nf_hist_mid(h[i].nfCalBuffer);
111 }
Felix Fietkau2292ca62010-08-02 15:53:13 +0200112
Felix Fietkau70cf1532010-08-02 15:53:14 +0200113 if (!h[i].privNF)
114 continue;
115
116 if (h[i].privNF > limit->max) {
117 high_nf_mid = true;
118
Joe Perchesd2182b62011-12-15 14:55:53 -0800119 ath_dbg(common, CALIBRATE,
Joe Perches226afe62010-12-02 19:12:37 -0800120 "NFmid[%d] (%d) > MAX (%d), %s\n",
121 i, h[i].privNF, limit->max,
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +0530122 (test_bit(NFCAL_INTF, &cal->cal_flags) ?
Joe Perches226afe62010-12-02 19:12:37 -0800123 "not corrected (due to interference)" :
124 "correcting to MAX"));
Felix Fietkau70cf1532010-08-02 15:53:14 +0200125
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 */
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +0530133 if (!test_bit(NFCAL_INTF, &cal->cal_flags))
Felix Fietkau70cf1532010-08-02 15:53:14 +0200134 h[i].privNF = limit->max;
135 }
Sujithf1dc5602008-10-29 10:16:30 +0530136 }
Felix Fietkau70cf1532010-08-02 15:53:14 +0200137
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)
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +0530144 clear_bit(NFCAL_INTF, &cal->cal_flags);
Sujithf1dc5602008-10-29 10:16:30 +0530145}
146
Luis R. Rodriguezb43d59f2010-04-15 17:38:58 -0400147static bool ath9k_hw_get_nf_thresh(struct ath_hw *ah,
148 enum ieee80211_band band,
149 int16_t *nft)
Sujithf1dc5602008-10-29 10:16:30 +0530150{
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800151 switch (band) {
152 case IEEE80211_BAND_5GHZ:
Sujithf74df6f2009-02-09 13:27:24 +0530153 *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_5);
Sujithf1dc5602008-10-29 10:16:30 +0530154 break;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800155 case IEEE80211_BAND_2GHZ:
Sujithf74df6f2009-02-09 13:27:24 +0530156 *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_2);
Sujithf1dc5602008-10-29 10:16:30 +0530157 break;
158 default:
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800159 BUG_ON(1);
Sujithf1dc5602008-10-29 10:16:30 +0530160 return false;
161 }
162
163 return true;
164}
165
Luis R. Rodriguez795f5e22010-04-15 17:39:00 -0400166void ath9k_hw_reset_calibration(struct ath_hw *ah,
167 struct ath9k_cal_list *currCal)
Sujithf1dc5602008-10-29 10:16:30 +0530168{
Sujithf1dc5602008-10-29 10:16:30 +0530169 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++) {
Sujith2660b812009-02-09 13:27:26 +0530176 ah->meas0.sign[i] = 0;
177 ah->meas1.sign[i] = 0;
178 ah->meas2.sign[i] = 0;
179 ah->meas3.sign[i] = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530180 }
181
Sujith2660b812009-02-09 13:27:26 +0530182 ah->cal_samples = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530183}
184
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800185/* This is done for the currently configured channel */
Sujithcbe61d82009-02-09 13:27:12 +0530186bool ath9k_hw_reset_calvalid(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530187{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700188 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbfe9462009-04-13 21:56:56 +0530189 struct ath9k_cal_list *currCal = ah->cal_list_curr;
Sujithf1dc5602008-10-29 10:16:30 +0530190
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200191 if (!ah->caldata)
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800192 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530193
194 if (!AR_SREV_9100(ah) && !AR_SREV_9160_10_OR_LATER(ah))
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800195 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530196
197 if (currCal == NULL)
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800198 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530199
200 if (currCal->calState != CAL_DONE) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800201 ath_dbg(common, CALIBRATE, "Calibration state incorrect, %d\n",
Joe Perches226afe62010-12-02 19:12:37 -0800202 currCal->calState);
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800203 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530204 }
205
Felix Fietkau64978272010-10-03 19:07:16 +0200206 if (!(ah->supp_cals & currCal->calData->calType))
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800207 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530208
Joe Perchesd2182b62011-12-15 14:55:53 -0800209 ath_dbg(common, CALIBRATE, "Resetting Cal %d state for channel %u\n",
Felix Fietkaue4744ec2013-10-11 23:31:01 +0200210 currCal->calData->calType, ah->curchan->chan->center_freq);
Sujithf1dc5602008-10-29 10:16:30 +0530211
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200212 ah->caldata->CalValid &= ~currCal->calData->calType;
Sujithf1dc5602008-10-29 10:16:30 +0530213 currCal->calState = CAL_WAITING;
214
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800215 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530216}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400217EXPORT_SYMBOL(ath9k_hw_reset_calvalid);
Sujithf1dc5602008-10-29 10:16:30 +0530218
Felix Fietkau00c86592010-07-30 21:02:09 +0200219void ath9k_hw_start_nfcal(struct ath_hw *ah, bool update)
Sujithf1dc5602008-10-29 10:16:30 +0530220{
Felix Fietkau4254bc12010-07-31 00:12:01 +0200221 if (ah->caldata)
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +0530222 set_bit(NFCAL_PENDING, &ah->caldata->cal_flags);
Felix Fietkau4254bc12010-07-31 00:12:01 +0200223
Sujithf1dc5602008-10-29 10:16:30 +0530224 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
225 AR_PHY_AGC_CONTROL_ENABLE_NF);
Felix Fietkau00c86592010-07-30 21:02:09 +0200226
227 if (update)
228 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
Sujithf1dc5602008-10-29 10:16:30 +0530229 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
Felix Fietkau00c86592010-07-30 21:02:09 +0200230 else
231 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
232 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
233
Sujithf1dc5602008-10-29 10:16:30 +0530234 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
235}
236
Felix Fietkaubbacee12010-07-11 15:44:42 +0200237void ath9k_hw_loadnf(struct ath_hw *ah, struct ath9k_channel *chan)
238{
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200239 struct ath9k_nfcal_hist *h = NULL;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200240 unsigned i, j;
241 int32_t val;
Felix Fietkau487f0e02010-07-23 04:31:56 +0200242 u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200243 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200244 s16 default_nf = ath9k_hw_get_default_nf(ah, chan);
Felix Fietkaubbacee12010-07-11 15:44:42 +0200245
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200246 if (ah->caldata)
247 h = ah->caldata->nfCalHist;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200248
249 for (i = 0; i < NUM_NF_READINGS; i++) {
250 if (chainmask & (1 << i)) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200251 s16 nfval;
252
Felix Fietkaue4744ec2013-10-11 23:31:01 +0200253 if ((i >= AR5416_MAX_CHAINS) && !IS_CHAN_HT40(chan))
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +0530254 continue;
255
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200256 if (h)
257 nfval = h[i].privNF;
258 else
259 nfval = default_nf;
260
Felix Fietkaubbacee12010-07-11 15:44:42 +0200261 val = REG_READ(ah, ah->nf_regs[i]);
262 val &= 0xFFFFFE00;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200263 val |= (((u32) nfval << 1) & 0x1ff);
Felix Fietkaubbacee12010-07-11 15:44:42 +0200264 REG_WRITE(ah, ah->nf_regs[i], val);
265 }
266 }
267
268 /*
269 * Load software filtered NF value into baseband internal minCCApwr
270 * variable.
271 */
272 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
273 AR_PHY_AGC_CONTROL_ENABLE_NF);
274 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
275 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
276 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
277
278 /*
279 * Wait for load to complete, should be fast, a few 10s of us.
280 * The max delay was changed from an original 250us to 10000us
281 * since 250us often results in NF load timeout and causes deaf
282 * condition during stress testing 12/12/2009
283 */
Vivek Natarajan23952ec2011-03-10 11:05:43 +0530284 for (j = 0; j < 10000; j++) {
Felix Fietkaubbacee12010-07-11 15:44:42 +0200285 if ((REG_READ(ah, AR_PHY_AGC_CONTROL) &
286 AR_PHY_AGC_CONTROL_NF) == 0)
287 break;
288 udelay(10);
289 }
290
291 /*
292 * We timed out waiting for the noisefloor to load, probably due to an
293 * in-progress rx. Simply return here and allow the load plenty of time
294 * to complete before the next calibration interval. We need to avoid
295 * trying to load -50 (which happens below) while the previous load is
296 * still in progress as this can cause rx deafness. Instead by returning
297 * here, the baseband nf cal will just be capped by our present
298 * noisefloor until the next calibration timer.
299 */
Vivek Natarajan23952ec2011-03-10 11:05:43 +0530300 if (j == 10000) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800301 ath_dbg(common, ANY,
Joe Perches226afe62010-12-02 19:12:37 -0800302 "Timeout while waiting for nf to load: AR_PHY_AGC_CONTROL=0x%x\n",
303 REG_READ(ah, AR_PHY_AGC_CONTROL));
Felix Fietkaubbacee12010-07-11 15:44:42 +0200304 return;
305 }
306
307 /*
308 * Restore maxCCAPower register parameter again so that we're not capped
309 * by the median we just loaded. This will be initial (and max) value
310 * of next noise floor calibration the baseband does.
311 */
312 ENABLE_REGWRITE_BUFFER(ah);
313 for (i = 0; i < NUM_NF_READINGS; i++) {
314 if (chainmask & (1 << i)) {
Felix Fietkaue4744ec2013-10-11 23:31:01 +0200315 if ((i >= AR5416_MAX_CHAINS) && !IS_CHAN_HT40(chan))
Rajkumar Manoharan28ef6452011-05-04 19:37:17 +0530316 continue;
317
Felix Fietkaubbacee12010-07-11 15:44:42 +0200318 val = REG_READ(ah, ah->nf_regs[i]);
319 val &= 0xFFFFFE00;
320 val |= (((u32) (-50) << 1) & 0x1ff);
321 REG_WRITE(ah, ah->nf_regs[i], val);
322 }
323 }
324 REGWRITE_BUFFER_FLUSH(ah);
Felix Fietkaubbacee12010-07-11 15:44:42 +0200325}
326
327
Felix Fietkauf2552e22010-07-02 00:09:50 +0200328static void ath9k_hw_nf_sanitize(struct ath_hw *ah, s16 *nf)
329{
330 struct ath_common *common = ath9k_hw_common(ah);
331 struct ath_nf_limits *limit;
332 int i;
333
334 if (IS_CHAN_2GHZ(ah->curchan))
335 limit = &ah->nf_2g;
336 else
337 limit = &ah->nf_5g;
338
339 for (i = 0; i < NUM_NF_READINGS; i++) {
340 if (!nf[i])
341 continue;
342
Joe Perchesd2182b62011-12-15 14:55:53 -0800343 ath_dbg(common, CALIBRATE,
Joe Perches226afe62010-12-02 19:12:37 -0800344 "NF calibrated [%s] [chain %d] is %d\n",
345 (i >= 3 ? "ext" : "ctl"), i % 3, nf[i]);
Felix Fietkau54bd5002010-07-02 00:09:51 +0200346
Rajkumar Manoharan2ee0a072012-03-15 06:08:04 +0530347 if (nf[i] > limit->max) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800348 ath_dbg(common, CALIBRATE,
Joe Perches226afe62010-12-02 19:12:37 -0800349 "NF[%d] (%d) > MAX (%d), correcting to MAX\n",
Rajkumar Manoharan2ee0a072012-03-15 06:08:04 +0530350 i, nf[i], limit->max);
Felix Fietkauf2552e22010-07-02 00:09:50 +0200351 nf[i] = limit->max;
352 } else if (nf[i] < limit->min) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800353 ath_dbg(common, CALIBRATE,
Joe Perches226afe62010-12-02 19:12:37 -0800354 "NF[%d] (%d) < MIN (%d), correcting to NOM\n",
355 i, nf[i], limit->min);
Felix Fietkauf2552e22010-07-02 00:09:50 +0200356 nf[i] = limit->nominal;
357 }
358 }
359}
360
Felix Fietkau4254bc12010-07-31 00:12:01 +0200361bool ath9k_hw_getnf(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +0530362{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700363 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530364 int16_t nf, nfThresh;
365 int16_t nfarray[NUM_NF_READINGS] = { 0 };
366 struct ath9k_nfcal_hist *h;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800367 struct ieee80211_channel *c = chan->chan;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200368 struct ath9k_hw_cal_data *caldata = ah->caldata;
369
Sujithf1dc5602008-10-29 10:16:30 +0530370 if (REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800371 ath_dbg(common, CALIBRATE,
Joe Perches226afe62010-12-02 19:12:37 -0800372 "NF did not complete in calibration window\n");
Felix Fietkau4254bc12010-07-31 00:12:01 +0200373 return false;
Felix Fietkaud9891c72010-09-29 17:15:27 +0200374 }
375
376 ath9k_hw_do_getnf(ah, nfarray);
377 ath9k_hw_nf_sanitize(ah, nfarray);
378 nf = nfarray[0];
379 if (ath9k_hw_get_nf_thresh(ah, c->band, &nfThresh)
380 && nf > nfThresh) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800381 ath_dbg(common, CALIBRATE,
Joe Perches226afe62010-12-02 19:12:37 -0800382 "noise floor failed detected; detected %d, threshold %d\n",
383 nf, nfThresh);
Felix Fietkaud9891c72010-09-29 17:15:27 +0200384 }
385
386 if (!caldata) {
387 chan->noisefloor = nf;
388 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530389 }
390
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200391 h = caldata->nfCalHist;
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +0530392 clear_bit(NFCAL_PENDING, &caldata->cal_flags);
Felix Fietkau70cf1532010-08-02 15:53:14 +0200393 ath9k_hw_update_nfcal_hist_buffer(ah, caldata, nfarray);
Felix Fietkaud9891c72010-09-29 17:15:27 +0200394 chan->noisefloor = h[0].privNF;
Lorenzo Bianconi5bc225a2013-10-11 14:09:54 +0200395 ah->noise = ath9k_hw_getchan_noise(ah, chan, chan->noisefloor);
Felix Fietkau4254bc12010-07-31 00:12:01 +0200396 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530397}
Rajkumar Manoharan1a19f772012-01-09 15:37:53 +0530398EXPORT_SYMBOL(ath9k_hw_getnf);
Sujithf1dc5602008-10-29 10:16:30 +0530399
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200400void ath9k_init_nfcal_hist_buffer(struct ath_hw *ah,
401 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +0530402{
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200403 struct ath9k_nfcal_hist *h;
404 s16 default_nf;
Sujithf1dc5602008-10-29 10:16:30 +0530405 int i, j;
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400406
Rajkumar Manoharanbdd196a2011-01-15 01:01:22 +0530407 ah->caldata->channel = chan->channel;
Sujith Manoharanfcb9a3d2013-03-04 12:42:52 +0530408 ah->caldata->channelFlags = chan->channelFlags;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200409 h = ah->caldata->nfCalHist;
410 default_nf = ath9k_hw_get_default_nf(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530411 for (i = 0; i < NUM_NF_READINGS; i++) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200412 h[i].currIndex = 0;
413 h[i].privNF = default_nf;
414 h[i].invalidNFcount = AR_PHY_CCA_FILTERWINDOW_LENGTH;
Sujithf1dc5602008-10-29 10:16:30 +0530415 for (j = 0; j < ATH9K_NF_CAL_HIST_MAX; j++) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200416 h[i].nfCalBuffer[j] = default_nf;
Sujithf1dc5602008-10-29 10:16:30 +0530417 }
418 }
Sujithf1dc5602008-10-29 10:16:30 +0530419}
420
Felix Fietkau70cf1532010-08-02 15:53:14 +0200421
422void ath9k_hw_bstuck_nfcal(struct ath_hw *ah)
423{
424 struct ath9k_hw_cal_data *caldata = ah->caldata;
425
426 if (unlikely(!caldata))
427 return;
428
429 /*
430 * If beacons are stuck, the most likely cause is interference.
431 * Triggering a noise floor calibration at this point helps the
432 * hardware adapt to a noisy environment much faster.
433 * To ensure that we recover from stuck beacons quickly, let
434 * the baseband update the internal NF value itself, similar to
435 * what is being done after a full reset.
436 */
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +0530437 if (!test_bit(NFCAL_PENDING, &caldata->cal_flags))
Felix Fietkau70cf1532010-08-02 15:53:14 +0200438 ath9k_hw_start_nfcal(ah, true);
439 else if (!(REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF))
440 ath9k_hw_getnf(ah, ah->curchan);
441
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +0530442 set_bit(NFCAL_INTF, &caldata->cal_flags);
Felix Fietkau70cf1532010-08-02 15:53:14 +0200443}
444EXPORT_SYMBOL(ath9k_hw_bstuck_nfcal);
445