Browse Source

qcacld-3.0: cache SAP current oper bw in vdev mlme priv obj

SAP operating bandwidth may get updated due to concurrencies.
This might be temporary and SAP moves back to its original
bandwidth once concurrency is gone. So, add set and get APIs
to maintain the SAP current operating bandwidth.
These can be used during/after bandwidth update operations.

Change-Id: I386ad20bcbd0902672a890bde510ecc50e58512b
CRs-Fixed: 3600223
Srinivas Dasari 1 year ago
parent
commit
26a2f2e4ce

+ 2 - 0
components/mlme/core/inc/wlan_mlme_main.h

@@ -443,6 +443,7 @@ struct wait_for_key_timer {
  * @update_required_scc_sta_power: Change the 6 GHz power type of the
  * concurrent STA
  * @ap_policy: Concurrent ap policy config
+ * @oper_ch_width: SAP current operating ch_width
  */
 struct mlme_ap_config {
 	qdf_freq_t user_config_sap_ch_freq;
@@ -450,6 +451,7 @@ struct mlme_ap_config {
 	bool update_required_scc_sta_power;
 #endif
 	enum host_concurrent_ap_policy ap_policy;
+	enum phy_ch_width oper_ch_width;
 };
 
 /**

+ 22 - 0
components/mlme/dispatcher/inc/wlan_mlme_api.h

@@ -4662,4 +4662,26 @@ wlan_mlme_set_ul_mu_config(struct wlan_objmgr_psoc *psoc, uint8_t vdev_id,
  */
 uint32_t
 wlan_mlme_assemble_rate_code(uint8_t preamble, uint8_t nss, uint8_t rate);
+
+/**
+ * wlan_mlme_set_ap_oper_ch_width() - set SAP current operating ch_width
+ *
+ * @vdev: SAP VDEV object
+ * @ch_width: ch_width to be cached
+ *
+ * Return: QDF Status
+ */
+QDF_STATUS
+wlan_mlme_set_ap_oper_ch_width(struct wlan_objmgr_vdev *vdev,
+			       enum phy_ch_width ch_width);
+
+/**
+ * wlan_mlme_get_ap_oper_ch_width() - get SAP current operating ch_width
+ *
+ * @vdev: SAP VDEV object
+ *
+ * Return: Current SAP operating ch_width
+ */
+enum phy_ch_width
+wlan_mlme_get_ap_oper_ch_width(struct wlan_objmgr_vdev *vdev);
 #endif /* _WLAN_MLME_API_H_ */

+ 39 - 0
components/mlme/dispatcher/src/wlan_mlme_api.c

@@ -7696,3 +7696,42 @@ wlan_mlme_assemble_rate_code(uint8_t preamble, uint8_t nss, uint8_t rate)
 
 	return set_value;
 }
+
+QDF_STATUS
+wlan_mlme_set_ap_oper_ch_width(struct wlan_objmgr_vdev *vdev,
+			       enum phy_ch_width ch_width)
+
+{
+	struct mlme_legacy_priv *mlme_priv;
+
+	mlme_priv = wlan_vdev_mlme_get_ext_hdl(vdev);
+	if (!mlme_priv) {
+		mlme_legacy_err("vdev %d legacy private object is NULL",
+				wlan_vdev_get_id(vdev));
+		return QDF_STATUS_E_FAILURE;
+	}
+
+	mlme_priv->mlme_ap.oper_ch_width = ch_width;
+	mlme_debug("SAP oper ch_width: %d, vdev %d",
+		   mlme_priv->mlme_ap.oper_ch_width, wlan_vdev_get_id(vdev));
+
+	return QDF_STATUS_SUCCESS;
+}
+
+enum phy_ch_width
+wlan_mlme_get_ap_oper_ch_width(struct wlan_objmgr_vdev *vdev)
+{
+	struct mlme_legacy_priv *mlme_priv;
+
+	mlme_priv = wlan_vdev_mlme_get_ext_hdl(vdev);
+	if (!mlme_priv) {
+		mlme_legacy_err("vdev %d legacy private object is NULL",
+				wlan_vdev_get_id(vdev));
+		return CH_WIDTH_INVALID;
+	}
+
+	mlme_debug("SAP oper ch_width: %d, vdev %d",
+		   mlme_priv->mlme_ap.oper_ch_width, wlan_vdev_get_id(vdev));
+
+	return mlme_priv->mlme_ap.oper_ch_width;
+}