blob: 294016f9ce7df04852abd11bce0a173f59861f8e [file] [log] [blame]
Sujithf1dc5602008-10-29 10:16:30 +05301/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 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
Sujithf1dc5602008-10-29 10:16:30 +053022/* We can tune this as we go by monitoring really low values */
23#define ATH9K_NF_TOO_LOW -60
24
25/* AR5416 may return very high value (like -31 dBm), in those cases the nf
26 * is incorrect and we should use the static NF value. Later we can try to
27 * find out why they are reporting these values */
28
Sujithcbe61d82009-02-09 13:27:12 +053029static bool ath9k_hw_nf_in_range(struct ath_hw *ah, s16 nf)
Sujithf1dc5602008-10-29 10:16:30 +053030{
31 if (nf > ATH9K_NF_TOO_LOW) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070032 ath_print(ath9k_hw_common(ah), ATH_DBG_CALIBRATE,
33 "noise floor value detected (%d) is "
34 "lower than what we think is a "
35 "reasonable value (%d)\n",
36 nf, ATH9K_NF_TOO_LOW);
Sujithf1dc5602008-10-29 10:16:30 +053037 return false;
38 }
39 return true;
40}
41
42static int16_t ath9k_hw_get_nf_hist_mid(int16_t *nfCalBuffer)
43{
44 int16_t nfval;
45 int16_t sort[ATH9K_NF_CAL_HIST_MAX];
46 int i, j;
47
48 for (i = 0; i < ATH9K_NF_CAL_HIST_MAX; i++)
49 sort[i] = nfCalBuffer[i];
50
51 for (i = 0; i < ATH9K_NF_CAL_HIST_MAX - 1; i++) {
52 for (j = 1; j < ATH9K_NF_CAL_HIST_MAX - i; j++) {
53 if (sort[j] > sort[j - 1]) {
54 nfval = sort[j];
55 sort[j] = sort[j - 1];
56 sort[j - 1] = nfval;
57 }
58 }
59 }
60 nfval = sort[(ATH9K_NF_CAL_HIST_MAX - 1) >> 1];
61
62 return nfval;
63}
64
65static void ath9k_hw_update_nfcal_hist_buffer(struct ath9k_nfcal_hist *h,
66 int16_t *nfarray)
67{
68 int i;
69
70 for (i = 0; i < NUM_NF_READINGS; i++) {
71 h[i].nfCalBuffer[h[i].currIndex] = nfarray[i];
72
73 if (++h[i].currIndex >= ATH9K_NF_CAL_HIST_MAX)
74 h[i].currIndex = 0;
75
76 if (h[i].invalidNFcount > 0) {
Felix Fietkauf2552e22010-07-02 00:09:50 +020077 h[i].invalidNFcount--;
78 h[i].privNF = nfarray[i];
Sujithf1dc5602008-10-29 10:16:30 +053079 } else {
80 h[i].privNF =
81 ath9k_hw_get_nf_hist_mid(h[i].nfCalBuffer);
82 }
83 }
Sujithf1dc5602008-10-29 10:16:30 +053084}
85
Luis R. Rodriguezb43d59f2010-04-15 17:38:58 -040086static bool ath9k_hw_get_nf_thresh(struct ath_hw *ah,
87 enum ieee80211_band band,
88 int16_t *nft)
Sujithf1dc5602008-10-29 10:16:30 +053089{
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -080090 switch (band) {
91 case IEEE80211_BAND_5GHZ:
Sujithf74df6f2009-02-09 13:27:24 +053092 *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_5);
Sujithf1dc5602008-10-29 10:16:30 +053093 break;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -080094 case IEEE80211_BAND_2GHZ:
Sujithf74df6f2009-02-09 13:27:24 +053095 *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_2);
Sujithf1dc5602008-10-29 10:16:30 +053096 break;
97 default:
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -080098 BUG_ON(1);
Sujithf1dc5602008-10-29 10:16:30 +053099 return false;
100 }
101
102 return true;
103}
104
Luis R. Rodriguez795f5e22010-04-15 17:39:00 -0400105void ath9k_hw_reset_calibration(struct ath_hw *ah,
106 struct ath9k_cal_list *currCal)
Sujithf1dc5602008-10-29 10:16:30 +0530107{
Sujithf1dc5602008-10-29 10:16:30 +0530108 int i;
109
110 ath9k_hw_setup_calibration(ah, currCal);
111
112 currCal->calState = CAL_RUNNING;
113
114 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530115 ah->meas0.sign[i] = 0;
116 ah->meas1.sign[i] = 0;
117 ah->meas2.sign[i] = 0;
118 ah->meas3.sign[i] = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530119 }
120
Sujith2660b812009-02-09 13:27:26 +0530121 ah->cal_samples = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530122}
123
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800124/* This is done for the currently configured channel */
Sujithcbe61d82009-02-09 13:27:12 +0530125bool ath9k_hw_reset_calvalid(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530126{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700127 struct ath_common *common = ath9k_hw_common(ah);
128 struct ieee80211_conf *conf = &common->hw->conf;
Sujithcbfe9462009-04-13 21:56:56 +0530129 struct ath9k_cal_list *currCal = ah->cal_list_curr;
Sujithf1dc5602008-10-29 10:16:30 +0530130
Sujith2660b812009-02-09 13:27:26 +0530131 if (!ah->curchan)
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800132 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530133
134 if (!AR_SREV_9100(ah) && !AR_SREV_9160_10_OR_LATER(ah))
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800135 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530136
137 if (currCal == NULL)
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800138 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530139
140 if (currCal->calState != CAL_DONE) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700141 ath_print(common, ATH_DBG_CALIBRATE,
142 "Calibration state incorrect, %d\n",
143 currCal->calState);
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800144 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530145 }
146
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800147 if (!ath9k_hw_iscal_supported(ah, currCal->calData->calType))
148 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530149
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700150 ath_print(common, ATH_DBG_CALIBRATE,
151 "Resetting Cal %d state for channel %u\n",
152 currCal->calData->calType, conf->channel->center_freq);
Sujithf1dc5602008-10-29 10:16:30 +0530153
Sujith2660b812009-02-09 13:27:26 +0530154 ah->curchan->CalValid &= ~currCal->calData->calType;
Sujithf1dc5602008-10-29 10:16:30 +0530155 currCal->calState = CAL_WAITING;
156
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800157 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530158}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400159EXPORT_SYMBOL(ath9k_hw_reset_calvalid);
Sujithf1dc5602008-10-29 10:16:30 +0530160
Felix Fietkau00c86592010-07-30 21:02:09 +0200161void ath9k_hw_start_nfcal(struct ath_hw *ah, bool update)
Sujithf1dc5602008-10-29 10:16:30 +0530162{
163 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
164 AR_PHY_AGC_CONTROL_ENABLE_NF);
Felix Fietkau00c86592010-07-30 21:02:09 +0200165
166 if (update)
167 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
Sujithf1dc5602008-10-29 10:16:30 +0530168 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
Felix Fietkau00c86592010-07-30 21:02:09 +0200169 else
170 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
171 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
172
Sujithf1dc5602008-10-29 10:16:30 +0530173 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
174}
175
Felix Fietkaubbacee12010-07-11 15:44:42 +0200176void ath9k_hw_loadnf(struct ath_hw *ah, struct ath9k_channel *chan)
177{
178 struct ath9k_nfcal_hist *h;
179 unsigned i, j;
180 int32_t val;
Felix Fietkau487f0e02010-07-23 04:31:56 +0200181 u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200182 struct ath_common *common = ath9k_hw_common(ah);
183
Felix Fietkaubbacee12010-07-11 15:44:42 +0200184 h = ah->nfCalHist;
185
186 for (i = 0; i < NUM_NF_READINGS; i++) {
187 if (chainmask & (1 << i)) {
188 val = REG_READ(ah, ah->nf_regs[i]);
189 val &= 0xFFFFFE00;
190 val |= (((u32) (h[i].privNF) << 1) & 0x1ff);
191 REG_WRITE(ah, ah->nf_regs[i], val);
192 }
193 }
194
195 /*
196 * Load software filtered NF value into baseband internal minCCApwr
197 * variable.
198 */
199 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
200 AR_PHY_AGC_CONTROL_ENABLE_NF);
201 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
202 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
203 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
204
205 /*
206 * Wait for load to complete, should be fast, a few 10s of us.
207 * The max delay was changed from an original 250us to 10000us
208 * since 250us often results in NF load timeout and causes deaf
209 * condition during stress testing 12/12/2009
210 */
211 for (j = 0; j < 1000; j++) {
212 if ((REG_READ(ah, AR_PHY_AGC_CONTROL) &
213 AR_PHY_AGC_CONTROL_NF) == 0)
214 break;
215 udelay(10);
216 }
217
218 /*
219 * We timed out waiting for the noisefloor to load, probably due to an
220 * in-progress rx. Simply return here and allow the load plenty of time
221 * to complete before the next calibration interval. We need to avoid
222 * trying to load -50 (which happens below) while the previous load is
223 * still in progress as this can cause rx deafness. Instead by returning
224 * here, the baseband nf cal will just be capped by our present
225 * noisefloor until the next calibration timer.
226 */
227 if (j == 1000) {
228 ath_print(common, ATH_DBG_ANY, "Timeout while waiting for nf "
229 "to load: AR_PHY_AGC_CONTROL=0x%x\n",
230 REG_READ(ah, AR_PHY_AGC_CONTROL));
231 return;
232 }
233
234 /*
235 * Restore maxCCAPower register parameter again so that we're not capped
236 * by the median we just loaded. This will be initial (and max) value
237 * of next noise floor calibration the baseband does.
238 */
239 ENABLE_REGWRITE_BUFFER(ah);
240 for (i = 0; i < NUM_NF_READINGS; i++) {
241 if (chainmask & (1 << i)) {
242 val = REG_READ(ah, ah->nf_regs[i]);
243 val &= 0xFFFFFE00;
244 val |= (((u32) (-50) << 1) & 0x1ff);
245 REG_WRITE(ah, ah->nf_regs[i], val);
246 }
247 }
248 REGWRITE_BUFFER_FLUSH(ah);
249 DISABLE_REGWRITE_BUFFER(ah);
250}
251
252
Felix Fietkauf2552e22010-07-02 00:09:50 +0200253static void ath9k_hw_nf_sanitize(struct ath_hw *ah, s16 *nf)
254{
255 struct ath_common *common = ath9k_hw_common(ah);
256 struct ath_nf_limits *limit;
257 int i;
258
259 if (IS_CHAN_2GHZ(ah->curchan))
260 limit = &ah->nf_2g;
261 else
262 limit = &ah->nf_5g;
263
264 for (i = 0; i < NUM_NF_READINGS; i++) {
265 if (!nf[i])
266 continue;
267
Felix Fietkau54bd5002010-07-02 00:09:51 +0200268 ath_print(common, ATH_DBG_CALIBRATE,
269 "NF calibrated [%s] [chain %d] is %d\n",
Felix Fietkaud9292c02010-07-23 04:12:19 +0200270 (i >= 3 ? "ext" : "ctl"), i % 3, nf[i]);
Felix Fietkau54bd5002010-07-02 00:09:51 +0200271
Felix Fietkauf2552e22010-07-02 00:09:50 +0200272 if (nf[i] > limit->max) {
273 ath_print(common, ATH_DBG_CALIBRATE,
274 "NF[%d] (%d) > MAX (%d), correcting to MAX",
275 i, nf[i], limit->max);
276 nf[i] = limit->max;
277 } else if (nf[i] < limit->min) {
278 ath_print(common, ATH_DBG_CALIBRATE,
279 "NF[%d] (%d) < MIN (%d), correcting to NOM",
280 i, nf[i], limit->min);
281 nf[i] = limit->nominal;
282 }
283 }
284}
285
Sujithcbe61d82009-02-09 13:27:12 +0530286int16_t ath9k_hw_getnf(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530287 struct ath9k_channel *chan)
288{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700289 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530290 int16_t nf, nfThresh;
291 int16_t nfarray[NUM_NF_READINGS] = { 0 };
292 struct ath9k_nfcal_hist *h;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800293 struct ieee80211_channel *c = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +0530294
295 chan->channelFlags &= (~CHANNEL_CW_INT);
296 if (REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700297 ath_print(common, ATH_DBG_CALIBRATE,
298 "NF did not complete in calibration window\n");
Sujithf1dc5602008-10-29 10:16:30 +0530299 nf = 0;
300 chan->rawNoiseFloor = nf;
301 return chan->rawNoiseFloor;
302 } else {
303 ath9k_hw_do_getnf(ah, nfarray);
Felix Fietkauf2552e22010-07-02 00:09:50 +0200304 ath9k_hw_nf_sanitize(ah, nfarray);
Sujithf1dc5602008-10-29 10:16:30 +0530305 nf = nfarray[0];
Luis R. Rodriguezb43d59f2010-04-15 17:38:58 -0400306 if (ath9k_hw_get_nf_thresh(ah, c->band, &nfThresh)
Sujithf1dc5602008-10-29 10:16:30 +0530307 && nf > nfThresh) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700308 ath_print(common, ATH_DBG_CALIBRATE,
309 "noise floor failed detected; "
310 "detected %d, threshold %d\n",
311 nf, nfThresh);
Sujithf1dc5602008-10-29 10:16:30 +0530312 chan->channelFlags |= CHANNEL_CW_INT;
313 }
314 }
315
Sujithf1dc5602008-10-29 10:16:30 +0530316 h = ah->nfCalHist;
Sujithf1dc5602008-10-29 10:16:30 +0530317
318 ath9k_hw_update_nfcal_hist_buffer(h, nfarray);
319 chan->rawNoiseFloor = h[0].privNF;
320
321 return chan->rawNoiseFloor;
322}
323
Sujithcbe61d82009-02-09 13:27:12 +0530324void ath9k_init_nfcal_hist_buffer(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530325{
Felix Fietkauf2552e22010-07-02 00:09:50 +0200326 struct ath_nf_limits *limit;
Sujithf1dc5602008-10-29 10:16:30 +0530327 int i, j;
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400328
Felix Fietkauf2552e22010-07-02 00:09:50 +0200329 if (!ah->curchan || IS_CHAN_2GHZ(ah->curchan))
330 limit = &ah->nf_2g;
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400331 else
Felix Fietkauf2552e22010-07-02 00:09:50 +0200332 limit = &ah->nf_5g;
Sujithf1dc5602008-10-29 10:16:30 +0530333
334 for (i = 0; i < NUM_NF_READINGS; i++) {
335 ah->nfCalHist[i].currIndex = 0;
Felix Fietkauf2552e22010-07-02 00:09:50 +0200336 ah->nfCalHist[i].privNF = limit->nominal;
Sujithf1dc5602008-10-29 10:16:30 +0530337 ah->nfCalHist[i].invalidNFcount =
338 AR_PHY_CCA_FILTERWINDOW_LENGTH;
339 for (j = 0; j < ATH9K_NF_CAL_HIST_MAX; j++) {
Felix Fietkauf2552e22010-07-02 00:09:50 +0200340 ah->nfCalHist[i].nfCalBuffer[j] = limit->nominal;
Sujithf1dc5602008-10-29 10:16:30 +0530341 }
342 }
Sujithf1dc5602008-10-29 10:16:30 +0530343}
344
Sujithcbe61d82009-02-09 13:27:12 +0530345s16 ath9k_hw_getchan_noise(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +0530346{
Sujithf1dc5602008-10-29 10:16:30 +0530347 s16 nf;
348
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800349 if (chan->rawNoiseFloor == 0)
Luis R. Rodrigueze56db712008-12-23 15:58:47 -0800350 nf = -96;
351 else
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800352 nf = chan->rawNoiseFloor;
Sujithf1dc5602008-10-29 10:16:30 +0530353
354 if (!ath9k_hw_nf_in_range(ah, nf))
355 nf = ATH_DEFAULT_NOISE_FLOOR;
356
357 return nf;
358}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400359EXPORT_SYMBOL(ath9k_hw_getchan_noise);