blob: 45208690c0ec3d5cf747d0ac18218ddeedaf20f8 [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
Sujithf1dc5602008-10-29 10:16:30 +053025static 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
48static void ath9k_hw_update_nfcal_hist_buffer(struct ath9k_nfcal_hist *h,
49 int16_t *nfarray)
50{
51 int i;
52
53 for (i = 0; i < NUM_NF_READINGS; i++) {
54 h[i].nfCalBuffer[h[i].currIndex] = nfarray[i];
55
56 if (++h[i].currIndex >= ATH9K_NF_CAL_HIST_MAX)
57 h[i].currIndex = 0;
58
59 if (h[i].invalidNFcount > 0) {
Felix Fietkauf2552e22010-07-02 00:09:50 +020060 h[i].invalidNFcount--;
61 h[i].privNF = nfarray[i];
Sujithf1dc5602008-10-29 10:16:30 +053062 } else {
63 h[i].privNF =
64 ath9k_hw_get_nf_hist_mid(h[i].nfCalBuffer);
65 }
66 }
Sujithf1dc5602008-10-29 10:16:30 +053067}
68
Luis R. Rodriguezb43d59f2010-04-15 17:38:58 -040069static bool ath9k_hw_get_nf_thresh(struct ath_hw *ah,
70 enum ieee80211_band band,
71 int16_t *nft)
Sujithf1dc5602008-10-29 10:16:30 +053072{
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -080073 switch (band) {
74 case IEEE80211_BAND_5GHZ:
Sujithf74df6f2009-02-09 13:27:24 +053075 *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_5);
Sujithf1dc5602008-10-29 10:16:30 +053076 break;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -080077 case IEEE80211_BAND_2GHZ:
Sujithf74df6f2009-02-09 13:27:24 +053078 *nft = (int8_t)ah->eep_ops->get_eeprom(ah, EEP_NFTHRESH_2);
Sujithf1dc5602008-10-29 10:16:30 +053079 break;
80 default:
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -080081 BUG_ON(1);
Sujithf1dc5602008-10-29 10:16:30 +053082 return false;
83 }
84
85 return true;
86}
87
Luis R. Rodriguez795f5e22010-04-15 17:39:00 -040088void ath9k_hw_reset_calibration(struct ath_hw *ah,
89 struct ath9k_cal_list *currCal)
Sujithf1dc5602008-10-29 10:16:30 +053090{
Sujithf1dc5602008-10-29 10:16:30 +053091 int i;
92
93 ath9k_hw_setup_calibration(ah, currCal);
94
95 currCal->calState = CAL_RUNNING;
96
97 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
Sujith2660b812009-02-09 13:27:26 +053098 ah->meas0.sign[i] = 0;
99 ah->meas1.sign[i] = 0;
100 ah->meas2.sign[i] = 0;
101 ah->meas3.sign[i] = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530102 }
103
Sujith2660b812009-02-09 13:27:26 +0530104 ah->cal_samples = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530105}
106
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200107static s16 ath9k_hw_get_default_nf(struct ath_hw *ah,
108 struct ath9k_channel *chan)
109{
110 struct ath_nf_limits *limit;
111
112 if (!chan || IS_CHAN_2GHZ(chan))
113 limit = &ah->nf_2g;
114 else
115 limit = &ah->nf_5g;
116
117 return limit->nominal;
118}
119
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800120/* This is done for the currently configured channel */
Sujithcbe61d82009-02-09 13:27:12 +0530121bool ath9k_hw_reset_calvalid(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530122{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700123 struct ath_common *common = ath9k_hw_common(ah);
124 struct ieee80211_conf *conf = &common->hw->conf;
Sujithcbfe9462009-04-13 21:56:56 +0530125 struct ath9k_cal_list *currCal = ah->cal_list_curr;
Sujithf1dc5602008-10-29 10:16:30 +0530126
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200127 if (!ah->caldata)
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800128 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530129
130 if (!AR_SREV_9100(ah) && !AR_SREV_9160_10_OR_LATER(ah))
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800131 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530132
133 if (currCal == NULL)
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800134 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530135
136 if (currCal->calState != CAL_DONE) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700137 ath_print(common, ATH_DBG_CALIBRATE,
138 "Calibration state incorrect, %d\n",
139 currCal->calState);
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800140 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530141 }
142
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800143 if (!ath9k_hw_iscal_supported(ah, currCal->calData->calType))
144 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530145
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700146 ath_print(common, ATH_DBG_CALIBRATE,
147 "Resetting Cal %d state for channel %u\n",
148 currCal->calData->calType, conf->channel->center_freq);
Sujithf1dc5602008-10-29 10:16:30 +0530149
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200150 ah->caldata->CalValid &= ~currCal->calData->calType;
Sujithf1dc5602008-10-29 10:16:30 +0530151 currCal->calState = CAL_WAITING;
152
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800153 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530154}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400155EXPORT_SYMBOL(ath9k_hw_reset_calvalid);
Sujithf1dc5602008-10-29 10:16:30 +0530156
Felix Fietkau00c86592010-07-30 21:02:09 +0200157void ath9k_hw_start_nfcal(struct ath_hw *ah, bool update)
Sujithf1dc5602008-10-29 10:16:30 +0530158{
Felix Fietkau4254bc12010-07-31 00:12:01 +0200159 if (ah->caldata)
160 ah->caldata->nfcal_pending = true;
161
Sujithf1dc5602008-10-29 10:16:30 +0530162 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
163 AR_PHY_AGC_CONTROL_ENABLE_NF);
Felix Fietkau00c86592010-07-30 21:02:09 +0200164
165 if (update)
166 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
Sujithf1dc5602008-10-29 10:16:30 +0530167 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
Felix Fietkau00c86592010-07-30 21:02:09 +0200168 else
169 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
170 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
171
Sujithf1dc5602008-10-29 10:16:30 +0530172 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
173}
174
Felix Fietkaubbacee12010-07-11 15:44:42 +0200175void ath9k_hw_loadnf(struct ath_hw *ah, struct ath9k_channel *chan)
176{
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200177 struct ath9k_nfcal_hist *h = NULL;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200178 unsigned i, j;
179 int32_t val;
Felix Fietkau487f0e02010-07-23 04:31:56 +0200180 u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200181 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200182 s16 default_nf = ath9k_hw_get_default_nf(ah, chan);
Felix Fietkaubbacee12010-07-11 15:44:42 +0200183
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200184 if (ah->caldata)
185 h = ah->caldata->nfCalHist;
Felix Fietkaubbacee12010-07-11 15:44:42 +0200186
187 for (i = 0; i < NUM_NF_READINGS; i++) {
188 if (chainmask & (1 << i)) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200189 s16 nfval;
190
191 if (h)
192 nfval = h[i].privNF;
193 else
194 nfval = default_nf;
195
Felix Fietkaubbacee12010-07-11 15:44:42 +0200196 val = REG_READ(ah, ah->nf_regs[i]);
197 val &= 0xFFFFFE00;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200198 val |= (((u32) nfval << 1) & 0x1ff);
Felix Fietkaubbacee12010-07-11 15:44:42 +0200199 REG_WRITE(ah, ah->nf_regs[i], val);
200 }
201 }
202
203 /*
204 * Load software filtered NF value into baseband internal minCCApwr
205 * variable.
206 */
207 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
208 AR_PHY_AGC_CONTROL_ENABLE_NF);
209 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
210 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
211 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
212
213 /*
214 * Wait for load to complete, should be fast, a few 10s of us.
215 * The max delay was changed from an original 250us to 10000us
216 * since 250us often results in NF load timeout and causes deaf
217 * condition during stress testing 12/12/2009
218 */
219 for (j = 0; j < 1000; j++) {
220 if ((REG_READ(ah, AR_PHY_AGC_CONTROL) &
221 AR_PHY_AGC_CONTROL_NF) == 0)
222 break;
223 udelay(10);
224 }
225
226 /*
227 * We timed out waiting for the noisefloor to load, probably due to an
228 * in-progress rx. Simply return here and allow the load plenty of time
229 * to complete before the next calibration interval. We need to avoid
230 * trying to load -50 (which happens below) while the previous load is
231 * still in progress as this can cause rx deafness. Instead by returning
232 * here, the baseband nf cal will just be capped by our present
233 * noisefloor until the next calibration timer.
234 */
235 if (j == 1000) {
236 ath_print(common, ATH_DBG_ANY, "Timeout while waiting for nf "
237 "to load: AR_PHY_AGC_CONTROL=0x%x\n",
238 REG_READ(ah, AR_PHY_AGC_CONTROL));
239 return;
240 }
241
242 /*
243 * Restore maxCCAPower register parameter again so that we're not capped
244 * by the median we just loaded. This will be initial (and max) value
245 * of next noise floor calibration the baseband does.
246 */
247 ENABLE_REGWRITE_BUFFER(ah);
248 for (i = 0; i < NUM_NF_READINGS; i++) {
249 if (chainmask & (1 << i)) {
250 val = REG_READ(ah, ah->nf_regs[i]);
251 val &= 0xFFFFFE00;
252 val |= (((u32) (-50) << 1) & 0x1ff);
253 REG_WRITE(ah, ah->nf_regs[i], val);
254 }
255 }
256 REGWRITE_BUFFER_FLUSH(ah);
257 DISABLE_REGWRITE_BUFFER(ah);
258}
259
260
Felix Fietkauf2552e22010-07-02 00:09:50 +0200261static void ath9k_hw_nf_sanitize(struct ath_hw *ah, s16 *nf)
262{
263 struct ath_common *common = ath9k_hw_common(ah);
264 struct ath_nf_limits *limit;
265 int i;
266
267 if (IS_CHAN_2GHZ(ah->curchan))
268 limit = &ah->nf_2g;
269 else
270 limit = &ah->nf_5g;
271
272 for (i = 0; i < NUM_NF_READINGS; i++) {
273 if (!nf[i])
274 continue;
275
Felix Fietkau54bd5002010-07-02 00:09:51 +0200276 ath_print(common, ATH_DBG_CALIBRATE,
277 "NF calibrated [%s] [chain %d] is %d\n",
Felix Fietkaud9292c02010-07-23 04:12:19 +0200278 (i >= 3 ? "ext" : "ctl"), i % 3, nf[i]);
Felix Fietkau54bd5002010-07-02 00:09:51 +0200279
Felix Fietkauf2552e22010-07-02 00:09:50 +0200280 if (nf[i] > limit->max) {
281 ath_print(common, ATH_DBG_CALIBRATE,
282 "NF[%d] (%d) > MAX (%d), correcting to MAX",
283 i, nf[i], limit->max);
284 nf[i] = limit->max;
285 } else if (nf[i] < limit->min) {
286 ath_print(common, ATH_DBG_CALIBRATE,
287 "NF[%d] (%d) < MIN (%d), correcting to NOM",
288 i, nf[i], limit->min);
289 nf[i] = limit->nominal;
290 }
291 }
292}
293
Felix Fietkau4254bc12010-07-31 00:12:01 +0200294bool ath9k_hw_getnf(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +0530295{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700296 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530297 int16_t nf, nfThresh;
298 int16_t nfarray[NUM_NF_READINGS] = { 0 };
299 struct ath9k_nfcal_hist *h;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800300 struct ieee80211_channel *c = chan->chan;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200301 struct ath9k_hw_cal_data *caldata = ah->caldata;
302
303 if (!caldata)
Felix Fietkau4254bc12010-07-31 00:12:01 +0200304 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530305
306 chan->channelFlags &= (~CHANNEL_CW_INT);
307 if (REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700308 ath_print(common, ATH_DBG_CALIBRATE,
309 "NF did not complete in calibration window\n");
Sujithf1dc5602008-10-29 10:16:30 +0530310 nf = 0;
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200311 caldata->rawNoiseFloor = nf;
Felix Fietkau4254bc12010-07-31 00:12:01 +0200312 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530313 } else {
314 ath9k_hw_do_getnf(ah, nfarray);
Felix Fietkauf2552e22010-07-02 00:09:50 +0200315 ath9k_hw_nf_sanitize(ah, nfarray);
Sujithf1dc5602008-10-29 10:16:30 +0530316 nf = nfarray[0];
Luis R. Rodriguezb43d59f2010-04-15 17:38:58 -0400317 if (ath9k_hw_get_nf_thresh(ah, c->band, &nfThresh)
Sujithf1dc5602008-10-29 10:16:30 +0530318 && nf > nfThresh) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700319 ath_print(common, ATH_DBG_CALIBRATE,
320 "noise floor failed detected; "
321 "detected %d, threshold %d\n",
322 nf, nfThresh);
Sujithf1dc5602008-10-29 10:16:30 +0530323 chan->channelFlags |= CHANNEL_CW_INT;
324 }
325 }
326
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200327 h = caldata->nfCalHist;
Felix Fietkau4254bc12010-07-31 00:12:01 +0200328 caldata->nfcal_pending = false;
Sujithf1dc5602008-10-29 10:16:30 +0530329 ath9k_hw_update_nfcal_hist_buffer(h, nfarray);
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200330 caldata->rawNoiseFloor = h[0].privNF;
Felix Fietkau4254bc12010-07-31 00:12:01 +0200331 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530332}
333
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200334void ath9k_init_nfcal_hist_buffer(struct ath_hw *ah,
335 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +0530336{
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200337 struct ath9k_nfcal_hist *h;
338 s16 default_nf;
Sujithf1dc5602008-10-29 10:16:30 +0530339 int i, j;
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400340
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200341 if (!ah->caldata)
342 return;
Sujithf1dc5602008-10-29 10:16:30 +0530343
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200344 h = ah->caldata->nfCalHist;
345 default_nf = ath9k_hw_get_default_nf(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530346 for (i = 0; i < NUM_NF_READINGS; i++) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200347 h[i].currIndex = 0;
348 h[i].privNF = default_nf;
349 h[i].invalidNFcount = AR_PHY_CCA_FILTERWINDOW_LENGTH;
Sujithf1dc5602008-10-29 10:16:30 +0530350 for (j = 0; j < ATH9K_NF_CAL_HIST_MAX; j++) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200351 h[i].nfCalBuffer[j] = default_nf;
Sujithf1dc5602008-10-29 10:16:30 +0530352 }
353 }
Sujithf1dc5602008-10-29 10:16:30 +0530354}
355
Sujithcbe61d82009-02-09 13:27:12 +0530356s16 ath9k_hw_getchan_noise(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +0530357{
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200358 if (!ah->caldata || !ah->caldata->rawNoiseFloor)
359 return ath9k_hw_get_default_nf(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530360
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200361 return ah->caldata->rawNoiseFloor;
Sujithf1dc5602008-10-29 10:16:30 +0530362}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400363EXPORT_SYMBOL(ath9k_hw_getchan_noise);