From: Rajkumar Manoharan <rmanohar@qca.qualcomm.com>
To: Bala Shanmugam <bkamatch@qca.qualcomm.com>
Cc: <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH 1/3] ath9k: Do not enable ANT diversity if ANT control bit is 0
Date: Mon, 29 Oct 2012 14:09:35 +0530 [thread overview]
Message-ID: <20121029083933.GA28932@hemis.qca.qualcomm.com> (raw)
> RvR test is not good when ANT control bit is not set so
> enable ANT diversity only when ANT control bit is set.
>
> Signed-off-by: Bala Shanmugam <bkamatch@qca.qualcomm.com>
> ---
> drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 22 +++++++++++++++++-----
> drivers/net/wireless/ath/ath9k/ar9003_phy.h | 2 ++
> 2 files changed, 19 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
> index 189aeb2..d2e44c3 100644
> --- a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
> +++ b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
> @@ -3630,15 +3630,21 @@ static void ar9003_hw_ant_ctrl_apply(struct ath_hw *ah, bool is2ghz)
> regval = REG_READ(ah, AR_PHY_MC_GAIN_CTRL);
> regval &= (~AR_ANT_DIV_CTRL_ALL);
> regval |= (value & 0x3f) << AR_ANT_DIV_CTRL_ALL_S;
> - /* enable_lnadiv */
> - regval &= (~AR_PHY_ANT_DIV_LNADIV);
> - regval |= ((value >> 6) & 0x1) << AR_PHY_ANT_DIV_LNADIV_S;
> +
> + if (AR_SREV_9485(ah)) {
> + /* enable_lnadiv */
> + regval &= (~AR_PHY_ANT_DIV_LNADIV);
> + regval |= ((value >> 6) & 0x1) <<
> + AR_PHY_ANT_DIV_LNADIV_S;
> + }
>
> if (AR_SREV_9565(ah)) {
> - if (ah->shared_chain_lnadiv) {
> + if (ah->shared_chain_lnadiv &&
> + (value & AR_EEP_ANT_DIV_ENABLE)) {
> + regval |= AR_ANT_DIV_ENABLE;
> regval |= (1 << AR_PHY_ANT_SW_RX_PROT_S);
> } else {
> - regval &= ~(1 << AR_PHY_ANT_DIV_LNADIV_S);
> + regval &= ~AR_ANT_DIV_ENABLE;
> regval &= ~(1 << AR_PHY_ANT_SW_RX_PROT_S);
> }
> }
> @@ -3649,6 +3655,12 @@ static void ar9003_hw_ant_ctrl_apply(struct ath_hw *ah, bool is2ghz)
> regval = REG_READ(ah, AR_PHY_CCK_DETECT);
> regval &= (~AR_FAST_DIV_ENABLE);
> regval |= ((value >> 7) & 0x1) << AR_FAST_DIV_ENABLE_S;
> + if (ah->shared_chain_lnadiv &&
> + (AR_SREV_9485(ah) || (AR_SREV_9565(ah) &&
> + (value & AR_EEP_FAST_DIV_ENABLE))))
> + regval |= AR_FAST_DIV_ENABLE;
> + else
> + regval &= ~AR_FAST_DIV_ENABLE;
> REG_WRITE(ah, AR_PHY_CCK_DETECT, regval);
>
These changes should be done in ar9003_hw_antctrl_shared_chain_lnadiv not in
eeprom path. Otherwise it breaks AR9330.
-Rajkumar
next reply other threads:[~2012-10-29 8:39 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-29 8:39 Rajkumar Manoharan [this message]
-- strict thread matches above, loose matches on Subject: below --
2012-10-25 15:24 [PATCH 1/3] ath9k: Do not enable ANT diversity if ANT control bit is 0 Bala Shanmugam
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20121029083933.GA28932@hemis.qca.qualcomm.com \
--to=rmanohar@qca.qualcomm.com \
--cc=bkamatch@qca.qualcomm.com \
--cc=linux-wireless@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.