Переглянути джерело

qcacld-3.0: Add ini gActionOUIDisableDynamicQosNullTxRate

Add gActionOUIDisableDynamicQosNullTxRate to control FW's dynamic qos
null tx rate feature.

Some APs sometimes don't honor Qos null frames with some specific rate.
This ini will disable dynamic qos null tx rate feature for specified
APs.

Change-Id: I1690c14142c93e8456705183c9e12c41c20f3a4a
CRs-Fixed: 3450104
Jingxiang Ge 2 роки тому
батько
коміт
13c3c4fd6d

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

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2018, 2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -178,6 +178,11 @@ static void action_oui_load_config(struct action_oui_psoc_priv *psoc_priv)
 	qdf_str_lcopy(psoc_priv->action_oui_str[ACTION_OUI_11BE_OUI_ALLOW],
 		      cfg_get(psoc, CFG_ACTION_OUI_11BE_ALLOW_LIST),
 		      ACTION_OUI_MAX_STR_LEN);
+	qdf_str_lcopy(psoc_priv->action_oui_str
+			[ACTION_OUI_DISABLE_DYNAMIC_QOS_NULL_TX_RATE],
+		      cfg_get(psoc,
+			      CFG_ACTION_OUI_DISABLE_DYNAMIC_QOS_NULL_TX_RATE),
+		      ACTION_OUI_MAX_STR_LEN);
 }
 
 static void action_oui_parse_config(struct wlan_objmgr_psoc *psoc)

+ 39 - 1
components/action_oui/dispatcher/inc/wlan_action_oui_cfg.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -674,6 +674,43 @@
 	"", \
 	"Used to specify 11be allowed ap oui list")
 
+/*
+ * <ini>
+ * gActionOUIDisableDynamicQosNullTxRate - Used to turn off FW's dynamic qos
+ * null tx rate feature if specific vendor OUI received in beacon
+ *
+ * Some APs sometimes don't honor Qos null frames with some specific rate.
+ * This ini will disable dynamic qos null tx rate feature for specified APs.
+ *
+ * Default OUIs: (All values in Hex)
+ * OUI 1: 00e04c
+ *   OUI data Len: 03
+ *   OUI Data : 020160
+ *   OUI data Mask: E0 - 11100000
+ *   Info Mask : 01 - only OUI present in Info mask
+ *
+ * OUI 2: 001018
+ *   OUI data Len : 06
+ *   OUI Data : 0204009C0000
+ *   OUI data Mask: FC - 11111100
+ *   Info Mask : 01 - only OUI present in Info mask
+ * Refer to gEnableActionOUI for more detail about the format.
+ *
+ * Related: gEnableActionOUI
+ *
+ * Supported Feature: Action OUIs
+ *
+ * Usage: External
+ *
+ * </ini>
+ */
+#define CFG_ACTION_OUI_DISABLE_DYNAMIC_QOS_NULL_TX_RATE CFG_INI_STRING( \
+	"gActionOUIDisableDynamicQosNullTxRate", \
+	0, \
+	ACTION_OUI_MAX_STR_LEN, \
+	"00e04c 03 020160 E0 01 001018 06 0204009c0000 FC 01", \
+	"Used to turn off FW's dynamic qos null tx rate for specified APs")
+
 #define CFG_ACTION_OUI \
 	CFG(CFG_ACTION_OUI_CCKM_1X1) \
 	CFG(CFG_ACTION_OUI_CONNECT_1X1) \
@@ -689,5 +726,6 @@
 	CFG(CFG_ACTION_OUI_DISABLE_TWT) \
 	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_ENABLE_ACTION_OUI)
 #endif

+ 6 - 1
components/action_oui/dispatcher/inc/wlan_action_oui_public_struct.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2016-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -99,6 +99,8 @@
  * received in beacon.
  * @ACTION_OUI_11BE_OUI_ALLOW: ap oui for which station can connect with
  * 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_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
@@ -119,6 +121,9 @@ enum action_oui_id {
 	ACTION_OUI_DISABLE_TWT = 9,
 	ACTION_OUI_EXTEND_WOW_ITO = 10,
 	ACTION_OUI_11BE_OUI_ALLOW = 11,
+	ACTION_OUI_DISABLE_DYNAMIC_QOS_NULL_TX_RATE = 12,
+	/* host&fw interface add above here */
+
 	ACTION_OUI_HOST_ONLY,
 	ACTION_OUI_HOST_RECONN = ACTION_OUI_HOST_ONLY,
 	ACTION_OUI_TAKE_ALL_BAND_INFO,