Skip to content

Commit

Permalink
ath9k: Add a few debug messages for PAPRD
Browse files Browse the repository at this point in the history
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Sujith Manoharan authored and John W. Linville committed Dec 10, 2012
1 parent 8c723e2 commit 914d0f4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions drivers/net/wireless/ath/ath9k/ar9003_paprd.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ static int ar9003_paprd_setup_single_table(struct ath_hw *ah)
REG_RMW_FIELD(ah, AR_PHY_PAPRD_HT40, AR_PHY_PAPRD_HT40_MASK,
ah->paprd_ratemask_ht40);

ath_dbg(common, CALIBRATE, "PAPRD HT20 mask: 0x%x, HT40 mask: 0x%x\n",
ah->paprd_ratemask, ah->paprd_ratemask_ht40);

for (i = 0; i < ah->caps.max_txchains; i++) {
REG_RMW_FIELD(ah, ctrl0[i],
AR_PHY_PAPRD_CTRL0_USE_SINGLE_TABLE_MASK, 1);
Expand Down
10 changes: 8 additions & 2 deletions drivers/net/wireless/ath/ath9k/link.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,14 @@ void ath_rx_poll(unsigned long data)
static void ath_paprd_activate(struct ath_softc *sc)
{
struct ath_hw *ah = sc->sc_ah;
struct ath_common *common = ath9k_hw_common(ah);
struct ath9k_hw_cal_data *caldata = ah->caldata;
int chain;

if (!caldata || !caldata->paprd_done)
if (!caldata || !caldata->paprd_done) {
ath_dbg(common, CALIBRATE, "Failed to activate PAPRD\n");
return;
}

ath9k_ps_wakeup(sc);
ar9003_paprd_enable(ah, false);
Expand All @@ -194,6 +197,7 @@ static void ath_paprd_activate(struct ath_softc *sc)
ar9003_paprd_populate_single_table(ah, caldata, chain);
}

ath_dbg(common, CALIBRATE, "Activating PAPRD\n");
ar9003_paprd_enable(ah, true);
ath9k_ps_restore(sc);
}
Expand Down Expand Up @@ -253,8 +257,10 @@ void ath_paprd_calibrate(struct work_struct *work)
int len = 1800;
int ret;

if (!caldata || !caldata->paprd_packet_sent || caldata->paprd_done)
if (!caldata || !caldata->paprd_packet_sent || caldata->paprd_done) {
ath_dbg(common, CALIBRATE, "Skipping PAPRD calibration\n");
return;
}

ath9k_ps_wakeup(sc);

Expand Down

0 comments on commit 914d0f4

Please sign in to comment.