|
@@ -174,9 +174,10 @@
|
|
|
* 3.57 Add support for in-band data within HTT_T2H_MSG_TYPE_CFR_DUMP_COMPL_IND
|
|
|
* 3.58 Add optional MSDU ack RSSI array to end of HTT_T2H TX_COMPL_IND msg
|
|
|
* 3.59 Add HTT_RXDMA_HOST_BUF_RING2 def
|
|
|
+ * 3.60 Add HTT_T2H_MSG_TYPE_PEER_STATS_IND def
|
|
|
*/
|
|
|
#define HTT_CURRENT_VERSION_MAJOR 3
|
|
|
-#define HTT_CURRENT_VERSION_MINOR 59
|
|
|
+#define HTT_CURRENT_VERSION_MINOR 60
|
|
|
|
|
|
#define HTT_NUM_TX_FRAG_DESC 1024
|
|
|
|
|
@@ -5603,6 +5604,7 @@ enum htt_t2h_msg_type {
|
|
|
HTT_T2H_MSG_TYPE_MONITOR_MAC_HEADER_IND = 0x20,
|
|
|
HTT_T2H_MSG_TYPE_FLOW_POOL_RESIZE = 0x21,
|
|
|
HTT_T2H_MSG_TYPE_CFR_DUMP_COMPL_IND = 0x22,
|
|
|
+ HTT_T2H_MSG_TYPE_PEER_STATS_IND = 0x23,
|
|
|
|
|
|
HTT_T2H_MSG_TYPE_TEST,
|
|
|
/* keep this last */
|
|
@@ -11144,4 +11146,98 @@ PREPACK struct htt_cfr_dump_compl_ind {
|
|
|
(((word) & HTT_T2H_CFR_DUMP_TYPE1_VDEV_ID_M) >> \
|
|
|
HTT_T2H_CFR_DUMP_TYPE1_VDEV_ID_S)
|
|
|
|
|
|
+
|
|
|
+/**
|
|
|
+ * @brief target -> host peer (PPDU) stats message
|
|
|
+ * HTT_T2H_MSG_TYPE_PEER_STATS_IND
|
|
|
+ * @details
|
|
|
+ * This message is generated by FW when FW is sending stats to host
|
|
|
+ * about one or more PPDUs that the FW has transmitted to one or more peers.
|
|
|
+ * This message is sent autonomously by the target rather than upon request
|
|
|
+ * by the host.
|
|
|
+ * The following field definitions describe the format of the HTT target
|
|
|
+ * to host peer stats indication message.
|
|
|
+ *
|
|
|
+ * The HTT_T2H PPDU_STATS_IND message has a header followed by one
|
|
|
+ * or more PPDU stats records.
|
|
|
+ * Each PPDU stats record uses a htt_tx_ppdu_stats_info TLV.
|
|
|
+ * If the details of N PPDUS are sent in one PEER_STATS_IND message,
|
|
|
+ * then the message would start with the
|
|
|
+ * header, followed by N htt_tx_ppdu_stats_info structures, as depicted
|
|
|
+ * below.
|
|
|
+ *
|
|
|
+ * |31 16|15|14|13 11|10 9|8|7 0|
|
|
|
+ * |-------------------------------------------------------------|
|
|
|
+ * | reserved |MSG_TYPE |
|
|
|
+ * |-------------------------------------------------------------|
|
|
|
+ * rec 0 | TLV header |
|
|
|
+ * rec 0 |-------------------------------------------------------------|
|
|
|
+ * rec 0 | ppdu successful bytes |
|
|
|
+ * rec 0 |-------------------------------------------------------------|
|
|
|
+ * rec 0 | ppdu retry bytes |
|
|
|
+ * rec 0 |-------------------------------------------------------------|
|
|
|
+ * rec 0 | ppdu failed bytes |
|
|
|
+ * rec 0 |-------------------------------------------------------------|
|
|
|
+ * rec 0 | peer id | S|SG| BW | BA |A|rate code|
|
|
|
+ * rec 0 |-------------------------------------------------------------|
|
|
|
+ * rec 0 | retried MSDUs | successful MSDUs |
|
|
|
+ * rec 0 |-------------------------------------------------------------|
|
|
|
+ * rec 0 | TX duration | failed MSDUs |
|
|
|
+ * rec 0 |-------------------------------------------------------------|
|
|
|
+ * ...
|
|
|
+ * |-------------------------------------------------------------|
|
|
|
+ * rec N | TLV header |
|
|
|
+ * rec N |-------------------------------------------------------------|
|
|
|
+ * rec N | ppdu successful bytes |
|
|
|
+ * rec N |-------------------------------------------------------------|
|
|
|
+ * rec N | ppdu retry bytes |
|
|
|
+ * rec N |-------------------------------------------------------------|
|
|
|
+ * rec N | ppdu failed bytes |
|
|
|
+ * rec N |-------------------------------------------------------------|
|
|
|
+ * rec N | peer id | S|SG| BW | BA |A|rate code|
|
|
|
+ * rec N |-------------------------------------------------------------|
|
|
|
+ * rec N | retried MSDUs | successful MSDUs |
|
|
|
+ * rec N |-------------------------------------------------------------|
|
|
|
+ * rec N | TX duration | failed MSDUs |
|
|
|
+ * rec N |-------------------------------------------------------------|
|
|
|
+ *
|
|
|
+ * where:
|
|
|
+ * A = is A-MPDU flag
|
|
|
+ * BA = block-ack failure flags
|
|
|
+ * BW = bandwidth spec
|
|
|
+ * SG = SGI enabled spec
|
|
|
+ * S = skipped rate ctrl
|
|
|
+ * One htt_tx_ppdu_stats_info instance will have stats for one PPDU
|
|
|
+ *
|
|
|
+ * Header
|
|
|
+ * ------
|
|
|
+ * dword0 - b'0:7 - msg_type : HTT_T2H_MSG_TYPE_PEER_STATS_IND
|
|
|
+ * dword0 - b'8:31 - reserved : Reserved for future use
|
|
|
+ *
|
|
|
+ * payload include below peer_stats information
|
|
|
+ * --------------------------------------------
|
|
|
+ * @TLV : HTT_PPDU_STATS_INFO_TLV
|
|
|
+ * @tx_success_bytes : total successful bytes in the PPDU.
|
|
|
+ * @tx_retry_bytes : total retried bytes in the PPDU.
|
|
|
+ * @tx_failed_bytes : total failed bytes in the PPDU.
|
|
|
+ * @tx_ratecode : rate code used for the PPDU.
|
|
|
+ * @is_ampdu : Indicates PPDU is AMPDU or not.
|
|
|
+ * @ba_ack_failed : BA/ACK failed for this PPDU
|
|
|
+ * b00 -> BA received
|
|
|
+ * b01 -> BA failed once
|
|
|
+ * b10 -> BA failed twice, when HW retry is enabled.
|
|
|
+ * @bw : BW
|
|
|
+ * b00 -> 20 MHz
|
|
|
+ * b01 -> 40 MHz
|
|
|
+ * b10 -> 80 MHz
|
|
|
+ * b11 -> 160 MHz (or 80+80)
|
|
|
+ * @sg : SGI enabled
|
|
|
+ * @s : skipped ratectrl
|
|
|
+ * @peer_id : peer id
|
|
|
+ * @tx_success_msdus : successful MSDUs
|
|
|
+ * @tx_retry_msdus : retried MSDUs
|
|
|
+ * @tx_failed_msdus : MSDUs dropped in FW after max retry
|
|
|
+ * @tx_duration : Tx duration for the PPDU (microsecond units)
|
|
|
+ */
|
|
|
+
|
|
|
#endif
|