diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
commit | ada47b5fe13d89735805b566185f4885f5a3f750 (patch) | |
tree | 644b88f8a71896307d71438e9b3af49126ffb22b /drivers/net/wireless/ath/ath9k/ani.c | |
parent | 43e98717ad40a4ae64545b5ba047c7b86aa44f4f (diff) | |
parent | 3280f21d43ee541f97f8cda5792150d2dbec20d5 (diff) |
Merge branch 'wip-2.6.34' into old-private-masterarchived-private-master
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ani.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ani.c | 141 |
1 files changed, 79 insertions, 62 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ani.c b/drivers/net/wireless/ath/ath9k/ani.c index 2b493742ef10..2a0cd64c2bfb 100644 --- a/drivers/net/wireless/ath/ath9k/ani.c +++ b/drivers/net/wireless/ath/ath9k/ani.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "ath9k.h" | 17 | #include "hw.h" |
18 | 18 | ||
19 | static int ath9k_hw_get_ani_channel_idx(struct ath_hw *ah, | 19 | static int ath9k_hw_get_ani_channel_idx(struct ath_hw *ah, |
20 | struct ath9k_channel *chan) | 20 | struct ath9k_channel *chan) |
@@ -31,8 +31,8 @@ static int ath9k_hw_get_ani_channel_idx(struct ath_hw *ah, | |||
31 | } | 31 | } |
32 | } | 32 | } |
33 | 33 | ||
34 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 34 | ath_print(ath9k_hw_common(ah), ATH_DBG_ANI, |
35 | "No more channel states left. Using channel 0\n"); | 35 | "No more channel states left. Using channel 0\n"); |
36 | 36 | ||
37 | return 0; | 37 | return 0; |
38 | } | 38 | } |
@@ -41,16 +41,17 @@ static bool ath9k_hw_ani_control(struct ath_hw *ah, | |||
41 | enum ath9k_ani_cmd cmd, int param) | 41 | enum ath9k_ani_cmd cmd, int param) |
42 | { | 42 | { |
43 | struct ar5416AniState *aniState = ah->curani; | 43 | struct ar5416AniState *aniState = ah->curani; |
44 | struct ath_common *common = ath9k_hw_common(ah); | ||
44 | 45 | ||
45 | switch (cmd & ah->ani_function) { | 46 | switch (cmd & ah->ani_function) { |
46 | case ATH9K_ANI_NOISE_IMMUNITY_LEVEL:{ | 47 | case ATH9K_ANI_NOISE_IMMUNITY_LEVEL:{ |
47 | u32 level = param; | 48 | u32 level = param; |
48 | 49 | ||
49 | if (level >= ARRAY_SIZE(ah->totalSizeDesired)) { | 50 | if (level >= ARRAY_SIZE(ah->totalSizeDesired)) { |
50 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 51 | ath_print(common, ATH_DBG_ANI, |
51 | "level out of range (%u > %u)\n", | 52 | "level out of range (%u > %u)\n", |
52 | level, | 53 | level, |
53 | (unsigned)ARRAY_SIZE(ah->totalSizeDesired)); | 54 | (unsigned)ARRAY_SIZE(ah->totalSizeDesired)); |
54 | return false; | 55 | return false; |
55 | } | 56 | } |
56 | 57 | ||
@@ -152,10 +153,10 @@ static bool ath9k_hw_ani_control(struct ath_hw *ah, | |||
152 | u32 level = param; | 153 | u32 level = param; |
153 | 154 | ||
154 | if (level >= ARRAY_SIZE(firstep)) { | 155 | if (level >= ARRAY_SIZE(firstep)) { |
155 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 156 | ath_print(common, ATH_DBG_ANI, |
156 | "level out of range (%u > %u)\n", | 157 | "level out of range (%u > %u)\n", |
157 | level, | 158 | level, |
158 | (unsigned) ARRAY_SIZE(firstep)); | 159 | (unsigned) ARRAY_SIZE(firstep)); |
159 | return false; | 160 | return false; |
160 | } | 161 | } |
161 | REG_RMW_FIELD(ah, AR_PHY_FIND_SIG, | 162 | REG_RMW_FIELD(ah, AR_PHY_FIND_SIG, |
@@ -174,11 +175,10 @@ static bool ath9k_hw_ani_control(struct ath_hw *ah, | |||
174 | u32 level = param; | 175 | u32 level = param; |
175 | 176 | ||
176 | if (level >= ARRAY_SIZE(cycpwrThr1)) { | 177 | if (level >= ARRAY_SIZE(cycpwrThr1)) { |
177 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 178 | ath_print(common, ATH_DBG_ANI, |
178 | "level out of range (%u > %u)\n", | 179 | "level out of range (%u > %u)\n", |
179 | level, | 180 | level, |
180 | (unsigned) | 181 | (unsigned) ARRAY_SIZE(cycpwrThr1)); |
181 | ARRAY_SIZE(cycpwrThr1)); | ||
182 | return false; | 182 | return false; |
183 | } | 183 | } |
184 | REG_RMW_FIELD(ah, AR_PHY_TIMING5, | 184 | REG_RMW_FIELD(ah, AR_PHY_TIMING5, |
@@ -194,25 +194,28 @@ static bool ath9k_hw_ani_control(struct ath_hw *ah, | |||
194 | case ATH9K_ANI_PRESENT: | 194 | case ATH9K_ANI_PRESENT: |
195 | break; | 195 | break; |
196 | default: | 196 | default: |
197 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 197 | ath_print(common, ATH_DBG_ANI, |
198 | "invalid cmd %u\n", cmd); | 198 | "invalid cmd %u\n", cmd); |
199 | return false; | 199 | return false; |
200 | } | 200 | } |
201 | 201 | ||
202 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "ANI parameters:\n"); | 202 | ath_print(common, ATH_DBG_ANI, "ANI parameters:\n"); |
203 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 203 | ath_print(common, ATH_DBG_ANI, |
204 | "noiseImmunityLevel=%d, spurImmunityLevel=%d, " | 204 | "noiseImmunityLevel=%d, spurImmunityLevel=%d, " |
205 | "ofdmWeakSigDetectOff=%d\n", | 205 | "ofdmWeakSigDetectOff=%d\n", |
206 | aniState->noiseImmunityLevel, aniState->spurImmunityLevel, | 206 | aniState->noiseImmunityLevel, |
207 | !aniState->ofdmWeakSigDetectOff); | 207 | aniState->spurImmunityLevel, |
208 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 208 | !aniState->ofdmWeakSigDetectOff); |
209 | "cckWeakSigThreshold=%d, " | 209 | ath_print(common, ATH_DBG_ANI, |
210 | "firstepLevel=%d, listenTime=%d\n", | 210 | "cckWeakSigThreshold=%d, " |
211 | aniState->cckWeakSigThreshold, aniState->firstepLevel, | 211 | "firstepLevel=%d, listenTime=%d\n", |
212 | aniState->listenTime); | 212 | aniState->cckWeakSigThreshold, |
213 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 213 | aniState->firstepLevel, |
214 | aniState->listenTime); | ||
215 | ath_print(common, ATH_DBG_ANI, | ||
214 | "cycleCount=%d, ofdmPhyErrCount=%d, cckPhyErrCount=%d\n\n", | 216 | "cycleCount=%d, ofdmPhyErrCount=%d, cckPhyErrCount=%d\n\n", |
215 | aniState->cycleCount, aniState->ofdmPhyErrCount, | 217 | aniState->cycleCount, |
218 | aniState->ofdmPhyErrCount, | ||
216 | aniState->cckPhyErrCount); | 219 | aniState->cckPhyErrCount); |
217 | 220 | ||
218 | return true; | 221 | return true; |
@@ -231,6 +234,7 @@ static void ath9k_hw_update_mibstats(struct ath_hw *ah, | |||
231 | static void ath9k_ani_restart(struct ath_hw *ah) | 234 | static void ath9k_ani_restart(struct ath_hw *ah) |
232 | { | 235 | { |
233 | struct ar5416AniState *aniState; | 236 | struct ar5416AniState *aniState; |
237 | struct ath_common *common = ath9k_hw_common(ah); | ||
234 | 238 | ||
235 | if (!DO_ANI(ah)) | 239 | if (!DO_ANI(ah)) |
236 | return; | 240 | return; |
@@ -240,24 +244,24 @@ static void ath9k_ani_restart(struct ath_hw *ah) | |||
240 | 244 | ||
241 | if (aniState->ofdmTrigHigh > AR_PHY_COUNTMAX) { | 245 | if (aniState->ofdmTrigHigh > AR_PHY_COUNTMAX) { |
242 | aniState->ofdmPhyErrBase = 0; | 246 | aniState->ofdmPhyErrBase = 0; |
243 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 247 | ath_print(common, ATH_DBG_ANI, |
244 | "OFDM Trigger is too high for hw counters\n"); | 248 | "OFDM Trigger is too high for hw counters\n"); |
245 | } else { | 249 | } else { |
246 | aniState->ofdmPhyErrBase = | 250 | aniState->ofdmPhyErrBase = |
247 | AR_PHY_COUNTMAX - aniState->ofdmTrigHigh; | 251 | AR_PHY_COUNTMAX - aniState->ofdmTrigHigh; |
248 | } | 252 | } |
249 | if (aniState->cckTrigHigh > AR_PHY_COUNTMAX) { | 253 | if (aniState->cckTrigHigh > AR_PHY_COUNTMAX) { |
250 | aniState->cckPhyErrBase = 0; | 254 | aniState->cckPhyErrBase = 0; |
251 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 255 | ath_print(common, ATH_DBG_ANI, |
252 | "CCK Trigger is too high for hw counters\n"); | 256 | "CCK Trigger is too high for hw counters\n"); |
253 | } else { | 257 | } else { |
254 | aniState->cckPhyErrBase = | 258 | aniState->cckPhyErrBase = |
255 | AR_PHY_COUNTMAX - aniState->cckTrigHigh; | 259 | AR_PHY_COUNTMAX - aniState->cckTrigHigh; |
256 | } | 260 | } |
257 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 261 | ath_print(common, ATH_DBG_ANI, |
258 | "Writing ofdmbase=%u cckbase=%u\n", | 262 | "Writing ofdmbase=%u cckbase=%u\n", |
259 | aniState->ofdmPhyErrBase, | 263 | aniState->ofdmPhyErrBase, |
260 | aniState->cckPhyErrBase); | 264 | aniState->cckPhyErrBase); |
261 | REG_WRITE(ah, AR_PHY_ERR_1, aniState->ofdmPhyErrBase); | 265 | REG_WRITE(ah, AR_PHY_ERR_1, aniState->ofdmPhyErrBase); |
262 | REG_WRITE(ah, AR_PHY_ERR_2, aniState->cckPhyErrBase); | 266 | REG_WRITE(ah, AR_PHY_ERR_2, aniState->cckPhyErrBase); |
263 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING); | 267 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING); |
@@ -271,7 +275,7 @@ static void ath9k_ani_restart(struct ath_hw *ah) | |||
271 | 275 | ||
272 | static void ath9k_hw_ani_ofdm_err_trigger(struct ath_hw *ah) | 276 | static void ath9k_hw_ani_ofdm_err_trigger(struct ath_hw *ah) |
273 | { | 277 | { |
274 | struct ieee80211_conf *conf = &ah->ah_sc->hw->conf; | 278 | struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf; |
275 | struct ar5416AniState *aniState; | 279 | struct ar5416AniState *aniState; |
276 | int32_t rssi; | 280 | int32_t rssi; |
277 | 281 | ||
@@ -343,7 +347,7 @@ static void ath9k_hw_ani_ofdm_err_trigger(struct ath_hw *ah) | |||
343 | 347 | ||
344 | static void ath9k_hw_ani_cck_err_trigger(struct ath_hw *ah) | 348 | static void ath9k_hw_ani_cck_err_trigger(struct ath_hw *ah) |
345 | { | 349 | { |
346 | struct ieee80211_conf *conf = &ah->ah_sc->hw->conf; | 350 | struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf; |
347 | struct ar5416AniState *aniState; | 351 | struct ar5416AniState *aniState; |
348 | int32_t rssi; | 352 | int32_t rssi; |
349 | 353 | ||
@@ -464,6 +468,7 @@ void ath9k_ani_reset(struct ath_hw *ah) | |||
464 | { | 468 | { |
465 | struct ar5416AniState *aniState; | 469 | struct ar5416AniState *aniState; |
466 | struct ath9k_channel *chan = ah->curchan; | 470 | struct ath9k_channel *chan = ah->curchan; |
471 | struct ath_common *common = ath9k_hw_common(ah); | ||
467 | int index; | 472 | int index; |
468 | 473 | ||
469 | if (!DO_ANI(ah)) | 474 | if (!DO_ANI(ah)) |
@@ -475,8 +480,8 @@ void ath9k_ani_reset(struct ath_hw *ah) | |||
475 | 480 | ||
476 | if (DO_ANI(ah) && ah->opmode != NL80211_IFTYPE_STATION | 481 | if (DO_ANI(ah) && ah->opmode != NL80211_IFTYPE_STATION |
477 | && ah->opmode != NL80211_IFTYPE_ADHOC) { | 482 | && ah->opmode != NL80211_IFTYPE_ADHOC) { |
478 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 483 | ath_print(common, ATH_DBG_ANI, |
479 | "Reset ANI state opmode %u\n", ah->opmode); | 484 | "Reset ANI state opmode %u\n", ah->opmode); |
480 | ah->stats.ast_ani_reset++; | 485 | ah->stats.ast_ani_reset++; |
481 | 486 | ||
482 | if (ah->opmode == NL80211_IFTYPE_AP) { | 487 | if (ah->opmode == NL80211_IFTYPE_AP) { |
@@ -543,6 +548,7 @@ void ath9k_hw_ani_monitor(struct ath_hw *ah, | |||
543 | struct ath9k_channel *chan) | 548 | struct ath9k_channel *chan) |
544 | { | 549 | { |
545 | struct ar5416AniState *aniState; | 550 | struct ar5416AniState *aniState; |
551 | struct ath_common *common = ath9k_hw_common(ah); | ||
546 | int32_t listenTime; | 552 | int32_t listenTime; |
547 | u32 phyCnt1, phyCnt2; | 553 | u32 phyCnt1, phyCnt2; |
548 | u32 ofdmPhyErrCnt, cckPhyErrCnt; | 554 | u32 ofdmPhyErrCnt, cckPhyErrCnt; |
@@ -569,20 +575,22 @@ void ath9k_hw_ani_monitor(struct ath_hw *ah, | |||
569 | if (phyCnt1 < aniState->ofdmPhyErrBase || | 575 | if (phyCnt1 < aniState->ofdmPhyErrBase || |
570 | phyCnt2 < aniState->cckPhyErrBase) { | 576 | phyCnt2 < aniState->cckPhyErrBase) { |
571 | if (phyCnt1 < aniState->ofdmPhyErrBase) { | 577 | if (phyCnt1 < aniState->ofdmPhyErrBase) { |
572 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 578 | ath_print(common, ATH_DBG_ANI, |
573 | "phyCnt1 0x%x, resetting " | 579 | "phyCnt1 0x%x, resetting " |
574 | "counter value to 0x%x\n", | 580 | "counter value to 0x%x\n", |
575 | phyCnt1, aniState->ofdmPhyErrBase); | 581 | phyCnt1, |
582 | aniState->ofdmPhyErrBase); | ||
576 | REG_WRITE(ah, AR_PHY_ERR_1, | 583 | REG_WRITE(ah, AR_PHY_ERR_1, |
577 | aniState->ofdmPhyErrBase); | 584 | aniState->ofdmPhyErrBase); |
578 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, | 585 | REG_WRITE(ah, AR_PHY_ERR_MASK_1, |
579 | AR_PHY_ERR_OFDM_TIMING); | 586 | AR_PHY_ERR_OFDM_TIMING); |
580 | } | 587 | } |
581 | if (phyCnt2 < aniState->cckPhyErrBase) { | 588 | if (phyCnt2 < aniState->cckPhyErrBase) { |
582 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 589 | ath_print(common, ATH_DBG_ANI, |
583 | "phyCnt2 0x%x, resetting " | 590 | "phyCnt2 0x%x, resetting " |
584 | "counter value to 0x%x\n", | 591 | "counter value to 0x%x\n", |
585 | phyCnt2, aniState->cckPhyErrBase); | 592 | phyCnt2, |
593 | aniState->cckPhyErrBase); | ||
586 | REG_WRITE(ah, AR_PHY_ERR_2, | 594 | REG_WRITE(ah, AR_PHY_ERR_2, |
587 | aniState->cckPhyErrBase); | 595 | aniState->cckPhyErrBase); |
588 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, | 596 | REG_WRITE(ah, AR_PHY_ERR_MASK_2, |
@@ -621,10 +629,13 @@ void ath9k_hw_ani_monitor(struct ath_hw *ah, | |||
621 | } | 629 | } |
622 | } | 630 | } |
623 | } | 631 | } |
632 | EXPORT_SYMBOL(ath9k_hw_ani_monitor); | ||
624 | 633 | ||
625 | void ath9k_enable_mib_counters(struct ath_hw *ah) | 634 | void ath9k_enable_mib_counters(struct ath_hw *ah) |
626 | { | 635 | { |
627 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Enable MIB counters\n"); | 636 | struct ath_common *common = ath9k_hw_common(ah); |
637 | |||
638 | ath_print(common, ATH_DBG_ANI, "Enable MIB counters\n"); | ||
628 | 639 | ||
629 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); | 640 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
630 | 641 | ||
@@ -640,7 +651,10 @@ void ath9k_enable_mib_counters(struct ath_hw *ah) | |||
640 | /* Freeze the MIB counters, get the stats and then clear them */ | 651 | /* Freeze the MIB counters, get the stats and then clear them */ |
641 | void ath9k_hw_disable_mib_counters(struct ath_hw *ah) | 652 | void ath9k_hw_disable_mib_counters(struct ath_hw *ah) |
642 | { | 653 | { |
643 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Disable MIB counters\n"); | 654 | struct ath_common *common = ath9k_hw_common(ah); |
655 | |||
656 | ath_print(common, ATH_DBG_ANI, "Disable MIB counters\n"); | ||
657 | |||
644 | REG_WRITE(ah, AR_MIBC, AR_MIBC_FMC); | 658 | REG_WRITE(ah, AR_MIBC, AR_MIBC_FMC); |
645 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); | 659 | ath9k_hw_update_mibstats(ah, &ah->ah_mibStats); |
646 | REG_WRITE(ah, AR_MIBC, AR_MIBC_CMC); | 660 | REG_WRITE(ah, AR_MIBC, AR_MIBC_CMC); |
@@ -653,6 +667,7 @@ u32 ath9k_hw_GetMibCycleCountsPct(struct ath_hw *ah, | |||
653 | u32 *rxf_pcnt, | 667 | u32 *rxf_pcnt, |
654 | u32 *txf_pcnt) | 668 | u32 *txf_pcnt) |
655 | { | 669 | { |
670 | struct ath_common *common = ath9k_hw_common(ah); | ||
656 | static u32 cycles, rx_clear, rx_frame, tx_frame; | 671 | static u32 cycles, rx_clear, rx_frame, tx_frame; |
657 | u32 good = 1; | 672 | u32 good = 1; |
658 | 673 | ||
@@ -662,8 +677,8 @@ u32 ath9k_hw_GetMibCycleCountsPct(struct ath_hw *ah, | |||
662 | u32 cc = REG_READ(ah, AR_CCCNT); | 677 | u32 cc = REG_READ(ah, AR_CCCNT); |
663 | 678 | ||
664 | if (cycles == 0 || cycles > cc) { | 679 | if (cycles == 0 || cycles > cc) { |
665 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 680 | ath_print(common, ATH_DBG_ANI, |
666 | "cycle counter wrap. ExtBusy = 0\n"); | 681 | "cycle counter wrap. ExtBusy = 0\n"); |
667 | good = 0; | 682 | good = 0; |
668 | } else { | 683 | } else { |
669 | u32 cc_d = cc - cycles; | 684 | u32 cc_d = cc - cycles; |
@@ -742,6 +757,7 @@ void ath9k_hw_procmibevent(struct ath_hw *ah) | |||
742 | ath9k_ani_restart(ah); | 757 | ath9k_ani_restart(ah); |
743 | } | 758 | } |
744 | } | 759 | } |
760 | EXPORT_SYMBOL(ath9k_hw_procmibevent); | ||
745 | 761 | ||
746 | void ath9k_hw_ani_setup(struct ath_hw *ah) | 762 | void ath9k_hw_ani_setup(struct ath_hw *ah) |
747 | { | 763 | { |
@@ -762,9 +778,10 @@ void ath9k_hw_ani_setup(struct ath_hw *ah) | |||
762 | 778 | ||
763 | void ath9k_hw_ani_init(struct ath_hw *ah) | 779 | void ath9k_hw_ani_init(struct ath_hw *ah) |
764 | { | 780 | { |
781 | struct ath_common *common = ath9k_hw_common(ah); | ||
765 | int i; | 782 | int i; |
766 | 783 | ||
767 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Initialize ANI\n"); | 784 | ath_print(common, ATH_DBG_ANI, "Initialize ANI\n"); |
768 | 785 | ||
769 | memset(ah->ani, 0, sizeof(ah->ani)); | 786 | memset(ah->ani, 0, sizeof(ah->ani)); |
770 | for (i = 0; i < ARRAY_SIZE(ah->ani); i++) { | 787 | for (i = 0; i < ARRAY_SIZE(ah->ani); i++) { |
@@ -786,11 +803,11 @@ void ath9k_hw_ani_init(struct ath_hw *ah) | |||
786 | AR_PHY_COUNTMAX - ATH9K_ANI_CCK_TRIG_HIGH; | 803 | AR_PHY_COUNTMAX - ATH9K_ANI_CCK_TRIG_HIGH; |
787 | } | 804 | } |
788 | 805 | ||
789 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, | 806 | ath_print(common, ATH_DBG_ANI, |
790 | "Setting OfdmErrBase = 0x%08x\n", | 807 | "Setting OfdmErrBase = 0x%08x\n", |
791 | ah->ani[0].ofdmPhyErrBase); | 808 | ah->ani[0].ofdmPhyErrBase); |
792 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Setting cckErrBase = 0x%08x\n", | 809 | ath_print(common, ATH_DBG_ANI, "Setting cckErrBase = 0x%08x\n", |
793 | ah->ani[0].cckPhyErrBase); | 810 | ah->ani[0].cckPhyErrBase); |
794 | 811 | ||
795 | REG_WRITE(ah, AR_PHY_ERR_1, ah->ani[0].ofdmPhyErrBase); | 812 | REG_WRITE(ah, AR_PHY_ERR_1, ah->ani[0].ofdmPhyErrBase); |
796 | REG_WRITE(ah, AR_PHY_ERR_2, ah->ani[0].cckPhyErrBase); | 813 | REG_WRITE(ah, AR_PHY_ERR_2, ah->ani[0].cckPhyErrBase); |
@@ -803,7 +820,7 @@ void ath9k_hw_ani_init(struct ath_hw *ah) | |||
803 | 820 | ||
804 | void ath9k_hw_ani_disable(struct ath_hw *ah) | 821 | void ath9k_hw_ani_disable(struct ath_hw *ah) |
805 | { | 822 | { |
806 | DPRINTF(ah->ah_sc, ATH_DBG_ANI, "Disabling ANI\n"); | 823 | ath_print(ath9k_hw_common(ah), ATH_DBG_ANI, "Disabling ANI\n"); |
807 | 824 | ||
808 | ath9k_hw_disable_mib_counters(ah); | 825 | ath9k_hw_disable_mib_counters(ah); |
809 | REG_WRITE(ah, AR_PHY_ERR_1, 0); | 826 | REG_WRITE(ah, AR_PHY_ERR_1, 0); |