|
@@ -125,6 +125,16 @@ struct pending_stats_requests {
|
|
|
struct request_info req[TYPE_MAX];
|
|
|
};
|
|
|
|
|
|
+/**
|
|
|
+ * struct cca_stats - cca stats
|
|
|
+ * @congestion: the congestion percentage = (busy_time/total_time)*100
|
|
|
+ * for the interval from when the vdev was started to the current time
|
|
|
+ * (or the time at which the vdev was stopped).
|
|
|
+ */
|
|
|
+struct cca_stats {
|
|
|
+ uint32_t congestion;
|
|
|
+};
|
|
|
+
|
|
|
/**
|
|
|
* struct psoc_mc_cp_stats: psoc specific stats
|
|
|
* @pending: details of pending requests
|
|
@@ -144,11 +154,13 @@ struct pdev_mc_cp_stats {
|
|
|
};
|
|
|
|
|
|
/**
|
|
|
- * struct vdev_mc_cp_stats - vdev specific stats
|
|
|
- * @wow_stats: wake_lock stats for vdev
|
|
|
+ * struct vdev_mc_cp_stats - vdev specific stats
|
|
|
+ * @wow_stats: wake_lock stats for vdev
|
|
|
+ * @cca: cca stats
|
|
|
*/
|
|
|
struct vdev_mc_cp_stats {
|
|
|
struct wake_lock_stats wow_stats;
|
|
|
+ struct cca_stats cca;
|
|
|
};
|
|
|
|
|
|
/**
|
|
@@ -165,18 +177,30 @@ struct peer_mc_cp_stats {
|
|
|
uint8_t peer_macaddr[WLAN_MACADDR_LEN];
|
|
|
};
|
|
|
|
|
|
+/**
|
|
|
+ * struct congestion_stats_event: congestion stats event param
|
|
|
+ * @vdev_id: vdev_id of the event
|
|
|
+ * @congestion: the congestion percentage
|
|
|
+ */
|
|
|
+struct congestion_stats_event {
|
|
|
+ uint8_t vdev_id;
|
|
|
+ uint32_t congestion;
|
|
|
+};
|
|
|
+
|
|
|
/**
|
|
|
* struct stats_event - parameters populated by stats event
|
|
|
* @num_pdev_stats: num pdev stats
|
|
|
* @pdev_stats: if populated array indicating pdev stats (index = pdev_id)
|
|
|
* @num_peer_stats: num peer stats
|
|
|
* @peer_stats: if populated array indicating peer stats
|
|
|
+ * @cca_stats: if populated indicates congestion stats
|
|
|
*/
|
|
|
struct stats_event {
|
|
|
uint32_t num_pdev_stats;
|
|
|
struct pdev_mc_cp_stats *pdev_stats;
|
|
|
uint32_t num_peer_stats;
|
|
|
struct peer_mc_cp_stats *peer_stats;
|
|
|
+ struct congestion_stats_event *cca_stats;
|
|
|
};
|
|
|
|
|
|
#endif /* CONFIG_MCL */
|