ar5416_cal.c revision 221779
1/*
2 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3 * Copyright (c) 2002-2008 Atheros Communications, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 *
17 * $FreeBSD: head/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c 221779 2011-05-11 13:40:13Z adrian $
18 */
19#include "opt_ah.h"
20
21#include "ah.h"
22#include "ah_internal.h"
23#include "ah_devid.h"
24
25#include "ah_eeprom_v14.h"
26
27#include "ar5212/ar5212.h"	/* for NF cal related declarations */
28
29#include "ar5416/ar5416.h"
30#include "ar5416/ar5416reg.h"
31#include "ar5416/ar5416phy.h"
32
33/* Owl specific stuff */
34#define NUM_NOISEFLOOR_READINGS 6       /* 3 chains * (ctl + ext) */
35
36static void ar5416StartNFCal(struct ath_hal *ah);
37static void ar5416LoadNF(struct ath_hal *ah, const struct ieee80211_channel *);
38static int16_t ar5416GetNf(struct ath_hal *, struct ieee80211_channel *);
39
40static uint16_t ar5416GetDefaultNF(struct ath_hal *ah, const struct ieee80211_channel *chan);
41static void ar5416SanitizeNF(struct ath_hal *ah, int16_t *nf);
42
43/*
44 * Determine if calibration is supported by device and channel flags
45 */
46
47/*
48 * ADC GAIN/DC offset calibration is for calibrating two ADCs that
49 * are acting as one by interleaving incoming symbols. This isn't
50 * relevant for 2.4GHz 20MHz wide modes because, as far as I can tell,
51 * the secondary ADC is never enabled. It is enabled however for
52 * 5GHz modes.
53 *
54 * It hasn't been confirmed whether doing this calibration is needed
55 * at all in the above modes and/or whether it's actually harmful.
56 * So for now, let's leave it enabled and just remember to get
57 * confirmation that it needs to be clarified.
58 *
59 * See US Patent No: US 7,541,952 B1:
60 *  " Method and Apparatus for Offset and Gain Compensation for
61 *    Analog-to-Digital Converters."
62 */
63static OS_INLINE HAL_BOOL
64ar5416IsCalSupp(struct ath_hal *ah, const struct ieee80211_channel *chan,
65	HAL_CAL_TYPE calType)
66{
67	struct ar5416PerCal *cal = &AH5416(ah)->ah_cal;
68
69	switch (calType & cal->suppCals) {
70	case IQ_MISMATCH_CAL:
71		/* Run IQ Mismatch for non-CCK only */
72		return !IEEE80211_IS_CHAN_B(chan);
73	case ADC_GAIN_CAL:
74	case ADC_DC_CAL:
75		/* Run ADC Gain Cal for either 5ghz any or 2ghz HT40 */
76		if (IEEE80211_IS_CHAN_5GHZ(chan))
77			return AH_TRUE;
78		if (IEEE80211_IS_CHAN_HT40(chan))
79			return AH_TRUE;
80		return AH_FALSE;
81	}
82	return AH_FALSE;
83}
84
85/*
86 * Setup HW to collect samples used for current cal
87 */
88static void
89ar5416SetupMeasurement(struct ath_hal *ah, HAL_CAL_LIST *currCal)
90{
91	/* Start calibration w/ 2^(INIT_IQCAL_LOG_COUNT_MAX+1) samples */
92	OS_REG_RMW_FIELD(ah, AR_PHY_TIMING_CTRL4,
93	    AR_PHY_TIMING_CTRL4_IQCAL_LOG_COUNT_MAX,
94	    currCal->calData->calCountMax);
95
96	/* Select calibration to run */
97	switch (currCal->calData->calType) {
98	case IQ_MISMATCH_CAL:
99		OS_REG_WRITE(ah, AR_PHY_CALMODE, AR_PHY_CALMODE_IQ);
100		HALDEBUG(ah, HAL_DEBUG_PERCAL,
101		    "%s: start IQ Mismatch calibration\n", __func__);
102		break;
103	case ADC_GAIN_CAL:
104		OS_REG_WRITE(ah, AR_PHY_CALMODE, AR_PHY_CALMODE_ADC_GAIN);
105		HALDEBUG(ah, HAL_DEBUG_PERCAL,
106		    "%s: start ADC Gain calibration\n", __func__);
107		break;
108	case ADC_DC_CAL:
109		OS_REG_WRITE(ah, AR_PHY_CALMODE, AR_PHY_CALMODE_ADC_DC_PER);
110		HALDEBUG(ah, HAL_DEBUG_PERCAL,
111		    "%s: start ADC DC calibration\n", __func__);
112		break;
113	case ADC_DC_INIT_CAL:
114		OS_REG_WRITE(ah, AR_PHY_CALMODE, AR_PHY_CALMODE_ADC_DC_INIT);
115		HALDEBUG(ah, HAL_DEBUG_PERCAL,
116		    "%s: start Init ADC DC calibration\n", __func__);
117		break;
118	}
119	/* Kick-off cal */
120	OS_REG_SET_BIT(ah, AR_PHY_TIMING_CTRL4, AR_PHY_TIMING_CTRL4_DO_CAL);
121}
122
123/*
124 * Initialize shared data structures and prepare a cal to be run.
125 */
126static void
127ar5416ResetMeasurement(struct ath_hal *ah, HAL_CAL_LIST *currCal)
128{
129	struct ar5416PerCal *cal = &AH5416(ah)->ah_cal;
130
131	/* Reset data structures shared between different calibrations */
132	OS_MEMZERO(cal->caldata, sizeof(cal->caldata));
133	cal->calSamples = 0;
134
135	/* Setup HW for new calibration */
136	ar5416SetupMeasurement(ah, currCal);
137
138	/* Change SW state to RUNNING for this calibration */
139	currCal->calState = CAL_RUNNING;
140}
141
142#if 0
143/*
144 * Run non-periodic calibrations.
145 */
146static HAL_BOOL
147ar5416RunInitCals(struct ath_hal *ah, int init_cal_count)
148{
149	struct ath_hal_5416 *ahp = AH5416(ah);
150	struct ar5416PerCal *cal = &AH5416(ah)->ah_cal;
151	HAL_CHANNEL_INTERNAL ichan;	/* XXX bogus */
152	HAL_CAL_LIST *curCal = ahp->ah_cal_curr;
153	HAL_BOOL isCalDone;
154	int i;
155
156	if (curCal == AH_NULL)
157		return AH_FALSE;
158
159	ichan.calValid = 0;
160	for (i = 0; i < init_cal_count; i++) {
161		/* Reset this Cal */
162		ar5416ResetMeasurement(ah, curCal);
163		/* Poll for offset calibration complete */
164		if (!ath_hal_wait(ah, AR_PHY_TIMING_CTRL4, AR_PHY_TIMING_CTRL4_DO_CAL, 0)) {
165			HALDEBUG(ah, HAL_DEBUG_ANY,
166			    "%s: Cal %d failed to finish in 100ms.\n",
167			    __func__, curCal->calData->calType);
168			/* Re-initialize list pointers for periodic cals */
169			cal->cal_list = cal->cal_last = cal->cal_curr = AH_NULL;
170			return AH_FALSE;
171		}
172		/* Run this cal */
173		ar5416DoCalibration(ah, &ichan, ahp->ah_rxchainmask,
174		    curCal, &isCalDone);
175		if (!isCalDone)
176			HALDEBUG(ah, HAL_DEBUG_ANY,
177			    "%s: init cal %d did not complete.\n",
178			    __func__, curCal->calData->calType);
179		if (curCal->calNext != AH_NULL)
180			curCal = curCal->calNext;
181	}
182
183	/* Re-initialize list pointers for periodic cals */
184	cal->cal_list = cal->cal_last = cal->cal_curr = AH_NULL;
185	return AH_TRUE;
186}
187#endif
188
189HAL_BOOL
190ar5416InitCalHardware(struct ath_hal *ah, const struct ieee80211_channel *chan)
191{
192	if (AR_SREV_MERLIN_10_OR_LATER(ah)) {
193		/* Enable Rx Filter Cal */
194		OS_REG_CLR_BIT(ah, AR_PHY_ADC_CTL, AR_PHY_ADC_CTL_OFF_PWDADC);
195		OS_REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
196		    AR_PHY_AGC_CONTROL_FLTR_CAL);
197
198		/* Clear the carrier leak cal bit */
199		OS_REG_CLR_BIT(ah, AR_PHY_CL_CAL_CTL, AR_PHY_CL_CAL_ENABLE);
200
201		/* kick off the cal */
202		OS_REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_CAL);
203
204		/* Poll for offset calibration complete */
205		if (!ath_hal_wait(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_CAL, 0)) {
206			HALDEBUG(ah, HAL_DEBUG_ANY,
207			    "%s: offset calibration failed to complete in 1ms; "
208			    "noisy environment?\n", __func__);
209			return AH_FALSE;
210		}
211
212		/* Set the cl cal bit and rerun the cal a 2nd time */
213		/* Enable Rx Filter Cal */
214		OS_REG_CLR_BIT(ah, AR_PHY_ADC_CTL, AR_PHY_ADC_CTL_OFF_PWDADC);
215		OS_REG_SET_BIT(ah, AR_PHY_AGC_CONTROL,
216		    AR_PHY_AGC_CONTROL_FLTR_CAL);
217
218		OS_REG_SET_BIT(ah, AR_PHY_CL_CAL_CTL, AR_PHY_CL_CAL_ENABLE);
219	}
220
221	/* Calibrate the AGC */
222	OS_REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_CAL);
223
224	/* Poll for offset calibration complete */
225	if (!ath_hal_wait(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_CAL, 0)) {
226		HALDEBUG(ah, HAL_DEBUG_ANY,
227		    "%s: offset calibration did not complete in 1ms; "
228		    "noisy environment?\n", __func__);
229		return AH_FALSE;
230	}
231
232	return AH_TRUE;
233}
234
235/*
236 * Initialize Calibration infrastructure.
237 */
238#define	MAX_CAL_CHECK		32
239HAL_BOOL
240ar5416InitCal(struct ath_hal *ah, const struct ieee80211_channel *chan)
241{
242	struct ar5416PerCal *cal = &AH5416(ah)->ah_cal;
243	HAL_CHANNEL_INTERNAL *ichan;
244
245	ichan = ath_hal_checkchannel(ah, chan);
246	HALASSERT(ichan != AH_NULL);
247
248	/* Do initial chipset-specific calibration */
249	if (! AH5416(ah)->ah_cal_initcal(ah, chan)) {
250		HALDEBUG(ah, HAL_DEBUG_ANY, "%s: initial chipset calibration did "
251		    "not complete in time; noisy environment?\n", __func__);
252		return AH_FALSE;
253	}
254
255	/* If there's PA Cal, do it */
256	if (AH5416(ah)->ah_cal_pacal)
257		AH5416(ah)->ah_cal_pacal(ah, AH_TRUE);
258
259	/*
260	 * Do NF calibration after DC offset and other CALs.
261	 * Per system engineers, noise floor value can sometimes be 20 dB
262	 * higher than normal value if DC offset and noise floor cal are
263	 * triggered at the same time.
264	 */
265	OS_REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
266
267	/*
268	 * This may take a while to run; make sure subsequent
269	 * calibration routines check that this has completed
270	 * before reading the value and triggering a subsequent
271	 * calibration.
272	 */
273
274	/* Initialize list pointers */
275	cal->cal_list = cal->cal_last = cal->cal_curr = AH_NULL;
276
277	/*
278	 * Enable IQ, ADC Gain, ADC DC Offset Cals
279	 */
280	if (AR_SREV_SOWL_10_OR_LATER(ah)) {
281		/* Setup all non-periodic, init time only calibrations */
282		/* XXX: Init DC Offset not working yet */
283#if 0
284		if (ar5416IsCalSupp(ah, chan, ADC_DC_INIT_CAL)) {
285			INIT_CAL(&cal->adcDcCalInitData);
286			INSERT_CAL(cal, &cal->adcDcCalInitData);
287		}
288		/* Initialize current pointer to first element in list */
289		cal->cal_curr = cal->cal_list;
290
291		if (cal->ah_cal_curr != AH_NULL && !ar5416RunInitCals(ah, 0))
292			return AH_FALSE;
293#endif
294	}
295
296	/* If Cals are supported, add them to list via INIT/INSERT_CAL */
297	if (ar5416IsCalSupp(ah, chan, ADC_GAIN_CAL)) {
298		INIT_CAL(&cal->adcGainCalData);
299		INSERT_CAL(cal, &cal->adcGainCalData);
300		HALDEBUG(ah, HAL_DEBUG_PERCAL,
301		    "%s: enable ADC Gain Calibration.\n", __func__);
302	}
303	if (ar5416IsCalSupp(ah, chan, ADC_DC_CAL)) {
304		INIT_CAL(&cal->adcDcCalData);
305		INSERT_CAL(cal, &cal->adcDcCalData);
306		HALDEBUG(ah, HAL_DEBUG_PERCAL,
307		    "%s: enable ADC DC Calibration.\n", __func__);
308	}
309	if (ar5416IsCalSupp(ah, chan, IQ_MISMATCH_CAL)) {
310		INIT_CAL(&cal->iqCalData);
311		INSERT_CAL(cal, &cal->iqCalData);
312		HALDEBUG(ah, HAL_DEBUG_PERCAL,
313		    "%s: enable IQ Calibration.\n", __func__);
314	}
315	/* Initialize current pointer to first element in list */
316	cal->cal_curr = cal->cal_list;
317
318	/* Kick off measurements for the first cal */
319	if (cal->cal_curr != AH_NULL)
320		ar5416ResetMeasurement(ah, cal->cal_curr);
321
322	/* Mark all calibrations on this channel as being invalid */
323	ichan->calValid = 0;
324
325	return AH_TRUE;
326#undef	MAX_CAL_CHECK
327}
328
329/*
330 * Entry point for upper layers to restart current cal.
331 * Reset the calibration valid bit in channel.
332 */
333HAL_BOOL
334ar5416ResetCalValid(struct ath_hal *ah, const struct ieee80211_channel *chan)
335{
336	struct ar5416PerCal *cal = &AH5416(ah)->ah_cal;
337	HAL_CHANNEL_INTERNAL *ichan = ath_hal_checkchannel(ah, chan);
338	HAL_CAL_LIST *currCal = cal->cal_curr;
339
340	if (!AR_SREV_SOWL_10_OR_LATER(ah))
341		return AH_FALSE;
342	if (currCal == AH_NULL)
343		return AH_FALSE;
344	if (ichan == AH_NULL) {
345		HALDEBUG(ah, HAL_DEBUG_ANY,
346		    "%s: invalid channel %u/0x%x; no mapping\n",
347		    __func__, chan->ic_freq, chan->ic_flags);
348		return AH_FALSE;
349	}
350	/*
351	 * Expected that this calibration has run before, post-reset.
352	 * Current state should be done
353	 */
354	if (currCal->calState != CAL_DONE) {
355		HALDEBUG(ah, HAL_DEBUG_ANY,
356		    "%s: Calibration state incorrect, %d\n",
357		    __func__, currCal->calState);
358		return AH_FALSE;
359	}
360
361	/* Verify Cal is supported on this channel */
362	if (!ar5416IsCalSupp(ah, chan, currCal->calData->calType))
363		return AH_FALSE;
364
365	HALDEBUG(ah, HAL_DEBUG_PERCAL,
366	    "%s: Resetting Cal %d state for channel %u/0x%x\n",
367	    __func__, currCal->calData->calType, chan->ic_freq,
368	    chan->ic_flags);
369
370	/* Disable cal validity in channel */
371	ichan->calValid &= ~currCal->calData->calType;
372	currCal->calState = CAL_WAITING;
373
374	return AH_TRUE;
375}
376
377/*
378 * Recalibrate the lower PHY chips to account for temperature/environment
379 * changes.
380 */
381static void
382ar5416DoCalibration(struct ath_hal *ah,  HAL_CHANNEL_INTERNAL *ichan,
383	uint8_t rxchainmask, HAL_CAL_LIST *currCal, HAL_BOOL *isCalDone)
384{
385	struct ar5416PerCal *cal = &AH5416(ah)->ah_cal;
386
387	/* Cal is assumed not done until explicitly set below */
388	*isCalDone = AH_FALSE;
389
390	HALDEBUG(ah, HAL_DEBUG_PERCAL,
391	    "%s: %s Calibration, state %d, calValid 0x%x\n",
392	    __func__, currCal->calData->calName, currCal->calState,
393	    ichan->calValid);
394
395	/* Calibration in progress. */
396	if (currCal->calState == CAL_RUNNING) {
397		/* Check to see if it has finished. */
398		if (!(OS_REG_READ(ah, AR_PHY_TIMING_CTRL4) & AR_PHY_TIMING_CTRL4_DO_CAL)) {
399			HALDEBUG(ah, HAL_DEBUG_PERCAL,
400			    "%s: sample %d of %d finished\n",
401			    __func__, cal->calSamples,
402			    currCal->calData->calNumSamples);
403			/*
404			 * Collect measurements for active chains.
405			 */
406			currCal->calData->calCollect(ah);
407			if (++cal->calSamples >= currCal->calData->calNumSamples) {
408				int i, numChains = 0;
409				for (i = 0; i < AR5416_MAX_CHAINS; i++) {
410					if (rxchainmask & (1 << i))
411						numChains++;
412				}
413				/*
414				 * Process accumulated data
415				 */
416				currCal->calData->calPostProc(ah, numChains);
417
418				/* Calibration has finished. */
419				ichan->calValid |= currCal->calData->calType;
420				currCal->calState = CAL_DONE;
421				*isCalDone = AH_TRUE;
422			} else {
423				/*
424				 * Set-up to collect of another sub-sample.
425				 */
426				ar5416SetupMeasurement(ah, currCal);
427			}
428		}
429	} else if (!(ichan->calValid & currCal->calData->calType)) {
430		/* If current cal is marked invalid in channel, kick it off */
431		ar5416ResetMeasurement(ah, currCal);
432	}
433}
434
435/*
436 * Internal interface to schedule periodic calibration work.
437 */
438HAL_BOOL
439ar5416PerCalibrationN(struct ath_hal *ah, struct ieee80211_channel *chan,
440	u_int rxchainmask, HAL_BOOL longcal, HAL_BOOL *isCalDone)
441{
442	struct ar5416PerCal *cal = &AH5416(ah)->ah_cal;
443	HAL_CAL_LIST *currCal = cal->cal_curr;
444	HAL_CHANNEL_INTERNAL *ichan;
445	int r;
446
447	OS_MARK(ah, AH_MARK_PERCAL, chan->ic_freq);
448
449	*isCalDone = AH_TRUE;
450
451	/*
452	 * Since ath_hal calls the PerCal method with rxchainmask=0x1;
453	 * override it with the current chainmask. The upper levels currently
454	 * doesn't know about the chainmask.
455	 */
456	rxchainmask = AH5416(ah)->ah_rx_chainmask;
457
458	/* Invalid channel check */
459	ichan = ath_hal_checkchannel(ah, chan);
460	if (ichan == AH_NULL) {
461		HALDEBUG(ah, HAL_DEBUG_ANY,
462		    "%s: invalid channel %u/0x%x; no mapping\n",
463		    __func__, chan->ic_freq, chan->ic_flags);
464		return AH_FALSE;
465	}
466
467	/*
468	 * For given calibration:
469	 * 1. Call generic cal routine
470	 * 2. When this cal is done (isCalDone) if we have more cals waiting
471	 *    (eg after reset), mask this to upper layers by not propagating
472	 *    isCalDone if it is set to TRUE.
473	 *    Instead, change isCalDone to FALSE and setup the waiting cal(s)
474	 *    to be run.
475	 */
476	if (currCal != AH_NULL &&
477	    (currCal->calState == CAL_RUNNING ||
478	     currCal->calState == CAL_WAITING)) {
479		ar5416DoCalibration(ah, ichan, rxchainmask, currCal, isCalDone);
480		if (*isCalDone == AH_TRUE) {
481			cal->cal_curr = currCal = currCal->calNext;
482			if (currCal->calState == CAL_WAITING) {
483				*isCalDone = AH_FALSE;
484				ar5416ResetMeasurement(ah, currCal);
485			}
486		}
487	}
488
489	/* Do NF cal only at longer intervals */
490	if (longcal) {
491		/* Do PA calibration if the chipset supports */
492		if (AH5416(ah)->ah_cal_pacal)
493			AH5416(ah)->ah_cal_pacal(ah, AH_FALSE);
494
495		/* Do temperature compensation if the chipset needs it */
496		AH5416(ah)->ah_olcTempCompensation(ah);
497
498		/*
499		 * Get the value from the previous NF cal
500		 * and update the history buffer.
501		 */
502		r = ar5416GetNf(ah, chan);
503		if (r <= 0) {
504			/* NF calibration result isn't valid */
505			HALDEBUG(ah, HAL_DEBUG_UNMASKABLE, "%s: NF calibration"
506			    " didn't finish; delaying CCA\n", __func__);
507		} else {
508			/*
509			 * NF calibration result is valid.
510			 *
511			 * Load the NF from history buffer of the current channel.
512			 * NF is slow time-variant, so it is OK to use a
513			 * historical value.
514			 */
515			ar5416LoadNF(ah, AH_PRIVATE(ah)->ah_curchan);
516
517			/* start NF calibration, without updating BB NF register*/
518			ar5416StartNFCal(ah);
519		}
520	}
521	return AH_TRUE;
522}
523
524/*
525 * Recalibrate the lower PHY chips to account for temperature/environment
526 * changes.
527 */
528HAL_BOOL
529ar5416PerCalibration(struct ath_hal *ah, struct ieee80211_channel *chan,
530	HAL_BOOL *isIQdone)
531{
532	struct ath_hal_5416 *ahp = AH5416(ah);
533	struct ar5416PerCal *cal = &AH5416(ah)->ah_cal;
534	HAL_CAL_LIST *curCal = cal->cal_curr;
535
536	if (curCal != AH_NULL && curCal->calData->calType == IQ_MISMATCH_CAL) {
537		return ar5416PerCalibrationN(ah, chan, ahp->ah_rx_chainmask,
538		    AH_TRUE, isIQdone);
539	} else {
540		HAL_BOOL isCalDone;
541
542		*isIQdone = AH_FALSE;
543		return ar5416PerCalibrationN(ah, chan, ahp->ah_rx_chainmask,
544		    AH_TRUE, &isCalDone);
545	}
546}
547
548static HAL_BOOL
549ar5416GetEepromNoiseFloorThresh(struct ath_hal *ah,
550	const struct ieee80211_channel *chan, int16_t *nft)
551{
552	if (IEEE80211_IS_CHAN_5GHZ(chan)) {
553		ath_hal_eepromGet(ah, AR_EEP_NFTHRESH_5, nft);
554		return AH_TRUE;
555	}
556	if (IEEE80211_IS_CHAN_2GHZ(chan)) {
557		ath_hal_eepromGet(ah, AR_EEP_NFTHRESH_2, nft);
558		return AH_TRUE;
559	}
560	HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid channel flags 0x%x\n",
561	    __func__, chan->ic_flags);
562	return AH_FALSE;
563}
564
565static void
566ar5416StartNFCal(struct ath_hal *ah)
567{
568	OS_REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_ENABLE_NF);
569	OS_REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
570	OS_REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
571}
572
573static void
574ar5416LoadNF(struct ath_hal *ah, const struct ieee80211_channel *chan)
575{
576	static const uint32_t ar5416_cca_regs[] = {
577		AR_PHY_CCA,
578		AR_PHY_CH1_CCA,
579		AR_PHY_CH2_CCA,
580		AR_PHY_EXT_CCA,
581		AR_PHY_CH1_EXT_CCA,
582		AR_PHY_CH2_EXT_CCA
583	};
584	struct ar5212NfCalHist *h;
585	int i;
586	int32_t val;
587	uint8_t chainmask;
588	int16_t default_nf = ar5416GetDefaultNF(ah, chan);
589
590	/*
591	 * Force NF calibration for all chains.
592	 */
593	if (AR_SREV_KITE(ah)) {
594		/* Kite has only one chain */
595		chainmask = 0x9;
596	} else if (AR_SREV_MERLIN(ah)) {
597		/* Merlin has only two chains */
598		chainmask = 0x1B;
599	} else {
600		chainmask = 0x3F;
601	}
602
603	/*
604	 * Write filtered NF values into maxCCApwr register parameter
605	 * so we can load below.
606	 */
607	h = AH5416(ah)->ah_cal.nfCalHist;
608	HALDEBUG(ah, HAL_DEBUG_NFCAL, "CCA: ");
609	for (i = 0; i < AR5416_NUM_NF_READINGS; i ++) {
610
611		/* Don't write to EXT radio CCA registers unless in HT/40 mode */
612		/* XXX this check should really be cleaner! */
613		if (i > 2 && !IEEE80211_IS_CHAN_HT40(chan))
614			continue;
615
616		if (chainmask & (1 << i)) {
617			int16_t nf_val;
618
619			if (h)
620				nf_val = h[i].privNF;
621			else
622				nf_val = default_nf;
623
624			val = OS_REG_READ(ah, ar5416_cca_regs[i]);
625			val &= 0xFFFFFE00;
626			val |= (((uint32_t) nf_val << 1) & 0x1ff);
627			HALDEBUG(ah, HAL_DEBUG_NFCAL, "[%d: %d]", i, nf_val);
628			OS_REG_WRITE(ah, ar5416_cca_regs[i], val);
629		}
630	}
631	HALDEBUG(ah, HAL_DEBUG_NFCAL, "\n");
632
633	/* Load software filtered NF value into baseband internal minCCApwr variable. */
634	OS_REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_ENABLE_NF);
635	OS_REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
636	OS_REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
637
638	/* Wait for load to complete, should be fast, a few 10s of us. */
639	if (! ar5212WaitNFCalComplete(ah, 1000)) {
640		/*
641		 * We timed out waiting for the noisefloor to load, probably due to an
642		 * in-progress rx. Simply return here and allow the load plenty of time
643		 * to complete before the next calibration interval.  We need to avoid
644		 * trying to load -50 (which happens below) while the previous load is
645		 * still in progress as this can cause rx deafness. Instead by returning
646		 * here, the baseband nf cal will just be capped by our present
647		 * noisefloor until the next calibration timer.
648		 */
649		HALDEBUG(ah, HAL_DEBUG_UNMASKABLE, "Timeout while waiting for "
650		    "nf to load: AR_PHY_AGC_CONTROL=0x%x\n",
651		    OS_REG_READ(ah, AR_PHY_AGC_CONTROL));
652		return;
653	}
654
655	/*
656	 * Restore maxCCAPower register parameter again so that we're not capped
657	 * by the median we just loaded.  This will be initial (and max) value
658	 * of next noise floor calibration the baseband does.
659	 */
660	for (i = 0; i < AR5416_NUM_NF_READINGS; i ++)
661
662		/* Don't write to EXT radio CCA registers unless in HT/40 mode */
663		/* XXX this check should really be cleaner! */
664		if (i > 2 && !IEEE80211_IS_CHAN_HT40(chan))
665			continue;
666
667		if (chainmask & (1 << i)) {
668			val = OS_REG_READ(ah, ar5416_cca_regs[i]);
669			val &= 0xFFFFFE00;
670			val |= (((uint32_t)(-50) << 1) & 0x1ff);
671			OS_REG_WRITE(ah, ar5416_cca_regs[i], val);
672		}
673}
674
675/*
676 * This just initialises the "good" values for AR5416 which
677 * may not be right; it'lll be overridden by ar5416SanitizeNF()
678 * to nominal values.
679 */
680void
681ar5416InitNfHistBuff(struct ar5212NfCalHist *h)
682{
683	int i, j;
684
685	for (i = 0; i < AR5416_NUM_NF_READINGS; i ++) {
686		h[i].currIndex = 0;
687		h[i].privNF = AR5416_CCA_MAX_GOOD_VALUE;
688		h[i].invalidNFcount = AR512_NF_CAL_HIST_MAX;
689		for (j = 0; j < AR512_NF_CAL_HIST_MAX; j ++)
690			h[i].nfCalBuffer[j] = AR5416_CCA_MAX_GOOD_VALUE;
691	}
692}
693
694/*
695 * Update the noise floor buffer as a ring buffer
696 */
697static void
698ar5416UpdateNFHistBuff(struct ath_hal *ah, struct ar5212NfCalHist *h,
699    int16_t *nfarray)
700{
701	int i;
702
703	/* XXX TODO: don't record nfarray[] entries for inactive chains */
704	for (i = 0; i < AR5416_NUM_NF_READINGS; i ++) {
705		h[i].nfCalBuffer[h[i].currIndex] = nfarray[i];
706
707		if (++h[i].currIndex >= AR512_NF_CAL_HIST_MAX)
708			h[i].currIndex = 0;
709		if (h[i].invalidNFcount > 0) {
710			if (nfarray[i] < AR5416_CCA_MIN_BAD_VALUE ||
711			    nfarray[i] > AR5416_CCA_MAX_HIGH_VALUE) {
712				h[i].invalidNFcount = AR512_NF_CAL_HIST_MAX;
713			} else {
714				h[i].invalidNFcount--;
715				h[i].privNF = nfarray[i];
716			}
717		} else {
718			h[i].privNF = ar5212GetNfHistMid(h[i].nfCalBuffer);
719		}
720	}
721}
722
723static uint16_t
724ar5416GetDefaultNF(struct ath_hal *ah, const struct ieee80211_channel *chan)
725{
726        struct ar5416NfLimits *limit;
727
728        if (!chan || IEEE80211_IS_CHAN_2GHZ(chan))
729                limit = &AH5416(ah)->nf_2g;
730        else
731                limit = &AH5416(ah)->nf_5g;
732
733        return limit->nominal;
734}
735
736static void
737ar5416SanitizeNF(struct ath_hal *ah, int16_t *nf)
738{
739
740        struct ar5416NfLimits *limit;
741        int i;
742
743        if (IEEE80211_IS_CHAN_2GHZ(AH_PRIVATE(ah)->ah_curchan))
744                limit = &AH5416(ah)->nf_2g;
745        else
746                limit = &AH5416(ah)->nf_5g;
747
748        for (i = 0; i < AR5416_NUM_NF_READINGS; i++) {
749                if (!nf[i])
750                        continue;
751
752                if (nf[i] > limit->max) {
753                        HALDEBUG(ah, HAL_DEBUG_NFCAL,
754                                  "NF[%d] (%d) > MAX (%d), correcting to MAX\n",
755                                  i, nf[i], limit->max);
756                        nf[i] = limit->max;
757                } else if (nf[i] < limit->min) {
758                        HALDEBUG(ah, HAL_DEBUG_NFCAL,
759                                  "NF[%d] (%d) < MIN (%d), correcting to NOM\n",
760                                  i, nf[i], limit->min);
761                        nf[i] = limit->nominal;
762                }
763        }
764}
765
766
767/*
768 * Read the NF and check it against the noise floor threshhold
769 *
770 * Return 0 if the NF calibration hadn't finished, 0 if it was
771 * invalid, or > 0 for a valid NF reading.
772 */
773static int16_t
774ar5416GetNf(struct ath_hal *ah, struct ieee80211_channel *chan)
775{
776	int16_t nf, nfThresh;
777	int i;
778	int retval = 0;
779
780	if (ar5212IsNFCalInProgress(ah)) {
781		HALDEBUG(ah, HAL_DEBUG_ANY,
782		    "%s: NF didn't complete in calibration window\n", __func__);
783		nf = 0;
784		retval = -1;	/* NF didn't finish */
785	} else {
786		/* Finished NF cal, check against threshold */
787		int16_t nfarray[NUM_NOISEFLOOR_READINGS] = { 0 };
788		HAL_CHANNEL_INTERNAL *ichan = ath_hal_checkchannel(ah, chan);
789
790		/* TODO - enhance for multiple chains and ext ch */
791		ath_hal_getNoiseFloor(ah, nfarray);
792		nf = nfarray[0];
793		ar5416SanitizeNF(ah, nfarray);
794		if (ar5416GetEepromNoiseFloorThresh(ah, chan, &nfThresh)) {
795			if (nf > nfThresh) {
796				HALDEBUG(ah, HAL_DEBUG_UNMASKABLE,
797				    "%s: noise floor failed detected; "
798				    "detected %d, threshold %d\n", __func__,
799				    nf, nfThresh);
800				/*
801				 * NB: Don't discriminate 2.4 vs 5Ghz, if this
802				 *     happens it indicates a problem regardless
803				 *     of the band.
804				 */
805				chan->ic_state |= IEEE80211_CHANSTATE_CWINT;
806				nf = 0;
807				retval = 0;
808			}
809		} else {
810			nf = 0;
811			retval = 0;
812		}
813		/* Update MIMO channel statistics, regardless of validity or not (for now) */
814		for (i = 0; i < 3; i++) {
815			ichan->noiseFloorCtl[i] = nfarray[i];
816			ichan->noiseFloorExt[i] = nfarray[i + 3];
817		}
818		ichan->privFlags |= CHANNEL_MIMO_NF_VALID;
819
820		ar5416UpdateNFHistBuff(ah, AH5416(ah)->ah_cal.nfCalHist, nfarray);
821		ichan->rawNoiseFloor = nf;
822		retval = nf;
823	}
824	return retval;
825}
826