From: "John W. Linville" <linville@tuxdriver.com>
To: Elias Oltmanns <eo@nebensachen.de>
Cc: Nick Kossifidis <mickflemm@gmail.com>,
Bob Copeland <me@bobcopeland.com>,
Jiri Slaby <jirislaby@gmail.com>,
"Luis R. Rodriguez" <mcgrof@gmail.com>,
linux-wireless@vger.kernel.org
Subject: Re: [PATCH] ath5k: Fix reset sequence for AR5212 in general and RF5111 in particular
Date: Wed, 29 Oct 2008 19:34:26 -0400 [thread overview]
Message-ID: <20081029233426.GF3485@tuxdriver.com> (raw)
In-Reply-To: <87mygn2dd7.fsf@denkblock.local>
Well, I already merged v3...what is new here?
On Thu, Oct 30, 2008 at 12:25:08AM +0100, Elias Oltmanns wrote:
> "Nick Kossifidis" <mickflemm@gmail.com> wrote:
> > 2008/10/29 Bob Copeland <me@bobcopeland.com>:
> >> On Wed, Oct 29, 2008 at 11:07 AM, Elias Oltmanns <eo@nebensachen.de> wrote:
> >
> >>>>
> >>>> Patch looks OK, thanks a lot ;-)
> >>>>
> >>>> John can we get this get in stable until i update reset.c on wireless-testing ?
> >>>> Would it be possible later to update mainline from wireless-testing ?
> >>>
> >>> Reading Documentation/stable_kernel_rules.txt, I very much doubt that
> >>> this patch will go in unless we can at least point out something
> >>> equivalent in mainline. So, we'll have to wait until your changes to
> >>> reset.c have reached mainline, I'm afraid.
> >>
> >> Or, we could just send your patch to both stable and for 2.6.28. Then Nick
> >> can fix up the difference or revert it in his rework. The rework is 2.6.29
> >> material, right?
> >>
> >
> > ACK
>
> In that case, I'd suggest the following patch for 2.6.28-rc2. Once it
> has been merged, I'll send the previous one off to the stable team.
>
> Regards,
>
> Elias
> --------
> From: Elias Oltmanns <eo@nebensachen.de>
> Subject: ath5k: Fix reset sequence for AR5212 in general and RF5111 in particular
>
> Take care to handle register 0xa228 exactly as in the HAL released by
> Atheros. This change is required to make ath5k work again on my system
> since commit 2203d6be (ath5k: Misc hw_reset updates), thus fixing a
> regression in 2.6.27 and therefore hopefully eligible for inclusion into
> a stable release.
>
> v2: Only overwrite initial register values on later revisions of AR5212
> chips.
> v3: Use standard macros to manipulate the register.
> v4: Use appropriate constants (new to 2.6.28) for register access.
>
> Signed-off-by: Elias Oltmanns <eo@nebensachen.de>
> ---
>
> drivers/net/wireless/ath5k/initvals.c | 2 ++
> drivers/net/wireless/ath5k/reset.c | 25 ++++++++++---------------
> 2 files changed, 12 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/net/wireless/ath5k/initvals.c b/drivers/net/wireless/ath5k/initvals.c
> index ea2e1a2..ceaa6c4 100644
> --- a/drivers/net/wireless/ath5k/initvals.c
> +++ b/drivers/net/wireless/ath5k/initvals.c
> @@ -806,6 +806,8 @@ static const struct ath5k_ini_mode ar5212_rf5111_ini_mode_end[] = {
> { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 } },
> { AR5K_PHY(642),
> { 0xd03e6788, 0xd03e6788, 0xd03e6788, 0xd03e6788, 0xd03e6788 } },
> + { 0xa228,
> + { 0x000001b5, 0x000001b5, 0x000001b5, 0x000001b5, 0x000001b5 } },
> { 0xa23c,
> { 0x13c889af, 0x13c889af, 0x13c889af, 0x13c889af, 0x13c889af } },
> };
> diff --git a/drivers/net/wireless/ath5k/reset.c b/drivers/net/wireless/ath5k/reset.c
> index 8f18868..8fdb092 100644
> --- a/drivers/net/wireless/ath5k/reset.c
> +++ b/drivers/net/wireless/ath5k/reset.c
> @@ -537,9 +537,10 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode,
> mdelay(1);
>
> /*
> - * Write some more initial register settings
> + * Write some more initial register settings for revised chips
> */
> - if (ah->ah_version == AR5K_AR5212) {
> + if (ah->ah_version == AR5K_AR5212 &&
> + ah->ah_phy_revision > AR5K_SREV_PHY_5212) {
> ath5k_hw_reg_write(ah, 0x0002a002, 0x982c);
>
> if (channel->hw_value == CHANNEL_G)
> @@ -558,19 +559,13 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode,
> else
> ath5k_hw_reg_write(ah, 0x00000000, 0x994c);
>
> - /* Some bits are disabled here, we know nothing about
> - * register 0xa228 yet, most of the times this ends up
> - * with a value 0x9b5 -haven't seen any dump with
> - * a different value- */
> - /* Got this from decompiling binary HAL */
> - data = ath5k_hw_reg_read(ah, 0xa228);
> - data &= 0xfffffdff;
> - ath5k_hw_reg_write(ah, data, 0xa228);
> -
> - data = ath5k_hw_reg_read(ah, 0xa228);
> - data &= 0xfffe03ff;
> - ath5k_hw_reg_write(ah, data, 0xa228);
> - data = 0;
> + /* Got this from legacy-hal */
> + AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_DAG_CCK_CTL,
> + AR5K_PHY_DAG_CCK_CTL_EN_RSSI_THR);
> +
> + AR5K_REG_MASKED_BITS(ah, AR5K_PHY_DAG_CCK_CTL,
> + 2 << AR5K_PHY_DAG_CCK_CTL_RSSI_THR_S,
> + ~AR5K_PHY_DAG_CCK_CTL_RSSI_THR);
>
> /* Just write 0x9b5 ? */
> /* ath5k_hw_reg_write(ah, 0x000009b5, 0xa228); */
>
--
John W. Linville Linux should be at the core
linville@tuxdriver.com of your literate lifestyle.
next prev parent reply other threads:[~2008-10-29 23:35 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <87prlr9mna.fsf@denkblock.local>
2008-10-25 23:21 ` [PATCH] ath5k: Fix reset sequence for AR5212 in general and RF5111 in particular Nick Kossifidis
2008-10-26 17:52 ` Elias Oltmanns
2008-10-26 18:32 ` Nick Kossifidis
2008-10-26 20:47 ` Elias Oltmanns
2008-10-26 22:33 ` Nick Kossifidis
2008-10-26 22:52 ` Elias Oltmanns
2008-10-27 20:31 ` Nick Kossifidis
2008-10-29 13:25 ` Elias Oltmanns
2008-10-29 14:49 ` Nick Kossifidis
2008-10-29 15:07 ` Elias Oltmanns
2008-10-29 15:28 ` Bob Copeland
2008-10-29 17:51 ` Nick Kossifidis
2008-10-29 23:25 ` Elias Oltmanns
2008-10-29 23:34 ` John W. Linville [this message]
2008-10-29 23:56 ` Elias Oltmanns
2008-10-30 0:04 ` Elias Oltmanns
2008-10-27 18:36 ` Nils
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=20081029233426.GF3485@tuxdriver.com \
--to=linville@tuxdriver.com \
--cc=eo@nebensachen.de \
--cc=jirislaby@gmail.com \
--cc=linux-wireless@vger.kernel.org \
--cc=mcgrof@gmail.com \
--cc=me@bobcopeland.com \
--cc=mickflemm@gmail.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).