Эх сурвалжийг харах

fw-api: CL 7408787 - update fw common interface files

HTT stats: allow HTT per peer stats reset

Change-Id: I9914b52ce83f3ff5381170d099e9d107623892cd
CRs-Fixed: 2262693
spuligil 5 жил өмнө
parent
commit
8718eecf4d
2 өөрчлөгдсөн 27 нэмэгдсэн , 1 устгасан
  1. 26 1
      fw/htt_stats.h
  2. 1 0
      fw/wmi_services.h

+ 26 - 1
fw/htt_stats.h

@@ -145,7 +145,15 @@ enum htt_dbg_ext_stats_type {
      *           6 bit htt_msdu_flow_stats_tlv
      *   - config_param2: [Bit31 : Bit0] mac_addr31to0
      *   - config_param3: [Bit15 : Bit0] mac_addr47to32
-     *                    [Bit31 : Bit16] reserved
+     *                    [Bit 16] If this bit is set, reset per peer stats
+     *                             of corresponding tlv indicated by config
+     *                             param 1.
+     *                             HTT_DBG_EXT_PEER_STATS_RESET_GET will be
+     *                             used to get this bit position.
+     *                             WMI_SERVICE_PER_PEER_HTT_STATS_RESET
+     *                             indicates that FW supports per peer HTT
+     *                             stats reset.
+     *                    [Bit31 : Bit17] reserved
      * RESP MSG:
      *   - htt_peer_stats_t
      */
@@ -289,6 +297,23 @@ enum htt_dbg_ext_stats_type {
     HTT_DBG_NUM_EXT_STATS = 256,
 };
 
+/*
+ * Macros to get/set the bit field in config param[3] that indicates to
+ * clear corresponding per peer stats specified by config param 1
+ */
+#define HTT_DBG_EXT_PEER_STATS_RESET_M 0x00010000
+#define HTT_DBG_EXT_PEER_STATS_RESET_S 16
+
+#define HTT_DBG_EXT_PEER_STATS_RESET_GET(_var) \
+    (((_var) & HTT_DBG_EXT_PEER_STATS_RESET_M) >> \
+     HTT_DBG_EXT_PEER_STATS_RESET_S)
+
+#define HTT_DBG_EXT_PEER_STATS_RESET_SET(_var, _val) \
+    do { \
+        HTT_CHECK_SET_VAL(HTT_DBG_EXT_PEER_STATS_RESET, _val); \
+        ((_var) |= ((_val) << HTT_DBG_EXT_PEER_STATS_RESET_S)); \
+    } while (0)
+
 typedef enum {
     HTT_STATS_TX_PDEV_CMN_TAG                      = 0,  /* htt_tx_pdev_stats_cmn_tlv */
     HTT_STATS_TX_PDEV_UNDERRUN_TAG                 = 1,  /* htt_tx_pdev_stats_urrn_tlv_v */

+ 1 - 0
fw/wmi_services.h

@@ -395,6 +395,7 @@ typedef  enum  {
     WMI_SERVICE_TX_COMPL_TSF64 = 210, /* FW supports 64-bit tx TSF in HTT_T2H TX_COMPL_IND msg */
     WMI_SERVICE_DSM_ROAM_FILTER = 211, /* FW supports data stall AP mitigation while roaming */
     WMI_SERVICE_PACKET_CAPTURE_SUPPORT = 212, /* target supports packet capture Mode (SMART MU) */
+    WMI_SERVICE_PER_PEER_HTT_STATS_RESET = 213, /* FW supports HTT per peer stats reset facility */
 
     /******* ADD NEW SERVICES HERE *******/