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