2023-04-27 18:33:06

by Muna Sinada

[permalink] [raw]
Subject: [PATCH v5 1/3] wifi: cfg80211: allow userspace to enable driver control of MU-EDCA

Add option for user space to enable driver to dynamically update MU-EDCA
parameters.

The updated MU-EDCA parameters from driver are part of an AP mode feature
where firmware determines better MU-EDCA parameters based on channel
conditions. The updated parameters are used and reported to user space
to reflect in AP management frames. These dynamic parameter updates
are offloaded to firmware for better user experience, thus details on
algorithm are not provided. This is a driver specific feature, thus
no spec references.

Signed-off-by: Muna Sinada <[email protected]>
---
v5: no change

v4: newly created patch in response to review comment to add opt in
for user for this feature
---
include/net/cfg80211.h | 3 +++
include/uapi/linux/nl80211.h | 5 +++++
net/wireless/nl80211.c | 5 +++++
3 files changed, 13 insertions(+)

diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 9e04f69712b1..e56af095828e 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -1359,6 +1359,8 @@ struct cfg80211_unsol_bcast_probe_resp {
* @punct_bitmap: Preamble puncturing bitmap. Each bit represents
* a 20 MHz channel, lowest bit corresponding to the lowest channel.
* Bit set to 1 indicates that the channel is punctured.
+ * @dyn_muedca_enable: enable/disable driver control of dynamically update
+ * MU-EDCA parameters
*/
struct cfg80211_ap_settings {
struct cfg80211_chan_def chandef;
@@ -1394,6 +1396,7 @@ struct cfg80211_ap_settings {
struct cfg80211_unsol_bcast_probe_resp unsol_bcast_probe_resp;
struct cfg80211_mbssid_config mbssid_config;
u16 punct_bitmap;
+ bool dyn_muedca_enable;
};

/**
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h
index cf4fb981e131..e68169130e7e 100644
--- a/include/uapi/linux/nl80211.h
+++ b/include/uapi/linux/nl80211.h
@@ -2805,6 +2805,9 @@ enum nl80211_commands {
* index. If the userspace includes more RNR elements than number of
* MBSSID elements then these will be added in every EMA beacon.
*
+ * @NL80211_ATTR_DYN_MUEDCA_ENABLE: Flag attribute to indicate user space has
+ * enabled Driver control of dynamically updating MU-EDCA parameters.
+ *
* @NUM_NL80211_ATTR: total number of nl80211_attrs available
* @NL80211_ATTR_MAX: highest attribute number currently defined
* @__NL80211_ATTR_AFTER_LAST: internal use
@@ -3341,6 +3344,8 @@ enum nl80211_attrs {

NL80211_ATTR_EMA_RNR_ELEMS,

+ NL80211_ATTR_DYN_MUEDCA_ENABLE,
+
/* add attributes here, update the policy in nl80211.c */

__NL80211_ATTR_AFTER_LAST,
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index 3416c9db398f..e9e939706630 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -815,6 +815,7 @@ static const struct nla_policy nl80211_policy[NUM_NL80211_ATTR] = {
[NL80211_ATTR_MAX_HW_TIMESTAMP_PEERS] = { .type = NLA_U16 },
[NL80211_ATTR_HW_TIMESTAMP_ENABLED] = { .type = NLA_FLAG },
[NL80211_ATTR_EMA_RNR_ELEMS] = { .type = NLA_NESTED },
+ [NL80211_ATTR_DYN_MUEDCA_ENABLE] = { .type = NLA_FLAG },
};

/* policy for the key attributes */
@@ -6156,6 +6157,10 @@ static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info)
goto out_unlock;
}

+ if (info->attrs[NL80211_ATTR_DYN_MUEDCA_ENABLE])
+ params->dyn_muedca_enable =
+ nla_get_flag(info->attrs[NL80211_ATTR_DYN_MUEDCA_ENABLE]);
+
err = nl80211_calculate_ap_params(params);
if (err)
goto out_unlock;
--
2.7.4


2023-04-27 18:33:09

by Muna Sinada

[permalink] [raw]
Subject: [PATCH v5 3/3] cfg80211: Handle driver updated MU-EDCA params

Add necessary functions and attributes to receive updated MU-EDCA
parameters from driver and send to user space, where management
frame are updated to reflect latest parameters.

The updated parameters from driver are part of an AP mode feature
where firmware determines better MU-EDCA parameters based on channel
conditions. The updated parameters are used and reported to user space
to reflect in AP management frames. These dynamic parameter updates
are offloaded to firmware for better user experience, thus details on
algorithm are not provided. This is a driver specific feature, thus
no spec references.

Signed-off-by: Muna Sinada <[email protected]>
---
v5: Fixed build error from trace event
(cfg80211_update_muedca_params_event)

v4: Added tracing and added nla policy for new nl attr

v3: modified commit message
---
include/net/cfg80211.h | 12 ++++++++++++
include/uapi/linux/nl80211.h | 11 +++++++++++
net/wireless/nl80211.c | 40 ++++++++++++++++++++++++++++++++++++++++
net/wireless/trace.h | 40 ++++++++++++++++++++++++++++++++++++++++
4 files changed, 103 insertions(+)

diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index e56af095828e..fe4f416b85e1 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -9070,4 +9070,16 @@ static inline int cfg80211_color_change_notify(struct net_device *dev)
bool cfg80211_valid_disable_subchannel_bitmap(u16 *bitmap,
const struct cfg80211_chan_def *chandef);

+/**
+ * cfg80211_update_muedca_params_event - Notify userspace about updated
+ * MU-EDCA parameters
+ *
+ * @wiphy: the wiphy
+ * @params: Updated MU-EDCA parameters
+ * @gfp: allocation flags
+ */
+void cfg80211_update_muedca_params_event(struct wiphy *wiphy,
+ const struct ieee80211_mu_edca_param_set *params,
+ gfp_t gfp);
+
#endif /* __NET_CFG80211_H */
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h
index e68169130e7e..51c8a94bc411 100644
--- a/include/uapi/linux/nl80211.h
+++ b/include/uapi/linux/nl80211.h
@@ -1309,6 +1309,11 @@
* The number of peers that HW timestamping can be enabled for concurrently
* is indicated by %NL80211_ATTR_MAX_HW_TIMESTAMP_PEERS.
*
+ * @NL80211_CMD_UPDATE_HE_MUEDCA_PARAMS: Updated MU-EDCA parameters from
+ * driver. This event is used to update dynamic MU-EDCA parameters in
+ * management frames, coming from driver and now need to be reflected in
+ * management frames.
+ *
* @NL80211_CMD_MAX: highest used command number
* @__NL80211_CMD_AFTER_LAST: internal use
*/
@@ -1562,6 +1567,8 @@ enum nl80211_commands {

NL80211_CMD_SET_HW_TIMESTAMP,

+ NL80211_CMD_UPDATE_HE_MUEDCA_PARAMS,
+
/* add new commands above here */

/* used to define NL80211_CMD_MAX below */
@@ -2807,6 +2814,9 @@ enum nl80211_commands {
*
* @NL80211_ATTR_DYN_MUEDCA_ENABLE: Flag attribute to indicate user space has
* enabled Driver control of dynamically updating MU-EDCA parameters.
+ * @NL80211_ATTR_HE_MUEDCA_PARAMS: MU-EDCA AC parameters for the
+ * %NL80211_CMD_UPDATE_HE_MUEDCA_PARAMS command in format described in
+ * P802.11ax_D4.0 section 9.4.2.245
*
* @NUM_NL80211_ATTR: total number of nl80211_attrs available
* @NL80211_ATTR_MAX: highest attribute number currently defined
@@ -3345,6 +3355,7 @@ enum nl80211_attrs {
NL80211_ATTR_EMA_RNR_ELEMS,

NL80211_ATTR_DYN_MUEDCA_ENABLE,
+ NL80211_ATTR_HE_MUEDCA_PARAMS,

/* add attributes here, update the policy in nl80211.c */

diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index e9e939706630..af36440f2a51 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -816,6 +816,8 @@ static const struct nla_policy nl80211_policy[NUM_NL80211_ATTR] = {
[NL80211_ATTR_HW_TIMESTAMP_ENABLED] = { .type = NLA_FLAG },
[NL80211_ATTR_EMA_RNR_ELEMS] = { .type = NLA_NESTED },
[NL80211_ATTR_DYN_MUEDCA_ENABLE] = { .type = NLA_FLAG },
+ [NL80211_ATTR_HE_MUEDCA_PARAMS] =
+ NLA_POLICY_EXACT_LEN(sizeof(struct ieee80211_mu_edca_param_set)),
};

/* policy for the key attributes */
@@ -20017,6 +20019,44 @@ void cfg80211_update_owe_info_event(struct net_device *netdev,
}
EXPORT_SYMBOL(cfg80211_update_owe_info_event);

+void
+cfg80211_update_muedca_params_event(struct wiphy *wiphy,
+ const struct ieee80211_mu_edca_param_set *params,
+ gfp_t gfp)
+{
+ struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
+ struct sk_buff *msg;
+ void *hdr;
+
+ trace_cfg80211_update_muedca_params_event(wiphy, params);
+
+ msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
+ if (!msg)
+ return;
+
+ hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_UPDATE_HE_MUEDCA_PARAMS);
+ if (!hdr)
+ goto nla_put_failure;
+
+ if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
+ goto nla_put_failure;
+
+ if (nla_put(msg, NL80211_ATTR_HE_MUEDCA_PARAMS,
+ sizeof(*params), params))
+ goto nla_put_failure;
+
+ genlmsg_end(msg, hdr);
+
+ genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
+ NL80211_MCGRP_MLME, gfp);
+ return;
+
+nla_put_failure:
+ genlmsg_cancel(msg, hdr);
+ nlmsg_free(msg);
+}
+EXPORT_SYMBOL(cfg80211_update_muedca_params_event);
+
/* initialisation/exit functions */

int __init nl80211_init(void)
diff --git a/net/wireless/trace.h b/net/wireless/trace.h
index 716a1fa70069..3ac552be0129 100644
--- a/net/wireless/trace.h
+++ b/net/wireless/trace.h
@@ -3785,6 +3785,46 @@ TRACE_EVENT(cfg80211_update_owe_info_event,
__entry->assoc_link_id, __entry->peer_mld_addr)
);

+TRACE_EVENT(cfg80211_update_muedca_params_event,
+ TP_PROTO(struct wiphy *wiphy,
+ const struct ieee80211_mu_edca_param_set *params),
+ TP_ARGS(wiphy, params),
+ TP_STRUCT__entry(
+ WIPHY_ENTRY
+ __field(u8, mu_qos_info)
+ __field(u8, be_aifsn)
+ __field(u8, be_ecw_min_max)
+ __field(u8, be_mu_edca_timer)
+ __field(u8, bk_aifsn)
+ __field(u8, bk_ecw_min_max)
+ __field(u8, bk_mu_edca_timer)
+ __field(u8, vi_aifsn)
+ __field(u8, vi_ecw_min_max)
+ __field(u8, vi_mu_edca_timer)
+ __field(u8, vo_aifsn)
+ __field(u8, vo_ecw_min_max)
+ __field(u8, vo_mu_edca_timer)
+ ),
+ TP_fast_assign(
+ WIPHY_ASSIGN;
+ __entry->mu_qos_info = params->mu_qos_info;
+ __entry->be_aifsn = params->ac_be.aifsn;
+ __entry->be_ecw_min_max = params->ac_be.ecw_min_max;
+ __entry->be_mu_edca_timer = params->ac_be.mu_edca_timer;
+ __entry->bk_aifsn = params->ac_bk.aifsn;
+ __entry->bk_ecw_min_max = params->ac_bk.ecw_min_max;
+ __entry->bk_mu_edca_timer = params->ac_bk.mu_edca_timer;
+ __entry->vi_aifsn = params->ac_vi.aifsn;
+ __entry->vi_ecw_min_max = params->ac_vi.ecw_min_max;
+ __entry->vi_mu_edca_timer = params->ac_vi.mu_edca_timer;
+ __entry->vo_aifsn = params->ac_vo.aifsn;
+ __entry->vo_ecw_min_max = params->ac_vo.ecw_min_max;
+ __entry->vo_mu_edca_timer = params->ac_vo.mu_edca_timer;
+ ),
+ TP_printk(WIPHY_PR_FMT ", MU QOS info: %u", WIPHY_PR_ARG,
+ __entry->mu_qos_info)
+);
+
TRACE_EVENT(cfg80211_bss_color_notify,
TP_PROTO(struct net_device *netdev,
enum nl80211_commands cmd,
--
2.7.4

2023-04-28 08:20:42

by Kalle Valo

[permalink] [raw]
Subject: Re: [PATCH v5 3/3] cfg80211: Handle driver updated MU-EDCA params

Muna Sinada <[email protected]> writes:

> Add necessary functions and attributes to receive updated MU-EDCA
> parameters from driver and send to user space, where management
> frame are updated to reflect latest parameters.
>
> The updated parameters from driver are part of an AP mode feature
> where firmware determines better MU-EDCA parameters based on channel
> conditions. The updated parameters are used and reported to user space
> to reflect in AP management frames. These dynamic parameter updates
> are offloaded to firmware for better user experience, thus details on
> algorithm are not provided. This is a driver specific feature, thus
> no spec references.
>
> Signed-off-by: Muna Sinada <[email protected]>

"wifi:" prefix missing.

--
https://patchwork.kernel.org/project/linux-wireless/list/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches