ath9k_hw: make spur mitigation a callback
This only differs between single-chip solutions and non single-chip solutions. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
e16393bbb1
commit
ae478cf69e
@@ -952,8 +952,11 @@ int ath9k_hw_init(struct ath_hw *ah)
|
|||||||
if (AR_SREV_9280_10_OR_LATER(ah)) {
|
if (AR_SREV_9280_10_OR_LATER(ah)) {
|
||||||
ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
|
ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
|
||||||
ah->ath9k_hw_rf_set_freq = &ath9k_hw_ar9280_set_channel;
|
ah->ath9k_hw_rf_set_freq = &ath9k_hw_ar9280_set_channel;
|
||||||
} else
|
ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_9280_spur_mitigate;
|
||||||
|
} else {
|
||||||
ah->ath9k_hw_rf_set_freq = &ath9k_hw_set_channel;
|
ah->ath9k_hw_rf_set_freq = &ath9k_hw_set_channel;
|
||||||
|
ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_spur_mitigate;
|
||||||
|
}
|
||||||
|
|
||||||
ath9k_hw_init_mode_regs(ah);
|
ath9k_hw_init_mode_regs(ah);
|
||||||
|
|
||||||
@@ -1917,10 +1920,7 @@ static bool ath9k_hw_channel_change(struct ath_hw *ah,
|
|||||||
if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
|
if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
|
||||||
ath9k_hw_set_delta_slope(ah, chan);
|
ath9k_hw_set_delta_slope(ah, chan);
|
||||||
|
|
||||||
if (AR_SREV_9280_10_OR_LATER(ah))
|
ah->ath9k_hw_spur_mitigate_freq(ah, chan);
|
||||||
ath9k_hw_9280_spur_mitigate(ah, chan);
|
|
||||||
else
|
|
||||||
ath9k_hw_spur_mitigate(ah, chan);
|
|
||||||
|
|
||||||
if (!chan->oneTimeCalsDone)
|
if (!chan->oneTimeCalsDone)
|
||||||
chan->oneTimeCalsDone = true;
|
chan->oneTimeCalsDone = true;
|
||||||
@@ -2053,13 +2053,8 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
|
|||||||
if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
|
if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
|
||||||
ath9k_hw_set_delta_slope(ah, chan);
|
ath9k_hw_set_delta_slope(ah, chan);
|
||||||
|
|
||||||
if (AR_SREV_9280_10_OR_LATER(ah))
|
ah->ath9k_hw_spur_mitigate_freq(ah, chan);
|
||||||
ath9k_hw_9280_spur_mitigate(ah, chan);
|
|
||||||
else
|
|
||||||
ath9k_hw_spur_mitigate(ah, chan);
|
|
||||||
|
|
||||||
ah->eep_ops->set_board_values(ah, chan);
|
ah->eep_ops->set_board_values(ah, chan);
|
||||||
|
|
||||||
ath9k_hw_decrease_chain_power(ah, chan);
|
ath9k_hw_decrease_chain_power(ah, chan);
|
||||||
|
|
||||||
REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
|
REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
|
||||||
|
@@ -550,6 +550,11 @@ struct ath_hw {
|
|||||||
|
|
||||||
/* Callback for radio frequency change */
|
/* Callback for radio frequency change */
|
||||||
int (*ath9k_hw_rf_set_freq)(struct ath_hw *ah, struct ath9k_channel *chan);
|
int (*ath9k_hw_rf_set_freq)(struct ath_hw *ah, struct ath9k_channel *chan);
|
||||||
|
|
||||||
|
/* Callback for baseband spur frequency */
|
||||||
|
void (*ath9k_hw_spur_mitigate_freq)(struct ath_hw *ah,
|
||||||
|
struct ath9k_channel *chan);
|
||||||
|
|
||||||
/* Used to program the radio on non single-chip devices */
|
/* Used to program the radio on non single-chip devices */
|
||||||
u32 *analogBank0Data;
|
u32 *analogBank0Data;
|
||||||
u32 *analogBank1Data;
|
u32 *analogBank1Data;
|
||||||
|
Reference in New Issue
Block a user