xref: /wlan-dirver/qca-wifi-host-cmn/dp/inc/cdp_txrx_stats_struct.h (revision 302a1d9701784af5f4797b1a9fe07ae820b51907)
1 /*
2  * Copyright (c) 2016-2018 The Linux Foundation. All rights reserved.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for
5  * any purpose with or without fee is hereby granted, provided that the
6  * above copyright notice and this permission notice appear in all
7  * copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /**
20  * @file cdp_txrx_stats_struct.h
21  * @brief Define the host data path stats API functions
22  * called by the host control SW and the OS interface module
23  */
24 #ifndef _CDP_TXRX_STATS_STRUCT_H_
25 #define _CDP_TXRX_STATS_STRUCT_H_
26 #ifndef CONFIG_WIN
27 #include <wlan_defs.h>
28 #endif
29 
30 #define TXRX_STATS_LEVEL_OFF   0
31 #define TXRX_STATS_LEVEL_BASIC 1
32 #define TXRX_STATS_LEVEL_FULL  2
33 
34 #define BSS_CHAN_INFO_READ                        1
35 #define BSS_CHAN_INFO_READ_AND_CLEAR              2
36 
37 #define TX_FRAME_TYPE_DATA 0
38 #define TX_FRAME_TYPE_MGMT 1
39 #define TX_FRAME_TYPE_BEACON 2
40 
41 #ifndef TXRX_STATS_LEVEL
42 #define TXRX_STATS_LEVEL TXRX_STATS_LEVEL_BASIC
43 #endif
44 
45 /* 1 additional MCS is for invalid values */
46 #define MAX_MCS (12 + 1)
47 #define MAX_MCS_11A 8
48 #define MAX_MCS_11B 7
49 #define MAX_MCS_11AC 12
50 /* 1 additional GI is for invalid values */
51 #define MAX_GI (4 + 1)
52 #define SS_COUNT 8
53 #define MAX_BW 7
54 #define MAX_RECEPTION_TYPES 4
55 
56 /* WME stream classes */
57 #define WME_AC_BE    0    /* best effort */
58 #define WME_AC_BK    1    /* background */
59 #define WME_AC_VI    2    /* video */
60 #define WME_AC_VO    3    /* voice */
61 #define WME_AC_MAX   4    /* MAX AC Value */
62 
63 #define CDP_MAX_RX_RINGS 4
64 
65 /* TID level VoW stats macros
66  * to add and get stats
67  */
68 #define PFLOW_TXRX_TIDQ_STATS_ADD(_peer, _tid, _var, _val) \
69 	(((_peer)->tidq_stats[_tid]).stats[_var]) += _val
70 #define PFLOW_TXRX_TIDQ_STATS_GET(_peer, _tid, _var, _val) \
71 	((_peer)->tidq_stats[_tid].stats[_var])
72 /*
73  * Video only stats
74  */
75 #define PFLOW_CTRL_PDEV_VIDEO_STATS_SET(_pdev, _var, _val) \
76 	(((_pdev)->vow.vistats[_var]).value) = _val
77 #define PFLOW_CTRL_PDEV_VIDEO_STATS_GET(_pdev, _var) \
78 	((_pdev)->vow.vistats[_var].value)
79 #define PFLOW_CTRL_PDEV_VIDEO_STATS_ADD(_pdev, _var, _val) \
80 	(((_pdev)->vow.vistats[_var]).value) += _val
81 /*
82  * video delay stats
83  */
84 #define PFLOW_CTRL_PDEV_DELAY_VIDEO_STATS_SET(_pdev, _var, _val) \
85 	(((_pdev)->vow.delaystats[_var]).value) = _val
86 #define PFLOW_CTRL_PDEV_DELAY_VIDEO_STATS_GET(_pdev, _var) \
87 	((_pdev)->vow.delaystats[_var].value)
88 #define PFLOW_CTRL_PDEV_DELAY_VIDEO_STATS_ADD(_pdev, _var, _val) \
89 	(((_pdev)->vow.delaystats[_var]).value) += _val
90 /*
91  * Number of TLVs sent by FW. Needs to reflect
92  * HTT_PPDU_STATS_MAX_TAG declared in FW
93  */
94 #define CDP_PPDU_STATS_MAX_TAG 14
95 
96 /* Different Packet Types */
97 enum cdp_packet_type {
98 	DOT11_A = 0,
99 	DOT11_B = 1,
100 	DOT11_N = 2,
101 	DOT11_AC = 3,
102 	DOT11_AX = 4,
103 	DOT11_MAX = 5,
104 };
105 
106 /* TID level Tx/Rx stats
107  *
108  */
109 enum cdp_txrx_tidq_stats {
110 	/* Tx Counters */
111 	TX_MSDU_TOTAL_LINUX_SUBSYSTEM,
112 	TX_MSDU_TOTAL_FROM_OSIF,
113 	TX_MSDU_TX_COMP_PKT_CNT,
114 	/* Rx Counters */
115 	RX_MSDU_TOTAL_FROM_FW,
116 	RX_MSDU_MCAST_FROM_FW,
117 	RX_TID_MISMATCH_FROM_FW,
118 	RX_MSDU_MISC_PKTS,
119 	RX_MSDU_IS_ARP,
120 	RX_MSDU_IS_EAP,
121 	RX_MSDU_IS_DHCP,
122 	RX_AGGREGATE_10,
123 	RX_AGGREGATE_20,
124 	RX_AGGREGATE_30,
125 	RX_AGGREGATE_40,
126 	RX_AGGREGATE_50,
127 	RX_AGGREGATE_60,
128 	RX_AGGREGATE_MORE,
129 	RX_AMSDU_1,
130 	RX_AMSDU_2,
131 	RX_AMSDU_3,
132 	RX_AMSDU_4,
133 	RX_AMSDU_MORE,
134 	RX_MSDU_CHAINED_FROM_FW,
135 	RX_MSDU_REORDER_FAILED_FROM_FW,
136 	RX_MSDU_REORDER_FLUSHED_FROM_FW,
137 	RX_MSDU_DISCARD_FROM_FW,
138 	RX_MSDU_DUPLICATE_FROM_FW,
139 	RX_MSDU_DELIVERED_TO_STACK,
140 	TIDQ_STATS_MAX,
141 };
142 
143 struct cdp_tidq_stats {
144 	uint32_t stats[TIDQ_STATS_MAX];
145 };
146 
147 /* struct cdp_pkt_info - packet info
148  * @num: no of packets
149  * @bytes: total no of bytes
150  */
151 struct cdp_pkt_info {
152 	uint32_t num;
153 	uint64_t bytes;
154 };
155 
156 /* struct cdp_pkt_type - packet type
157  * @mcs_count: Counter array for each MCS index
158  */
159 struct cdp_pkt_type {
160 	uint32_t mcs_count[MAX_MCS];
161 };
162 
163 /* struct cdp_tx_stats - tx stats
164  * @cdp_pkt_info comp_pkt: Pkt Info for which completions were received
165  * @cdp_pkt_info ucast: Unicast Packet Count
166  * @cdp_pkt_info mcast: Multicast Packet Count
167  * @cdp_pkt_info bcast: Broadcast Packet Count
168  * @cdp_pkt_info nawds_mcast: NAWDS  Multicast Packet Count
169  * @nawds_mcast_drop: NAWDS  Multicast Drop Count
170  * @cdp_pkt_info tx_success: Successful Tx Packets
171  * @tx_failed: Total Tx failure
172  * @ofdma: Total Packets as ofdma
173  * @stbc: Packets in STBC
174  * @ldpc: Packets in LDPC
175  * @retries: Packet retries
176  * @non_amsdu_cnt: Number of MSDUs with no MSDU level aggregation
177  * @amsdu_cnt: Number of MSDUs part of AMSDU
178  * @tx_rate: Tx Rate
179  * @last_tx_rate: Last tx rate for unicast packets
180  * @last_tx_rate_mcs: Tx rate mcs for unicast packets
181  * @mcast_last_tx_rate: Last tx rate for multicast packets
182  * @mcast_last_tx_rate_mcs: Last tx rate mcs for multicast
183  * @last_per: Tx Per
184  * @rnd_avg_tx_rate: Rounded average tx rate
185  * @avg_tx_rate: Average TX rate
186  * @last_ack_rssi: RSSI of last acked packet
187  * @tx_bytes_success_last: last Tx success bytes
188  * @tx_data_success_last: last Tx success data
189  * @tx_byte_rate: Bytes Trasmitted in last one sec
190  * @tx_data_rate: Data Transmitted in last one sec
191  * @sgi_count[MAX_GI]: SGI count
192  * @nss[SS_COUNT]: Packet count for different num_spatial_stream values
193  * @bw[MAX_BW]: Packet Count for different bandwidths
194  * @wme_ac_type[WME_AC_MAX]: Wireless Multimedia type Count
195  * @excess_retries_per_ac[WME_AC_MAX]: Wireless Multimedia type Count
196  * @fw_rem: Discarded by firmware
197  * @fw_rem_notx: firmware_discard_untransmitted
198  * @fw_rem_tx: firmware_discard_transmitted
199  * @age_out: aged out in mpdu/msdu queues
200  * @fw_reason1: discarded by firmware reason 1
201  * @fw_reason2: discarded by firmware reason 2
202  * @fw_reason3: discarded by firmware reason 3
203  * @mcs_count: MCS Count
204  * @dot11_tx_pkts: dot11 tx packets
205  * @an_tx_cnt: ald tx count
206  * @an_tx_rates_used: ald rx rate used
207  * @an_tx_bytes: ald tx bytes
208  * @ald_txcount: ald tx count
209  * @ald_lastper: ald last PER
210  * @ald_max4msframelen: ald max frame len
211  * @an_tx_ratecount: ald tx ratecount
212  * @ald_retries: ald retries
213  * @ald_ac_nobufs: #buffer overflows per node per AC
214  * @ald_ac_excretries: #pkts dropped after excessive retries per node per AC
215  * @rssi_chain: rssi chain
216  * @inactive_time: inactive time in secs
217  * @tx_ratecode: Tx rate code of last frame
218  * @tx_flags: tx flags
219  * @tx_power: Tx power latest
220  * @is_tx_no_ack: no ack received
221  * @is_tx_nodefkey: tx failed 'cuz no defkey
222  * @is_tx_noheadroom: tx failed 'cuz no space
223  * @is_crypto_enmicfail:
224  * @is_tx_nonode: tx failed for no node
225  * @is_tx_unknownmgt: tx of unknown mgt frame
226  * @is_tx_badcipher: tx failed 'cuz key type
227  * @ampdu_cnt: completion of aggregation
228  * @non_ampdu_cnt: tx completion not aggregated
229  */
230 struct cdp_tx_stats {
231 	struct cdp_pkt_info comp_pkt;
232 	struct cdp_pkt_info ucast;
233 	struct cdp_pkt_info mcast;
234 	struct cdp_pkt_info bcast;
235 	struct cdp_pkt_info nawds_mcast;
236 	uint32_t nawds_mcast_drop;
237 	struct cdp_pkt_info tx_success;
238 	uint32_t tx_failed;
239 	uint32_t ofdma;
240 	uint32_t stbc;
241 	uint32_t ldpc;
242 	uint32_t retries;
243 	uint32_t non_amsdu_cnt;
244 	uint32_t amsdu_cnt;
245 	uint32_t tx_rate;
246 	uint32_t last_tx_rate;
247 	uint32_t last_tx_rate_mcs;
248 	uint32_t mcast_last_tx_rate;
249 	uint32_t mcast_last_tx_rate_mcs;
250 	uint32_t last_per;
251 	uint32_t rnd_avg_tx_rate;
252 	uint32_t avg_tx_rate;
253 	uint32_t last_ack_rssi;
254 	uint32_t tx_bytes_success_last;
255 	uint32_t tx_data_success_last;
256 	uint32_t tx_byte_rate;
257 	uint32_t tx_data_rate;
258 	struct cdp_pkt_type pkt_type[DOT11_MAX];
259 	uint32_t sgi_count[MAX_GI];
260 
261 	uint32_t nss[SS_COUNT];
262 
263 	uint32_t bw[MAX_BW];
264 
265 	uint32_t wme_ac_type[WME_AC_MAX];
266 
267 	uint32_t excess_retries_per_ac[WME_AC_MAX];
268 
269 	struct {
270 		uint32_t fw_rem;
271 		uint32_t fw_rem_notx;
272 		uint32_t fw_rem_tx;
273 		uint32_t age_out;
274 		uint32_t fw_reason1;
275 		uint32_t fw_reason2;
276 		uint32_t fw_reason3;
277 	} dropped;
278 
279 	struct cdp_pkt_info dot11_tx_pkts;
280 
281 	uint32_t fw_tx_cnt;
282 	uint32_t fw_tx_rates_used;
283 	uint32_t fw_tx_bytes;
284 	uint32_t fw_txcount;
285 	uint32_t fw_max4msframelen;
286 	uint32_t fw_ratecount;
287 
288 	uint32_t ac_nobufs[WME_AC_MAX];
289 	uint32_t rssi_chain[WME_AC_MAX];
290 	uint32_t inactive_time;
291 
292 	uint32_t tx_ratecode;
293 	uint32_t tx_flags;
294 	uint32_t tx_power;
295 
296 	/* MSDUs which the target sent but couldn't get an ack for */
297 	struct cdp_pkt_info is_tx_no_ack;
298 
299 	/*add for peer and upadted from ppdu*/
300 	uint32_t ampdu_cnt;
301 	uint32_t non_ampdu_cnt;
302 };
303 
304 /* struct cdp_rx_stats - rx Level Stats
305  * @to_stack: Total packets sent up the stack
306  * @rcvd_reo[CDP_MAX_RX_RINGS]:  Packets received on the reo ring
307  * @unicast: Total unicast packets
308  * @multicast: Total multicast packets
309  * @bcast:  Broadcast Packet Count
310  * @raw: Raw Pakets received
311  * @nawds_mcast_drop: Total multicast packets
312  * @pkts: Intra BSS packets received
313  * @fail: Intra BSS packets failed
314  * @mic_err: Rx MIC errors CCMP
315  * @decrypt_err: Rx Decryption Errors CRC
316  * @fcserr: rx MIC check failed (CCMP)
317  * @wme_ac_type[WME_AC_MAX]: Wireless Multimedia type Count
318  * @reception_type[MAX_RECEPTION_TYPES]: Reception type os packets
319  * @mcs_count[MAX_MCS]: mcs count
320  * @sgi_count[MAX_GI]: sgi count
321  * @nss[SS_COUNT]: Packet count in spatiel Streams
322  * @bw[MAX_BW]:  Packet Count in different bandwidths
323  * @non_ampdu_cnt: Number of MSDUs with no MPDU level aggregation
324  * @ampdu_cnt: Number of MSDUs part of AMSPU
325  * @non_amsdu_cnt: Number of MSDUs with no MSDU level aggregation
326  * @amsdu_cnt: Number of MSDUs part of AMSDU
327  * @bar_recv_cnt: Number of bar received
328  * @rssi: RSSI of received signal
329  * @last_rssi: Previous rssi
330  * @rx_rate: Rx rate
331  * @last_rx_rate: Previous rx rate
332  * @rnd_avg_rx_rate: Rounded average rx rate
333  * @avg_rx_rate:  Average Rx rate
334  * @dot11_rx_pkts: dot11 rx packets
335  * @rx_bytes_last: last Rx success bytes
336  * @rx_data_last: last rx success data
337  * @rx_byte_rate: bytes received in last one sec
338  * @rx_data_rate: data received in last one sec
339  * @rx_retries: retries of packet in rx
340  * @rx_mpdus: mpdu in rx
341  * @rx_ppdus: ppdu in rx
342  * @is_rx_tooshort: tooshort
343  * @is_rx_decap: rx decap
344  * @rx_ccmpmic: rx MIC check failed (CCMP)
345  * @rx_tkipmic: rx MIC check failed (TKIP)
346  * @rx_tkipicv: rx ICV check failed (TKIP)
347  * @rx_wpimic: rx MIC check failed (WPI)
348  * @rx_wepfail: rx wep processing failed
349  * @rx_aggr: aggregation on rx
350  * @rx_discard: packets discard in rx
351  */
352 struct cdp_rx_stats {
353 	struct cdp_pkt_info to_stack;
354 	struct cdp_pkt_info rcvd_reo[CDP_MAX_RX_RINGS];
355 	struct cdp_pkt_info unicast;
356 	struct cdp_pkt_info multicast;
357 	struct cdp_pkt_info bcast;
358 	struct cdp_pkt_info raw;
359 	uint32_t nawds_mcast_drop;
360 	struct {
361 		struct cdp_pkt_info pkts;
362 		struct cdp_pkt_info fail;
363 	} intra_bss;
364 
365 	struct {
366 		uint32_t mic_err;
367 		uint32_t decrypt_err;
368 		uint32_t fcserr;
369 	} err;
370 
371 	uint32_t wme_ac_type[WME_AC_MAX];
372 	uint32_t reception_type[MAX_RECEPTION_TYPES];
373 	struct cdp_pkt_type pkt_type[DOT11_MAX];
374 	uint32_t sgi_count[MAX_GI];
375 	uint32_t nss[SS_COUNT];
376 	uint32_t bw[MAX_BW];
377 	uint32_t non_ampdu_cnt;
378 	uint32_t ampdu_cnt;
379 	uint32_t non_amsdu_cnt;
380 	uint32_t amsdu_cnt;
381 	uint32_t bar_recv_cnt;
382 	uint32_t rssi;
383 	uint32_t last_rssi;
384 	uint32_t rx_rate;
385 	uint32_t last_rx_rate;
386 	uint32_t rnd_avg_rx_rate;
387 	uint32_t avg_rx_rate;
388 	struct cdp_pkt_info  dot11_rx_pkts;
389 
390 	uint32_t rx_bytes_success_last;
391 	uint32_t rx_data_success_last;
392 	uint32_t rx_byte_rate;
393 	uint32_t rx_data_rate;
394 
395 	uint32_t rx_retries;
396 	uint32_t rx_mpdus;
397 	uint32_t rx_ppdus;
398 
399 	/*add for peer updated for ppdu*/
400 	uint32_t rx_aggr;
401 	uint32_t rx_discard;
402 };
403 
404 /* struct cdp_tx_ingress_stats - Tx ingress Stats
405  * @rcvd: Total packets received for transmission
406  * @processed: Tx packets processed
407  * @inspect_pkts: Total packets passed to inspect handler
408  * @nawds_mcast: NAWDS  Multicast Packet Count
409  * @bcast: Number of broadcast packets
410  * @raw_pkt: Total Raw packets
411  * @dma_map_error: DMA map error
412  * @num_seg: No of segments in TSO packets
413  * @tso_pkt:total no of TSO packets
414  * @non_tso_pkts: non - TSO packets
415  * @tso_desc_cnt: TSO descriptors
416  * @dropped_host: TSO packets dropped by host
417  * @dropped_target:TSO packets dropped by target
418  * @sg_pkt: Total scatter gather packets
419  * @non_sg_pkts: non SG packets
420  * @sg_desc_cnt: SG Descriptors
421  * @dropped_host: SG packets dropped by host
422  * @dropped_target: SG packets dropped by target
423  * @dma_map_error: Dma map error
424  * @mcast_pkt: total no of multicast conversion packets
425  * @dropped_map_error: packets dropped due to map error
426  * @dropped_self_mac: packets dropped due to self Mac address
427  * @dropped_send_fail: Packets dropped due to send fail
428  * @ucast: total unicast packets transmitted
429  * @fail_seg_alloc: Segment allocation failure
430  * @clone_fail: NBUF clone failure
431  * @dropped_pkt: Total scatter gather packets
432  * @desc_na: Desc Not Available
433  * @ring_full: ring full
434  * @enqueue_fail: hw enqueue fail
435  * @dma_error: dma fail
436  * @res_full: Resource Full: Congestion Control
437  * @exception_fw: packets sent to fw
438  * @completion_fw: packets completions received from fw
439  * @cce_classified:Number of packets classified by CCE
440  * @cce_classified_raw:Number of raw packets classified by CCE
441  */
442 struct cdp_tx_ingress_stats {
443 	struct cdp_pkt_info rcvd;
444 	struct cdp_pkt_info processed;
445 	struct cdp_pkt_info reinject_pkts;
446 	struct cdp_pkt_info inspect_pkts;
447 	struct cdp_pkt_info nawds_mcast;
448 	struct cdp_pkt_info bcast;
449 
450 	struct {
451 		struct cdp_pkt_info raw_pkt;
452 		uint32_t dma_map_error;
453 	} raw;
454 
455 	/* TSO packets info */
456 	struct {
457 		uint32_t num_seg;
458 		struct cdp_pkt_info tso_pkt;
459 		struct cdp_pkt_info non_tso_pkts;
460 		uint32_t tso_desc_cnt;
461 		struct cdp_pkt_info  dropped_host;
462 		uint32_t dropped_target;
463 	} tso;
464 
465 	/* Scatter Gather packet info */
466 	struct {
467 		struct cdp_pkt_info sg_pkt;
468 		struct cdp_pkt_info non_sg_pkts;
469 		uint32_t sg_desc_cnt;
470 		struct cdp_pkt_info  dropped_host;
471 		uint32_t dropped_target;
472 		uint32_t dma_map_error;
473 	} sg;
474 
475 	/* Multicast Enhancement packets info */
476 	struct {
477 		struct cdp_pkt_info mcast_pkt;
478 		uint32_t dropped_map_error;
479 		uint32_t dropped_self_mac;
480 		uint32_t dropped_send_fail;
481 		uint32_t ucast;
482 		uint32_t fail_seg_alloc;
483 		uint32_t clone_fail;
484 	} mcast_en;
485 
486 	/* Packets dropped on the Tx side */
487 	struct {
488 		struct cdp_pkt_info dropped_pkt;
489 		struct cdp_pkt_info  desc_na;
490 		uint32_t ring_full;
491 		uint32_t enqueue_fail;
492 		uint32_t dma_error;
493 		uint32_t res_full;
494 	} dropped;
495 
496 	/* Mesh packets info */
497 	struct {
498 		uint32_t exception_fw;
499 		uint32_t completion_fw;
500 	} mesh;
501 
502 	uint32_t cce_classified;
503 	uint32_t cce_classified_raw;
504 };
505 
506 /* struct cdp_vdev_stats - vdev stats structure
507  * @tx_i: ingress tx stats
508  * @tx: cdp tx stats
509  * @rx: cdp rx stats
510  */
511 struct cdp_vdev_stats {
512 	struct cdp_tx_ingress_stats tx_i;
513 	struct cdp_tx_stats tx;
514 	struct cdp_rx_stats rx;
515 };
516 
517 /* struct cdp_peer_stats - peer stats structure
518  * @tx: cdp tx stats
519  * @rx: cdp rx stats
520  */
521 struct cdp_peer_stats {
522 	/* CDP Tx Stats */
523 	struct cdp_tx_stats tx;
524 	/* CDP Rx Stats */
525 	struct cdp_rx_stats rx;
526 };
527 
528 /* struct cdp_interface_peer_stats - interface structure for txrx peer stats
529  * @peer_hdl: control path peer handle
530  * @last_peer_tx_rate: peer tx rate for last transmission
531  * @peer_tx_rate: tx rate for current transmission
532  * @peer_rssi: current rssi value of peer
533  * @rssi_changed: denotes rssi is changed
534  * @tx_packet_count: tx packet count
535  * @rx_packet_count: rx packet count
536  * @tx_byte_count: tx byte count
537  * @rx_byte_count: rx byte count
538  * @per: per error rate
539  */
540 struct cdp_interface_peer_stats {
541 	void  *peer_hdl;
542 	uint32_t last_peer_tx_rate;
543 	uint32_t peer_tx_rate;
544 	uint32_t  peer_rssi;
545 	uint32_t tx_packet_count;
546 	uint32_t rx_packet_count;
547 	uint32_t tx_byte_count;
548 	uint32_t rx_byte_count;
549 	uint32_t per;
550 	uint8_t  rssi_changed;
551 };
552 
553 /* Tx completions per interrupt */
554 struct cdp_hist_tx_comp {
555 	uint32_t pkts_1;
556 	uint32_t pkts_2_20;
557 	uint32_t pkts_21_40;
558 	uint32_t pkts_41_60;
559 	uint32_t pkts_61_80;
560 	uint32_t pkts_81_100;
561 	uint32_t pkts_101_200;
562 	uint32_t pkts_201_plus;
563 };
564 
565 /* Rx ring descriptors reaped per interrupt */
566 struct cdp_hist_rx_ind {
567 	uint32_t pkts_1;
568 	uint32_t pkts_2_20;
569 	uint32_t pkts_21_40;
570 	uint32_t pkts_41_60;
571 	uint32_t pkts_61_80;
572 	uint32_t pkts_81_100;
573 	uint32_t pkts_101_200;
574 	uint32_t pkts_201_plus;
575 };
576 
577 struct cdp_htt_tlv_hdr {
578 	/* BIT [11 :  0]   :- tag
579 	 * BIT [23 : 12]   :- length
580 	 * BIT [31 : 24]   :- reserved
581 	 */
582 	uint32_t tag__length;
583 };
584 
585 #define HTT_STATS_SUBTYPE_MAX     16
586 
587 struct cdp_htt_rx_pdev_fw_stats_tlv {
588     struct cdp_htt_tlv_hdr tlv_hdr;
589 
590     /* BIT [ 7 :  0]   :- mac_id
591      * BIT [31 :  8]   :- reserved
592      */
593     uint32_t mac_id__word;
594     /* Num PPDU status processed from HW */
595     uint32_t ppdu_recvd;
596     /* Num MPDU across PPDUs with FCS ok */
597     uint32_t mpdu_cnt_fcs_ok;
598     /* Num MPDU across PPDUs with FCS err */
599     uint32_t mpdu_cnt_fcs_err;
600     /* Num MSDU across PPDUs */
601     uint32_t tcp_msdu_cnt;
602     /* Num MSDU across PPDUs */
603     uint32_t tcp_ack_msdu_cnt;
604     /* Num MSDU across PPDUs */
605     uint32_t udp_msdu_cnt;
606     /* Num MSDU across PPDUs */
607     uint32_t other_msdu_cnt;
608     /* Num MPDU on FW ring indicated */
609     uint32_t fw_ring_mpdu_ind;
610     /* Num MGMT MPDU given to protocol */
611     uint32_t fw_ring_mgmt_subtype[HTT_STATS_SUBTYPE_MAX];
612     /* Num ctrl MPDU given to protocol */
613     uint32_t fw_ring_ctrl_subtype[HTT_STATS_SUBTYPE_MAX];
614     /* Num mcast data packet received */
615     uint32_t fw_ring_mcast_data_msdu;
616     /* Num broadcast data packet received */
617     uint32_t fw_ring_bcast_data_msdu;
618     /* Num unicat data packet received */
619     uint32_t fw_ring_ucast_data_msdu;
620     /* Num null data packet received  */
621     uint32_t fw_ring_null_data_msdu;
622     /* Num MPDU on FW ring dropped */
623     uint32_t fw_ring_mpdu_drop;
624 
625     /* Num buf indication to offload */
626     uint32_t ofld_local_data_ind_cnt;
627     /* Num buf recycle from offload */
628     uint32_t ofld_local_data_buf_recycle_cnt;
629     /* Num buf indication to data_rx */
630     uint32_t drx_local_data_ind_cnt;
631     /* Num buf recycle from data_rx */
632     uint32_t drx_local_data_buf_recycle_cnt;
633     /* Num buf indication to protocol */
634     uint32_t local_nondata_ind_cnt;
635     /* Num buf recycle from protocol */
636     uint32_t local_nondata_buf_recycle_cnt;
637 
638     /* Num buf fed */
639     uint32_t fw_status_buf_ring_refill_cnt;
640     /* Num ring empty encountered */
641     uint32_t fw_status_buf_ring_empty_cnt;
642     /* Num buf fed  */
643     uint32_t fw_pkt_buf_ring_refill_cnt;
644     /* Num ring empty encountered */
645     uint32_t fw_pkt_buf_ring_empty_cnt;
646     /* Num buf fed  */
647     uint32_t fw_link_buf_ring_refill_cnt;
648     /* Num ring empty encountered  */
649     uint32_t fw_link_buf_ring_empty_cnt;
650 
651     /* Num buf fed */
652     uint32_t host_pkt_buf_ring_refill_cnt;
653     /* Num ring empty encountered */
654     uint32_t host_pkt_buf_ring_empty_cnt;
655     /* Num buf fed */
656     uint32_t mon_pkt_buf_ring_refill_cnt;
657     /* Num ring empty encountered */
658     uint32_t mon_pkt_buf_ring_empty_cnt;
659     /* Num buf fed */
660     uint32_t mon_status_buf_ring_refill_cnt;
661     /* Num ring empty encountered */
662     uint32_t mon_status_buf_ring_empty_cnt;
663     /* Num buf fed */
664     uint32_t mon_desc_buf_ring_refill_cnt;
665     /* Num ring empty encountered */
666     uint32_t mon_desc_buf_ring_empty_cnt;
667     /* Num buf fed */
668     uint32_t mon_dest_ring_update_cnt;
669     /* Num ring full encountered */
670     uint32_t mon_dest_ring_full_cnt;
671 
672     /* Num rx suspend is attempted */
673     uint32_t rx_suspend_cnt;
674     /* Num rx suspend failed */
675     uint32_t rx_suspend_fail_cnt;
676     /* Num rx resume attempted */
677     uint32_t rx_resume_cnt;
678     /* Num rx resume failed */
679     uint32_t rx_resume_fail_cnt;
680     /* Num rx ring switch */
681     uint32_t rx_ring_switch_cnt;
682     /* Num rx ring restore */
683     uint32_t rx_ring_restore_cnt;
684     /* Num rx flush issued */
685     uint32_t rx_flush_cnt;
686 };
687 
688 /* == TX PDEV STATS == */
689 struct cdp_htt_tx_pdev_stats_cmn_tlv {
690     struct cdp_htt_tlv_hdr tlv_hdr;
691 
692     /* BIT [ 7 :  0]   :- mac_id
693      * BIT [31 :  8]   :- reserved
694      */
695     uint32_t mac_id__word;
696     /* Num queued to HW */
697     uint32_t hw_queued;
698     /* Num PPDU reaped from HW */
699     uint32_t hw_reaped;
700     /* Num underruns */
701     uint32_t underrun;
702     /* Num HW Paused counter. */
703     uint32_t hw_paused;
704     /* Num HW flush counter. */
705     uint32_t hw_flush;
706     /* Num HW filtered counter. */
707     uint32_t hw_filt;
708     /* Num PPDUs cleaned up in TX abort */
709     uint32_t tx_abort;
710     /* Num MPDUs requed by SW */
711     uint32_t mpdu_requed;
712     /* excessive retries */
713     uint32_t tx_xretry;
714     /* Last used data hw rate code */
715     uint32_t data_rc;
716     /* frames dropped due to excessive sw retries */
717     uint32_t mpdu_dropped_xretry;
718     /* illegal rate phy errors  */
719     uint32_t illgl_rate_phy_err;
720     /* wal pdev continuous xretry */
721     uint32_t cont_xretry;
722     /* wal pdev continuous xretry */
723     uint32_t tx_timeout;
724     /* wal pdev resets  */
725     uint32_t pdev_resets;
726     /* PhY/BB underrun */
727     uint32_t phy_underrun;
728     /* MPDU is more than txop limit */
729     uint32_t txop_ovf;
730     /* Number of Sequences posted */
731     uint32_t seq_posted;
732     /* Number of Sequences failed queueing */
733     uint32_t seq_failed_queueing;
734     /* Number of Sequences completed */
735     uint32_t seq_completed;
736     /* Number of Sequences restarted */
737     uint32_t seq_restarted;
738     /* Number of MU Sequences posted */
739     uint32_t mu_seq_posted;
740     /* Number of time HW ring is paused between seq switch within ISR */
741     uint32_t seq_switch_hw_paused;
742     /* Number of times seq continuation in DSR */
743     uint32_t next_seq_posted_dsr;
744     /* Number of times seq continuation in ISR */
745     uint32_t seq_posted_isr;
746     /* Number of seq_ctrl cached. */
747     uint32_t seq_ctrl_cached;
748     /* Number of MPDUs successfully transmitted */
749     uint32_t mpdu_count_tqm;
750     /* Number of MSDUs successfully transmitted */
751     uint32_t msdu_count_tqm;
752     /* Number of MPDUs dropped */
753     uint32_t mpdu_removed_tqm;
754     /* Number of MSDUs dropped */
755     uint32_t msdu_removed_tqm;
756     /* Num MPDUs flushed by SW, HWPAUSED, SW TXABORT (Reset,channel change) */
757     uint32_t mpdus_sw_flush;
758     /* Num MPDUs filtered by HW, all filter condition (TTL expired) */
759     uint32_t mpdus_hw_filter;
760     /* Num MPDUs truncated by PDG (TXOP, TBTT, PPDU_duration based on rate, dyn_bw) */
761     uint32_t mpdus_truncated;
762     /* Num MPDUs that was tried but didn't receive ACK or BA */
763     uint32_t mpdus_ack_failed;
764     /* Num MPDUs that was dropped due to expiry (MSDU TTL). */
765     uint32_t mpdus_expired;
766     /* Num MPDUs that was retried within seq_ctrl (MGMT/LEGACY) */
767     uint32_t mpdus_seq_hw_retry;
768     /* Num of TQM acked cmds processed */
769     uint32_t ack_tlv_proc;
770     /* coex_abort_mpdu_cnt valid. */
771     uint32_t coex_abort_mpdu_cnt_valid;
772     /* coex_abort_mpdu_cnt from TX FES stats. */
773     uint32_t coex_abort_mpdu_cnt;
774     /* Number of total PPDUs(DATA, MGMT, excludes selfgen) tried over the air (OTA) */
775     uint32_t num_total_ppdus_tried_ota;
776     /* Number of data PPDUs tried over the air (OTA) */
777     uint32_t num_data_ppdus_tried_ota;
778     /* Num Local control/mgmt frames (MSDUs) queued */
779     uint32_t local_ctrl_mgmt_enqued;
780     /* local_ctrl_mgmt_freed:
781      * Num Local control/mgmt frames (MSDUs) done
782      * It includes all local ctrl/mgmt completions
783      * (acked, no ack, flush, TTL, etc)
784      */
785     uint32_t local_ctrl_mgmt_freed;
786     /* Num Local data frames (MSDUs) queued */
787     uint32_t local_data_enqued;
788     /* local_data_freed:
789      * Num Local data frames (MSDUs) done
790      * It includes all local data completions
791      * (acked, no ack, flush, TTL, etc)
792      */
793     uint32_t local_data_freed;
794 };
795 
796 struct cdp_htt_tx_pdev_stats_urrn_tlv_v {
797     struct cdp_htt_tlv_hdr tlv_hdr;
798     uint32_t urrn_stats[1]; /* HTT_TX_PDEV_MAX_URRN_STATS */
799 };
800 
801 /* NOTE: Variable length TLV, use length spec to infer array size */
802 struct cdp_htt_tx_pdev_stats_flush_tlv_v {
803     struct cdp_htt_tlv_hdr tlv_hdr;
804     uint32_t flush_errs[1]; /* HTT_TX_PDEV_MAX_FLUSH_REASON_STATS */
805 };
806 
807 /* NOTE: Variable length TLV, use length spec to infer array size */
808 struct cdp_htt_tx_pdev_stats_sifs_tlv_v {
809     struct cdp_htt_tlv_hdr tlv_hdr;
810     uint32_t sifs_status[1]; /* HTT_TX_PDEV_MAX_SIFS_BURST_STATS */
811 };
812 
813 /* NOTE: Variable length TLV, use length spec to infer array size */
814 struct cdp_htt_tx_pdev_stats_phy_err_tlv_v {
815     struct cdp_htt_tlv_hdr tlv_hdr;
816     uint32_t  phy_errs[1]; /* HTT_TX_PDEV_MAX_PHY_ERR_STATS */
817 };
818 
819 /* == RX PDEV/SOC STATS == */
820 /* HTT_STATS_RX_SOC_FW_STATS_TAG */
821 struct cdp_htt_rx_soc_fw_stats_tlv {
822     struct cdp_htt_tlv_hdr tlv_hdr;
823     /* Num Packets received on REO FW ring */
824     uint32_t fw_reo_ring_data_msdu;
825     /* Num bc/mc packets indicated from fw to host */
826     uint32_t fw_to_host_data_msdu_bcmc;
827     /* Num unicast packets indicated from fw to host */
828     uint32_t fw_to_host_data_msdu_uc;
829     /* Num remote buf recycle from offload  */
830     uint32_t ofld_remote_data_buf_recycle_cnt;
831     /* Num remote free buf given to offload */
832     uint32_t ofld_remote_free_buf_indication_cnt;
833 };
834 
835 struct cdp_htt_rx_soc_fw_refill_ring_num_refill_tlv_v {
836     struct cdp_htt_tlv_hdr tlv_hdr;
837     /* Num total buf refilled from refill ring */
838     uint32_t refill_ring_num_refill[1]; /* HTT_RX_STATS_REFILL_MAX_RING */
839 };
840 
841 struct cdp_htt_rx_pdev_fw_ring_mpdu_err_tlv_v {
842     struct cdp_htt_tlv_hdr tlv_hdr;
843     /* Num error MPDU for each RxDMA error type  */
844     uint32_t fw_ring_mpdu_err[1]; /* HTT_RX_STATS_RXDMA_MAX_ERR */
845 };
846 
847 struct cdp_htt_rx_pdev_fw_mpdu_drop_tlv_v {
848     struct cdp_htt_tlv_hdr tlv_hdr;
849     /* Num MPDU dropped  */
850     uint32_t fw_mpdu_drop[1]; /* HTT_RX_STATS_FW_DROP_REASON_MAX */
851 };
852 
853 #define HTT_STATS_PHY_ERR_MAX 43
854 
855 struct cdp_htt_rx_pdev_fw_stats_phy_err_tlv {
856     struct cdp_htt_tlv_hdr tlv_hdr;
857 
858     /* BIT [ 7 :  0]   :- mac_id
859      * BIT [31 :  8]   :- reserved
860      */
861     uint32_t mac_id__word;
862     /* Num of phy err */
863     uint32_t total_phy_err_cnt;
864     /* Counts of different types of phy errs
865      * The mapping of PHY error types to phy_err array elements is HW dependent.
866      * The only currently-supported mapping is shown below:
867      *
868      * 0 phyrx_err_phy_off Reception aborted due to receiving a PHY_OFF TLV
869      * 1 phyrx_err_synth_off
870      * 2 phyrx_err_ofdma_timing
871      * 3 phyrx_err_ofdma_signal_parity
872      * 4 phyrx_err_ofdma_rate_illegal
873      * 5 phyrx_err_ofdma_length_illegal
874      * 6 phyrx_err_ofdma_restart
875      * 7 phyrx_err_ofdma_service
876      * 8 phyrx_err_ppdu_ofdma_power_drop
877      * 9 phyrx_err_cck_blokker
878      * 10 phyrx_err_cck_timing
879      * 11 phyrx_err_cck_header_crc
880      * 12 phyrx_err_cck_rate_illegal
881      * 13 phyrx_err_cck_length_illegal
882      * 14 phyrx_err_cck_restart
883      * 15 phyrx_err_cck_service
884      * 16 phyrx_err_cck_power_drop
885      * 17 phyrx_err_ht_crc_err
886      * 18 phyrx_err_ht_length_illegal
887      * 19 phyrx_err_ht_rate_illegal
888      * 20 phyrx_err_ht_zlf
889      * 21 phyrx_err_false_radar_ext
890      * 22 phyrx_err_green_field
891      * 23 phyrx_err_bw_gt_dyn_bw
892      * 24 phyrx_err_leg_ht_mismatch
893      * 25 phyrx_err_vht_crc_error
894      * 26 phyrx_err_vht_siga_unsupported
895      * 27 phyrx_err_vht_lsig_len_invalid
896      * 28 phyrx_err_vht_ndp_or_zlf
897      * 29 phyrx_err_vht_nsym_lt_zero
898      * 30 phyrx_err_vht_rx_extra_symbol_mismatch
899      * 31 phyrx_err_vht_rx_skip_group_id0
900      * 32 phyrx_err_vht_rx_skip_group_id1to62
901      * 33 phyrx_err_vht_rx_skip_group_id63
902      * 34 phyrx_err_ofdm_ldpc_decoder_disabled
903      * 35 phyrx_err_defer_nap
904      * 36 phyrx_err_fdomain_timeout
905      * 37 phyrx_err_lsig_rel_check
906      * 38 phyrx_err_bt_collision
907      * 39 phyrx_err_unsupported_mu_feedback
908      * 40 phyrx_err_ppdu_tx_interrupt_rx
909      * 41 phyrx_err_unsupported_cbf
910      * 42 phyrx_err_other
911      */
912     uint32_t phy_err[HTT_STATS_PHY_ERR_MAX];
913 };
914 
915 struct cdp_htt_rx_soc_fw_refill_ring_empty_tlv_v {
916     struct cdp_htt_tlv_hdr tlv_hdr;
917     /* Num ring empty encountered */
918     uint32_t refill_ring_empty_cnt[1]; /* HTT_RX_STATS_REFILL_MAX_RING */
919 };
920 
921 struct cdp_htt_tx_pdev_stats {
922     struct cdp_htt_tx_pdev_stats_cmn_tlv cmn_tlv;
923     struct cdp_htt_tx_pdev_stats_urrn_tlv_v underrun_tlv;
924     struct cdp_htt_tx_pdev_stats_sifs_tlv_v sifs_tlv;
925     struct cdp_htt_tx_pdev_stats_flush_tlv_v flush_tlv;
926     struct cdp_htt_tx_pdev_stats_phy_err_tlv_v phy_err_tlv;
927 };
928 
929 struct cdp_htt_rx_soc_stats_t {
930     struct cdp_htt_rx_soc_fw_stats_tlv fw_tlv;
931     struct cdp_htt_rx_soc_fw_refill_ring_empty_tlv_v fw_refill_ring_empty_tlv;
932     struct cdp_htt_rx_soc_fw_refill_ring_num_refill_tlv_v fw_refill_ring_num_refill_tlv;
933 };
934 
935 struct cdp_htt_rx_pdev_stats {
936     struct cdp_htt_rx_soc_stats_t soc_stats;
937     struct cdp_htt_rx_pdev_fw_stats_tlv fw_stats_tlv;
938     struct cdp_htt_rx_pdev_fw_ring_mpdu_err_tlv_v fw_ring_mpdu_err_tlv;
939     struct cdp_htt_rx_pdev_fw_mpdu_drop_tlv_v fw_ring_mpdu_drop;
940     struct cdp_htt_rx_pdev_fw_stats_phy_err_tlv fw_stats_phy_err_tlv;
941 };
942 
943 /* struct cdp_pdev_stats - pdev stats
944  * @msdu_not_done: packets dropped because msdu done bit not set
945  * @mec:Multicast Echo check
946  * @mesh_filter: Mesh Filtered packets
947  * @mon_rx_drop: packets dropped on monitor vap
948  * @pkts: total packets replenished
949  * @rxdma_err: rxdma errors for replenished
950  * @nbuf_alloc_fail: nbuf alloc failed
951  * @map_err: Mapping failure
952  * @x86_fail: x86 failures
953  * @low_thresh_intrs: low threshold interrupts
954  * @rx_raw_pkts: Rx Raw Packets
955  * @mesh_mem_alloc: Mesh Rx Stats Alloc fail
956  * @desc_alloc_fail: desc alloc failed errors
957  * @ip_csum_err: ip checksum errors
958  * @tcp_udp_csum_err: tcp/udp checksum errors
959  * @buf_freelist: buffers added back in freelist
960  * @tx_i: Tx Ingress stats
961  * @tx:CDP Tx Stats
962  * @rx: CDP Rx Stats
963  * @tx_comp_histogram: Number of Tx completions per interrupt
964  * @rx_ind_histogram:  Number of Rx ring descriptors reaped per interrupt
965  * @ppdu_stats_counter: ppdu stats counter
966  * @htt_tx_pdev_stats: htt pdev stats for tx
967  * @htt_rx_pdev_stats: htt pdev stats for rx
968  */
969 struct cdp_pdev_stats {
970 	struct {
971 		uint32_t msdu_not_done;
972 		uint32_t mec;
973 		uint32_t mesh_filter;
974 		uint32_t mon_rx_drop;
975 	} dropped;
976 
977 	struct {
978 		struct cdp_pkt_info pkts;
979 		uint32_t rxdma_err;
980 		uint32_t nbuf_alloc_fail;
981 		uint32_t map_err;
982 		uint32_t x86_fail;
983 		uint32_t low_thresh_intrs;
984 	} replenish;
985 
986 	uint32_t rx_raw_pkts;
987 	uint32_t mesh_mem_alloc;
988 
989 	/* Rx errors */
990 	struct {
991 		uint32_t desc_alloc_fail;
992 		uint32_t ip_csum_err;
993 		uint32_t tcp_udp_csum_err;
994 	} err;
995 
996 	uint32_t buf_freelist;
997 	struct cdp_tx_ingress_stats tx_i;
998 	struct cdp_tx_stats tx;
999 	struct cdp_rx_stats rx;
1000 	struct cdp_hist_tx_comp tx_comp_histogram;
1001 	struct cdp_hist_rx_ind rx_ind_histogram;
1002 	uint64_t ppdu_stats_counter[CDP_PPDU_STATS_MAX_TAG];
1003 
1004 	struct cdp_htt_tx_pdev_stats  htt_tx_pdev_stats;
1005 	struct cdp_htt_rx_pdev_stats  htt_rx_pdev_stats;
1006 };
1007 
1008 #ifndef BIG_ENDIAN_HOST
1009 typedef struct {
1010 	uint64_t pkts;
1011 	uint64_t bytes;
1012 } ol_txrx_stats_elem;
1013 #else
1014 struct ol_txrx_elem_t {
1015 	uint64_t pkts;
1016 	uint64_t bytes;
1017 };
1018 typedef struct ol_txrx_elem_t ol_txrx_stats_elem;
1019 #endif
1020 
1021 #ifndef CONFIG_MCL
1022 /**
1023  * @brief data stats published by the host txrx layer
1024  */
1025 struct ol_txrx_stats {
1026 	struct {
1027 		/* MSDUs received from the stack */
1028 		ol_txrx_stats_elem from_stack;
1029 		/* MSDUs successfully sent across the WLAN */
1030 		ol_txrx_stats_elem delivered;
1031 		struct {
1032 			/* MSDUs that the host did not accept */
1033 			ol_txrx_stats_elem host_reject;
1034 			/* MSDUs which could not be downloaded to the target */
1035 			ol_txrx_stats_elem download_fail;
1036 			/*
1037 			 * MSDUs which the target discarded
1038 			 * (lack of mem or old age)
1039 			 */
1040 			ol_txrx_stats_elem target_discard;
1041 			/*
1042 			 * MSDUs which the target sent but couldn't get
1043 			 * an ack for
1044 			 */
1045 			ol_txrx_stats_elem no_ack;
1046 			/* MSDUs dropped in NSS-FW */
1047 			ol_txrx_stats_elem nss_ol_dropped;
1048 		} dropped;
1049 		u_int32_t desc_in_use;
1050 		u_int32_t desc_alloc_fails;
1051 		u_int32_t ce_ring_full;
1052 		u_int32_t dma_map_error;
1053 		/* MSDUs given to the txrx layer by the management stack */
1054 		ol_txrx_stats_elem mgmt;
1055 		struct {
1056 			/* TSO applied jumbo packets received from NW Stack */
1057 			ol_txrx_stats_elem tso_pkts;
1058 			/* Non - TSO packets */
1059 			ol_txrx_stats_elem non_tso_pkts;
1060 			/* TSO packets : Dropped during TCP segmentation*/
1061 			ol_txrx_stats_elem tso_dropped;
1062 			/* TSO Descriptors */
1063 			u_int32_t tso_desc_cnt;
1064 		} tso;
1065 
1066 		struct {
1067 			/* TSO applied jumbo packets received from NW Stack */
1068 			ol_txrx_stats_elem sg_pkts;
1069 			/* Non - TSO packets */
1070 			ol_txrx_stats_elem non_sg_pkts;
1071 			/* TSO packets : Dropped during TCP segmentation*/
1072 			ol_txrx_stats_elem sg_dropped;
1073 			/* TSO Descriptors */
1074 			u_int32_t sg_desc_cnt;
1075 		} sg;
1076 		struct {
1077 			/* packets enqueued for flow control */
1078 			u_int32_t fl_ctrl_enqueue;
1079 			/* packets discarded for flow control is full */
1080 			u_int32_t fl_ctrl_discard;
1081 			/* packets sent to CE without flow control */
1082 			u_int32_t fl_ctrl_avoid;
1083 		} fl_ctrl;
1084 	} tx;
1085 	struct {
1086 		/* MSDUs given to the OS shim */
1087 		ol_txrx_stats_elem delivered;
1088 		/* MSDUs forwarded from the rx path to the tx path */
1089 		ol_txrx_stats_elem forwarded;
1090 		/* MSDUs in which ipv4 chksum error detected by HW */
1091 		ol_txrx_stats_elem ipv4_cksum_err;
1092 		/* MSDUs in which tcp chksum error detected by HW */
1093 		ol_txrx_stats_elem tcp_ipv4_cksum_err;
1094 		/* MSDUs in which udp chksum error detected by HW */
1095 		ol_txrx_stats_elem udp_ipv4_cksum_err;
1096 		/* MSDUs in which tcp V6 chksum error detected by HW */
1097 		ol_txrx_stats_elem tcp_ipv6_cksum_err;
1098 		/* MSDUs in which UDP V6 chksum error detected by HW */
1099 		ol_txrx_stats_elem udp_ipv6_cksum_err;
1100 	} rx;
1101 	struct {
1102 		/* Number of mcast received for conversion */
1103 		u_int32_t num_me_rcvd;
1104 		/* Number of unicast sent as part of mcast conversion */
1105 		u_int32_t num_me_ucast;
1106 		/* Number of multicast frames dropped due to dma_map failure */
1107 		u_int32_t num_me_dropped_m;
1108 		/*
1109 		 * Number of multicast frames dropped due to allocation
1110 		 * failure
1111 		 */
1112 		u_int32_t num_me_dropped_a;
1113 		/* Number of multicast frames dropped due to internal failure */
1114 		u_int32_t num_me_dropped_i;
1115 		/* Number of me buf currently in use */
1116 		u_int32_t num_me_buf;
1117 		/* Number of me buf frames to self mac address  */
1118 		u_int32_t num_me_dropped_s;
1119 		/* Number of me buf in use in non pool based allocation*/
1120 		u_int32_t num_me_nonpool;
1121 		/* Number of me buf allocated using non pool based allocation*/
1122 		u_int32_t num_me_nonpool_count;
1123 	} mcast_enhance;
1124 };
1125 
1126 struct ol_ath_dbg_rx_rssi {
1127 	uint8_t     rx_rssi_pri20;
1128 	uint8_t     rx_rssi_sec20;
1129 	uint8_t     rx_rssi_sec40;
1130 	uint8_t     rx_rssi_sec80;
1131 };
1132 
1133 struct ol_ath_radiostats {
1134 	uint64_t    tx_beacon;
1135 	uint32_t    tx_buf_count;
1136 	int32_t     tx_mgmt;
1137 	int32_t     rx_mgmt;
1138 	uint32_t    rx_num_mgmt;
1139 	uint32_t    rx_num_ctl;
1140 	uint32_t    tx_rssi;
1141 	uint32_t    rx_rssi_comb;
1142 	struct      ol_ath_dbg_rx_rssi rx_rssi_chain0;
1143 	struct      ol_ath_dbg_rx_rssi rx_rssi_chain1;
1144 	struct      ol_ath_dbg_rx_rssi rx_rssi_chain2;
1145 	struct      ol_ath_dbg_rx_rssi rx_rssi_chain3;
1146 	uint32_t    rx_overrun;
1147 	uint32_t    rx_phyerr;
1148 	uint32_t    ackRcvBad;
1149 	uint32_t    rtsBad;
1150 	uint32_t    rtsGood;
1151 	uint32_t    fcsBad;
1152 	uint32_t    noBeacons;
1153 	uint32_t    mib_int_count;
1154 	uint32_t    rx_looplimit_start;
1155 	uint32_t    rx_looplimit_end;
1156 	uint8_t     ap_stats_tx_cal_enable;
1157 	uint8_t     self_bss_util;
1158 	uint8_t     obss_util;
1159 	uint8_t     ap_rx_util;
1160 	uint8_t     free_medium;
1161 	uint8_t     ap_tx_util;
1162 	uint8_t     obss_rx_util;
1163 	uint8_t     non_wifi_util;
1164 	uint32_t    tgt_asserts;
1165 	int16_t     chan_nf;
1166 	int16_t     chan_nf_sec80;
1167 	uint64_t    wmi_tx_mgmt;
1168 	uint64_t    wmi_tx_mgmt_completions;
1169 	uint32_t    wmi_tx_mgmt_completion_err;
1170 	uint32_t    peer_delete_req;
1171 	uint32_t    peer_delete_resp;
1172 	uint32_t    rx_mgmt_rssi_drop;
1173 	uint32_t    tx_frame_count;
1174 	uint32_t    rx_frame_count;
1175 	uint32_t    rx_clear_count;
1176 	uint32_t    cycle_count;
1177 	uint32_t    phy_err_count;
1178 	uint32_t    chan_tx_pwr;
1179 	uint32_t    be_nobuf;
1180 	uint32_t    tx_packets;
1181 	uint32_t    rx_packets;
1182 	uint32_t    tx_num_data;
1183 	uint32_t    rx_num_data;
1184 	uint32_t    tx_mcs[10];
1185 	uint32_t    rx_mcs[10];
1186 	uint64_t    rx_bytes;
1187 	uint64_t    tx_bytes;
1188 	uint32_t    tx_compaggr;
1189 	uint32_t    rx_aggr;
1190 	uint32_t    tx_bawadv;
1191 	uint32_t    tx_compunaggr;
1192 	uint32_t    rx_badcrypt;
1193 	uint32_t    rx_badmic;
1194 	uint32_t    rx_crcerr;
1195 	uint32_t    rx_last_msdu_unset_cnt;
1196 	uint32_t    rx_data_bytes;
1197 	uint32_t    tx_retries;
1198 };
1199 
1200 /*
1201  * Enumeration of PDEV Configuration parameter
1202  */
1203 enum _ol_ath_param_t {
1204 	OL_ATH_PARAM_TXCHAINMASK               = 1,
1205 	OL_ATH_PARAM_RXCHAINMASK               = 2,
1206 	OL_ATH_PARAM_AMPDU                     = 6,
1207 	OL_ATH_PARAM_AMPDU_LIMIT               = 7,
1208 	OL_ATH_PARAM_AMPDU_SUBFRAMES           = 8,
1209 	OL_ATH_PARAM_TXPOWER_LIMIT2G           = 12,
1210 	OL_ATH_PARAM_TXPOWER_LIMIT5G           = 13,
1211 	OL_ATH_PARAM_LDPC                      = 32,
1212 	OL_ATH_PARAM_VOW_EXT_STATS             = 45,
1213 	OL_ATH_PARAM_DYN_TX_CHAINMASK          = 73,
1214 	OL_ATH_PARAM_BURST_ENABLE              = 77,
1215 	OL_ATH_PARAM_BURST_DUR                 = 78,
1216 	OL_ATH_PARAM_BCN_BURST                 = 80,
1217 	OL_ATH_PARAM_DCS                       = 82,
1218 #if UMAC_SUPPORT_PERIODIC_PERFSTATS
1219 	OL_ATH_PARAM_PRDPERFSTAT_THRPUT_ENAB   = 83,
1220 	OL_ATH_PARAM_PRDPERFSTAT_THRPUT_WIN    = 84,
1221 	OL_ATH_PARAM_PRDPERFSTAT_THRPUT        = 85,
1222 	OL_ATH_PARAM_PRDPERFSTAT_PER_ENAB      = 86,
1223 	OL_ATH_PARAM_PRDPERFSTAT_PER_WIN       = 87,
1224 	OL_ATH_PARAM_PRDPERFSTAT_PER           = 88,
1225 #endif
1226 	/* UMAC_SUPPORT_PERIODIC_PERFSTATS */
1227 	OL_ATH_PARAM_TOTAL_PER                 = 89,
1228 	/* set manual rate for rts frame */
1229 	OL_ATH_PARAM_RTS_CTS_RATE              = 92,
1230 	/* co channel interference threshold level */
1231 	OL_ATH_PARAM_DCS_COCH_THR              = 93,
1232 	/* transmit error threshold */
1233 	OL_ATH_PARAM_DCS_TXERR_THR             = 94,
1234 	/* phy error threshold */
1235 	OL_ATH_PARAM_DCS_PHYERR_THR            = 95,
1236 	/*
1237 	 * The IOCTL number is 114, it is made 114, inorder to make the IOCTL
1238 	 * number same as Direct-attach IOCTL.
1239 	 * Please, don't change number. This IOCTL gets the Interface code path
1240 	 * it should be either DIRECT-ATTACH or OFF-LOAD.
1241 	 */
1242 	OL_ATH_PARAM_GET_IF_ID                 = 114,
1243 	/* Enable Acs back Ground Channel selection Scan timer in AP mode*/
1244 	OL_ATH_PARAM_ACS_ENABLE_BK_SCANTIMEREN = 118,
1245 	 /* ACS scan timer value in Seconds */
1246 	OL_ATH_PARAM_ACS_SCANTIME              = 119,
1247 	 /* Negligence Delta RSSI between two channel */
1248 	OL_ATH_PARAM_ACS_RSSIVAR               = 120,
1249 	 /* Negligence Delta Channel load between two channel*/
1250 	OL_ATH_PARAM_ACS_CHLOADVAR             = 121,
1251 	  /* Enable Limited OBSS check */
1252 	OL_ATH_PARAM_ACS_LIMITEDOBSS           = 122,
1253 	/* Acs control flag for Scan timer */
1254 	OL_ATH_PARAM_ACS_CTRLFLAG              = 123,
1255 	 /* Acs Run time Debug level*/
1256 	OL_ATH_PARAM_ACS_DEBUGTRACE            = 124,
1257 	OL_ATH_PARAM_SET_FW_HANG_ID            = 137,
1258 	 /* Radio type 1:11ac 0:11abgn */
1259 	OL_ATH_PARAM_RADIO_TYPE                = 138,
1260 	OL_ATH_PARAM_IGMPMLD_OVERRIDE, /* IGMP/MLD packet override */
1261 	OL_ATH_PARAM_IGMPMLD_TID, /* IGMP/MLD packet TID no */
1262 	OL_ATH_PARAM_ARPDHCP_AC_OVERRIDE,
1263 	OL_ATH_PARAM_NON_AGG_SW_RETRY_TH,
1264 	OL_ATH_PARAM_AGG_SW_RETRY_TH,
1265 	/* Dont change this number it as per sync with DA
1266 	     Blocking certian channel from ic channel list */
1267 	OL_ATH_PARAM_DISABLE_DFS   = 144,
1268 	OL_ATH_PARAM_ENABLE_AMSDU  = 145,
1269 	OL_ATH_PARAM_ENABLE_AMPDU  = 146,
1270 	OL_ATH_PARAM_STA_KICKOUT_TH,
1271 	OL_ATH_PARAM_WLAN_PROF_ENABLE,
1272 	OL_ATH_PARAM_LTR_ENABLE,
1273 	OL_ATH_PARAM_LTR_AC_LATENCY_BE = 150,
1274 	OL_ATH_PARAM_LTR_AC_LATENCY_BK,
1275 	OL_ATH_PARAM_LTR_AC_LATENCY_VI,
1276 	OL_ATH_PARAM_LTR_AC_LATENCY_VO,
1277 	OL_ATH_PARAM_LTR_AC_LATENCY_TIMEOUT,
1278 	OL_ATH_PARAM_LTR_TX_ACTIVITY_TIMEOUT = 155,
1279 	OL_ATH_PARAM_LTR_SLEEP_OVERRIDE,
1280 	OL_ATH_PARAM_LTR_RX_OVERRIDE,
1281 	OL_ATH_PARAM_L1SS_ENABLE,
1282 	OL_ATH_PARAM_DSLEEP_ENABLE,
1283 	/* radar error threshold */
1284 	OL_ATH_PARAM_DCS_RADAR_ERR_THR = 160,
1285 	/* Tx channel utilization due to AP's tx and rx */
1286 	OL_ATH_PARAM_DCS_USERMAX_CU_THR,
1287 	/* interference detection threshold */
1288 	OL_ATH_PARAM_DCS_INTR_DETECT_THR,
1289 	/* sampling window, default 10secs */
1290 	OL_ATH_PARAM_DCS_SAMPLE_WINDOW,
1291 	/* debug logs enable/disable */
1292 	OL_ATH_PARAM_DCS_DEBUG,
1293 	OL_ATH_PARAM_ANI_ENABLE = 165,
1294 	OL_ATH_PARAM_ANI_POLL_PERIOD,
1295 	OL_ATH_PARAM_ANI_LISTEN_PERIOD,
1296 	OL_ATH_PARAM_ANI_OFDM_LEVEL,
1297 	OL_ATH_PARAM_ANI_CCK_LEVEL,
1298 	OL_ATH_PARAM_DSCP_TID_MAP = 170,
1299 	OL_ATH_PARAM_TXPOWER_SCALE,
1300 	/* Phy error penalty */
1301 	OL_ATH_PARAM_DCS_PHYERR_PENALTY,
1302 #if ATH_SUPPORT_DSCP_OVERRIDE
1303 	/* set/get TID for sending HMMC packets */
1304 	OL_ATH_PARAM_HMMC_DSCP_TID_MAP,
1305 	/* set/get DSCP mapping override */
1306 	OL_ATH_PARAM_DSCP_OVERRIDE,
1307 	/* set/get HMMC-DSCP mapping override */
1308 	OL_ATH_PARAM_HMMC_DSCP_OVERRIDE = 175,
1309 #endif
1310 #if ATH_RX_LOOPLIMIT_TIMER
1311 	OL_ATH_PARAM_LOOPLIMIT_NUM,
1312 #endif
1313 	OL_ATH_PARAM_ANTENNA_GAIN_2G,
1314 	OL_ATH_PARAM_ANTENNA_GAIN_5G,
1315 	OL_ATH_PARAM_RX_FILTER,
1316 #if ATH_SUPPORT_HYFI_ENHANCEMENTS
1317 	OL_ATH_PARAM_BUFF_THRESH = 180,
1318 	OL_ATH_PARAM_BLK_REPORT_FLOOD,
1319 	OL_ATH_PARAM_DROP_STA_QUERY,
1320 #endif
1321 	OL_ATH_PARAM_QBOOST,
1322 	OL_ATH_PARAM_SIFS_FRMTYPE,
1323 	OL_ATH_PARAM_SIFS_UAPSD = 185,
1324 	OL_ATH_PARAM_FW_RECOVERY_ID,
1325 	OL_ATH_PARAM_RESET_OL_STATS,
1326 	OL_ATH_PARAM_AGGR_BURST,
1327 	/* Number of deauth sent in consecutive rx_peer_invalid */
1328 	OL_ATH_PARAM_DEAUTH_COUNT,
1329 	OL_ATH_PARAM_BLOCK_INTERBSS = 190,
1330 	/* Firmware reset control for Bmiss / timeout / reset */
1331 	OL_ATH_PARAM_FW_DISABLE_RESET,
1332 	OL_ATH_PARAM_MSDU_TTL,
1333 	OL_ATH_PARAM_PPDU_DURATION,
1334 	OL_ATH_PARAM_SET_TXBF_SND_PERIOD,
1335 	OL_ATH_PARAM_ALLOW_PROMISC = 195,
1336 	OL_ATH_PARAM_BURST_MODE,
1337 	OL_ATH_PARAM_DYN_GROUPING,
1338 	OL_ATH_PARAM_DPD_ENABLE,
1339 	OL_ATH_PARAM_DBGLOG_RATELIM,
1340 	/* firmware should intimate us about ps state change for node  */
1341 	OL_ATH_PARAM_PS_STATE_CHANGE = 200,
1342 	OL_ATH_PARAM_MCAST_BCAST_ECHO,
1343 	/* OBSS RSSI threshold for 20/40 coexistence */
1344 	OL_ATH_PARAM_OBSS_RSSI_THRESHOLD,
1345 	/* Link/node RX RSSI threshold  for 20/40 coexistence */
1346 	OL_ATH_PARAM_OBSS_RX_RSSI_THRESHOLD,
1347 #if ATH_CHANNEL_BLOCKING
1348 	OL_ATH_PARAM_ACS_BLOCK_MODE = 205,
1349 #endif
1350 	OL_ATH_PARAM_ACS_TX_POWER_OPTION,
1351 	/*
1352 	 * Default Antenna Polarization MSB 8 bits (24:31) specifying
1353 	 * enable/disable ; LSB 24 bits (0:23) antenna mask value
1354 	 */
1355 	OL_ATH_PARAM_ANT_POLARIZATION,
1356 	/* rate limit mute type error prints */
1357 	OL_ATH_PARAM_PRINT_RATE_LIMIT,
1358 	OL_ATH_PARAM_PDEV_RESET,   /* Reset FW PDEV*/
1359 	/* Do not crash host when target assert happened*/
1360 	OL_ATH_PARAM_FW_DUMP_NO_HOST_CRASH = 210,
1361 	/* Consider OBSS non-erp to change to long slot*/
1362 	OL_ATH_PARAM_CONSIDER_OBSS_NON_ERP_LONG_SLOT = 211,
1363 	OL_ATH_PARAM_STATS_FC,
1364 	OL_ATH_PARAM_QFLUSHINTERVAL,
1365 	OL_ATH_PARAM_TOTAL_Q_SIZE,
1366 	OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE0,
1367 	OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE1,
1368 	OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE2,
1369 	OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE3,
1370 	OL_ATH_PARAM_MIN_THRESHOLD,
1371 	OL_ATH_PARAM_MAX_Q_LIMIT,
1372 	OL_ATH_PARAM_MIN_Q_LIMIT,
1373 	OL_ATH_PARAM_CONG_CTRL_TIMER_INTV,
1374 	OL_ATH_PARAM_STATS_TIMER_INTV,
1375 	OL_ATH_PARAM_ROTTING_TIMER_INTV,
1376 	OL_ATH_PARAM_LATENCY_PROFILE,
1377 	OL_ATH_PARAM_HOSTQ_DUMP,
1378 	OL_ATH_PARAM_TIDQ_MAP,
1379 	OL_ATH_PARAM_DBG_ARP_SRC_ADDR, /* ARP DEBUG source address*/
1380 	OL_ATH_PARAM_DBG_ARP_DST_ADDR, /* ARP DEBUG destination address*/
1381 	OL_ATH_PARAM_ARP_DBG_CONF,   /* ARP debug configuration */
1382 	OL_ATH_PARAM_DISABLE_STA_VAP_AMSDU, /* Disable AMSDU for station vap */
1383 #if ATH_SUPPORT_DFS && ATH_SUPPORT_STA_DFS
1384 	OL_ATH_PARAM_STADFS_ENABLE = 300,    /* STA DFS is enabled or not  */
1385 #endif
1386 #if QCA_AIRTIME_FAIRNESS
1387 	OL_ATH_PARAM_ATF_STRICT_SCHED = 301,
1388 	OL_ATH_PARAM_ATF_GROUP_POLICY = 302,
1389 #endif
1390 #if DBDC_REPEATER_SUPPORT
1391 	OL_ATH_PARAM_PRIMARY_RADIO,
1392 	OL_ATH_PARAM_DBDC_ENABLE,
1393 #endif
1394 	OL_ATH_PARAM_TXPOWER_DBSCALE,
1395 	OL_ATH_PARAM_CTL_POWER_SCALE,
1396 #if QCA_AIRTIME_FAIRNESS
1397 	OL_ATH_PARAM_ATF_OBSS_SCHED = 307,
1398 	OL_ATH_PARAM_ATF_OBSS_SCALE = 308,
1399 #endif
1400 	OL_ATH_PARAM_PHY_OFDM_ERR = 309,
1401 	OL_ATH_PARAM_PHY_CCK_ERR = 310,
1402 	OL_ATH_PARAM_FCS_ERR = 311,
1403 	OL_ATH_PARAM_CHAN_UTIL = 312,
1404 #if DBDC_REPEATER_SUPPORT
1405 	OL_ATH_PARAM_CLIENT_MCAST,
1406 #endif
1407 	OL_ATH_PARAM_EMIWAR_80P80 = 314,
1408 	OL_ATH_PARAM_BATCHMODE = 315,
1409 	OL_ATH_PARAM_PACK_AGGR_DELAY = 316,
1410 #if UMAC_SUPPORT_ACFG
1411 	OL_ATH_PARAM_DIAG_ENABLE = 317,
1412 #endif
1413 #if ATH_SUPPORT_VAP_QOS
1414 	OL_ATH_PARAM_VAP_QOS = 318,
1415 #endif
1416 	OL_ATH_PARAM_CHAN_STATS_TH = 319,
1417 	/* Passive scan is enabled or disabled  */
1418 	OL_ATH_PARAM_PASSIVE_SCAN_ENABLE = 320,
1419 	OL_ATH_MIN_RSSI_ENABLE = 321,
1420 	OL_ATH_MIN_RSSI = 322,
1421 	OL_ATH_PARAM_ACS_2G_ALLCHAN = 323,
1422 #if DBDC_REPEATER_SUPPORT
1423 	OL_ATH_PARAM_DELAY_STAVAP_UP = 324,
1424 #endif
1425 	/* It is used to set the channel switch options */
1426 	OL_ATH_PARAM_CHANSWITCH_OPTIONS = 327,
1427 	OL_ATH_BTCOEX_ENABLE        = 328,
1428 	OL_ATH_BTCOEX_WL_PRIORITY   = 329,
1429 	OL_ATH_PARAM_TID_OVERRIDE_QUEUE_MAPPING = 330,
1430 	OL_ATH_PARAM_CAL_VER_CHECK = 331,
1431 	OL_ATH_PARAM_NO_VLAN       = 332,
1432 	OL_ATH_PARAM_CCA_THRESHOLD = 333,
1433 	OL_ATH_PARAM_ATF_LOGGING = 334,
1434 	OL_ATH_PARAM_STRICT_DOTH = 335,
1435 	OL_ATH_PARAM_DISCONNECTION_TIMEOUT   = 336,
1436 	OL_ATH_PARAM_RECONFIGURATION_TIMEOUT = 337,
1437 	OL_ATH_PARAM_CHANNEL_SWITCH_COUNT = 338,
1438 	OL_ATH_PARAM_ALWAYS_PRIMARY = 339,
1439 	OL_ATH_PARAM_FAST_LANE = 340,
1440 	OL_ATH_GET_BTCOEX_DUTY_CYCLE = 341,
1441 	OL_ATH_PARAM_SECONDARY_OFFSET_IE = 342,
1442 	OL_ATH_PARAM_WIDE_BAND_SUB_ELEMENT = 343,
1443 	OL_ATH_PARAM_PREFERRED_UPLINK = 344,
1444 	OL_ATH_PARAM_PRECAC_ENABLE = 345,
1445 	OL_ATH_PARAM_PRECAC_TIMEOUT = 346,
1446 	OL_ATH_COEX_VER_CFG = 347,
1447 	OL_ATH_PARAM_DUMP_TARGET = 348,
1448 	OL_ATH_PARAM_PDEV_TO_REO_DEST = 349,
1449 	OL_ATH_PARAM_DUMP_CHAINMASK_TABLES = 350,
1450 	OL_ATH_PARAM_DUMP_OBJECTS = 351,
1451 	OL_ATH_PARAM_ACS_SRLOADVAR = 352,
1452 	OL_ATH_PARAM_MGMT_RSSI_THRESHOLD = 353,
1453 	OL_ATH_PARAM_EXT_NSS_CAPABLE = 354,
1454 	OL_ATH_PARAM_MGMT_PDEV_STATS_TIMER = 355,
1455 	OL_ATH_PARAM_TXACKTIMEOUT = 356,
1456 	OL_ATH_PARAM_ICM_ACTIVE = 357,
1457 	OL_ATH_PARAM_NOMINAL_NOISEFLOOR = 358,
1458 	OL_ATH_PARAM_CHAN_INFO = 359,
1459 	OL_ATH_PARAM_ACS_RANK = 360,
1460 	OL_ATH_PARAM_TXCHAINSOFT = 361,
1461 	OL_ATH_PARAM_WIDE_BAND_SCAN = 362,
1462 	OL_ATH_PARAM_CCK_TX_ENABLE = 363,
1463 	OL_ATH_PARAM_PAPI_ENABLE = 364,
1464 	OL_ATH_PARAM_ISOLATION = 365,
1465 	OL_ATH_PARAM_MAX_CLIENTS_PER_RADIO = 366,
1466 #if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
1467 	OL_ATH_PARAM_DFS_HOST_WAIT_TIMEOUT = 367,
1468 #endif
1469 	OL_ATH_PARAM_NF_THRESH = 368,
1470 #ifdef OL_ATH_SMART_LOGGING
1471 	OL_ATH_PARAM_SMARTLOG_ENABLE = 369,
1472 	OL_ATH_PARAM_SMARTLOG_FATAL_EVENT = 370,
1473 	OL_ATH_PARAM_SMARTLOG_SKB_SZ = 371,
1474 	OL_ATH_PARAM_SMARTLOG_P1PINGFAIL = 372,
1475 #endif /* OL_ATH_SMART_LOGGING */
1476 #ifdef WLAN_DFS_PRECAC_AUTO_CHAN_SUPPORT
1477 	OL_ATH_PARAM_PRECAC_INTER_CHANNEL = 373,
1478 	OL_ATH_PARAM_PRECAC_CHAN_STATE = 374,
1479 #endif
1480 	OL_ATH_PARAM_DBR_RING_STATUS = 375,
1481 #ifdef QCN_ESP_IE
1482 	OL_ATH_PARAM_ESP_PERIODICITY = 376,
1483 	OL_ATH_PARAM_ESP_AIRTIME = 377,
1484 	OL_ATH_PARAM_ESP_PPDU_DURATION = 378,
1485 	OL_ATH_PARAM_ESP_BA_WINDOW = 379,
1486 #endif /* QCN_ESP_IE */
1487 
1488 	OL_ATH_PARAM_CBS = 380,
1489 	OL_ATH_PARAM_DCS_SIM = 381,
1490 	OL_ATH_PARAM_CBS_DWELL_SPLIT_TIME = 382,
1491 	OL_ATH_PARAM_CBS_DWELL_REST_TIME = 383,
1492 	OL_ATH_PARAM_CBS_WAIT_TIME = 384,
1493 	OL_ATH_PARAM_CBS_REST_TIME = 385,
1494 	OL_ATH_PARAM_CBS_CSA = 386,
1495 	OL_ATH_PARAM_TWICE_ANTENNA_GAIN = 387,
1496 	OL_ATH_PARAM_ACTIVITY_FACTOR = 388,
1497 	OL_ATH_PARAM_CHAN_AP_RX_UTIL = 389,
1498 	OL_ATH_PARAM_CHAN_FREE  = 390,
1499 	OL_ATH_PARAM_CHAN_AP_TX_UTIL = 391,
1500 	OL_ATH_PARAM_CHAN_OBSS_RX_UTIL = 392,
1501 	OL_ATH_PARAM_CHAN_NON_WIFI = 393,
1502 #if PEER_FLOW_CONTROL
1503 	OL_ATH_PARAM_VIDEO_STATS_FC = 394,
1504 #endif
1505 };
1506 
1507 /* Enumeration of PDEV Configuration parameter */
1508 enum _ol_hal_param_t {
1509 	OL_HAL_CONFIG_DMA_BEACON_RESPONSE_TIME         = 0
1510 };
1511 #endif
1512 
1513 /* Bitmasks for stats that can block */
1514 #define EXT_TXRX_FW_STATS		0x0001
1515 #endif
1516