From: Peter Oh <peter.oh@eero.com>
To: Yu Wang <yyuwang@codeaurora.org>, ath10k@lists.infradead.org
Cc: linux-wireless@vger.kernel.org
Subject: Re: [PATCH 2/2] ath10k: correct legacy rate in tx stats
Date: Tue, 12 Nov 2019 10:14:34 -0800 [thread overview]
Message-ID: <8c633afa-085d-9cf1-549e-afcfee89c96a@eero.com> (raw)
In-Reply-To: <1573559148-4844-3-git-send-email-yyuwang@codeaurora.org>
On 11/12/19 3:45 AM, Yu Wang wrote:
> When working in station mode, after connected to a legacy
> AP, 11g only, for example, the tx bitrate is incorrect in
> output of command 'iw wlan0 link'.
>
> That's because the legacy tx bitrate value reported by
> firmware is not well handled:
> For QCA6174, the value represents rate index, but treated
> as a real rate;
> For QCA9888, the value is real rate, with unit 'Mbps', but
> treated as '100kbps'.
>
> To fix this issue:
> 1. Translate the rate index to real rate for QCA6174;
> 2. Translate the rate from 'Mbps' to 'kbps' for QCA9888.
>
> Tested with:
> QCA6174 PCIe with firmware WLAN.RM.4.4.1.c3-00031.
> QCA6174 SDIO with firmware WLAN.RMH.4.4.1-00029.
> QCA9888 PCIe with firmware 10.4-3.9.0.2-00040.
>
> Signed-off-by: Yu Wang <yyuwang@codeaurora.org>
> ---
>
> diff --git a/drivers/net/wireless/ath/ath10k/htt_rx.c b/drivers/net/wireless/ath/ath10k/htt_rx.c
> @@ -3454,10 +3440,12 @@ ath10k_update_per_peer_tx_stats(struct ath10k *ar,
> {
> struct ath10k_sta *arsta = (struct ath10k_sta *)sta->drv_priv;
> struct ieee80211_chanctx_conf *conf = NULL;
> - u8 rate = 0, sgi;
> - s8 rate_idx = 0;
> + u8 sgi;
> + s8 rate_idx = -1;
> bool skip_auto_rate;
> struct rate_info txrate;
> + enum nl80211_band band;
> + struct ieee80211_supported_band *sband;
>
> lockdep_assert_held(&ar->data_lock);
>
> @@ -3475,7 +3463,7 @@ ath10k_update_per_peer_tx_stats(struct ath10k *ar,
> return;
>
> if (txrate.flags == WMI_RATE_PREAMBLE_VHT && txrate.mcs > 9) {
> - ath10k_warn(ar, "Invalid VHT mcs %hhd peer stats", txrate.mcs);
> + ath10k_warn(ar, "Invalid VHT mcs %hhd peer stats", txrate.mcs);
> return;
> }
>
> @@ -3490,14 +3478,19 @@ ath10k_update_per_peer_tx_stats(struct ath10k *ar,
> memset(&arsta->tx_info.status, 0, sizeof(arsta->tx_info.status));
> if (txrate.flags == WMI_RATE_PREAMBLE_CCK ||
> txrate.flags == WMI_RATE_PREAMBLE_OFDM) {
> - rate = ATH10K_HW_LEGACY_RATE(peer_stats->ratecode);
> - /* This is hacky, FW sends CCK rate 5.5Mbps as 6 */
> - if (rate == 6 && txrate.flags == WMI_RATE_PREAMBLE_CCK)
> - rate = 5;
> - rate_idx = ath10k_get_legacy_rate_idx(ar, rate);
> - if (rate_idx < 0)
> + if (!arsta->arvif || !arsta->arvif->vif)
> + return;
> +
> + conf = rcu_dereference(arsta->arvif->vif->chanctx_conf);
> + if (!conf)
> + return;
> +
> + band = conf->def.chan->band;
> + sband = &ar->mac.sbands[band];
> + if (ath10k_wmi_get_legacy_rate(ar, sband, peer_stats->ratecode,
> + &arsta->txrate.legacy,
> + &rate_idx))
Using wmi ops to parse rate info breaks ath10k driver architecture,
since the rate info comes from htt layer and nothing related to wmi.
Thanks,
Peter
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
prev parent reply other threads:[~2019-11-12 18:14 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-12 11:45 [PATCH 0/2] ath10k: correct tx bitrate for QCA6174/QCA9377/QCA9888 Yu Wang
2019-11-12 11:45 ` [PATCH 1/2] ath10k: add ppdu stats support for QCA6174/QCA9377 Yu Wang
2019-11-12 11:45 ` [PATCH 2/2] ath10k: correct legacy rate in tx stats Yu Wang
2019-11-12 18:14 ` Peter Oh [this message]
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=8c633afa-085d-9cf1-549e-afcfee89c96a@eero.com \
--to=peter.oh@eero.com \
--cc=ath10k@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=yyuwang@codeaurora.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox