cdp_txrx_stats_struct.h 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845
  1. /*
  2. * Copyright (c) 2016-2020 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. * @file cdp_txrx_stats_struct.h
  20. * @brief Define the host data path stats API functions
  21. * called by the host control SW and the OS interface module
  22. */
  23. #ifndef _CDP_TXRX_STATS_STRUCT_H_
  24. #define _CDP_TXRX_STATS_STRUCT_H_
  25. #include <qdf_types.h>
  26. #include <cdp_txrx_hist_struct.h>
  27. #define TXRX_STATS_LEVEL_OFF 0
  28. #define TXRX_STATS_LEVEL_BASIC 1
  29. #define TXRX_STATS_LEVEL_FULL 2
  30. #define BSS_CHAN_INFO_READ 1
  31. #define BSS_CHAN_INFO_READ_AND_CLEAR 2
  32. #define TX_FRAME_TYPE_DATA 0
  33. #define TX_FRAME_TYPE_MGMT 1
  34. #define TX_FRAME_TYPE_BEACON 2
  35. #ifndef TXRX_STATS_LEVEL
  36. #define TXRX_STATS_LEVEL TXRX_STATS_LEVEL_BASIC
  37. #endif
  38. /* 1 additional MCS is for invalid values */
  39. #define MAX_MCS (12 + 1)
  40. #define MAX_MCS_11A 8
  41. #define MAX_MCS_11B 7
  42. #define MAX_MCS_11AC 12
  43. /* 1 additional GI is for invalid values */
  44. #define MAX_GI (4 + 1)
  45. #define SS_COUNT 8
  46. #define MAX_BW 7
  47. #define MAX_RECEPTION_TYPES 4
  48. #define MAX_TRANSMIT_TYPES 9
  49. #define MAX_USER_POS 8
  50. #define MAX_MU_GROUP_ID 64
  51. #define MAX_RU_LOCATIONS 6
  52. #define RU_26 1
  53. #define RU_52 2
  54. #define RU_106 4
  55. #define RU_242 9
  56. #define RU_484 18
  57. #define RU_996 37
  58. /* WME stream classes */
  59. #define WME_AC_BE 0 /* best effort */
  60. #define WME_AC_BK 1 /* background */
  61. #define WME_AC_VI 2 /* video */
  62. #define WME_AC_VO 3 /* voice */
  63. #define WME_AC_MAX 4 /* MAX AC Value */
  64. #define CDP_MAX_RX_RINGS 4 /* max rx rings */
  65. #define CDP_MAX_TX_COMP_RINGS 3 /* max tx completion rings */
  66. #define CDP_MAX_TX_TQM_STATUS 9 /* max tx tqm completion status */
  67. #define CDP_MAX_TX_HTT_STATUS 7 /* max tx htt completion status */
  68. /*
  69. * Max of TxRx context
  70. */
  71. #define CDP_MAX_TXRX_CTX CDP_MAX_RX_RINGS
  72. /* TID level VoW stats macros
  73. * to add and get stats
  74. */
  75. #define PFLOW_TXRX_TIDQ_STATS_ADD(_peer, _tid, _var, _val) \
  76. (((_peer)->tidq_stats[_tid]).stats[_var]) += _val
  77. #define PFLOW_TXRX_TIDQ_STATS_GET(_peer, _tid, _var, _val) \
  78. ((_peer)->tidq_stats[_tid].stats[_var])
  79. /*
  80. * Video only stats
  81. */
  82. #define PFLOW_CTRL_PDEV_VIDEO_STATS_SET(_pdev, _var, _val) \
  83. (((_pdev)->vow.vistats[_var]).value) = _val
  84. #define PFLOW_CTRL_PDEV_VIDEO_STATS_GET(_pdev, _var) \
  85. ((_pdev)->vow.vistats[_var].value)
  86. #define PFLOW_CTRL_PDEV_VIDEO_STATS_ADD(_pdev, _var, _val) \
  87. (((_pdev)->vow.vistats[_var]).value) += _val
  88. /*
  89. * video delay stats
  90. */
  91. #define PFLOW_CTRL_PDEV_DELAY_VIDEO_STATS_SET(_pdev, _var, _val) \
  92. (((_pdev)->vow.delaystats[_var]).value) = _val
  93. #define PFLOW_CTRL_PDEV_DELAY_VIDEO_STATS_GET(_pdev, _var) \
  94. ((_pdev)->vow.delaystats[_var].value)
  95. #define PFLOW_CTRL_PDEV_DELAY_VIDEO_STATS_ADD(_pdev, _var, _val) \
  96. (((_pdev)->vow.delaystats[_var]).value) += _val
  97. /*
  98. * Number of TLVs sent by FW. Needs to reflect
  99. * HTT_PPDU_STATS_MAX_TAG declared in FW
  100. */
  101. #define CDP_PPDU_STATS_MAX_TAG 14
  102. #define CDP_MAX_DATA_TIDS 9
  103. #define CDP_WDI_NUM_EVENTS WDI_NUM_EVENTS
  104. #define CDP_FCTL_RETRY 0x0800
  105. #define CDP_FC_IS_RETRY_SET(_fc) \
  106. ((_fc) & qdf_cpu_to_le16(CDP_FCTL_RETRY))
  107. #define INVALID_RSSI 255
  108. #define CDP_RSSI_MULTIPLIER BIT(8)
  109. #define CDP_RSSI_MUL(x, mul) ((x) * (mul))
  110. #define CDP_RSSI_RND(x, mul) ((((x) % (mul)) >= ((mul) / 2)) ?\
  111. ((x) + ((mul) - 1)) / (mul) : (x) / (mul))
  112. #define CDP_RSSI_OUT(x) (CDP_RSSI_RND((x), CDP_RSSI_MULTIPLIER))
  113. #define CDP_RSSI_IN(x) (CDP_RSSI_MUL((x), CDP_RSSI_MULTIPLIER))
  114. #define CDP_RSSI_AVG(x, y) ((((x) << 2) + (y) - (x)) >> 2)
  115. #define CDP_RSSI_UPDATE_AVG(x, y) x = CDP_RSSI_AVG((x), CDP_RSSI_IN((y)))
  116. /*Max SU EVM count */
  117. #define DP_RX_MAX_SU_EVM_COUNT 32
  118. #define WDI_EVENT_BASE 0x100
  119. #define CDP_TXRX_RATECODE_MCS_MASK 0xF
  120. #define CDP_TXRX_RATECODE_NSS_MASK 0x3
  121. #define CDP_TXRX_RATECODE_NSS_LSB 4
  122. #define CDP_TXRX_RATECODE_PREM_MASK 0x3
  123. #define CDP_TXRX_RATECODE_PREM_LSB 6
  124. /* Below BW_GAIN should be added to the SNR value of every ppdu based on the
  125. * bandwidth. This table is obtained from HALPHY.
  126. * BW BW_Gain
  127. * 20 0
  128. * 40 3dBm
  129. * 80 6dBm
  130. * 160/80P80 9dBm
  131. */
  132. #define PKT_BW_GAIN_20MHZ 0
  133. #define PKT_BW_GAIN_40MHZ 3
  134. #define PKT_BW_GAIN_80MHZ 6
  135. #define PKT_BW_GAIN_160MHZ 9
  136. /*
  137. * cdp_tx_transmit_type: Transmit type index
  138. * SU: SU Transmit type index
  139. * MU_MIMO: MU_MIMO Transmit type index
  140. * MU_OFDMA: MU_OFDMA Transmit type index
  141. * MU_MIMO_OFDMA: MU MIMO OFDMA Transmit type index
  142. */
  143. enum cdp_tx_transmit_type {
  144. SU = 0,
  145. MU_MIMO,
  146. MU_OFDMA,
  147. MU_MIMO_OFDMA,
  148. };
  149. /*
  150. * cdp_ru_index: Different RU index
  151. *
  152. * RU_26_INDEX : 26-tone Resource Unit index
  153. * RU_52_INDEX : 52-tone Resource Unit index
  154. * RU_106_INDEX: 106-tone Resource Unit index
  155. * RU_242_INDEX: 242-tone Resource Unit index
  156. * RU_484_INDEX: 484-tone Resource Unit index
  157. * RU_996_INDEX: 996-tone Resource Unit index
  158. */
  159. enum cdp_ru_index {
  160. RU_26_INDEX = 0,
  161. RU_52_INDEX,
  162. RU_106_INDEX,
  163. RU_242_INDEX,
  164. RU_484_INDEX,
  165. RU_996_INDEX,
  166. };
  167. #ifdef FEATURE_TSO_STATS
  168. /* Number of TSO Packet Statistics captured */
  169. #define CDP_MAX_TSO_PACKETS 5
  170. /* Information for Number of Segments for a TSO Packet captured */
  171. #define CDP_MAX_TSO_SEGMENTS 2
  172. /* Information for Number of Fragments for a TSO Segment captured */
  173. #define CDP_MAX_TSO_FRAGMENTS 6
  174. #endif /* FEATURE_TSO_STATS */
  175. /* Different Packet Types */
  176. enum cdp_packet_type {
  177. DOT11_A = 0,
  178. DOT11_B = 1,
  179. DOT11_N = 2,
  180. DOT11_AC = 3,
  181. DOT11_AX = 4,
  182. DOT11_MAX = 5,
  183. };
  184. /*
  185. * cdp_mu_packet_type: MU Rx type index
  186. * RX_TYPE_MU_MIMO: MU MIMO Rx type index
  187. * RX_TYPE_MU_OFDMA: MU OFDMA Rx type index
  188. * MU_MIMO_OFDMA: MU Rx MAX type index
  189. */
  190. enum cdp_mu_packet_type {
  191. RX_TYPE_MU_MIMO = 0,
  192. RX_TYPE_MU_OFDMA = 1,
  193. RX_TYPE_MU_MAX = 2,
  194. };
  195. enum WDI_EVENT {
  196. WDI_EVENT_TX_STATUS = WDI_EVENT_BASE,
  197. WDI_EVENT_OFFLOAD_ALL,
  198. WDI_EVENT_RX_DESC_REMOTE,
  199. WDI_EVENT_RX_PEER_INVALID,
  200. WDI_EVENT_DBG_PRINT, /* NEED to integrate pktlog changes*/
  201. WDI_EVENT_RX_CBF_REMOTE,
  202. WDI_EVENT_RATE_FIND,
  203. WDI_EVENT_RATE_UPDATE,
  204. WDI_EVENT_SW_EVENT,
  205. WDI_EVENT_RX_DESC,
  206. WDI_EVENT_LITE_T2H,
  207. WDI_EVENT_LITE_RX,
  208. WDI_EVENT_RX_PPDU_DESC,
  209. WDI_EVENT_TX_PPDU_DESC,
  210. WDI_EVENT_TX_MSDU_DESC,
  211. WDI_EVENT_TX_DATA,
  212. WDI_EVENT_RX_DATA,
  213. WDI_EVENT_TX_MGMT_CTRL,
  214. WDI_EVENT_HTT_STATS,
  215. WDI_EVENT_TX_BEACON,
  216. WDI_EVENT_PEER_STATS,
  217. WDI_EVENT_TX_SOJOURN_STAT,
  218. WDI_EVENT_UPDATE_DP_STATS,
  219. WDI_EVENT_RX_MGMT_CTRL,
  220. WDI_EVENT_PEER_CREATE,
  221. WDI_EVENT_PEER_DESTROY,
  222. WDI_EVENT_PEER_FLUSH_RATE_STATS,
  223. WDI_EVENT_FLUSH_RATE_STATS_REQ,
  224. WDI_EVENT_RX_MPDU,
  225. WDI_EVENT_HMWDS_AST_ADD_STATUS,
  226. /* End of new event items */
  227. WDI_EVENT_LAST
  228. };
  229. #define WDI_NUM_EVENTS WDI_EVENT_LAST - WDI_EVENT_BASE
  230. struct cdp_stats_extd {
  231. };
  232. /* TID level Tx/Rx stats
  233. *
  234. */
  235. enum cdp_txrx_tidq_stats {
  236. /* Tx Counters */
  237. TX_MSDU_TOTAL_LINUX_SUBSYSTEM,
  238. TX_MSDU_TOTAL_FROM_OSIF,
  239. TX_MSDU_TX_COMP_PKT_CNT,
  240. /* Rx Counters */
  241. RX_MSDU_TOTAL_FROM_FW,
  242. RX_MSDU_MCAST_FROM_FW,
  243. RX_TID_MISMATCH_FROM_FW,
  244. RX_MSDU_MISC_PKTS,
  245. RX_MSDU_IS_ARP,
  246. RX_MSDU_IS_EAP,
  247. RX_MSDU_IS_DHCP,
  248. RX_AGGREGATE_10,
  249. RX_AGGREGATE_20,
  250. RX_AGGREGATE_30,
  251. RX_AGGREGATE_40,
  252. RX_AGGREGATE_50,
  253. RX_AGGREGATE_60,
  254. RX_AGGREGATE_MORE,
  255. RX_AMSDU_1,
  256. RX_AMSDU_2,
  257. RX_AMSDU_3,
  258. RX_AMSDU_4,
  259. RX_AMSDU_MORE,
  260. RX_MSDU_CHAINED_FROM_FW,
  261. RX_MSDU_REORDER_FAILED_FROM_FW,
  262. RX_MSDU_REORDER_FLUSHED_FROM_FW,
  263. RX_MSDU_DISCARD_FROM_FW,
  264. RX_MSDU_DUPLICATE_FROM_FW,
  265. RX_MSDU_DELIVERED_TO_STACK,
  266. TIDQ_STATS_MAX,
  267. };
  268. struct cdp_tidq_stats {
  269. uint32_t stats[TIDQ_STATS_MAX];
  270. };
  271. #if defined(WLAN_CFR_ENABLE) && defined(WLAN_ENH_CFR_ENABLE)
  272. /**
  273. * struct cdp_rx_ppdu_cfr_info - struct for storing ppdu info extracted from HW
  274. * TLVs, this will be used for CFR correlation
  275. *
  276. * @bb_captured_channel : Set by RXPCU when MACRX_FREEZE_CAPTURE_CHANNEL TLV is
  277. * sent to PHY, SW checks it to correlate current PPDU TLVs with uploaded
  278. * channel information.
  279. *
  280. * @bb_captured_timeout : Set by RxPCU to indicate channel capture condition is
  281. * met, but MACRX_FREEZE_CAPTURE_CHANNEL is not sent to PHY due to AST delay,
  282. * which means the rx_frame_falling edge to FREEZE TLV ready time exceeds
  283. * the threshold time defined by RXPCU register FREEZE_TLV_DELAY_CNT_THRESH.
  284. * Bb_captured_reason is still valid in this case.
  285. *
  286. * @bb_captured_reason : Copy capture_reason of MACRX_FREEZE_CAPTURE_CHANNEL
  287. * TLV to here for FW usage. Valid when bb_captured_channel or
  288. * bb_captured_timeout is set.
  289. * <enum 0 freeze_reason_TM>
  290. * <enum 1 freeze_reason_FTM>
  291. * <enum 2 freeze_reason_ACK_resp_to_TM_FTM>
  292. * <enum 3 freeze_reason_TA_RA_TYPE_FILTER>
  293. * <enum 4 freeze_reason_NDPA_NDP>
  294. * <enum 5 freeze_reason_ALL_PACKET>
  295. * <legal 0-5>
  296. *
  297. * @rx_location_info_valid: Indicates whether CFR DMA address in the PPDU TLV
  298. * is valid
  299. * <enum 0 rx_location_info_is_not_valid>
  300. * <enum 1 rx_location_info_is_valid>
  301. * <legal all>
  302. *
  303. * @chan_capture_status : capture status reported by ucode
  304. * a. CAPTURE_IDLE: FW has disabled "REPETITIVE_CHE_CAPTURE_CTRL"
  305. * b. CAPTURE_BUSY: previous PPDU’s channel capture upload DMA ongoing. (Note
  306. * that this upload is triggered after receiving freeze_channel_capture TLV
  307. * after last PPDU is rx)
  308. * c. CAPTURE_ACTIVE: channel capture is enabled and no previous channel
  309. * capture ongoing
  310. * d. CAPTURE_NO_BUFFER: next buffer in IPC ring not available
  311. *
  312. * @rtt_che_buffer_pointer_high8 : The high 8 bits of the 40 bits pointer to
  313. * external RTT channel information buffer
  314. *
  315. * @rtt_che_buffer_pointer_low32 : The low 32 bits of the 40 bits pointer to
  316. * external RTT channel information buffer
  317. *
  318. */
  319. struct cdp_rx_ppdu_cfr_info {
  320. bool bb_captured_channel;
  321. bool bb_captured_timeout;
  322. uint8_t bb_captured_reason;
  323. bool rx_location_info_valid;
  324. uint8_t chan_capture_status;
  325. uint8_t rtt_che_buffer_pointer_high8;
  326. uint32_t rtt_che_buffer_pointer_low32;
  327. };
  328. #endif
  329. /*
  330. * struct cdp_rx_su_evm_info: Rx evm info
  331. * @number_of_symbols: number of symbols
  332. * @nss_count: number of spatial streams
  333. * @pilot_count: number of pilot count
  334. */
  335. struct cdp_rx_su_evm_info {
  336. uint16_t number_of_symbols;
  337. uint8_t nss_count;
  338. uint8_t pilot_count;
  339. uint32_t pilot_evm[DP_RX_MAX_SU_EVM_COUNT];
  340. };
  341. /*
  342. * cdp_delay_stats_mode: Different types of delay statistics
  343. *
  344. * @CDP_DELAY_STATS_SW_ENQ: Stack to hw enqueue delay
  345. * @CDP_DELAY_STATS_TX_INTERFRAME: Interframe delay at radio entry point
  346. * @CDP_DELAY_STATS_FW_HW_TRANSMIT: Hw enqueue to tx completion delay
  347. * @CDP_DELAY_STATS_REAP_STACK: Delay in ring reap to indicating network stack
  348. * @CDP_DELAY_STATS_RX_INTERFRAME: Rx inteframe delay
  349. * @CDP_DELAY_STATS_MODE_MAX: Maximum delay mode
  350. */
  351. enum cdp_delay_stats_mode {
  352. CDP_DELAY_STATS_SW_ENQ,
  353. CDP_DELAY_STATS_TX_INTERFRAME,
  354. CDP_DELAY_STATS_FW_HW_TRANSMIT,
  355. CDP_DELAY_STATS_REAP_STACK,
  356. CDP_DELAY_STATS_RX_INTERFRAME,
  357. CDP_DELAY_STATS_MODE_MAX,
  358. };
  359. /*
  360. * cdp_delay_bucket_index
  361. * Index to be used for all delay stats
  362. */
  363. enum cdp_delay_bucket_index {
  364. CDP_DELAY_BUCKET_0,
  365. CDP_DELAY_BUCKET_1,
  366. CDP_DELAY_BUCKET_2,
  367. CDP_DELAY_BUCKET_3,
  368. CDP_DELAY_BUCKET_4,
  369. CDP_DELAY_BUCKET_5,
  370. CDP_DELAY_BUCKET_6,
  371. CDP_DELAY_BUCKET_7,
  372. CDP_DELAY_BUCKET_8,
  373. CDP_DELAY_BUCKET_9,
  374. CDP_DELAY_BUCKET_10,
  375. CDP_DELAY_BUCKET_11,
  376. CDP_DELAY_BUCKET_12,
  377. CDP_DELAY_BUCKET_MAX,
  378. };
  379. /*
  380. * struct cdp_tx_host_drop - packet drop due to following reasons.
  381. */
  382. enum cdp_tx_sw_drop {
  383. TX_DESC_ERR,
  384. TX_HAL_RING_ACCESS_ERR,
  385. TX_DMA_MAP_ERR,
  386. TX_HW_ENQUEUE,
  387. TX_SW_ENQUEUE,
  388. TX_MAX_DROP,
  389. };
  390. /*
  391. * struct cdp_rx_host_drop - packet drop due to following reasons.
  392. */
  393. enum cdp_rx_sw_drop {
  394. INTRABSS_DROP,
  395. MSDU_DONE_FAILURE,
  396. INVALID_PEER_VDEV,
  397. POLICY_CHECK_DROP,
  398. MEC_DROP,
  399. NAWDS_MCAST_DROP,
  400. MESH_FILTER_DROP,
  401. ENQUEUE_DROP,
  402. RX_MAX_DROP,
  403. };
  404. /*
  405. * struct cdp_delay_stats
  406. * @delay_bucket: division of buckets as per latency
  407. * @min_delay: minimum delay
  408. * @max_delay: maximum delay
  409. * @avg_delay: average delay
  410. */
  411. struct cdp_delay_stats {
  412. uint64_t delay_bucket[CDP_DELAY_BUCKET_MAX];
  413. uint32_t min_delay;
  414. uint32_t max_delay;
  415. uint32_t avg_delay;
  416. };
  417. /*
  418. * struct cdp_tid_tx_stats
  419. * @swq_delay: delay between wifi driver entry point and enqueue to HW in tx
  420. * @hwtx_delay: delay between wifi driver exit (enqueue to HW) and tx completion
  421. * @intfrm_delay: interframe delay
  422. * @success_cnt: total successful transmit count
  423. * @comp_fail_cnt: firmware drop found in tx completion path
  424. * @swdrop_cnt: software drop in tx path
  425. * @tqm_status_cnt: TQM completion status count
  426. * @htt_status_cnt: HTT completion status count
  427. */
  428. struct cdp_tid_tx_stats {
  429. struct cdp_delay_stats swq_delay;
  430. struct cdp_delay_stats hwtx_delay;
  431. struct cdp_delay_stats intfrm_delay;
  432. uint64_t success_cnt;
  433. uint64_t comp_fail_cnt;
  434. uint64_t swdrop_cnt[TX_MAX_DROP];
  435. uint64_t tqm_status_cnt[CDP_MAX_TX_TQM_STATUS];
  436. uint64_t htt_status_cnt[CDP_MAX_TX_HTT_STATUS];
  437. };
  438. /*
  439. * struct cdp_tid_tx_stats
  440. * @to_stack_delay: Time taken between ring reap to indication to network stack
  441. * @intfrm_delay: Interframe rx delay
  442. * @delivered_cnt: Total packets indicated to stack
  443. * @intrabss_cnt: Rx total intraBSS frames
  444. * @msdu_cnt: number of msdu received from HW
  445. * @mcast_msdu_cnt: Num Mcast Msdus received from HW in Rx
  446. * @bcast_msdu_cnt: Num Bcast Msdus received from HW in Rx
  447. * @fail_cnt: Rx deliver drop counters
  448. */
  449. struct cdp_tid_rx_stats {
  450. struct cdp_delay_stats to_stack_delay;
  451. struct cdp_delay_stats intfrm_delay;
  452. uint64_t delivered_to_stack;
  453. uint64_t intrabss_cnt;
  454. uint64_t msdu_cnt;
  455. uint64_t mcast_msdu_cnt;
  456. uint64_t bcast_msdu_cnt;
  457. uint64_t fail_cnt[RX_MAX_DROP];
  458. };
  459. /*
  460. * struct cdp_tid_stats
  461. * @ingress_stack: Total packets received from linux stack
  462. * @osif_drop: drops in osif layer
  463. * @tid_tx_stats: transmit counters per tid
  464. * @tid_rx_stats: receive counters per tid
  465. */
  466. struct cdp_tid_stats {
  467. uint64_t ingress_stack;
  468. uint64_t osif_drop;
  469. struct cdp_tid_tx_stats tid_tx_stats[CDP_MAX_TX_COMP_RINGS]
  470. [CDP_MAX_DATA_TIDS];
  471. struct cdp_tid_rx_stats tid_rx_stats[CDP_MAX_RX_RINGS]
  472. [CDP_MAX_DATA_TIDS];
  473. };
  474. /*
  475. * struct cdp_delay_tx_stats: Tx delay stats
  476. * @tx_swq_delay: software enqueue delay
  477. * @hwtx_delay: HW enque to completion delay
  478. */
  479. struct cdp_delay_tx_stats {
  480. struct cdp_hist_stats tx_swq_delay;
  481. struct cdp_hist_stats hwtx_delay;
  482. };
  483. /*
  484. * struct cdp_delay_rx_stats: Rx delay stats
  485. * @to_stack_delay: To stack delay
  486. */
  487. struct cdp_delay_rx_stats {
  488. struct cdp_hist_stats to_stack_delay;
  489. };
  490. /*
  491. * struct cdp_delay_tid_stats: Delay tid stats
  492. * @tx_delay: Tx delay related stats
  493. * @rx_delay: Rx delay related stats
  494. */
  495. struct cdp_delay_tid_stats {
  496. struct cdp_delay_tx_stats tx_delay;
  497. struct cdp_delay_rx_stats rx_delay;
  498. };
  499. /*
  500. * cdp_peer_ext_stats: Peer extended stats
  501. * @delay_stats: Per TID delay stats
  502. */
  503. struct cdp_peer_ext_stats {
  504. struct cdp_delay_tid_stats delay_stats[CDP_MAX_DATA_TIDS]
  505. [CDP_MAX_TXRX_CTX];
  506. /*Customer can add MSDU level Tx/Rx stats */
  507. };
  508. /* struct cdp_pkt_info - packet info
  509. * @num: no of packets
  510. * @bytes: total no of bytes
  511. */
  512. struct cdp_pkt_info {
  513. uint32_t num;
  514. uint64_t bytes;
  515. };
  516. /* struct cdp_pkt_type - packet type
  517. * @mcs_count: Counter array for each MCS index
  518. */
  519. struct cdp_pkt_type {
  520. uint32_t mcs_count[MAX_MCS];
  521. };
  522. /*
  523. * struct cdp_rx_mu - Rx MU Stats
  524. * @ppdu_nss[SS_COUNT]: Packet Count in spatial streams
  525. * @mpdu_cnt_fcs_ok: Rx success mpdu count
  526. * @mpdu_cnt_fcs_err: Rx fail mpdu count
  527. * @cdp_pkt_type: counter array for each MCS index
  528. */
  529. struct cdp_rx_mu {
  530. uint32_t ppdu_nss[SS_COUNT];
  531. uint32_t mpdu_cnt_fcs_ok;
  532. uint32_t mpdu_cnt_fcs_err;
  533. struct cdp_pkt_type ppdu;
  534. };
  535. /* struct cdp_tx_pkt_info - tx packet info
  536. * num_msdu - successful msdu
  537. * num_mpdu - successful mpdu from compltn common
  538. * mpdu_tried - mpdu tried
  539. *
  540. * tx packet info counter field for mpdu success/tried and msdu
  541. */
  542. struct cdp_tx_pkt_info {
  543. uint32_t num_msdu;
  544. uint32_t num_mpdu;
  545. uint32_t mpdu_tried;
  546. };
  547. #ifdef FEATURE_TSO_STATS
  548. /**
  549. * struct cdp_tso_seg_histogram - Segment histogram for TCP Packets
  550. * @segs_1: packets with single segments
  551. * @segs_2_5: packets with 2-5 segments
  552. * @segs_6_10: packets with 6-10 segments
  553. * @segs_11_15: packets with 11-15 segments
  554. * @segs_16_20: packets with 16-20 segments
  555. * @segs_20_plus: packets with 20 plus segments
  556. */
  557. struct cdp_tso_seg_histogram {
  558. uint64_t segs_1;
  559. uint64_t segs_2_5;
  560. uint64_t segs_6_10;
  561. uint64_t segs_11_15;
  562. uint64_t segs_16_20;
  563. uint64_t segs_20_plus;
  564. };
  565. /**
  566. * struct cdp_tso_packet_info - Stats for TSO segments within a TSO packet
  567. * @tso_seg: TSO Segment information
  568. * @num_seg: Number of segments
  569. * @tso_packet_len: Size of the tso packet
  570. * @tso_seg_idx: segment number
  571. */
  572. struct cdp_tso_packet_info {
  573. struct qdf_tso_seg_t tso_seg[CDP_MAX_TSO_SEGMENTS];
  574. uint8_t num_seg;
  575. size_t tso_packet_len;
  576. uint32_t tso_seg_idx;
  577. };
  578. /**
  579. * struct cdp_tso_info - stats for tso packets
  580. * @tso_packet_info: TSO packet information
  581. */
  582. struct cdp_tso_info {
  583. struct cdp_tso_packet_info tso_packet_info[CDP_MAX_TSO_PACKETS];
  584. };
  585. #endif /* FEATURE_TSO_STATS */
  586. /**
  587. * struct cdp_tso_stats - TSO stats information
  588. * @num_tso_pkts: Total number of TSO Packets
  589. * @tso_comp: Total tso packet completions
  590. * @dropped_host: TSO packets dropped by host
  591. * @tso_no_mem_dropped: TSO packets dropped by host due to descriptor
  592. unavailablity
  593. * @dropped_target: TSO packets_dropped by target
  594. * @tso_info: Per TSO packet counters
  595. * @seg_histogram: TSO histogram stats
  596. */
  597. struct cdp_tso_stats {
  598. struct cdp_pkt_info num_tso_pkts;
  599. uint32_t tso_comp;
  600. struct cdp_pkt_info dropped_host;
  601. struct cdp_pkt_info tso_no_mem_dropped;
  602. uint32_t dropped_target;
  603. #ifdef FEATURE_TSO_STATS
  604. struct cdp_tso_info tso_info;
  605. struct cdp_tso_seg_histogram seg_histogram;
  606. #endif /* FEATURE_TSO_STATS */
  607. };
  608. #define CDP_PEER_STATS_START 0
  609. enum cdp_peer_stats_type {
  610. cdp_peer_stats_min = CDP_PEER_STATS_START,
  611. /* Tx types */
  612. cdp_peer_tx_ucast = cdp_peer_stats_min,
  613. cdp_peer_tx_mcast,
  614. cdp_peer_tx_rate,
  615. cdp_peer_tx_last_tx_rate,
  616. cdp_peer_tx_inactive_time,
  617. cdp_peer_tx_ratecode,
  618. cdp_peer_tx_flags,
  619. cdp_peer_tx_power,
  620. /* Rx types */
  621. cdp_peer_rx_rate,
  622. cdp_peer_rx_last_rx_rate,
  623. cdp_peer_rx_ratecode,
  624. cdp_peer_rx_ucast,
  625. cdp_peer_rx_flags,
  626. cdp_peer_rx_avg_rssi,
  627. cdp_peer_stats_max,
  628. };
  629. /*
  630. * The max size of cdp_peer_stats_param_t is limited to 16 bytes.
  631. * If the buffer size is exceeding this size limit,
  632. * dp_txrx_get_peer_stats is to be used instead.
  633. */
  634. typedef union cdp_peer_stats_buf {
  635. /* Tx types */
  636. struct cdp_pkt_info tx_ucast;
  637. struct cdp_pkt_info tx_mcast;
  638. uint32_t tx_rate;
  639. uint32_t last_tx_rate;
  640. uint32_t tx_inactive_time;
  641. uint32_t tx_flags;
  642. uint32_t tx_power;
  643. uint16_t tx_ratecode;
  644. /* Rx types */
  645. struct cdp_pkt_info rx_ucast;
  646. uint32_t rx_rate;
  647. uint32_t last_rx_rate;
  648. uint32_t rx_ratecode;
  649. uint32_t rx_flags;
  650. uint32_t rx_avg_rssi;
  651. } cdp_peer_stats_param_t; /* Max union size 16 bytes */
  652. /**
  653. * enum cdp_protocol_trace - Protocols supported by per-peer protocol trace
  654. * @CDP_TRACE_ICMP: ICMP packets
  655. * @CDP_TRACE_EAP: EAPOL packets
  656. * @CDP_TRACE_ARP: ARP packets
  657. *
  658. * Enumeration of all protocols supported by per-peer protocol trace feature
  659. */
  660. enum cdp_protocol_trace {
  661. CDP_TRACE_ICMP,
  662. CDP_TRACE_EAP,
  663. CDP_TRACE_ARP,
  664. CDP_TRACE_MAX
  665. };
  666. /**
  667. * struct protocol_trace_count - type of count on per-peer protocol trace
  668. * @egress_cnt: how many packets go out of host driver
  669. * @ingress_cnt: how many packets come into the host driver
  670. *
  671. * Type of count on per-peer protocol trace
  672. */
  673. struct protocol_trace_count {
  674. uint16_t egress_cnt;
  675. uint16_t ingress_cnt;
  676. };
  677. /* struct cdp_tx_stats - tx stats
  678. * @cdp_pkt_info comp_pkt: Pkt Info for which completions were received
  679. * @cdp_pkt_info ucast: Unicast Packet Count
  680. * @cdp_pkt_info mcast: Multicast Packet Count
  681. * @cdp_pkt_info bcast: Broadcast Packet Count
  682. * @cdp_pkt_info nawds_mcast: NAWDS Multicast Packet Count
  683. * @cdp_pkt_info tx_success: Successful Tx Packets
  684. * @nawds_mcast_drop: NAWDS Multicast Drop Count
  685. * @protocol_trace_cnt: per-peer protocol counter
  686. * @tx_failed: Total Tx failure
  687. * @ofdma: Total Packets as ofdma
  688. * @stbc: Packets in STBC
  689. * @ldpc: Packets in LDPC
  690. * @retries: Packet retries
  691. * @non_amsdu_cnt: Number of MSDUs with no MSDU level aggregation
  692. * @amsdu_cnt: Number of MSDUs part of AMSDU
  693. * @tx_rate: Tx Rate
  694. * @last_tx_rate: Last tx rate for unicast packets
  695. * @last_tx_rate_mcs: Tx rate mcs for unicast packets
  696. * @mcast_last_tx_rate: Last tx rate for multicast packets
  697. * @mcast_last_tx_rate_mcs: Last tx rate mcs for multicast
  698. * @last_per: Tx Per
  699. * @rnd_avg_tx_rate: Rounded average tx rate
  700. * @avg_tx_rate: Average TX rate
  701. * @last_ack_rssi: RSSI of last acked packet
  702. * @tx_bytes_success_last: last Tx success bytes
  703. * @tx_data_success_last: last Tx success data
  704. * @tx_byte_rate: Bytes Trasmitted in last one sec
  705. * @tx_data_rate: Data Transmitted in last one sec
  706. * @sgi_count[MAX_GI]: SGI count
  707. * @nss[SS_COUNT]: Packet count for different num_spatial_stream values
  708. * @bw[MAX_BW]: Packet Count for different bandwidths
  709. * @wme_ac_type[WME_AC_MAX]: Wireless Multimedia type Count
  710. * @excess_retries_per_ac[WME_AC_MAX]: Wireless Multimedia type Count
  711. * @dot11_tx_pkts: dot11 tx packets
  712. * @fw_rem: Discarded by firmware
  713. * @fw_rem_notx: firmware_discard_untransmitted
  714. * @fw_rem_tx: firmware_discard_transmitted
  715. * @age_out: aged out in mpdu/msdu queues
  716. * @fw_reason1: discarded by firmware reason 1
  717. * @fw_reason2: discarded by firmware reason 2
  718. * @fw_reason3: discarded by firmware reason 3
  719. * @mcs_count: MCS Count
  720. * @an_tx_cnt: ald tx count
  721. * @an_tx_rates_used: ald rx rate used
  722. * @an_tx_bytes: ald tx bytes
  723. * @ald_txcount: ald tx count
  724. * @ald_lastper: ald last PER
  725. * @ald_max4msframelen: ald max frame len
  726. * @an_tx_ratecount: ald tx ratecount
  727. * @ald_retries: ald retries
  728. * @ald_ac_nobufs: #buffer overflows per node per AC
  729. * @ald_ac_excretries: #pkts dropped after excessive retries per node per AC
  730. * @rssi_chain: rssi chain
  731. * @inactive_time: inactive time in secs
  732. * @tx_flags: tx flags
  733. * @tx_power: Tx power latest
  734. * @is_tx_no_ack: no ack received
  735. * @tx_ratecode: Tx rate code of last frame
  736. * @is_tx_nodefkey: tx failed 'cuz no defkey
  737. * @is_tx_noheadroom: tx failed 'cuz no space
  738. * @is_crypto_enmicfail:
  739. * @is_tx_nonode: tx failed for no node
  740. * @is_tx_unknownmgt: tx of unknown mgt frame
  741. * @is_tx_badcipher: tx failed 'cuz key type
  742. * @ampdu_cnt: completion of aggregation
  743. * @non_ampdu_cnt: tx completion not aggregated
  744. * @failed_retry_count: packets failed due to retry above 802.11 retry limit
  745. * @retry_count: packets successfully send after one or more retry
  746. * @multiple_retry_count: packets successfully sent after more than one retry
  747. * @transmit_type: pkt info for tx transmit type
  748. * @mu_group_id: mumimo mu group id
  749. * @ru_start: RU start index
  750. * @ru_tones: RU tones size
  751. * @ru_loc: pkt info for RU location 26/ 52/ 106/ 242/ 484 counter
  752. * @num_ppdu_cookie_valid : Number of comp received with valid ppdu cookie
  753. */
  754. struct cdp_tx_stats {
  755. struct cdp_pkt_info comp_pkt;
  756. struct cdp_pkt_info ucast;
  757. struct cdp_pkt_info mcast;
  758. struct cdp_pkt_info bcast;
  759. struct cdp_pkt_info nawds_mcast;
  760. #ifdef VDEV_PEER_PROTOCOL_COUNT
  761. struct protocol_trace_count protocol_trace_cnt[CDP_TRACE_MAX];
  762. #endif
  763. struct cdp_pkt_info tx_success;
  764. uint32_t nawds_mcast_drop;
  765. uint32_t tx_failed;
  766. uint32_t ofdma;
  767. uint32_t stbc;
  768. uint32_t ldpc;
  769. uint32_t retries;
  770. uint32_t non_amsdu_cnt;
  771. uint32_t amsdu_cnt;
  772. uint32_t tx_rate;
  773. uint32_t last_tx_rate;
  774. uint32_t last_tx_rate_mcs;
  775. uint32_t mcast_last_tx_rate;
  776. uint32_t mcast_last_tx_rate_mcs;
  777. uint32_t last_per;
  778. uint64_t rnd_avg_tx_rate;
  779. uint64_t avg_tx_rate;
  780. uint32_t last_ack_rssi;
  781. uint32_t tx_bytes_success_last;
  782. uint32_t tx_data_success_last;
  783. uint32_t tx_byte_rate;
  784. uint32_t tx_data_rate;
  785. uint32_t tx_data_ucast_last;
  786. uint32_t tx_data_ucast_rate;
  787. struct cdp_pkt_type pkt_type[DOT11_MAX];
  788. uint32_t sgi_count[MAX_GI];
  789. uint32_t nss[SS_COUNT];
  790. uint32_t bw[MAX_BW];
  791. uint32_t wme_ac_type[WME_AC_MAX];
  792. uint32_t excess_retries_per_ac[WME_AC_MAX];
  793. struct cdp_pkt_info dot11_tx_pkts;
  794. struct {
  795. struct cdp_pkt_info fw_rem;
  796. uint32_t fw_rem_notx;
  797. uint32_t fw_rem_tx;
  798. uint32_t age_out;
  799. uint32_t fw_reason1;
  800. uint32_t fw_reason2;
  801. uint32_t fw_reason3;
  802. } dropped;
  803. uint32_t fw_tx_cnt;
  804. uint32_t fw_tx_bytes;
  805. uint32_t fw_txcount;
  806. uint32_t fw_max4msframelen;
  807. uint32_t fw_ratecount;
  808. uint32_t ac_nobufs[WME_AC_MAX];
  809. uint32_t rssi_chain[WME_AC_MAX];
  810. uint32_t inactive_time;
  811. uint32_t tx_flags;
  812. uint32_t tx_power;
  813. /* MSDUs which the target sent but couldn't get an ack for */
  814. struct cdp_pkt_info is_tx_no_ack;
  815. uint16_t tx_ratecode;
  816. /*add for peer and upadted from ppdu*/
  817. uint32_t ampdu_cnt;
  818. uint32_t non_ampdu_cnt;
  819. uint32_t failed_retry_count;
  820. uint32_t retry_count;
  821. uint32_t multiple_retry_count;
  822. uint32_t last_tx_rate_used;
  823. struct cdp_tx_pkt_info transmit_type[MAX_TRANSMIT_TYPES];
  824. uint32_t mu_group_id[MAX_MU_GROUP_ID];
  825. uint32_t ru_start;
  826. uint32_t ru_tones;
  827. struct cdp_tx_pkt_info ru_loc[MAX_RU_LOCATIONS];
  828. uint32_t num_ppdu_cookie_valid;
  829. uint32_t no_ack_count[QDF_PROTO_SUBTYPE_MAX];
  830. };
  831. /* struct cdp_rx_stats - rx Level Stats
  832. * @to_stack: Total packets sent up the stack
  833. * @rcvd_reo[CDP_MAX_RX_RINGS]: Packets received on the reo ring
  834. * @unicast: Total unicast packets
  835. * @multicast: Total multicast packets
  836. * @bcast: Broadcast Packet Count
  837. * @raw: Raw Pakets received
  838. * @nawds_mcast_drop: Total multicast packets
  839. * @mec_drop: Total MEC packets dropped
  840. * @pkts: Intra BSS packets received
  841. * @fail: Intra BSS packets failed
  842. * @mdns_no_fwd: Intra BSS MDNS packets not forwarded
  843. * @protocol_trace_cnt: per-peer protocol counters
  844. * @mic_err: Rx MIC errors CCMP
  845. * @decrypt_err: Rx Decryption Errors CRC
  846. * @fcserr: rx MIC check failed (CCMP)
  847. * @wme_ac_type[WME_AC_MAX]: Wireless Multimedia type Count
  848. * @reception_type[MAX_RECEPTION_TYPES]: Reception type os packets
  849. * @mcs_count[MAX_MCS]: mcs count
  850. * @sgi_count[MAX_GI]: sgi count
  851. * @nss[SS_COUNT]: packet count in spatiel Streams
  852. * @ppdu_nss[SS_COUNT]: PPDU packet count in spatial streams
  853. * @mpdu_cnt_fcs_ok: SU Rx success mpdu count
  854. * @mpdu_cnt_fcs_err: SU Rx fail mpdu count
  855. * @su_ax_ppdu_cnt: SU Rx packet count
  856. * @ppdu_cnt[MAX_RECEPTION_TYPES]: PPDU packet count in reception type
  857. * @rx_mu[RX_TYPE_MU_MAX]: Rx MU stats
  858. * @bw[MAX_BW]: Packet Count in different bandwidths
  859. * @non_ampdu_cnt: Number of MSDUs with no MPDU level aggregation
  860. * @ampdu_cnt: Number of MSDUs part of AMSPU
  861. * @non_amsdu_cnt: Number of MSDUs with no MSDU level aggregation
  862. * @amsdu_cnt: Number of MSDUs part of AMSDU
  863. * @bar_recv_cnt: Number of bar received
  864. * @avg_rssi: Average rssi
  865. * @rx_rate: Rx rate
  866. * @last_rx_rate: Previous rx rate
  867. * @rnd_avg_rx_rate: Rounded average rx rate
  868. * @avg_rx_rate: Average Rx rate
  869. * @dot11_rx_pkts: dot11 rx packets
  870. * @rx_bytes_last: last Rx success bytes
  871. * @rx_data_last: last rx success data
  872. * @rx_byte_rate: bytes received in last one sec
  873. * @rx_data_rate: data received in last one sec
  874. * @rx_retries: retries of packet in rx
  875. * @rx_mpdus: mpdu in rx
  876. * @rx_ppdus: ppdu in rx
  877. * @is_rx_tooshort: tooshort
  878. * @is_rx_decap: rx decap
  879. * @rx_ccmpmic: rx MIC check failed (CCMP)
  880. * @rx_tkipmic: rx MIC check failed (TKIP)
  881. * @rx_tkipicv: rx ICV check failed (TKIP)
  882. * @rx_wpimic: rx MIC check failed (WPI)
  883. * @rx_wepfail: rx wep processing failed
  884. * @rx_aggr: aggregation on rx
  885. * @rx_discard: packets discard in rx
  886. * @rx_ratecode: Rx rate code of last frame
  887. * @rx_flags: rx flags
  888. * @rx_rssi_measured_time: Time at which rssi is measured
  889. * @rssi: RSSI of received signal
  890. * @last_rssi: Previous rssi
  891. * @multipass_rx_pkt_drop: Dropped multipass rx pkt
  892. * @rx_mpdu_cnt: rx mpdu count per MCS rate
  893. */
  894. struct cdp_rx_stats {
  895. struct cdp_pkt_info to_stack;
  896. struct cdp_pkt_info rcvd_reo[CDP_MAX_RX_RINGS];
  897. struct cdp_pkt_info unicast;
  898. struct cdp_pkt_info multicast;
  899. struct cdp_pkt_info bcast;
  900. struct cdp_pkt_info raw;
  901. uint32_t nawds_mcast_drop;
  902. struct cdp_pkt_info mec_drop;
  903. struct {
  904. struct cdp_pkt_info pkts;
  905. struct cdp_pkt_info fail;
  906. uint32_t mdns_no_fwd;
  907. } intra_bss;
  908. #ifdef VDEV_PEER_PROTOCOL_COUNT
  909. struct protocol_trace_count protocol_trace_cnt[CDP_TRACE_MAX];
  910. #endif
  911. struct {
  912. uint32_t mic_err;
  913. uint32_t decrypt_err;
  914. uint32_t fcserr;
  915. } err;
  916. uint32_t wme_ac_type[WME_AC_MAX];
  917. uint32_t reception_type[MAX_RECEPTION_TYPES];
  918. struct cdp_pkt_type pkt_type[DOT11_MAX];
  919. uint32_t sgi_count[MAX_GI];
  920. uint32_t nss[SS_COUNT];
  921. uint32_t ppdu_nss[SS_COUNT];
  922. uint32_t mpdu_cnt_fcs_ok;
  923. uint32_t mpdu_cnt_fcs_err;
  924. struct cdp_pkt_type su_ax_ppdu_cnt;
  925. uint32_t ppdu_cnt[MAX_RECEPTION_TYPES];
  926. struct cdp_rx_mu rx_mu[RX_TYPE_MU_MAX];
  927. uint32_t bw[MAX_BW];
  928. uint32_t non_ampdu_cnt;
  929. uint32_t ampdu_cnt;
  930. uint32_t non_amsdu_cnt;
  931. uint32_t amsdu_cnt;
  932. uint32_t bar_recv_cnt;
  933. uint32_t avg_rssi;
  934. uint32_t rx_rate;
  935. uint32_t last_rx_rate;
  936. uint32_t rnd_avg_rx_rate;
  937. uint32_t avg_rx_rate;
  938. struct cdp_pkt_info dot11_rx_pkts;
  939. uint32_t rx_bytes_success_last;
  940. uint32_t rx_data_success_last;
  941. uint32_t rx_byte_rate;
  942. uint32_t rx_data_rate;
  943. uint32_t rx_retries;
  944. uint32_t rx_mpdus;
  945. uint32_t rx_ppdus;
  946. /*add for peer updated for ppdu*/
  947. uint32_t rx_aggr;
  948. uint32_t rx_discard;
  949. uint32_t rx_ratecode;
  950. uint32_t rx_flags;
  951. uint32_t rx_rssi_measured_time;
  952. uint8_t rssi;
  953. uint8_t last_rssi;
  954. uint32_t multipass_rx_pkt_drop;
  955. uint32_t rx_mpdu_cnt[MAX_MCS];
  956. };
  957. /* struct cdp_tx_ingress_stats - Tx ingress Stats
  958. * @rcvd: Total packets received for transmission
  959. * @processed: Tx packets processed
  960. * @inspect_pkts: Total packets passed to inspect handler
  961. * @nawds_mcast: NAWDS Multicast Packet Count
  962. * @bcast: Number of broadcast packets
  963. * @raw_pkt: Total Raw packets
  964. * @dma_map_error: DMA map error
  965. * @num_seg: No of segments in TSO packets
  966. * @tso_pkt:total no of TSO packets
  967. * @non_tso_pkts: non - TSO packets
  968. * @dropped_host: TSO packets dropped by host
  969. * @dropped_target:TSO packets dropped by target
  970. * @sg_pkt: Total scatter gather packets
  971. * @non_sg_pkts: non SG packets
  972. * @dropped_host: SG packets dropped by host
  973. * @dropped_target: SG packets dropped by target
  974. * @dma_map_error: Dma map error
  975. * @mcast_pkt: total no of multicast conversion packets
  976. * @dropped_map_error: packets dropped due to map error
  977. * @dropped_self_mac: packets dropped due to self Mac address
  978. * @dropped_send_fail: Packets dropped due to send fail
  979. * @ucast: total unicast packets transmitted
  980. * @fail_seg_alloc: Segment allocation failure
  981. * @clone_fail: NBUF clone failure
  982. * @dropped_pkt: Total scatter gather packets
  983. * @desc_na: Desc Not Available
  984. * @exc_desc_na: Exception desc Not Available
  985. * @ring_full: ring full
  986. * @enqueue_fail: hw enqueue fail
  987. * @dma_error: dma fail
  988. * @res_full: Resource Full: Congestion Control
  989. * @exception_fw: packets sent to fw
  990. * @completion_fw: packets completions received from fw
  991. * @cce_classified:Number of packets classified by CCE
  992. * @cce_classified_raw:Number of raw packets classified by CCE
  993. * @sniffer_rcvd: Number of packets received with ppdu cookie
  994. */
  995. struct cdp_tx_ingress_stats {
  996. struct cdp_pkt_info rcvd;
  997. struct cdp_pkt_info processed;
  998. struct cdp_pkt_info reinject_pkts;
  999. struct cdp_pkt_info inspect_pkts;
  1000. struct cdp_pkt_info nawds_mcast;
  1001. struct cdp_pkt_info bcast;
  1002. struct {
  1003. struct cdp_pkt_info raw_pkt;
  1004. uint32_t dma_map_error;
  1005. uint32_t invalid_raw_pkt_datatype;
  1006. } raw;
  1007. /* Scatter Gather packet info */
  1008. struct {
  1009. struct cdp_pkt_info sg_pkt;
  1010. struct cdp_pkt_info non_sg_pkts;
  1011. struct cdp_pkt_info dropped_host;
  1012. uint32_t dropped_target;
  1013. uint32_t dma_map_error;
  1014. } sg;
  1015. /* Multicast Enhancement packets info */
  1016. struct {
  1017. struct cdp_pkt_info mcast_pkt;
  1018. uint32_t dropped_map_error;
  1019. uint32_t dropped_self_mac;
  1020. uint32_t dropped_send_fail;
  1021. uint32_t ucast;
  1022. uint32_t fail_seg_alloc;
  1023. uint32_t clone_fail;
  1024. } mcast_en;
  1025. /* Packets dropped on the Tx side */
  1026. struct {
  1027. struct cdp_pkt_info dropped_pkt;
  1028. struct cdp_pkt_info desc_na;
  1029. struct cdp_pkt_info exc_desc_na;
  1030. uint32_t ring_full;
  1031. uint32_t enqueue_fail;
  1032. uint32_t dma_error;
  1033. uint32_t res_full;
  1034. /* headroom insufficient */
  1035. uint32_t headroom_insufficient;
  1036. } dropped;
  1037. /* Mesh packets info */
  1038. struct {
  1039. uint32_t exception_fw;
  1040. uint32_t completion_fw;
  1041. } mesh;
  1042. uint32_t cce_classified;
  1043. uint32_t cce_classified_raw;
  1044. struct cdp_pkt_info sniffer_rcvd;
  1045. struct cdp_tso_stats tso_stats;
  1046. };
  1047. /* struct cdp_vdev_stats - vdev stats structure
  1048. * @tx_i: ingress tx stats
  1049. * @tx: cdp tx stats
  1050. * @rx: cdp rx stats
  1051. * @tso_stats: tso stats
  1052. */
  1053. struct cdp_vdev_stats {
  1054. struct cdp_tx_ingress_stats tx_i;
  1055. struct cdp_tx_stats tx;
  1056. struct cdp_rx_stats rx;
  1057. struct cdp_tso_stats tso_stats;
  1058. };
  1059. /* struct cdp_peer_stats - peer stats structure
  1060. * @tx: cdp tx stats
  1061. * @rx: cdp rx stats
  1062. */
  1063. struct cdp_peer_stats {
  1064. /* CDP Tx Stats */
  1065. struct cdp_tx_stats tx;
  1066. /* CDP Rx Stats */
  1067. struct cdp_rx_stats rx;
  1068. };
  1069. /* struct cdp_interface_peer_stats - interface structure for txrx peer stats
  1070. * @peer_mac: peer mac address
  1071. * @vdev_id : vdev_id for the peer
  1072. * @last_peer_tx_rate: peer tx rate for last transmission
  1073. * @peer_tx_rate: tx rate for current transmission
  1074. * @peer_rssi: current rssi value of peer
  1075. * @tx_packet_count: tx packet count
  1076. * @rx_packet_count: rx packet count
  1077. * @tx_byte_count: tx byte count
  1078. * @rx_byte_count: rx byte count
  1079. * @per: per error rate
  1080. * @ack_rssi: RSSI of the last ack received
  1081. * @rssi_changed: denotes rssi is changed
  1082. */
  1083. struct cdp_interface_peer_stats {
  1084. uint8_t peer_mac[QDF_MAC_ADDR_SIZE];
  1085. uint8_t vdev_id;
  1086. uint8_t rssi_changed;
  1087. uint32_t last_peer_tx_rate;
  1088. uint32_t peer_tx_rate;
  1089. uint32_t peer_rssi;
  1090. uint32_t tx_packet_count;
  1091. uint32_t rx_packet_count;
  1092. uint32_t tx_byte_count;
  1093. uint32_t rx_byte_count;
  1094. uint32_t per;
  1095. uint32_t ack_rssi;
  1096. };
  1097. /* Tx completions per interrupt */
  1098. struct cdp_hist_tx_comp {
  1099. uint32_t pkts_1;
  1100. uint32_t pkts_2_20;
  1101. uint32_t pkts_21_40;
  1102. uint32_t pkts_41_60;
  1103. uint32_t pkts_61_80;
  1104. uint32_t pkts_81_100;
  1105. uint32_t pkts_101_200;
  1106. uint32_t pkts_201_plus;
  1107. };
  1108. /* Rx ring descriptors reaped per interrupt */
  1109. struct cdp_hist_rx_ind {
  1110. uint32_t pkts_1;
  1111. uint32_t pkts_2_20;
  1112. uint32_t pkts_21_40;
  1113. uint32_t pkts_41_60;
  1114. uint32_t pkts_61_80;
  1115. uint32_t pkts_81_100;
  1116. uint32_t pkts_101_200;
  1117. uint32_t pkts_201_plus;
  1118. };
  1119. struct cdp_htt_tlv_hdr {
  1120. /* BIT [11 : 0] :- tag
  1121. * BIT [23 : 12] :- length
  1122. * BIT [31 : 24] :- reserved
  1123. */
  1124. uint32_t tag__length;
  1125. };
  1126. #define HTT_STATS_SUBTYPE_MAX 16
  1127. struct cdp_htt_rx_pdev_fw_stats_tlv {
  1128. struct cdp_htt_tlv_hdr tlv_hdr;
  1129. /* BIT [ 7 : 0] :- mac_id
  1130. * BIT [31 : 8] :- reserved
  1131. */
  1132. uint32_t mac_id__word;
  1133. /* Num PPDU status processed from HW */
  1134. uint32_t ppdu_recvd;
  1135. /* Num MPDU across PPDUs with FCS ok */
  1136. uint32_t mpdu_cnt_fcs_ok;
  1137. /* Num MPDU across PPDUs with FCS err */
  1138. uint32_t mpdu_cnt_fcs_err;
  1139. /* Num MSDU across PPDUs */
  1140. uint32_t tcp_msdu_cnt;
  1141. /* Num MSDU across PPDUs */
  1142. uint32_t tcp_ack_msdu_cnt;
  1143. /* Num MSDU across PPDUs */
  1144. uint32_t udp_msdu_cnt;
  1145. /* Num MSDU across PPDUs */
  1146. uint32_t other_msdu_cnt;
  1147. /* Num MPDU on FW ring indicated */
  1148. uint32_t fw_ring_mpdu_ind;
  1149. /* Num MGMT MPDU given to protocol */
  1150. uint32_t fw_ring_mgmt_subtype[HTT_STATS_SUBTYPE_MAX];
  1151. /* Num ctrl MPDU given to protocol */
  1152. uint32_t fw_ring_ctrl_subtype[HTT_STATS_SUBTYPE_MAX];
  1153. /* Num mcast data packet received */
  1154. uint32_t fw_ring_mcast_data_msdu;
  1155. /* Num broadcast data packet received */
  1156. uint32_t fw_ring_bcast_data_msdu;
  1157. /* Num unicat data packet received */
  1158. uint32_t fw_ring_ucast_data_msdu;
  1159. /* Num null data packet received */
  1160. uint32_t fw_ring_null_data_msdu;
  1161. /* Num MPDU on FW ring dropped */
  1162. uint32_t fw_ring_mpdu_drop;
  1163. /* Num buf indication to offload */
  1164. uint32_t ofld_local_data_ind_cnt;
  1165. /* Num buf recycle from offload */
  1166. uint32_t ofld_local_data_buf_recycle_cnt;
  1167. /* Num buf indication to data_rx */
  1168. uint32_t drx_local_data_ind_cnt;
  1169. /* Num buf recycle from data_rx */
  1170. uint32_t drx_local_data_buf_recycle_cnt;
  1171. /* Num buf indication to protocol */
  1172. uint32_t local_nondata_ind_cnt;
  1173. /* Num buf recycle from protocol */
  1174. uint32_t local_nondata_buf_recycle_cnt;
  1175. /* Num buf fed */
  1176. uint32_t fw_status_buf_ring_refill_cnt;
  1177. /* Num ring empty encountered */
  1178. uint32_t fw_status_buf_ring_empty_cnt;
  1179. /* Num buf fed */
  1180. uint32_t fw_pkt_buf_ring_refill_cnt;
  1181. /* Num ring empty encountered */
  1182. uint32_t fw_pkt_buf_ring_empty_cnt;
  1183. /* Num buf fed */
  1184. uint32_t fw_link_buf_ring_refill_cnt;
  1185. /* Num ring empty encountered */
  1186. uint32_t fw_link_buf_ring_empty_cnt;
  1187. /* Num buf fed */
  1188. uint32_t host_pkt_buf_ring_refill_cnt;
  1189. /* Num ring empty encountered */
  1190. uint32_t host_pkt_buf_ring_empty_cnt;
  1191. /* Num buf fed */
  1192. uint32_t mon_pkt_buf_ring_refill_cnt;
  1193. /* Num ring empty encountered */
  1194. uint32_t mon_pkt_buf_ring_empty_cnt;
  1195. /* Num buf fed */
  1196. uint32_t mon_status_buf_ring_refill_cnt;
  1197. /* Num ring empty encountered */
  1198. uint32_t mon_status_buf_ring_empty_cnt;
  1199. /* Num buf fed */
  1200. uint32_t mon_desc_buf_ring_refill_cnt;
  1201. /* Num ring empty encountered */
  1202. uint32_t mon_desc_buf_ring_empty_cnt;
  1203. /* Num buf fed */
  1204. uint32_t mon_dest_ring_update_cnt;
  1205. /* Num ring full encountered */
  1206. uint32_t mon_dest_ring_full_cnt;
  1207. /* Num rx suspend is attempted */
  1208. uint32_t rx_suspend_cnt;
  1209. /* Num rx suspend failed */
  1210. uint32_t rx_suspend_fail_cnt;
  1211. /* Num rx resume attempted */
  1212. uint32_t rx_resume_cnt;
  1213. /* Num rx resume failed */
  1214. uint32_t rx_resume_fail_cnt;
  1215. /* Num rx ring switch */
  1216. uint32_t rx_ring_switch_cnt;
  1217. /* Num rx ring restore */
  1218. uint32_t rx_ring_restore_cnt;
  1219. /* Num rx flush issued */
  1220. uint32_t rx_flush_cnt;
  1221. };
  1222. /* == TX PDEV STATS == */
  1223. struct cdp_htt_tx_pdev_stats_cmn_tlv {
  1224. struct cdp_htt_tlv_hdr tlv_hdr;
  1225. /* BIT [ 7 : 0] :- mac_id
  1226. * BIT [31 : 8] :- reserved
  1227. */
  1228. uint32_t mac_id__word;
  1229. /* Num queued to HW */
  1230. uint32_t hw_queued;
  1231. /* Num PPDU reaped from HW */
  1232. uint32_t hw_reaped;
  1233. /* Num underruns */
  1234. uint32_t underrun;
  1235. /* Num HW Paused counter. */
  1236. uint32_t hw_paused;
  1237. /* Num HW flush counter. */
  1238. uint32_t hw_flush;
  1239. /* Num HW filtered counter. */
  1240. uint32_t hw_filt;
  1241. /* Num PPDUs cleaned up in TX abort */
  1242. uint32_t tx_abort;
  1243. /* Num MPDUs requed by SW */
  1244. uint32_t mpdu_requed;
  1245. /* excessive retries */
  1246. uint32_t tx_xretry;
  1247. /* Last used data hw rate code */
  1248. uint32_t data_rc;
  1249. /* frames dropped due to excessive sw retries */
  1250. uint32_t mpdu_dropped_xretry;
  1251. /* illegal rate phy errors */
  1252. uint32_t illgl_rate_phy_err;
  1253. /* wal pdev continuous xretry */
  1254. uint32_t cont_xretry;
  1255. /* wal pdev continuous xretry */
  1256. uint32_t tx_timeout;
  1257. /* wal pdev resets */
  1258. uint32_t pdev_resets;
  1259. /* PhY/BB underrun */
  1260. uint32_t phy_underrun;
  1261. /* MPDU is more than txop limit */
  1262. uint32_t txop_ovf;
  1263. /* Number of Sequences posted */
  1264. uint32_t seq_posted;
  1265. /* Number of Sequences failed queueing */
  1266. uint32_t seq_failed_queueing;
  1267. /* Number of Sequences completed */
  1268. uint32_t seq_completed;
  1269. /* Number of Sequences restarted */
  1270. uint32_t seq_restarted;
  1271. /* Number of MU Sequences posted */
  1272. uint32_t mu_seq_posted;
  1273. /* Number of time HW ring is paused between seq switch within ISR */
  1274. uint32_t seq_switch_hw_paused;
  1275. /* Number of times seq continuation in DSR */
  1276. uint32_t next_seq_posted_dsr;
  1277. /* Number of times seq continuation in ISR */
  1278. uint32_t seq_posted_isr;
  1279. /* Number of seq_ctrl cached. */
  1280. uint32_t seq_ctrl_cached;
  1281. /* Number of MPDUs successfully transmitted */
  1282. uint32_t mpdu_count_tqm;
  1283. /* Number of MSDUs successfully transmitted */
  1284. uint32_t msdu_count_tqm;
  1285. /* Number of MPDUs dropped */
  1286. uint32_t mpdu_removed_tqm;
  1287. /* Number of MSDUs dropped */
  1288. uint32_t msdu_removed_tqm;
  1289. /* Num MPDUs flushed by SW, HWPAUSED, SW TXABORT (Reset,channel change) */
  1290. uint32_t mpdus_sw_flush;
  1291. /* Num MPDUs filtered by HW, all filter condition (TTL expired) */
  1292. uint32_t mpdus_hw_filter;
  1293. /* Num MPDUs truncated by PDG (TXOP, TBTT, PPDU_duration based on rate, dyn_bw) */
  1294. uint32_t mpdus_truncated;
  1295. /* Num MPDUs that was tried but didn't receive ACK or BA */
  1296. uint32_t mpdus_ack_failed;
  1297. /* Num MPDUs that was dropped due to expiry (MSDU TTL). */
  1298. uint32_t mpdus_expired;
  1299. /* Num MPDUs that was retried within seq_ctrl (MGMT/LEGACY) */
  1300. uint32_t mpdus_seq_hw_retry;
  1301. /* Num of TQM acked cmds processed */
  1302. uint32_t ack_tlv_proc;
  1303. /* coex_abort_mpdu_cnt valid. */
  1304. uint32_t coex_abort_mpdu_cnt_valid;
  1305. /* coex_abort_mpdu_cnt from TX FES stats. */
  1306. uint32_t coex_abort_mpdu_cnt;
  1307. /* Number of total PPDUs(DATA, MGMT, excludes selfgen) tried over the air (OTA) */
  1308. uint32_t num_total_ppdus_tried_ota;
  1309. /* Number of data PPDUs tried over the air (OTA) */
  1310. uint32_t num_data_ppdus_tried_ota;
  1311. /* Num Local control/mgmt frames (MSDUs) queued */
  1312. uint32_t local_ctrl_mgmt_enqued;
  1313. /* local_ctrl_mgmt_freed:
  1314. * Num Local control/mgmt frames (MSDUs) done
  1315. * It includes all local ctrl/mgmt completions
  1316. * (acked, no ack, flush, TTL, etc)
  1317. */
  1318. uint32_t local_ctrl_mgmt_freed;
  1319. /* Num Local data frames (MSDUs) queued */
  1320. uint32_t local_data_enqued;
  1321. /* local_data_freed:
  1322. * Num Local data frames (MSDUs) done
  1323. * It includes all local data completions
  1324. * (acked, no ack, flush, TTL, etc)
  1325. */
  1326. uint32_t local_data_freed;
  1327. /* Num MPDUs tried by SW */
  1328. uint32_t mpdu_tried;
  1329. /* Num of waiting seq posted in isr completion handler */
  1330. uint32_t isr_wait_seq_posted;
  1331. uint32_t tx_active_dur_us_low;
  1332. uint32_t tx_active_dur_us_high;
  1333. };
  1334. struct cdp_htt_tx_pdev_stats_urrn_tlv_v {
  1335. struct cdp_htt_tlv_hdr tlv_hdr;
  1336. uint32_t urrn_stats[1]; /* HTT_TX_PDEV_MAX_URRN_STATS */
  1337. };
  1338. /* NOTE: Variable length TLV, use length spec to infer array size */
  1339. struct cdp_htt_tx_pdev_stats_flush_tlv_v {
  1340. struct cdp_htt_tlv_hdr tlv_hdr;
  1341. uint32_t flush_errs[1]; /* HTT_TX_PDEV_MAX_FLUSH_REASON_STATS */
  1342. };
  1343. /* NOTE: Variable length TLV, use length spec to infer array size */
  1344. struct cdp_htt_tx_pdev_stats_sifs_tlv_v {
  1345. struct cdp_htt_tlv_hdr tlv_hdr;
  1346. uint32_t sifs_status[1]; /* HTT_TX_PDEV_MAX_SIFS_BURST_STATS */
  1347. };
  1348. /* NOTE: Variable length TLV, use length spec to infer array size */
  1349. struct cdp_htt_tx_pdev_stats_phy_err_tlv_v {
  1350. struct cdp_htt_tlv_hdr tlv_hdr;
  1351. uint32_t phy_errs[1]; /* HTT_TX_PDEV_MAX_PHY_ERR_STATS */
  1352. };
  1353. /* == RX PDEV/SOC STATS == */
  1354. /* HTT_STATS_RX_SOC_FW_STATS_TAG */
  1355. struct cdp_htt_rx_soc_fw_stats_tlv {
  1356. struct cdp_htt_tlv_hdr tlv_hdr;
  1357. /* Num Packets received on REO FW ring */
  1358. uint32_t fw_reo_ring_data_msdu;
  1359. /* Num bc/mc packets indicated from fw to host */
  1360. uint32_t fw_to_host_data_msdu_bcmc;
  1361. /* Num unicast packets indicated from fw to host */
  1362. uint32_t fw_to_host_data_msdu_uc;
  1363. /* Num remote buf recycle from offload */
  1364. uint32_t ofld_remote_data_buf_recycle_cnt;
  1365. /* Num remote free buf given to offload */
  1366. uint32_t ofld_remote_free_buf_indication_cnt;
  1367. };
  1368. struct cdp_htt_rx_soc_fw_refill_ring_num_refill_tlv_v {
  1369. struct cdp_htt_tlv_hdr tlv_hdr;
  1370. /* Num total buf refilled from refill ring */
  1371. uint32_t refill_ring_num_refill[1]; /* HTT_RX_STATS_REFILL_MAX_RING */
  1372. };
  1373. struct cdp_htt_rx_pdev_fw_ring_mpdu_err_tlv_v {
  1374. struct cdp_htt_tlv_hdr tlv_hdr;
  1375. /* Num error MPDU for each RxDMA error type */
  1376. uint32_t fw_ring_mpdu_err[1]; /* HTT_RX_STATS_RXDMA_MAX_ERR */
  1377. };
  1378. struct cdp_htt_rx_pdev_fw_mpdu_drop_tlv_v {
  1379. struct cdp_htt_tlv_hdr tlv_hdr;
  1380. /* Num MPDU dropped */
  1381. uint32_t fw_mpdu_drop[1]; /* HTT_RX_STATS_FW_DROP_REASON_MAX */
  1382. };
  1383. #define HTT_STATS_PHY_ERR_MAX 43
  1384. struct cdp_htt_rx_pdev_fw_stats_phy_err_tlv {
  1385. struct cdp_htt_tlv_hdr tlv_hdr;
  1386. /* BIT [ 7 : 0] :- mac_id
  1387. * BIT [31 : 8] :- reserved
  1388. */
  1389. uint32_t mac_id__word;
  1390. /* Num of phy err */
  1391. uint32_t total_phy_err_cnt;
  1392. /* Counts of different types of phy errs
  1393. * The mapping of PHY error types to phy_err array elements is HW dependent.
  1394. * The only currently-supported mapping is shown below:
  1395. *
  1396. * 0 phyrx_err_phy_off Reception aborted due to receiving a PHY_OFF TLV
  1397. * 1 phyrx_err_synth_off
  1398. * 2 phyrx_err_ofdma_timing
  1399. * 3 phyrx_err_ofdma_signal_parity
  1400. * 4 phyrx_err_ofdma_rate_illegal
  1401. * 5 phyrx_err_ofdma_length_illegal
  1402. * 6 phyrx_err_ofdma_restart
  1403. * 7 phyrx_err_ofdma_service
  1404. * 8 phyrx_err_ppdu_ofdma_power_drop
  1405. * 9 phyrx_err_cck_blokker
  1406. * 10 phyrx_err_cck_timing
  1407. * 11 phyrx_err_cck_header_crc
  1408. * 12 phyrx_err_cck_rate_illegal
  1409. * 13 phyrx_err_cck_length_illegal
  1410. * 14 phyrx_err_cck_restart
  1411. * 15 phyrx_err_cck_service
  1412. * 16 phyrx_err_cck_power_drop
  1413. * 17 phyrx_err_ht_crc_err
  1414. * 18 phyrx_err_ht_length_illegal
  1415. * 19 phyrx_err_ht_rate_illegal
  1416. * 20 phyrx_err_ht_zlf
  1417. * 21 phyrx_err_false_radar_ext
  1418. * 22 phyrx_err_green_field
  1419. * 23 phyrx_err_bw_gt_dyn_bw
  1420. * 24 phyrx_err_leg_ht_mismatch
  1421. * 25 phyrx_err_vht_crc_error
  1422. * 26 phyrx_err_vht_siga_unsupported
  1423. * 27 phyrx_err_vht_lsig_len_invalid
  1424. * 28 phyrx_err_vht_ndp_or_zlf
  1425. * 29 phyrx_err_vht_nsym_lt_zero
  1426. * 30 phyrx_err_vht_rx_extra_symbol_mismatch
  1427. * 31 phyrx_err_vht_rx_skip_group_id0
  1428. * 32 phyrx_err_vht_rx_skip_group_id1to62
  1429. * 33 phyrx_err_vht_rx_skip_group_id63
  1430. * 34 phyrx_err_ofdm_ldpc_decoder_disabled
  1431. * 35 phyrx_err_defer_nap
  1432. * 36 phyrx_err_fdomain_timeout
  1433. * 37 phyrx_err_lsig_rel_check
  1434. * 38 phyrx_err_bt_collision
  1435. * 39 phyrx_err_unsupported_mu_feedback
  1436. * 40 phyrx_err_ppdu_tx_interrupt_rx
  1437. * 41 phyrx_err_unsupported_cbf
  1438. * 42 phyrx_err_other
  1439. */
  1440. uint32_t phy_err[HTT_STATS_PHY_ERR_MAX];
  1441. };
  1442. struct cdp_htt_rx_soc_fw_refill_ring_empty_tlv_v {
  1443. struct cdp_htt_tlv_hdr tlv_hdr;
  1444. /* Num ring empty encountered */
  1445. uint32_t refill_ring_empty_cnt[1]; /* HTT_RX_STATS_REFILL_MAX_RING */
  1446. };
  1447. struct cdp_htt_tx_pdev_stats {
  1448. struct cdp_htt_tx_pdev_stats_cmn_tlv cmn_tlv;
  1449. struct cdp_htt_tx_pdev_stats_urrn_tlv_v underrun_tlv;
  1450. struct cdp_htt_tx_pdev_stats_sifs_tlv_v sifs_tlv;
  1451. struct cdp_htt_tx_pdev_stats_flush_tlv_v flush_tlv;
  1452. struct cdp_htt_tx_pdev_stats_phy_err_tlv_v phy_err_tlv;
  1453. };
  1454. struct cdp_htt_rx_soc_stats_t {
  1455. struct cdp_htt_rx_soc_fw_stats_tlv fw_tlv;
  1456. struct cdp_htt_rx_soc_fw_refill_ring_empty_tlv_v fw_refill_ring_empty_tlv;
  1457. struct cdp_htt_rx_soc_fw_refill_ring_num_refill_tlv_v fw_refill_ring_num_refill_tlv;
  1458. };
  1459. struct cdp_htt_rx_pdev_stats {
  1460. struct cdp_htt_rx_soc_stats_t soc_stats;
  1461. struct cdp_htt_rx_pdev_fw_stats_tlv fw_stats_tlv;
  1462. struct cdp_htt_rx_pdev_fw_ring_mpdu_err_tlv_v fw_ring_mpdu_err_tlv;
  1463. struct cdp_htt_rx_pdev_fw_mpdu_drop_tlv_v fw_ring_mpdu_drop;
  1464. struct cdp_htt_rx_pdev_fw_stats_phy_err_tlv fw_stats_phy_err_tlv;
  1465. };
  1466. #ifdef WLAN_SUPPORT_RX_PROTOCOL_TYPE_TAG
  1467. /* Since protocol type enumeration value is passed as CCE metadata
  1468. * to firmware, add a constant offset before passing it to firmware
  1469. */
  1470. #define RX_PROTOCOL_TAG_START_OFFSET 128
  1471. /* This should align with packet type enumerations in ieee80211_ioctl.h
  1472. * and wmi_unified_param.h files
  1473. */
  1474. #define RX_PROTOCOL_TAG_MAX 24
  1475. /* Macro that should be used to dump the statistics counter for all
  1476. * protocol types
  1477. */
  1478. #define RX_PROTOCOL_TAG_ALL 0xff
  1479. #endif /* WLAN_SUPPORT_RX_PROTOCOL_TYPE_TAG */
  1480. #define OFDMA_NUM_RU_SIZE 7
  1481. #define OFDMA_NUM_USERS 37
  1482. #if defined(WLAN_CFR_ENABLE) && defined(WLAN_ENH_CFR_ENABLE)
  1483. /*
  1484. * mac_freeze_capture_reason - capture reason counters
  1485. * @FREEZE_REASON_TM: When m_directed_ftm is enabled, this CFR data is
  1486. * captured for a Timing Measurement (TM) frame.
  1487. * @FREEZE_REASON_FTM: When m_directed_ftm is enabled, this CFR data is
  1488. * captured for a Fine Timing Measurement (FTM) frame.
  1489. * @FREEZE_REASON_ACK_RESP_TO_TM_FTM: When m_all_ftm_ack is enabled, this CFR
  1490. * data is captured for an ACK received for the FTM/TM frame sent to a station.
  1491. * @FREEZE_REASON_TA_RA_TYPE_FILTER: When m_ta_ra_filter is enabled, this CFR
  1492. * data is captured for a PPDU received,since the CFR TA_RA filter is met.
  1493. * @FREEZE_REASON_NDPA_NDP: When m_ndpa_ndp_directed(or)m_ndpa_ndp_all is
  1494. * enabled, this CFR data is captured for an NDP frame received.
  1495. * @FREEZE_REASON_ALL_PACKET: When m_all_packet is enabled, this CFR data is
  1496. * captured for an incoming PPDU.
  1497. */
  1498. enum mac_freeze_capture_reason {
  1499. FREEZE_REASON_TM = 0,
  1500. FREEZE_REASON_FTM,
  1501. FREEZE_REASON_ACK_RESP_TO_TM_FTM,
  1502. FREEZE_REASON_TA_RA_TYPE_FILTER,
  1503. FREEZE_REASON_NDPA_NDP,
  1504. FREEZE_REASON_ALL_PACKET,
  1505. FREEZE_REASON_MAX,
  1506. };
  1507. /*
  1508. * chan_capture_status: capture status counters
  1509. * @CAPTURE_IDLE: CFR data is not captured, since VCSR setting for CFR/RCC is
  1510. * not enabled.
  1511. * @CAPTURE_BUSY: CFR data is not available, since previous channel
  1512. * upload is in progress
  1513. * @CAPTURE_ACTIVE: CFR data is captured in HW registers
  1514. * @CAPTURE_NO_BUFFER: CFR data is not captured, since no buffer is available
  1515. * in IPC ring to DMA CFR data
  1516. */
  1517. enum chan_capture_status {
  1518. CAPTURE_IDLE = 0,
  1519. CAPTURE_BUSY,
  1520. CAPTURE_ACTIVE,
  1521. CAPTURE_NO_BUFFER,
  1522. CAPTURE_MAX,
  1523. };
  1524. /* struct cdp_cfr_rcc_stats - CFR RCC debug statistics
  1525. * @bb_captured_channel_cnt: No. of PPDUs for which MAC sent Freeze TLV to PHY
  1526. * @bb_captured_timeout_cnt: No. of PPDUs for which CFR filter criteria matched
  1527. * but MAC did not send Freeze TLV to PHY as time exceeded freeze tlv delay
  1528. * count threshold
  1529. * @rx_loc_info_valid_cnt: No. of PPDUs for which PHY could find a valid buffer
  1530. * in ucode IPC ring
  1531. * @chan_capture_status[]: capture status counters
  1532. * [0] - No. of PPDUs with capture status CAPTURE_IDLE
  1533. * [1] - No. of PPDUs with capture status CAPTURE_BUSY
  1534. * [2] - No. of PPDUs with capture status CAPTURE_ACTIVE
  1535. * [3] - No. of PPDUs with capture status CAPTURE_NO_BUFFER
  1536. * @reason_cnt[]: capture reason counters
  1537. * [0] - No. PPDUs filtered due to freeze_reason_TM
  1538. * [1] - No. PPDUs filtered due to freeze_reason_FTM
  1539. * [2] - No. PPDUs filtered due to freeze_reason_ACK_resp_to_TM_FTM
  1540. * [3] - No. PPDUs filtered due to freeze_reason_TA_RA_TYPE_FILTER
  1541. * [4] - No. PPDUs filtered due to freeze_reason_NDPA_NDP
  1542. * [5] - No. PPDUs filtered due to freeze_reason_ALL_PACKET
  1543. */
  1544. struct cdp_cfr_rcc_stats {
  1545. uint64_t bb_captured_channel_cnt;
  1546. uint64_t bb_captured_timeout_cnt;
  1547. uint64_t rx_loc_info_valid_cnt;
  1548. uint64_t chan_capture_status[CAPTURE_MAX];
  1549. uint64_t reason_cnt[FREEZE_REASON_MAX];
  1550. };
  1551. #else
  1552. struct cdp_cfr_rcc_stats {
  1553. };
  1554. #endif
  1555. /* struct cdp_pdev_stats - pdev stats
  1556. * @msdu_not_done: packets dropped because msdu done bit not set
  1557. * @mec:Multicast Echo check
  1558. * @mesh_filter: Mesh Filtered packets
  1559. * @mon_rx_drop: packets dropped on monitor vap
  1560. * @wifi_parse: rxdma errors due to wifi parse error
  1561. * @mon_radiotap_update_err: not enough space to update radiotap
  1562. * @pkts: total packets replenished
  1563. * @rxdma_err: rxdma errors for replenished
  1564. * @nbuf_alloc_fail: nbuf alloc failed
  1565. * @map_err: Mapping failure
  1566. * @x86_fail: x86 failures
  1567. * @low_thresh_intrs: low threshold interrupts
  1568. * @rx_raw_pkts: Rx Raw Packets
  1569. * @mesh_mem_alloc: Mesh Rx Stats Alloc fail
  1570. * @tso_desc_cnt: TSO descriptors
  1571. * @sg_desc_cnt: SG Descriptors
  1572. * @vlan_tag_stp_cnt: Vlan tagged Stp packets in wifi parse error
  1573. * @desc_alloc_fail: desc alloc failed errors
  1574. * @ip_csum_err: ip checksum errors
  1575. * @tcp_udp_csum_err: tcp/udp checksum errors
  1576. * @buf_freelist: buffers added back in freelist
  1577. * @tx_i: Tx Ingress stats
  1578. * @tx:CDP Tx Stats
  1579. * @rx: CDP Rx Stats
  1580. * @tx_comp_histogram: Number of Tx completions per interrupt
  1581. * @rx_ind_histogram: Number of Rx ring descriptors reaped per interrupt
  1582. * @ppdu_stats_counter: ppdu stats counter
  1583. * @cdp_delayed_ba_not_recev: counter for delayed ba not received
  1584. * @htt_tx_pdev_stats: htt pdev stats for tx
  1585. * @htt_rx_pdev_stats: htt pdev stats for rx
  1586. * @data_rx_ru_size: UL ofdma data ru size counter array
  1587. * @nondata_rx_ru_size: UL ofdma non data ru size counter array
  1588. * @data_rx_ppdu: data rx ppdu counter
  1589. * @data_user: data user counter array
  1590. * @tx_ppdu_proc: stats counter for tx ppdu processed
  1591. * @ack_ba_comes_twice: stats counter for ack_ba_comes twice
  1592. * @ppdu_drop: stats counter for ppdu_desc drop once threshold reached
  1593. * @ppdu_wrap_drop: stats counter for ppdu desc drop on wrap around
  1594. */
  1595. struct cdp_pdev_stats {
  1596. struct {
  1597. uint32_t msdu_not_done;
  1598. uint32_t mec;
  1599. uint32_t mesh_filter;
  1600. uint32_t wifi_parse;
  1601. /* Monitor mode related */
  1602. uint32_t mon_rx_drop;
  1603. uint32_t mon_radiotap_update_err;
  1604. } dropped;
  1605. struct {
  1606. struct cdp_pkt_info pkts;
  1607. uint32_t rxdma_err;
  1608. uint32_t nbuf_alloc_fail;
  1609. uint32_t map_err;
  1610. uint32_t x86_fail;
  1611. uint32_t low_thresh_intrs;
  1612. } replenish;
  1613. uint32_t rx_raw_pkts;
  1614. uint32_t mesh_mem_alloc;
  1615. uint32_t tso_desc_cnt;
  1616. uint32_t sg_desc_cnt;
  1617. uint32_t vlan_tag_stp_cnt;
  1618. /* Rx errors */
  1619. struct {
  1620. uint32_t desc_alloc_fail;
  1621. uint32_t ip_csum_err;
  1622. uint32_t tcp_udp_csum_err;
  1623. uint32_t rxdma_error;
  1624. uint32_t reo_error;
  1625. } err;
  1626. uint32_t buf_freelist;
  1627. struct cdp_tx_ingress_stats tx_i;
  1628. struct cdp_tx_stats tx;
  1629. struct cdp_rx_stats rx;
  1630. struct cdp_hist_tx_comp tx_comp_histogram;
  1631. struct cdp_hist_rx_ind rx_ind_histogram;
  1632. uint64_t ppdu_stats_counter[CDP_PPDU_STATS_MAX_TAG];
  1633. uint32_t cdp_delayed_ba_not_recev;
  1634. struct cdp_htt_tx_pdev_stats htt_tx_pdev_stats;
  1635. struct cdp_htt_rx_pdev_stats htt_rx_pdev_stats;
  1636. /* Received wdi messages from fw */
  1637. uint32_t wdi_event[CDP_WDI_NUM_EVENTS];
  1638. struct cdp_tid_stats tid_stats;
  1639. /* numbers of data/nondata per RU sizes */
  1640. struct {
  1641. uint32_t data_rx_ru_size[OFDMA_NUM_RU_SIZE];
  1642. uint32_t nondata_rx_ru_size[OFDMA_NUM_RU_SIZE];
  1643. uint32_t data_rx_ppdu;
  1644. uint32_t data_users[OFDMA_NUM_USERS];
  1645. } ul_ofdma;
  1646. struct cdp_tso_stats tso_stats;
  1647. struct cdp_cfr_rcc_stats rcc;
  1648. uint64_t tx_ppdu_proc;
  1649. uint64_t ack_ba_comes_twice;
  1650. uint64_t ppdu_drop;
  1651. uint64_t ppdu_wrap_drop;
  1652. struct {
  1653. uint64_t num_bufs_consumed;
  1654. uint64_t num_pool_bufs_replenish;
  1655. uint64_t num_bufs_alloc_success;
  1656. } rx_buffer_pool;
  1657. };
  1658. /* struct cdp_peer_hmwds_ast_add_status - hmwds peer ast add status
  1659. * @vdev_id: vdev id
  1660. * @status: ast add status
  1661. * @peer_mac: peer mac address
  1662. * @ast_mac: ast node mac address
  1663. */
  1664. struct cdp_peer_hmwds_ast_add_status {
  1665. uint32_t vdev_id;
  1666. uint32_t status;
  1667. uint8_t peer_mac[QDF_MAC_ADDR_SIZE];
  1668. uint8_t ast_mac[QDF_MAC_ADDR_SIZE];
  1669. };
  1670. enum cdp_soc_param_t {
  1671. DP_SOC_PARAM_MSDU_EXCEPTION_DESC,
  1672. DP_SOC_PARAM_MAX,
  1673. };
  1674. #ifdef QCA_ENH_V3_STATS_SUPPORT
  1675. /*
  1676. * Enumeration of PDEV Configuration parameter
  1677. */
  1678. enum _dp_param_t {
  1679. DP_PARAM_MSDU_TTL,
  1680. DP_PARAM_TOTAL_Q_SIZE_RANGE0,
  1681. DP_PARAM_TOTAL_Q_SIZE_RANGE1,
  1682. DP_PARAM_TOTAL_Q_SIZE_RANGE2,
  1683. DP_PARAM_TOTAL_Q_SIZE_RANGE3,
  1684. DP_PARAM_VIDEO_DELAY_STATS_FC,
  1685. DP_PARAM_QFLUSHINTERVAL,
  1686. DP_PARAM_TOTAL_Q_SIZE,
  1687. DP_PARAM_MIN_THRESHOLD,
  1688. DP_PARAM_MAX_Q_LIMIT,
  1689. DP_PARAM_MIN_Q_LIMIT,
  1690. DP_PARAM_CONG_CTRL_TIMER_INTV,
  1691. DP_PARAM_STATS_TIMER_INTV,
  1692. DP_PARAM_ROTTING_TIMER_INTV,
  1693. DP_PARAM_LATENCY_PROFILE,
  1694. DP_PARAM_HOSTQ_DUMP,
  1695. DP_PARAM_TIDQ_MAP,
  1696. DP_PARAM_VIDEO_STATS_FC,
  1697. DP_PARAM_STATS_FC,
  1698. DP_PARAM_MAX,
  1699. };
  1700. #endif
  1701. /* Bitmasks for stats that can block */
  1702. #define EXT_TXRX_FW_STATS 0x0001
  1703. #endif