summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorPoddar, Siddarth <siddpodd@codeaurora.org>2017-09-04 12:16:38 +0530
committersnandini <snandini@codeaurora.org>2017-10-06 12:27:19 -0700
commit5c57a8905ee57aab8b10cde048801372f46cc3c0 (patch)
tree7060bbac3f55bd8a84b4cb10da5a3acb79831c4d /utils
parentd85083e7be24a0ad6a6bbf9d91d90908b8bc3499 (diff)
downloadqca-wfi-host-cmn-5c57a8905ee57aab8b10cde048801372f46cc3c0.tar.gz
qcacmn: Add register/deregister data stall detect cb api
Add register and deregister data stall detect callback apis. Change-Id: I59d5871b7ec03da4b4f69d87b14f7eb5e8606c4a CRs-Fixed: 2090654
Diffstat (limited to 'utils')
-rw-r--r--utils/host_diag_log/inc/host_diag_core_event.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/utils/host_diag_log/inc/host_diag_core_event.h b/utils/host_diag_log/inc/host_diag_core_event.h
index d3406112c..ddfa1c962 100644
--- a/utils/host_diag_log/inc/host_diag_core_event.h
+++ b/utils/host_diag_log/inc/host_diag_core_event.h
@@ -394,14 +394,32 @@ enum host_sta_kickout_events {
------------------------------------------------------------------------*/
/**
* enum host_datastall_events - Enum containing datastall subtype
+ * @DATA_STALL_NONE: Indicate no data stall
+ * @FW_VDEV_PAUSE: Indicate FW vdev Pause
+ * @HWSCHED_CMD_FILTER:Indicate HW sched command filter
+ * @HWSCHED_CMD_FLUSH: Indicate HW sched command flush
+ * @FW_RX_REFILL_FAILED:Indicate FW rx refill failed
+ * @FW_RX_FCS_LEN_ERROR:Indicate FW fcs len error
+ * @FW_WDOG_ERRORS:Indicate watchdog error
+ * @FW_BB_WDOG_ERROR:Indicate BB watchdog error
* @STA_TX_TIMEOUT: Indicate sta tx timeout
* @SOFTAP_TX_TIMEOUT:Indicate softap tx timeout
+ * @NUD_FAILURE: Indicare NUD Failure
*
* This enum contains the event subtype
*/
enum host_datastall_events {
+ DATA_STALL_NONE,
+ FW_VDEV_PAUSE,
+ HWSCHED_CMD_FILTER,
+ HWSCHED_CMD_FLUSH,
+ FW_RX_REFILL_FAILED,
+ FW_RX_FCS_LEN_ERROR,
+ FW_WDOG_ERRORS,
+ FW_BB_WDOG_ERROR,
STA_TX_TIMEOUT,
SOFTAP_TX_TIMEOUT,
+ NUD_FAILURE,
};
/*-------------------------------------------------------------------------