summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspuligil <spuligil@codeaurora.org>2020-06-04 12:01:03 -0700
committernshrivas <nshrivas@codeaurora.org>2020-06-08 07:57:51 -0700
commit12d55ea492d2efbba86e8f366c2d5ed94d835ae5 (patch)
treea7150922d317b1a5fc8a90c036d2a2aacdf4a7a4
parent92b4b624da4ecb5e1f6824711abc8d617e241b2e (diff)
downloadwlan-fw-api-12d55ea492d2efbba86e8f366c2d5ed94d835ae5.tar.gz
fw-api: CL 10599978 - update fw common interface files
HTT stats: add non_srg_tx,srg_tx,aborted_obss_rssi in htt_ppdu_stats_common TLV Change-Id: I3ff2af56e1ce832c655341e444d91d6b5b3f9f4f CRs-Fixed: 2262693
-rw-r--r--fw/htt_ppdu_stats.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/fw/htt_ppdu_stats.h b/fw/htt_ppdu_stats.h
index a02e7ad..1f70b5a 100644
--- a/fw/htt_ppdu_stats.h
+++ b/fw/htt_ppdu_stats.h
@@ -714,13 +714,22 @@ typedef struct {
* of the BSS and is used to assist a receiving STA in
* identifying the BSS from which a PPDU originates.
* Value in the range 0 to 63
- * BIT [31 : 6] -reserved
+ * BIT [6 : 6] - PPDU transmitted using Non-SRG opportunity
+ * BIT [7 : 7] - PPDU transmitted using SRG opportunity
+ * BIT [15: 8] - RSSI of the aborted OBSS frame (in dB w.r.t. noise floor)
+ * by which SRG/Non-SRG based spatial reuse opportunity
+ * was created.
+ * BIT [31:16] - reserved
*/
union {
+ A_UINT32 reserved__aborted_obss_rssi__srg_tx__non_srg_tx___bss_color_id;
A_UINT32 reserved__bss_color_id;
struct {
- A_UINT32 bss_color_id: 6,
- reserved2: 26;
+ A_UINT32 bss_color_id: 6,
+ non_srg_tx: 1,
+ srg_tx: 1,
+ aborted_obss_rssi: 8,
+ reserved2: 16;
};
};
} htt_ppdu_stats_common_tlv;