Linux wireless drivers development
 help / color / mirror / Atom feed
From: "Nick Kossifidis" <mickflemm@gmail.com>
To: "Luis R. Rodriguez" <mcgrof@gmail.com>
Cc: "John Linville" <linville@tuxdriver.com>,
	linux-wireless@vger.kernel.org,
	"Jiri Slaby" <jirislaby@gmail.com>,
	ath5k-devel@lists.ath5k.org
Subject: Re: [PATCH] ath5k: Set ACK to user lower bit rates
Date: Fri, 2 Nov 2007 23:13:45 +0200	[thread overview]
Message-ID: <40f31dec0711021413u397f9cb9r99ef8b9ca51ea01c@mail.gmail.com> (raw)
In-Reply-To: <20071102204638.GA3227@pogo>

2007/11/2, Luis R. Rodriguez <mcgrof@gmail.com>:
> Sorry, forgot this last hunk in my patch series... This applies on top
> of my series.
>
> This sets the ACK bitrate to the lower rates. Without this I get
> about 70% packet loss when using the 11M rate. Not sure exactly what rates
> this is setting the HW to send the ACKs in but it sure does help.
>

6Mbits for OFDM (have checked it out with various sniffers), if not
set i usualy get 24Mbits for acks when transmiting on 54Mbit.

Haven't checked it for CCK but i guess it's 1 or 2 Mbits, have a look
at my comments inside reg.h...

#define AR5K_STA_ID1_ACKCTS_6MB         0x01000000      /* Use 6Mbit/s
for ACK/CTS (?) */
#define AR5K_STA_ID1_BASE_RATE_11B      0x02000000      /* Use 11b
base rate (for ACK/CTS ?) [5211+] */

> I'll be poking more with this and trying to fix rates for g. We'll figure
> this out ;)
>
> Note: our higher rates are still pretty unusable, something is still
> wrong with those.
>
> Changes to base.c
> Changes-licensed-under: 3-clause-BSD
>
> Changes to ath5k.h, hw.c
> Changes-licensed-under: ISC
>
> Signed-off-by: Luis R. Rodriguez <mcgrof@gmail.com>
> ---
>  drivers/net/wireless/ath5k/ath5k.h |    2 ++
>  drivers/net/wireless/ath5k/base.c  |    2 ++
>  drivers/net/wireless/ath5k/hw.c    |   19 +++++++++++++++++++
>  3 files changed, 23 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/net/wireless/ath5k/ath5k.h b/drivers/net/wireless/ath5k/ath5k.h
> index 72c24bc..b6f5364 100644
> --- a/drivers/net/wireless/ath5k/ath5k.h
> +++ b/drivers/net/wireless/ath5k/ath5k.h
> @@ -1061,6 +1061,8 @@ extern int ath5k_hw_set_beacon_timers(struct ath5k_hw *ah, const struct ath5k_be
>  extern void ath5k_hw_reset_beacon(struct ath5k_hw *ah);
>  extern int ath5k_hw_wait_for_beacon(struct ath5k_hw *ah, unsigned long phys_addr);
>  extern void ath5k_hw_update_mib_counters(struct ath5k_hw *ah, struct ath5k_mib_stats *statistics);
> +/* ACK bit rate */
> +void ath5k_hw_set_ack_bitrate_high(struct ath5k_hw *ah, bool high);
>  /* ACK/CTS Timeouts */
>  extern int ath5k_hw_set_ack_timeout(struct ath5k_hw *ah, unsigned int timeout);
>  extern unsigned int ath5k_hw_get_ack_timeout(struct ath5k_hw *ah);
> diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c
> index 15ae868..8173feb 100644
> --- a/drivers/net/wireless/ath5k/base.c
> +++ b/drivers/net/wireless/ath5k/base.c
> @@ -2193,6 +2193,8 @@ ath5k_init(struct ath5k_softc *sc)
>                 AR5K_INT_RXORN | AR5K_INT_FATAL | AR5K_INT_GLOBAL;
>
>         ath5k_hw_set_intr(sc->ah, sc->imask);
> +       /* Set ack to be sent at low bit-rates */
> +       ath5k_hw_set_ack_bitrate_high(sc->ah, false);
>
>         mod_timer(&sc->calib_tim, round_jiffies(jiffies +
>                         msecs_to_jiffies(ath5k_calinterval * 1000)));
> diff --git a/drivers/net/wireless/ath5k/hw.c b/drivers/net/wireless/ath5k/hw.c
> index f1ba863..f597502 100644
> --- a/drivers/net/wireless/ath5k/hw.c
> +++ b/drivers/net/wireless/ath5k/hw.c
> @@ -2852,6 +2852,25 @@ void ath5k_hw_update_mib_counters(struct ath5k_hw *ah,
>         }
>  }
>
> +/** ath5k_hw_set_ack_bitrate - set bitrate for ACKs
> + *
> + * @ah: the &struct ath5k_hw
> + * @high: determines if to use low bit rate or now
> + */
> +void ath5k_hw_set_ack_bitrate_high(struct ath5k_hw *ah, bool high)
> +{
> +       if (ah->ah_version != AR5K_AR5212)
> +               return;
> +       else {
> +               u32 val = AR5K_STA_ID1_BASE_RATE_11B | AR5K_STA_ID1_ACKCTS_6MB;
> +               if (high)
> +                       AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1, val);
> +               else
> +                       AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, val);
> +       }
> +}
> +
> +
>  /*
>   * ACK/CTS Timeouts
>   */
>


-- 
GPG ID: 0xD21DB2DB
As you read this post global entropy rises. Have Fun ;-)
Nick

  reply	other threads:[~2007-11-02 21:13 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-02 20:46 [PATCH] ath5k: Set ACK to user lower bit rates Luis R. Rodriguez
2007-11-02 21:13 ` Nick Kossifidis [this message]
2007-11-02 21:25   ` Nick Kossifidis
2007-11-02 21:39     ` Luis R. Rodriguez
2007-11-02 22:19       ` Nick Kossifidis
2007-11-03  2:48         ` Luis R. Rodriguez

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=40f31dec0711021413u397f9cb9r99ef8b9ca51ea01c@mail.gmail.com \
    --to=mickflemm@gmail.com \
    --cc=ath5k-devel@lists.ath5k.org \
    --cc=jirislaby@gmail.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    --cc=mcgrof@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