Browse Source

qcacld-3.0: Add API to get phy stats

Implement API to get phy stats for EasyMesh.

Change-Id: I3ac8168c6217f101ee152c396f8576628f7508b8
CRs-Fixed: 3044722
bings 3 years ago
parent
commit
ff725f42b2
2 changed files with 55 additions and 0 deletions
  1. 11 0
      os_if/son/inc/os_if_son.h
  2. 44 0
      os_if/son/src/os_if_son.c

+ 11 - 0
os_if/son/inc/os_if_son.h

@@ -1,6 +1,7 @@
 
 /*
  * Copyright (c) 2021, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021 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 above
@@ -314,6 +315,16 @@ enum ieee80211_phymode os_if_son_get_phymode(struct wlan_objmgr_vdev *vdev);
 int os_if_son_set_phymode(struct wlan_objmgr_vdev *vdev,
 			  enum ieee80211_phymode mode);
 
+/**
+ * os_if_son_get_phy_stats() - get phy stats
+ * @vdev: vdev
+ * @phy_stats: phy stats
+ *
+ * Return: void
+ */
+void os_if_son_get_phy_stats(struct wlan_objmgr_vdev *vdev,
+			     struct ol_ath_radiostats *phy_stats);
+
 /**
  * os_if_son_get_chan_util() - get chan utilization
  * @vdev: vdev

+ 44 - 0
os_if/son/src/os_if_son.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2021, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021 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 above
@@ -741,6 +742,49 @@ uint8_t os_if_son_get_chan_util(struct wlan_objmgr_vdev *vdev)
 }
 qdf_export_symbol(os_if_son_get_chan_util);
 
+void os_if_son_get_phy_stats(struct wlan_objmgr_vdev *vdev,
+			     struct ol_ath_radiostats *phy_stats)
+{
+	struct wlan_host_dcs_ch_util_stats dcs_son_stats = {};
+	struct wlan_objmgr_psoc *psoc;
+	uint8_t mac_id;
+	QDF_STATUS status;
+
+	if (!vdev) {
+		osif_err("null vdev");
+		return;
+	}
+
+	psoc = wlan_vdev_get_psoc(vdev);
+	if (!psoc) {
+		osif_err("null psoc");
+		return;
+	}
+	status = policy_mgr_get_mac_id_by_session_id(psoc,
+						     wlan_vdev_get_id(vdev),
+						     &mac_id);
+	if (QDF_IS_STATUS_ERROR(status)) {
+		osif_err("Failed to get mac_id");
+		return;
+	}
+
+	ucfg_dcs_get_ch_util(psoc, mac_id, &dcs_son_stats);
+
+	phy_stats->ap_rx_util = dcs_son_stats.rx_cu;
+	phy_stats->ap_tx_util = dcs_son_stats.tx_cu;
+	phy_stats->obss_rx_util = dcs_son_stats.obss_rx_cu;
+	if (dcs_son_stats.total_cu < 100)
+		phy_stats->free_medium = 100 - dcs_son_stats.total_cu;
+	else
+		phy_stats->free_medium = 0;
+	phy_stats->chan_nf = dcs_son_stats.chan_nf;
+	osif_debug("rx_util %d tx_util %d obss_rx_util %d free_medium %d noise floor %d",
+		   phy_stats->ap_rx_util, phy_stats->ap_tx_util,
+		   phy_stats->obss_rx_util, phy_stats->free_medium,
+		   phy_stats->chan_nf);
+}
+qdf_export_symbol(os_if_son_get_phy_stats);
+
 int os_if_son_set_phymode(struct wlan_objmgr_vdev *vdev,
 			  enum ieee80211_phymode mode)
 {