|
@@ -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
|