linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Question rate-mask and iw
@ 2015-09-08 18:05 Ben Greear
  2015-09-08 18:23 ` Ben Greear
  0 siblings, 1 reply; 2+ messages in thread
From: Ben Greear @ 2015-09-08 18:05 UTC (permalink / raw)
  To: linux-wireless@vger.kernel.org

I'm trying to add ability to ath10k to set an arbitrary tx-rate mask.

(ie, enable rates 6 64 vht 3 4 9, etc)

I know firmware will need to be modified...that is not the issue currently.

My problem is that I seem not be mis-understanding how the code to set
rates work.

I have this code:

static void ath10k_peer_assoc_h_rate_overrides(struct ath10k *ar,
					       struct ieee80211_vif *vif,
					       struct ieee80211_sta *sta,
					       struct wmi_peer_assoc_complete_arg *arg)
{
	struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
	const struct ieee80211_supported_band *sband;
	const struct ieee80211_rate *rates;
	u32 ratemask;
	int i, j;
	int band = ar->hw->conf.chandef.chan->band;

	if (! test_bit(ATH10K_FW_FEATURE_WMI_10X_CT, ar->fw_features))
		return;

	lockdep_assert_held(&ar->conf_mutex);
	
	sband = ar->hw->wiphy->bands[band];
	ratemask = sta->supp_rates[band];
	rates = sband->bitrates;

	ath10k_warn(ar, "band: %d  ratemask: 0x%x\n", band, ratemask);


It is called when I run the command below:

iw wlan0 set bitrates legacy-5 6 12

But, rate-mask has all bits set...I would expect only bits corresponding
to rate 6 and 12 to be set.

[ 7487.627841] ath10k_pci 0000:05:00.0: band: 1  ratemask: 0xff


I'll go dig through the stack next..but if anyone has pointers, they would be welcome.

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Question rate-mask and iw
  2015-09-08 18:05 Question rate-mask and iw Ben Greear
@ 2015-09-08 18:23 ` Ben Greear
  0 siblings, 0 replies; 2+ messages in thread
From: Ben Greear @ 2015-09-08 18:23 UTC (permalink / raw)
  To: linux-wireless@vger.kernel.org

On 09/08/2015 11:05 AM, Ben Greear wrote:
> I'm trying to add ability to ath10k to set an arbitrary tx-rate mask.
>
> (ie, enable rates 6 64 vht 3 4 9, etc)
>
> I know firmware will need to be modified...that is not the issue currently.
>
> My problem is that I seem not be mis-understanding how the code to set
> rates work.

Ahhh, I think I see.  For HW rate-ctrl, the driver is going to need to keep
the config values from the 'set_bitrate_mask' logic in the driver
and deal with it accordingly....

Thanks,
Ben

>
> I have this code:
>
> static void ath10k_peer_assoc_h_rate_overrides(struct ath10k *ar,
>                             struct ieee80211_vif *vif,
>                             struct ieee80211_sta *sta,
>                             struct wmi_peer_assoc_complete_arg *arg)
> {
>      struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
>      const struct ieee80211_supported_band *sband;
>      const struct ieee80211_rate *rates;
>      u32 ratemask;
>      int i, j;
>      int band = ar->hw->conf.chandef.chan->band;
>
>      if (! test_bit(ATH10K_FW_FEATURE_WMI_10X_CT, ar->fw_features))
>          return;
>
>      lockdep_assert_held(&ar->conf_mutex);
>
>      sband = ar->hw->wiphy->bands[band];
>      ratemask = sta->supp_rates[band];
>      rates = sband->bitrates;
>
>      ath10k_warn(ar, "band: %d  ratemask: 0x%x\n", band, ratemask);
>
>
> It is called when I run the command below:
>
> iw wlan0 set bitrates legacy-5 6 12
>
> But, rate-mask has all bits set...I would expect only bits corresponding
> to rate 6 and 12 to be set.
>
> [ 7487.627841] ath10k_pci 0000:05:00.0: band: 1  ratemask: 0xff
>
>
> I'll go dig through the stack next..but if anyone has pointers, they would be welcome.
>
> Thanks,
> Ben
>
>


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-08 18:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-08 18:05 Question rate-mask and iw Ben Greear
2015-09-08 18:23 ` Ben Greear

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).