Kaynağa Gözat

qcacld-3.0: Add OUI config to enable CTS2SELF with QoS null frame

Add gActionOUIEnableCTS2SelfWithQoSNull to enable CTS2SELF with QoS null
frame for specified IoT APs.

Change-Id: Ia0bccd02f4491e106413728d1a54d76265c80249
CRs-Fixed: 3533505
Jianmin Zhu 1 yıl önce
ebeveyn
işleme
a0cd2ab42d

+ 6 - 0
components/action_oui/core/src/wlan_action_oui_main.c

@@ -183,6 +183,12 @@ static void action_oui_load_config(struct action_oui_psoc_priv *psoc_priv)
 		      cfg_get(psoc,
 			      CFG_ACTION_OUI_DISABLE_DYNAMIC_QOS_NULL_TX_RATE),
 		      ACTION_OUI_MAX_STR_LEN);
+	qdf_str_lcopy(psoc_priv->action_oui_str
+			[ACTION_OUI_ENABLE_CTS2SELF_WITH_QOS_NULL],
+		      cfg_get(psoc,
+			      CFG_ACTION_OUI_ENABLE_CTS2SELF_WITH_QOS_NULL),
+		      ACTION_OUI_MAX_STR_LEN);
+
 	qdf_str_lcopy(psoc_priv->action_oui_str
 			[ACTION_OUI_AUTH_ASSOC_6MBPS_2GHZ],
 		      cfg_get(psoc, CFG_ACTION_OUI_AUTH_ASSOC_6MBPS_2GHZ),

+ 32 - 0
components/action_oui/dispatcher/inc/wlan_action_oui_cfg.h

@@ -743,6 +743,37 @@
 	"", \
 	"send auth/assoc req with 6 Mbps rate on 2.4 GHz for specified APs")
 
+/*
+ * <ini>
+ * gActionOUIEnableCTS2SelfWithQoSNull - Used to enable CTS2SELF with QoS null
+ * frame for specified APs
+ *
+ * Sample OUIs: (All values in Hex)
+ * OUI 1: 000c43
+ *   OUI data Len: 04
+ *   OUI Data : 03000000
+ *   OUI data Mask: F0 - 11110000
+ *   Info Mask : 01 - only OUI present in Info mask
+ *
+ * gActionOUIEnableCTS2SelfWithQoSNull=000c43 04 03000000 F0 01
+ *
+ * Refer to gEnableActionOUI for more detail about the format.
+ *
+ * Related: gEnableActionOUI
+ *
+ * Supported Feature: Action OUIs
+ *
+ * Usage: External
+ *
+ * </ini>
+ */
+#define CFG_ACTION_OUI_ENABLE_CTS2SELF_WITH_QOS_NULL CFG_INI_STRING( \
+	"gActionOUIEnableCTS2SelfWithQoSNull", \
+	0, \
+	ACTION_OUI_MAX_STR_LEN, \
+	"", \
+	"Used to enable CTS2SELF with QoS null frame for specified APs")
+
 #define CFG_ACTION_OUI \
 	CFG(CFG_ACTION_OUI_CCKM_1X1) \
 	CFG(CFG_ACTION_OUI_CONNECT_1X1) \
@@ -759,6 +790,7 @@
 	CFG(CFG_ACTION_OUI_TAKE_ALL_BAND_INFO) \
 	CFG(CFG_ACTION_OUI_11BE_ALLOW_LIST) \
 	CFG(CFG_ACTION_OUI_DISABLE_DYNAMIC_QOS_NULL_TX_RATE) \
+	CFG(CFG_ACTION_OUI_ENABLE_CTS2SELF_WITH_QOS_NULL) \
 	CFG(CFG_ACTION_OUI_AUTH_ASSOC_6MBPS_2GHZ) \
 	CFG(CFG_ENABLE_ACTION_OUI)
 #endif

+ 3 - 0
components/action_oui/dispatcher/inc/wlan_action_oui_public_struct.h

@@ -101,6 +101,8 @@
  * 11be mode
  * @ACTION_OUI_DISABLE_DYNAMIC_QOS_NULL_TX_RATE: Turn off FW's dynamic qos
  * null tx rate feature if specific vendor OUI received in beacon
+ * @ACTION_OUI_ENABLE_CTS2SELF_WITH_QOS_NULL: Enable CTS2SELF with QoS null
+ * frame for specified IoT APs.
  * @ACTION_OUI_HOST_ONLY: host only action id start - placeholder.
  * New Firmware related "ACTION" needs to be added before this placeholder.
  * @ACTION_OUI_HOST_RECONN: reconnect to the same BSSID when wait for
@@ -124,6 +126,7 @@ enum action_oui_id {
 	ACTION_OUI_EXTEND_WOW_ITO = 10,
 	ACTION_OUI_11BE_OUI_ALLOW = 11,
 	ACTION_OUI_DISABLE_DYNAMIC_QOS_NULL_TX_RATE = 12,
+	ACTION_OUI_ENABLE_CTS2SELF_WITH_QOS_NULL = 13,
 	/* host&fw interface add above here */
 
 	ACTION_OUI_HOST_ONLY,