|
@@ -121,7 +121,7 @@ static void ath9k_ani_restart(struct ath_hw *ah)
|
|
|
if (!ah->curchan)
|
|
|
return;
|
|
|
|
|
|
- aniState = &ah->curchan->ani;
|
|
|
+ aniState = &ah->ani;
|
|
|
aniState->listenTime = 0;
|
|
|
|
|
|
ENABLE_REGWRITE_BUFFER(ah);
|
|
@@ -143,7 +143,7 @@ static void ath9k_ani_restart(struct ath_hw *ah)
|
|
|
static void ath9k_hw_set_ofdm_nil(struct ath_hw *ah, u8 immunityLevel,
|
|
|
bool scan)
|
|
|
{
|
|
|
- struct ar5416AniState *aniState = &ah->curchan->ani;
|
|
|
+ struct ar5416AniState *aniState = &ah->ani;
|
|
|
struct ath_common *common = ath9k_hw_common(ah);
|
|
|
const struct ani_ofdm_level_entry *entry_ofdm;
|
|
|
const struct ani_cck_level_entry *entry_cck;
|
|
@@ -198,7 +198,7 @@ static void ath9k_hw_ani_ofdm_err_trigger(struct ath_hw *ah)
|
|
|
if (!ah->curchan)
|
|
|
return;
|
|
|
|
|
|
- aniState = &ah->curchan->ani;
|
|
|
+ aniState = &ah->ani;
|
|
|
|
|
|
if (aniState->ofdmNoiseImmunityLevel < ATH9K_ANI_OFDM_MAX_LEVEL)
|
|
|
ath9k_hw_set_ofdm_nil(ah, aniState->ofdmNoiseImmunityLevel + 1, false);
|
|
@@ -210,7 +210,7 @@ static void ath9k_hw_ani_ofdm_err_trigger(struct ath_hw *ah)
|
|
|
static void ath9k_hw_set_cck_nil(struct ath_hw *ah, u_int8_t immunityLevel,
|
|
|
bool scan)
|
|
|
{
|
|
|
- struct ar5416AniState *aniState = &ah->curchan->ani;
|
|
|
+ struct ar5416AniState *aniState = &ah->ani;
|
|
|
struct ath_common *common = ath9k_hw_common(ah);
|
|
|
const struct ani_ofdm_level_entry *entry_ofdm;
|
|
|
const struct ani_cck_level_entry *entry_cck;
|
|
@@ -254,7 +254,7 @@ static void ath9k_hw_ani_cck_err_trigger(struct ath_hw *ah)
|
|
|
if (!ah->curchan)
|
|
|
return;
|
|
|
|
|
|
- aniState = &ah->curchan->ani;
|
|
|
+ aniState = &ah->ani;
|
|
|
|
|
|
if (aniState->cckNoiseImmunityLevel < ATH9K_ANI_CCK_MAX_LEVEL)
|
|
|
ath9k_hw_set_cck_nil(ah, aniState->cckNoiseImmunityLevel + 1,
|
|
@@ -269,7 +269,7 @@ static void ath9k_hw_ani_lower_immunity(struct ath_hw *ah)
|
|
|
{
|
|
|
struct ar5416AniState *aniState;
|
|
|
|
|
|
- aniState = &ah->curchan->ani;
|
|
|
+ aniState = &ah->ani;
|
|
|
|
|
|
/* lower OFDM noise immunity */
|
|
|
if (aniState->ofdmNoiseImmunityLevel > 0 &&
|
|
@@ -292,7 +292,7 @@ static void ath9k_hw_ani_lower_immunity(struct ath_hw *ah)
|
|
|
*/
|
|
|
void ath9k_ani_reset(struct ath_hw *ah, bool is_scanning)
|
|
|
{
|
|
|
- struct ar5416AniState *aniState = &ah->curchan->ani;
|
|
|
+ struct ar5416AniState *aniState = &ah->ani;
|
|
|
struct ath9k_channel *chan = ah->curchan;
|
|
|
struct ath_common *common = ath9k_hw_common(ah);
|
|
|
int ofdm_nil, cck_nil;
|
|
@@ -380,7 +380,7 @@ void ath9k_ani_reset(struct ath_hw *ah, bool is_scanning)
|
|
|
static bool ath9k_hw_ani_read_counters(struct ath_hw *ah)
|
|
|
{
|
|
|
struct ath_common *common = ath9k_hw_common(ah);
|
|
|
- struct ar5416AniState *aniState = &ah->curchan->ani;
|
|
|
+ struct ar5416AniState *aniState = &ah->ani;
|
|
|
u32 phyCnt1, phyCnt2;
|
|
|
int32_t listenTime;
|
|
|
|
|
@@ -418,7 +418,7 @@ void ath9k_hw_ani_monitor(struct ath_hw *ah, struct ath9k_channel *chan)
|
|
|
if (!ah->curchan)
|
|
|
return;
|
|
|
|
|
|
- aniState = &ah->curchan->ani;
|
|
|
+ aniState = &ah->ani;
|
|
|
if (!ath9k_hw_ani_read_counters(ah))
|
|
|
return;
|
|
|
|
|
@@ -490,28 +490,22 @@ EXPORT_SYMBOL(ath9k_hw_disable_mib_counters);
|
|
|
void ath9k_hw_ani_init(struct ath_hw *ah)
|
|
|
{
|
|
|
struct ath_common *common = ath9k_hw_common(ah);
|
|
|
- int i;
|
|
|
+ struct ar5416AniState *ani = &ah->ani;
|
|
|
|
|
|
ath_dbg(common, ANI, "Initialize ANI\n");
|
|
|
|
|
|
ah->config.ofdm_trig_high = ATH9K_ANI_OFDM_TRIG_HIGH;
|
|
|
ah->config.ofdm_trig_low = ATH9K_ANI_OFDM_TRIG_LOW;
|
|
|
-
|
|
|
ah->config.cck_trig_high = ATH9K_ANI_CCK_TRIG_HIGH;
|
|
|
ah->config.cck_trig_low = ATH9K_ANI_CCK_TRIG_LOW;
|
|
|
|
|
|
- for (i = 0; i < ARRAY_SIZE(ah->channels); i++) {
|
|
|
- struct ath9k_channel *chan = &ah->channels[i];
|
|
|
- struct ar5416AniState *ani = &chan->ani;
|
|
|
-
|
|
|
- ani->spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL;
|
|
|
- ani->firstepLevel = ATH9K_ANI_FIRSTEP_LVL;
|
|
|
- ani->mrcCCK = AR_SREV_9300_20_OR_LATER(ah) ? true : false;
|
|
|
- ani->ofdmsTurn = true;
|
|
|
- ani->ofdmWeakSigDetect = true;
|
|
|
- ani->cckNoiseImmunityLevel = ATH9K_ANI_CCK_DEF_LEVEL;
|
|
|
- ani->ofdmNoiseImmunityLevel = ATH9K_ANI_OFDM_DEF_LEVEL;
|
|
|
- }
|
|
|
+ ani->spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL;
|
|
|
+ ani->firstepLevel = ATH9K_ANI_FIRSTEP_LVL;
|
|
|
+ ani->mrcCCK = AR_SREV_9300_20_OR_LATER(ah) ? true : false;
|
|
|
+ ani->ofdmsTurn = true;
|
|
|
+ ani->ofdmWeakSigDetect = true;
|
|
|
+ ani->cckNoiseImmunityLevel = ATH9K_ANI_CCK_DEF_LEVEL;
|
|
|
+ ani->ofdmNoiseImmunityLevel = ATH9K_ANI_OFDM_DEF_LEVEL;
|
|
|
|
|
|
/*
|
|
|
* since we expect some ongoing maintenance on the tables, let's sanity
|