blob: 3849fa4b16c9da99b12108025ff8cdd854227a9c [file] [log] [blame]
developer66e89bc2024-04-23 14:50:01 +08001From fa905ce61f3cfecf94012fc2a11680e2615fc05d Mon Sep 17 00:00:00 2001
2From: TomLiu <tomml.liu@mediatek.com>
3Date: Tue, 9 Aug 2022 10:23:44 -0700
4Subject: [PATCH 034/104] mtk: hostapd: Add hostapd MU SET/GET control
5
6---
7 hostapd/config_file.c | 9 +++
8 hostapd/ctrl_iface.c | 66 ++++++++++++++++++
9 hostapd/hostapd_cli.c | 18 +++++
10 src/ap/ap_config.c | 1 +
11 src/ap/ap_config.h | 1 +
12 src/ap/ap_drv_ops.c | 14 ++++
13 src/ap/ap_drv_ops.h | 2 +
14 src/ap/hostapd.c | 2 +
15 src/common/mtk_vendor.h | 15 ++++
16 src/drivers/driver.h | 13 ++++
17 src/drivers/driver_nl80211.c | 110 ++++++++++++++++++++++++++++++
18 src/drivers/driver_nl80211.h | 1 +
19 src/drivers/driver_nl80211_capa.c | 3 +
20 13 files changed, 255 insertions(+)
21
22diff --git a/hostapd/config_file.c b/hostapd/config_file.c
23index f8c1eec0a..637c2df9f 100644
24--- a/hostapd/config_file.c
25+++ b/hostapd/config_file.c
26@@ -4159,6 +4159,15 @@ static int hostapd_config_fill(struct hostapd_config *conf,
27 return 1;
28 }
29 conf->mbssid = mbssid;
30+ } else if (os_strcmp(buf, "mu_onoff") == 0) {
31+ int val = atoi(pos);
32+ if (val < 0 || val > 15) {
33+ wpa_printf(MSG_ERROR,
34+ "Line %d: invalid mu_onoff value",
35+ line);
36+ return 1;
37+ }
38+ conf->mu_onoff = val;
39 #endif /* CONFIG_IEEE80211AX */
40 } else if (os_strcmp(buf, "max_listen_interval") == 0) {
41 bss->max_listen_interval = atoi(pos);
42diff --git a/hostapd/ctrl_iface.c b/hostapd/ctrl_iface.c
43index 78a3380f2..3a79a1284 100644
44--- a/hostapd/ctrl_iface.c
45+++ b/hostapd/ctrl_iface.c
46@@ -4049,6 +4049,67 @@ fail:
47 #endif /* CONFIG_NAN_USD */
48
49
50+static int
51+hostapd_ctrl_iface_set_mu(struct hostapd_data *hapd, char *cmd,
52+ char *buf, size_t buflen)
53+{
54+ char *pos, *config, *value;
55+ config = cmd;
56+ pos = os_strchr(config, ' ');
57+ if (pos == NULL)
58+ return -1;
59+ *pos++ = '\0';
60+
61+ if(pos == NULL)
62+ return -1;
63+ value = pos;
64+
65+ if (os_strcmp(config, "onoff") == 0) {
66+ int mu = atoi(value);
67+ if (mu < 0 || mu > 15) {
68+ wpa_printf(MSG_ERROR, "Invalid value for mu");
69+ return -1;
70+ }
71+ hapd->iconf->mu_onoff = (u8) mu;
72+ } else {
73+ wpa_printf(MSG_ERROR,
74+ "Unsupported parameter %s for SET_MU", config);
75+ return -1;
76+ }
77+
78+ if(hostapd_drv_mu_ctrl(hapd) == 0) {
79+ return os_snprintf(buf, buflen, "OK\n");
80+ } else {
81+ return -1;
82+ }
83+}
84+
85+
86+static int
87+hostapd_ctrl_iface_get_mu(struct hostapd_data *hapd, char *buf,
88+ size_t buflen)
89+{
90+ u8 mu_onoff;
91+ char *pos, *end;
92+
93+ pos = buf;
94+ end = buf + buflen;
95+
96+ if (hapd->iface->state != HAPD_IFACE_ENABLED)
97+ return os_snprintf(pos, end - pos, "Not allowed to get_mu when current state is %s\n",
98+ hostapd_state_text(hapd->iface->state));
99+
100+ if (hostapd_drv_mu_dump(hapd, &mu_onoff) == 0) {
101+ hapd->iconf->mu_onoff = mu_onoff;
102+ return os_snprintf(pos, end - pos, "[hostapd_cli] = UL MU-MIMO: %d, DL MU-MIMO: %d, UL OFDMA: %d, DL OFDMA: %d\n",
103+ !!(mu_onoff&BIT(3)), !!(mu_onoff&BIT(2)), !!(mu_onoff&BIT(1)), !!(mu_onoff&BIT(0)));
104+ } else {
105+ wpa_printf(MSG_INFO, "ctrl iface failed to call");
106+ return -1;
107+ }
108+}
109+
110+
111 static int hostapd_ctrl_iface_receive_process(struct hostapd_data *hapd,
112 char *buf, char *reply,
113 int reply_size,
114@@ -4655,6 +4716,11 @@ static int hostapd_ctrl_iface_receive_process(struct hostapd_data *hapd,
115 } else if (os_strncmp(buf, "GET_EDCCA ", 10) == 0) {
116 reply_len = hostapd_ctrl_iface_get_edcca(hapd, buf+10, reply,
117 reply_size);
118+ } else if (os_strncmp(buf, "SET_MU ", 7) == 0) {
119+ reply_len = hostapd_ctrl_iface_set_mu(hapd, buf + 7, reply,
120+ reply_size);
121+ } else if (os_strncmp(buf, "GET_MU", 6) == 0) {
122+ reply_len = hostapd_ctrl_iface_get_mu(hapd, reply, reply_size);
123 } else {
124 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
125 reply_len = 16;
126diff --git a/hostapd/hostapd_cli.c b/hostapd/hostapd_cli.c
127index 1fb6d999e..da9dabd6f 100644
128--- a/hostapd/hostapd_cli.c
129+++ b/hostapd/hostapd_cli.c
130@@ -1442,6 +1442,20 @@ static int hostapd_cli_cmd_driver_flags2(struct wpa_ctrl *ctrl, int argc,
131 }
132
133
134+static int hostapd_cli_cmd_set_mu(struct wpa_ctrl *ctrl, int argc,
135+ char *argv[])
136+{
137+ return hostapd_cli_cmd(ctrl, "SET_MU", 1, argc, argv);
138+}
139+
140+
141+static int hostapd_cli_cmd_get_mu(struct wpa_ctrl *ctrl, int argc,
142+ char *argv[])
143+{
144+ return hostapd_cli_cmd(ctrl, "GET_MU", 0, NULL, NULL);
145+}
146+
147+
148 #ifdef CONFIG_DPP
149
150 static int hostapd_cli_cmd_dpp_qr_code(struct wpa_ctrl *ctrl, int argc,
151@@ -1801,6 +1815,10 @@ static const struct hostapd_cli_cmd hostapd_cli_commands[] = {
152 " = show supported driver flags"},
153 { "driver_flags2", hostapd_cli_cmd_driver_flags2, NULL,
154 " = show supported driver flags2"},
155+ { "set_mu", hostapd_cli_cmd_set_mu, NULL,
156+ "<value> [0-15] bitmap- UL MU-MIMO(bit3), DL MU-MIMO(bit2), UL OFDMA(bit1), DL OFDMA(bit0)"},
157+ { "get_mu", hostapd_cli_cmd_get_mu, NULL,
158+ " = show mu onoff value in 0-15 bitmap"},
159 #ifdef CONFIG_DPP
160 { "dpp_qr_code", hostapd_cli_cmd_dpp_qr_code, NULL,
161 "report a scanned DPP URI from a QR Code" },
162diff --git a/src/ap/ap_config.c b/src/ap/ap_config.c
163index 965600577..9b3ef0b5b 100644
164--- a/src/ap/ap_config.c
165+++ b/src/ap/ap_config.c
166@@ -289,6 +289,7 @@ struct hostapd_config * hostapd_config_defaults(void)
167 conf->reg_def_cli_eirp_psd = -1;
168 conf->reg_sub_cli_eirp_psd = -1;
169 conf->reg_def_cli_eirp = -1;
170+ conf->mu_onoff = 15;
171 #endif /* CONFIG_IEEE80211AX */
172
173 /* The third octet of the country string uses an ASCII space character
174diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h
175index 09718fada..f7dbbbec3 100644
176--- a/src/ap/ap_config.h
177+++ b/src/ap/ap_config.h
178@@ -1185,6 +1185,7 @@ struct hostapd_config {
179 int reg_def_cli_eirp;
180
181 bool require_he;
182+ u8 mu_onoff;
183 #endif /* CONFIG_IEEE80211AX */
184
185 /* VHT enable/disable config from CHAN_SWITCH */
186diff --git a/src/ap/ap_drv_ops.c b/src/ap/ap_drv_ops.c
187index a6caf6a73..897ed6af8 100644
188--- a/src/ap/ap_drv_ops.c
189+++ b/src/ap/ap_drv_ops.c
190@@ -1269,3 +1269,17 @@ int hostapd_drv_get_edcca(struct hostapd_data *hapd, const u8 mode, u8 *value)
191 return 0;
192 return hapd->driver->get_edcca(hapd->drv_priv, mode, value);
193 }
194+
195+int hostapd_drv_mu_ctrl(struct hostapd_data *hapd)
196+{
197+ if (!hapd->driver || !hapd->driver->mu_ctrl)
198+ return 0;
199+ return hapd->driver->mu_ctrl(hapd->drv_priv, hapd->iconf->mu_onoff);
200+}
201+
202+int hostapd_drv_mu_dump(struct hostapd_data *hapd, u8 *mu_onoff)
203+{
204+ if (!hapd->driver || !hapd->driver->mu_dump)
205+ return 0;
206+ return hapd->driver->mu_dump(hapd->drv_priv, mu_onoff);
207+}
208diff --git a/src/ap/ap_drv_ops.h b/src/ap/ap_drv_ops.h
209index 98836153f..5ab20cc41 100644
210--- a/src/ap/ap_drv_ops.h
211+++ b/src/ap/ap_drv_ops.h
212@@ -153,6 +153,8 @@ int hostapd_drv_configure_edcca_enable(struct hostapd_data *hapd);
213 int hostapd_drv_configure_edcca_threshold(struct hostapd_data *hapd,
214 const int *threshold);
215 int hostapd_drv_get_edcca(struct hostapd_data *hapd, const u8 mode, u8 *value);
216+int hostapd_drv_mu_ctrl(struct hostapd_data *hapd);
217+int hostapd_drv_mu_dump(struct hostapd_data *hapd, u8 *mu_onoff);
218
219 #include "drivers/driver.h"
220
221diff --git a/src/ap/hostapd.c b/src/ap/hostapd.c
222index 6af31179e..d29b51fc5 100644
223--- a/src/ap/hostapd.c
224+++ b/src/ap/hostapd.c
225@@ -2699,6 +2699,8 @@ dfs_offload:
226 if (hostapd_drv_configure_edcca_threshold(hapd,
227 hapd->iconf->edcca_threshold) < 0)
228 goto fail;
229+ if (hostapd_drv_mu_ctrl(hapd) < 0)
230+ goto fail;
231
232 wpa_printf(MSG_DEBUG, "%s: Setup of interface done.",
233 iface->bss[0]->conf->iface);
234diff --git a/src/common/mtk_vendor.h b/src/common/mtk_vendor.h
235index 6121857dd..60bc4cd4c 100644
236--- a/src/common/mtk_vendor.h
237+++ b/src/common/mtk_vendor.h
238@@ -10,6 +10,8 @@ enum mtk_nl80211_vendor_subcmds {
239 MTK_NL80211_VENDOR_SUBCMD_CSI_CTRL = 0xc2,
240 MTK_NL80211_VENDOR_SUBCMD_RFEATURE_CTRL = 0xc3,
241 MTK_NL80211_VENDOR_SUBCMD_WIRELESS_CTRL = 0xc4,
242+ MTK_NL80211_VENDOR_SUBCMD_MU_CTRL = 0xc5,
243+ MTK_NL80211_VENDOR_SUBCMD_PHY_CAPA_CTRL= 0xc6,
244 MTK_NL80211_VENDOR_SUBCMD_EDCCA_CTRL = 0xc7,
245 };
246
247@@ -177,6 +179,19 @@ enum mtk_vendor_attr_rfeature_ctrl {
248 NUM_MTK_VENDOR_ATTRS_RFEATURE_CTRL - 1
249 };
250
251+enum mtk_vendor_attr_mu_ctrl {
252+ MTK_VENDOR_ATTR_MU_CTRL_UNSPEC,
253+
254+ MTK_VENDOR_ATTR_MU_CTRL_ONOFF,
255+ MTK_VENDOR_ATTR_MU_CTRL_DUMP,
256+
257+ /* keep last */
258+ NUM_MTK_VENDOR_ATTRS_MU_CTRL,
259+ MTK_VENDOR_ATTR_MU_CTRL_MAX =
260+ NUM_MTK_VENDOR_ATTRS_MU_CTRL - 1
261+};
262+
263+
264 #define CSI_MAX_COUNT 256
265 #define ETH_ALEN 6
266
267diff --git a/src/drivers/driver.h b/src/drivers/driver.h
268index ed5f5c013..df7ce5ab9 100644
269--- a/src/drivers/driver.h
270+++ b/src/drivers/driver.h
271@@ -176,6 +176,11 @@ struct hostapd_channel_data {
272 * punct_bitmap - RU puncturing bitmap
273 */
274 u16 punct_bitmap;
275+
276+ /**
277+ * mu onoff=<val> (bitmap- UL MU-MIMO(bit3), DL MU-MIMO(bit2), UL OFDMA(bit1), DL OFDMA(bit0))
278+ */
279+ u8 mu_onoff;
280 };
281
282 #define HE_MAC_CAPAB_0 0
283@@ -5224,6 +5229,14 @@ struct wpa_driver_ops {
284 const s8 edcca_compensation);
285 int (*configure_edcca_threshold)(void *priv, const int *threshold);
286 int (*get_edcca)(void *priv, const u8 mode, u8 *value);
287+
288+ /**
289+ * mu_ctrl - ctrl on off for UL/DL MURU
290+ * @priv: Private driver interface data
291+ *
292+ */
293+ int (*mu_ctrl)(void *priv, u8 mu_onoff);
294+ int (*mu_dump)(void *priv, u8 *mu_onoff);
295 };
296
297 /**
298diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c
299index d59efe8b6..c234eb029 100644
300--- a/src/drivers/driver_nl80211.c
301+++ b/src/drivers/driver_nl80211.c
302@@ -13917,6 +13917,114 @@ fail:
303 }
304
305
306+#ifdef CONFIG_IEEE80211AX
307+static int nl80211_mu_onoff(void *priv, u8 mu_onoff)
308+{
309+ struct i802_bss *bss = priv;
310+ struct wpa_driver_nl80211_data *drv = bss->drv;
311+ struct nl_msg *msg;
312+ struct nlattr *data;
313+ int ret;
314+
315+ if (!drv->mtk_mu_vendor_cmd_avail) {
316+ wpa_printf(MSG_INFO,
317+ "nl80211: Driver does not support setting mu control");
318+ return 0;
319+ }
320+
321+ if (!(msg = nl80211_drv_msg(drv, 0, NL80211_CMD_VENDOR)) ||
322+ nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_MTK) ||
323+ nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, MTK_NL80211_VENDOR_SUBCMD_MU_CTRL) ||
324+ !(data = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
325+ nla_put_u8(msg, MTK_VENDOR_ATTR_MU_CTRL_ONOFF, mu_onoff)) {
326+ nlmsg_free(msg);
327+ return -ENOBUFS;
328+ }
329+ nla_nest_end(msg, data);
330+ ret = send_and_recv_cmd(drv, msg);
331+ if(ret){
332+ wpa_printf(MSG_ERROR, "Failed to set mu_onoff. ret=%d (%s)", ret, strerror(-ret));
333+ }
334+ return ret;
335+}
336+
337+
338+static int mu_dump_handler(struct nl_msg *msg, void *arg)
339+{
340+ u8 *mu_onoff = (u8 *) arg;
341+ struct nlattr *tb[NL80211_ATTR_MAX + 1];
342+ struct nlattr *tb_vendor[MTK_VENDOR_ATTR_MU_CTRL_MAX + 1];
343+ struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
344+ struct nlattr *nl_vend, *attr;
345+
346+ static const struct nla_policy
347+ mu_ctrl_policy[NUM_MTK_VENDOR_ATTRS_MU_CTRL + 1] = {
348+ [MTK_VENDOR_ATTR_MU_CTRL_ONOFF] = {.type = NLA_U8 },
349+ [MTK_VENDOR_ATTR_MU_CTRL_DUMP] = {.type = NLA_U8 },
350+ };
351+
352+ nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
353+ genlmsg_attrlen(gnlh, 0), NULL);
354+
355+ nl_vend = tb[NL80211_ATTR_VENDOR_DATA];
356+ if (!nl_vend)
357+ return NL_SKIP;
358+
359+ nla_parse(tb_vendor, MTK_VENDOR_ATTR_MU_CTRL_MAX,
360+ nla_data(nl_vend), nla_len(nl_vend), NULL);
361+
362+ attr = tb_vendor[MTK_VENDOR_ATTR_MU_CTRL_DUMP];
363+ if (!attr) {
364+ wpa_printf(MSG_ERROR, "nl80211: cannot find MTK_VENDOR_ATTR_MU_CTRL_DUMP");
365+ return NL_SKIP;
366+ }
367+
368+ *mu_onoff = nla_get_u8(attr);
369+ wpa_printf(MSG_DEBUG, "nla_get mu_onoff: %d\n", *mu_onoff);
370+
371+ return 0;
372+}
373+
374+static int nl80211_mu_dump(void *priv, u8 *mu_onoff)
375+{
376+ struct i802_bss *bss = priv;
377+ struct wpa_driver_nl80211_data *drv = bss->drv;
378+ struct nl_msg *msg;
379+ struct nlattr *attr;
380+ int ret;
381+
382+ if (!drv->mtk_mu_vendor_cmd_avail) {
383+ wpa_printf(MSG_INFO,
384+ "nl80211: Driver does not support setting mu control");
385+ return 0;
386+ }
387+
388+ if (!(msg = nl80211_drv_msg(drv, NLM_F_DUMP, NL80211_CMD_VENDOR)) ||
389+ nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_MTK) ||
390+ nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, MTK_NL80211_VENDOR_SUBCMD_MU_CTRL)) {
391+ nlmsg_free(msg);
392+ return -ENOBUFS;
393+ }
394+
395+ attr = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA);
396+ if (!attr) {
397+ nlmsg_free(msg);
398+ return -1;
399+ }
400+
401+ nla_nest_end(msg, attr);
402+
403+ ret = send_and_recv_resp(drv, msg, mu_dump_handler, mu_onoff);
404+
405+ if(ret){
406+ wpa_printf(MSG_ERROR, "Failed to get mu_onoff. ret=%d (%s)", ret, strerror(-ret));
407+ }
408+
409+ return ret;
410+}
411+#endif /* CONFIG_IEEE80211AX */
412+
413+
414 #ifdef CONFIG_DPP
415 static int nl80211_dpp_listen(void *priv, bool enable)
416 {
417@@ -14396,6 +14504,8 @@ const struct wpa_driver_ops wpa_driver_nl80211_ops = {
418 .update_connect_params = nl80211_update_connection_params,
419 .send_external_auth_status = nl80211_send_external_auth_status,
420 .set_4addr_mode = nl80211_set_4addr_mode,
421+ .mu_ctrl = nl80211_mu_onoff,
422+ .mu_dump = nl80211_mu_dump,
423 #ifdef CONFIG_DPP
424 .dpp_listen = nl80211_dpp_listen,
425 #endif /* CONFIG_DPP */
426diff --git a/src/drivers/driver_nl80211.h b/src/drivers/driver_nl80211.h
427index 62c47efbd..f99bba9e1 100644
428--- a/src/drivers/driver_nl80211.h
429+++ b/src/drivers/driver_nl80211.h
430@@ -201,6 +201,7 @@ struct wpa_driver_nl80211_data {
431 unsigned int puncturing:1;
432 unsigned int qca_ap_allowed_freqs:1;
433 unsigned int mtk_edcca_vendor_cmd_avail:1;
434+ unsigned int mtk_mu_vendor_cmd_avail:1;
435
436 u32 ignore_next_local_disconnect;
437 u32 ignore_next_local_deauth;
438diff --git a/src/drivers/driver_nl80211_capa.c b/src/drivers/driver_nl80211_capa.c
439index cd4d799a1..9c0a47971 100644
440--- a/src/drivers/driver_nl80211_capa.c
441+++ b/src/drivers/driver_nl80211_capa.c
442@@ -1144,6 +1144,9 @@ static int wiphy_info_handler(struct nl_msg *msg, void *arg)
443 case MTK_NL80211_VENDOR_SUBCMD_EDCCA_CTRL:
444 drv->mtk_edcca_vendor_cmd_avail = 1;
445 break;
446+ case MTK_NL80211_VENDOR_SUBCMD_MU_CTRL :
447+ drv->mtk_mu_vendor_cmd_avail = 1;
448+ break;
449 }
450 }
451
452--
4532.39.2
454