summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorneil.shi <neil.shi@quectel.com>2023-06-01 13:15:56 +0800
committerPierre-Loup A. Griffais <pgriffais@valvesoftware.com>2023-11-02 16:05:18 -0700
commitae7db26db8909eb05f5c575dfc1f2a1bd2d860c4 (patch)
tree84f789a9d165a5bbd4bfcdb8739556b093040b81 /include
parentd41a5e2298b6989dd9d37327bbf5a1c9353dbd6a (diff)
downloadlinux-ae7db26db8909eb05f5c575dfc1f2a1bd2d860c4.tar.gz
Subject: [PATCH 24/42] wifi: mac80211: Add VHT MU-MIMO related flags in ieee80211_bss_conf
Adding flags for SU Beamformer, SU Beamformee, MU Beamformer and
MU Beamformee for VHT. This is utilized to pass MU-MIMO
configurations from user space to driver in AP mode.

Signed-off-by: neil.shi <neil.shi@quectel.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/mac80211.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index c1e7e3844d89..697fa7934987 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -652,6 +652,14 @@ struct ieee80211_fils_discovery {
  *	write-protected by sdata_lock and local->mtx so holding either is fine
  *	for read access.
  * @color_change_color: the bss color that will be used after the change.
+ * @vht_su_beamformer: in AP mode, does this BSS support operation as an VHT SU
+ *	beamformer
+ * @vht_su_beamformee: in AP mode, does this BSS support operation as an VHT SU
+ *	beamformee
+ * @vht_mu_beamformer: in AP mode, does this BSS support operation as an VHT MU
+ *	beamformer
+ * @vht_mu_beamformee: in AP mode, does this BSS support operation as an VHT MU
+ *	beamformee
  */
 struct ieee80211_bss_conf {
 	const u8 *bssid;
@@ -729,6 +737,10 @@ struct ieee80211_bss_conf {
 	bool he_su_beamformee;
 	bool he_mu_beamformer;
 	bool he_full_ul_mumimo;
+	bool vht_su_beamformer;
+	bool vht_su_beamformee;
+	bool vht_mu_beamformer;
+	bool vht_mu_beamformee;
 };
 
 /**