public inbox for linux-wireless@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] wifi: mac80211: do not set 320MHz EHT capabilities on non 6GHz band
@ 2026-01-22 14:56 Nicolas Escande
  2026-01-22 16:05 ` Johannes Berg
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Escande @ 2026-01-22 14:56 UTC (permalink / raw)
  To: linux-wireless; +Cc: johannes.berg

The spec (at least 802.11-be draft7) at section 9.4.2.323.3 says we should
not set the 320MHz related fields when not operating on a 6GHz band. It's
quite explicit for most of them. For example:

Bit 0 "Support For 320 MHz In 6 GHz" says "Reserved if the EHT
      Capabilities element is indicating capabilities for the 2.4 GHz or
      5 GHz bands."

Bit 22-24 "Number Of Sounding Dimensions (= 320 MHz)" says "Reserved if
          the SU Beamformer subfield is 0 or the Support For 320 MHz In
          6 GHz subfield in EHT Capabilities Information field does not
          indicate support for a bandwidth of 320 MHz."

Bit 54 "Support Of EHT-MCS 15 In MRU" says about bit 3 "If 320 MHz is not
        supported, then B3 is set to 0."

For bit 13-15 "Beamformee SS (= 320 MHz)" it's not explicit, but it makes
little sense to special case the handling of this one.

Fixes: 6239da18d2f9 ("wifi: mac80211: adjust EHT capa when lowering bandwidth")
Signed-off-by: Nicolas Escande <nico.escande@gmail.com>
---
 net/mac80211/util.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/mac80211/util.c b/net/mac80211/util.c
index 0c46009a3d63..996983f6815b 100644
--- a/net/mac80211/util.c
+++ b/net/mac80211/util.c
@@ -4426,7 +4426,8 @@ int ieee80211_put_eht_cap(struct sk_buff *skb,
 			~IEEE80211_EHT_PHY_CAP6_MCS15_SUPP_160MHZ;
 	}
 
-	if (conn->bw_limit < IEEE80211_CONN_BW_LIMIT_320) {
+	if (conn->bw_limit < IEEE80211_CONN_BW_LIMIT_320 ||
+	    sband->band != NL80211_BAND_6GHZ) {
 		fixed.phy_cap_info[0] &=
 			~IEEE80211_EHT_PHY_CAP0_320MHZ_IN_6GHZ;
 		fixed.phy_cap_info[1] &=
-- 
2.52.0


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

end of thread, other threads:[~2026-01-23 13:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-22 14:56 [PATCH] wifi: mac80211: do not set 320MHz EHT capabilities on non 6GHz band Nicolas Escande
2026-01-22 16:05 ` Johannes Berg
2026-01-22 16:38   ` Nicolas Escande
2026-01-22 16:41     ` Johannes Berg
2026-01-23 13:47       ` Nicolas Escande

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox