[PATCH 1/2] mac80211: add support to configure 6GHz non-ht duplicate transmission
Rameshkumar Sundaram
quic_ramess at quicinc.com
Tue Feb 15 00:43:00 PST 2022
A 6GHz AP can decide to transmit Beacon, Broadcast probe response
and FILS discovery frames in a non-HT duplicate PPDU when
operating in non 20MHz Bandwidth to enhance its discoverability.
(IEEE Std 802.11ax‐2021-26.17.2.2)
Add changes to configure 6GHz non-HT duplicate beacon transmission
based on Duplicate Beacon subfield of 6GHz Operation Information
field of the HE Operation element in Beacon.
Signed-off-by: Rameshkumar Sundaram <quic_ramess at quicinc.com>
---
include/net/mac80211.h | 1 +
net/mac80211/cfg.c | 17 +++++++++++++++++
2 files changed, 18 insertions(+)
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index c50221d..a4b1efb 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -704,6 +704,7 @@ struct ieee80211_bss_conf {
struct cfg80211_he_bss_color he_bss_color;
struct ieee80211_fils_discovery fils_discovery;
u32 unsol_bcast_probe_resp_interval;
+ bool he_6g_nonht_dup_beacon_set;
bool s1g;
struct cfg80211_bitrate_mask beacon_tx_rate;
enum ieee80211_ap_reg_power power_type;
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 87a2080..9b6f55e 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -997,6 +997,9 @@ static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
struct beacon_data *new, *old;
int new_head_len, new_tail_len;
int size, err;
+ const struct element *cap;
+ struct ieee80211_he_operation *he_oper;
+ const struct ieee80211_he_6ghz_oper *he_6ghz_oper;
u32 changed = BSS_CHANGED_BEACON;
old = sdata_dereference(sdata->u.ap.beacon, sdata);
@@ -1084,6 +1087,20 @@ static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
changed |= BSS_CHANGED_FTM_RESPONDER;
}
+ cap = cfg80211_find_ext_elem(WLAN_EID_EXT_HE_OPERATION,
+ params->tail, params->tail_len);
+ if (cap && cap->datalen >= sizeof(*he_oper) + 1) {
+ he_oper = (void *)(cap->data + 1);
+ he_6ghz_oper = ieee80211_he_6ghz_oper(he_oper);
+ if (he_6ghz_oper) {
+ sdata->vif.bss_conf.he_6g_nonht_dup_beacon_set = false;
+ if (u8_get_bits(he_6ghz_oper->control,
+ IEEE80211_HE_6GHZ_OPER_CTRL_DUP_BEACON)) {
+ sdata->vif.bss_conf.he_6g_nonht_dup_beacon_set = true;
+ }
+ }
+ }
+
rcu_assign_pointer(sdata->u.ap.beacon, new);
if (old)
--
2.7.4
More information about the ath11k
mailing list