blob: c6d1de0f1e2179db75eaa9ac25ec5cae105b7136 [file] [log] [blame]
Sujithf1dc5602008-10-29 10:16:30 +05301/*
2 * Copyright (c) 2008 Atheros Communications Inc.
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
17#include "core.h"
18#include "hw.h"
19#include "reg.h"
20#include "phy.h"
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
29static bool ath9k_hw_nf_in_range(struct ath_hal *ah, s16 nf)
30{
31 if (nf > ATH9K_NF_TOO_LOW) {
Sujith04bd4632008-11-28 22:18:05 +053032 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
33 "noise floor value detected (%d) is "
Sujithf1dc5602008-10-29 10:16:30 +053034 "lower than what we think is a "
35 "reasonable value (%d)\n",
Sujith04bd4632008-11-28 22:18:05 +053036 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) {
77 if (nfarray[i] < AR_PHY_CCA_MIN_BAD_VALUE ||
78 nfarray[i] > AR_PHY_CCA_MAX_HIGH_VALUE) {
79 h[i].invalidNFcount = ATH9K_NF_CAL_HIST_MAX;
80 } else {
81 h[i].invalidNFcount--;
82 h[i].privNF = nfarray[i];
83 }
84 } else {
85 h[i].privNF =
86 ath9k_hw_get_nf_hist_mid(h[i].nfCalBuffer);
87 }
88 }
89 return;
90}
91
92static void ath9k_hw_do_getnf(struct ath_hal *ah,
93 int16_t nfarray[NUM_NF_READINGS])
94{
95 int16_t nf;
96
97 if (AR_SREV_9280_10_OR_LATER(ah))
98 nf = MS(REG_READ(ah, AR_PHY_CCA), AR9280_PHY_MINCCA_PWR);
99 else
100 nf = MS(REG_READ(ah, AR_PHY_CCA), AR_PHY_MINCCA_PWR);
101
102 if (nf & 0x100)
103 nf = 0 - ((nf ^ 0x1ff) + 1);
104 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
105 "NF calibrated [ctl] [chain 0] is %d\n", nf);
106 nfarray[0] = nf;
107
108 if (AR_SREV_9280_10_OR_LATER(ah))
109 nf = MS(REG_READ(ah, AR_PHY_CH1_CCA),
110 AR9280_PHY_CH1_MINCCA_PWR);
111 else
112 nf = MS(REG_READ(ah, AR_PHY_CH1_CCA),
113 AR_PHY_CH1_MINCCA_PWR);
114
115 if (nf & 0x100)
116 nf = 0 - ((nf ^ 0x1ff) + 1);
Sujith04bd4632008-11-28 22:18:05 +0530117 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujithf1dc5602008-10-29 10:16:30 +0530118 "NF calibrated [ctl] [chain 1] is %d\n", nf);
119 nfarray[1] = nf;
120
121 if (!AR_SREV_9280(ah)) {
122 nf = MS(REG_READ(ah, AR_PHY_CH2_CCA),
123 AR_PHY_CH2_MINCCA_PWR);
124 if (nf & 0x100)
125 nf = 0 - ((nf ^ 0x1ff) + 1);
Sujith04bd4632008-11-28 22:18:05 +0530126 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujithf1dc5602008-10-29 10:16:30 +0530127 "NF calibrated [ctl] [chain 2] is %d\n", nf);
128 nfarray[2] = nf;
129 }
130
131 if (AR_SREV_9280_10_OR_LATER(ah))
132 nf = MS(REG_READ(ah, AR_PHY_EXT_CCA),
133 AR9280_PHY_EXT_MINCCA_PWR);
134 else
135 nf = MS(REG_READ(ah, AR_PHY_EXT_CCA),
136 AR_PHY_EXT_MINCCA_PWR);
137
138 if (nf & 0x100)
139 nf = 0 - ((nf ^ 0x1ff) + 1);
Sujith04bd4632008-11-28 22:18:05 +0530140 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujithf1dc5602008-10-29 10:16:30 +0530141 "NF calibrated [ext] [chain 0] is %d\n", nf);
142 nfarray[3] = nf;
143
144 if (AR_SREV_9280_10_OR_LATER(ah))
145 nf = MS(REG_READ(ah, AR_PHY_CH1_EXT_CCA),
146 AR9280_PHY_CH1_EXT_MINCCA_PWR);
147 else
148 nf = MS(REG_READ(ah, AR_PHY_CH1_EXT_CCA),
149 AR_PHY_CH1_EXT_MINCCA_PWR);
150
151 if (nf & 0x100)
152 nf = 0 - ((nf ^ 0x1ff) + 1);
153 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
154 "NF calibrated [ext] [chain 1] is %d\n", nf);
155 nfarray[4] = nf;
156
157 if (!AR_SREV_9280(ah)) {
158 nf = MS(REG_READ(ah, AR_PHY_CH2_EXT_CCA),
159 AR_PHY_CH2_EXT_MINCCA_PWR);
160 if (nf & 0x100)
161 nf = 0 - ((nf ^ 0x1ff) + 1);
Sujith04bd4632008-11-28 22:18:05 +0530162 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujithf1dc5602008-10-29 10:16:30 +0530163 "NF calibrated [ext] [chain 2] is %d\n", nf);
164 nfarray[5] = nf;
165 }
166}
167
168static bool getNoiseFloorThresh(struct ath_hal *ah,
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800169 enum ieee80211_band band,
Sujithf1dc5602008-10-29 10:16:30 +0530170 int16_t *nft)
171{
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800172 switch (band) {
173 case IEEE80211_BAND_5GHZ:
Senthil Balasubramanianf9bbf432008-11-13 17:59:36 +0530174 *nft = (int8_t)ath9k_hw_get_eeprom(ah, EEP_NFTHRESH_5);
Sujithf1dc5602008-10-29 10:16:30 +0530175 break;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800176 case IEEE80211_BAND_2GHZ:
Senthil Balasubramanianf9bbf432008-11-13 17:59:36 +0530177 *nft = (int8_t)ath9k_hw_get_eeprom(ah, EEP_NFTHRESH_2);
Sujithf1dc5602008-10-29 10:16:30 +0530178 break;
179 default:
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800180 BUG_ON(1);
Sujithf1dc5602008-10-29 10:16:30 +0530181 return false;
182 }
183
184 return true;
185}
186
187static void ath9k_hw_setup_calibration(struct ath_hal *ah,
188 struct hal_cal_list *currCal)
189{
190 REG_RMW_FIELD(ah, AR_PHY_TIMING_CTRL4(0),
191 AR_PHY_TIMING_CTRL4_IQCAL_LOG_COUNT_MAX,
192 currCal->calData->calCountMax);
193
194 switch (currCal->calData->calType) {
195 case IQ_MISMATCH_CAL:
196 REG_WRITE(ah, AR_PHY_CALMODE, AR_PHY_CALMODE_IQ);
197 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530198 "starting IQ Mismatch Calibration\n");
Sujithf1dc5602008-10-29 10:16:30 +0530199 break;
200 case ADC_GAIN_CAL:
201 REG_WRITE(ah, AR_PHY_CALMODE, AR_PHY_CALMODE_ADC_GAIN);
202 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530203 "starting ADC Gain Calibration\n");
Sujithf1dc5602008-10-29 10:16:30 +0530204 break;
205 case ADC_DC_CAL:
206 REG_WRITE(ah, AR_PHY_CALMODE, AR_PHY_CALMODE_ADC_DC_PER);
207 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530208 "starting ADC DC Calibration\n");
Sujithf1dc5602008-10-29 10:16:30 +0530209 break;
210 case ADC_DC_INIT_CAL:
211 REG_WRITE(ah, AR_PHY_CALMODE, AR_PHY_CALMODE_ADC_DC_INIT);
212 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530213 "starting Init ADC DC Calibration\n");
Sujithf1dc5602008-10-29 10:16:30 +0530214 break;
215 }
216
217 REG_SET_BIT(ah, AR_PHY_TIMING_CTRL4(0),
218 AR_PHY_TIMING_CTRL4_DO_CAL);
219}
220
221static void ath9k_hw_reset_calibration(struct ath_hal *ah,
222 struct hal_cal_list *currCal)
223{
224 struct ath_hal_5416 *ahp = AH5416(ah);
225 int i;
226
227 ath9k_hw_setup_calibration(ah, currCal);
228
229 currCal->calState = CAL_RUNNING;
230
231 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
232 ahp->ah_Meas0.sign[i] = 0;
233 ahp->ah_Meas1.sign[i] = 0;
234 ahp->ah_Meas2.sign[i] = 0;
235 ahp->ah_Meas3.sign[i] = 0;
236 }
237
238 ahp->ah_CalSamples = 0;
239}
240
241static void ath9k_hw_per_calibration(struct ath_hal *ah,
242 struct ath9k_channel *ichan,
243 u8 rxchainmask,
244 struct hal_cal_list *currCal,
245 bool *isCalDone)
246{
247 struct ath_hal_5416 *ahp = AH5416(ah);
248
249 *isCalDone = false;
250
251 if (currCal->calState == CAL_RUNNING) {
252 if (!(REG_READ(ah, AR_PHY_TIMING_CTRL4(0)) &
253 AR_PHY_TIMING_CTRL4_DO_CAL)) {
254
255 currCal->calData->calCollect(ah);
256 ahp->ah_CalSamples++;
257
258 if (ahp->ah_CalSamples >= currCal->calData->calNumSamples) {
259 int i, numChains = 0;
260 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
261 if (rxchainmask & (1 << i))
262 numChains++;
263 }
264
265 currCal->calData->calPostProc(ah, numChains);
266 ichan->CalValid |= currCal->calData->calType;
267 currCal->calState = CAL_DONE;
268 *isCalDone = true;
269 } else {
270 ath9k_hw_setup_calibration(ah, currCal);
271 }
272 }
273 } else if (!(ichan->CalValid & currCal->calData->calType)) {
274 ath9k_hw_reset_calibration(ah, currCal);
275 }
276}
277
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800278/* Assumes you are talking about the currently configured channel */
Sujithf1dc5602008-10-29 10:16:30 +0530279static bool ath9k_hw_iscal_supported(struct ath_hal *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530280 enum hal_cal_types calType)
281{
282 struct ath_hal_5416 *ahp = AH5416(ah);
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800283 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +0530284
285 switch (calType & ahp->ah_suppCals) {
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800286 case IQ_MISMATCH_CAL: /* Both 2 GHz and 5 GHz support OFDM */
287 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530288 case ADC_GAIN_CAL:
289 case ADC_DC_CAL:
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800290 if (conf->channel->band == IEEE80211_BAND_5GHZ &&
291 conf_is_ht20(conf))
292 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530293 break;
294 }
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800295 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530296}
297
298static void ath9k_hw_iqcal_collect(struct ath_hal *ah)
299{
300 struct ath_hal_5416 *ahp = AH5416(ah);
301 int i;
302
303 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
304 ahp->ah_totalPowerMeasI[i] +=
305 REG_READ(ah, AR_PHY_CAL_MEAS_0(i));
306 ahp->ah_totalPowerMeasQ[i] +=
307 REG_READ(ah, AR_PHY_CAL_MEAS_1(i));
308 ahp->ah_totalIqCorrMeas[i] +=
309 (int32_t) REG_READ(ah, AR_PHY_CAL_MEAS_2(i));
310 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
311 "%d: Chn %d pmi=0x%08x;pmq=0x%08x;iqcm=0x%08x;\n",
312 ahp->ah_CalSamples, i, ahp->ah_totalPowerMeasI[i],
313 ahp->ah_totalPowerMeasQ[i],
314 ahp->ah_totalIqCorrMeas[i]);
315 }
316}
317
318static void ath9k_hw_adc_gaincal_collect(struct ath_hal *ah)
319{
320 struct ath_hal_5416 *ahp = AH5416(ah);
321 int i;
322
323 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
324 ahp->ah_totalAdcIOddPhase[i] +=
325 REG_READ(ah, AR_PHY_CAL_MEAS_0(i));
326 ahp->ah_totalAdcIEvenPhase[i] +=
327 REG_READ(ah, AR_PHY_CAL_MEAS_1(i));
328 ahp->ah_totalAdcQOddPhase[i] +=
329 REG_READ(ah, AR_PHY_CAL_MEAS_2(i));
330 ahp->ah_totalAdcQEvenPhase[i] +=
331 REG_READ(ah, AR_PHY_CAL_MEAS_3(i));
332
333 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
334 "%d: Chn %d oddi=0x%08x; eveni=0x%08x; "
335 "oddq=0x%08x; evenq=0x%08x;\n",
336 ahp->ah_CalSamples, i,
337 ahp->ah_totalAdcIOddPhase[i],
338 ahp->ah_totalAdcIEvenPhase[i],
339 ahp->ah_totalAdcQOddPhase[i],
340 ahp->ah_totalAdcQEvenPhase[i]);
341 }
342}
343
344static void ath9k_hw_adc_dccal_collect(struct ath_hal *ah)
345{
346 struct ath_hal_5416 *ahp = AH5416(ah);
347 int i;
348
349 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
350 ahp->ah_totalAdcDcOffsetIOddPhase[i] +=
351 (int32_t) REG_READ(ah, AR_PHY_CAL_MEAS_0(i));
352 ahp->ah_totalAdcDcOffsetIEvenPhase[i] +=
353 (int32_t) REG_READ(ah, AR_PHY_CAL_MEAS_1(i));
354 ahp->ah_totalAdcDcOffsetQOddPhase[i] +=
355 (int32_t) REG_READ(ah, AR_PHY_CAL_MEAS_2(i));
356 ahp->ah_totalAdcDcOffsetQEvenPhase[i] +=
357 (int32_t) REG_READ(ah, AR_PHY_CAL_MEAS_3(i));
358
359 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
360 "%d: Chn %d oddi=0x%08x; eveni=0x%08x; "
361 "oddq=0x%08x; evenq=0x%08x;\n",
362 ahp->ah_CalSamples, i,
363 ahp->ah_totalAdcDcOffsetIOddPhase[i],
364 ahp->ah_totalAdcDcOffsetIEvenPhase[i],
365 ahp->ah_totalAdcDcOffsetQOddPhase[i],
366 ahp->ah_totalAdcDcOffsetQEvenPhase[i]);
367 }
368}
369
370static void ath9k_hw_iqcalibrate(struct ath_hal *ah, u8 numChains)
371{
372 struct ath_hal_5416 *ahp = AH5416(ah);
373 u32 powerMeasQ, powerMeasI, iqCorrMeas;
374 u32 qCoffDenom, iCoffDenom;
375 int32_t qCoff, iCoff;
376 int iqCorrNeg, i;
377
378 for (i = 0; i < numChains; i++) {
379 powerMeasI = ahp->ah_totalPowerMeasI[i];
380 powerMeasQ = ahp->ah_totalPowerMeasQ[i];
381 iqCorrMeas = ahp->ah_totalIqCorrMeas[i];
382
383 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
384 "Starting IQ Cal and Correction for Chain %d\n",
385 i);
386
387 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
388 "Orignal: Chn %diq_corr_meas = 0x%08x\n",
389 i, ahp->ah_totalIqCorrMeas[i]);
390
391 iqCorrNeg = 0;
392
393 if (iqCorrMeas > 0x80000000) {
394 iqCorrMeas = (0xffffffff - iqCorrMeas) + 1;
395 iqCorrNeg = 1;
396 }
397
398 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
399 "Chn %d pwr_meas_i = 0x%08x\n", i, powerMeasI);
400 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
401 "Chn %d pwr_meas_q = 0x%08x\n", i, powerMeasQ);
402 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE, "iqCorrNeg is 0x%08x\n",
403 iqCorrNeg);
404
405 iCoffDenom = (powerMeasI / 2 + powerMeasQ / 2) / 128;
406 qCoffDenom = powerMeasQ / 64;
407
408 if (powerMeasQ != 0) {
409 iCoff = iqCorrMeas / iCoffDenom;
410 qCoff = powerMeasI / qCoffDenom - 64;
411 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
412 "Chn %d iCoff = 0x%08x\n", i, iCoff);
413 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
414 "Chn %d qCoff = 0x%08x\n", i, qCoff);
415
416 iCoff = iCoff & 0x3f;
417 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
418 "New: Chn %d iCoff = 0x%08x\n", i, iCoff);
419 if (iqCorrNeg == 0x0)
420 iCoff = 0x40 - iCoff;
421
422 if (qCoff > 15)
423 qCoff = 15;
424 else if (qCoff <= -16)
425 qCoff = 16;
426
427 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
428 "Chn %d : iCoff = 0x%x qCoff = 0x%x\n",
429 i, iCoff, qCoff);
430
431 REG_RMW_FIELD(ah, AR_PHY_TIMING_CTRL4(i),
432 AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF,
433 iCoff);
434 REG_RMW_FIELD(ah, AR_PHY_TIMING_CTRL4(i),
435 AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF,
436 qCoff);
437 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
438 "IQ Cal and Correction done for Chain %d\n",
439 i);
440 }
441 }
442
443 REG_SET_BIT(ah, AR_PHY_TIMING_CTRL4(0),
444 AR_PHY_TIMING_CTRL4_IQCORR_ENABLE);
445}
446
447static void ath9k_hw_adc_gaincal_calibrate(struct ath_hal *ah, u8 numChains)
448{
449 struct ath_hal_5416 *ahp = AH5416(ah);
450 u32 iOddMeasOffset, iEvenMeasOffset, qOddMeasOffset, qEvenMeasOffset;
451 u32 qGainMismatch, iGainMismatch, val, i;
452
453 for (i = 0; i < numChains; i++) {
454 iOddMeasOffset = ahp->ah_totalAdcIOddPhase[i];
455 iEvenMeasOffset = ahp->ah_totalAdcIEvenPhase[i];
456 qOddMeasOffset = ahp->ah_totalAdcQOddPhase[i];
457 qEvenMeasOffset = ahp->ah_totalAdcQEvenPhase[i];
458
459 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
460 "Starting ADC Gain Cal for Chain %d\n", i);
461
462 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
463 "Chn %d pwr_meas_odd_i = 0x%08x\n", i,
464 iOddMeasOffset);
465 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
466 "Chn %d pwr_meas_even_i = 0x%08x\n", i,
467 iEvenMeasOffset);
468 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
469 "Chn %d pwr_meas_odd_q = 0x%08x\n", i,
470 qOddMeasOffset);
471 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
472 "Chn %d pwr_meas_even_q = 0x%08x\n", i,
473 qEvenMeasOffset);
474
475 if (iOddMeasOffset != 0 && qEvenMeasOffset != 0) {
476 iGainMismatch =
477 ((iEvenMeasOffset * 32) /
478 iOddMeasOffset) & 0x3f;
479 qGainMismatch =
480 ((qOddMeasOffset * 32) /
481 qEvenMeasOffset) & 0x3f;
482
483 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
484 "Chn %d gain_mismatch_i = 0x%08x\n", i,
485 iGainMismatch);
486 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
487 "Chn %d gain_mismatch_q = 0x%08x\n", i,
488 qGainMismatch);
489
490 val = REG_READ(ah, AR_PHY_NEW_ADC_DC_GAIN_CORR(i));
491 val &= 0xfffff000;
492 val |= (qGainMismatch) | (iGainMismatch << 6);
493 REG_WRITE(ah, AR_PHY_NEW_ADC_DC_GAIN_CORR(i), val);
494
495 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
496 "ADC Gain Cal done for Chain %d\n", i);
497 }
498 }
499
500 REG_WRITE(ah, AR_PHY_NEW_ADC_DC_GAIN_CORR(0),
501 REG_READ(ah, AR_PHY_NEW_ADC_DC_GAIN_CORR(0)) |
502 AR_PHY_NEW_ADC_GAIN_CORR_ENABLE);
503}
504
505static void ath9k_hw_adc_dccal_calibrate(struct ath_hal *ah, u8 numChains)
506{
507 struct ath_hal_5416 *ahp = AH5416(ah);
508 u32 iOddMeasOffset, iEvenMeasOffset, val, i;
509 int32_t qOddMeasOffset, qEvenMeasOffset, qDcMismatch, iDcMismatch;
510 const struct hal_percal_data *calData =
511 ahp->ah_cal_list_curr->calData;
512 u32 numSamples =
513 (1 << (calData->calCountMax + 5)) * calData->calNumSamples;
514
515 for (i = 0; i < numChains; i++) {
516 iOddMeasOffset = ahp->ah_totalAdcDcOffsetIOddPhase[i];
517 iEvenMeasOffset = ahp->ah_totalAdcDcOffsetIEvenPhase[i];
518 qOddMeasOffset = ahp->ah_totalAdcDcOffsetQOddPhase[i];
519 qEvenMeasOffset = ahp->ah_totalAdcDcOffsetQEvenPhase[i];
520
521 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
522 "Starting ADC DC Offset Cal for Chain %d\n", i);
523
524 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
525 "Chn %d pwr_meas_odd_i = %d\n", i,
526 iOddMeasOffset);
527 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
528 "Chn %d pwr_meas_even_i = %d\n", i,
529 iEvenMeasOffset);
530 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
531 "Chn %d pwr_meas_odd_q = %d\n", i,
532 qOddMeasOffset);
533 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
534 "Chn %d pwr_meas_even_q = %d\n", i,
535 qEvenMeasOffset);
536
537 iDcMismatch = (((iEvenMeasOffset - iOddMeasOffset) * 2) /
538 numSamples) & 0x1ff;
539 qDcMismatch = (((qOddMeasOffset - qEvenMeasOffset) * 2) /
540 numSamples) & 0x1ff;
541
542 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
543 "Chn %d dc_offset_mismatch_i = 0x%08x\n", i,
544 iDcMismatch);
545 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
546 "Chn %d dc_offset_mismatch_q = 0x%08x\n", i,
547 qDcMismatch);
548
549 val = REG_READ(ah, AR_PHY_NEW_ADC_DC_GAIN_CORR(i));
550 val &= 0xc0000fff;
551 val |= (qDcMismatch << 12) | (iDcMismatch << 21);
552 REG_WRITE(ah, AR_PHY_NEW_ADC_DC_GAIN_CORR(i), val);
553
554 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
555 "ADC DC Offset Cal done for Chain %d\n", i);
556 }
557
558 REG_WRITE(ah, AR_PHY_NEW_ADC_DC_GAIN_CORR(0),
559 REG_READ(ah, AR_PHY_NEW_ADC_DC_GAIN_CORR(0)) |
560 AR_PHY_NEW_ADC_DC_OFFSET_CORR_ENABLE);
561}
562
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800563/* This is done for the currently configured channel */
564bool ath9k_hw_reset_calvalid(struct ath_hal *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530565{
566 struct ath_hal_5416 *ahp = AH5416(ah);
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800567 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +0530568 struct hal_cal_list *currCal = ahp->ah_cal_list_curr;
569
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800570 if (!ah->ah_curchan)
571 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530572
573 if (!AR_SREV_9100(ah) && !AR_SREV_9160_10_OR_LATER(ah))
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800574 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530575
576 if (currCal == NULL)
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800577 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530578
579 if (currCal->calState != CAL_DONE) {
580 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530581 "Calibration state incorrect, %d\n",
582 currCal->calState);
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800583 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530584 }
585
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800586 if (!ath9k_hw_iscal_supported(ah, currCal->calData->calType))
587 return true;
Sujithf1dc5602008-10-29 10:16:30 +0530588
589 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800590 "Resetting Cal %d state for channel %u\n",
591 currCal->calData->calType, conf->channel->center_freq);
Sujithf1dc5602008-10-29 10:16:30 +0530592
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800593 ah->ah_curchan->CalValid &= ~currCal->calData->calType;
Sujithf1dc5602008-10-29 10:16:30 +0530594 currCal->calState = CAL_WAITING;
595
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800596 return false;
Sujithf1dc5602008-10-29 10:16:30 +0530597}
598
599void ath9k_hw_start_nfcal(struct ath_hal *ah)
600{
601 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
602 AR_PHY_AGC_CONTROL_ENABLE_NF);
603 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
604 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
605 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
606}
607
608void ath9k_hw_loadnf(struct ath_hal *ah, struct ath9k_channel *chan)
609{
610 struct ath9k_nfcal_hist *h;
611 int i, j;
612 int32_t val;
613 const u32 ar5416_cca_regs[6] = {
614 AR_PHY_CCA,
615 AR_PHY_CH1_CCA,
616 AR_PHY_CH2_CCA,
617 AR_PHY_EXT_CCA,
618 AR_PHY_CH1_EXT_CCA,
619 AR_PHY_CH2_EXT_CCA
620 };
621 u8 chainmask;
622
Sujith5dad40c2009-01-23 11:20:55 +0530623 if (AR_SREV_9285(ah))
624 chainmask = 0x9;
625 else if (AR_SREV_9280(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530626 chainmask = 0x1B;
627 else
628 chainmask = 0x3F;
629
Sujithf1dc5602008-10-29 10:16:30 +0530630 h = ah->nfCalHist;
Sujithf1dc5602008-10-29 10:16:30 +0530631
632 for (i = 0; i < NUM_NF_READINGS; i++) {
633 if (chainmask & (1 << i)) {
634 val = REG_READ(ah, ar5416_cca_regs[i]);
635 val &= 0xFFFFFE00;
636 val |= (((u32) (h[i].privNF) << 1) & 0x1ff);
637 REG_WRITE(ah, ar5416_cca_regs[i], val);
638 }
639 }
640
641 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
642 AR_PHY_AGC_CONTROL_ENABLE_NF);
643 REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL,
644 AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
645 REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
646
647 for (j = 0; j < 1000; j++) {
648 if ((REG_READ(ah, AR_PHY_AGC_CONTROL) &
649 AR_PHY_AGC_CONTROL_NF) == 0)
650 break;
651 udelay(10);
652 }
653
654 for (i = 0; i < NUM_NF_READINGS; i++) {
655 if (chainmask & (1 << i)) {
656 val = REG_READ(ah, ar5416_cca_regs[i]);
657 val &= 0xFFFFFE00;
658 val |= (((u32) (-50) << 1) & 0x1ff);
659 REG_WRITE(ah, ar5416_cca_regs[i], val);
660 }
661 }
662}
663
664int16_t ath9k_hw_getnf(struct ath_hal *ah,
665 struct ath9k_channel *chan)
666{
667 int16_t nf, nfThresh;
668 int16_t nfarray[NUM_NF_READINGS] = { 0 };
669 struct ath9k_nfcal_hist *h;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800670 struct ieee80211_channel *c = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +0530671 u8 chainmask;
672
673 if (AR_SREV_9280(ah))
674 chainmask = 0x1B;
675 else
676 chainmask = 0x3F;
677
678 chan->channelFlags &= (~CHANNEL_CW_INT);
679 if (REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF) {
680 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530681 "NF did not complete in calibration window\n");
Sujithf1dc5602008-10-29 10:16:30 +0530682 nf = 0;
683 chan->rawNoiseFloor = nf;
684 return chan->rawNoiseFloor;
685 } else {
686 ath9k_hw_do_getnf(ah, nfarray);
687 nf = nfarray[0];
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800688 if (getNoiseFloorThresh(ah, c->band, &nfThresh)
Sujithf1dc5602008-10-29 10:16:30 +0530689 && nf > nfThresh) {
690 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530691 "noise floor failed detected; "
692 "detected %d, threshold %d\n",
Sujithf1dc5602008-10-29 10:16:30 +0530693 nf, nfThresh);
694 chan->channelFlags |= CHANNEL_CW_INT;
695 }
696 }
697
Sujithf1dc5602008-10-29 10:16:30 +0530698 h = ah->nfCalHist;
Sujithf1dc5602008-10-29 10:16:30 +0530699
700 ath9k_hw_update_nfcal_hist_buffer(h, nfarray);
701 chan->rawNoiseFloor = h[0].privNF;
702
703 return chan->rawNoiseFloor;
704}
705
706void ath9k_init_nfcal_hist_buffer(struct ath_hal *ah)
707{
708 int i, j;
709
710 for (i = 0; i < NUM_NF_READINGS; i++) {
711 ah->nfCalHist[i].currIndex = 0;
712 ah->nfCalHist[i].privNF = AR_PHY_CCA_MAX_GOOD_VALUE;
713 ah->nfCalHist[i].invalidNFcount =
714 AR_PHY_CCA_FILTERWINDOW_LENGTH;
715 for (j = 0; j < ATH9K_NF_CAL_HIST_MAX; j++) {
716 ah->nfCalHist[i].nfCalBuffer[j] =
717 AR_PHY_CCA_MAX_GOOD_VALUE;
718 }
719 }
720 return;
721}
722
723s16 ath9k_hw_getchan_noise(struct ath_hal *ah, struct ath9k_channel *chan)
724{
Sujithf1dc5602008-10-29 10:16:30 +0530725 s16 nf;
726
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800727 if (chan->rawNoiseFloor == 0)
Luis R. Rodrigueze56db712008-12-23 15:58:47 -0800728 nf = -96;
729 else
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800730 nf = chan->rawNoiseFloor;
Sujithf1dc5602008-10-29 10:16:30 +0530731
732 if (!ath9k_hw_nf_in_range(ah, nf))
733 nf = ATH_DEFAULT_NOISE_FLOOR;
734
735 return nf;
736}
737
738bool ath9k_hw_calibrate(struct ath_hal *ah, struct ath9k_channel *chan,
739 u8 rxchainmask, bool longcal,
740 bool *isCalDone)
741{
742 struct ath_hal_5416 *ahp = AH5416(ah);
743 struct hal_cal_list *currCal = ahp->ah_cal_list_curr;
Sujithf1dc5602008-10-29 10:16:30 +0530744
745 *isCalDone = true;
746
Sujithf1dc5602008-10-29 10:16:30 +0530747 if (currCal &&
748 (currCal->calState == CAL_RUNNING ||
749 currCal->calState == CAL_WAITING)) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800750 ath9k_hw_per_calibration(ah, chan, rxchainmask, currCal,
Sujithf1dc5602008-10-29 10:16:30 +0530751 isCalDone);
752 if (*isCalDone) {
753 ahp->ah_cal_list_curr = currCal = currCal->calNext;
754
755 if (currCal->calState == CAL_WAITING) {
756 *isCalDone = false;
757 ath9k_hw_reset_calibration(ah, currCal);
758 }
759 }
760 }
761
762 if (longcal) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800763 ath9k_hw_getnf(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530764 ath9k_hw_loadnf(ah, ah->ah_curchan);
765 ath9k_hw_start_nfcal(ah);
766
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800767 if (chan->channelFlags & CHANNEL_CW_INT)
768 chan->channelFlags &= ~CHANNEL_CW_INT;
Sujithf1dc5602008-10-29 10:16:30 +0530769 }
770
771 return true;
772}
773
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530774static inline void ath9k_hw_9285_pa_cal(struct ath_hal *ah)
775{
776
777 u32 regVal;
778 int i, offset, offs_6_1, offs_0;
779 u32 ccomp_org, reg_field;
780 u32 regList[][2] = {
781 { 0x786c, 0 },
782 { 0x7854, 0 },
783 { 0x7820, 0 },
784 { 0x7824, 0 },
785 { 0x7868, 0 },
786 { 0x783c, 0 },
787 { 0x7838, 0 },
788 };
789
790 if (AR_SREV_9285_11(ah)) {
791 REG_WRITE(ah, AR9285_AN_TOP4, (AR9285_AN_TOP4_DEFAULT | 0x14));
792 udelay(10);
793 }
794
795 for (i = 0; i < ARRAY_SIZE(regList); i++)
796 regList[i][1] = REG_READ(ah, regList[i][0]);
797
798 regVal = REG_READ(ah, 0x7834);
799 regVal &= (~(0x1));
800 REG_WRITE(ah, 0x7834, regVal);
801 regVal = REG_READ(ah, 0x9808);
802 regVal |= (0x1 << 27);
803 REG_WRITE(ah, 0x9808, regVal);
804
805 REG_RMW_FIELD(ah, AR9285_AN_TOP3, AR9285_AN_TOP3_PWDDAC, 1);
806 REG_RMW_FIELD(ah, AR9285_AN_RXTXBB1, AR9285_AN_RXTXBB1_PDRXTXBB1, 1);
807 REG_RMW_FIELD(ah, AR9285_AN_RXTXBB1, AR9285_AN_RXTXBB1_PDV2I, 1);
808 REG_RMW_FIELD(ah, AR9285_AN_RXTXBB1, AR9285_AN_RXTXBB1_PDDACIF, 1);
809 REG_RMW_FIELD(ah, AR9285_AN_RF2G2, AR9285_AN_RF2G2_OFFCAL, 0);
810 REG_RMW_FIELD(ah, AR9285_AN_RF2G7, AR9285_AN_RF2G7_PWDDB, 0);
811 REG_RMW_FIELD(ah, AR9285_AN_RF2G1, AR9285_AN_RF2G1_ENPACAL, 0);
812 REG_RMW_FIELD(ah, AR9285_AN_RF2G1, AR9285_AN_RF2G1_PDPADRV1, 1);
813 REG_RMW_FIELD(ah, AR9285_AN_RF2G1, AR9285_AN_RF2G1_PDPADRV2, 0);
814 REG_RMW_FIELD(ah, AR9285_AN_RF2G1, AR9285_AN_RF2G1_PDPAOUT, 0);
815 REG_RMW_FIELD(ah, AR9285_AN_RF2G8, AR9285_AN_RF2G8_PADRVGN2TAB0, 7);
816 REG_RMW_FIELD(ah, AR9285_AN_RF2G7, AR9285_AN_RF2G7_PADRVGN2TAB0, 0);
817 ccomp_org = MS(REG_READ(ah, AR9285_AN_RF2G6), AR9285_AN_RF2G6_CCOMP);
818 REG_RMW_FIELD(ah, AR9285_AN_RF2G6, AR9285_AN_RF2G6_CCOMP, 7);
819
820 REG_WRITE(ah, AR9285_AN_TOP2, 0xca0358a0);
821 udelay(30);
822 REG_RMW_FIELD(ah, AR9285_AN_RF2G6, AR9285_AN_RF2G6_OFFS, 0);
823 REG_RMW_FIELD(ah, AR9285_AN_RF2G3, AR9285_AN_RF2G3_PDVCCOMP, 0);
824
825 for (i = 6; i > 0; i--) {
826 regVal = REG_READ(ah, 0x7834);
827 regVal |= (1 << (19 + i));
828 REG_WRITE(ah, 0x7834, regVal);
829 udelay(1);
830 regVal = REG_READ(ah, 0x7834);
831 regVal &= (~(0x1 << (19 + i)));
832 reg_field = MS(REG_READ(ah, 0x7840), AR9285_AN_RXTXBB1_SPARE9);
833 regVal |= (reg_field << (19 + i));
834 REG_WRITE(ah, 0x7834, regVal);
835 }
836
837 REG_RMW_FIELD(ah, AR9285_AN_RF2G3, AR9285_AN_RF2G3_PDVCCOMP, 1);
838 udelay(1);
839 reg_field = MS(REG_READ(ah, AR9285_AN_RF2G9), AR9285_AN_RXTXBB1_SPARE9);
840 REG_RMW_FIELD(ah, AR9285_AN_RF2G3, AR9285_AN_RF2G3_PDVCCOMP, reg_field);
841 offs_6_1 = MS(REG_READ(ah, AR9285_AN_RF2G6), AR9285_AN_RF2G6_OFFS);
842 offs_0 = MS(REG_READ(ah, AR9285_AN_RF2G3), AR9285_AN_RF2G3_PDVCCOMP);
843
844 offset = (offs_6_1<<1) | offs_0;
845 offset = offset - 0;
846 offs_6_1 = offset>>1;
847 offs_0 = offset & 1;
848
849 REG_RMW_FIELD(ah, AR9285_AN_RF2G6, AR9285_AN_RF2G6_OFFS, offs_6_1);
850 REG_RMW_FIELD(ah, AR9285_AN_RF2G3, AR9285_AN_RF2G3_PDVCCOMP, offs_0);
851
852 regVal = REG_READ(ah, 0x7834);
853 regVal |= 0x1;
854 REG_WRITE(ah, 0x7834, regVal);
855 regVal = REG_READ(ah, 0x9808);
856 regVal &= (~(0x1 << 27));
857 REG_WRITE(ah, 0x9808, regVal);
858
859 for (i = 0; i < ARRAY_SIZE(regList); i++)
860 REG_WRITE(ah, regList[i][0], regList[i][1]);
861
862 REG_RMW_FIELD(ah, AR9285_AN_RF2G6, AR9285_AN_RF2G6_CCOMP, ccomp_org);
863
864 if (AR_SREV_9285_11(ah))
865 REG_WRITE(ah, AR9285_AN_TOP4, AR9285_AN_TOP4_DEFAULT);
866
867}
868
Sujithf1dc5602008-10-29 10:16:30 +0530869bool ath9k_hw_init_cal(struct ath_hal *ah,
870 struct ath9k_channel *chan)
871{
872 struct ath_hal_5416 *ahp = AH5416(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530873
874 REG_WRITE(ah, AR_PHY_AGC_CONTROL,
875 REG_READ(ah, AR_PHY_AGC_CONTROL) |
876 AR_PHY_AGC_CONTROL_CAL);
877
878 if (!ath9k_hw_wait(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_CAL, 0)) {
879 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530880 "offset calibration failed to complete in 1ms; "
881 "noisy environment?\n");
Sujithf1dc5602008-10-29 10:16:30 +0530882 return false;
883 }
884
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530885 if (AR_SREV_9285(ah) && AR_SREV_9285_11_OR_LATER(ah))
886 ath9k_hw_9285_pa_cal(ah);
887
Sujithf1dc5602008-10-29 10:16:30 +0530888 REG_WRITE(ah, AR_PHY_AGC_CONTROL,
889 REG_READ(ah, AR_PHY_AGC_CONTROL) |
890 AR_PHY_AGC_CONTROL_NF);
891
892 ahp->ah_cal_list = ahp->ah_cal_list_last = ahp->ah_cal_list_curr = NULL;
893
894 if (AR_SREV_9100(ah) || AR_SREV_9160_10_OR_LATER(ah)) {
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800895 if (ath9k_hw_iscal_supported(ah, ADC_GAIN_CAL)) {
Sujithf1dc5602008-10-29 10:16:30 +0530896 INIT_CAL(&ahp->ah_adcGainCalData);
897 INSERT_CAL(ahp, &ahp->ah_adcGainCalData);
898 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530899 "enabling ADC Gain Calibration.\n");
Sujithf1dc5602008-10-29 10:16:30 +0530900 }
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800901 if (ath9k_hw_iscal_supported(ah, ADC_DC_CAL)) {
Sujithf1dc5602008-10-29 10:16:30 +0530902 INIT_CAL(&ahp->ah_adcDcCalData);
903 INSERT_CAL(ahp, &ahp->ah_adcDcCalData);
904 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530905 "enabling ADC DC Calibration.\n");
Sujithf1dc5602008-10-29 10:16:30 +0530906 }
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800907 if (ath9k_hw_iscal_supported(ah, IQ_MISMATCH_CAL)) {
Sujithf1dc5602008-10-29 10:16:30 +0530908 INIT_CAL(&ahp->ah_iqCalData);
909 INSERT_CAL(ahp, &ahp->ah_iqCalData);
910 DPRINTF(ah->ah_sc, ATH_DBG_CALIBRATE,
Sujith04bd4632008-11-28 22:18:05 +0530911 "enabling IQ Calibration.\n");
Sujithf1dc5602008-10-29 10:16:30 +0530912 }
913
914 ahp->ah_cal_list_curr = ahp->ah_cal_list;
915
916 if (ahp->ah_cal_list_curr)
917 ath9k_hw_reset_calibration(ah, ahp->ah_cal_list_curr);
918 }
919
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800920 chan->CalValid = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530921
922 return true;
923}
924
925const struct hal_percal_data iq_cal_multi_sample = {
926 IQ_MISMATCH_CAL,
927 MAX_CAL_SAMPLES,
928 PER_MIN_LOG_COUNT,
929 ath9k_hw_iqcal_collect,
930 ath9k_hw_iqcalibrate
931};
932const struct hal_percal_data iq_cal_single_sample = {
933 IQ_MISMATCH_CAL,
934 MIN_CAL_SAMPLES,
935 PER_MAX_LOG_COUNT,
936 ath9k_hw_iqcal_collect,
937 ath9k_hw_iqcalibrate
938};
939const struct hal_percal_data adc_gain_cal_multi_sample = {
940 ADC_GAIN_CAL,
941 MAX_CAL_SAMPLES,
942 PER_MIN_LOG_COUNT,
943 ath9k_hw_adc_gaincal_collect,
944 ath9k_hw_adc_gaincal_calibrate
945};
946const struct hal_percal_data adc_gain_cal_single_sample = {
947 ADC_GAIN_CAL,
948 MIN_CAL_SAMPLES,
949 PER_MAX_LOG_COUNT,
950 ath9k_hw_adc_gaincal_collect,
951 ath9k_hw_adc_gaincal_calibrate
952};
953const struct hal_percal_data adc_dc_cal_multi_sample = {
954 ADC_DC_CAL,
955 MAX_CAL_SAMPLES,
956 PER_MIN_LOG_COUNT,
957 ath9k_hw_adc_dccal_collect,
958 ath9k_hw_adc_dccal_calibrate
959};
960const struct hal_percal_data adc_dc_cal_single_sample = {
961 ADC_DC_CAL,
962 MIN_CAL_SAMPLES,
963 PER_MAX_LOG_COUNT,
964 ath9k_hw_adc_dccal_collect,
965 ath9k_hw_adc_dccal_calibrate
966};
967const struct hal_percal_data adc_init_dc_cal = {
968 ADC_DC_INIT_CAL,
969 MIN_CAL_SAMPLES,
970 INIT_LOG_COUNT,
971 ath9k_hw_adc_dccal_collect,
972 ath9k_hw_adc_dccal_calibrate
973};