Bladeren bron

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
spuligil 4 jaren geleden
bovenliggende
commit
12d55ea492
1 gewijzigde bestanden met toevoegingen van 12 en 3 verwijderingen
  1. 12 3
      fw/htt_ppdu_stats.h

+ 12 - 3
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;