|
@@ -237,6 +237,266 @@ while (0)
|
|
|
#endif
|
|
|
|
|
|
#define DP_HTT_T2H_HP_PIPE 5
|
|
|
+static inline void dp_update_pdev_stats(struct dp_pdev *tgtobj,
|
|
|
+ struct cdp_vdev_stats *srcobj)
|
|
|
+{
|
|
|
+ uint8_t i;
|
|
|
+ uint8_t pream_type;
|
|
|
+
|
|
|
+ for (pream_type = 0; pream_type < DOT11_MAX; pream_type++) {
|
|
|
+ for (i = 0; i < MAX_MCS; i++) {
|
|
|
+ tgtobj->stats.tx.pkt_type[pream_type].
|
|
|
+ mcs_count[i] +=
|
|
|
+ srcobj->tx.pkt_type[pream_type].
|
|
|
+ mcs_count[i];
|
|
|
+ tgtobj->stats.rx.pkt_type[pream_type].
|
|
|
+ mcs_count[i] +=
|
|
|
+ srcobj->rx.pkt_type[pream_type].
|
|
|
+ mcs_count[i];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < MAX_BW; i++) {
|
|
|
+ tgtobj->stats.tx.bw[i] += srcobj->tx.bw[i];
|
|
|
+ tgtobj->stats.rx.bw[i] += srcobj->rx.bw[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < SS_COUNT; i++) {
|
|
|
+ tgtobj->stats.tx.nss[i] += srcobj->tx.nss[i];
|
|
|
+ tgtobj->stats.rx.nss[i] += srcobj->rx.nss[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < WME_AC_MAX; i++) {
|
|
|
+ tgtobj->stats.tx.wme_ac_type[i] +=
|
|
|
+ srcobj->tx.wme_ac_type[i];
|
|
|
+ tgtobj->stats.rx.wme_ac_type[i] +=
|
|
|
+ srcobj->rx.wme_ac_type[i];
|
|
|
+ tgtobj->stats.tx.excess_retries_per_ac[i] +=
|
|
|
+ srcobj->tx.excess_retries_per_ac[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < MAX_GI; i++) {
|
|
|
+ tgtobj->stats.tx.sgi_count[i] +=
|
|
|
+ srcobj->tx.sgi_count[i];
|
|
|
+ tgtobj->stats.rx.sgi_count[i] +=
|
|
|
+ srcobj->rx.sgi_count[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < MAX_RECEPTION_TYPES; i++)
|
|
|
+ tgtobj->stats.rx.reception_type[i] +=
|
|
|
+ srcobj->rx.reception_type[i];
|
|
|
+
|
|
|
+ tgtobj->stats.tx.comp_pkt.bytes += srcobj->tx.comp_pkt.bytes;
|
|
|
+ tgtobj->stats.tx.comp_pkt.num += srcobj->tx.comp_pkt.num;
|
|
|
+ tgtobj->stats.tx.ucast.num += srcobj->tx.ucast.num;
|
|
|
+ tgtobj->stats.tx.ucast.bytes += srcobj->tx.ucast.bytes;
|
|
|
+ tgtobj->stats.tx.mcast.num += srcobj->tx.mcast.num;
|
|
|
+ tgtobj->stats.tx.mcast.bytes += srcobj->tx.mcast.bytes;
|
|
|
+ tgtobj->stats.tx.bcast.num += srcobj->tx.bcast.num;
|
|
|
+ tgtobj->stats.tx.bcast.bytes += srcobj->tx.bcast.bytes;
|
|
|
+ tgtobj->stats.tx.tx_success.num += srcobj->tx.tx_success.num;
|
|
|
+ tgtobj->stats.tx.tx_success.bytes +=
|
|
|
+ srcobj->tx.tx_success.bytes;
|
|
|
+ tgtobj->stats.tx.nawds_mcast.num +=
|
|
|
+ srcobj->tx.nawds_mcast.num;
|
|
|
+ tgtobj->stats.tx.nawds_mcast.bytes +=
|
|
|
+ srcobj->tx.nawds_mcast.bytes;
|
|
|
+ tgtobj->stats.tx.tx_failed += srcobj->tx.tx_failed;
|
|
|
+ tgtobj->stats.tx.ofdma += srcobj->tx.ofdma;
|
|
|
+ tgtobj->stats.tx.stbc += srcobj->tx.stbc;
|
|
|
+ tgtobj->stats.tx.ldpc += srcobj->tx.ldpc;
|
|
|
+ tgtobj->stats.tx.retries += srcobj->tx.retries;
|
|
|
+ tgtobj->stats.tx.non_amsdu_cnt += srcobj->tx.non_amsdu_cnt;
|
|
|
+ tgtobj->stats.tx.amsdu_cnt += srcobj->tx.amsdu_cnt;
|
|
|
+ tgtobj->stats.tx.dropped.fw_rem += srcobj->tx.dropped.fw_rem;
|
|
|
+ tgtobj->stats.tx.dropped.fw_rem_tx +=
|
|
|
+ srcobj->tx.dropped.fw_rem_tx;
|
|
|
+ tgtobj->stats.tx.dropped.fw_rem_notx +=
|
|
|
+ srcobj->tx.dropped.fw_rem_notx;
|
|
|
+ tgtobj->stats.tx.dropped.fw_reason1 +=
|
|
|
+ srcobj->tx.dropped.fw_reason1;
|
|
|
+ tgtobj->stats.tx.dropped.fw_reason2 +=
|
|
|
+ srcobj->tx.dropped.fw_reason2;
|
|
|
+ tgtobj->stats.tx.dropped.fw_reason3 +=
|
|
|
+ srcobj->tx.dropped.fw_reason3;
|
|
|
+ tgtobj->stats.tx.dropped.age_out += srcobj->tx.dropped.age_out;
|
|
|
+ tgtobj->stats.rx.err.mic_err += srcobj->rx.err.mic_err;
|
|
|
+ tgtobj->stats.rx.rssi = srcobj->rx.rssi;
|
|
|
+ tgtobj->stats.rx.rx_rate = srcobj->rx.rx_rate;
|
|
|
+ tgtobj->stats.rx.err.decrypt_err += srcobj->rx.err.decrypt_err;
|
|
|
+ tgtobj->stats.rx.non_ampdu_cnt += srcobj->rx.non_ampdu_cnt;
|
|
|
+ tgtobj->stats.rx.amsdu_cnt += srcobj->rx.ampdu_cnt;
|
|
|
+ tgtobj->stats.rx.non_amsdu_cnt += srcobj->rx.non_amsdu_cnt;
|
|
|
+ tgtobj->stats.rx.amsdu_cnt += srcobj->rx.amsdu_cnt;
|
|
|
+ tgtobj->stats.rx.to_stack.num += srcobj->rx.to_stack.num;
|
|
|
+ tgtobj->stats.rx.to_stack.bytes += srcobj->rx.to_stack.bytes;
|
|
|
+
|
|
|
+ for (i = 0; i < CDP_MAX_RX_RINGS; i++) {
|
|
|
+ tgtobj->stats.rx.rcvd_reo[i].num +=
|
|
|
+ srcobj->rx.rcvd_reo[i].num;
|
|
|
+ tgtobj->stats.rx.rcvd_reo[i].bytes +=
|
|
|
+ srcobj->rx.rcvd_reo[i].bytes;
|
|
|
+ }
|
|
|
+
|
|
|
+ srcobj->rx.unicast.num =
|
|
|
+ srcobj->rx.to_stack.num -
|
|
|
+ (srcobj->rx.multicast.num +
|
|
|
+ srcobj->rx.bcast.num);
|
|
|
+ srcobj->rx.unicast.bytes =
|
|
|
+ srcobj->rx.to_stack.bytes -
|
|
|
+ (srcobj->rx.multicast.bytes +
|
|
|
+ srcobj->rx.bcast.bytes);
|
|
|
+
|
|
|
+ tgtobj->stats.rx.unicast.num += srcobj->rx.unicast.num;
|
|
|
+ tgtobj->stats.rx.unicast.bytes += srcobj->rx.unicast.bytes;
|
|
|
+ tgtobj->stats.rx.multicast.num += srcobj->rx.multicast.num;
|
|
|
+ tgtobj->stats.rx.multicast.bytes += srcobj->rx.multicast.bytes;
|
|
|
+ tgtobj->stats.rx.bcast.num += srcobj->rx.bcast.num;
|
|
|
+ tgtobj->stats.rx.bcast.bytes += srcobj->rx.bcast.bytes;
|
|
|
+ tgtobj->stats.rx.raw.num += srcobj->rx.raw.num;
|
|
|
+ tgtobj->stats.rx.raw.bytes += srcobj->rx.raw.bytes;
|
|
|
+ tgtobj->stats.rx.intra_bss.pkts.num +=
|
|
|
+ srcobj->rx.intra_bss.pkts.num;
|
|
|
+ tgtobj->stats.rx.intra_bss.pkts.bytes +=
|
|
|
+ srcobj->rx.intra_bss.pkts.bytes;
|
|
|
+ tgtobj->stats.rx.intra_bss.fail.num +=
|
|
|
+ srcobj->rx.intra_bss.fail.num;
|
|
|
+ tgtobj->stats.rx.intra_bss.fail.bytes +=
|
|
|
+ srcobj->rx.intra_bss.fail.bytes;
|
|
|
+
|
|
|
+ tgtobj->stats.tx.last_ack_rssi =
|
|
|
+ srcobj->tx.last_ack_rssi;
|
|
|
+}
|
|
|
+
|
|
|
+static inline void dp_update_vdev_stats(struct cdp_vdev_stats *tgtobj,
|
|
|
+ struct dp_peer *srcobj)
|
|
|
+{
|
|
|
+ uint8_t i;
|
|
|
+ uint8_t pream_type;
|
|
|
+
|
|
|
+ for (pream_type = 0; pream_type < DOT11_MAX; pream_type++) {
|
|
|
+ for (i = 0; i < MAX_MCS; i++) {
|
|
|
+ tgtobj->tx.pkt_type[pream_type].
|
|
|
+ mcs_count[i] +=
|
|
|
+ srcobj->stats.tx.pkt_type[pream_type].
|
|
|
+ mcs_count[i];
|
|
|
+ tgtobj->rx.pkt_type[pream_type].
|
|
|
+ mcs_count[i] +=
|
|
|
+ srcobj->stats.rx.pkt_type[pream_type].
|
|
|
+ mcs_count[i];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < MAX_BW; i++) {
|
|
|
+ tgtobj->tx.bw[i] += srcobj->stats.tx.bw[i];
|
|
|
+ tgtobj->rx.bw[i] += srcobj->stats.rx.bw[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < SS_COUNT; i++) {
|
|
|
+ tgtobj->tx.nss[i] += srcobj->stats.tx.nss[i];
|
|
|
+ tgtobj->rx.nss[i] += srcobj->stats.rx.nss[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < WME_AC_MAX; i++) {
|
|
|
+ tgtobj->tx.wme_ac_type[i] +=
|
|
|
+ srcobj->stats.tx.wme_ac_type[i];
|
|
|
+ tgtobj->rx.wme_ac_type[i] +=
|
|
|
+ srcobj->stats.rx.wme_ac_type[i];
|
|
|
+ tgtobj->tx.excess_retries_per_ac[i] +=
|
|
|
+ srcobj->stats.tx.excess_retries_per_ac[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < MAX_GI; i++) {
|
|
|
+ tgtobj->tx.sgi_count[i] +=
|
|
|
+ srcobj->stats.tx.sgi_count[i];
|
|
|
+ tgtobj->rx.sgi_count[i] +=
|
|
|
+ srcobj->stats.rx.sgi_count[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < MAX_RECEPTION_TYPES; i++)
|
|
|
+ tgtobj->rx.reception_type[i] +=
|
|
|
+ srcobj->stats.rx.reception_type[i];
|
|
|
+
|
|
|
+ tgtobj->tx.comp_pkt.bytes += srcobj->stats.tx.comp_pkt.bytes;
|
|
|
+ tgtobj->tx.comp_pkt.num += srcobj->stats.tx.comp_pkt.num;
|
|
|
+ tgtobj->tx.ucast.num += srcobj->stats.tx.ucast.num;
|
|
|
+ tgtobj->tx.ucast.bytes += srcobj->stats.tx.ucast.bytes;
|
|
|
+ tgtobj->tx.mcast.num += srcobj->stats.tx.mcast.num;
|
|
|
+ tgtobj->tx.mcast.bytes += srcobj->stats.tx.mcast.bytes;
|
|
|
+ tgtobj->tx.bcast.num += srcobj->stats.tx.bcast.num;
|
|
|
+ tgtobj->tx.bcast.bytes += srcobj->stats.tx.bcast.bytes;
|
|
|
+ tgtobj->tx.tx_success.num += srcobj->stats.tx.tx_success.num;
|
|
|
+ tgtobj->tx.tx_success.bytes +=
|
|
|
+ srcobj->stats.tx.tx_success.bytes;
|
|
|
+ tgtobj->tx.nawds_mcast.num +=
|
|
|
+ srcobj->stats.tx.nawds_mcast.num;
|
|
|
+ tgtobj->tx.nawds_mcast.bytes +=
|
|
|
+ srcobj->stats.tx.nawds_mcast.bytes;
|
|
|
+ tgtobj->tx.tx_failed += srcobj->stats.tx.tx_failed;
|
|
|
+ tgtobj->tx.ofdma += srcobj->stats.tx.ofdma;
|
|
|
+ tgtobj->tx.stbc += srcobj->stats.tx.stbc;
|
|
|
+ tgtobj->tx.ldpc += srcobj->stats.tx.ldpc;
|
|
|
+ tgtobj->tx.retries += srcobj->stats.tx.retries;
|
|
|
+ tgtobj->tx.non_amsdu_cnt += srcobj->stats.tx.non_amsdu_cnt;
|
|
|
+ tgtobj->tx.amsdu_cnt += srcobj->stats.tx.amsdu_cnt;
|
|
|
+ tgtobj->tx.dropped.fw_rem += srcobj->stats.tx.dropped.fw_rem;
|
|
|
+ tgtobj->tx.dropped.fw_rem_tx +=
|
|
|
+ srcobj->stats.tx.dropped.fw_rem_tx;
|
|
|
+ tgtobj->tx.dropped.fw_rem_notx +=
|
|
|
+ srcobj->stats.tx.dropped.fw_rem_notx;
|
|
|
+ tgtobj->tx.dropped.fw_reason1 +=
|
|
|
+ srcobj->stats.tx.dropped.fw_reason1;
|
|
|
+ tgtobj->tx.dropped.fw_reason2 +=
|
|
|
+ srcobj->stats.tx.dropped.fw_reason2;
|
|
|
+ tgtobj->tx.dropped.fw_reason3 +=
|
|
|
+ srcobj->stats.tx.dropped.fw_reason3;
|
|
|
+ tgtobj->tx.dropped.age_out += srcobj->stats.tx.dropped.age_out;
|
|
|
+ tgtobj->rx.err.mic_err += srcobj->stats.rx.err.mic_err;
|
|
|
+ tgtobj->rx.rssi = srcobj->stats.rx.rssi;
|
|
|
+ tgtobj->rx.rx_rate = srcobj->stats.rx.rx_rate;
|
|
|
+ tgtobj->rx.err.decrypt_err += srcobj->stats.rx.err.decrypt_err;
|
|
|
+ tgtobj->rx.non_ampdu_cnt += srcobj->stats.rx.non_ampdu_cnt;
|
|
|
+ tgtobj->rx.amsdu_cnt += srcobj->stats.rx.ampdu_cnt;
|
|
|
+ tgtobj->rx.non_amsdu_cnt += srcobj->stats.rx.non_amsdu_cnt;
|
|
|
+ tgtobj->rx.amsdu_cnt += srcobj->stats.rx.amsdu_cnt;
|
|
|
+ tgtobj->rx.to_stack.num += srcobj->stats.rx.to_stack.num;
|
|
|
+ tgtobj->rx.to_stack.bytes += srcobj->stats.rx.to_stack.bytes;
|
|
|
+
|
|
|
+ for (i = 0; i < CDP_MAX_RX_RINGS; i++) {
|
|
|
+ tgtobj->rx.rcvd_reo[i].num +=
|
|
|
+ srcobj->stats.rx.rcvd_reo[i].num;
|
|
|
+ tgtobj->rx.rcvd_reo[i].bytes +=
|
|
|
+ srcobj->stats.rx.rcvd_reo[i].bytes;
|
|
|
+ }
|
|
|
+
|
|
|
+ srcobj->stats.rx.unicast.num =
|
|
|
+ srcobj->stats.rx.to_stack.num -
|
|
|
+ (srcobj->stats.rx.multicast.num +
|
|
|
+ srcobj->stats.rx.bcast.num);
|
|
|
+ srcobj->stats.rx.unicast.bytes =
|
|
|
+ srcobj->stats.rx.to_stack.bytes -
|
|
|
+ (srcobj->stats.rx.multicast.bytes +
|
|
|
+ srcobj->stats.rx.bcast.bytes);
|
|
|
+
|
|
|
+ tgtobj->rx.unicast.num += srcobj->stats.rx.unicast.num;
|
|
|
+ tgtobj->rx.unicast.bytes += srcobj->stats.rx.unicast.bytes;
|
|
|
+ tgtobj->rx.multicast.num += srcobj->stats.rx.multicast.num;
|
|
|
+ tgtobj->rx.multicast.bytes += srcobj->stats.rx.multicast.bytes;
|
|
|
+ tgtobj->rx.bcast.num += srcobj->stats.rx.bcast.num;
|
|
|
+ tgtobj->rx.bcast.bytes += srcobj->stats.rx.bcast.bytes;
|
|
|
+ tgtobj->rx.raw.num += srcobj->stats.rx.raw.num;
|
|
|
+ tgtobj->rx.raw.bytes += srcobj->stats.rx.raw.bytes;
|
|
|
+ tgtobj->rx.intra_bss.pkts.num +=
|
|
|
+ srcobj->stats.rx.intra_bss.pkts.num;
|
|
|
+ tgtobj->rx.intra_bss.pkts.bytes +=
|
|
|
+ srcobj->stats.rx.intra_bss.pkts.bytes;
|
|
|
+ tgtobj->rx.intra_bss.fail.num +=
|
|
|
+ srcobj->stats.rx.intra_bss.fail.num;
|
|
|
+ tgtobj->rx.intra_bss.fail.bytes +=
|
|
|
+ srcobj->stats.rx.intra_bss.fail.bytes;
|
|
|
+ tgtobj->tx.last_ack_rssi =
|
|
|
+ srcobj->stats.tx.last_ack_rssi;
|
|
|
+}
|
|
|
|
|
|
#define DP_UPDATE_STATS(_tgtobj, _srcobj) \
|
|
|
do { \
|
|
@@ -406,7 +666,8 @@ extern QDF_STATUS dp_reo_send_cmd(struct dp_soc *soc,
|
|
|
|
|
|
extern void dp_reo_cmdlist_destroy(struct dp_soc *soc);
|
|
|
extern void dp_reo_status_ring_handler(struct dp_soc *soc);
|
|
|
-void dp_aggregate_vdev_stats(struct dp_vdev *vdev);
|
|
|
+void dp_aggregate_vdev_stats(struct dp_vdev *vdev,
|
|
|
+ struct cdp_vdev_stats *vdev_stats);
|
|
|
void dp_rx_tid_stats_cb(struct dp_soc *soc, void *cb_ctxt,
|
|
|
union hal_reo_status *reo_status);
|
|
|
void dp_rx_bar_stats_cb(struct dp_soc *soc, void *cb_ctxt,
|