htt_stats.h 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597
  1. /*
  2. * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * @file htt_stats.h
  20. *
  21. * @details the public header file of HTT STATS
  22. */
  23. #ifndef __HTT_STATS_H__
  24. #define __HTT_STATS_H__
  25. #include <htt.h>
  26. /*
  27. * htt_dbg_ext_stats_type -
  28. * The base structure for each of the stats_type is only for reference
  29. * Host should use this information to know the type of TLVs to expect
  30. * for a particular stats type.
  31. *
  32. * Max supported stats :- 256.
  33. */
  34. enum htt_dbg_ext_stats_type {
  35. /* HTT_DBG_EXT_STATS_RESET
  36. * PARAM:
  37. * - config_param0 : start_offset (stats type)
  38. * - config_param1 : stats bmask from start offset
  39. * - config_param2 : stats bmask from start offset + 32
  40. * - config_param3 : stats bmask from start offset + 64
  41. * RESP MSG:
  42. * - No response sent.
  43. */
  44. HTT_DBG_EXT_STATS_RESET = 0,
  45. /* HTT_DBG_EXT_STATS_PDEV_TX
  46. * PARAMS:
  47. * - No Params
  48. * RESP MSG:
  49. * - htt_tx_pdev_stats_t
  50. */
  51. HTT_DBG_EXT_STATS_PDEV_TX = 1,
  52. /* HTT_DBG_EXT_STATS_PDEV_RX
  53. * PARAMS:
  54. * - No Params
  55. * RESP MSG:
  56. * - htt_rx_pdev_stats_t
  57. */
  58. HTT_DBG_EXT_STATS_PDEV_RX = 2,
  59. /* HTT_DBG_EXT_STATS_PDEV_TX_HWQ
  60. * PARAMS:
  61. * - config_param0: [Bit31: Bit0] HWQ mask
  62. * RESP MSG:
  63. * - htt_tx_hwq_stats_t
  64. */
  65. HTT_DBG_EXT_STATS_PDEV_TX_HWQ = 3,
  66. /* HTT_DBG_EXT_STATS_PDEV_TX_SCHED
  67. * PARAMS:
  68. * - config_param0: [Bit31: Bit0] TXQ mask
  69. * RESP MSG:
  70. * - htt_stats_tx_sched_t
  71. */
  72. HTT_DBG_EXT_STATS_PDEV_TX_SCHED = 4,
  73. /* HTT_DBG_EXT_STATS_PDEV_ERROR
  74. * PARAMS:
  75. * - No Params
  76. * RESP MSG:
  77. * - htt_hw_err_stats_t
  78. */
  79. HTT_DBG_EXT_STATS_PDEV_ERROR = 5,
  80. /* HTT_DBG_EXT_STATS_PDEV_TQM
  81. * PARAMS:
  82. * - No Params
  83. * RESP MSG:
  84. * - htt_tx_tqm_pdev_stats_t
  85. */
  86. HTT_DBG_EXT_STATS_PDEV_TQM = 6,
  87. /* HTT_DBG_EXT_STATS_TQM_CMDQ
  88. * PARAMS:
  89. * - config_param0:
  90. * [Bit15: Bit0 ] cmdq id :if 0xFFFF print all cmdq's
  91. * [Bit31: Bit16] reserved
  92. * RESP MSG:
  93. * - htt_tx_tqm_cmdq_stats_t
  94. */
  95. HTT_DBG_EXT_STATS_TQM_CMDQ = 7,
  96. /* HTT_DBG_EXT_STATS_TX_DE_INFO
  97. * PARAMS:
  98. * - No Params
  99. * RESP MSG:
  100. * - htt_tx_de_stats_t
  101. */
  102. HTT_DBG_EXT_STATS_TX_DE_INFO = 8,
  103. /* HTT_DBG_EXT_STATS_PDEV_TX_RATE
  104. * PARAMS:
  105. * - No Params
  106. * RESP MSG:
  107. * - htt_tx_pdev_rate_stats_t
  108. */
  109. HTT_DBG_EXT_STATS_PDEV_TX_RATE = 9,
  110. /* HTT_DBG_EXT_STATS_PDEV_RX_RATE
  111. * PARAMS:
  112. * - No Params
  113. * RESP MSG:
  114. * - htt_rx_pdev_rate_stats_t
  115. */
  116. HTT_DBG_EXT_STATS_PDEV_RX_RATE = 10,
  117. /* HTT_DBG_EXT_STATS_PEER_INFO
  118. * PARAMS:
  119. * - config_param0:
  120. * [Bit0] - [0] for sw_peer_id, [1] for mac_addr based request
  121. * [Bit15 : Bit 1] htt_peer_stats_req_mode_t
  122. * [Bit31 : Bit16] sw_peer_id
  123. * config_param1:
  124. * peer_stats_req_type_mask:32 (enum htt_peer_stats_tlv_enum)
  125. * 0 bit htt_peer_stats_cmn_tlv
  126. * 1 bit htt_peer_details_tlv
  127. * 2 bit htt_tx_peer_rate_stats_tlv
  128. * 3 bit htt_rx_peer_rate_stats_tlv
  129. * 4 bit htt_tx_tid_stats_tlv/htt_tx_tid_stats_v1_tlv
  130. * 5 bit htt_rx_tid_stats_tlv
  131. * 6 bit htt_msdu_flow_stats_tlv
  132. * - config_param2: [Bit31 : Bit0] mac_addr31to0
  133. * - config_param3: [Bit15 : Bit0] mac_addr47to32
  134. * [Bit31 : Bit16] reserved
  135. * RESP MSG:
  136. * - htt_peer_stats_t
  137. */
  138. HTT_DBG_EXT_STATS_PEER_INFO = 11,
  139. /* HTT_DBG_EXT_STATS_TX_SELFGEN_INFO
  140. * PARAMS:
  141. * - No Params
  142. * RESP MSG:
  143. * - htt_tx_pdev_selfgen_stats_t
  144. */
  145. HTT_DBG_EXT_STATS_TX_SELFGEN_INFO = 12,
  146. /* HTT_DBG_EXT_STATS_TX_MU_HWQ
  147. * PARAMS:
  148. * - config_param0: [Bit31: Bit0] HWQ mask
  149. * RESP MSG:
  150. * - htt_tx_hwq_mu_mimo_stats_t
  151. */
  152. HTT_DBG_EXT_STATS_TX_MU_HWQ = 13,
  153. /* HTT_DBG_EXT_STATS_RING_IF_INFO
  154. * PARAMS:
  155. * - config_param0:
  156. * [Bit15: Bit0 ] ring id :if 0xFFFF print all rings
  157. * [Bit31: Bit16] reserved
  158. * RESP MSG:
  159. * - htt_ring_if_stats_t
  160. */
  161. HTT_DBG_EXT_STATS_RING_IF_INFO = 14,
  162. /* HTT_DBG_EXT_STATS_SRNG_INFO
  163. * PARAMS:
  164. * - config_param0:
  165. * [Bit15: Bit0 ] ring id :if 0xFFFF print all rings
  166. * [Bit31: Bit16] reserved
  167. * - No Params
  168. * RESP MSG:
  169. * - htt_sring_stats_t
  170. */
  171. HTT_DBG_EXT_STATS_SRNG_INFO = 15,
  172. /* HTT_DBG_EXT_STATS_SFM_INFO
  173. * PARAMS:
  174. * - No Params
  175. * RESP MSG:
  176. * - htt_sfm_stats_t
  177. */
  178. HTT_DBG_EXT_STATS_SFM_INFO = 16,
  179. /* HTT_DBG_EXT_STATS_PDEV_TX_MU
  180. * PARAMS:
  181. * - No Params
  182. * RESP MSG:
  183. * - htt_tx_pdev_mu_mimo_stats_t
  184. */
  185. HTT_DBG_EXT_STATS_PDEV_TX_MU = 17,
  186. /* HTT_DBG_EXT_STATS_ACTIVE_PEERS_LIST
  187. * PARAMS:
  188. * - config_param0:
  189. * [Bit7 : Bit0] vdev_id:8
  190. * note:0xFF to get all active peers based on pdev_mask.
  191. * [Bit31 : Bit8] rsvd:24
  192. * RESP MSG:
  193. * - htt_active_peer_details_list_t
  194. */
  195. HTT_DBG_EXT_STATS_ACTIVE_PEERS_LIST = 18,
  196. /* HTT_DBG_EXT_STATS_PDEV_CCA_STATS
  197. * PARAMS:
  198. * - config_param0:
  199. * [Bit0] - 1 sec interval histogram
  200. * [Bit1] - 100ms interval histogram
  201. * [Bit3] - Cumulative CCA stats
  202. * RESP MSG:
  203. * - htt_pdev_cca_stats_t
  204. */
  205. HTT_DBG_EXT_STATS_PDEV_CCA_STATS = 19,
  206. /* HTT_DBG_EXT_STATS_TWT_SESSIONS
  207. * PARAMS:
  208. * - config_param0:
  209. * No params
  210. * RESP MSG:
  211. * - htt_pdev_twt_sessions_stats_t
  212. */
  213. HTT_DBG_EXT_STATS_TWT_SESSIONS = 20,
  214. /* HTT_DBG_EXT_STATS_REO_CNTS
  215. * PARAMS:
  216. * - config_param0:
  217. * No params
  218. * RESP MSG:
  219. * - htt_soc_reo_resource_stats_t
  220. */
  221. HTT_DBG_EXT_STATS_REO_RESOURCE_STATS = 21,
  222. /* HTT_DBG_EXT_STATS_TX_SOUNDING_INFO
  223. * PARAMS:
  224. * - config_param0:
  225. * [Bit0] vdev_id_set:1
  226. * set to 1 if vdev_id is set and vdev stats are requested
  227. * [Bit8 : Bit1] vdev_id:8
  228. * note:0xFF to get all active vdevs based on pdev_mask.
  229. * [Bit31 : Bit9] rsvd:22
  230. * RESP MSG:
  231. * - htt_tx_sounding_stats_t
  232. */
  233. HTT_DBG_EXT_STATS_TX_SOUNDING_INFO = 22,
  234. /* keep this last */
  235. HTT_DBG_NUM_EXT_STATS = 256,
  236. };
  237. typedef enum {
  238. HTT_STATS_TX_PDEV_CMN_TAG = 0, /* htt_tx_pdev_stats_cmn_tlv */
  239. HTT_STATS_TX_PDEV_UNDERRUN_TAG = 1, /* htt_tx_pdev_stats_urrn_tlv_v */
  240. HTT_STATS_TX_PDEV_SIFS_TAG = 2, /* htt_tx_pdev_stats_sifs_tlv_v */
  241. HTT_STATS_TX_PDEV_FLUSH_TAG = 3, /* htt_tx_pdev_stats_flush_tlv_v */
  242. HTT_STATS_TX_PDEV_PHY_ERR_TAG = 4, /* htt_tx_pdev_stats_phy_err_tlv_v */
  243. HTT_STATS_STRING_TAG = 5, /* htt_stats_string_tlv */
  244. HTT_STATS_TX_HWQ_CMN_TAG = 6, /* htt_tx_hwq_stats_cmn_tlv */
  245. HTT_STATS_TX_HWQ_DIFS_LATENCY_TAG = 7, /* htt_tx_hwq_difs_latency_stats_tlv_v */
  246. HTT_STATS_TX_HWQ_CMD_RESULT_TAG = 8, /* htt_tx_hwq_cmd_result_stats_tlv_v */
  247. HTT_STATS_TX_HWQ_CMD_STALL_TAG = 9, /* htt_tx_hwq_cmd_stall_stats_tlv_v */
  248. HTT_STATS_TX_HWQ_FES_STATUS_TAG = 10, /* htt_tx_hwq_fes_result_stats_tlv_v */
  249. HTT_STATS_TX_TQM_GEN_MPDU_TAG = 11, /* htt_tx_tqm_gen_mpdu_stats_tlv_v */
  250. HTT_STATS_TX_TQM_LIST_MPDU_TAG = 12, /* htt_tx_tqm_list_mpdu_stats_tlv_v */
  251. HTT_STATS_TX_TQM_LIST_MPDU_CNT_TAG = 13, /* htt_tx_tqm_list_mpdu_cnt_tlv_v */
  252. HTT_STATS_TX_TQM_CMN_TAG = 14, /* htt_tx_tqm_cmn_stats_tlv */
  253. HTT_STATS_TX_TQM_PDEV_TAG = 15, /* htt_tx_tqm_pdev_stats_tlv_v */
  254. HTT_STATS_TX_TQM_CMDQ_STATUS_TAG = 16, /* htt_tx_tqm_cmdq_status_tlv */
  255. HTT_STATS_TX_DE_EAPOL_PACKETS_TAG = 17, /* htt_tx_de_eapol_packets_stats_tlv */
  256. HTT_STATS_TX_DE_CLASSIFY_FAILED_TAG = 18, /* htt_tx_de_classify_failed_stats_tlv */
  257. HTT_STATS_TX_DE_CLASSIFY_STATS_TAG = 19, /* htt_tx_de_classify_stats_tlv */
  258. HTT_STATS_TX_DE_CLASSIFY_STATUS_TAG = 20, /* htt_tx_de_classify_status_stats_tlv */
  259. HTT_STATS_TX_DE_ENQUEUE_PACKETS_TAG = 21, /* htt_tx_de_enqueue_packets_stats_tlv */
  260. HTT_STATS_TX_DE_ENQUEUE_DISCARD_TAG = 22, /* htt_tx_de_enqueue_discard_stats_tlv */
  261. HTT_STATS_TX_DE_CMN_TAG = 23, /* htt_tx_de_cmn_stats_tlv */
  262. HTT_STATS_RING_IF_TAG = 24, /* htt_ring_if_stats_tlv */
  263. HTT_STATS_TX_PDEV_MU_MIMO_STATS_TAG = 25, /* htt_tx_pdev_mu_mimo_sch_stats_tlv */
  264. HTT_STATS_SFM_CMN_TAG = 26, /* htt_sfm_cmn_tlv */
  265. HTT_STATS_SRING_STATS_TAG = 27, /* htt_sring_stats_tlv */
  266. HTT_STATS_RX_PDEV_FW_STATS_TAG = 28, /* htt_rx_pdev_fw_stats_tlv */
  267. HTT_STATS_RX_PDEV_FW_RING_MPDU_ERR_TAG = 29, /* htt_rx_pdev_fw_ring_mpdu_err_tlv_v */
  268. HTT_STATS_RX_PDEV_FW_MPDU_DROP_TAG = 30, /* htt_rx_pdev_fw_mpdu_drop_tlv_v */
  269. HTT_STATS_RX_SOC_FW_STATS_TAG = 31, /* htt_rx_soc_fw_stats_tlv */
  270. HTT_STATS_RX_SOC_FW_REFILL_RING_EMPTY_TAG = 32, /* htt_rx_soc_fw_refill_ring_empty_tlv_v */
  271. HTT_STATS_RX_SOC_FW_REFILL_RING_NUM_REFILL_TAG = 33, /* htt_rx_soc_fw_refill_ring_num_refill_tlv_v */
  272. HTT_STATS_TX_PDEV_RATE_STATS_TAG = 34, /* htt_tx_pdev_rate_stats_tlv */
  273. HTT_STATS_RX_PDEV_RATE_STATS_TAG = 35, /* htt_rx_pdev_rate_stats_tlv */
  274. HTT_STATS_TX_PDEV_SCHEDULER_TXQ_STATS_TAG = 36, /* htt_tx_pdev_stats_sched_per_txq_tlv */
  275. HTT_STATS_TX_SCHED_CMN_TAG = 37, /* htt_stats_tx_sched_cmn_tlv */
  276. HTT_STATS_TX_PDEV_MUMIMO_MPDU_STATS_TAG = 38, /* htt_tx_pdev_mu_mimo_mpdu_stats_tlv */
  277. HTT_STATS_SCHED_TXQ_CMD_POSTED_TAG = 39, /* htt_sched_txq_cmd_posted_tlv_v */
  278. HTT_STATS_RING_IF_CMN_TAG = 40, /* htt_ring_if_cmn_tlv */
  279. HTT_STATS_SFM_CLIENT_USER_TAG = 41, /* htt_sfm_client_user_tlv_v */
  280. HTT_STATS_SFM_CLIENT_TAG = 42, /* htt_sfm_client_tlv */
  281. HTT_STATS_TX_TQM_ERROR_STATS_TAG = 43, /* htt_tx_tqm_error_stats_tlv */
  282. HTT_STATS_SCHED_TXQ_CMD_REAPED_TAG = 44, /* htt_sched_txq_cmd_reaped_tlv_v */
  283. HTT_STATS_SRING_CMN_TAG = 45, /* htt_sring_cmn_tlv */
  284. HTT_STATS_TX_SELFGEN_AC_ERR_STATS_TAG = 46, /* htt_tx_selfgen_ac_err_stats_tlv */
  285. HTT_STATS_TX_SELFGEN_CMN_STATS_TAG = 47, /* htt_tx_selfgen_cmn_stats_tlv */
  286. HTT_STATS_TX_SELFGEN_AC_STATS_TAG = 48, /* htt_tx_selfgen_ac_stats_tlv */
  287. HTT_STATS_TX_SELFGEN_AX_STATS_TAG = 49, /* htt_tx_selfgen_ax_stats_tlv */
  288. HTT_STATS_TX_SELFGEN_AX_ERR_STATS_TAG = 50, /* htt_tx_selfgen_ax_err_stats_tlv */
  289. HTT_STATS_TX_HWQ_MUMIMO_SCH_STATS_TAG = 51, /* htt_tx_hwq_mu_mimo_sch_stats_tlv */
  290. HTT_STATS_TX_HWQ_MUMIMO_MPDU_STATS_TAG = 52, /* htt_tx_hwq_mu_mimo_mpdu_stats_tlv */
  291. HTT_STATS_TX_HWQ_MUMIMO_CMN_STATS_TAG = 53, /* htt_tx_hwq_mu_mimo_cmn_stats_tlv */
  292. HTT_STATS_HW_INTR_MISC_TAG = 54, /* htt_hw_stats_intr_misc_tlv */
  293. HTT_STATS_HW_WD_TIMEOUT_TAG = 55, /* htt_hw_stats_wd_timeout_tlv */
  294. HTT_STATS_HW_PDEV_ERRS_TAG = 56, /* htt_hw_stats_pdev_errs_tlv */
  295. HTT_STATS_COUNTER_NAME_TAG = 57, /* htt_counter_tlv */
  296. HTT_STATS_TX_TID_DETAILS_TAG = 58, /* htt_tx_tid_stats_tlv */
  297. HTT_STATS_RX_TID_DETAILS_TAG = 59, /* htt_rx_tid_stats_tlv */
  298. HTT_STATS_PEER_STATS_CMN_TAG = 60, /* htt_peer_stats_cmn_tlv */
  299. HTT_STATS_PEER_DETAILS_TAG = 61, /* htt_peer_details_tlv */
  300. HTT_STATS_PEER_TX_RATE_STATS_TAG = 62, /* htt_tx_peer_rate_stats_tlv */
  301. HTT_STATS_PEER_RX_RATE_STATS_TAG = 63, /* htt_rx_peer_rate_stats_tlv */
  302. HTT_STATS_PEER_MSDU_FLOWQ_TAG = 64, /* htt_msdu_flow_stats_tlv */
  303. HTT_STATS_TX_DE_COMPL_STATS_TAG = 65, /* htt_tx_de_compl_stats_tlv */
  304. HTT_STATS_WHAL_TX_TAG = 66, /* htt_hw_stats_whal_tx_tlv */
  305. HTT_STATS_TX_PDEV_SIFS_HIST_TAG = 67, /* htt_tx_pdev_stats_sifs_hist_tlv_v */
  306. HTT_STATS_RX_PDEV_FW_STATS_PHY_ERR_TAG = 68, /* htt_rx_pdev_fw_stats_phy_err_tlv */
  307. HTT_STATS_TX_TID_DETAILS_V1_TAG = 69, /* htt_tx_tid_stats_v1_tlv */
  308. HTT_STATS_PDEV_CCA_1SEC_HIST_TAG = 70, /* htt_pdev_cca_stats_hist_tlv (for 1 sec interval stats) */
  309. HTT_STATS_PDEV_CCA_100MSEC_HIST_TAG = 71, /* htt_pdev_cca_stats_hist_tlv (for 100 msec interval stats) */
  310. HTT_STATS_PDEV_CCA_STAT_CUMULATIVE_TAG = 72, /* htt_pdev_stats_cca_stats_tlv */
  311. HTT_STATS_PDEV_CCA_COUNTERS_TAG = 73, /* htt_pdev_stats_cca_counters_tlv */
  312. HTT_STATS_TX_PDEV_MPDU_STATS_TAG = 74, /* htt_tx_pdev_mpdu_stats_tlv */
  313. HTT_STATS_PDEV_TWT_SESSIONS_TAG = 75, /* htt_pdev_stats_twt_sessions_tlv */
  314. HTT_STATS_PDEV_TWT_SESSION_TAG = 76, /* htt_pdev_stats_twt_session_tlv */
  315. HTT_STATS_RX_REFILL_RXDMA_ERR_TAG = 77, /* htt_rx_soc_fw_refill_ring_num_rxdma_err_tlv_v */
  316. HTT_STATS_RX_REFILL_REO_ERR_TAG = 78, /* htt_rx_soc_fw_refill_ring_num_reo_err_tlv_v */
  317. HTT_STATS_RX_REO_RESOURCE_STATS_TAG = 79, /* htt_rx_reo_debug_stats_tlv_v */
  318. HTT_STATS_TX_SOUNDING_STATS_TAG = 80, /* htt_tx_sounding_stats_tlv */
  319. HTT_STATS_TX_PDEV_TX_PPDU_STATS_TAG = 81, /* htt_tx_pdev_stats_tx_ppdu_stats_tlv_v */
  320. HTT_STATS_TX_PDEV_TRIED_MPDU_CNT_HIST_TAG = 82, /* htt_tx_pdev_stats_tried_mpdu_cnt_hist_tlv_v */
  321. HTT_STATS_TX_HWQ_TRIED_MPDU_CNT_HIST_TAG = 83, /* htt_tx_hwq_tried_mpdu_cnt_hist_tlv_v */
  322. HTT_STATS_TX_HWQ_TXOP_USED_CNT_HIST_TAG = 84, /* htt_tx_hwq_txop_used_cnt_hist_tlv_v */
  323. HTT_STATS_TX_DE_FW2WBM_RING_FULL_HIST_TAG = 85, /* htt_tx_de_fw2wbm_ring_full_hist_tlv */
  324. HTT_STATS_SCHED_TXQ_SCHED_ORDER_SU_TAG = 86, /* htt_sched_txq_sched_order_su_tlv */
  325. HTT_STATS_SCHED_TXQ_SCHED_INELIGIBILITY_TAG = 87, /* htt_sched_txq_sched_eligibility_tlv */
  326. HTT_STATS_MAX_TAG,
  327. } htt_tlv_tag_t;
  328. #define HTT_STATS_TLV_TAG_M 0x00000fff
  329. #define HTT_STATS_TLV_TAG_S 0
  330. #define HTT_STATS_TLV_LENGTH_M 0x00fff000
  331. #define HTT_STATS_TLV_LENGTH_S 12
  332. #define HTT_STATS_TLV_TAG_GET(_var) \
  333. (((_var) & HTT_STATS_TLV_TAG_M) >> \
  334. HTT_STATS_TLV_TAG_S)
  335. #define HTT_STATS_TLV_TAG_SET(_var, _val) \
  336. do { \
  337. HTT_CHECK_SET_VAL(HTT_STATS_TLV_TAG, _val); \
  338. ((_var) |= ((_val) << HTT_STATS_TLV_TAG_S)); \
  339. } while (0)
  340. #define HTT_STATS_TLV_LENGTH_GET(_var) \
  341. (((_var) & HTT_STATS_TLV_LENGTH_M) >> \
  342. HTT_STATS_TLV_LENGTH_S)
  343. #define HTT_STATS_TLV_LENGTH_SET(_var, _val) \
  344. do { \
  345. HTT_CHECK_SET_VAL(HTT_STATS_TLV_LENGTH, _val); \
  346. ((_var) |= ((_val) << HTT_STATS_TLV_LENGTH_S)); \
  347. } while (0)
  348. typedef struct {
  349. /* BIT [11 : 0] :- tag
  350. * BIT [23 : 12] :- length
  351. * BIT [31 : 24] :- reserved
  352. */
  353. A_UINT32 tag__length;
  354. } htt_tlv_hdr_t;
  355. #define HTT_STATS_MAX_STRING_SZ32 4
  356. #define HTT_STATS_MACID_INVALID 0xff
  357. #define HTT_TX_HWQ_MAX_DIFS_LATENCY_BINS 10
  358. #define HTT_TX_HWQ_MAX_CMD_RESULT_STATS 13
  359. #define HTT_TX_HWQ_MAX_CMD_STALL_STATS 5
  360. #define HTT_TX_HWQ_MAX_FES_RESULT_STATS 10
  361. typedef enum {
  362. HTT_STATS_TX_PDEV_NO_DATA_UNDERRUN = 0,
  363. HTT_STATS_TX_PDEV_DATA_UNDERRUN_BETWEEN_MPDU = 1,
  364. HTT_STATS_TX_PDEV_DATA_UNDERRUN_WITHIN_MPDU = 2,
  365. HTT_TX_PDEV_MAX_URRN_STATS = 3,
  366. } htt_tx_pdev_underrun_enum;
  367. #define HTT_TX_PDEV_MAX_FLUSH_REASON_STATS 71
  368. #define HTT_TX_PDEV_MAX_SIFS_BURST_STATS 9
  369. #define HTT_TX_PDEV_MAX_SIFS_BURST_HIST_STATS 10
  370. #define HTT_TX_PDEV_MAX_PHY_ERR_STATS 18
  371. #define HTT_TX_PDEV_SCHED_TX_MODE_MAX 4
  372. #define HTT_TX_PDEV_NUM_SCHED_ORDER_LOG 20
  373. #define HTT_RX_STATS_REFILL_MAX_RING 4
  374. #define HTT_RX_STATS_RXDMA_MAX_ERR 16
  375. #define HTT_RX_STATS_FW_DROP_REASON_MAX 16
  376. /* Bytes stored in little endian order */
  377. /* Length should be multiple of DWORD */
  378. typedef struct {
  379. htt_tlv_hdr_t tlv_hdr;
  380. A_UINT32 data[1]; /* Can be variable length */
  381. } htt_stats_string_tlv;
  382. #define HTT_TX_PDEV_STATS_CMN_MAC_ID_M 0x000000ff
  383. #define HTT_TX_PDEV_STATS_CMN_MAC_ID_S 0
  384. #define HTT_TX_PDEV_STATS_CMN_MAC_ID_GET(_var) \
  385. (((_var) & HTT_TX_PDEV_STATS_CMN_MAC_ID_M) >> \
  386. HTT_TX_PDEV_STATS_CMN_MAC_ID_S)
  387. #define HTT_TX_PDEV_STATS_CMN_MAC_ID_SET(_var, _val) \
  388. do { \
  389. HTT_CHECK_SET_VAL(HTT_TX_PDEV_STATS_CMN_MAC_ID, _val); \
  390. ((_var) |= ((_val) << HTT_TX_PDEV_STATS_CMN_MAC_ID_S)); \
  391. } while (0)
  392. /* == TX PDEV STATS == */
  393. typedef struct {
  394. htt_tlv_hdr_t tlv_hdr;
  395. /* BIT [ 7 : 0] :- mac_id
  396. * BIT [31 : 8] :- reserved
  397. */
  398. A_UINT32 mac_id__word;
  399. /* Num queued to HW */
  400. A_UINT32 hw_queued;
  401. /* Num PPDU reaped from HW */
  402. A_UINT32 hw_reaped;
  403. /* Num underruns */
  404. A_UINT32 underrun;
  405. /* Num HW Paused counter. */
  406. A_UINT32 hw_paused;
  407. /* Num HW flush counter. */
  408. A_UINT32 hw_flush;
  409. /* Num HW filtered counter. */
  410. A_UINT32 hw_filt;
  411. /* Num PPDUs cleaned up in TX abort */
  412. A_UINT32 tx_abort;
  413. /* Num MPDUs requed by SW */
  414. A_UINT32 mpdu_requed;
  415. /* excessive retries */
  416. A_UINT32 tx_xretry;
  417. /* Last used data hw rate code */
  418. A_UINT32 data_rc;
  419. /* frames dropped due to excessive sw retries */
  420. A_UINT32 mpdu_dropped_xretry;
  421. /* illegal rate phy errors */
  422. A_UINT32 illgl_rate_phy_err;
  423. /* wal pdev continous xretry */
  424. A_UINT32 cont_xretry;
  425. /* wal pdev tx timeout */
  426. A_UINT32 tx_timeout;
  427. /* wal pdev resets */
  428. A_UINT32 pdev_resets;
  429. /* PhY/BB underrun */
  430. A_UINT32 phy_underrun;
  431. /* MPDU is more than txop limit */
  432. A_UINT32 txop_ovf;
  433. /* Number of Sequences posted */
  434. A_UINT32 seq_posted;
  435. /* Number of Sequences failed queueing */
  436. A_UINT32 seq_failed_queueing;
  437. /* Number of Sequences completed */
  438. A_UINT32 seq_completed;
  439. /* Number of Sequences restarted */
  440. A_UINT32 seq_restarted;
  441. /* Number of MU Sequences posted */
  442. A_UINT32 mu_seq_posted;
  443. /* Number of time HW ring is paused between seq switch within ISR */
  444. A_UINT32 seq_switch_hw_paused;
  445. /* Number of times seq continuation in DSR */
  446. A_UINT32 next_seq_posted_dsr;
  447. /* Number of times seq continuation in ISR */
  448. A_UINT32 seq_posted_isr;
  449. /* Number of seq_ctrl cached. */
  450. A_UINT32 seq_ctrl_cached;
  451. /* Number of MPDUs successfully transmitted */
  452. A_UINT32 mpdu_count_tqm;
  453. /* Number of MSDUs successfully transmitted */
  454. A_UINT32 msdu_count_tqm;
  455. /* Number of MPDUs dropped */
  456. A_UINT32 mpdu_removed_tqm;
  457. /* Number of MSDUs dropped */
  458. A_UINT32 msdu_removed_tqm;
  459. /* Num MPDUs flushed by SW, HWPAUSED, SW TXABORT (Reset,channel change) */
  460. A_UINT32 mpdus_sw_flush;
  461. /* Num MPDUs filtered by HW, all filter condition (TTL expired) */
  462. A_UINT32 mpdus_hw_filter;
  463. /* Num MPDUs truncated by PDG (TXOP, TBTT, PPDU_duration based on rate, dyn_bw) */
  464. A_UINT32 mpdus_truncated;
  465. /* Num MPDUs that was tried but didn't receive ACK or BA */
  466. A_UINT32 mpdus_ack_failed;
  467. /* Num MPDUs that was dropped due to expiry (MSDU TTL). */
  468. A_UINT32 mpdus_expired;
  469. /* Num MPDUs that was retried within seq_ctrl (MGMT/LEGACY) */
  470. A_UINT32 mpdus_seq_hw_retry;
  471. /* Num of TQM acked cmds processed */
  472. A_UINT32 ack_tlv_proc;
  473. /* coex_abort_mpdu_cnt valid. */
  474. A_UINT32 coex_abort_mpdu_cnt_valid;
  475. /* coex_abort_mpdu_cnt from TX FES stats. */
  476. A_UINT32 coex_abort_mpdu_cnt;
  477. /* Number of total PPDUs(DATA, MGMT, excludes selfgen) tried over the air (OTA) */
  478. A_UINT32 num_total_ppdus_tried_ota;
  479. /* Number of data PPDUs tried over the air (OTA) */
  480. A_UINT32 num_data_ppdus_tried_ota;
  481. /* Num Local control/mgmt frames (MSDUs) queued */
  482. A_UINT32 local_ctrl_mgmt_enqued;
  483. /* local_ctrl_mgmt_freed:
  484. * Num Local control/mgmt frames (MSDUs) done
  485. * It includes all local ctrl/mgmt completions
  486. * (acked, no ack, flush, TTL, etc)
  487. */
  488. A_UINT32 local_ctrl_mgmt_freed;
  489. /* Num Local data frames (MSDUs) queued */
  490. A_UINT32 local_data_enqued;
  491. /* local_data_freed:
  492. * Num Local data frames (MSDUs) done
  493. * It includes all local data completions
  494. * (acked, no ack, flush, TTL, etc)
  495. */
  496. A_UINT32 local_data_freed;
  497. /* Num MPDUs tried by SW */
  498. A_UINT32 mpdu_tried;
  499. /* Num of waiting seq posted in isr completion handler */
  500. A_UINT32 isr_wait_seq_posted;
  501. A_UINT32 tx_active_dur_us_low;
  502. A_UINT32 tx_active_dur_us_high;
  503. } htt_tx_pdev_stats_cmn_tlv;
  504. #define HTT_TX_PDEV_STATS_URRN_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  505. /* NOTE: Variable length TLV, use length spec to infer array size */
  506. typedef struct {
  507. htt_tlv_hdr_t tlv_hdr;
  508. A_UINT32 urrn_stats[1]; /* HTT_TX_PDEV_MAX_URRN_STATS */
  509. } htt_tx_pdev_stats_urrn_tlv_v;
  510. #define HTT_TX_PDEV_STATS_FLUSH_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  511. /* NOTE: Variable length TLV, use length spec to infer array size */
  512. typedef struct {
  513. htt_tlv_hdr_t tlv_hdr;
  514. A_UINT32 flush_errs[1]; /* HTT_TX_PDEV_MAX_FLUSH_REASON_STATS */
  515. } htt_tx_pdev_stats_flush_tlv_v;
  516. #define HTT_TX_PDEV_STATS_SIFS_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  517. /* NOTE: Variable length TLV, use length spec to infer array size */
  518. typedef struct {
  519. htt_tlv_hdr_t tlv_hdr;
  520. A_UINT32 sifs_status[1]; /* HTT_TX_PDEV_MAX_SIFS_BURST_STATS */
  521. } htt_tx_pdev_stats_sifs_tlv_v;
  522. #define HTT_TX_PDEV_STATS_PHY_ERR_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  523. /* NOTE: Variable length TLV, use length spec to infer array size */
  524. typedef struct {
  525. htt_tlv_hdr_t tlv_hdr;
  526. A_UINT32 phy_errs[1]; /* HTT_TX_PDEV_MAX_PHY_ERR_STATS */
  527. } htt_tx_pdev_stats_phy_err_tlv_v;
  528. #define HTT_TX_PDEV_STATS_SIFS_HIST_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  529. /* NOTE: Variable length TLV, use length spec to infer array size */
  530. typedef struct {
  531. htt_tlv_hdr_t tlv_hdr;
  532. A_UINT32 sifs_hist_status[1]; /* HTT_TX_PDEV_SIFS_BURST_HIST_STATS */
  533. } htt_tx_pdev_stats_sifs_hist_tlv_v;
  534. typedef struct {
  535. htt_tlv_hdr_t tlv_hdr;
  536. A_UINT32 num_data_ppdus_legacy_su;
  537. A_UINT32 num_data_ppdus_ac_su;
  538. A_UINT32 num_data_ppdus_ax_su;
  539. A_UINT32 num_data_ppdus_ac_su_txbf;
  540. A_UINT32 num_data_ppdus_ax_su_txbf;
  541. } htt_tx_pdev_stats_tx_ppdu_stats_tlv_v;
  542. #define HTT_TX_PDEV_STATS_TRIED_MPDU_CNT_HIST_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  543. /* NOTE: Variable length TLV, use length spec to infer array size .
  544. *
  545. * Tried_mpdu_cnt_hist is the histogram of MPDUs tries per HWQ.
  546. * The tries here is the count of the MPDUS within a PPDU that the
  547. * HW had attempted to transmit on air, for the HWSCH Schedule
  548. * command submitted by FW.It is not the retry attempts.
  549. * The histogram bins are 0-29, 30-59, 60-89 and so on. The are
  550. * 10 bins in this histogram. They are defined in FW using the
  551. * following macros
  552. * #define WAL_MAX_TRIED_MPDU_CNT_HISTOGRAM 9
  553. * #define WAL_TRIED_MPDU_CNT_HISTOGRAM_INTERVAL 30
  554. *
  555. */
  556. typedef struct {
  557. htt_tlv_hdr_t tlv_hdr;
  558. A_UINT32 hist_bin_size;
  559. A_UINT32 tried_mpdu_cnt_hist[1]; /* HTT_TX_PDEV_TRIED_MPDU_CNT_HIST */
  560. } htt_tx_pdev_stats_tried_mpdu_cnt_hist_tlv_v;
  561. /* STATS_TYPE: HTT_DBG_EXT_STATS_PDEV_TX
  562. * TLV_TAGS:
  563. * - HTT_STATS_TX_PDEV_CMN_TAG
  564. * - HTT_STATS_TX_PDEV_URRN_TAG
  565. * - HTT_STATS_TX_PDEV_SIFS_TAG
  566. * - HTT_STATS_TX_PDEV_FLUSH_TAG
  567. * - HTT_STATS_TX_PDEV_PHY_ERR_TAG
  568. * - HTT_STATS_TX_PDEV_SIFS_HIST_TAG
  569. * - HTT_STATS_TX_PDEV_TX_PPDU_STATS_TAG
  570. * - HTT_STATS_TX_PDEV_TRIED_MPDU_CNT_HIST_TAG
  571. */
  572. /* NOTE:
  573. * This structure is for documentation, and cannot be safely used directly.
  574. * Instead, use the constituent TLV structures to fill/parse.
  575. */
  576. typedef struct _htt_tx_pdev_stats {
  577. htt_tx_pdev_stats_cmn_tlv cmn_tlv;
  578. htt_tx_pdev_stats_urrn_tlv_v underrun_tlv;
  579. htt_tx_pdev_stats_sifs_tlv_v sifs_tlv;
  580. htt_tx_pdev_stats_flush_tlv_v flush_tlv;
  581. htt_tx_pdev_stats_phy_err_tlv_v phy_err_tlv;
  582. htt_tx_pdev_stats_sifs_hist_tlv_v sifs_hist_tlv;
  583. htt_tx_pdev_stats_tx_ppdu_stats_tlv_v tx_su_tlv;
  584. htt_tx_pdev_stats_tried_mpdu_cnt_hist_tlv_v tried_mpdu_cnt_hist_tlv;
  585. } htt_tx_pdev_stats_t;
  586. /* == SOC ERROR STATS == */
  587. /* =============== PDEV ERROR STATS ============== */
  588. #define HTT_STATS_MAX_HW_INTR_NAME_LEN 8
  589. typedef struct {
  590. htt_tlv_hdr_t tlv_hdr;
  591. /* Stored as little endian */
  592. A_UINT8 hw_intr_name[HTT_STATS_MAX_HW_INTR_NAME_LEN];
  593. A_UINT32 mask;
  594. A_UINT32 count;
  595. } htt_hw_stats_intr_misc_tlv;
  596. #define HTT_STATS_MAX_HW_MODULE_NAME_LEN 8
  597. typedef struct {
  598. htt_tlv_hdr_t tlv_hdr;
  599. /* Stored as little endian */
  600. A_UINT8 hw_module_name[HTT_STATS_MAX_HW_MODULE_NAME_LEN];
  601. A_UINT32 count;
  602. } htt_hw_stats_wd_timeout_tlv;
  603. #define HTT_HW_STATS_PDEV_ERRS_MAC_ID_M 0x000000ff
  604. #define HTT_HW_STATS_PDEV_ERRS_MAC_ID_S 0
  605. #define HTT_HW_STATS_PDEV_ERRS_MAC_ID_GET(_var) \
  606. (((_var) & HTT_HW_STATS_PDEV_ERRS_MAC_ID_M) >> \
  607. HTT_HW_STATS_PDEV_ERRS_MAC_ID_S)
  608. #define HTT_HW_STATS_PDEV_ERRS_MAC_ID_SET(_var, _val) \
  609. do { \
  610. HTT_CHECK_SET_VAL(HTT_HW_STATS_PDEV_ERRS_MAC_ID, _val); \
  611. ((_var) |= ((_val) << HTT_HW_STATS_PDEV_ERRS_MAC_ID_S)); \
  612. } while (0)
  613. typedef struct {
  614. htt_tlv_hdr_t tlv_hdr;
  615. /* BIT [ 7 : 0] :- mac_id
  616. * BIT [31 : 8] :- reserved
  617. */
  618. A_UINT32 mac_id__word;
  619. A_UINT32 tx_abort;
  620. A_UINT32 tx_abort_fail_count;
  621. A_UINT32 rx_abort;
  622. A_UINT32 rx_abort_fail_count;
  623. A_UINT32 warm_reset;
  624. A_UINT32 cold_reset;
  625. A_UINT32 tx_flush;
  626. A_UINT32 tx_glb_reset;
  627. A_UINT32 tx_txq_reset;
  628. A_UINT32 rx_timeout_reset;
  629. } htt_hw_stats_pdev_errs_tlv;
  630. typedef struct {
  631. htt_tlv_hdr_t tlv_hdr;
  632. /* BIT [ 7 : 0] :- mac_id
  633. * BIT [31 : 8] :- reserved
  634. */
  635. A_UINT32 mac_id__word;
  636. A_UINT32 last_unpause_ppdu_id;
  637. A_UINT32 hwsch_unpause_wait_tqm_write;
  638. A_UINT32 hwsch_dummy_tlv_skipped;
  639. A_UINT32 hwsch_misaligned_offset_received;
  640. A_UINT32 hwsch_reset_count;
  641. A_UINT32 hwsch_dev_reset_war;
  642. A_UINT32 hwsch_delayed_pause;
  643. A_UINT32 hwsch_long_delayed_pause;
  644. A_UINT32 sch_rx_ppdu_no_response;
  645. A_UINT32 sch_selfgen_response;
  646. A_UINT32 sch_rx_sifs_resp_trigger;
  647. } htt_hw_stats_whal_tx_tlv;
  648. /* STATS_TYPE: HTT_DBG_EXT_STATS_PDEV_ERROR
  649. * TLV_TAGS:
  650. * - HTT_STATS_HW_PDEV_ERRS_TAG
  651. * - HTT_STATS_HW_INTR_MISC_TAG (multiple)
  652. * - HTT_STATS_HW_WD_TIMEOUT_TAG (multiple)
  653. * - HTT_STATS_WHAL_TX_TAG
  654. */
  655. /* NOTE:
  656. * This structure is for documentation, and cannot be safely used directly.
  657. * Instead, use the constituent TLV structures to fill/parse.
  658. */
  659. typedef struct _htt_pdev_err_stats {
  660. htt_hw_stats_pdev_errs_tlv pdev_errs;
  661. htt_hw_stats_intr_misc_tlv misc_stats[1];
  662. htt_hw_stats_wd_timeout_tlv wd_timeout[1];
  663. htt_hw_stats_whal_tx_tlv whal_tx_stats;
  664. } htt_hw_err_stats_t;
  665. /* ============ PEER STATS ============ */
  666. #define HTT_MSDU_FLOW_STATS_TX_FLOW_NUM_M 0x0000ffff
  667. #define HTT_MSDU_FLOW_STATS_TX_FLOW_NUM_S 0
  668. #define HTT_MSDU_FLOW_STATS_TID_NUM_M 0x000f0000
  669. #define HTT_MSDU_FLOW_STATS_TID_NUM_S 16
  670. #define HTT_MSDU_FLOW_STATS_DROP_M 0x00100000
  671. #define HTT_MSDU_FLOW_STATS_DROP_S 20
  672. #define HTT_MSDU_FLOW_STATS_TX_FLOW_NUM_GET(_var) \
  673. (((_var) & HTT_MSDU_FLOW_STATS_TX_FLOW_NUM_M) >> \
  674. HTT_MSDU_FLOW_STATS_TX_FLOW_NUM_S)
  675. #define HTT_MSDU_FLOW_STATS_TX_FLOW_NUM_SET(_var, _val) \
  676. do { \
  677. HTT_CHECK_SET_VAL(HTT_MSDU_FLOW_STATS_TX_FLOW_NUM, _val); \
  678. ((_var) |= ((_val) << HTT_MSDU_FLOW_STATS_TX_FLOW_NUM_S)); \
  679. } while (0)
  680. #define HTT_MSDU_FLOW_STATS_TID_NUM_GET(_var) \
  681. (((_var) & HTT_MSDU_FLOW_STATS_TID_NUM_M) >> \
  682. HTT_MSDU_FLOW_STATS_TID_NUM_S)
  683. #define HTT_MSDU_FLOW_STATS_TID_NUM_SET(_var, _val) \
  684. do { \
  685. HTT_CHECK_SET_VAL(HTT_MSDU_FLOW_STATS_TID_NUM, _val); \
  686. ((_var) |= ((_val) << HTT_MSDU_FLOW_STATS_TID_NUM_S)); \
  687. } while (0)
  688. #define HTT_MSDU_FLOW_STATS_DROP_GET(_var) \
  689. (((_var) & HTT_MSDU_FLOW_STATS_DROP_M) >> \
  690. HTT_MSDU_FLOW_STATS_DROP_S)
  691. #define HTT_MSDU_FLOW_STATS_DROP_SET(_var, _val) \
  692. do { \
  693. HTT_CHECK_SET_VAL(HTT_MSDU_FLOW_STATS_DROP, _val); \
  694. ((_var) |= ((_val) << HTT_MSDU_FLOW_STATS_DROP_S)); \
  695. } while (0)
  696. typedef struct _htt_msdu_flow_stats_tlv {
  697. htt_tlv_hdr_t tlv_hdr;
  698. A_UINT32 last_update_timestamp;
  699. A_UINT32 last_add_timestamp;
  700. A_UINT32 last_remove_timestamp;
  701. A_UINT32 total_processed_msdu_count;
  702. A_UINT32 cur_msdu_count_in_flowq;
  703. A_UINT32 sw_peer_id; /* This will help to find which peer_id is stuck state */
  704. /* BIT [15 : 0] :- tx_flow_number
  705. * BIT [19 : 16] :- tid_num
  706. * BIT [20 : 20] :- drop_rule
  707. * BIT [31 : 21] :- reserved
  708. */
  709. A_UINT32 tx_flow_no__tid_num__drop_rule;
  710. A_UINT32 last_cycle_enqueue_count;
  711. A_UINT32 last_cycle_dequeue_count;
  712. A_UINT32 last_cycle_drop_count;
  713. /* BIT [15 : 0] :- current_drop_th
  714. * BIT [31 : 16] :- reserved
  715. */
  716. A_UINT32 current_drop_th;
  717. } htt_msdu_flow_stats_tlv;
  718. #define MAX_HTT_TID_NAME 8
  719. /* DWORD sw_peer_id__tid_num */
  720. #define HTT_TX_TID_STATS_SW_PEER_ID_M 0x0000ffff
  721. #define HTT_TX_TID_STATS_SW_PEER_ID_S 0
  722. #define HTT_TX_TID_STATS_TID_NUM_M 0xffff0000
  723. #define HTT_TX_TID_STATS_TID_NUM_S 16
  724. #define HTT_TX_TID_STATS_SW_PEER_ID_GET(_var) \
  725. (((_var) & HTT_TX_TID_STATS_SW_PEER_ID_M) >> \
  726. HTT_TX_TID_STATS_SW_PEER_ID_S)
  727. #define HTT_TX_TID_STATS_SW_PEER_ID_SET(_var, _val) \
  728. do { \
  729. HTT_CHECK_SET_VAL(HTT_TX_TID_STATS_SW_PEER_ID, _val); \
  730. ((_var) |= ((_val) << HTT_TX_TID_STATS_SW_PEER_ID_S)); \
  731. } while (0)
  732. #define HTT_TX_TID_STATS_TID_NUM_GET(_var) \
  733. (((_var) & HTT_TX_TID_STATS_TID_NUM_M) >> \
  734. HTT_TX_TID_STATS_TID_NUM_S)
  735. #define HTT_TX_TID_STATS_TID_NUM_SET(_var, _val) \
  736. do { \
  737. HTT_CHECK_SET_VAL(HTT_TX_TID_STATS_TID_NUM, _val); \
  738. ((_var) |= ((_val) << HTT_TX_TID_STATS_TID_NUM_S)); \
  739. } while (0)
  740. /* DWORD num_sched_pending__num_ppdu_in_hwq */
  741. #define HTT_TX_TID_STATS_NUM_SCHED_PENDING_M 0x000000ff
  742. #define HTT_TX_TID_STATS_NUM_SCHED_PENDING_S 0
  743. #define HTT_TX_TID_STATS_NUM_PPDU_IN_HWQ_M 0x0000ff00
  744. #define HTT_TX_TID_STATS_NUM_PPDU_IN_HWQ_S 8
  745. #define HTT_TX_TID_STATS_NUM_SCHED_PENDING_GET(_var) \
  746. (((_var) & HTT_TX_TID_STATS_NUM_SCHED_PENDING_M) >> \
  747. HTT_TX_TID_STATS_NUM_SCHED_PENDING_S)
  748. #define HTT_TX_TID_STATS_NUM_SCHED_PENDING_SET(_var, _val) \
  749. do { \
  750. HTT_CHECK_SET_VAL(HTT_TX_TID_STATS_NUM_SCHED_PENDING, _val); \
  751. ((_var) |= ((_val) << HTT_TX_TID_STATS_NUM_SCHED_PENDING_S)); \
  752. } while (0)
  753. #define HTT_TX_TID_STATS_NUM_PPDU_IN_HWQ_GET(_var) \
  754. (((_var) & HTT_TX_TID_STATS_NUM_PPDU_IN_HWQ_M) >> \
  755. HTT_TX_TID_STATS_NUM_PPDU_IN_HWQ_S)
  756. #define HTT_TX_TID_STATS_NUM_PPDU_IN_HWQ_SET(_var, _val) \
  757. do { \
  758. HTT_CHECK_SET_VAL(HTT_TX_TID_STATS_NUM_PPDU_IN_HWQ, _val); \
  759. ((_var) |= ((_val) << HTT_TX_TID_STATS_NUM_PPDU_IN_HWQ_S)); \
  760. } while (0)
  761. /* Tidq stats */
  762. typedef struct _htt_tx_tid_stats_tlv {
  763. htt_tlv_hdr_t tlv_hdr;
  764. /* Stored as little endian */
  765. A_UINT8 tid_name[MAX_HTT_TID_NAME];
  766. /* BIT [15 : 0] :- sw_peer_id
  767. * BIT [31 : 16] :- tid_num
  768. */
  769. A_UINT32 sw_peer_id__tid_num;
  770. /* BIT [ 7 : 0] :- num_sched_pending
  771. * BIT [15 : 8] :- num_ppdu_in_hwq
  772. * BIT [31 : 16] :- reserved
  773. */
  774. A_UINT32 num_sched_pending__num_ppdu_in_hwq;
  775. A_UINT32 tid_flags;
  776. /* per tid # of hw_queued ppdu.*/
  777. A_UINT32 hw_queued;
  778. /* number of per tid successful PPDU. */
  779. A_UINT32 hw_reaped;
  780. /* per tid Num MPDUs filtered by HW */
  781. A_UINT32 mpdus_hw_filter;
  782. A_UINT32 qdepth_bytes;
  783. A_UINT32 qdepth_num_msdu;
  784. A_UINT32 qdepth_num_mpdu;
  785. A_UINT32 last_scheduled_tsmp;
  786. A_UINT32 pause_module_id;
  787. A_UINT32 block_module_id;
  788. /* tid tx airtime in sec */
  789. A_UINT32 tid_tx_airtime;
  790. } htt_tx_tid_stats_tlv;
  791. /* Tidq stats */
  792. typedef struct _htt_tx_tid_stats_v1_tlv {
  793. htt_tlv_hdr_t tlv_hdr;
  794. /* Stored as little endian */
  795. A_UINT8 tid_name[MAX_HTT_TID_NAME];
  796. /* BIT [15 : 0] :- sw_peer_id
  797. * BIT [31 : 16] :- tid_num
  798. */
  799. A_UINT32 sw_peer_id__tid_num;
  800. /* BIT [ 7 : 0] :- num_sched_pending
  801. * BIT [15 : 8] :- num_ppdu_in_hwq
  802. * BIT [31 : 16] :- reserved
  803. */
  804. A_UINT32 num_sched_pending__num_ppdu_in_hwq;
  805. A_UINT32 tid_flags;
  806. /* Max qdepth in bytes reached by this tid*/
  807. A_UINT32 max_qdepth_bytes;
  808. /* number of msdus qdepth reached max */
  809. A_UINT32 max_qdepth_n_msdus;
  810. /* Made reserved this field */
  811. A_UINT32 rsvd;
  812. A_UINT32 qdepth_bytes;
  813. A_UINT32 qdepth_num_msdu;
  814. A_UINT32 qdepth_num_mpdu;
  815. A_UINT32 last_scheduled_tsmp;
  816. A_UINT32 pause_module_id;
  817. A_UINT32 block_module_id;
  818. /* tid tx airtime in sec */
  819. A_UINT32 tid_tx_airtime;
  820. A_UINT32 allow_n_flags;
  821. /* BIT [15 : 0] :- sendn_frms_allowed
  822. * BIT [31 : 16] :- reserved
  823. */
  824. A_UINT32 sendn_frms_allowed;
  825. } htt_tx_tid_stats_v1_tlv;
  826. #define HTT_RX_TID_STATS_SW_PEER_ID_M 0x0000ffff
  827. #define HTT_RX_TID_STATS_SW_PEER_ID_S 0
  828. #define HTT_RX_TID_STATS_TID_NUM_M 0xffff0000
  829. #define HTT_RX_TID_STATS_TID_NUM_S 16
  830. #define HTT_RX_TID_STATS_SW_PEER_ID_GET(_var) \
  831. (((_var) & HTT_RX_TID_STATS_SW_PEER_ID_M) >> \
  832. HTT_RX_TID_STATS_SW_PEER_ID_S)
  833. #define HTT_RX_TID_STATS_SW_PEER_ID_SET(_var, _val) \
  834. do { \
  835. HTT_CHECK_SET_VAL(HTT_RX_TID_STATS_SW_PEER_ID, _val); \
  836. ((_var) |= ((_val) << HTT_RX_TID_STATS_SW_PEER_ID_S)); \
  837. } while (0)
  838. #define HTT_RX_TID_STATS_TID_NUM_GET(_var) \
  839. (((_var) & HTT_RX_TID_STATS_TID_NUM_M) >> \
  840. HTT_RX_TID_STATS_TID_NUM_S)
  841. #define HTT_RX_TID_STATS_TID_NUM_SET(_var, _val) \
  842. do { \
  843. HTT_CHECK_SET_VAL(HTT_RX_TID_STATS_TID_NUM, _val); \
  844. ((_var) |= ((_val) << HTT_RX_TID_STATS_TID_NUM_S)); \
  845. } while (0)
  846. typedef struct _htt_rx_tid_stats_tlv {
  847. htt_tlv_hdr_t tlv_hdr;
  848. /* BIT [15 : 0] : sw_peer_id
  849. * BIT [31 : 16] : tid_num
  850. */
  851. A_UINT32 sw_peer_id__tid_num;
  852. /* Stored as little endian */
  853. A_UINT8 tid_name[MAX_HTT_TID_NAME];
  854. /* dup_in_reorder not collected per tid for now,
  855. as there is no wal_peer back ptr in data rx peer. */
  856. A_UINT32 dup_in_reorder;
  857. A_UINT32 dup_past_outside_window;
  858. A_UINT32 dup_past_within_window;
  859. /* Number of per tid MSDUs with flag of decrypt_err */
  860. A_UINT32 rxdesc_err_decrypt;
  861. /* tid rx airtime in sec */
  862. A_UINT32 tid_rx_airtime;
  863. } htt_rx_tid_stats_tlv;
  864. #define HTT_MAX_COUNTER_NAME 8
  865. typedef struct {
  866. htt_tlv_hdr_t tlv_hdr;
  867. /* Stored as little endian */
  868. A_UINT8 counter_name[HTT_MAX_COUNTER_NAME];
  869. A_UINT32 count;
  870. } htt_counter_tlv;
  871. typedef struct {
  872. htt_tlv_hdr_t tlv_hdr;
  873. /* Number of rx ppdu. */
  874. A_UINT32 ppdu_cnt;
  875. /* Number of rx mpdu. */
  876. A_UINT32 mpdu_cnt;
  877. /* Number of rx msdu */
  878. A_UINT32 msdu_cnt;
  879. /* Pause bitmap */
  880. A_UINT32 pause_bitmap;
  881. /* Block bitmap */
  882. A_UINT32 block_bitmap;
  883. /* Current timestamp */
  884. A_UINT32 current_timestamp;
  885. /* Peer cumulative tx airtime in sec */
  886. A_UINT32 peer_tx_airtime;
  887. /* Peer cumulative rx airtime in sec */
  888. A_UINT32 peer_rx_airtime;
  889. /* Peer current rssi in dBm */
  890. A_INT32 rssi;
  891. /* Total enqueued, dequeued and dropped msdu's for peer */
  892. A_UINT32 peer_enqueued_count_low;
  893. A_UINT32 peer_enqueued_count_high;
  894. A_UINT32 peer_dequeued_count_low;
  895. A_UINT32 peer_dequeued_count_high;
  896. A_UINT32 peer_dropped_count_low;
  897. A_UINT32 peer_dropped_count_high;
  898. /* Total ppdu transmitted bytes for peer: includes MAC header overhead */
  899. A_UINT32 ppdu_transmitted_bytes_low;
  900. A_UINT32 ppdu_transmitted_bytes_high;
  901. } htt_peer_stats_cmn_tlv;
  902. typedef struct {
  903. htt_tlv_hdr_t tlv_hdr;
  904. /* This enum type of HTT_PEER_TYPE */
  905. A_UINT32 peer_type;
  906. A_UINT32 sw_peer_id;
  907. /* BIT [7 : 0] :- vdev_id
  908. * BIT [15 : 8] :- pdev_id
  909. * BIT [31 : 16] :- ast_indx
  910. */
  911. A_UINT32 vdev_pdev_ast_idx;
  912. htt_mac_addr mac_addr;
  913. A_UINT32 peer_flags;
  914. A_UINT32 qpeer_flags;
  915. } htt_peer_details_tlv;
  916. typedef enum {
  917. HTT_STATS_PREAM_OFDM,
  918. HTT_STATS_PREAM_CCK,
  919. HTT_STATS_PREAM_HT,
  920. HTT_STATS_PREAM_VHT,
  921. HTT_STATS_PREAM_HE,
  922. HTT_STATS_PREAM_RSVD,
  923. HTT_STATS_PREAM_RSVD1,
  924. HTT_STATS_PREAM_COUNT,
  925. } HTT_STATS_PREAM_TYPE;
  926. #define HTT_TX_PEER_STATS_NUM_MCS_COUNTERS 12
  927. #define HTT_TX_PEER_STATS_NUM_GI_COUNTERS 4
  928. #define HTT_TX_PEER_STATS_NUM_DCM_COUNTERS 5
  929. #define HTT_TX_PEER_STATS_NUM_BW_COUNTERS 4
  930. #define HTT_TX_PEER_STATS_NUM_SPATIAL_STREAMS 8
  931. #define HTT_TX_PEER_STATS_NUM_PREAMBLE_TYPES HTT_STATS_PREAM_COUNT
  932. typedef struct _htt_tx_peer_rate_stats_tlv {
  933. htt_tlv_hdr_t tlv_hdr;
  934. /* Number of tx ldpc packets */
  935. A_UINT32 tx_ldpc;
  936. /* Number of tx rts packets */
  937. A_UINT32 rts_cnt;
  938. /* RSSI value of last ack packet (units = dB above noise floor) */
  939. A_UINT32 ack_rssi;
  940. A_UINT32 tx_mcs[HTT_TX_PEER_STATS_NUM_MCS_COUNTERS];
  941. A_UINT32 tx_su_mcs[HTT_TX_PEER_STATS_NUM_MCS_COUNTERS];
  942. A_UINT32 tx_mu_mcs[HTT_TX_PEER_STATS_NUM_MCS_COUNTERS];
  943. A_UINT32 tx_nss[HTT_TX_PEER_STATS_NUM_SPATIAL_STREAMS]; /* element 0,1, ...7 -> NSS 1,2, ...8 */
  944. A_UINT32 tx_bw[HTT_TX_PEER_STATS_NUM_BW_COUNTERS]; /* element 0: 20 MHz, 1: 40 MHz, 2: 80 MHz, 3: 160 and 80+80 MHz */
  945. A_UINT32 tx_stbc[HTT_TX_PEER_STATS_NUM_MCS_COUNTERS];
  946. A_UINT32 tx_pream[HTT_TX_PEER_STATS_NUM_PREAMBLE_TYPES];
  947. /* Counters to track number of tx packets in each GI (400us, 800us, 1600us & 3200us) in each mcs (0-11) */
  948. A_UINT32 tx_gi[HTT_TX_PEER_STATS_NUM_GI_COUNTERS][HTT_TX_PEER_STATS_NUM_MCS_COUNTERS];
  949. /* Counters to track packets in dcm mcs (MCS 0, 1, 3, 4) */
  950. A_UINT32 tx_dcm[HTT_TX_PEER_STATS_NUM_DCM_COUNTERS];
  951. } htt_tx_peer_rate_stats_tlv;
  952. #define HTT_RX_PEER_STATS_NUM_MCS_COUNTERS 12
  953. #define HTT_RX_PEER_STATS_NUM_GI_COUNTERS 4
  954. #define HTT_RX_PEER_STATS_NUM_DCM_COUNTERS 5
  955. #define HTT_RX_PEER_STATS_NUM_BW_COUNTERS 4
  956. #define HTT_RX_PEER_STATS_NUM_SPATIAL_STREAMS 8
  957. #define HTT_RX_PEER_STATS_NUM_PREAMBLE_TYPES HTT_STATS_PREAM_COUNT
  958. typedef struct _htt_rx_peer_rate_stats_tlv {
  959. htt_tlv_hdr_t tlv_hdr;
  960. A_UINT32 nsts;
  961. /* Number of rx ldpc packets */
  962. A_UINT32 rx_ldpc;
  963. /* Number of rx rts packets */
  964. A_UINT32 rts_cnt;
  965. A_UINT32 rssi_mgmt; /* units = dB above noise floor */
  966. A_UINT32 rssi_data; /* units = dB above noise floor */
  967. A_UINT32 rssi_comb; /* units = dB above noise floor */
  968. A_UINT32 rx_mcs[HTT_RX_PEER_STATS_NUM_MCS_COUNTERS];
  969. A_UINT32 rx_nss[HTT_RX_PEER_STATS_NUM_SPATIAL_STREAMS]; /* element 0,1, ...7 -> NSS 1,2, ...8 */
  970. A_UINT32 rx_dcm[HTT_RX_PEER_STATS_NUM_DCM_COUNTERS];
  971. A_UINT32 rx_stbc[HTT_RX_PEER_STATS_NUM_MCS_COUNTERS];
  972. A_UINT32 rx_bw[HTT_RX_PEER_STATS_NUM_BW_COUNTERS]; /* element 0: 20 MHz, 1: 40 MHz, 2: 80 MHz, 3: 160 and 80+80 MHz */
  973. A_UINT32 rx_pream[HTT_RX_PEER_STATS_NUM_PREAMBLE_TYPES];
  974. A_UINT8 rssi_chain[HTT_RX_PEER_STATS_NUM_SPATIAL_STREAMS][HTT_RX_PEER_STATS_NUM_BW_COUNTERS]; /* units = dB above noise floor */
  975. /* Counters to track number of rx packets in each GI in each mcs (0-11) */
  976. A_UINT32 rx_gi[HTT_RX_PEER_STATS_NUM_GI_COUNTERS][HTT_RX_PEER_STATS_NUM_MCS_COUNTERS];
  977. } htt_rx_peer_rate_stats_tlv;
  978. typedef enum {
  979. HTT_PEER_STATS_REQ_MODE_NO_QUERY,
  980. HTT_PEER_STATS_REQ_MODE_QUERY_TQM,
  981. HTT_PEER_STATS_REQ_MODE_FLUSH_TQM,
  982. } htt_peer_stats_req_mode_t;
  983. typedef enum {
  984. HTT_PEER_STATS_CMN_TLV = 0,
  985. HTT_PEER_DETAILS_TLV = 1,
  986. HTT_TX_PEER_RATE_STATS_TLV = 2,
  987. HTT_RX_PEER_RATE_STATS_TLV = 3,
  988. HTT_TX_TID_STATS_TLV = 4,
  989. HTT_RX_TID_STATS_TLV = 5,
  990. HTT_MSDU_FLOW_STATS_TLV = 6,
  991. HTT_PEER_STATS_MAX_TLV = 31,
  992. } htt_peer_stats_tlv_enum;
  993. /* config_param0 */
  994. #define HTT_DBG_EXT_STATS_PEER_INFO_IS_MAC_ADDR_M 0x00000001
  995. #define HTT_DBG_EXT_STATS_PEER_INFO_IS_MAC_ADDR_S 0
  996. #define HTT_DBG_EXT_STATS_PEER_REQ_MODE_M 0x0000FFFE
  997. #define HTT_DBG_EXT_STATS_PEER_REQ_MODE_S 1
  998. #define HTT_DBG_EXT_STATS_PEER_INFO_SW_PEER_ID_M 0xFFFF0000
  999. #define HTT_DBG_EXT_STATS_PEER_INFO_SW_PEER_ID_S 16
  1000. #define HTT_DBG_EXT_STATS_PEER_INFO_IS_MAC_ADDR_SET( _var, _val)\
  1001. do { \
  1002. HTT_CHECK_SET_VAL(HTT_DBG_EXT_STATS_PEER_INFO_IS_MAC_ADDR, _val); \
  1003. ((_var) |= ((_val) << HTT_DBG_EXT_STATS_PEER_INFO_IS_MAC_ADDR_S)); \
  1004. } while (0)
  1005. #define HTT_DBG_EXT_STATS_PEER_INFO_IS_MAC_ADDR_GET(_var) \
  1006. (((_var) & HTT_DBG_EXT_STATS_PEER_INFO_IS_MAC_ADDR_M) >> \
  1007. HTT_DBG_EXT_STATS_PEER_INFO_IS_MAC_ADDR_S)
  1008. #define HTT_DBG_EXT_STATS_PEER_REQ_MODE_GET(_var) \
  1009. (((_var) & HTT_DBG_EXT_STATS_PEER_REQ_MODE_M) >> \
  1010. HTT_DBG_EXT_STATS_PEER_REQ_MODE_S)
  1011. #define HTT_DBG_EXT_STATS_PEER_REQ_MODE_SET(_var, _val) \
  1012. do { \
  1013. ((_var) |= ((_val) << HTT_DBG_EXT_STATS_PEER_REQ_MODE_S)); \
  1014. } while (0)
  1015. #define HTT_DBG_EXT_STATS_PEER_INFO_SW_PEER_ID_GET(_var) \
  1016. (((_var) & HTT_DBG_EXT_STATS_PEER_INFO_SW_PEER_ID_M) >> \
  1017. HTT_DBG_EXT_STATS_PEER_INFO_SW_PEER_ID_S)
  1018. #define HTT_DBG_EXT_STATS_PEER_INFO_SW_PEER_ID_SET(_var, _val) \
  1019. do { \
  1020. ((_var) |= ((_val) << HTT_DBG_EXT_STATS_PEER_INFO_SW_PEER_ID_S)); \
  1021. } while (0)
  1022. /* STATS_TYPE : HTT_DBG_EXT_STATS_PEER_INFO
  1023. * TLV_TAGS:
  1024. * - HTT_STATS_PEER_STATS_CMN_TAG
  1025. * - HTT_STATS_PEER_DETAILS_TAG
  1026. * - HTT_STATS_PEER_TX_RATE_STATS_TAG
  1027. * - HTT_STATS_PEER_RX_RATE_STATS_TAG
  1028. * - HTT_STATS_TX_TID_DETAILS_TAG (multiple) (deprecated, so 0 elements in updated systems)
  1029. * - HTT_STATS_RX_TID_DETAILS_TAG (multiple)
  1030. * - HTT_STATS_PEER_MSDU_FLOWQ_TAG (multiple)
  1031. * - HTT_STATS_TX_TID_DETAILS_V1_TAG (multiple)
  1032. */
  1033. /* NOTE:
  1034. * This structure is for documentation, and cannot be safely used directly.
  1035. * Instead, use the constituent TLV structures to fill/parse.
  1036. */
  1037. typedef struct _htt_peer_stats {
  1038. htt_peer_stats_cmn_tlv cmn_tlv;
  1039. htt_peer_details_tlv peer_details;
  1040. /* from g_rate_info_stats */
  1041. htt_tx_peer_rate_stats_tlv tx_rate;
  1042. htt_rx_peer_rate_stats_tlv rx_rate;
  1043. htt_tx_tid_stats_tlv tx_tid_stats[1];
  1044. htt_rx_tid_stats_tlv rx_tid_stats[1];
  1045. htt_msdu_flow_stats_tlv msdu_flowq[1];
  1046. htt_tx_tid_stats_v1_tlv tx_tid_stats_v1[1];
  1047. } htt_peer_stats_t;
  1048. /* =========== ACTIVE PEER LIST ========== */
  1049. /* STATS_TYPE: HTT_DBG_EXT_STATS_ACTIVE_PEERS_LIST
  1050. * TLV_TAGS:
  1051. * - HTT_STATS_PEER_DETAILS_TAG
  1052. */
  1053. /* NOTE:
  1054. * This structure is for documentation, and cannot be safely used directly.
  1055. * Instead, use the constituent TLV structures to fill/parse.
  1056. */
  1057. typedef struct {
  1058. htt_peer_details_tlv peer_details[1];
  1059. } htt_active_peer_details_list_t;
  1060. /* =========== MUMIMO HWQ stats =========== */
  1061. /* MU MIMO stats per hwQ */
  1062. typedef struct {
  1063. htt_tlv_hdr_t tlv_hdr;
  1064. A_UINT32 mu_mimo_sch_posted;
  1065. A_UINT32 mu_mimo_sch_failed;
  1066. A_UINT32 mu_mimo_ppdu_posted;
  1067. } htt_tx_hwq_mu_mimo_sch_stats_tlv;
  1068. typedef struct {
  1069. htt_tlv_hdr_t tlv_hdr;
  1070. A_UINT32 mu_mimo_mpdus_queued_usr; /* Number of mpdus queued per user */
  1071. A_UINT32 mu_mimo_mpdus_tried_usr; /* Number of mpdus actually transmitted by TxPCU per user */
  1072. A_UINT32 mu_mimo_mpdus_failed_usr; /* Number of mpdus failed per user */
  1073. A_UINT32 mu_mimo_mpdus_requeued_usr; /* Number of mpdus requeued per user */
  1074. A_UINT32 mu_mimo_err_no_ba_usr; /* Number of times BA is not received for a user in MU PPDU */
  1075. A_UINT32 mu_mimo_mpdu_underrun_usr;
  1076. A_UINT32 mu_mimo_ampdu_underrun_usr;
  1077. } htt_tx_hwq_mu_mimo_mpdu_stats_tlv;
  1078. #define HTT_TX_HWQ_MU_MIMO_CMN_STATS_MAC_ID_M 0x000000ff
  1079. #define HTT_TX_HWQ_MU_MIMO_CMN_STATS_MAC_ID_S 0
  1080. #define HTT_TX_HWQ_MU_MIMO_CMN_STATS_HWQ_ID_M 0x0000ff00
  1081. #define HTT_TX_HWQ_MU_MIMO_CMN_STATS_HWQ_ID_S 8
  1082. #define HTT_TX_HWQ_MU_MIMO_CMN_STATS_MAC_ID_GET(_var) \
  1083. (((_var) & HTT_TX_HWQ_MU_MIMO_CMN_STATS_MAC_ID_M) >> \
  1084. HTT_TX_HWQ_MU_MIMO_CMN_STATS_MAC_ID_S)
  1085. #define HTT_TX_HWQ_MU_MIMO_CMN_STATS_MAC_ID_SET(_var, _val) \
  1086. do { \
  1087. HTT_CHECK_SET_VAL(HTT_TX_HWQ_MU_MIMO_CMN_STATS_MAC_ID, _val); \
  1088. ((_var) |= ((_val) << HTT_TX_HWQ_MU_MIMO_CMN_STATS_MAC_ID_S)); \
  1089. } while (0)
  1090. #define HTT_TX_HWQ_MU_MIMO_CMN_STATS_HWQ_ID_GET(_var) \
  1091. (((_var) & HTT_TX_HWQ_MU_MIMO_CMN_STATS_HWQ_ID_M) >> \
  1092. HTT_TX_HWQ_MU_MIMO_CMN_STATS_HWQ_ID_S)
  1093. #define HTT_TX_HWQ_MU_MIMO_CMN_STATS_HWQ_ID_SET(_var, _val) \
  1094. do { \
  1095. HTT_CHECK_SET_VAL(HTT_TX_HWQ_MU_MIMO_CMN_STATS_HWQ_ID, _val); \
  1096. ((_var) |= ((_val) << HTT_TX_HWQ_MU_MIMO_CMN_STATS_HWQ_ID_S)); \
  1097. } while (0)
  1098. typedef struct {
  1099. htt_tlv_hdr_t tlv_hdr;
  1100. /* BIT [ 7 : 0] :- mac_id
  1101. * BIT [15 : 8] :- hwq_id
  1102. * BIT [31 : 16] :- reserved
  1103. */
  1104. A_UINT32 mac_id__hwq_id__word;
  1105. } htt_tx_hwq_mu_mimo_cmn_stats_tlv;
  1106. /* NOTE:
  1107. * This structure is for documentation, and cannot be safely used directly.
  1108. * Instead, use the constituent TLV structures to fill/parse.
  1109. */
  1110. typedef struct {
  1111. struct _hwq_mu_mimo_stats {
  1112. htt_tx_hwq_mu_mimo_cmn_stats_tlv cmn_tlv;
  1113. htt_tx_hwq_mu_mimo_sch_stats_tlv mu_mimo_sch_stats_tlv[1]; /* WAL_TX_STATS_MAX_GROUP_SIZE */
  1114. htt_tx_hwq_mu_mimo_mpdu_stats_tlv mu_mimo_mpdu_stats_tlv[1]; /* WAL_TX_STATS_TX_MAX_NUM_USERS */
  1115. } hwq[1];
  1116. } htt_tx_hwq_mu_mimo_stats_t;
  1117. /* == TX HWQ STATS == */
  1118. #define HTT_TX_HWQ_STATS_CMN_MAC_ID_M 0x000000ff
  1119. #define HTT_TX_HWQ_STATS_CMN_MAC_ID_S 0
  1120. #define HTT_TX_HWQ_STATS_CMN_HWQ_ID_M 0x0000ff00
  1121. #define HTT_TX_HWQ_STATS_CMN_HWQ_ID_S 8
  1122. #define HTT_TX_HWQ_STATS_CMN_MAC_ID_GET(_var) \
  1123. (((_var) & HTT_TX_HWQ_STATS_CMN_MAC_ID_M) >> \
  1124. HTT_TX_HWQ_STATS_CMN_MAC_ID_S)
  1125. #define HTT_TX_HWQ_STATS_CMN_MAC_ID_SET(_var, _val) \
  1126. do { \
  1127. HTT_CHECK_SET_VAL(HTT_TX_HWQ_STATS_CMN_MAC_ID, _val); \
  1128. ((_var) |= ((_val) << HTT_TX_HWQ_STATS_CMN_MAC_ID_S)); \
  1129. } while (0)
  1130. #define HTT_TX_HWQ_STATS_CMN_HWQ_ID_GET(_var) \
  1131. (((_var) & HTT_TX_HWQ_STATS_CMN_HWQ_ID_M) >> \
  1132. HTT_TX_HWQ_STATS_CMN_HWQ_ID_S)
  1133. #define HTT_TX_HWQ_STATS_CMN_HWQ_ID_SET(_var, _val) \
  1134. do { \
  1135. HTT_CHECK_SET_VAL(HTT_TX_HWQ_STATS_CMN_HWQ_ID, _val); \
  1136. ((_var) |= ((_val) << HTT_TX_HWQ_STATS_CMN_HWQ_ID_S)); \
  1137. } while (0)
  1138. typedef struct {
  1139. htt_tlv_hdr_t tlv_hdr;
  1140. /* BIT [ 7 : 0] :- mac_id
  1141. * BIT [15 : 8] :- hwq_id
  1142. * BIT [31 : 16] :- reserved
  1143. */
  1144. A_UINT32 mac_id__hwq_id__word;
  1145. /* PPDU level stats */
  1146. A_UINT32 xretry; /* Number of times ack is failed for the PPDU scheduled on this txQ */
  1147. A_UINT32 underrun_cnt; /* Number of times sched cmd status reported mpdu underrun */
  1148. A_UINT32 flush_cnt; /* Number of times sched cmd is flushed */
  1149. A_UINT32 filt_cnt; /* Number of times sched cmd is filtered */
  1150. A_UINT32 null_mpdu_bmap; /* Number of times HWSCH uploaded null mpdu bitmap */
  1151. A_UINT32 user_ack_failure; /* Number of time user ack or ba tlv is not seen on FES ring where it is expected to be */
  1152. A_UINT32 ack_tlv_proc; /* Number of times TQM processed ack tlv received from HWSCH */
  1153. A_UINT32 sched_id_proc; /* Cache latest processed scheduler ID received from ack ba tlv */
  1154. A_UINT32 null_mpdu_tx_count; /* Number of times TxPCU reported mpdus transmitted for a user is zero */
  1155. A_UINT32 mpdu_bmap_not_recvd; /* Number of times SW did not see any mpdu info bitmap tlv on FES status ring */
  1156. /* Selfgen stats per hwQ */
  1157. A_UINT32 num_bar; /* Number of SU/MU BAR frames posted to hwQ */
  1158. A_UINT32 rts; /* Number of RTS frames posted to hwQ */
  1159. A_UINT32 cts2self; /* Number of cts2self frames posted to hwQ */
  1160. A_UINT32 qos_null; /* Number of qos null frames posted to hwQ */
  1161. /* MPDU level stats */
  1162. A_UINT32 mpdu_tried_cnt; /* mpdus tried Tx by HWSCH/TQM */
  1163. A_UINT32 mpdu_queued_cnt; /* mpdus queued to HWSCH */
  1164. A_UINT32 mpdu_ack_fail_cnt; /* mpdus tried but ack was not received */
  1165. A_UINT32 mpdu_filt_cnt; /* This will include sched cmd flush and time based discard */
  1166. A_UINT32 false_mpdu_ack_count; /* Number of MPDUs for which ACK was sucessful but no Tx happened */
  1167. A_UINT32 txq_timeout; /* Number of times txq timeout happened */
  1168. } htt_tx_hwq_stats_cmn_tlv;
  1169. #define HTT_TX_HWQ_DIFS_LATENCY_STATS_TLV_SZ(_num_elems) ( sizeof(A_UINT32) + /* hist_intvl */ \
  1170. (sizeof(A_UINT32) * (_num_elems)))
  1171. /* NOTE: Variable length TLV, use length spec to infer array size */
  1172. typedef struct {
  1173. htt_tlv_hdr_t tlv_hdr;
  1174. A_UINT32 hist_intvl;
  1175. /* histogram of ppdu post to hwsch - > cmd status received */
  1176. A_UINT32 difs_latency_hist[1]; /* HTT_TX_HWQ_MAX_DIFS_LATENCY_BINS */
  1177. } htt_tx_hwq_difs_latency_stats_tlv_v;
  1178. #define HTT_TX_HWQ_CMD_RESULT_STATS_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1179. /* NOTE: Variable length TLV, use length spec to infer array size */
  1180. typedef struct {
  1181. htt_tlv_hdr_t tlv_hdr;
  1182. /* Histogram of sched cmd result */
  1183. A_UINT32 cmd_result[1]; /* HTT_TX_HWQ_MAX_CMD_RESULT_STATS */
  1184. } htt_tx_hwq_cmd_result_stats_tlv_v;
  1185. #define HTT_TX_HWQ_CMD_STALL_STATS_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1186. /* NOTE: Variable length TLV, use length spec to infer array size */
  1187. typedef struct {
  1188. htt_tlv_hdr_t tlv_hdr;
  1189. /* Histogram of various pause conitions */
  1190. A_UINT32 cmd_stall_status[1]; /* HTT_TX_HWQ_MAX_CMD_STALL_STATS */
  1191. } htt_tx_hwq_cmd_stall_stats_tlv_v;
  1192. #define HTT_TX_HWQ_FES_RESULT_STATS_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1193. /* NOTE: Variable length TLV, use length spec to infer array size */
  1194. typedef struct {
  1195. htt_tlv_hdr_t tlv_hdr;
  1196. /* Histogram of number of user fes result */
  1197. A_UINT32 fes_result[1]; /* HTT_TX_HWQ_MAX_FES_RESULT_STATS */
  1198. } htt_tx_hwq_fes_result_stats_tlv_v;
  1199. #define HTT_TX_HWQ_TRIED_MPDU_CNT_HIST_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1200. /* NOTE: Variable length TLV, use length spec to infer array size
  1201. *
  1202. * The hwq_tried_mpdu_cnt_hist is a histogram of MPDUs tries per HWQ.
  1203. * The tries here is the count of the MPDUS within a PPDU that the HW
  1204. * had attempted to transmit on air, for the HWSCH Schedule command
  1205. * submitted by FW in this HWQ .It is not the retry attempts. The
  1206. * histogram bins are 0-29, 30-59, 60-89 and so on. The are 10 bins
  1207. * in this histogram.
  1208. * they are defined in FW using the following macros
  1209. * #define WAL_MAX_TRIED_MPDU_CNT_HISTOGRAM 9
  1210. * #define WAL_TRIED_MPDU_CNT_HISTOGRAM_INTERVAL 30
  1211. *
  1212. * */
  1213. typedef struct {
  1214. htt_tlv_hdr_t tlv_hdr;
  1215. A_UINT32 hist_bin_size;
  1216. /* Histogram of number of mpdus on tried mpdu */
  1217. A_UINT32 tried_mpdu_cnt_hist[1]; /* HTT_TX_HWQ_TRIED_MPDU_CNT_HIST */
  1218. } htt_tx_hwq_tried_mpdu_cnt_hist_tlv_v;
  1219. #define HTT_TX_HWQ_TXOP_USED_CNT_HIST_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1220. /* NOTE: Variable length TLV, use length spec to infer array size
  1221. *
  1222. * The txop_used_cnt_hist is the histogram of txop per burst. After
  1223. * completing the burst, we identify the txop used in the burst and
  1224. * incr the corresponding bin.
  1225. * Each bin represents 1ms & we have 10 bins in this histogram.
  1226. * they are deined in FW using the following macros
  1227. * #define WAL_MAX_TXOP_USED_CNT_HISTOGRAM 10
  1228. * #define WAL_TXOP_USED_HISTOGRAM_INTERVAL 1000 ( 1 ms )
  1229. *
  1230. * */
  1231. typedef struct {
  1232. htt_tlv_hdr_t tlv_hdr;
  1233. /* Histogram of txop used cnt */
  1234. A_UINT32 txop_used_cnt_hist[1]; /* HTT_TX_HWQ_TXOP_USED_CNT_HIST */
  1235. } htt_tx_hwq_txop_used_cnt_hist_tlv_v;
  1236. /* STATS_TYPE : HTT_DBG_EXT_STATS_PDEV_TX_HWQ
  1237. * TLV_TAGS:
  1238. * - HTT_STATS_STRING_TAG
  1239. * - HTT_STATS_TX_HWQ_CMN_TAG
  1240. * - HTT_STATS_TX_HWQ_DIFS_LATENCY_TAG
  1241. * - HTT_STATS_TX_HWQ_CMD_RESULT_TAG
  1242. * - HTT_STATS_TX_HWQ_CMD_STALL_TAG
  1243. * - HTT_STATS_TX_HWQ_FES_STATUS_TAG
  1244. * - HTT_STATS_TX_HWQ_TRIED_MPDU_CNT_HIST_TAG
  1245. * - HTT_STATS_TX_HWQ_TXOP_USED_CNT_HIST_TAG
  1246. */
  1247. /* NOTE:
  1248. * This structure is for documentation, and cannot be safely used directly.
  1249. * Instead, use the constituent TLV structures to fill/parse.
  1250. * General HWQ stats Mechanism:
  1251. * Once the host request for the stats, FW fill all the HWQ TAGS in a buffer
  1252. * for all the HWQ requested. & the FW send the buffer to host. In the
  1253. * buffer the HWQ ID is filled in mac_id__hwq_id, thus identifying each
  1254. * HWQ distinctly.
  1255. */
  1256. typedef struct _htt_tx_hwq_stats {
  1257. htt_stats_string_tlv hwq_str_tlv;
  1258. htt_tx_hwq_stats_cmn_tlv cmn_tlv;
  1259. htt_tx_hwq_difs_latency_stats_tlv_v difs_tlv;
  1260. htt_tx_hwq_cmd_result_stats_tlv_v cmd_result_tlv;
  1261. htt_tx_hwq_cmd_stall_stats_tlv_v cmd_stall_tlv;
  1262. htt_tx_hwq_fes_result_stats_tlv_v fes_stats_tlv;
  1263. htt_tx_hwq_tried_mpdu_cnt_hist_tlv_v tried_mpdu_tlv;
  1264. htt_tx_hwq_txop_used_cnt_hist_tlv_v txop_used_tlv;
  1265. } htt_tx_hwq_stats_t;
  1266. /* == TX SELFGEN STATS == */
  1267. #define HTT_TX_SELFGEN_CMN_STATS_MAC_ID_M 0x000000ff
  1268. #define HTT_TX_SELFGEN_CMN_STATS_MAC_ID_S 0
  1269. #define HTT_TX_SELFGEN_CMN_STATS_MAC_ID_GET(_var) \
  1270. (((_var) & HTT_TX_SELFGEN_CMN_STATS_MAC_ID_M) >> \
  1271. HTT_TX_SELFGEN_CMN_STATS_MAC_ID_S)
  1272. #define HTT_TX_SELFGEN_CMN_STATS_MAC_ID_SET(_var, _val) \
  1273. do { \
  1274. HTT_CHECK_SET_VAL(HTT_TX_SELFGEN_CMN_STATS_MAC_ID, _val); \
  1275. ((_var) |= ((_val) << HTT_TX_SELFGEN_CMN_STATS_MAC_ID_S)); \
  1276. } while (0)
  1277. typedef struct {
  1278. htt_tlv_hdr_t tlv_hdr;
  1279. /* BIT [ 7 : 0] :- mac_id
  1280. * BIT [31 : 8] :- reserved
  1281. */
  1282. A_UINT32 mac_id__word;
  1283. A_UINT32 su_bar;
  1284. A_UINT32 rts;
  1285. A_UINT32 cts2self;
  1286. A_UINT32 qos_null;
  1287. A_UINT32 delayed_bar_1; /* MU user 1 */
  1288. A_UINT32 delayed_bar_2; /* MU user 2 */
  1289. A_UINT32 delayed_bar_3; /* MU user 3 */
  1290. A_UINT32 delayed_bar_4; /* MU user 4 */
  1291. A_UINT32 delayed_bar_5; /* MU user 5 */
  1292. A_UINT32 delayed_bar_6; /* MU user 6 */
  1293. A_UINT32 delayed_bar_7; /* MU user 7 */
  1294. } htt_tx_selfgen_cmn_stats_tlv;
  1295. typedef struct {
  1296. htt_tlv_hdr_t tlv_hdr;
  1297. /* 11AC */
  1298. A_UINT32 ac_su_ndpa;
  1299. A_UINT32 ac_su_ndp;
  1300. A_UINT32 ac_mu_mimo_ndpa;
  1301. A_UINT32 ac_mu_mimo_ndp;
  1302. A_UINT32 ac_mu_mimo_brpoll_1; /* MU user 1 */
  1303. A_UINT32 ac_mu_mimo_brpoll_2; /* MU user 2 */
  1304. A_UINT32 ac_mu_mimo_brpoll_3; /* MU user 3 */
  1305. } htt_tx_selfgen_ac_stats_tlv;
  1306. typedef struct {
  1307. htt_tlv_hdr_t tlv_hdr;
  1308. /* 11AX */
  1309. A_UINT32 ax_su_ndpa;
  1310. A_UINT32 ax_su_ndp;
  1311. A_UINT32 ax_mu_mimo_ndpa;
  1312. A_UINT32 ax_mu_mimo_ndp;
  1313. A_UINT32 ax_mu_mimo_brpoll_1; /* MU user 1 */
  1314. A_UINT32 ax_mu_mimo_brpoll_2; /* MU user 2 */
  1315. A_UINT32 ax_mu_mimo_brpoll_3; /* MU user 3 */
  1316. A_UINT32 ax_mu_mimo_brpoll_4; /* MU user 4 */
  1317. A_UINT32 ax_mu_mimo_brpoll_5; /* MU user 5 */
  1318. A_UINT32 ax_mu_mimo_brpoll_6; /* MU user 6 */
  1319. A_UINT32 ax_mu_mimo_brpoll_7; /* MU user 7 */
  1320. A_UINT32 ax_basic_trigger;
  1321. A_UINT32 ax_bsr_trigger;
  1322. A_UINT32 ax_mu_bar_trigger;
  1323. A_UINT32 ax_mu_rts_trigger;
  1324. } htt_tx_selfgen_ax_stats_tlv;
  1325. typedef struct {
  1326. htt_tlv_hdr_t tlv_hdr;
  1327. /* 11AC error stats */
  1328. A_UINT32 ac_su_ndp_err;
  1329. A_UINT32 ac_su_ndpa_err;
  1330. A_UINT32 ac_mu_mimo_ndpa_err;
  1331. A_UINT32 ac_mu_mimo_ndp_err;
  1332. A_UINT32 ac_mu_mimo_brp1_err;
  1333. A_UINT32 ac_mu_mimo_brp2_err;
  1334. A_UINT32 ac_mu_mimo_brp3_err;
  1335. } htt_tx_selfgen_ac_err_stats_tlv;
  1336. typedef struct {
  1337. htt_tlv_hdr_t tlv_hdr;
  1338. /* 11AX error stats */
  1339. A_UINT32 ax_su_ndp_err;
  1340. A_UINT32 ax_su_ndpa_err;
  1341. A_UINT32 ax_mu_mimo_ndpa_err;
  1342. A_UINT32 ax_mu_mimo_ndp_err;
  1343. A_UINT32 ax_mu_mimo_brp1_err;
  1344. A_UINT32 ax_mu_mimo_brp2_err;
  1345. A_UINT32 ax_mu_mimo_brp3_err;
  1346. A_UINT32 ax_mu_mimo_brp4_err;
  1347. A_UINT32 ax_mu_mimo_brp5_err;
  1348. A_UINT32 ax_mu_mimo_brp6_err;
  1349. A_UINT32 ax_mu_mimo_brp7_err;
  1350. A_UINT32 ax_basic_trigger_err;
  1351. A_UINT32 ax_bsr_trigger_err;
  1352. A_UINT32 ax_mu_bar_trigger_err;
  1353. A_UINT32 ax_mu_rts_trigger_err;
  1354. } htt_tx_selfgen_ax_err_stats_tlv;
  1355. /* STATS_TYPE : HTT_DBG_EXT_STATS_TX_SELFGEN_INFO
  1356. * TLV_TAGS:
  1357. * - HTT_STATS_TX_SELFGEN_CMN_STATS_TAG
  1358. * - HTT_STATS_TX_SELFGEN_AC_STATS_TAG
  1359. * - HTT_STATS_TX_SELFGEN_AX_STATS_TAG
  1360. * - HTT_STATS_TX_SELFGEN_AC_ERR_STATS_TAG
  1361. * - HTT_STATS_TX_SELFGEN_AX_ERR_STATS_TAG
  1362. */
  1363. /* NOTE:
  1364. * This structure is for documentation, and cannot be safely used directly.
  1365. * Instead, use the constituent TLV structures to fill/parse.
  1366. */
  1367. typedef struct {
  1368. htt_tx_selfgen_cmn_stats_tlv cmn_tlv;
  1369. /* 11AC */
  1370. htt_tx_selfgen_ac_stats_tlv ac_tlv;
  1371. /* 11AX */
  1372. htt_tx_selfgen_ax_stats_tlv ax_tlv;
  1373. /* 11AC error stats */
  1374. htt_tx_selfgen_ac_err_stats_tlv ac_err_tlv;
  1375. /* 11AX error stats */
  1376. htt_tx_selfgen_ax_err_stats_tlv ax_err_tlv;
  1377. } htt_tx_pdev_selfgen_stats_t;
  1378. /* == TX MU STATS == */
  1379. #define HTT_TX_PDEV_STATS_NUM_AC_MUMIMO_USER_STATS 4
  1380. #define HTT_TX_PDEV_STATS_NUM_AX_MUMIMO_USER_STATS 8
  1381. #define HTT_TX_PDEV_STATS_NUM_OFDMA_USER_STATS 74
  1382. typedef struct {
  1383. htt_tlv_hdr_t tlv_hdr;
  1384. /* mu-mimo sw sched cmd stats */
  1385. A_UINT32 mu_mimo_sch_posted;
  1386. A_UINT32 mu_mimo_sch_failed;
  1387. /* MU PPDU stats per hwQ */
  1388. A_UINT32 mu_mimo_ppdu_posted;
  1389. /*
  1390. * Counts the number of users in each transmission of
  1391. * the given TX mode.
  1392. *
  1393. * Index is the number of users - 1.
  1394. */
  1395. A_UINT32 ac_mu_mimo_sch_nusers[HTT_TX_PDEV_STATS_NUM_AC_MUMIMO_USER_STATS];
  1396. A_UINT32 ax_mu_mimo_sch_nusers[HTT_TX_PDEV_STATS_NUM_AX_MUMIMO_USER_STATS];
  1397. A_UINT32 ax_ofdma_sch_nusers[HTT_TX_PDEV_STATS_NUM_OFDMA_USER_STATS];
  1398. } htt_tx_pdev_mu_mimo_sch_stats_tlv;
  1399. typedef struct {
  1400. htt_tlv_hdr_t tlv_hdr;
  1401. /* mu-mimo mpdu level stats */
  1402. /*
  1403. * This first block of stats is limited to 11ac
  1404. * MU-MIMO transmission.
  1405. */
  1406. A_UINT32 mu_mimo_mpdus_queued_usr;
  1407. A_UINT32 mu_mimo_mpdus_tried_usr;
  1408. A_UINT32 mu_mimo_mpdus_failed_usr;
  1409. A_UINT32 mu_mimo_mpdus_requeued_usr;
  1410. A_UINT32 mu_mimo_err_no_ba_usr;
  1411. A_UINT32 mu_mimo_mpdu_underrun_usr;
  1412. A_UINT32 mu_mimo_ampdu_underrun_usr;
  1413. A_UINT32 ax_mu_mimo_mpdus_queued_usr;
  1414. A_UINT32 ax_mu_mimo_mpdus_tried_usr;
  1415. A_UINT32 ax_mu_mimo_mpdus_failed_usr;
  1416. A_UINT32 ax_mu_mimo_mpdus_requeued_usr;
  1417. A_UINT32 ax_mu_mimo_err_no_ba_usr;
  1418. A_UINT32 ax_mu_mimo_mpdu_underrun_usr;
  1419. A_UINT32 ax_mu_mimo_ampdu_underrun_usr;
  1420. A_UINT32 ax_ofdma_mpdus_queued_usr;
  1421. A_UINT32 ax_ofdma_mpdus_tried_usr;
  1422. A_UINT32 ax_ofdma_mpdus_failed_usr;
  1423. A_UINT32 ax_ofdma_mpdus_requeued_usr;
  1424. A_UINT32 ax_ofdma_err_no_ba_usr;
  1425. A_UINT32 ax_ofdma_mpdu_underrun_usr;
  1426. A_UINT32 ax_ofdma_ampdu_underrun_usr;
  1427. } htt_tx_pdev_mu_mimo_mpdu_stats_tlv;
  1428. #define HTT_STATS_TX_SCHED_MODE_MU_MIMO_AC 1 /* SCHED_TX_MODE_MU_MIMO_AC */
  1429. #define HTT_STATS_TX_SCHED_MODE_MU_MIMO_AX 2 /* SCHED_TX_MODE_MU_MIMO_AX */
  1430. #define HTT_STATS_TX_SCHED_MODE_MU_OFDMA_AX 3 /* SCHED_TX_MODE_MU_OFDMA_AX */
  1431. typedef struct {
  1432. htt_tlv_hdr_t tlv_hdr;
  1433. /* mpdu level stats */
  1434. A_UINT32 mpdus_queued_usr;
  1435. A_UINT32 mpdus_tried_usr;
  1436. A_UINT32 mpdus_failed_usr;
  1437. A_UINT32 mpdus_requeued_usr;
  1438. A_UINT32 err_no_ba_usr;
  1439. A_UINT32 mpdu_underrun_usr;
  1440. A_UINT32 ampdu_underrun_usr;
  1441. A_UINT32 user_index;
  1442. A_UINT32 tx_sched_mode; /* HTT_STATS_TX_SCHED_MODE_xxx */
  1443. } htt_tx_pdev_mpdu_stats_tlv;
  1444. /* STATS_TYPE : HTT_DBG_EXT_STATS_PDEV_TX_MU
  1445. * TLV_TAGS:
  1446. * - HTT_STATS_TX_PDEV_MU_MIMO_STATS_TAG (multiple)
  1447. * - HTT_STATS_TX_PDEV_MPDU_STATS_TAG (multiple)
  1448. */
  1449. /* NOTE:
  1450. * This structure is for documentation, and cannot be safely used directly.
  1451. * Instead, use the constituent TLV structures to fill/parse.
  1452. */
  1453. typedef struct {
  1454. htt_tx_pdev_mu_mimo_sch_stats_tlv mu_mimo_sch_stats_tlv[1]; /* WAL_TX_STATS_MAX_GROUP_SIZE */
  1455. /*
  1456. * Note that though mu_mimo_mpdu_stats_tlv is named MU-MIMO,
  1457. * it can also hold MU-OFDMA stats.
  1458. */
  1459. htt_tx_pdev_mpdu_stats_tlv mu_mimo_mpdu_stats_tlv[1]; /* WAL_TX_STATS_MAX_NUM_USERS */
  1460. } htt_tx_pdev_mu_mimo_stats_t;
  1461. /* == TX SCHED STATS == */
  1462. #define HTT_SCHED_TXQ_CMD_POSTED_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1463. /* NOTE: Variable length TLV, use length spec to infer array size */
  1464. typedef struct {
  1465. htt_tlv_hdr_t tlv_hdr;
  1466. /* Scheduler command posted per tx_mode su / mu mimo 11ac / mu mimo 11ax / mu ofdma */
  1467. A_UINT32 sched_cmd_posted[1]; /* HTT_TX_PDEV_SCHED_TX_MODE_MAX */
  1468. } htt_sched_txq_cmd_posted_tlv_v;
  1469. #define HTT_SCHED_TXQ_CMD_REAPED_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1470. /* NOTE: Variable length TLV, use length spec to infer array size */
  1471. typedef struct {
  1472. htt_tlv_hdr_t tlv_hdr;
  1473. /* Scheduler command reaped per tx_mode su / mu mimo 11ac / mu mimo 11ax / mu ofdma */
  1474. A_UINT32 sched_cmd_reaped[1]; /* HTT_TX_PDEV_SCHED_TX_MODE_MAX */
  1475. } htt_sched_txq_cmd_reaped_tlv_v;
  1476. #define HTT_SCHED_TXQ_SCHED_ORDER_SU_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1477. /* NOTE: Variable length TLV, use length spec to infer array size */
  1478. typedef struct {
  1479. htt_tlv_hdr_t tlv_hdr;
  1480. /*
  1481. * sched_order_su contains the peer IDs of peers chosen in the last
  1482. * NUM_SCHED_ORDER_LOG scheduler instances.
  1483. * The array is circular; it's unspecified which array element corresponds
  1484. * to the most recent scheduler invocation, and which corresponds to
  1485. * the (NUM_SCHED_ORDER_LOG-1) most recent scheduler invocation.
  1486. */
  1487. A_UINT32 sched_order_su[1]; /* HTT_TX_PDEV_NUM_SCHED_ORDER_LOG */
  1488. } htt_sched_txq_sched_order_su_tlv_v;
  1489. typedef enum {
  1490. HTT_SCHED_TID_SKIP_SCHED_MASK_DISABLED = 0, /* Skip the tid when WAL_TID_DISABLE_TX_SCHED_MASK is true */
  1491. HTT_SCHED_TID_SKIP_NOTIFY_MPDU, /* Skip the tid's 2nd sched_cmd when 1st cmd is ongoing */
  1492. HTT_SCHED_TID_SKIP_MPDU_STATE_INVALID, /* Skip the tid when MPDU state is invalid */
  1493. HTT_SCHED_TID_SKIP_SCHED_DISABLED, /* Skip the tid when scheduling is disabled for that tid */
  1494. HTT_SCHED_TID_SKIP_TQM_BYPASS_CMD_PENDING, /* Skip the TQM bypass tid when it has pending sched_cmd */
  1495. HTT_SCHED_TID_SKIP_SECOND_SU_SCHEDULE, /* Skip tid from 2nd SU schedule when any of the following flag is set
  1496. WAL_TX_TID(SEND_BAR | TQM_MPDU_STATE_VALID | SEND_QOS_NULL | TQM_NOTIFY_MPDU | SENDN_PENDING) */
  1497. HTT_SCHED_TID_SKIP_CMD_SLOT_NOT_AVAIL, /* Skip the tid when command slot is not available */
  1498. HTT_SCHED_TID_SKIP_NO_ENQ, /* Skip the tid when num_frames is zero with g_disable_remove_tid as true */
  1499. HTT_SCHED_TID_SKIP_LOW_ENQ, /* Skip the tid when enqueue is low */
  1500. HTT_SCHED_TID_SKIP_PAUSED, /* Skipping the paused tid(sendn-frames) */
  1501. HTT_SCHED_TID_SKIP_UL, /* UL tid skip */
  1502. HTT_SCHED_TID_REMOVE_PAUSED, /* Removing the paused tid when number of sendn frames is zero */
  1503. HTT_SCHED_TID_REMOVE_NO_ENQ, /* Remove tid with zero queue depth */
  1504. HTT_SCHED_TID_REMOVE_UL, /* UL tid remove */
  1505. HTT_SCHED_TID_QUERY, /* Moving to next user and adding tid in prepend list when qstats update is pending */
  1506. HTT_SCHED_TID_SU_ONLY, /* Tid is eligible and TX_SCHED_SU_ONLY is true */
  1507. HTT_SCHED_TID_ELIGIBLE, /* Tid is eligible for scheduling */
  1508. HTT_SCHED_INELIGIBILITY_MAX,
  1509. } htt_sched_txq_sched_ineligibility_tlv_enum;
  1510. #define HTT_SCHED_TXQ_SCHED_INELIGIBILITY_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1511. /* NOTE: Variable length TLV, use length spec to infer array size */
  1512. typedef struct {
  1513. htt_tlv_hdr_t tlv_hdr;
  1514. /* sched_ineligibility counts the number of occurrences of different reasons for tid ineligibility during eligibility checks per txq in scheduling */
  1515. A_UINT32 sched_ineligibility[1]; /* indexed by htt_sched_txq_sched_ineligibility_tlv_enum */
  1516. } htt_sched_txq_sched_ineligibility_tlv_v;
  1517. #define HTT_TX_PDEV_STATS_SCHED_PER_TXQ_MAC_ID_M 0x000000ff
  1518. #define HTT_TX_PDEV_STATS_SCHED_PER_TXQ_MAC_ID_S 0
  1519. #define HTT_TX_PDEV_STATS_SCHED_PER_TXQ_TXQUEUE_ID_M 0x0000ff00
  1520. #define HTT_TX_PDEV_STATS_SCHED_PER_TXQ_TXQUEUE_ID_S 8
  1521. #define HTT_TX_PDEV_STATS_SCHED_PER_TXQ_MAC_ID_GET(_var) \
  1522. (((_var) & HTT_TX_PDEV_STATS_SCHED_PER_TXQ_MAC_ID_M) >> \
  1523. HTT_TX_PDEV_STATS_SCHED_PER_TXQ_MAC_ID_S)
  1524. #define HTT_TX_PDEV_STATS_SCHED_PER_TXQ_MAC_ID_SET(_var, _val) \
  1525. do { \
  1526. HTT_CHECK_SET_VAL(HTT_TX_PDEV_STATS_SCHED_PER_TXQ_MAC_ID, _val); \
  1527. ((_var) |= ((_val) << HTT_TX_PDEV_STATS_SCHED_PER_TXQ_MAC_ID_S)); \
  1528. } while (0)
  1529. #define HTT_TX_PDEV_STATS_SCHED_PER_TXQ_TXQUEUE_ID_GET(_var) \
  1530. (((_var) & HTT_TX_PDEV_STATS_SCHED_PER_TXQ_TXQUEUE_ID_M) >> \
  1531. HTT_TX_PDEV_STATS_SCHED_PER_TXQ_TXQUEUE_ID_S)
  1532. #define HTT_TX_PDEV_STATS_SCHED_PER_TXQ_TXQUEUE_ID_SET(_var, _val) \
  1533. do { \
  1534. HTT_CHECK_SET_VAL(HTT_TX_PDEV_STATS_SCHED_PER_TXQ_TXQUEUE_ID, _val); \
  1535. ((_var) |= ((_val) << HTT_TX_PDEV_STATS_SCHED_PER_TXQ_TXQUEUE_ID_S)); \
  1536. } while (0)
  1537. typedef struct {
  1538. htt_tlv_hdr_t tlv_hdr;
  1539. /* BIT [ 7 : 0] :- mac_id
  1540. * BIT [15 : 8] :- txq_id
  1541. * BIT [31 : 16] :- reserved
  1542. */
  1543. A_UINT32 mac_id__txq_id__word;
  1544. /* Scheduler policy ised for this TxQ */
  1545. A_UINT32 sched_policy;
  1546. /* Timestamp of last scheduler command posted */
  1547. A_UINT32 last_sched_cmd_posted_timestamp;
  1548. /* Timestamp of last scheduler command completed */
  1549. A_UINT32 last_sched_cmd_compl_timestamp;
  1550. /* Num of Sched2TAC ring hit Low Water Mark condition */
  1551. A_UINT32 sched_2_tac_lwm_count;
  1552. /* Num of Sched2TAC ring full condition */
  1553. A_UINT32 sched_2_tac_ring_full;
  1554. /* Num of scheduler command post failures that includes su/mu mimo/mu ofdma sequence type */
  1555. A_UINT32 sched_cmd_post_failure;
  1556. /* Num of active tids for this TxQ at current instance */
  1557. A_UINT32 num_active_tids;
  1558. /* Num of powersave schedules */
  1559. A_UINT32 num_ps_schedules;
  1560. /* Num of scheduler commands pending for this TxQ */
  1561. A_UINT32 sched_cmds_pending;
  1562. /* Num of tidq registration for this TxQ */
  1563. A_UINT32 num_tid_register;
  1564. /* Num of tidq de-registration for this TxQ */
  1565. A_UINT32 num_tid_unregister;
  1566. /* Num of iterations msduq stats was updated */
  1567. A_UINT32 num_qstats_queried;
  1568. /* qstats query update status */
  1569. A_UINT32 qstats_update_pending;
  1570. /* Timestamp of Last query stats made */
  1571. A_UINT32 last_qstats_query_timestamp;
  1572. /* Num of sched2tqm command queue full condition */
  1573. A_UINT32 num_tqm_cmdq_full;
  1574. /* Num of scheduler trigger from DE Module */
  1575. A_UINT32 num_de_sched_algo_trigger;
  1576. /* Num of scheduler trigger from RT Module */
  1577. A_UINT32 num_rt_sched_algo_trigger;
  1578. /* Num of scheduler trigger from TQM Module */
  1579. A_UINT32 num_tqm_sched_algo_trigger;
  1580. /* Num of schedules for notify frame */
  1581. A_UINT32 notify_sched;
  1582. /* Duration based sendn termination */
  1583. A_UINT32 dur_based_sendn_term;
  1584. } htt_tx_pdev_stats_sched_per_txq_tlv;
  1585. #define HTT_STATS_TX_SCHED_CMN_MAC_ID_M 0x000000ff
  1586. #define HTT_STATS_TX_SCHED_CMN_MAC_ID_S 0
  1587. #define HTT_STATS_TX_SCHED_CMN_MAC_ID_GET(_var) \
  1588. (((_var) & HTT_STATS_TX_SCHED_CMN_MAC_ID_M) >> \
  1589. HTT_STATS_TX_SCHED_CMN_MAC_ID_S)
  1590. #define HTT_STATS_TX_SCHED_CMN_MAC_ID_SET(_var, _val) \
  1591. do { \
  1592. HTT_CHECK_SET_VAL(HTT_STATS_TX_SCHED_CMN_MAC_ID, _val); \
  1593. ((_var) |= ((_val) << HTT_STATS_TX_SCHED_CMN_MAC_ID_S)); \
  1594. } while (0)
  1595. typedef struct {
  1596. htt_tlv_hdr_t tlv_hdr;
  1597. /* BIT [ 7 : 0] :- mac_id
  1598. * BIT [31 : 8] :- reserved
  1599. */
  1600. A_UINT32 mac_id__word;
  1601. /* Current timestamp */
  1602. A_UINT32 current_timestamp;
  1603. } htt_stats_tx_sched_cmn_tlv;
  1604. /* STATS_TYPE : HTT_DBG_EXT_STATS_PDEV_TX_SCHED
  1605. * TLV_TAGS:
  1606. * - HTT_STATS_TX_SCHED_CMN_TAG
  1607. * - HTT_STATS_TX_PDEV_SCHEDULER_TXQ_STATS_TAG
  1608. * - HTT_STATS_SCHED_TXQ_CMD_POSTED_TAG
  1609. * - HTT_STATS_SCHED_TXQ_CMD_REAPED_TAG
  1610. * - HTT_STATS_SCHED_TXQ_SCHED_ORDER_SU_TAG
  1611. * - HTT_STATS_SCHED_TXQ_SCHED_INELIGIBILITY_TAG
  1612. */
  1613. /* NOTE:
  1614. * This structure is for documentation, and cannot be safely used directly.
  1615. * Instead, use the constituent TLV structures to fill/parse.
  1616. */
  1617. typedef struct {
  1618. htt_stats_tx_sched_cmn_tlv cmn_tlv;
  1619. struct _txq_tx_sched_stats {
  1620. htt_tx_pdev_stats_sched_per_txq_tlv txq_tlv;
  1621. htt_sched_txq_cmd_posted_tlv_v cmd_posted_tlv;
  1622. htt_sched_txq_cmd_reaped_tlv_v cmd_reaped_tlv;
  1623. htt_sched_txq_sched_order_su_tlv_v sched_order_su_tlv;
  1624. htt_sched_txq_sched_ineligibility_tlv_v sched_ineligibility_tlv;
  1625. } txq[1];
  1626. } htt_stats_tx_sched_t;
  1627. /* == TQM STATS == */
  1628. #define HTT_TX_TQM_MAX_GEN_MPDU_END_REASON 16
  1629. #define HTT_TX_TQM_MAX_LIST_MPDU_END_REASON 16
  1630. #define HTT_TX_TQM_MAX_LIST_MPDU_CNT_HISTOGRAM_BINS 16
  1631. #define HTT_TX_TQM_GEN_MPDU_STATS_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1632. /* NOTE: Variable length TLV, use length spec to infer array size */
  1633. typedef struct {
  1634. htt_tlv_hdr_t tlv_hdr;
  1635. A_UINT32 gen_mpdu_end_reason[1]; /* HTT_TX_TQM_MAX_GEN_MPDU_END_REASON */
  1636. } htt_tx_tqm_gen_mpdu_stats_tlv_v;
  1637. #define HTT_TX_TQM_LIST_MPDU_STATS_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1638. /* NOTE: Variable length TLV, use length spec to infer array size */
  1639. typedef struct {
  1640. htt_tlv_hdr_t tlv_hdr;
  1641. A_UINT32 list_mpdu_end_reason[1]; /* HTT_TX_TQM_MAX_LIST_MPDU_END_REASON */
  1642. } htt_tx_tqm_list_mpdu_stats_tlv_v;
  1643. #define HTT_TX_TQM_LIST_MPDU_CNT_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  1644. /* NOTE: Variable length TLV, use length spec to infer array size */
  1645. typedef struct {
  1646. htt_tlv_hdr_t tlv_hdr;
  1647. A_UINT32 list_mpdu_cnt_hist[1]; /* HTT_TX_TQM_MAX_LIST_MPDU_CNT_HISTOGRAM_BINS */
  1648. } htt_tx_tqm_list_mpdu_cnt_tlv_v;
  1649. typedef struct {
  1650. htt_tlv_hdr_t tlv_hdr;
  1651. A_UINT32 msdu_count;
  1652. A_UINT32 mpdu_count;
  1653. A_UINT32 remove_msdu;
  1654. A_UINT32 remove_mpdu;
  1655. A_UINT32 remove_msdu_ttl;
  1656. A_UINT32 send_bar;
  1657. A_UINT32 bar_sync;
  1658. A_UINT32 notify_mpdu;
  1659. A_UINT32 sync_cmd;
  1660. A_UINT32 write_cmd;
  1661. A_UINT32 hwsch_trigger;
  1662. A_UINT32 ack_tlv_proc;
  1663. A_UINT32 gen_mpdu_cmd;
  1664. A_UINT32 gen_list_cmd;
  1665. A_UINT32 remove_mpdu_cmd;
  1666. A_UINT32 remove_mpdu_tried_cmd;
  1667. A_UINT32 mpdu_queue_stats_cmd;
  1668. A_UINT32 mpdu_head_info_cmd;
  1669. A_UINT32 msdu_flow_stats_cmd;
  1670. A_UINT32 remove_msdu_cmd;
  1671. A_UINT32 remove_msdu_ttl_cmd;
  1672. A_UINT32 flush_cache_cmd;
  1673. A_UINT32 update_mpduq_cmd;
  1674. A_UINT32 enqueue;
  1675. A_UINT32 enqueue_notify;
  1676. A_UINT32 notify_mpdu_at_head;
  1677. A_UINT32 notify_mpdu_state_valid;
  1678. /*
  1679. * On receiving TQM_FLOW_NOT_EMPTY_STATUS from TQM, (on MSDUs being enqueued
  1680. * the flow is non empty), if the number of MSDUs is greater than the threshold,
  1681. * notify is incremented. UDP_THRESH counters are for UDP MSDUs, and NONUDP are
  1682. * for non-UDP MSDUs.
  1683. * MSDUQ_SWNOTIFY_UDP_THRESH1 threshold - sched_udp_notify1 is incremented
  1684. * MSDUQ_SWNOTIFY_UDP_THRESH2 threshold - sched_udp_notify2 is incremented
  1685. * MSDUQ_SWNOTIFY_NONUDP_THRESH1 threshold - sched_nonudp_notify1 is incremented
  1686. * MSDUQ_SWNOTIFY_NONUDP_THRESH2 threshold - sched_nonudp_notify2 is incremented
  1687. *
  1688. * Notify signifies that we trigger the scheduler.
  1689. */
  1690. A_UINT32 sched_udp_notify1;
  1691. A_UINT32 sched_udp_notify2;
  1692. A_UINT32 sched_nonudp_notify1;
  1693. A_UINT32 sched_nonudp_notify2;
  1694. } htt_tx_tqm_pdev_stats_tlv_v;
  1695. #define HTT_TX_TQM_CMN_STATS_MAC_ID_M 0x000000ff
  1696. #define HTT_TX_TQM_CMN_STATS_MAC_ID_S 0
  1697. #define HTT_TX_TQM_CMN_STATS_MAC_ID_GET(_var) \
  1698. (((_var) & HTT_TX_TQM_CMN_STATS_MAC_ID_M) >> \
  1699. HTT_TX_TQM_CMN_STATS_MAC_ID_S)
  1700. #define HTT_TX_TQM_CMN_STATS_MAC_ID_SET(_var, _val) \
  1701. do { \
  1702. HTT_CHECK_SET_VAL(HTT_TX_TQM_CMN_STATS_MAC_ID, _val); \
  1703. ((_var) |= ((_val) << HTT_TX_TQM_CMN_STATS_MAC_ID_S)); \
  1704. } while (0)
  1705. typedef struct {
  1706. htt_tlv_hdr_t tlv_hdr;
  1707. /* BIT [ 7 : 0] :- mac_id
  1708. * BIT [31 : 8] :- reserved
  1709. */
  1710. A_UINT32 mac_id__word;
  1711. A_UINT32 max_cmdq_id;
  1712. A_UINT32 list_mpdu_cnt_hist_intvl;
  1713. /* Global stats */
  1714. A_UINT32 add_msdu;
  1715. A_UINT32 q_empty;
  1716. A_UINT32 q_not_empty;
  1717. A_UINT32 drop_notification;
  1718. A_UINT32 desc_threshold;
  1719. } htt_tx_tqm_cmn_stats_tlv;
  1720. typedef struct {
  1721. htt_tlv_hdr_t tlv_hdr;
  1722. /* Error stats */
  1723. A_UINT32 q_empty_failure;
  1724. A_UINT32 q_not_empty_failure;
  1725. A_UINT32 add_msdu_failure;
  1726. } htt_tx_tqm_error_stats_tlv;
  1727. /* STATS_TYPE : HTT_DBG_EXT_STATS_PDEV_TQM
  1728. * TLV_TAGS:
  1729. * - HTT_STATS_TX_TQM_CMN_TAG
  1730. * - HTT_STATS_TX_TQM_ERROR_STATS_TAG
  1731. * - HTT_STATS_TX_TQM_GEN_MPDU_TAG
  1732. * - HTT_STATS_TX_TQM_LIST_MPDU_TAG
  1733. * - HTT_STATS_TX_TQM_LIST_MPDU_CNT_TAG
  1734. * - HTT_STATS_TX_TQM_PDEV_TAG
  1735. */
  1736. /* NOTE:
  1737. * This structure is for documentation, and cannot be safely used directly.
  1738. * Instead, use the constituent TLV structures to fill/parse.
  1739. */
  1740. typedef struct {
  1741. htt_tx_tqm_cmn_stats_tlv cmn_tlv;
  1742. htt_tx_tqm_error_stats_tlv err_tlv;
  1743. htt_tx_tqm_gen_mpdu_stats_tlv_v gen_mpdu_stats_tlv;
  1744. htt_tx_tqm_list_mpdu_stats_tlv_v list_mpdu_stats_tlv;
  1745. htt_tx_tqm_list_mpdu_cnt_tlv_v list_mpdu_cnt_tlv;
  1746. htt_tx_tqm_pdev_stats_tlv_v tqm_pdev_stats_tlv;
  1747. } htt_tx_tqm_pdev_stats_t;
  1748. /* == TQM CMDQ stats == */
  1749. #define HTT_TX_TQM_CMDQ_STATUS_MAC_ID_M 0x000000ff
  1750. #define HTT_TX_TQM_CMDQ_STATUS_MAC_ID_S 0
  1751. #define HTT_TX_TQM_CMDQ_STATUS_CMDQ_ID_M 0x0000ff00
  1752. #define HTT_TX_TQM_CMDQ_STATUS_CMDQ_ID_S 8
  1753. #define HTT_TX_TQM_CMDQ_STATUS_MAC_ID_GET(_var) \
  1754. (((_var) & HTT_TX_TQM_CMDQ_STATUS_MAC_ID_M) >> \
  1755. HTT_TX_TQM_CMDQ_STATUS_MAC_ID_S)
  1756. #define HTT_TX_TQM_CMDQ_STATUS_MAC_ID_SET(_var, _val) \
  1757. do { \
  1758. HTT_CHECK_SET_VAL(HTT_TX_TQM_CMDQ_STATUS_MAC_ID, _val); \
  1759. ((_var) |= ((_val) << HTT_TX_TQM_CMDQ_STATUS_MAC_ID_S)); \
  1760. } while (0)
  1761. #define HTT_TX_TQM_CMDQ_STATUS_CMDQ_ID_GET(_var) \
  1762. (((_var) & HTT_TX_TQM_CMDQ_STATUS_CMDQ_ID_M) >> \
  1763. HTT_TX_TQM_CMDQ_STATUS_CMDQ_ID_S)
  1764. #define HTT_TX_TQM_CMDQ_STATUS_CMDQ_ID_SET(_var, _val) \
  1765. do { \
  1766. HTT_CHECK_SET_VAL(HTT_TX_TQM_CMDQ_STATUS_CMDQ_ID, _val); \
  1767. ((_var) |= ((_val) << HTT_TX_TQM_CMDQ_STATUS_CMDQ_ID_S)); \
  1768. } while (0)
  1769. typedef struct {
  1770. htt_tlv_hdr_t tlv_hdr;
  1771. /* BIT [ 7 : 0] :- mac_id
  1772. * BIT [15 : 8] :- cmdq_id
  1773. * BIT [31 : 16] :- reserved
  1774. */
  1775. A_UINT32 mac_id__cmdq_id__word;
  1776. A_UINT32 sync_cmd;
  1777. A_UINT32 write_cmd;
  1778. A_UINT32 gen_mpdu_cmd;
  1779. A_UINT32 mpdu_queue_stats_cmd;
  1780. A_UINT32 mpdu_head_info_cmd;
  1781. A_UINT32 msdu_flow_stats_cmd;
  1782. A_UINT32 remove_mpdu_cmd;
  1783. A_UINT32 remove_msdu_cmd;
  1784. A_UINT32 flush_cache_cmd;
  1785. A_UINT32 update_mpduq_cmd;
  1786. A_UINT32 update_msduq_cmd;
  1787. } htt_tx_tqm_cmdq_status_tlv;
  1788. /* STATS_TYPE : HTT_DBG_EXT_STATS_TQM_CMDQ
  1789. * TLV_TAGS:
  1790. * - HTT_STATS_STRING_TAG
  1791. * - HTT_STATS_TX_TQM_CMDQ_STATUS_TAG
  1792. */
  1793. /* NOTE:
  1794. * This structure is for documentation, and cannot be safely used directly.
  1795. * Instead, use the constituent TLV structures to fill/parse.
  1796. */
  1797. typedef struct {
  1798. struct _cmdq_stats {
  1799. htt_stats_string_tlv cmdq_str_tlv;
  1800. htt_tx_tqm_cmdq_status_tlv status_tlv;
  1801. } q[1];
  1802. } htt_tx_tqm_cmdq_stats_t;
  1803. /* == TX-DE STATS == */
  1804. /* Structures for tx de stats */
  1805. typedef struct {
  1806. htt_tlv_hdr_t tlv_hdr;
  1807. A_UINT32 m1_packets;
  1808. A_UINT32 m2_packets;
  1809. A_UINT32 m3_packets;
  1810. A_UINT32 m4_packets;
  1811. A_UINT32 g1_packets;
  1812. A_UINT32 g2_packets;
  1813. } htt_tx_de_eapol_packets_stats_tlv;
  1814. typedef struct {
  1815. htt_tlv_hdr_t tlv_hdr;
  1816. A_UINT32 ap_bss_peer_not_found;
  1817. A_UINT32 ap_bcast_mcast_no_peer;
  1818. A_UINT32 sta_delete_in_progress;
  1819. A_UINT32 ibss_no_bss_peer;
  1820. A_UINT32 invaild_vdev_type;
  1821. A_UINT32 invalid_ast_peer_entry;
  1822. A_UINT32 peer_entry_invalid;
  1823. A_UINT32 ethertype_not_ip;
  1824. A_UINT32 eapol_lookup_failed;
  1825. A_UINT32 qpeer_not_allow_data;
  1826. A_UINT32 fse_tid_override;
  1827. A_UINT32 ipv6_jumbogram_zero_length;
  1828. A_UINT32 qos_to_non_qos_in_prog;
  1829. } htt_tx_de_classify_failed_stats_tlv;
  1830. typedef struct {
  1831. htt_tlv_hdr_t tlv_hdr;
  1832. A_UINT32 arp_packets;
  1833. A_UINT32 igmp_packets;
  1834. A_UINT32 dhcp_packets;
  1835. A_UINT32 host_inspected;
  1836. A_UINT32 htt_included;
  1837. A_UINT32 htt_valid_mcs;
  1838. A_UINT32 htt_valid_nss;
  1839. A_UINT32 htt_valid_preamble_type;
  1840. A_UINT32 htt_valid_chainmask;
  1841. A_UINT32 htt_valid_guard_interval;
  1842. A_UINT32 htt_valid_retries;
  1843. A_UINT32 htt_valid_bw_info;
  1844. A_UINT32 htt_valid_power;
  1845. A_UINT32 htt_valid_key_flags;
  1846. A_UINT32 htt_valid_no_encryption;
  1847. A_UINT32 fse_entry_count;
  1848. A_UINT32 fse_priority_be;
  1849. A_UINT32 fse_priority_high;
  1850. A_UINT32 fse_priority_low;
  1851. A_UINT32 fse_traffic_ptrn_be;
  1852. A_UINT32 fse_traffic_ptrn_over_sub;
  1853. A_UINT32 fse_traffic_ptrn_bursty;
  1854. A_UINT32 fse_traffic_ptrn_interactive;
  1855. A_UINT32 fse_traffic_ptrn_periodic;
  1856. A_UINT32 fse_hwqueue_alloc;
  1857. A_UINT32 fse_hwqueue_created;
  1858. A_UINT32 fse_hwqueue_send_to_host;
  1859. A_UINT32 mcast_entry;
  1860. A_UINT32 bcast_entry;
  1861. A_UINT32 htt_update_peer_cache;
  1862. A_UINT32 htt_learning_frame;
  1863. A_UINT32 fse_invalid_peer;
  1864. /*
  1865. * mec_notify is HTT TX WBM multicast echo check notification
  1866. * from firmware to host. FW sends SA addresses to host for all
  1867. * multicast/broadcast packets received on STA side.
  1868. */
  1869. A_UINT32 mec_notify;
  1870. } htt_tx_de_classify_stats_tlv;
  1871. typedef struct {
  1872. htt_tlv_hdr_t tlv_hdr;
  1873. A_UINT32 eok;
  1874. A_UINT32 classify_done;
  1875. A_UINT32 lookup_failed;
  1876. A_UINT32 send_host_dhcp;
  1877. A_UINT32 send_host_mcast;
  1878. A_UINT32 send_host_unknown_dest;
  1879. A_UINT32 send_host;
  1880. A_UINT32 status_invalid;
  1881. } htt_tx_de_classify_status_stats_tlv;
  1882. typedef struct {
  1883. htt_tlv_hdr_t tlv_hdr;
  1884. A_UINT32 enqueued_pkts;
  1885. A_UINT32 to_tqm;
  1886. A_UINT32 to_tqm_bypass;
  1887. } htt_tx_de_enqueue_packets_stats_tlv;
  1888. typedef struct {
  1889. htt_tlv_hdr_t tlv_hdr;
  1890. A_UINT32 discarded_pkts;
  1891. A_UINT32 local_frames;
  1892. A_UINT32 is_ext_msdu;
  1893. } htt_tx_de_enqueue_discard_stats_tlv;
  1894. typedef struct {
  1895. htt_tlv_hdr_t tlv_hdr;
  1896. A_UINT32 tcl_dummy_frame;
  1897. A_UINT32 tqm_dummy_frame;
  1898. A_UINT32 tqm_notify_frame;
  1899. A_UINT32 fw2wbm_enq;
  1900. A_UINT32 tqm_bypass_frame;
  1901. } htt_tx_de_compl_stats_tlv;
  1902. #define HTT_TX_DE_CMN_STATS_MAC_ID_M 0x000000ff
  1903. #define HTT_TX_DE_CMN_STATS_MAC_ID_S 0
  1904. #define HTT_TX_DE_CMN_STATS_MAC_ID_GET(_var) \
  1905. (((_var) & HTT_TX_DE_CMN_STATS_MAC_ID_M) >> \
  1906. HTT_TX_DE_CMN_STATS_MAC_ID_S)
  1907. #define HTT_TX_DE_CMN_STATS_MAC_ID_SET(_var, _val) \
  1908. do { \
  1909. HTT_CHECK_SET_VAL(HTT_TX_DE_CMN_STATS_MAC_ID, _val); \
  1910. ((_var) |= ((_val) << HTT_TX_DE_CMN_STATS_MAC_ID_S)); \
  1911. } while (0)
  1912. /*
  1913. * The htt_tx_de_fw2wbm_ring_full_hist_tlv is a histogram of time we waited
  1914. * for the fw2wbm ring buffer. we are requesting a buffer in FW2WBM release
  1915. * ring,which may fail, due to non availability of buffer. Hence we sleep for
  1916. * 200us & again request for it. This is a histogram of time we wait, with
  1917. * bin of 200ms & there are 10 bin (2 seconds max)
  1918. * They are defined by the following macros in FW
  1919. * #define ENTRIES_PER_BIN_COUNT 1000 // per bin 1000 * 200us = 200ms
  1920. * #define RING_FULL_BIN_ENTRIES (WAL_TX_DE_FW2WBM_ALLOC_TIMEOUT_COUNT /
  1921. * ENTRIES_PER_BIN_COUNT)
  1922. */
  1923. typedef struct {
  1924. htt_tlv_hdr_t tlv_hdr;
  1925. A_UINT32 fw2wbm_ring_full_hist[1];
  1926. } htt_tx_de_fw2wbm_ring_full_hist_tlv;
  1927. typedef struct {
  1928. htt_tlv_hdr_t tlv_hdr;
  1929. /* BIT [ 7 : 0] :- mac_id
  1930. * BIT [31 : 8] :- reserved
  1931. */
  1932. A_UINT32 mac_id__word;
  1933. /* Global Stats */
  1934. A_UINT32 tcl2fw_entry_count;
  1935. A_UINT32 not_to_fw;
  1936. A_UINT32 invalid_pdev_vdev_peer;
  1937. A_UINT32 tcl_res_invalid_addrx;
  1938. A_UINT32 wbm2fw_entry_count;
  1939. A_UINT32 invalid_pdev;
  1940. } htt_tx_de_cmn_stats_tlv;
  1941. /* STATS_TYPE : HTT_DBG_EXT_STATS_TX_DE_INFO
  1942. * TLV_TAGS:
  1943. * - HTT_STATS_TX_DE_CMN_TAG
  1944. * - HTT_STATS_TX_DE_FW2WBM_RING_FULL_HIST_TAG
  1945. * - HTT_STATS_TX_DE_EAPOL_PACKETS_TAG
  1946. * - HTT_STATS_TX_DE_CLASSIFY_STATS_TAG
  1947. * - HTT_STATS_TX_DE_CLASSIFY_FAILED_TAG
  1948. * - HTT_STATS_TX_DE_CLASSIFY_STATUS_TAG
  1949. * - HTT_STATS_TX_DE_ENQUEUE_PACKETS_TAG
  1950. * - HTT_STATS_TX_DE_ENQUEUE_DISCARD_TAG
  1951. * - HTT_STATS_TX_DE_COMPL_STATS_TAG
  1952. */
  1953. /* NOTE:
  1954. * This structure is for documentation, and cannot be safely used directly.
  1955. * Instead, use the constituent TLV structures to fill/parse.
  1956. */
  1957. typedef struct {
  1958. htt_tx_de_cmn_stats_tlv cmn_tlv;
  1959. htt_tx_de_fw2wbm_ring_full_hist_tlv fw2wbm_hist_tlv;
  1960. htt_tx_de_eapol_packets_stats_tlv eapol_stats_tlv;
  1961. htt_tx_de_classify_stats_tlv classify_stats_tlv;
  1962. htt_tx_de_classify_failed_stats_tlv classify_failed_tlv;
  1963. htt_tx_de_classify_status_stats_tlv classify_status_rlv;
  1964. htt_tx_de_enqueue_packets_stats_tlv enqueue_packets_tlv;
  1965. htt_tx_de_enqueue_discard_stats_tlv enqueue_discard_tlv;
  1966. htt_tx_de_compl_stats_tlv comp_status_tlv;
  1967. } htt_tx_de_stats_t;
  1968. /* == RING-IF STATS == */
  1969. /* DWORD num_elems__prefetch_tail_idx */
  1970. #define HTT_RING_IF_STATS_NUM_ELEMS_M 0x0000ffff
  1971. #define HTT_RING_IF_STATS_NUM_ELEMS_S 0
  1972. #define HTT_RING_IF_STATS_PREFETCH_TAIL_IDX_M 0xffff0000
  1973. #define HTT_RING_IF_STATS_PREFETCH_TAIL_IDX_S 16
  1974. #define HTT_RING_IF_STATS_NUM_ELEMS_GET(_var) \
  1975. (((_var) & HTT_RING_IF_STATS_NUM_ELEMS_M) >> \
  1976. HTT_RING_IF_STATS_NUM_ELEMS_S)
  1977. #define HTT_RING_IF_STATS_NUM_ELEMS_SET(_var, _val) \
  1978. do { \
  1979. HTT_CHECK_SET_VAL(HTT_RING_IF_STATS_NUM_ELEMS, _val); \
  1980. ((_var) |= ((_val) << HTT_RING_IF_STATS_NUM_ELEMS_S)); \
  1981. } while (0)
  1982. #define HTT_RING_IF_STATS_PREFETCH_TAIL_IDX_GET(_var) \
  1983. (((_var) & HTT_RING_IF_STATS_PREFETCH_TAIL_IDX_M) >> \
  1984. HTT_RING_IF_STATS_PREFETCH_TAIL_IDX_S)
  1985. #define HTT_RING_IF_STATS_PREFETCH_TAIL_IDX_SET(_var, _val) \
  1986. do { \
  1987. HTT_CHECK_SET_VAL(HTT_RING_IF_STATS_PREFETCH_TAIL_IDX, _val); \
  1988. ((_var) |= ((_val) << HTT_RING_IF_STATS_PREFETCH_TAIL_IDX_S)); \
  1989. } while (0)
  1990. /* DWORD head_idx__tail_idx */
  1991. #define HTT_RING_IF_STATS_HEAD_IDX_M 0x0000ffff
  1992. #define HTT_RING_IF_STATS_HEAD_IDX_S 0
  1993. #define HTT_RING_IF_STATS_TAIL_IDX_M 0xffff0000
  1994. #define HTT_RING_IF_STATS_TAIL_IDX_S 16
  1995. #define HTT_RING_IF_STATS_HEAD_IDX_GET(_var) \
  1996. (((_var) & HTT_RING_IF_STATS_HEAD_IDX_M) >> \
  1997. HTT_RING_IF_STATS_HEAD_IDX_S)
  1998. #define HTT_RING_IF_STATS_HEAD_IDX_SET(_var, _val) \
  1999. do { \
  2000. HTT_CHECK_SET_VAL(HTT_RING_IF_STATS_HEAD_IDX, _val); \
  2001. ((_var) |= ((_val) << HTT_RING_IF_STATS_HEAD_IDX_S)); \
  2002. } while (0)
  2003. #define HTT_RING_IF_STATS_TAIL_IDX_GET(_var) \
  2004. (((_var) & HTT_RING_IF_STATS_TAIL_IDX_M) >> \
  2005. HTT_RING_IF_STATS_TAIL_IDX_S)
  2006. #define HTT_RING_IF_STATS_TAIL_IDX_SET(_var, _val) \
  2007. do { \
  2008. HTT_CHECK_SET_VAL(HTT_RING_IF_STATS_TAIL_IDX, _val); \
  2009. ((_var) |= ((_val) << HTT_RING_IF_STATS_TAIL_IDX_S)); \
  2010. } while (0)
  2011. /* DWORD shadow_head_idx__shadow_tail_idx */
  2012. #define HTT_RING_IF_STATS_SHADOW_HEAD_IDX_M 0x0000ffff
  2013. #define HTT_RING_IF_STATS_SHADOW_HEAD_IDX_S 0
  2014. #define HTT_RING_IF_STATS_SHADOW_TAIL_IDX_M 0xffff0000
  2015. #define HTT_RING_IF_STATS_SHADOW_TAIL_IDX_S 16
  2016. #define HTT_RING_IF_STATS_SHADOW_HEAD_IDX_GET(_var) \
  2017. (((_var) & HTT_RING_IF_STATS_SHADOW_HEAD_IDX_M) >> \
  2018. HTT_RING_IF_STATS_SHADOW_HEAD_IDX_S)
  2019. #define HTT_RING_IF_STATS_SHADOW_HEAD_IDX_SET(_var, _val) \
  2020. do { \
  2021. HTT_CHECK_SET_VAL(HTT_RING_IF_STATS_SHADOW_HEAD_IDX, _val); \
  2022. ((_var) |= ((_val) << HTT_RING_IF_STATS_SHADOW_HEAD_IDX_S)); \
  2023. } while (0)
  2024. #define HTT_RING_IF_STATS_SHADOW_TAIL_IDX_GET(_var) \
  2025. (((_var) & HTT_RING_IF_STATS_SHADOW_TAIL_IDX_M) >> \
  2026. HTT_RING_IF_STATS_SHADOW_TAIL_IDX_S)
  2027. #define HTT_RING_IF_STATS_SHADOW_TAIL_IDX_SET(_var, _val) \
  2028. do { \
  2029. HTT_CHECK_SET_VAL(HTT_RING_IF_STATS_SHADOW_TAIL_IDX, _val); \
  2030. ((_var) |= ((_val) << HTT_RING_IF_STATS_SHADOW_TAIL_IDX_S)); \
  2031. } while (0)
  2032. /* DWORD lwm_thresh__hwm_thresh */
  2033. #define HTT_RING_IF_STATS_LWM_THRESHOLD_M 0x0000ffff
  2034. #define HTT_RING_IF_STATS_LWM_THRESHOLD_S 0
  2035. #define HTT_RING_IF_STATS_HWM_THRESHOLD_M 0xffff0000
  2036. #define HTT_RING_IF_STATS_HWM_THRESHOLD_S 16
  2037. #define HTT_RING_IF_STATS_LWM_THRESHOLD_GET(_var) \
  2038. (((_var) & HTT_RING_IF_STATS_LWM_THRESHOLD_M) >> \
  2039. HTT_RING_IF_STATS_LWM_THRESHOLD_S)
  2040. #define HTT_RING_IF_STATS_LWM_THRESHOLD_SET(_var, _val) \
  2041. do { \
  2042. HTT_CHECK_SET_VAL(HTT_RING_IF_STATS_LWM_THRESHOLD, _val); \
  2043. ((_var) |= ((_val) << HTT_RING_IF_STATS_LWM_THRESHOLD_S)); \
  2044. } while (0)
  2045. #define HTT_RING_IF_STATS_HWM_THRESHOLD_GET(_var) \
  2046. (((_var) & HTT_RING_IF_STATS_HWM_THRESHOLD_M) >> \
  2047. HTT_RING_IF_STATS_HWM_THRESHOLD_S)
  2048. #define HTT_RING_IF_STATS_HWM_THRESHOLD_SET(_var, _val) \
  2049. do { \
  2050. HTT_CHECK_SET_VAL(HTT_RING_IF_STATS_HWM_THRESHOLD, _val); \
  2051. ((_var) |= ((_val) << HTT_RING_IF_STATS_HWM_THRESHOLD_S)); \
  2052. } while (0)
  2053. #define HTT_STATS_LOW_WM_BINS 5
  2054. #define HTT_STATS_HIGH_WM_BINS 5
  2055. typedef struct {
  2056. A_UINT32 base_addr; /* DWORD aligned base memory address of the ring */
  2057. A_UINT32 elem_size; /* size of each ring element */
  2058. /* BIT [15 : 0] :- num_elems
  2059. * BIT [31 : 16] :- prefetch_tail_idx
  2060. */
  2061. A_UINT32 num_elems__prefetch_tail_idx;
  2062. /* BIT [15 : 0] :- head_idx
  2063. * BIT [31 : 16] :- tail_idx
  2064. */
  2065. A_UINT32 head_idx__tail_idx;
  2066. /* BIT [15 : 0] :- shadow_head_idx
  2067. * BIT [31 : 16] :- shadow_tail_idx
  2068. */
  2069. A_UINT32 shadow_head_idx__shadow_tail_idx;
  2070. A_UINT32 num_tail_incr;
  2071. /* BIT [15 : 0] :- lwm_thresh
  2072. * BIT [31 : 16] :- hwm_thresh
  2073. */
  2074. A_UINT32 lwm_thresh__hwm_thresh;
  2075. A_UINT32 overrun_hit_count;
  2076. A_UINT32 underrun_hit_count;
  2077. A_UINT32 prod_blockwait_count;
  2078. A_UINT32 cons_blockwait_count;
  2079. A_UINT32 low_wm_hit_count[HTT_STATS_LOW_WM_BINS]; /* FIX THIS: explain what each array element is for */
  2080. A_UINT32 high_wm_hit_count[HTT_STATS_HIGH_WM_BINS]; /* FIX THIS: explain what each array element is for */
  2081. } htt_ring_if_stats_tlv;
  2082. #define HTT_RING_IF_CMN_MAC_ID_M 0x000000ff
  2083. #define HTT_RING_IF_CMN_MAC_ID_S 0
  2084. #define HTT_RING_IF_CMN_MAC_ID_GET(_var) \
  2085. (((_var) & HTT_RING_IF_CMN_MAC_ID_M) >> \
  2086. HTT_RING_IF_CMN_MAC_ID_S)
  2087. #define HTT_RING_IF_CMN_MAC_ID_SET(_var, _val) \
  2088. do { \
  2089. HTT_CHECK_SET_VAL(HTT_RING_IF_CMN_MAC_ID, _val); \
  2090. ((_var) |= ((_val) << HTT_RING_IF_CMN_MAC_ID_S)); \
  2091. } while (0)
  2092. typedef struct {
  2093. htt_tlv_hdr_t tlv_hdr;
  2094. /* BIT [ 7 : 0] :- mac_id
  2095. * BIT [31 : 8] :- reserved
  2096. */
  2097. A_UINT32 mac_id__word;
  2098. A_UINT32 num_records;
  2099. } htt_ring_if_cmn_tlv;
  2100. /* STATS_TYPE : HTT_DBG_EXT_STATS_RING_IF_INFO
  2101. * TLV_TAGS:
  2102. * - HTT_STATS_RING_IF_CMN_TAG
  2103. * - HTT_STATS_STRING_TAG
  2104. * - HTT_STATS_RING_IF_TAG
  2105. */
  2106. /* NOTE:
  2107. * This structure is for documentation, and cannot be safely used directly.
  2108. * Instead, use the constituent TLV structures to fill/parse.
  2109. */
  2110. typedef struct {
  2111. htt_ring_if_cmn_tlv cmn_tlv;
  2112. /* Variable based on the Number of records. */
  2113. struct _ring_if {
  2114. htt_stats_string_tlv ring_str_tlv;
  2115. htt_ring_if_stats_tlv ring_tlv;
  2116. } r[1];
  2117. } htt_ring_if_stats_t;
  2118. /* == SFM STATS == */
  2119. #define HTT_SFM_CLIENT_USER_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  2120. /* NOTE: Variable length TLV, use length spec to infer array size */
  2121. typedef struct {
  2122. htt_tlv_hdr_t tlv_hdr;
  2123. /* Number of DWORDS used per user and per client */
  2124. A_UINT32 dwords_used_by_user_n[1];
  2125. } htt_sfm_client_user_tlv_v;
  2126. typedef struct {
  2127. htt_tlv_hdr_t tlv_hdr;
  2128. /* Client ID */
  2129. A_UINT32 client_id;
  2130. /* Minimum number of buffers */
  2131. A_UINT32 buf_min;
  2132. /* Maximum number of buffers */
  2133. A_UINT32 buf_max;
  2134. /* Number of Busy buffers */
  2135. A_UINT32 buf_busy;
  2136. /* Number of Allocated buffers */
  2137. A_UINT32 buf_alloc;
  2138. /* Number of Available/Usable buffers */
  2139. A_UINT32 buf_avail;
  2140. /* Number of users */
  2141. A_UINT32 num_users;
  2142. } htt_sfm_client_tlv;
  2143. #define HTT_SFM_CMN_MAC_ID_M 0x000000ff
  2144. #define HTT_SFM_CMN_MAC_ID_S 0
  2145. #define HTT_SFM_CMN_MAC_ID_GET(_var) \
  2146. (((_var) & HTT_SFM_CMN_MAC_ID_M) >> \
  2147. HTT_SFM_CMN_MAC_ID_S)
  2148. #define HTT_SFM_CMN_MAC_ID_SET(_var, _val) \
  2149. do { \
  2150. HTT_CHECK_SET_VAL(HTT_SFM_CMN_MAC_ID, _val); \
  2151. ((_var) |= ((_val) << HTT_SFM_CMN_MAC_ID_S)); \
  2152. } while (0)
  2153. typedef struct {
  2154. htt_tlv_hdr_t tlv_hdr;
  2155. /* BIT [ 7 : 0] :- mac_id
  2156. * BIT [31 : 8] :- reserved
  2157. */
  2158. A_UINT32 mac_id__word;
  2159. /* Indicates the total number of 128 byte buffers in the CMEM that are available for buffer sharing */
  2160. A_UINT32 buf_total;
  2161. /* Indicates for certain client or all the clients there is no dowrd saved in SFM, refer to SFM_R1_MEM_EMPTY */
  2162. A_UINT32 mem_empty;
  2163. /* DEALLOCATE_BUFFERS, refer to register SFM_R0_DEALLOCATE_BUFFERS */
  2164. A_UINT32 deallocate_bufs;
  2165. /* Number of Records */
  2166. A_UINT32 num_records;
  2167. } htt_sfm_cmn_tlv;
  2168. /* STATS_TYPE : HTT_DBG_EXT_STATS_RING_IF_INFO
  2169. * TLV_TAGS:
  2170. * - HTT_STATS_SFM_CMN_TAG
  2171. * - HTT_STATS_STRING_TAG
  2172. * - HTT_STATS_SFM_CLIENT_TAG
  2173. * - HTT_STATS_SFM_CLIENT_USER_TAG
  2174. */
  2175. /* NOTE:
  2176. * This structure is for documentation, and cannot be safely used directly.
  2177. * Instead, use the constituent TLV structures to fill/parse.
  2178. */
  2179. typedef struct {
  2180. htt_sfm_cmn_tlv cmn_tlv;
  2181. /* Variable based on the Number of records. */
  2182. struct _sfm_client {
  2183. htt_stats_string_tlv client_str_tlv;
  2184. htt_sfm_client_tlv client_tlv;
  2185. htt_sfm_client_user_tlv_v user_tlv;
  2186. } r[1];
  2187. } htt_sfm_stats_t;
  2188. /* == SRNG STATS == */
  2189. /* DWORD mac_id__ring_id__arena__ep */
  2190. #define HTT_SRING_STATS_MAC_ID_M 0x000000ff
  2191. #define HTT_SRING_STATS_MAC_ID_S 0
  2192. #define HTT_SRING_STATS_RING_ID_M 0x0000ff00
  2193. #define HTT_SRING_STATS_RING_ID_S 8
  2194. #define HTT_SRING_STATS_ARENA_M 0x00ff0000
  2195. #define HTT_SRING_STATS_ARENA_S 16
  2196. #define HTT_SRING_STATS_EP_TYPE_M 0x01000000
  2197. #define HTT_SRING_STATS_EP_TYPE_S 24
  2198. #define HTT_SRING_STATS_MAC_ID_GET(_var) \
  2199. (((_var) & HTT_SRING_STATS_MAC_ID_M) >> \
  2200. HTT_SRING_STATS_MAC_ID_S)
  2201. #define HTT_SRING_STATS_MAC_ID_SET(_var, _val) \
  2202. do { \
  2203. HTT_CHECK_SET_VAL(HTT_SRING_STATS_MAC_ID, _val); \
  2204. ((_var) |= ((_val) << HTT_SRING_STATS_MAC_ID_S)); \
  2205. } while (0)
  2206. #define HTT_SRING_STATS_RING_ID_GET(_var) \
  2207. (((_var) & HTT_SRING_STATS_RING_ID_M) >> \
  2208. HTT_SRING_STATS_RING_ID_S)
  2209. #define HTT_SRING_STATS_RING_ID_SET(_var, _val) \
  2210. do { \
  2211. HTT_CHECK_SET_VAL(HTT_SRING_STATS_RING_ID, _val); \
  2212. ((_var) |= ((_val) << HTT_SRING_STATS_RING_ID_S)); \
  2213. } while (0)
  2214. #define HTT_SRING_STATS_ARENA_GET(_var) \
  2215. (((_var) & HTT_SRING_STATS_ARENA_M) >> \
  2216. HTT_SRING_STATS_ARENA_S)
  2217. #define HTT_SRING_STATS_ARENA_SET(_var, _val) \
  2218. do { \
  2219. HTT_CHECK_SET_VAL(HTT_SRING_STATS_ARENA, _val); \
  2220. ((_var) |= ((_val) << HTT_SRING_STATS_ARENA_S)); \
  2221. } while (0)
  2222. #define HTT_SRING_STATS_EP_TYPE_GET(_var) \
  2223. (((_var) & HTT_SRING_STATS_EP_TYPE_M) >> \
  2224. HTT_SRING_STATS_EP_TYPE_S)
  2225. #define HTT_SRING_STATS_EP_TYPE_SET(_var, _val) \
  2226. do { \
  2227. HTT_CHECK_SET_VAL(HTT_SRING_STATS_EP_TYPE, _val); \
  2228. ((_var) |= ((_val) << HTT_SRING_STATS_EP_TYPE_S)); \
  2229. } while (0)
  2230. /* DWORD num_avail_words__num_valid_words */
  2231. #define HTT_SRING_STATS_NUM_AVAIL_WORDS_M 0x0000ffff
  2232. #define HTT_SRING_STATS_NUM_AVAIL_WORDS_S 0
  2233. #define HTT_SRING_STATS_NUM_VALID_WORDS_M 0xffff0000
  2234. #define HTT_SRING_STATS_NUM_VALID_WORDS_S 16
  2235. #define HTT_SRING_STATS_NUM_AVAIL_WORDS_GET(_var) \
  2236. (((_var) & HTT_SRING_STATS_NUM_AVAIL_WORDS_M) >> \
  2237. HTT_SRING_STATS_NUM_AVAIL_WORDS_S)
  2238. #define HTT_SRING_STATS_NUM_AVAIL_WORDS_SET(_var, _val) \
  2239. do { \
  2240. HTT_CHECK_SET_VAL(HTT_SRING_STATS_NUM_AVAIL_WORDS, _val); \
  2241. ((_var) |= ((_val) << HTT_SRING_STATS_NUM_AVAIL_WORDS_S)); \
  2242. } while (0)
  2243. #define HTT_SRING_STATS_NUM_VALID_WORDS_GET(_var) \
  2244. (((_var) & HTT_SRING_STATS_NUM_VALID_WORDS_M) >> \
  2245. HTT_SRING_STATS_NUM_VALID_WORDS_S)
  2246. #define HTT_SRING_STATS_NUM_VALID_WORDS_SET(_var, _val) \
  2247. do { \
  2248. HTT_CHECK_SET_VAL(HTT_SRING_STATS_NUM_VALID_WORDS, _val); \
  2249. ((_var) |= ((_val) << HTT_SRING_STATS_NUM_VALID_WORDS_S)); \
  2250. } while (0)
  2251. /* DWORD head_ptr__tail_ptr */
  2252. #define HTT_SRING_STATS_HEAD_PTR_M 0x0000ffff
  2253. #define HTT_SRING_STATS_HEAD_PTR_S 0
  2254. #define HTT_SRING_STATS_TAIL_PTR_M 0xffff0000
  2255. #define HTT_SRING_STATS_TAIL_PTR_S 16
  2256. #define HTT_SRING_STATS_HEAD_PTR_GET(_var) \
  2257. (((_var) & HTT_SRING_STATS_HEAD_PTR_M) >> \
  2258. HTT_SRING_STATS_HEAD_PTR_S)
  2259. #define HTT_SRING_STATS_HEAD_PTR_SET(_var, _val) \
  2260. do { \
  2261. HTT_CHECK_SET_VAL(HTT_SRING_STATS_HEAD_PTR, _val); \
  2262. ((_var) |= ((_val) << HTT_SRING_STATS_HEAD_PTR_S)); \
  2263. } while (0)
  2264. #define HTT_SRING_STATS_TAIL_PTR_GET(_var) \
  2265. (((_var) & HTT_SRING_STATS_TAIL_PTR_M) >> \
  2266. HTT_SRING_STATS_TAIL_PTR_S)
  2267. #define HTT_SRING_STATS_TAIL_PTR_SET(_var, _val) \
  2268. do { \
  2269. HTT_CHECK_SET_VAL(HTT_SRING_STATS_TAIL_PTR, _val); \
  2270. ((_var) |= ((_val) << HTT_SRING_STATS_TAIL_PTR_S)); \
  2271. } while (0)
  2272. /* DWORD consumer_empty__producer_full */
  2273. #define HTT_SRING_STATS_CONSUMER_EMPTY_M 0x0000ffff
  2274. #define HTT_SRING_STATS_CONSUMER_EMPTY_S 0
  2275. #define HTT_SRING_STATS_PRODUCER_FULL_M 0xffff0000
  2276. #define HTT_SRING_STATS_PRODUCER_FULL_S 16
  2277. #define HTT_SRING_STATS_CONSUMER_EMPTY_GET(_var) \
  2278. (((_var) & HTT_SRING_STATS_CONSUMER_EMPTY_M) >> \
  2279. HTT_SRING_STATS_CONSUMER_EMPTY_S)
  2280. #define HTT_SRING_STATS_CONSUMER_EMPTY_SET(_var, _val) \
  2281. do { \
  2282. HTT_CHECK_SET_VAL(HTT_SRING_STATS_CONSUMER_EMPTY, _val); \
  2283. ((_var) |= ((_val) << HTT_SRING_STATS_CONSUMER_EMPTY_S)); \
  2284. } while (0)
  2285. #define HTT_SRING_STATS_PRODUCER_FULL_GET(_var) \
  2286. (((_var) & HTT_SRING_STATS_PRODUCER_FULL_M) >> \
  2287. HTT_SRING_STATS_PRODUCER_FULL_S)
  2288. #define HTT_SRING_STATS_PRODUCER_FULL_SET(_var, _val) \
  2289. do { \
  2290. HTT_CHECK_SET_VAL(HTT_SRING_STATS_PRODUCER_FULL, _val); \
  2291. ((_var) |= ((_val) << HTT_SRING_STATS_PRODUCER_FULL_S)); \
  2292. } while (0)
  2293. /* DWORD prefetch_count__internal_tail_ptr */
  2294. #define HTT_SRING_STATS_PREFETCH_COUNT_M 0x0000ffff
  2295. #define HTT_SRING_STATS_PREFETCH_COUNT_S 0
  2296. #define HTT_SRING_STATS_INTERNAL_TP_M 0xffff0000
  2297. #define HTT_SRING_STATS_INTERNAL_TP_S 16
  2298. #define HTT_SRING_STATS_PREFETCH_COUNT_GET(_var) \
  2299. (((_var) & HTT_SRING_STATS_PREFETCH_COUNT_M) >> \
  2300. HTT_SRING_STATS_PREFETCH_COUNT_S)
  2301. #define HTT_SRING_STATS_PREFETCH_COUNT_SET(_var, _val) \
  2302. do { \
  2303. HTT_CHECK_SET_VAL(HTT_SRING_STATS_PREFETCH_COUNT, _val); \
  2304. ((_var) |= ((_val) << HTT_SRING_STATS_PREFETCH_COUNT_S)); \
  2305. } while (0)
  2306. #define HTT_SRING_STATS_INTERNAL_TP_GET(_var) \
  2307. (((_var) & HTT_SRING_STATS_INTERNAL_TP_M) >> \
  2308. HTT_SRING_STATS_INTERNAL_TP_S)
  2309. #define HTT_SRING_STATS_INTERNAL_TP_SET(_var, _val) \
  2310. do { \
  2311. HTT_CHECK_SET_VAL(HTT_SRING_STATS_INTERNAL_TP, _val); \
  2312. ((_var) |= ((_val) << HTT_SRING_STATS_INTERNAL_TP_S)); \
  2313. } while (0)
  2314. typedef struct {
  2315. htt_tlv_hdr_t tlv_hdr;
  2316. /* BIT [ 7 : 0] :- mac_id
  2317. * BIT [15 : 8] :- ring_id
  2318. * BIT [23 : 16] :- arena 0 -SRING_HRAM, 1 - SRING_HCRAM, 2 - SRING_HW2HW.
  2319. * BIT [24 : 24] :- EP 0 -consumer, 1 - producer
  2320. * BIT [31 : 25] :- reserved
  2321. */
  2322. A_UINT32 mac_id__ring_id__arena__ep;
  2323. A_UINT32 base_addr_lsb; /* DWORD aligned base memory address of the ring */
  2324. A_UINT32 base_addr_msb;
  2325. A_UINT32 ring_size; /* size of ring */
  2326. A_UINT32 elem_size; /* size of each ring element */
  2327. /* Ring status */
  2328. /* BIT [15 : 0] :- num_avail_words
  2329. * BIT [31 : 16] :- num_valid_words
  2330. */
  2331. A_UINT32 num_avail_words__num_valid_words;
  2332. /* Index of head and tail */
  2333. /* BIT [15 : 0] :- head_ptr
  2334. * BIT [31 : 16] :- tail_ptr
  2335. */
  2336. A_UINT32 head_ptr__tail_ptr;
  2337. /* Empty or full counter of rings */
  2338. /* BIT [15 : 0] :- consumer_empty
  2339. * BIT [31 : 16] :- producer_full
  2340. */
  2341. A_UINT32 consumer_empty__producer_full;
  2342. /* Prefetch status of consumer ring */
  2343. /* BIT [15 : 0] :- prefetch_count
  2344. * BIT [31 : 16] :- internal_tail_ptr
  2345. */
  2346. A_UINT32 prefetch_count__internal_tail_ptr;
  2347. } htt_sring_stats_tlv;
  2348. typedef struct {
  2349. htt_tlv_hdr_t tlv_hdr;
  2350. A_UINT32 num_records;
  2351. } htt_sring_cmn_tlv;
  2352. /* STATS_TYPE : HTT_DBG_EXT_STATS_SRNG_INFO
  2353. * TLV_TAGS:
  2354. * - HTT_STATS_SRING_CMN_TAG
  2355. * - HTT_STATS_STRING_TAG
  2356. * - HTT_STATS_SRING_STATS_TAG
  2357. */
  2358. /* NOTE:
  2359. * This structure is for documentation, and cannot be safely used directly.
  2360. * Instead, use the constituent TLV structures to fill/parse.
  2361. */
  2362. typedef struct {
  2363. htt_sring_cmn_tlv cmn_tlv;
  2364. /* Variable based on the Number of records. */
  2365. struct _sring_stats {
  2366. htt_stats_string_tlv sring_str_tlv;
  2367. htt_sring_stats_tlv sring_stats_tlv;
  2368. } r[1];
  2369. } htt_sring_stats_t;
  2370. /* == PDEV TX RATE CTRL STATS == */
  2371. #define HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS 12
  2372. #define HTT_TX_PDEV_STATS_NUM_GI_COUNTERS 4
  2373. #define HTT_TX_PDEV_STATS_NUM_DCM_COUNTERS 5
  2374. #define HTT_TX_PDEV_STATS_NUM_BW_COUNTERS 4
  2375. #define HTT_TX_PDEV_STATS_NUM_SPATIAL_STREAMS 8
  2376. #define HTT_TX_PDEV_STATS_NUM_PREAMBLE_TYPES HTT_STATS_PREAM_COUNT
  2377. #define HTT_TX_PDEV_STATS_NUM_LEGACY_CCK_STATS 4
  2378. #define HTT_TX_PDEV_STATS_NUM_LEGACY_OFDM_STATS 8
  2379. #define HTT_TX_PDEV_STATS_NUM_LTF 4
  2380. #define HTT_TX_NUM_OF_SOUNDING_STATS_WORDS \
  2381. (HTT_TX_PDEV_STATS_NUM_BW_COUNTERS * \
  2382. HTT_TX_PDEV_STATS_NUM_AX_MUMIMO_USER_STATS)
  2383. #define HTT_TX_PDEV_RATE_STATS_MAC_ID_M 0x000000ff
  2384. #define HTT_TX_PDEV_RATE_STATS_MAC_ID_S 0
  2385. #define HTT_TX_PDEV_RATE_STATS_MAC_ID_GET(_var) \
  2386. (((_var) & HTT_TX_PDEV_RATE_STATS_MAC_ID_M) >> \
  2387. HTT_TX_PDEV_RATE_STATS_MAC_ID_S)
  2388. #define HTT_TX_PDEV_RATE_STATS_MAC_ID_SET(_var, _val) \
  2389. do { \
  2390. HTT_CHECK_SET_VAL(HTT_TX_PDEV_RATE_STATS_MAC_ID, _val); \
  2391. ((_var) |= ((_val) << HTT_TX_PDEV_RATE_STATS_MAC_ID_S)); \
  2392. } while (0)
  2393. typedef struct {
  2394. htt_tlv_hdr_t tlv_hdr;
  2395. /* BIT [ 7 : 0] :- mac_id
  2396. * BIT [31 : 8] :- reserved
  2397. */
  2398. A_UINT32 mac_id__word;
  2399. /* Number of tx ldpc packets */
  2400. A_UINT32 tx_ldpc;
  2401. /* Number of tx rts packets */
  2402. A_UINT32 rts_cnt;
  2403. /* RSSI value of last ack packet (units = dB above noise floor) */
  2404. A_UINT32 ack_rssi;
  2405. A_UINT32 tx_mcs[HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2406. /* tx_xx_mcs: currently unused */
  2407. A_UINT32 tx_su_mcs[HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2408. A_UINT32 tx_mu_mcs[HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2409. A_UINT32 tx_nss[HTT_TX_PDEV_STATS_NUM_SPATIAL_STREAMS]; /* element 0,1, ...7 -> NSS 1,2, ...8 */
  2410. A_UINT32 tx_bw[HTT_TX_PDEV_STATS_NUM_BW_COUNTERS]; /* element 0: 20 MHz, 1: 40 MHz, 2: 80 MHz, 3: 160 and 80+80 MHz */
  2411. A_UINT32 tx_stbc[HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2412. A_UINT32 tx_pream[HTT_TX_PDEV_STATS_NUM_PREAMBLE_TYPES];
  2413. /* Counters to track number of tx packets in each GI (400us, 800us, 1600us & 3200us) in each mcs (0-11) */
  2414. A_UINT32 tx_gi[HTT_TX_PDEV_STATS_NUM_GI_COUNTERS][HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2415. /* Counters to track packets in dcm mcs (MCS 0, 1, 3, 4) */
  2416. A_UINT32 tx_dcm[HTT_TX_PDEV_STATS_NUM_DCM_COUNTERS];
  2417. /* Number of CTS-acknowledged RTS packets */
  2418. A_UINT32 rts_success;
  2419. /*
  2420. * Counters for legacy 11a and 11b transmissions.
  2421. *
  2422. * The index corresponds to:
  2423. *
  2424. * CCK: 0: 1 Mbps, 1: 2 Mbps, 2: 5.5 Mbps, 3: 11 Mbps
  2425. *
  2426. * OFDM: 0: 6 Mbps, 1: 9 Mbps, 2: 12 Mbps, 3: 18 Mbps,
  2427. * 4: 24 Mbps, 5: 36 Mbps, 6: 48 Mbps, 7: 54 Mbps
  2428. */
  2429. A_UINT32 tx_legacy_cck_rate[HTT_TX_PDEV_STATS_NUM_LEGACY_CCK_STATS];
  2430. A_UINT32 tx_legacy_ofdm_rate[HTT_TX_PDEV_STATS_NUM_LEGACY_OFDM_STATS];
  2431. A_UINT32 ac_mu_mimo_tx_ldpc;
  2432. A_UINT32 ax_mu_mimo_tx_ldpc;
  2433. A_UINT32 ofdma_tx_ldpc;
  2434. /*
  2435. * Counters for 11ax HE LTF selection during TX.
  2436. *
  2437. * The index corresponds to:
  2438. *
  2439. * 0: unused, 1: 1x LTF, 2: 2x LTF, 3: 4x LTF
  2440. */
  2441. A_UINT32 tx_he_ltf[HTT_TX_PDEV_STATS_NUM_LTF];
  2442. A_UINT32 ac_mu_mimo_tx_mcs[HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2443. A_UINT32 ax_mu_mimo_tx_mcs[HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2444. A_UINT32 ofdma_tx_mcs[HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2445. A_UINT32 ac_mu_mimo_tx_nss[HTT_TX_PDEV_STATS_NUM_SPATIAL_STREAMS];
  2446. A_UINT32 ax_mu_mimo_tx_nss[HTT_TX_PDEV_STATS_NUM_SPATIAL_STREAMS];
  2447. A_UINT32 ofdma_tx_nss[HTT_TX_PDEV_STATS_NUM_SPATIAL_STREAMS];
  2448. A_UINT32 ac_mu_mimo_tx_bw[HTT_TX_PDEV_STATS_NUM_BW_COUNTERS];
  2449. A_UINT32 ax_mu_mimo_tx_bw[HTT_TX_PDEV_STATS_NUM_BW_COUNTERS];
  2450. A_UINT32 ofdma_tx_bw[HTT_TX_PDEV_STATS_NUM_BW_COUNTERS];
  2451. A_UINT32 ac_mu_mimo_tx_gi[HTT_TX_PDEV_STATS_NUM_GI_COUNTERS][HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2452. A_UINT32 ax_mu_mimo_tx_gi[HTT_TX_PDEV_STATS_NUM_GI_COUNTERS][HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2453. A_UINT32 ofdma_tx_gi[HTT_TX_PDEV_STATS_NUM_GI_COUNTERS][HTT_TX_PDEV_STATS_NUM_MCS_COUNTERS];
  2454. } htt_tx_pdev_rate_stats_tlv;
  2455. /* STATS_TYPE : HTT_DBG_EXT_STATS_PDEV_TX_RATE
  2456. * TLV_TAGS:
  2457. * - HTT_STATS_TX_PDEV_RATE_STATS_TAG
  2458. */
  2459. /* NOTE:
  2460. * This structure is for documentation, and cannot be safely used directly.
  2461. * Instead, use the constituent TLV structures to fill/parse.
  2462. */
  2463. typedef struct {
  2464. htt_tx_pdev_rate_stats_tlv rate_tlv;
  2465. } htt_tx_pdev_rate_stats_t;
  2466. /* == PDEV RX RATE CTRL STATS == */
  2467. #define HTT_RX_PDEV_STATS_NUM_LEGACY_CCK_STATS 4
  2468. #define HTT_RX_PDEV_STATS_NUM_LEGACY_OFDM_STATS 8
  2469. #define HTT_RX_PDEV_STATS_NUM_MCS_COUNTERS 12
  2470. #define HTT_RX_PDEV_STATS_NUM_GI_COUNTERS 4
  2471. #define HTT_RX_PDEV_STATS_NUM_DCM_COUNTERS 5
  2472. #define HTT_RX_PDEV_STATS_NUM_BW_COUNTERS 4
  2473. #define HTT_RX_PDEV_STATS_NUM_SPATIAL_STREAMS 8
  2474. #define HTT_RX_PDEV_STATS_NUM_PREAMBLE_TYPES HTT_STATS_PREAM_COUNT
  2475. #define HTT_RX_PDEV_RATE_STATS_MAC_ID_M 0x000000ff
  2476. #define HTT_RX_PDEV_RATE_STATS_MAC_ID_S 0
  2477. #define HTT_RX_PDEV_RATE_STATS_MAC_ID_GET(_var) \
  2478. (((_var) & HTT_RX_PDEV_RATE_STATS_MAC_ID_M) >> \
  2479. HTT_RX_PDEV_RATE_STATS_MAC_ID_S)
  2480. #define HTT_RX_PDEV_RATE_STATS_MAC_ID_SET(_var, _val) \
  2481. do { \
  2482. HTT_CHECK_SET_VAL(HTT_RX_PDEV_RATE_STATS_MAC_ID, _val); \
  2483. ((_var) |= ((_val) << HTT_RX_PDEV_RATE_STATS_MAC_ID_S)); \
  2484. } while (0)
  2485. typedef struct {
  2486. htt_tlv_hdr_t tlv_hdr;
  2487. /* BIT [ 7 : 0] :- mac_id
  2488. * BIT [31 : 8] :- reserved
  2489. */
  2490. A_UINT32 mac_id__word;
  2491. A_UINT32 nsts;
  2492. /* Number of rx ldpc packets */
  2493. A_UINT32 rx_ldpc;
  2494. /* Number of rx rts packets */
  2495. A_UINT32 rts_cnt;
  2496. A_UINT32 rssi_mgmt; /* units = dB above noise floor */
  2497. A_UINT32 rssi_data; /* units = dB above noise floor */
  2498. A_UINT32 rssi_comb; /* units = dB above noise floor */
  2499. A_UINT32 rx_mcs[HTT_RX_PDEV_STATS_NUM_MCS_COUNTERS];
  2500. A_UINT32 rx_nss[HTT_RX_PDEV_STATS_NUM_SPATIAL_STREAMS]; /* element 0,1, ...7 -> NSS 1,2, ...8 */
  2501. A_UINT32 rx_dcm[HTT_RX_PDEV_STATS_NUM_DCM_COUNTERS];
  2502. A_UINT32 rx_stbc[HTT_RX_PDEV_STATS_NUM_MCS_COUNTERS];
  2503. A_UINT32 rx_bw[HTT_RX_PDEV_STATS_NUM_BW_COUNTERS]; /* element 0: 20 MHz, 1: 40 MHz, 2: 80 MHz, 3: 160 and 80+80 MHz */
  2504. A_UINT32 rx_pream[HTT_RX_PDEV_STATS_NUM_PREAMBLE_TYPES];
  2505. A_UINT8 rssi_chain[HTT_RX_PDEV_STATS_NUM_SPATIAL_STREAMS][HTT_RX_PDEV_STATS_NUM_BW_COUNTERS]; /* units = dB above noise floor */
  2506. /* Counters to track number of rx packets in each GI in each mcs (0-11) */
  2507. A_UINT32 rx_gi[HTT_RX_PDEV_STATS_NUM_GI_COUNTERS][HTT_RX_PDEV_STATS_NUM_MCS_COUNTERS];
  2508. A_INT32 rssi_in_dbm; /* rx Signal Strength value in dBm unit */
  2509. A_UINT32 rx_11ax_su_ext;
  2510. A_UINT32 rx_11ac_mumimo;
  2511. A_UINT32 rx_11ax_mumimo;
  2512. A_UINT32 rx_11ax_ofdma;
  2513. A_UINT32 txbf;
  2514. A_UINT32 rx_legacy_cck_rate[HTT_RX_PDEV_STATS_NUM_LEGACY_CCK_STATS];
  2515. A_UINT32 rx_legacy_ofdm_rate[HTT_RX_PDEV_STATS_NUM_LEGACY_OFDM_STATS];
  2516. A_UINT32 rx_active_dur_us_low;
  2517. A_UINT32 rx_active_dur_us_high;
  2518. } htt_rx_pdev_rate_stats_tlv;
  2519. /* STATS_TYPE : HTT_DBG_EXT_STATS_PDEV_RX_RATE
  2520. * TLV_TAGS:
  2521. * - HTT_STATS_RX_PDEV_RATE_STATS_TAG
  2522. */
  2523. /* NOTE:
  2524. * This structure is for documentation, and cannot be safely used directly.
  2525. * Instead, use the constituent TLV structures to fill/parse.
  2526. */
  2527. typedef struct {
  2528. htt_rx_pdev_rate_stats_tlv rate_tlv;
  2529. } htt_rx_pdev_rate_stats_t;
  2530. /* == RX PDEV/SOC STATS == */
  2531. typedef struct {
  2532. htt_tlv_hdr_t tlv_hdr;
  2533. /* Num Packets received on REO FW ring */
  2534. A_UINT32 fw_reo_ring_data_msdu;
  2535. /* Num bc/mc packets indicated from fw to host */
  2536. A_UINT32 fw_to_host_data_msdu_bcmc;
  2537. /* Num unicast packets indicated from fw to host */
  2538. A_UINT32 fw_to_host_data_msdu_uc;
  2539. /* Num remote buf recycle from offload */
  2540. A_UINT32 ofld_remote_data_buf_recycle_cnt;
  2541. /* Num remote free buf given to offload */
  2542. A_UINT32 ofld_remote_free_buf_indication_cnt;
  2543. /* Num unicast packets from local path indicated to host */
  2544. A_UINT32 ofld_buf_to_host_data_msdu_uc;
  2545. /* Num unicast packets from REO indicated to host */
  2546. A_UINT32 reo_fw_ring_to_host_data_msdu_uc;
  2547. /* Num Packets received from WBM SW1 ring */
  2548. A_UINT32 wbm_sw_ring_reap;
  2549. /* Num packets from WBM forwarded from fw to host via WBM */
  2550. A_UINT32 wbm_forward_to_host_cnt;
  2551. /* Num packets from WBM recycled to target refill ring */
  2552. A_UINT32 wbm_target_recycle_cnt;
  2553. /* Total Num of recycled to refill ring, including packets from WBM and REO */
  2554. A_UINT32 target_refill_ring_recycle_cnt;
  2555. } htt_rx_soc_fw_stats_tlv;
  2556. #define HTT_RX_SOC_FW_REFILL_RING_EMPTY_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  2557. /* NOTE: Variable length TLV, use length spec to infer array size */
  2558. typedef struct {
  2559. htt_tlv_hdr_t tlv_hdr;
  2560. /* Num ring empty encountered */
  2561. A_UINT32 refill_ring_empty_cnt[1]; /* HTT_RX_STATS_REFILL_MAX_RING */
  2562. } htt_rx_soc_fw_refill_ring_empty_tlv_v;
  2563. #define HTT_RX_SOC_FW_REFILL_RING_EMPTY_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  2564. /* NOTE: Variable length TLV, use length spec to infer array size */
  2565. typedef struct {
  2566. htt_tlv_hdr_t tlv_hdr;
  2567. /* Num total buf refilled from refill ring */
  2568. A_UINT32 refill_ring_num_refill[1]; /* HTT_RX_STATS_REFILL_MAX_RING */
  2569. } htt_rx_soc_fw_refill_ring_num_refill_tlv_v;
  2570. /* RXDMA error code from WBM released packets */
  2571. typedef enum {
  2572. HTT_RX_RXDMA_OVERFLOW_ERR = 0,
  2573. HTT_RX_RXDMA_MPDU_LENGTH_ERR = 1,
  2574. HTT_RX_RXDMA_FCS_ERR = 2,
  2575. HTT_RX_RXDMA_DECRYPT_ERR = 3,
  2576. HTT_RX_RXDMA_TKIP_MIC_ERR = 4,
  2577. HTT_RX_RXDMA_UNECRYPTED_ERR = 5,
  2578. HTT_RX_RXDMA_MSDU_LEN_ERR = 6,
  2579. HTT_RX_RXDMA_MSDU_LIMIT_ERR = 7,
  2580. HTT_RX_RXDMA_WIFI_PARSE_ERR = 8,
  2581. HTT_RX_RXDMA_AMSDU_PARSE_ERR = 9,
  2582. HTT_RX_RXDMA_SA_TIMEOUT_ERR = 10,
  2583. HTT_RX_RXDMA_DA_TIMEOUT_ERR = 11,
  2584. HTT_RX_RXDMA_FLOW_TIMEOUT_ERR = 12,
  2585. HTT_RX_RXDMA_FLUSH_REQUEST = 13,
  2586. HTT_RX_RXDMA_ERR_CODE_RVSD0 = 14,
  2587. HTT_RX_RXDMA_ERR_CODE_RVSD1 = 15,
  2588. /*
  2589. * This MAX_ERR_CODE should not be used in any host/target messages,
  2590. * so that even though it is defined within a host/target interface
  2591. * definition header file, it isn't actually part of the host/target
  2592. * interface, and thus can be modified.
  2593. */
  2594. HTT_RX_RXDMA_MAX_ERR_CODE
  2595. } htt_rx_rxdma_error_code_enum;
  2596. /* NOTE: Variable length TLV, use length spec to infer array size */
  2597. typedef struct {
  2598. htt_tlv_hdr_t tlv_hdr;
  2599. /* NOTE:
  2600. * The mapping of RXDMA error types to rxdma_err array elements is HW dependent.
  2601. * It is expected but not required that the target will provide a rxdma_err element
  2602. * for each of the htt_rx_rxdma_error_code_enum values, up to but not including
  2603. * MAX_ERR_CODE. The host should ignore any array elements whose
  2604. * indices are >= the MAX_ERR_CODE value the host was compiled with.
  2605. */
  2606. A_UINT32 rxdma_err[1]; /* HTT_RX_RXDMA_MAX_ERR_CODE */
  2607. } htt_rx_soc_fw_refill_ring_num_rxdma_err_tlv_v;
  2608. /* REO error code from WBM released packets */
  2609. typedef enum {
  2610. HTT_RX_REO_QUEUE_DESC_ADDR_ZERO = 0,
  2611. HTT_RX_REO_QUEUE_DESC_NOT_VALID = 1,
  2612. HTT_RX_AMPDU_IN_NON_BA = 2,
  2613. HTT_RX_NON_BA_DUPLICATE = 3,
  2614. HTT_RX_BA_DUPLICATE = 4,
  2615. HTT_RX_REGULAR_FRAME_2K_JUMP = 5,
  2616. HTT_RX_BAR_FRAME_2K_JUMP = 6,
  2617. HTT_RX_REGULAR_FRAME_OOR = 7,
  2618. HTT_RX_BAR_FRAME_OOR = 8,
  2619. HTT_RX_BAR_FRAME_NO_BA_SESSION = 9,
  2620. HTT_RX_BAR_FRAME_SN_EQUALS_SSN = 10,
  2621. HTT_RX_PN_CHECK_FAILED = 11,
  2622. HTT_RX_2K_ERROR_HANDLING_FLAG_SET = 12,
  2623. HTT_RX_PN_ERROR_HANDLING_FLAG_SET = 13,
  2624. HTT_RX_QUEUE_DESCRIPTOR_BLOCKED_SET = 14,
  2625. HTT_RX_REO_ERR_CODE_RVSD = 15,
  2626. /*
  2627. * This MAX_ERR_CODE should not be used in any host/target messages,
  2628. * so that even though it is defined within a host/target interface
  2629. * definition header file, it isn't actually part of the host/target
  2630. * interface, and thus can be modified.
  2631. */
  2632. HTT_RX_REO_MAX_ERR_CODE
  2633. } htt_rx_reo_error_code_enum;
  2634. /* NOTE: Variable length TLV, use length spec to infer array size */
  2635. typedef struct {
  2636. htt_tlv_hdr_t tlv_hdr;
  2637. /* NOTE:
  2638. * The mapping of REO error types to reo_err array elements is HW dependent.
  2639. * It is expected but not required that the target will provide a rxdma_err element
  2640. * for each of the htt_rx_reo_error_code_enum values, up to but not including
  2641. * MAX_ERR_CODE. The host should ignore any array elements whose
  2642. * indices are >= the MAX_ERR_CODE value the host was compiled with.
  2643. */
  2644. A_UINT32 reo_err[1]; /* HTT_RX_REO_MAX_ERR_CODE */
  2645. } htt_rx_soc_fw_refill_ring_num_reo_err_tlv_v;
  2646. /* NOTE:
  2647. * This structure is for documentation, and cannot be safely used directly.
  2648. * Instead, use the constituent TLV structures to fill/parse.
  2649. */
  2650. typedef struct {
  2651. htt_rx_soc_fw_stats_tlv fw_tlv;
  2652. htt_rx_soc_fw_refill_ring_empty_tlv_v fw_refill_ring_empty_tlv;
  2653. htt_rx_soc_fw_refill_ring_num_refill_tlv_v fw_refill_ring_num_refill_tlv;
  2654. htt_rx_soc_fw_refill_ring_num_rxdma_err_tlv_v fw_refill_ring_num_rxdma_err_tlv;
  2655. htt_rx_soc_fw_refill_ring_num_reo_err_tlv_v fw_refill_ring_num_reo_err_tlv;
  2656. } htt_rx_soc_stats_t;
  2657. /* == RX PDEV STATS == */
  2658. #define HTT_RX_PDEV_FW_STATS_MAC_ID_M 0x000000ff
  2659. #define HTT_RX_PDEV_FW_STATS_MAC_ID_S 0
  2660. #define HTT_RX_PDEV_FW_STATS_MAC_ID_GET(_var) \
  2661. (((_var) & HTT_RX_PDEV_FW_STATS_MAC_ID_M) >> \
  2662. HTT_RX_PDEV_FW_STATS_MAC_ID_S)
  2663. #define HTT_RX_PDEV_FW_STATS_MAC_ID_SET(_var, _val) \
  2664. do { \
  2665. HTT_CHECK_SET_VAL(HTT_RX_PDEV_FW_STATS_MAC_ID, _val); \
  2666. ((_var) |= ((_val) << HTT_RX_PDEV_FW_STATS_MAC_ID_S)); \
  2667. } while (0)
  2668. #define HTT_STATS_SUBTYPE_MAX 16
  2669. typedef struct {
  2670. htt_tlv_hdr_t tlv_hdr;
  2671. /* BIT [ 7 : 0] :- mac_id
  2672. * BIT [31 : 8] :- reserved
  2673. */
  2674. A_UINT32 mac_id__word;
  2675. /* Num PPDU status processed from HW */
  2676. A_UINT32 ppdu_recvd;
  2677. /* Num MPDU across PPDUs with FCS ok */
  2678. A_UINT32 mpdu_cnt_fcs_ok;
  2679. /* Num MPDU across PPDUs with FCS err */
  2680. A_UINT32 mpdu_cnt_fcs_err;
  2681. /* Num MSDU across PPDUs */
  2682. A_UINT32 tcp_msdu_cnt;
  2683. /* Num MSDU across PPDUs */
  2684. A_UINT32 tcp_ack_msdu_cnt;
  2685. /* Num MSDU across PPDUs */
  2686. A_UINT32 udp_msdu_cnt;
  2687. /* Num MSDU across PPDUs */
  2688. A_UINT32 other_msdu_cnt;
  2689. /* Num MPDU on FW ring indicated */
  2690. A_UINT32 fw_ring_mpdu_ind;
  2691. /* Num MGMT MPDU given to protocol */
  2692. A_UINT32 fw_ring_mgmt_subtype[HTT_STATS_SUBTYPE_MAX];
  2693. /* Num ctrl MPDU given to protocol */
  2694. A_UINT32 fw_ring_ctrl_subtype[HTT_STATS_SUBTYPE_MAX];
  2695. /* Num mcast data packet received */
  2696. A_UINT32 fw_ring_mcast_data_msdu;
  2697. /* Num broadcast data packet received */
  2698. A_UINT32 fw_ring_bcast_data_msdu;
  2699. /* Num unicat data packet received */
  2700. A_UINT32 fw_ring_ucast_data_msdu;
  2701. /* Num null data packet received */
  2702. A_UINT32 fw_ring_null_data_msdu;
  2703. /* Num MPDU on FW ring dropped */
  2704. A_UINT32 fw_ring_mpdu_drop;
  2705. /* Num buf indication to offload */
  2706. A_UINT32 ofld_local_data_ind_cnt;
  2707. /* Num buf recycle from offload */
  2708. A_UINT32 ofld_local_data_buf_recycle_cnt;
  2709. /* Num buf indication to data_rx */
  2710. A_UINT32 drx_local_data_ind_cnt;
  2711. /* Num buf recycle from data_rx */
  2712. A_UINT32 drx_local_data_buf_recycle_cnt;
  2713. /* Num buf indication to protocol */
  2714. A_UINT32 local_nondata_ind_cnt;
  2715. /* Num buf recycle from protocol */
  2716. A_UINT32 local_nondata_buf_recycle_cnt;
  2717. /* Num buf fed */
  2718. A_UINT32 fw_status_buf_ring_refill_cnt;
  2719. /* Num ring empty encountered */
  2720. A_UINT32 fw_status_buf_ring_empty_cnt;
  2721. /* Num buf fed */
  2722. A_UINT32 fw_pkt_buf_ring_refill_cnt;
  2723. /* Num ring empty encountered */
  2724. A_UINT32 fw_pkt_buf_ring_empty_cnt;
  2725. /* Num buf fed */
  2726. A_UINT32 fw_link_buf_ring_refill_cnt;
  2727. /* Num ring empty encountered */
  2728. A_UINT32 fw_link_buf_ring_empty_cnt;
  2729. /* Num buf fed */
  2730. A_UINT32 host_pkt_buf_ring_refill_cnt;
  2731. /* Num ring empty encountered */
  2732. A_UINT32 host_pkt_buf_ring_empty_cnt;
  2733. /* Num buf fed */
  2734. A_UINT32 mon_pkt_buf_ring_refill_cnt;
  2735. /* Num ring empty encountered */
  2736. A_UINT32 mon_pkt_buf_ring_empty_cnt;
  2737. /* Num buf fed */
  2738. A_UINT32 mon_status_buf_ring_refill_cnt;
  2739. /* Num ring empty encountered */
  2740. A_UINT32 mon_status_buf_ring_empty_cnt;
  2741. /* Num buf fed */
  2742. A_UINT32 mon_desc_buf_ring_refill_cnt;
  2743. /* Num ring empty encountered */
  2744. A_UINT32 mon_desc_buf_ring_empty_cnt;
  2745. /* Num buf fed */
  2746. A_UINT32 mon_dest_ring_update_cnt;
  2747. /* Num ring full encountered */
  2748. A_UINT32 mon_dest_ring_full_cnt;
  2749. /* Num rx suspend is attempted */
  2750. A_UINT32 rx_suspend_cnt;
  2751. /* Num rx suspend failed */
  2752. A_UINT32 rx_suspend_fail_cnt;
  2753. /* Num rx resume attempted */
  2754. A_UINT32 rx_resume_cnt;
  2755. /* Num rx resume failed */
  2756. A_UINT32 rx_resume_fail_cnt;
  2757. /* Num rx ring switch */
  2758. A_UINT32 rx_ring_switch_cnt;
  2759. /* Num rx ring restore */
  2760. A_UINT32 rx_ring_restore_cnt;
  2761. /* Num rx flush issued */
  2762. A_UINT32 rx_flush_cnt;
  2763. /* Num rx recovery */
  2764. A_UINT32 rx_recovery_reset_cnt;
  2765. } htt_rx_pdev_fw_stats_tlv;
  2766. #define HTT_STATS_PHY_ERR_MAX 43
  2767. typedef struct {
  2768. htt_tlv_hdr_t tlv_hdr;
  2769. /* BIT [ 7 : 0] :- mac_id
  2770. * BIT [31 : 8] :- reserved
  2771. */
  2772. A_UINT32 mac_id__word;
  2773. /* Num of phy err */
  2774. A_UINT32 total_phy_err_cnt;
  2775. /* Counts of different types of phy errs
  2776. * The mapping of PHY error types to phy_err array elements is HW dependent.
  2777. * The only currently-supported mapping is shown below:
  2778. *
  2779. * 0 phyrx_err_phy_off Reception aborted due to receiving a PHY_OFF TLV
  2780. * 1 phyrx_err_synth_off
  2781. * 2 phyrx_err_ofdma_timing
  2782. * 3 phyrx_err_ofdma_signal_parity
  2783. * 4 phyrx_err_ofdma_rate_illegal
  2784. * 5 phyrx_err_ofdma_length_illegal
  2785. * 6 phyrx_err_ofdma_restart
  2786. * 7 phyrx_err_ofdma_service
  2787. * 8 phyrx_err_ppdu_ofdma_power_drop
  2788. * 9 phyrx_err_cck_blokker
  2789. * 10 phyrx_err_cck_timing
  2790. * 11 phyrx_err_cck_header_crc
  2791. * 12 phyrx_err_cck_rate_illegal
  2792. * 13 phyrx_err_cck_length_illegal
  2793. * 14 phyrx_err_cck_restart
  2794. * 15 phyrx_err_cck_service
  2795. * 16 phyrx_err_cck_power_drop
  2796. * 17 phyrx_err_ht_crc_err
  2797. * 18 phyrx_err_ht_length_illegal
  2798. * 19 phyrx_err_ht_rate_illegal
  2799. * 20 phyrx_err_ht_zlf
  2800. * 21 phyrx_err_false_radar_ext
  2801. * 22 phyrx_err_green_field
  2802. * 23 phyrx_err_bw_gt_dyn_bw
  2803. * 24 phyrx_err_leg_ht_mismatch
  2804. * 25 phyrx_err_vht_crc_error
  2805. * 26 phyrx_err_vht_siga_unsupported
  2806. * 27 phyrx_err_vht_lsig_len_invalid
  2807. * 28 phyrx_err_vht_ndp_or_zlf
  2808. * 29 phyrx_err_vht_nsym_lt_zero
  2809. * 30 phyrx_err_vht_rx_extra_symbol_mismatch
  2810. * 31 phyrx_err_vht_rx_skip_group_id0
  2811. * 32 phyrx_err_vht_rx_skip_group_id1to62
  2812. * 33 phyrx_err_vht_rx_skip_group_id63
  2813. * 34 phyrx_err_ofdm_ldpc_decoder_disabled
  2814. * 35 phyrx_err_defer_nap
  2815. * 36 phyrx_err_fdomain_timeout
  2816. * 37 phyrx_err_lsig_rel_check
  2817. * 38 phyrx_err_bt_collision
  2818. * 39 phyrx_err_unsupported_mu_feedback
  2819. * 40 phyrx_err_ppdu_tx_interrupt_rx
  2820. * 41 phyrx_err_unsupported_cbf
  2821. * 42 phyrx_err_other
  2822. */
  2823. A_UINT32 phy_err[HTT_STATS_PHY_ERR_MAX];
  2824. } htt_rx_pdev_fw_stats_phy_err_tlv;
  2825. #define HTT_RX_PDEV_FW_RING_MPDU_ERR_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  2826. /* NOTE: Variable length TLV, use length spec to infer array size */
  2827. typedef struct {
  2828. htt_tlv_hdr_t tlv_hdr;
  2829. /* Num error MPDU for each RxDMA error type */
  2830. A_UINT32 fw_ring_mpdu_err[1]; /* HTT_RX_STATS_RXDMA_MAX_ERR */
  2831. } htt_rx_pdev_fw_ring_mpdu_err_tlv_v;
  2832. #define HTT_RX_PDEV_FW_MPDU_DROP_TLV_SZ(_num_elems) (sizeof(A_UINT32) * (_num_elems))
  2833. /* NOTE: Variable length TLV, use length spec to infer array size */
  2834. typedef struct {
  2835. htt_tlv_hdr_t tlv_hdr;
  2836. /* Num MPDU dropped */
  2837. A_UINT32 fw_mpdu_drop[1]; /* HTT_RX_STATS_FW_DROP_REASON_MAX */
  2838. } htt_rx_pdev_fw_mpdu_drop_tlv_v;
  2839. /* STATS_TYPE : HTT_DBG_EXT_STATS_PDEV_RX
  2840. * TLV_TAGS:
  2841. * - HTT_STATS_RX_SOC_FW_STATS_TAG (head TLV in soc_stats)
  2842. * - HTT_STATS_RX_SOC_FW_REFILL_RING_EMPTY_TAG (inside soc_stats)
  2843. * - HTT_STATS_RX_SOC_FW_REFILL_RING_NUM_REFILL_TAG (inside soc_stats)
  2844. * - HTT_STATS_RX_PDEV_FW_STATS_TAG
  2845. * - HTT_STATS_RX_PDEV_FW_RING_MPDU_ERR_TAG
  2846. * - HTT_STATS_RX_PDEV_FW_MPDU_DROP_TAG
  2847. */
  2848. /* NOTE:
  2849. * This structure is for documentation, and cannot be safely used directly.
  2850. * Instead, use the constituent TLV structures to fill/parse.
  2851. */
  2852. typedef struct {
  2853. htt_rx_soc_stats_t soc_stats;
  2854. htt_rx_pdev_fw_stats_tlv fw_stats_tlv;
  2855. htt_rx_pdev_fw_ring_mpdu_err_tlv_v fw_ring_mpdu_err_tlv;
  2856. htt_rx_pdev_fw_mpdu_drop_tlv_v fw_ring_mpdu_drop;
  2857. htt_rx_pdev_fw_stats_phy_err_tlv fw_stats_phy_err_tlv;
  2858. } htt_rx_pdev_stats_t;
  2859. #define HTT_PDEV_CCA_STATS_TX_FRAME_INFO_PRESENT (0x1)
  2860. #define HTT_PDEV_CCA_STATS_RX_FRAME_INFO_PRESENT (0x2)
  2861. #define HTT_PDEV_CCA_STATS_RX_CLEAR_INFO_PRESENT (0x4)
  2862. #define HTT_PDEV_CCA_STATS_MY_RX_FRAME_INFO_PRESENT (0x8)
  2863. #define HTT_PDEV_CCA_STATS_USEC_CNT_INFO_PRESENT (0x10)
  2864. #define HTT_PDEV_CCA_STATS_MED_RX_IDLE_INFO_PRESENT (0x20)
  2865. #define HTT_PDEV_CCA_STATS_MED_TX_IDLE_GLOBAL_INFO_PRESENT (0x40)
  2866. #define HTT_PDEV_CCA_STATS_CCA_OBBS_USEC_INFO_PRESENT (0x80)
  2867. typedef struct {
  2868. htt_tlv_hdr_t tlv_hdr;
  2869. /* Below values are obtained from the HW Cycles counter registers */
  2870. A_UINT32 tx_frame_usec;
  2871. A_UINT32 rx_frame_usec;
  2872. A_UINT32 rx_clear_usec;
  2873. A_UINT32 my_rx_frame_usec;
  2874. A_UINT32 usec_cnt;
  2875. A_UINT32 med_rx_idle_usec;
  2876. A_UINT32 med_tx_idle_global_usec;
  2877. A_UINT32 cca_obss_usec;
  2878. } htt_pdev_stats_cca_counters_tlv;
  2879. /* NOTE: THIS htt_pdev_cca_stats_hist_tlv STRUCTURE IS DEPRECATED,
  2880. * due to lack of support in some host stats infrastructures for
  2881. * TLVs nested within TLVs.
  2882. */
  2883. typedef struct {
  2884. htt_tlv_hdr_t tlv_hdr;
  2885. /* The channel number on which these stats were collected */
  2886. A_UINT32 chan_num;
  2887. /* num of CCA records (Num of htt_pdev_stats_cca_counters_tlv)*/
  2888. A_UINT32 num_records;
  2889. /*
  2890. * Bit map of valid CCA counters
  2891. * Bit0 - tx_frame_usec
  2892. * Bit1 - rx_frame_usec
  2893. * Bit2 - rx_clear_usec
  2894. * Bit3 - my_rx_frame_usec
  2895. * bit4 - usec_cnt
  2896. * Bit5 - med_rx_idle_usec
  2897. * Bit6 - med_tx_idle_global_usec
  2898. * Bit7 - cca_obss_usec
  2899. *
  2900. * See HTT_PDEV_CCA_STATS_xxx_INFO_PRESENT defs
  2901. */
  2902. A_UINT32 valid_cca_counters_bitmap;
  2903. /* Indicates the stats collection interval
  2904. * Valid Values:
  2905. * 100 - For the 100ms interval CCA stats histogram
  2906. * 1000 - For 1sec interval CCA histogram
  2907. * 0xFFFFFFFF - For Cumulative CCA Stats
  2908. */
  2909. A_UINT32 collection_interval;
  2910. /**
  2911. * This will be followed by an array which contains the CCA stats
  2912. * collected in the last N intervals,
  2913. * if the indication is for last N intervals CCA stats.
  2914. * Then the pdev_cca_stats[0] element contains the oldest CCA stats
  2915. * and pdev_cca_stats[N-1] will have the most recent CCA stats.
  2916. */
  2917. htt_pdev_stats_cca_counters_tlv cca_hist_tlv[1];
  2918. } htt_pdev_cca_stats_hist_tlv;
  2919. typedef struct {
  2920. htt_tlv_hdr_t tlv_hdr;
  2921. /* The channel number on which these stats were collected */
  2922. A_UINT32 chan_num;
  2923. /* num of CCA records (Num of htt_pdev_stats_cca_counters_tlv)*/
  2924. A_UINT32 num_records;
  2925. /*
  2926. * Bit map of valid CCA counters
  2927. * Bit0 - tx_frame_usec
  2928. * Bit1 - rx_frame_usec
  2929. * Bit2 - rx_clear_usec
  2930. * Bit3 - my_rx_frame_usec
  2931. * bit4 - usec_cnt
  2932. * Bit5 - med_rx_idle_usec
  2933. * Bit6 - med_tx_idle_global_usec
  2934. * Bit7 - cca_obss_usec
  2935. *
  2936. * See HTT_PDEV_CCA_STATS_xxx_INFO_PRESENT defs
  2937. */
  2938. A_UINT32 valid_cca_counters_bitmap;
  2939. /* Indicates the stats collection interval
  2940. * Valid Values:
  2941. * 100 - For the 100ms interval CCA stats histogram
  2942. * 1000 - For 1sec interval CCA histogram
  2943. * 0xFFFFFFFF - For Cumulative CCA Stats
  2944. */
  2945. A_UINT32 collection_interval;
  2946. /**
  2947. * This will be followed by an array which contains the CCA stats
  2948. * collected in the last N intervals,
  2949. * if the indication is for last N intervals CCA stats.
  2950. * Then the pdev_cca_stats[0] element contains the oldest CCA stats
  2951. * and pdev_cca_stats[N-1] will have the most recent CCA stats.
  2952. * htt_pdev_stats_cca_counters_tlv cca_hist_tlv[1];
  2953. */
  2954. } htt_pdev_cca_stats_hist_v1_tlv;
  2955. #define HTT_TWT_SESSION_FLAG_FLOW_ID_M 0x0000ffff
  2956. #define HTT_TWT_SESSION_FLAG_FLOW_ID_S 0
  2957. #define HTT_TWT_SESSION_FLAG_BCAST_TWT_M 0x00010000
  2958. #define HTT_TWT_SESSION_FLAG_BCAST_TWT_S 16
  2959. #define HTT_TWT_SESSION_FLAG_TRIGGER_TWT_M 0x00020000
  2960. #define HTT_TWT_SESSION_FLAG_TRIGGER_TWT_S 17
  2961. #define HTT_TWT_SESSION_FLAG_ANNOUN_TWT_M 0x00040000
  2962. #define HTT_TWT_SESSION_FLAG_ANNOUN_TWT_S 18
  2963. #define HTT_TWT_SESSION_FLAG_FLOW_ID_GET(_var) \
  2964. (((_var) & HTT_TWT_SESSION_FLAG_FLOW_ID_M) >> \
  2965. HTT_TWT_SESSION_FLAG_FLOW_ID_S)
  2966. #define HTT_TWT_SESSION_FLAG_FLOW_ID_SET(_var, _val) \
  2967. do { \
  2968. HTT_CHECK_SET_VAL(HTT_TWT_SESSION_FLAG_FLOW_ID, _val); \
  2969. ((_var) |= ((_val) << HTT_TWT_SESSION_FLAG_FLOW_ID_S)); \
  2970. } while (0)
  2971. #define HTT_TWT_SESSION_FLAG_BCAST_TWT_GET(_var) \
  2972. (((_var) & HTT_TWT_SESSION_FLAG_BCAST_TWT_M) >> \
  2973. HTT_TWT_SESSION_FLAG_BCAST_TWT_S)
  2974. #define HTT_TWT_SESSION_FLAG_BCAST_TWT_SET(_var, _val) \
  2975. do { \
  2976. HTT_CHECK_SET_VAL(HTT_TWT_SESSION_FLAG_BCAST_TWT, _val); \
  2977. ((_var) |= ((_val) << HTT_TWT_SESSION_FLAG_BCAST_TWT_S)); \
  2978. } while (0)
  2979. #define HTT_TWT_SESSION_FLAG_TRIGGER_TWT_GET(_var) \
  2980. (((_var) & HTT_TWT_SESSION_FLAG_TRIGGER_TWT_M) >> \
  2981. HTT_TWT_SESSION_FLAG_TRIGGER_TWT_S)
  2982. #define HTT_TWT_SESSION_FLAG_TRIGGER_TWT_SET(_var, _val) \
  2983. do { \
  2984. HTT_CHECK_SET_VAL(HTT_TWT_SESSION_FLAG_TRIGGER_TWT, _val); \
  2985. ((_var) |= ((_val) << HTT_TWT_SESSION_FLAG_TRIGGER_TWT_S)); \
  2986. } while (0)
  2987. #define HTT_TWT_SESSION_FLAG_ANNOUN_TWT_GET(_var) \
  2988. (((_var) & HTT_TWT_SESSION_FLAG_ANNOUN_TWT_M) >> \
  2989. HTT_TWT_SESSION_FLAG_ANNOUN_TWT_S)
  2990. #define HTT_TWT_SESSION_FLAG_ANNOUN_TWT_SET(_var, _val) \
  2991. do { \
  2992. HTT_CHECK_SET_VAL(HTT_TWT_SESSION_FLAG_ANNOUN_TWT, _val); \
  2993. ((_var) |= ((_val) << HTT_TWT_SESSION_FLAG_ANNOUN_TWT_S)); \
  2994. } while (0)
  2995. #define TWT_DIALOG_ID_UNAVAILABLE 0xFFFFFFFF
  2996. typedef struct {
  2997. htt_tlv_hdr_t tlv_hdr;
  2998. A_UINT32 vdev_id;
  2999. htt_mac_addr peer_mac;
  3000. A_UINT32 flow_id_flags;
  3001. A_UINT32 dialog_id; /* TWT_DIALOG_ID_UNAVAILABLE is used when TWT session is not initiated by host */
  3002. A_UINT32 wake_dura_us;
  3003. A_UINT32 wake_intvl_us;
  3004. A_UINT32 sp_offset_us;
  3005. } htt_pdev_stats_twt_session_tlv;
  3006. typedef struct {
  3007. htt_tlv_hdr_t tlv_hdr;
  3008. A_UINT32 pdev_id;
  3009. A_UINT32 num_sessions;
  3010. htt_pdev_stats_twt_session_tlv twt_session[1];
  3011. } htt_pdev_stats_twt_sessions_tlv;
  3012. /* STATS_TYPE: HTT_DBG_EXT_STATS_TWT_SESSIONS
  3013. * TLV_TAGS:
  3014. * - HTT_STATS_PDEV_TWT_SESSIONS_TAG
  3015. * - HTT_STATS_PDEV_TWT_SESSION_TAG
  3016. */
  3017. /* NOTE:
  3018. * This structure is for documentation, and cannot be safely used directly.
  3019. * Instead, use the constituent TLV structures to fill/parse.
  3020. */
  3021. typedef struct {
  3022. htt_pdev_stats_twt_sessions_tlv twt_sessions[1];
  3023. } htt_pdev_twt_sessions_stats_t;
  3024. typedef enum {
  3025. /* Global link descriptor queued in REO */
  3026. HTT_RX_REO_RESOURCE_GLOBAL_LINK_DESC_COUNT_0 = 0,
  3027. HTT_RX_REO_RESOURCE_GLOBAL_LINK_DESC_COUNT_1 = 1,
  3028. HTT_RX_REO_RESOURCE_GLOBAL_LINK_DESC_COUNT_2 = 2,
  3029. /*Number of queue descriptors of this aging group */
  3030. HTT_RX_REO_RESOURCE_BUFFERS_USED_AC0 = 3,
  3031. HTT_RX_REO_RESOURCE_BUFFERS_USED_AC1 = 4,
  3032. HTT_RX_REO_RESOURCE_BUFFERS_USED_AC2 = 5,
  3033. HTT_RX_REO_RESOURCE_BUFFERS_USED_AC3 = 6,
  3034. /* Total number of MSDUs buffered in AC */
  3035. HTT_RX_REO_RESOURCE_AGING_NUM_QUEUES_AC0 = 7,
  3036. HTT_RX_REO_RESOURCE_AGING_NUM_QUEUES_AC1 = 8,
  3037. HTT_RX_REO_RESOURCE_AGING_NUM_QUEUES_AC2 = 9,
  3038. HTT_RX_REO_RESOURCE_AGING_NUM_QUEUES_AC3 = 10,
  3039. HTT_RX_REO_RESOURCE_STATS_MAX = 16
  3040. } htt_rx_reo_resource_sample_id_enum;
  3041. typedef struct {
  3042. htt_tlv_hdr_t tlv_hdr;
  3043. /* Variable based on the Number of records. HTT_RX_REO_RESOURCE_STATS_MAX */
  3044. /* htt_rx_reo_debug_sample_id_enum */
  3045. A_UINT32 sample_id;
  3046. /* Max value of all samples */
  3047. A_UINT32 total_max;
  3048. /* Average value of total samples */
  3049. A_UINT32 total_avg;
  3050. /* Num of samples including both zeros and non zeros ones*/
  3051. A_UINT32 total_sample;
  3052. /* Average value of all non zeros samples */
  3053. A_UINT32 non_zeros_avg;
  3054. /* Num of non zeros samples */
  3055. A_UINT32 non_zeros_sample;
  3056. /* Max value of last N non zero samples (N = last_non_zeros_sample) */
  3057. A_UINT32 last_non_zeros_max;
  3058. /* Min value of last N non zero samples (N = last_non_zeros_sample) */
  3059. A_UINT32 last_non_zeros_min;
  3060. /* Average value of last N non zero samples (N = last_non_zeros_sample) */
  3061. A_UINT32 last_non_zeros_avg;
  3062. /* Num of last non zero samples */
  3063. A_UINT32 last_non_zeros_sample;
  3064. } htt_rx_reo_resource_stats_tlv_v;
  3065. /* STATS_TYPE: HTT_DBG_EXT_STATS_REO_RESOURCE_STATS
  3066. * TLV_TAGS:
  3067. * - HTT_STATS_RX_REO_RESOURCE_STATS_TAG
  3068. */
  3069. /* NOTE:
  3070. * This structure is for documentation, and cannot be safely used directly.
  3071. * Instead, use the constituent TLV structures to fill/parse.
  3072. */
  3073. typedef struct {
  3074. htt_rx_reo_resource_stats_tlv_v reo_resource_stats;
  3075. } htt_soc_reo_resource_stats_t;
  3076. /* == TX SOUNDING STATS == */
  3077. /* config_param0 */
  3078. #define HTT_DBG_EXT_STATS_SET_VDEV_MASK(_var) ((_var << 1) | 0x1)
  3079. #define HTT_DBG_EXT_STATS_GET_VDEV_ID_FROM_VDEV_MASK(_var) ((_var >> 1) & 0xFF)
  3080. #define HTT_DBG_EXT_STATS_IS_VDEV_ID_SET(_var) ((_var) & 0x1)
  3081. typedef enum {
  3082. /* Implicit beamforming stats */
  3083. HTT_IMPLICIT_TXBF_STEER_STATS = 0,
  3084. /* Single user short inter frame sequence steer stats */
  3085. HTT_EXPLICIT_TXBF_SU_SIFS_STEER_STATS = 1,
  3086. /* Single user random back off steer stats */
  3087. HTT_EXPLICIT_TXBF_SU_RBO_STEER_STATS = 2,
  3088. /* Multi user short inter frame sequence steer stats */
  3089. HTT_EXPLICIT_TXBF_MU_SIFS_STEER_STATS = 3,
  3090. /* Multi user random back off steer stats */
  3091. HTT_EXPLICIT_TXBF_MU_RBO_STEER_STATS = 4,
  3092. /* For backward compatability new modes cannot be added */
  3093. HTT_TXBF_MAX_NUM_OF_MODES = 5
  3094. } htt_txbf_sound_steer_modes;
  3095. typedef enum {
  3096. HTT_TX_AC_SOUNDING_MODE = 0,
  3097. HTT_TX_AX_SOUNDING_MODE = 1,
  3098. } htt_stats_sounding_tx_mode;
  3099. typedef struct {
  3100. htt_tlv_hdr_t tlv_hdr;
  3101. A_UINT32 tx_sounding_mode; /* HTT_TX_XX_SOUNDING_MODE */
  3102. /* Counts number of soundings for all steering modes in each bw */
  3103. A_UINT32 cbf_20[HTT_TXBF_MAX_NUM_OF_MODES];
  3104. A_UINT32 cbf_40[HTT_TXBF_MAX_NUM_OF_MODES];
  3105. A_UINT32 cbf_80[HTT_TXBF_MAX_NUM_OF_MODES];
  3106. A_UINT32 cbf_160[HTT_TXBF_MAX_NUM_OF_MODES];
  3107. /*
  3108. * The sounding array is a 2-D array stored as an 1-D array of
  3109. * A_UINT32. The stats for a particular user/bw combination is
  3110. * referenced with the following:
  3111. *
  3112. * sounding[(user* max_bw) + bw]
  3113. *
  3114. * ... where max_bw == 4 for 160mhz
  3115. */
  3116. A_UINT32 sounding[HTT_TX_NUM_OF_SOUNDING_STATS_WORDS];
  3117. } htt_tx_sounding_stats_tlv;
  3118. /* STATS_TYPE : HTT_DBG_EXT_STATS_TX_SOUNDING_INFO
  3119. * TLV_TAGS:
  3120. * - HTT_STATS_TX_SOUNDING_STATS_TAG
  3121. */
  3122. /* NOTE:
  3123. * This structure is for documentation, and cannot be safely used directly.
  3124. * Instead, use the constituent TLV structures to fill/parse.
  3125. */
  3126. typedef struct {
  3127. htt_tx_sounding_stats_tlv sounding_tlv;
  3128. } htt_tx_sounding_stats_t;
  3129. #endif /* __HTT_STATS_H__ */