summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspuligil <spuligil@codeaurora.org>2020-06-04 12:01:03 -0700
committerVictor Hsu <hsuvictor@google.com>2020-07-01 06:11:02 +0000
commitc728004775fae9bba6c0d876e4f7a0260ca84039 (patch)
treee17ed2d2f7b8cc34559624c9d86f405e5eabd6f2
parenta7bd3a02c7c31c7f1d516eb21c0d49b996cd80b1 (diff)
downloadwlan-fw-api-c728004775fae9bba6c0d876e4f7a0260ca84039.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 Signed-off-by: Victor Hsu <hsuvictor@google.com>
-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;