dp_htt.c 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650
  1. /*
  2. * Copyright (c) 2016-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include <htt.h>
  19. #include <hal_hw_headers.h>
  20. #include <hal_api.h>
  21. #include "dp_peer.h"
  22. #include "dp_types.h"
  23. #include "dp_internal.h"
  24. #include "dp_rx_mon.h"
  25. #include "htt_stats.h"
  26. #include "htt_ppdu_stats.h"
  27. #include "dp_htt.h"
  28. #include "dp_rx.h"
  29. #include "qdf_mem.h" /* qdf_mem_malloc,free */
  30. #include "cdp_txrx_cmn_struct.h"
  31. #ifdef FEATURE_PERPKT_INFO
  32. #include "dp_ratetable.h"
  33. #endif
  34. #define HTT_TLV_HDR_LEN HTT_T2H_EXT_STATS_CONF_TLV_HDR_SIZE
  35. #define HTT_HTC_PKT_POOL_INIT_SIZE 64
  36. #define HTT_MSG_BUF_SIZE(msg_bytes) \
  37. ((msg_bytes) + HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING)
  38. #define HTT_PID_BIT_MASK 0x3
  39. #define DP_EXT_MSG_LENGTH 2048
  40. #define HTT_MGMT_CTRL_TLV_HDR_RESERVERD_LEN 16
  41. /*
  42. * dp_htt_get_ppdu_sniffer_ampdu_tlv_bitmap() - Get ppdu stats tlv
  43. * bitmap for sniffer mode
  44. * @bitmap: received bitmap
  45. *
  46. * Return: expected bitmap value, returns zero if doesn't match with
  47. * either 64-bit Tx window or 256-bit window tlv bitmap
  48. */
  49. int
  50. dp_htt_get_ppdu_sniffer_ampdu_tlv_bitmap(uint32_t bitmap)
  51. {
  52. if (bitmap == (HTT_PPDU_SNIFFER_AMPDU_TLV_BITMAP_64))
  53. return HTT_PPDU_SNIFFER_AMPDU_TLV_BITMAP_64;
  54. else if (bitmap == (HTT_PPDU_SNIFFER_AMPDU_TLV_BITMAP_256))
  55. return HTT_PPDU_SNIFFER_AMPDU_TLV_BITMAP_256;
  56. return 0;
  57. }
  58. #ifdef FEATURE_PERPKT_INFO
  59. /*
  60. * dp_peer_copy_delay_stats() - copy ppdu stats to peer delayed stats.
  61. * @peer: Datapath peer handle
  62. * @ppdu: PPDU Descriptor
  63. *
  64. * Return: None
  65. *
  66. * on Tx data frame, we may get delayed ba set
  67. * in htt_ppdu_stats_user_common_tlv. which mean we get Block Ack(BA) after we
  68. * request Block Ack Request(BAR). Successful msdu is received only after Block
  69. * Ack. To populate peer stats we need successful msdu(data frame).
  70. * So we hold the Tx data stats on delayed_ba for stats update.
  71. */
  72. static inline void
  73. dp_peer_copy_delay_stats(struct dp_peer *peer,
  74. struct cdp_tx_completion_ppdu_user *ppdu)
  75. {
  76. struct dp_pdev *pdev;
  77. struct dp_vdev *vdev;
  78. if (peer->last_delayed_ba) {
  79. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  80. "BA not yet recv for prev delayed ppdu[%d]\n",
  81. peer->last_delayed_ba_ppduid);
  82. vdev = peer->vdev;
  83. if (vdev) {
  84. pdev = vdev->pdev;
  85. pdev->stats.cdp_delayed_ba_not_recev++;
  86. }
  87. }
  88. peer->delayed_ba_ppdu_stats.ltf_size = ppdu->ltf_size;
  89. peer->delayed_ba_ppdu_stats.stbc = ppdu->stbc;
  90. peer->delayed_ba_ppdu_stats.he_re = ppdu->he_re;
  91. peer->delayed_ba_ppdu_stats.txbf = ppdu->txbf;
  92. peer->delayed_ba_ppdu_stats.bw = ppdu->bw;
  93. peer->delayed_ba_ppdu_stats.nss = ppdu->nss;
  94. peer->delayed_ba_ppdu_stats.preamble = ppdu->preamble;
  95. peer->delayed_ba_ppdu_stats.gi = ppdu->gi;
  96. peer->delayed_ba_ppdu_stats.dcm = ppdu->dcm;
  97. peer->delayed_ba_ppdu_stats.ldpc = ppdu->ldpc;
  98. peer->delayed_ba_ppdu_stats.dcm = ppdu->dcm;
  99. peer->delayed_ba_ppdu_stats.mpdu_tried_ucast = ppdu->mpdu_tried_ucast;
  100. peer->delayed_ba_ppdu_stats.mpdu_tried_mcast = ppdu->mpdu_tried_mcast;
  101. peer->delayed_ba_ppdu_stats.frame_ctrl = ppdu->frame_ctrl;
  102. peer->delayed_ba_ppdu_stats.qos_ctrl = ppdu->qos_ctrl;
  103. peer->delayed_ba_ppdu_stats.dcm = ppdu->dcm;
  104. peer->delayed_ba_ppdu_stats.ru_start = ppdu->ru_start;
  105. peer->delayed_ba_ppdu_stats.ru_tones = ppdu->ru_tones;
  106. peer->delayed_ba_ppdu_stats.is_mcast = ppdu->is_mcast;
  107. peer->delayed_ba_ppdu_stats.user_pos = ppdu->user_pos;
  108. peer->delayed_ba_ppdu_stats.mu_group_id = ppdu->mu_group_id;
  109. peer->last_delayed_ba = true;
  110. }
  111. /*
  112. * dp_peer_copy_stats_to_bar() - copy delayed stats to ppdu stats.
  113. * @peer: Datapath peer handle
  114. * @ppdu: PPDU Descriptor
  115. *
  116. * Return: None
  117. *
  118. * For Tx BAR, PPDU stats TLV include Block Ack info. PPDU info
  119. * from Tx BAR frame not required to populate peer stats.
  120. * But we need successful MPDU and MSDU to update previous
  121. * transmitted Tx data frame. Overwrite ppdu stats with the previous
  122. * stored ppdu stats.
  123. */
  124. static void
  125. dp_peer_copy_stats_to_bar(struct dp_peer *peer,
  126. struct cdp_tx_completion_ppdu_user *ppdu)
  127. {
  128. ppdu->ltf_size = peer->delayed_ba_ppdu_stats.ltf_size;
  129. ppdu->stbc = peer->delayed_ba_ppdu_stats.stbc;
  130. ppdu->he_re = peer->delayed_ba_ppdu_stats.he_re;
  131. ppdu->txbf = peer->delayed_ba_ppdu_stats.txbf;
  132. ppdu->bw = peer->delayed_ba_ppdu_stats.bw;
  133. ppdu->nss = peer->delayed_ba_ppdu_stats.nss;
  134. ppdu->preamble = peer->delayed_ba_ppdu_stats.preamble;
  135. ppdu->gi = peer->delayed_ba_ppdu_stats.gi;
  136. ppdu->dcm = peer->delayed_ba_ppdu_stats.dcm;
  137. ppdu->ldpc = peer->delayed_ba_ppdu_stats.ldpc;
  138. ppdu->dcm = peer->delayed_ba_ppdu_stats.dcm;
  139. ppdu->mpdu_tried_ucast = peer->delayed_ba_ppdu_stats.mpdu_tried_ucast;
  140. ppdu->mpdu_tried_mcast = peer->delayed_ba_ppdu_stats.mpdu_tried_mcast;
  141. ppdu->frame_ctrl = peer->delayed_ba_ppdu_stats.frame_ctrl;
  142. ppdu->qos_ctrl = peer->delayed_ba_ppdu_stats.qos_ctrl;
  143. ppdu->dcm = peer->delayed_ba_ppdu_stats.dcm;
  144. ppdu->ru_start = peer->delayed_ba_ppdu_stats.ru_start;
  145. ppdu->ru_tones = peer->delayed_ba_ppdu_stats.ru_tones;
  146. ppdu->is_mcast = peer->delayed_ba_ppdu_stats.is_mcast;
  147. ppdu->user_pos = peer->delayed_ba_ppdu_stats.user_pos;
  148. ppdu->mu_group_id = peer->delayed_ba_ppdu_stats.mu_group_id;
  149. peer->last_delayed_ba = false;
  150. }
  151. /*
  152. * dp_tx_rate_stats_update() - Update rate per-peer statistics
  153. * @peer: Datapath peer handle
  154. * @ppdu: PPDU Descriptor
  155. *
  156. * Return: None
  157. */
  158. static void
  159. dp_tx_rate_stats_update(struct dp_peer *peer,
  160. struct cdp_tx_completion_ppdu_user *ppdu)
  161. {
  162. uint32_t ratekbps = 0;
  163. uint64_t ppdu_tx_rate = 0;
  164. uint32_t rix;
  165. uint16_t ratecode = 0;
  166. if (!peer || !ppdu)
  167. return;
  168. ratekbps = dp_getrateindex(ppdu->gi,
  169. ppdu->mcs,
  170. ppdu->nss,
  171. ppdu->preamble,
  172. ppdu->bw,
  173. &rix,
  174. &ratecode);
  175. DP_STATS_UPD(peer, tx.last_tx_rate, ratekbps);
  176. if (!ratekbps)
  177. return;
  178. /* Calculate goodput in non-training period
  179. * In training period, don't do anything as
  180. * pending pkt is send as goodput.
  181. */
  182. if ((!peer->bss_peer) && (!ppdu->sa_is_training)) {
  183. ppdu->sa_goodput = ((ratekbps / CDP_NUM_KB_IN_MB) *
  184. (CDP_PERCENT_MACRO - ppdu->current_rate_per));
  185. }
  186. ppdu->rix = rix;
  187. ppdu->tx_ratekbps = ratekbps;
  188. ppdu->tx_ratecode = ratecode;
  189. peer->stats.tx.avg_tx_rate =
  190. dp_ath_rate_lpf(peer->stats.tx.avg_tx_rate, ratekbps);
  191. ppdu_tx_rate = dp_ath_rate_out(peer->stats.tx.avg_tx_rate);
  192. DP_STATS_UPD(peer, tx.rnd_avg_tx_rate, ppdu_tx_rate);
  193. if (peer->vdev) {
  194. /*
  195. * In STA mode:
  196. * We get ucast stats as BSS peer stats.
  197. *
  198. * In AP mode:
  199. * We get mcast stats as BSS peer stats.
  200. * We get ucast stats as assoc peer stats.
  201. */
  202. if (peer->vdev->opmode == wlan_op_mode_ap && peer->bss_peer) {
  203. peer->vdev->stats.tx.mcast_last_tx_rate = ratekbps;
  204. peer->vdev->stats.tx.mcast_last_tx_rate_mcs = ppdu->mcs;
  205. } else {
  206. peer->vdev->stats.tx.last_tx_rate = ratekbps;
  207. peer->vdev->stats.tx.last_tx_rate_mcs = ppdu->mcs;
  208. }
  209. }
  210. }
  211. /*
  212. * dp_tx_stats_update() - Update per-peer statistics
  213. * @pdev: Datapath pdev handle
  214. * @peer: Datapath peer handle
  215. * @ppdu: PPDU Descriptor
  216. * @ack_rssi: RSSI of last ack received
  217. *
  218. * Return: None
  219. */
  220. static void
  221. dp_tx_stats_update(struct dp_pdev *pdev, struct dp_peer *peer,
  222. struct cdp_tx_completion_ppdu_user *ppdu,
  223. uint32_t ack_rssi)
  224. {
  225. uint8_t preamble, mcs;
  226. uint16_t num_msdu;
  227. uint16_t num_mpdu;
  228. uint16_t mpdu_tried;
  229. preamble = ppdu->preamble;
  230. mcs = ppdu->mcs;
  231. num_msdu = ppdu->num_msdu;
  232. num_mpdu = ppdu->mpdu_success;
  233. mpdu_tried = ppdu->mpdu_tried_ucast + ppdu->mpdu_tried_mcast;
  234. /* If the peer statistics are already processed as part of
  235. * per-MSDU completion handler, do not process these again in per-PPDU
  236. * indications */
  237. if (pdev->soc->process_tx_status)
  238. return;
  239. if (ppdu->completion_status != HTT_PPDU_STATS_USER_STATUS_OK) {
  240. return;
  241. }
  242. if (ppdu->is_ppdu_cookie_valid)
  243. DP_STATS_INC(peer, tx.num_ppdu_cookie_valid, 1);
  244. if (ppdu->mu_group_id <= MAX_MU_GROUP_ID &&
  245. ppdu->ppdu_type != HTT_PPDU_STATS_PPDU_TYPE_SU) {
  246. if (unlikely(!(ppdu->mu_group_id & (MAX_MU_GROUP_ID - 1))))
  247. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  248. "mu_group_id out of bound!!\n");
  249. else
  250. DP_STATS_UPD(peer, tx.mu_group_id[ppdu->mu_group_id],
  251. (ppdu->user_pos + 1));
  252. }
  253. if (ppdu->ppdu_type == HTT_PPDU_STATS_PPDU_TYPE_MU_OFDMA ||
  254. ppdu->ppdu_type == HTT_PPDU_STATS_PPDU_TYPE_MU_MIMO_OFDMA) {
  255. DP_STATS_UPD(peer, tx.ru_tones, ppdu->ru_tones);
  256. DP_STATS_UPD(peer, tx.ru_start, ppdu->ru_start);
  257. switch (ppdu->ru_tones) {
  258. case RU_26:
  259. DP_STATS_INC(peer, tx.ru_loc[RU_26_INDEX].num_msdu,
  260. num_msdu);
  261. DP_STATS_INC(peer, tx.ru_loc[RU_26_INDEX].num_mpdu,
  262. num_mpdu);
  263. DP_STATS_INC(peer, tx.ru_loc[RU_26_INDEX].mpdu_tried,
  264. mpdu_tried);
  265. break;
  266. case RU_52:
  267. DP_STATS_INC(peer, tx.ru_loc[RU_52_INDEX].num_msdu,
  268. num_msdu);
  269. DP_STATS_INC(peer, tx.ru_loc[RU_52_INDEX].num_mpdu,
  270. num_mpdu);
  271. DP_STATS_INC(peer, tx.ru_loc[RU_52_INDEX].mpdu_tried,
  272. mpdu_tried);
  273. break;
  274. case RU_106:
  275. DP_STATS_INC(peer, tx.ru_loc[RU_106_INDEX].num_msdu,
  276. num_msdu);
  277. DP_STATS_INC(peer, tx.ru_loc[RU_106_INDEX].num_mpdu,
  278. num_mpdu);
  279. DP_STATS_INC(peer, tx.ru_loc[RU_106_INDEX].mpdu_tried,
  280. mpdu_tried);
  281. break;
  282. case RU_242:
  283. DP_STATS_INC(peer, tx.ru_loc[RU_242_INDEX].num_msdu,
  284. num_msdu);
  285. DP_STATS_INC(peer, tx.ru_loc[RU_242_INDEX].num_mpdu,
  286. num_mpdu);
  287. DP_STATS_INC(peer, tx.ru_loc[RU_242_INDEX].mpdu_tried,
  288. mpdu_tried);
  289. break;
  290. case RU_484:
  291. DP_STATS_INC(peer, tx.ru_loc[RU_484_INDEX].num_msdu,
  292. num_msdu);
  293. DP_STATS_INC(peer, tx.ru_loc[RU_484_INDEX].num_mpdu,
  294. num_mpdu);
  295. DP_STATS_INC(peer, tx.ru_loc[RU_484_INDEX].mpdu_tried,
  296. mpdu_tried);
  297. break;
  298. case RU_996:
  299. DP_STATS_INC(peer, tx.ru_loc[RU_996_INDEX].num_msdu,
  300. num_msdu);
  301. DP_STATS_INC(peer, tx.ru_loc[RU_996_INDEX].num_mpdu,
  302. num_mpdu);
  303. DP_STATS_INC(peer, tx.ru_loc[RU_996_INDEX].mpdu_tried,
  304. mpdu_tried);
  305. break;
  306. }
  307. }
  308. DP_STATS_INC(peer, tx.transmit_type[ppdu->ppdu_type].num_msdu,
  309. num_msdu);
  310. DP_STATS_INC(peer, tx.transmit_type[ppdu->ppdu_type].num_mpdu,
  311. num_mpdu);
  312. DP_STATS_INC(peer, tx.transmit_type[ppdu->ppdu_type].mpdu_tried,
  313. mpdu_tried);
  314. DP_STATS_INC_PKT(peer, tx.comp_pkt,
  315. num_msdu, (ppdu->success_bytes +
  316. ppdu->retry_bytes + ppdu->failed_bytes));
  317. DP_STATS_UPD(peer, tx.tx_rate, ppdu->tx_rate);
  318. DP_STATS_INC(peer, tx.sgi_count[ppdu->gi], num_msdu);
  319. DP_STATS_INC(peer, tx.bw[ppdu->bw], num_msdu);
  320. DP_STATS_INC(peer, tx.nss[ppdu->nss], num_msdu);
  321. if (ppdu->tid < CDP_DATA_TID_MAX)
  322. DP_STATS_INC(peer, tx.wme_ac_type[TID_TO_WME_AC(ppdu->tid)],
  323. num_msdu);
  324. DP_STATS_INCC(peer, tx.stbc, num_msdu, ppdu->stbc);
  325. DP_STATS_INCC(peer, tx.ldpc, num_msdu, ppdu->ldpc);
  326. if (!(ppdu->is_mcast) && ppdu->ack_rssi_valid)
  327. DP_STATS_UPD(peer, tx.last_ack_rssi, ack_rssi);
  328. DP_STATS_INCC(peer,
  329. tx.pkt_type[preamble].mcs_count[MAX_MCS-1], num_msdu,
  330. ((mcs >= MAX_MCS_11A) && (preamble == DOT11_A)));
  331. DP_STATS_INCC(peer,
  332. tx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  333. ((mcs < MAX_MCS_11A) && (preamble == DOT11_A)));
  334. DP_STATS_INCC(peer,
  335. tx.pkt_type[preamble].mcs_count[MAX_MCS-1], num_msdu,
  336. ((mcs >= MAX_MCS_11B) && (preamble == DOT11_B)));
  337. DP_STATS_INCC(peer,
  338. tx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  339. ((mcs < (MAX_MCS_11B)) && (preamble == DOT11_B)));
  340. DP_STATS_INCC(peer,
  341. tx.pkt_type[preamble].mcs_count[MAX_MCS-1], num_msdu,
  342. ((mcs >= MAX_MCS_11A) && (preamble == DOT11_N)));
  343. DP_STATS_INCC(peer,
  344. tx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  345. ((mcs < MAX_MCS_11A) && (preamble == DOT11_N)));
  346. DP_STATS_INCC(peer,
  347. tx.pkt_type[preamble].mcs_count[MAX_MCS-1], num_msdu,
  348. ((mcs >= MAX_MCS_11AC) && (preamble == DOT11_AC)));
  349. DP_STATS_INCC(peer,
  350. tx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  351. ((mcs < MAX_MCS_11AC) && (preamble == DOT11_AC)));
  352. DP_STATS_INCC(peer,
  353. tx.pkt_type[preamble].mcs_count[MAX_MCS-1], num_msdu,
  354. ((mcs >= (MAX_MCS - 1)) && (preamble == DOT11_AX)));
  355. DP_STATS_INCC(peer,
  356. tx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  357. ((mcs < (MAX_MCS - 1)) && (preamble == DOT11_AX)));
  358. DP_STATS_INCC(peer, tx.ampdu_cnt, num_msdu, ppdu->is_ampdu);
  359. DP_STATS_INCC(peer, tx.non_ampdu_cnt, num_msdu, !(ppdu->is_ampdu));
  360. dp_peer_stats_notify(pdev, peer);
  361. #if defined(FEATURE_PERPKT_INFO) && WDI_EVENT_ENABLE
  362. dp_wdi_event_handler(WDI_EVENT_UPDATE_DP_STATS, pdev->soc,
  363. &peer->stats, ppdu->peer_id,
  364. UPDATE_PEER_STATS, pdev->pdev_id);
  365. #endif
  366. }
  367. #endif
  368. #ifdef WLAN_TX_PKT_CAPTURE_ENH
  369. #include "dp_tx_capture.h"
  370. #else
  371. static inline void
  372. dp_process_ppdu_stats_update_failed_bitmap(struct dp_pdev *pdev,
  373. void *data,
  374. uint32_t ppdu_id,
  375. uint32_t size)
  376. {
  377. }
  378. #endif
  379. /*
  380. * htt_htc_pkt_alloc() - Allocate HTC packet buffer
  381. * @htt_soc: HTT SOC handle
  382. *
  383. * Return: Pointer to htc packet buffer
  384. */
  385. static struct dp_htt_htc_pkt *
  386. htt_htc_pkt_alloc(struct htt_soc *soc)
  387. {
  388. struct dp_htt_htc_pkt_union *pkt = NULL;
  389. HTT_TX_MUTEX_ACQUIRE(&soc->htt_tx_mutex);
  390. if (soc->htt_htc_pkt_freelist) {
  391. pkt = soc->htt_htc_pkt_freelist;
  392. soc->htt_htc_pkt_freelist = soc->htt_htc_pkt_freelist->u.next;
  393. }
  394. HTT_TX_MUTEX_RELEASE(&soc->htt_tx_mutex);
  395. if (!pkt)
  396. pkt = qdf_mem_malloc(sizeof(*pkt));
  397. return &pkt->u.pkt; /* not actually a dereference */
  398. }
  399. /*
  400. * htt_htc_pkt_free() - Free HTC packet buffer
  401. * @htt_soc: HTT SOC handle
  402. */
  403. static void
  404. htt_htc_pkt_free(struct htt_soc *soc, struct dp_htt_htc_pkt *pkt)
  405. {
  406. struct dp_htt_htc_pkt_union *u_pkt =
  407. (struct dp_htt_htc_pkt_union *)pkt;
  408. HTT_TX_MUTEX_ACQUIRE(&soc->htt_tx_mutex);
  409. u_pkt->u.next = soc->htt_htc_pkt_freelist;
  410. soc->htt_htc_pkt_freelist = u_pkt;
  411. HTT_TX_MUTEX_RELEASE(&soc->htt_tx_mutex);
  412. }
  413. /*
  414. * htt_htc_pkt_pool_free() - Free HTC packet pool
  415. * @htt_soc: HTT SOC handle
  416. */
  417. static void
  418. htt_htc_pkt_pool_free(struct htt_soc *soc)
  419. {
  420. struct dp_htt_htc_pkt_union *pkt, *next;
  421. pkt = soc->htt_htc_pkt_freelist;
  422. while (pkt) {
  423. next = pkt->u.next;
  424. qdf_mem_free(pkt);
  425. pkt = next;
  426. }
  427. soc->htt_htc_pkt_freelist = NULL;
  428. }
  429. /*
  430. * htt_htc_misc_pkt_list_trim() - trim misc list
  431. * @htt_soc: HTT SOC handle
  432. * @level: max no. of pkts in list
  433. */
  434. static void
  435. htt_htc_misc_pkt_list_trim(struct htt_soc *soc, int level)
  436. {
  437. struct dp_htt_htc_pkt_union *pkt, *next, *prev = NULL;
  438. int i = 0;
  439. qdf_nbuf_t netbuf;
  440. HTT_TX_MUTEX_ACQUIRE(&soc->htt_tx_mutex);
  441. pkt = soc->htt_htc_pkt_misclist;
  442. while (pkt) {
  443. next = pkt->u.next;
  444. /* trim the out grown list*/
  445. if (++i > level) {
  446. netbuf =
  447. (qdf_nbuf_t)(pkt->u.pkt.htc_pkt.pNetBufContext);
  448. qdf_nbuf_unmap(soc->osdev, netbuf, QDF_DMA_TO_DEVICE);
  449. qdf_nbuf_free(netbuf);
  450. qdf_mem_free(pkt);
  451. pkt = NULL;
  452. if (prev)
  453. prev->u.next = NULL;
  454. }
  455. prev = pkt;
  456. pkt = next;
  457. }
  458. HTT_TX_MUTEX_RELEASE(&soc->htt_tx_mutex);
  459. }
  460. /*
  461. * htt_htc_misc_pkt_list_add() - Add pkt to misc list
  462. * @htt_soc: HTT SOC handle
  463. * @dp_htt_htc_pkt: pkt to be added to list
  464. */
  465. static void
  466. htt_htc_misc_pkt_list_add(struct htt_soc *soc, struct dp_htt_htc_pkt *pkt)
  467. {
  468. struct dp_htt_htc_pkt_union *u_pkt =
  469. (struct dp_htt_htc_pkt_union *)pkt;
  470. int misclist_trim_level = htc_get_tx_queue_depth(soc->htc_soc,
  471. pkt->htc_pkt.Endpoint)
  472. + DP_HTT_HTC_PKT_MISCLIST_SIZE;
  473. HTT_TX_MUTEX_ACQUIRE(&soc->htt_tx_mutex);
  474. if (soc->htt_htc_pkt_misclist) {
  475. u_pkt->u.next = soc->htt_htc_pkt_misclist;
  476. soc->htt_htc_pkt_misclist = u_pkt;
  477. } else {
  478. soc->htt_htc_pkt_misclist = u_pkt;
  479. }
  480. HTT_TX_MUTEX_RELEASE(&soc->htt_tx_mutex);
  481. /* only ce pipe size + tx_queue_depth could possibly be in use
  482. * free older packets in the misclist
  483. */
  484. htt_htc_misc_pkt_list_trim(soc, misclist_trim_level);
  485. }
  486. /**
  487. * DP_HTT_SEND_HTC_PKT() - Send htt packet from host
  488. * @soc : HTT SOC handle
  489. * @pkt: pkt to be send
  490. * @cmd : command to be recorded in dp htt logger
  491. * @buf : Pointer to buffer needs to be recored for above cmd
  492. *
  493. * Return: None
  494. */
  495. static inline void DP_HTT_SEND_HTC_PKT(struct htt_soc *soc,
  496. struct dp_htt_htc_pkt *pkt, uint8_t cmd,
  497. uint8_t *buf)
  498. {
  499. htt_command_record(soc->htt_logger_handle, cmd, buf);
  500. if (htc_send_pkt(soc->htc_soc, &pkt->htc_pkt) ==
  501. QDF_STATUS_SUCCESS)
  502. htt_htc_misc_pkt_list_add(soc, pkt);
  503. }
  504. /*
  505. * htt_htc_misc_pkt_pool_free() - free pkts in misc list
  506. * @htt_soc: HTT SOC handle
  507. */
  508. static void
  509. htt_htc_misc_pkt_pool_free(struct htt_soc *soc)
  510. {
  511. struct dp_htt_htc_pkt_union *pkt, *next;
  512. qdf_nbuf_t netbuf;
  513. pkt = soc->htt_htc_pkt_misclist;
  514. while (pkt) {
  515. next = pkt->u.next;
  516. netbuf = (qdf_nbuf_t) (pkt->u.pkt.htc_pkt.pNetBufContext);
  517. qdf_nbuf_unmap(soc->osdev, netbuf, QDF_DMA_TO_DEVICE);
  518. soc->stats.htc_pkt_free++;
  519. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO_LOW,
  520. "%s: Pkt free count %d",
  521. __func__, soc->stats.htc_pkt_free);
  522. qdf_nbuf_free(netbuf);
  523. qdf_mem_free(pkt);
  524. pkt = next;
  525. }
  526. soc->htt_htc_pkt_misclist = NULL;
  527. }
  528. /*
  529. * htt_t2h_mac_addr_deswizzle() - Swap MAC addr bytes if FW endianness differ
  530. * @tgt_mac_addr: Target MAC
  531. * @buffer: Output buffer
  532. */
  533. static u_int8_t *
  534. htt_t2h_mac_addr_deswizzle(u_int8_t *tgt_mac_addr, u_int8_t *buffer)
  535. {
  536. #ifdef BIG_ENDIAN_HOST
  537. /*
  538. * The host endianness is opposite of the target endianness.
  539. * To make u_int32_t elements come out correctly, the target->host
  540. * upload has swizzled the bytes in each u_int32_t element of the
  541. * message.
  542. * For byte-array message fields like the MAC address, this
  543. * upload swizzling puts the bytes in the wrong order, and needs
  544. * to be undone.
  545. */
  546. buffer[0] = tgt_mac_addr[3];
  547. buffer[1] = tgt_mac_addr[2];
  548. buffer[2] = tgt_mac_addr[1];
  549. buffer[3] = tgt_mac_addr[0];
  550. buffer[4] = tgt_mac_addr[7];
  551. buffer[5] = tgt_mac_addr[6];
  552. return buffer;
  553. #else
  554. /*
  555. * The host endianness matches the target endianness -
  556. * we can use the mac addr directly from the message buffer.
  557. */
  558. return tgt_mac_addr;
  559. #endif
  560. }
  561. /*
  562. * dp_htt_h2t_send_complete_free_netbuf() - Free completed buffer
  563. * @soc: SOC handle
  564. * @status: Completion status
  565. * @netbuf: HTT buffer
  566. */
  567. static void
  568. dp_htt_h2t_send_complete_free_netbuf(
  569. void *soc, A_STATUS status, qdf_nbuf_t netbuf)
  570. {
  571. qdf_nbuf_free(netbuf);
  572. }
  573. /*
  574. * dp_htt_h2t_send_complete() - H2T completion handler
  575. * @context: Opaque context (HTT SOC handle)
  576. * @htc_pkt: HTC packet
  577. */
  578. static void
  579. dp_htt_h2t_send_complete(void *context, HTC_PACKET *htc_pkt)
  580. {
  581. void (*send_complete_part2)(
  582. void *soc, QDF_STATUS status, qdf_nbuf_t msdu);
  583. struct htt_soc *soc = (struct htt_soc *) context;
  584. struct dp_htt_htc_pkt *htt_pkt;
  585. qdf_nbuf_t netbuf;
  586. send_complete_part2 = htc_pkt->pPktContext;
  587. htt_pkt = container_of(htc_pkt, struct dp_htt_htc_pkt, htc_pkt);
  588. /* process (free or keep) the netbuf that held the message */
  589. netbuf = (qdf_nbuf_t) htc_pkt->pNetBufContext;
  590. /*
  591. * adf sendcomplete is required for windows only
  592. */
  593. /* qdf_nbuf_set_sendcompleteflag(netbuf, TRUE); */
  594. if (send_complete_part2) {
  595. send_complete_part2(
  596. htt_pkt->soc_ctxt, htc_pkt->Status, netbuf);
  597. }
  598. /* free the htt_htc_pkt / HTC_PACKET object */
  599. htt_htc_pkt_free(soc, htt_pkt);
  600. }
  601. /*
  602. * htt_h2t_ver_req_msg() - Send HTT version request message to target
  603. * @htt_soc: HTT SOC handle
  604. *
  605. * Return: 0 on success; error code on failure
  606. */
  607. static int htt_h2t_ver_req_msg(struct htt_soc *soc)
  608. {
  609. struct dp_htt_htc_pkt *pkt;
  610. qdf_nbuf_t msg;
  611. uint32_t *msg_word;
  612. msg = qdf_nbuf_alloc(
  613. soc->osdev,
  614. HTT_MSG_BUF_SIZE(HTT_VER_REQ_BYTES),
  615. /* reserve room for the HTC header */
  616. HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING, 4, TRUE);
  617. if (!msg)
  618. return QDF_STATUS_E_NOMEM;
  619. /*
  620. * Set the length of the message.
  621. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  622. * separately during the below call to qdf_nbuf_push_head.
  623. * The contribution from the HTC header is added separately inside HTC.
  624. */
  625. if (qdf_nbuf_put_tail(msg, HTT_VER_REQ_BYTES) == NULL) {
  626. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  627. "%s: Failed to expand head for HTT_H2T_MSG_TYPE_VERSION_REQ msg",
  628. __func__);
  629. return QDF_STATUS_E_FAILURE;
  630. }
  631. /* fill in the message contents */
  632. msg_word = (u_int32_t *) qdf_nbuf_data(msg);
  633. /* rewind beyond alignment pad to get to the HTC header reserved area */
  634. qdf_nbuf_push_head(msg, HTC_HDR_ALIGNMENT_PADDING);
  635. *msg_word = 0;
  636. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_VERSION_REQ);
  637. pkt = htt_htc_pkt_alloc(soc);
  638. if (!pkt) {
  639. qdf_nbuf_free(msg);
  640. return QDF_STATUS_E_FAILURE;
  641. }
  642. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  643. SET_HTC_PACKET_INFO_TX(&pkt->htc_pkt,
  644. dp_htt_h2t_send_complete_free_netbuf, qdf_nbuf_data(msg),
  645. qdf_nbuf_len(msg), soc->htc_endpoint,
  646. 1); /* tag - not relevant here */
  647. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, msg);
  648. DP_HTT_SEND_HTC_PKT(soc, pkt, HTT_H2T_MSG_TYPE_VERSION_REQ, NULL);
  649. return 0;
  650. }
  651. /*
  652. * htt_srng_setup() - Send SRNG setup message to target
  653. * @htt_soc: HTT SOC handle
  654. * @mac_id: MAC Id
  655. * @hal_srng: Opaque HAL SRNG pointer
  656. * @hal_ring_type: SRNG ring type
  657. *
  658. * Return: 0 on success; error code on failure
  659. */
  660. int htt_srng_setup(struct htt_soc *soc, int mac_id,
  661. hal_ring_handle_t hal_ring_hdl,
  662. int hal_ring_type)
  663. {
  664. struct dp_htt_htc_pkt *pkt;
  665. qdf_nbuf_t htt_msg;
  666. uint32_t *msg_word;
  667. struct hal_srng_params srng_params;
  668. qdf_dma_addr_t hp_addr, tp_addr;
  669. uint32_t ring_entry_size =
  670. hal_srng_get_entrysize(soc->hal_soc, hal_ring_type);
  671. int htt_ring_type, htt_ring_id;
  672. uint8_t *htt_logger_bufp;
  673. /* Sizes should be set in 4-byte words */
  674. ring_entry_size = ring_entry_size >> 2;
  675. htt_msg = qdf_nbuf_alloc(soc->osdev,
  676. HTT_MSG_BUF_SIZE(HTT_SRING_SETUP_SZ),
  677. /* reserve room for the HTC header */
  678. HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING, 4, TRUE);
  679. if (!htt_msg)
  680. goto fail0;
  681. hal_get_srng_params(soc->hal_soc, hal_ring_hdl, &srng_params);
  682. hp_addr = hal_srng_get_hp_addr(soc->hal_soc, hal_ring_hdl);
  683. tp_addr = hal_srng_get_tp_addr(soc->hal_soc, hal_ring_hdl);
  684. switch (hal_ring_type) {
  685. case RXDMA_BUF:
  686. #ifdef QCA_HOST2FW_RXBUF_RING
  687. if (srng_params.ring_id ==
  688. (HAL_SRNG_WMAC1_SW2RXDMA0_BUF0)) {
  689. htt_ring_id = HTT_HOST1_TO_FW_RXBUF_RING;
  690. htt_ring_type = HTT_SW_TO_SW_RING;
  691. #ifdef IPA_OFFLOAD
  692. } else if (srng_params.ring_id ==
  693. (HAL_SRNG_WMAC1_SW2RXDMA0_BUF2)) {
  694. htt_ring_id = HTT_HOST2_TO_FW_RXBUF_RING;
  695. htt_ring_type = HTT_SW_TO_SW_RING;
  696. #endif
  697. #else
  698. if (srng_params.ring_id ==
  699. (HAL_SRNG_WMAC1_SW2RXDMA0_BUF0 +
  700. (mac_id * HAL_MAX_RINGS_PER_LMAC))) {
  701. htt_ring_id = HTT_RXDMA_HOST_BUF_RING;
  702. htt_ring_type = HTT_SW_TO_HW_RING;
  703. #endif
  704. } else if (srng_params.ring_id ==
  705. #ifdef IPA_OFFLOAD
  706. (HAL_SRNG_WMAC1_SW2RXDMA0_BUF1 +
  707. #else
  708. (HAL_SRNG_WMAC1_SW2RXDMA1_BUF +
  709. #endif
  710. (mac_id * HAL_MAX_RINGS_PER_LMAC))) {
  711. htt_ring_id = HTT_RXDMA_HOST_BUF_RING;
  712. htt_ring_type = HTT_SW_TO_HW_RING;
  713. } else {
  714. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  715. "%s: Ring %d currently not supported",
  716. __func__, srng_params.ring_id);
  717. goto fail1;
  718. }
  719. dp_info("ring_type %d ring_id %d htt_ring_id %d hp_addr 0x%llx tp_addr 0x%llx",
  720. hal_ring_type, srng_params.ring_id, htt_ring_id,
  721. (uint64_t)hp_addr,
  722. (uint64_t)tp_addr);
  723. break;
  724. case RXDMA_MONITOR_BUF:
  725. htt_ring_id = HTT_RXDMA_MONITOR_BUF_RING;
  726. htt_ring_type = HTT_SW_TO_HW_RING;
  727. break;
  728. case RXDMA_MONITOR_STATUS:
  729. htt_ring_id = HTT_RXDMA_MONITOR_STATUS_RING;
  730. htt_ring_type = HTT_SW_TO_HW_RING;
  731. break;
  732. case RXDMA_MONITOR_DST:
  733. htt_ring_id = HTT_RXDMA_MONITOR_DEST_RING;
  734. htt_ring_type = HTT_HW_TO_SW_RING;
  735. break;
  736. case RXDMA_MONITOR_DESC:
  737. htt_ring_id = HTT_RXDMA_MONITOR_DESC_RING;
  738. htt_ring_type = HTT_SW_TO_HW_RING;
  739. break;
  740. case RXDMA_DST:
  741. htt_ring_id = HTT_RXDMA_NON_MONITOR_DEST_RING;
  742. htt_ring_type = HTT_HW_TO_SW_RING;
  743. break;
  744. default:
  745. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  746. "%s: Ring currently not supported", __func__);
  747. goto fail1;
  748. }
  749. /*
  750. * Set the length of the message.
  751. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  752. * separately during the below call to qdf_nbuf_push_head.
  753. * The contribution from the HTC header is added separately inside HTC.
  754. */
  755. if (qdf_nbuf_put_tail(htt_msg, HTT_SRING_SETUP_SZ) == NULL) {
  756. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  757. "%s: Failed to expand head for SRING_SETUP msg",
  758. __func__);
  759. return QDF_STATUS_E_FAILURE;
  760. }
  761. msg_word = (uint32_t *)qdf_nbuf_data(htt_msg);
  762. /* rewind beyond alignment pad to get to the HTC header reserved area */
  763. qdf_nbuf_push_head(htt_msg, HTC_HDR_ALIGNMENT_PADDING);
  764. /* word 0 */
  765. *msg_word = 0;
  766. htt_logger_bufp = (uint8_t *)msg_word;
  767. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_SRING_SETUP);
  768. if ((htt_ring_type == HTT_SW_TO_HW_RING) ||
  769. (htt_ring_type == HTT_HW_TO_SW_RING))
  770. HTT_SRING_SETUP_PDEV_ID_SET(*msg_word,
  771. DP_SW2HW_MACID(mac_id));
  772. else
  773. HTT_SRING_SETUP_PDEV_ID_SET(*msg_word, mac_id);
  774. dp_info("%s: mac_id %d", __func__, mac_id);
  775. HTT_SRING_SETUP_RING_TYPE_SET(*msg_word, htt_ring_type);
  776. /* TODO: Discuss with FW on changing this to unique ID and using
  777. * htt_ring_type to send the type of ring
  778. */
  779. HTT_SRING_SETUP_RING_ID_SET(*msg_word, htt_ring_id);
  780. /* word 1 */
  781. msg_word++;
  782. *msg_word = 0;
  783. HTT_SRING_SETUP_RING_BASE_ADDR_LO_SET(*msg_word,
  784. srng_params.ring_base_paddr & 0xffffffff);
  785. /* word 2 */
  786. msg_word++;
  787. *msg_word = 0;
  788. HTT_SRING_SETUP_RING_BASE_ADDR_HI_SET(*msg_word,
  789. (uint64_t)srng_params.ring_base_paddr >> 32);
  790. /* word 3 */
  791. msg_word++;
  792. *msg_word = 0;
  793. HTT_SRING_SETUP_ENTRY_SIZE_SET(*msg_word, ring_entry_size);
  794. HTT_SRING_SETUP_RING_SIZE_SET(*msg_word,
  795. (ring_entry_size * srng_params.num_entries));
  796. dp_info("%s: entry_size %d", __func__, ring_entry_size);
  797. dp_info("%s: num_entries %d", __func__, srng_params.num_entries);
  798. dp_info("%s: ring_size %d", __func__,
  799. (ring_entry_size * srng_params.num_entries));
  800. if (htt_ring_type == HTT_SW_TO_HW_RING)
  801. HTT_SRING_SETUP_RING_MISC_CFG_FLAG_LOOPCOUNT_DISABLE_SET(
  802. *msg_word, 1);
  803. HTT_SRING_SETUP_RING_MISC_CFG_FLAG_MSI_SWAP_SET(*msg_word,
  804. !!(srng_params.flags & HAL_SRNG_MSI_SWAP));
  805. HTT_SRING_SETUP_RING_MISC_CFG_FLAG_TLV_SWAP_SET(*msg_word,
  806. !!(srng_params.flags & HAL_SRNG_DATA_TLV_SWAP));
  807. HTT_SRING_SETUP_RING_MISC_CFG_FLAG_HOST_FW_SWAP_SET(*msg_word,
  808. !!(srng_params.flags & HAL_SRNG_RING_PTR_SWAP));
  809. /* word 4 */
  810. msg_word++;
  811. *msg_word = 0;
  812. HTT_SRING_SETUP_HEAD_OFFSET32_REMOTE_BASE_ADDR_LO_SET(*msg_word,
  813. hp_addr & 0xffffffff);
  814. /* word 5 */
  815. msg_word++;
  816. *msg_word = 0;
  817. HTT_SRING_SETUP_HEAD_OFFSET32_REMOTE_BASE_ADDR_HI_SET(*msg_word,
  818. (uint64_t)hp_addr >> 32);
  819. /* word 6 */
  820. msg_word++;
  821. *msg_word = 0;
  822. HTT_SRING_SETUP_TAIL_OFFSET32_REMOTE_BASE_ADDR_LO_SET(*msg_word,
  823. tp_addr & 0xffffffff);
  824. /* word 7 */
  825. msg_word++;
  826. *msg_word = 0;
  827. HTT_SRING_SETUP_TAIL_OFFSET32_REMOTE_BASE_ADDR_HI_SET(*msg_word,
  828. (uint64_t)tp_addr >> 32);
  829. /* word 8 */
  830. msg_word++;
  831. *msg_word = 0;
  832. HTT_SRING_SETUP_RING_MSI_ADDR_LO_SET(*msg_word,
  833. srng_params.msi_addr & 0xffffffff);
  834. /* word 9 */
  835. msg_word++;
  836. *msg_word = 0;
  837. HTT_SRING_SETUP_RING_MSI_ADDR_HI_SET(*msg_word,
  838. (uint64_t)(srng_params.msi_addr) >> 32);
  839. /* word 10 */
  840. msg_word++;
  841. *msg_word = 0;
  842. HTT_SRING_SETUP_RING_MSI_DATA_SET(*msg_word,
  843. srng_params.msi_data);
  844. /* word 11 */
  845. msg_word++;
  846. *msg_word = 0;
  847. HTT_SRING_SETUP_INTR_BATCH_COUNTER_TH_SET(*msg_word,
  848. srng_params.intr_batch_cntr_thres_entries *
  849. ring_entry_size);
  850. HTT_SRING_SETUP_INTR_TIMER_TH_SET(*msg_word,
  851. srng_params.intr_timer_thres_us >> 3);
  852. /* word 12 */
  853. msg_word++;
  854. *msg_word = 0;
  855. if (srng_params.flags & HAL_SRNG_LOW_THRES_INTR_ENABLE) {
  856. /* TODO: Setting low threshold to 1/8th of ring size - see
  857. * if this needs to be configurable
  858. */
  859. HTT_SRING_SETUP_INTR_LOW_TH_SET(*msg_word,
  860. srng_params.low_threshold);
  861. }
  862. /* "response_required" field should be set if a HTT response message is
  863. * required after setting up the ring.
  864. */
  865. pkt = htt_htc_pkt_alloc(soc);
  866. if (!pkt)
  867. goto fail1;
  868. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  869. SET_HTC_PACKET_INFO_TX(
  870. &pkt->htc_pkt,
  871. dp_htt_h2t_send_complete_free_netbuf,
  872. qdf_nbuf_data(htt_msg),
  873. qdf_nbuf_len(htt_msg),
  874. soc->htc_endpoint,
  875. HTC_TX_PACKET_TAG_RUNTIME_PUT); /* tag for no FW response msg */
  876. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, htt_msg);
  877. DP_HTT_SEND_HTC_PKT(soc, pkt, HTT_H2T_MSG_TYPE_SRING_SETUP,
  878. htt_logger_bufp);
  879. return QDF_STATUS_SUCCESS;
  880. fail1:
  881. qdf_nbuf_free(htt_msg);
  882. fail0:
  883. return QDF_STATUS_E_FAILURE;
  884. }
  885. /*
  886. * htt_h2t_rx_ring_cfg() - Send SRNG packet and TLV filter
  887. * config message to target
  888. * @htt_soc: HTT SOC handle
  889. * @pdev_id: PDEV Id
  890. * @hal_srng: Opaque HAL SRNG pointer
  891. * @hal_ring_type: SRNG ring type
  892. * @ring_buf_size: SRNG buffer size
  893. * @htt_tlv_filter: Rx SRNG TLV and filter setting
  894. * Return: 0 on success; error code on failure
  895. */
  896. int htt_h2t_rx_ring_cfg(struct htt_soc *htt_soc, int pdev_id,
  897. hal_ring_handle_t hal_ring_hdl,
  898. int hal_ring_type, int ring_buf_size,
  899. struct htt_rx_ring_tlv_filter *htt_tlv_filter)
  900. {
  901. struct htt_soc *soc = (struct htt_soc *)htt_soc;
  902. struct dp_htt_htc_pkt *pkt;
  903. qdf_nbuf_t htt_msg;
  904. uint32_t *msg_word;
  905. struct hal_srng_params srng_params;
  906. uint32_t htt_ring_type, htt_ring_id;
  907. uint32_t tlv_filter;
  908. uint8_t *htt_logger_bufp;
  909. struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx = soc->dp_soc->wlan_cfg_ctx;
  910. uint32_t mon_drop_th = wlan_cfg_get_mon_drop_thresh(wlan_cfg_ctx);
  911. htt_msg = qdf_nbuf_alloc(soc->osdev,
  912. HTT_MSG_BUF_SIZE(HTT_RX_RING_SELECTION_CFG_SZ),
  913. /* reserve room for the HTC header */
  914. HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING, 4, TRUE);
  915. if (!htt_msg)
  916. goto fail0;
  917. hal_get_srng_params(soc->hal_soc, hal_ring_hdl, &srng_params);
  918. switch (hal_ring_type) {
  919. case RXDMA_BUF:
  920. htt_ring_id = HTT_RXDMA_HOST_BUF_RING;
  921. htt_ring_type = HTT_SW_TO_HW_RING;
  922. break;
  923. case RXDMA_MONITOR_BUF:
  924. htt_ring_id = HTT_RXDMA_MONITOR_BUF_RING;
  925. htt_ring_type = HTT_SW_TO_HW_RING;
  926. break;
  927. case RXDMA_MONITOR_STATUS:
  928. htt_ring_id = HTT_RXDMA_MONITOR_STATUS_RING;
  929. htt_ring_type = HTT_SW_TO_HW_RING;
  930. break;
  931. case RXDMA_MONITOR_DST:
  932. htt_ring_id = HTT_RXDMA_MONITOR_DEST_RING;
  933. htt_ring_type = HTT_HW_TO_SW_RING;
  934. break;
  935. case RXDMA_MONITOR_DESC:
  936. htt_ring_id = HTT_RXDMA_MONITOR_DESC_RING;
  937. htt_ring_type = HTT_SW_TO_HW_RING;
  938. break;
  939. case RXDMA_DST:
  940. htt_ring_id = HTT_RXDMA_NON_MONITOR_DEST_RING;
  941. htt_ring_type = HTT_HW_TO_SW_RING;
  942. break;
  943. default:
  944. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  945. "%s: Ring currently not supported", __func__);
  946. goto fail1;
  947. }
  948. /*
  949. * Set the length of the message.
  950. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  951. * separately during the below call to qdf_nbuf_push_head.
  952. * The contribution from the HTC header is added separately inside HTC.
  953. */
  954. if (qdf_nbuf_put_tail(htt_msg, HTT_RX_RING_SELECTION_CFG_SZ) == NULL) {
  955. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  956. "%s: Failed to expand head for RX Ring Cfg msg",
  957. __func__);
  958. goto fail1; /* failure */
  959. }
  960. msg_word = (uint32_t *)qdf_nbuf_data(htt_msg);
  961. /* rewind beyond alignment pad to get to the HTC header reserved area */
  962. qdf_nbuf_push_head(htt_msg, HTC_HDR_ALIGNMENT_PADDING);
  963. /* word 0 */
  964. htt_logger_bufp = (uint8_t *)msg_word;
  965. *msg_word = 0;
  966. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_RX_RING_SELECTION_CFG);
  967. /*
  968. * pdev_id is indexed from 0 whereas mac_id is indexed from 1
  969. * SW_TO_SW and SW_TO_HW rings are unaffected by this
  970. */
  971. if (htt_ring_type == HTT_SW_TO_SW_RING ||
  972. htt_ring_type == HTT_SW_TO_HW_RING)
  973. HTT_RX_RING_SELECTION_CFG_PDEV_ID_SET(*msg_word,
  974. DP_SW2HW_MACID(pdev_id));
  975. /* TODO: Discuss with FW on changing this to unique ID and using
  976. * htt_ring_type to send the type of ring
  977. */
  978. HTT_RX_RING_SELECTION_CFG_RING_ID_SET(*msg_word, htt_ring_id);
  979. HTT_RX_RING_SELECTION_CFG_STATUS_TLV_SET(*msg_word,
  980. !!(srng_params.flags & HAL_SRNG_MSI_SWAP));
  981. HTT_RX_RING_SELECTION_CFG_PKT_TLV_SET(*msg_word,
  982. !!(srng_params.flags & HAL_SRNG_DATA_TLV_SWAP));
  983. HTT_RX_RING_SELECTION_CFG_RX_OFFSETS_VALID_SET(*msg_word,
  984. htt_tlv_filter->offset_valid);
  985. if (mon_drop_th > 0)
  986. HTT_RX_RING_SELECTION_CFG_DROP_THRESHOLD_VALID_SET(*msg_word,
  987. 1);
  988. else
  989. HTT_RX_RING_SELECTION_CFG_DROP_THRESHOLD_VALID_SET(*msg_word,
  990. 0);
  991. /* word 1 */
  992. msg_word++;
  993. *msg_word = 0;
  994. HTT_RX_RING_SELECTION_CFG_RING_BUFFER_SIZE_SET(*msg_word,
  995. ring_buf_size);
  996. /* word 2 */
  997. msg_word++;
  998. *msg_word = 0;
  999. if (htt_tlv_filter->enable_fp) {
  1000. /* TYPE: MGMT */
  1001. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1002. FP, MGMT, 0000,
  1003. (htt_tlv_filter->fp_mgmt_filter &
  1004. FILTER_MGMT_ASSOC_REQ) ? 1 : 0);
  1005. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1006. FP, MGMT, 0001,
  1007. (htt_tlv_filter->fp_mgmt_filter &
  1008. FILTER_MGMT_ASSOC_RES) ? 1 : 0);
  1009. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1010. FP, MGMT, 0010,
  1011. (htt_tlv_filter->fp_mgmt_filter &
  1012. FILTER_MGMT_REASSOC_REQ) ? 1 : 0);
  1013. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1014. FP, MGMT, 0011,
  1015. (htt_tlv_filter->fp_mgmt_filter &
  1016. FILTER_MGMT_REASSOC_RES) ? 1 : 0);
  1017. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1018. FP, MGMT, 0100,
  1019. (htt_tlv_filter->fp_mgmt_filter &
  1020. FILTER_MGMT_PROBE_REQ) ? 1 : 0);
  1021. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1022. FP, MGMT, 0101,
  1023. (htt_tlv_filter->fp_mgmt_filter &
  1024. FILTER_MGMT_PROBE_RES) ? 1 : 0);
  1025. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1026. FP, MGMT, 0110,
  1027. (htt_tlv_filter->fp_mgmt_filter &
  1028. FILTER_MGMT_TIM_ADVT) ? 1 : 0);
  1029. /* reserved */
  1030. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0, FP,
  1031. MGMT, 0111,
  1032. (htt_tlv_filter->fp_mgmt_filter &
  1033. FILTER_MGMT_RESERVED_7) ? 1 : 0);
  1034. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1035. FP, MGMT, 1000,
  1036. (htt_tlv_filter->fp_mgmt_filter &
  1037. FILTER_MGMT_BEACON) ? 1 : 0);
  1038. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1039. FP, MGMT, 1001,
  1040. (htt_tlv_filter->fp_mgmt_filter &
  1041. FILTER_MGMT_ATIM) ? 1 : 0);
  1042. }
  1043. if (htt_tlv_filter->enable_md) {
  1044. /* TYPE: MGMT */
  1045. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1046. MD, MGMT, 0000,
  1047. (htt_tlv_filter->md_mgmt_filter &
  1048. FILTER_MGMT_ASSOC_REQ) ? 1 : 0);
  1049. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1050. MD, MGMT, 0001,
  1051. (htt_tlv_filter->md_mgmt_filter &
  1052. FILTER_MGMT_ASSOC_RES) ? 1 : 0);
  1053. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1054. MD, MGMT, 0010,
  1055. (htt_tlv_filter->md_mgmt_filter &
  1056. FILTER_MGMT_REASSOC_REQ) ? 1 : 0);
  1057. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1058. MD, MGMT, 0011,
  1059. (htt_tlv_filter->md_mgmt_filter &
  1060. FILTER_MGMT_REASSOC_RES) ? 1 : 0);
  1061. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1062. MD, MGMT, 0100,
  1063. (htt_tlv_filter->md_mgmt_filter &
  1064. FILTER_MGMT_PROBE_REQ) ? 1 : 0);
  1065. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1066. MD, MGMT, 0101,
  1067. (htt_tlv_filter->md_mgmt_filter &
  1068. FILTER_MGMT_PROBE_RES) ? 1 : 0);
  1069. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1070. MD, MGMT, 0110,
  1071. (htt_tlv_filter->md_mgmt_filter &
  1072. FILTER_MGMT_TIM_ADVT) ? 1 : 0);
  1073. /* reserved */
  1074. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0, MD,
  1075. MGMT, 0111,
  1076. (htt_tlv_filter->md_mgmt_filter &
  1077. FILTER_MGMT_RESERVED_7) ? 1 : 0);
  1078. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1079. MD, MGMT, 1000,
  1080. (htt_tlv_filter->md_mgmt_filter &
  1081. FILTER_MGMT_BEACON) ? 1 : 0);
  1082. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1083. MD, MGMT, 1001,
  1084. (htt_tlv_filter->md_mgmt_filter &
  1085. FILTER_MGMT_ATIM) ? 1 : 0);
  1086. }
  1087. if (htt_tlv_filter->enable_mo) {
  1088. /* TYPE: MGMT */
  1089. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1090. MO, MGMT, 0000,
  1091. (htt_tlv_filter->mo_mgmt_filter &
  1092. FILTER_MGMT_ASSOC_REQ) ? 1 : 0);
  1093. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1094. MO, MGMT, 0001,
  1095. (htt_tlv_filter->mo_mgmt_filter &
  1096. FILTER_MGMT_ASSOC_RES) ? 1 : 0);
  1097. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1098. MO, MGMT, 0010,
  1099. (htt_tlv_filter->mo_mgmt_filter &
  1100. FILTER_MGMT_REASSOC_REQ) ? 1 : 0);
  1101. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1102. MO, MGMT, 0011,
  1103. (htt_tlv_filter->mo_mgmt_filter &
  1104. FILTER_MGMT_REASSOC_RES) ? 1 : 0);
  1105. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1106. MO, MGMT, 0100,
  1107. (htt_tlv_filter->mo_mgmt_filter &
  1108. FILTER_MGMT_PROBE_REQ) ? 1 : 0);
  1109. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1110. MO, MGMT, 0101,
  1111. (htt_tlv_filter->mo_mgmt_filter &
  1112. FILTER_MGMT_PROBE_RES) ? 1 : 0);
  1113. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1114. MO, MGMT, 0110,
  1115. (htt_tlv_filter->mo_mgmt_filter &
  1116. FILTER_MGMT_TIM_ADVT) ? 1 : 0);
  1117. /* reserved */
  1118. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0, MO,
  1119. MGMT, 0111,
  1120. (htt_tlv_filter->mo_mgmt_filter &
  1121. FILTER_MGMT_RESERVED_7) ? 1 : 0);
  1122. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1123. MO, MGMT, 1000,
  1124. (htt_tlv_filter->mo_mgmt_filter &
  1125. FILTER_MGMT_BEACON) ? 1 : 0);
  1126. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG0,
  1127. MO, MGMT, 1001,
  1128. (htt_tlv_filter->mo_mgmt_filter &
  1129. FILTER_MGMT_ATIM) ? 1 : 0);
  1130. }
  1131. /* word 3 */
  1132. msg_word++;
  1133. *msg_word = 0;
  1134. if (htt_tlv_filter->enable_fp) {
  1135. /* TYPE: MGMT */
  1136. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1137. FP, MGMT, 1010,
  1138. (htt_tlv_filter->fp_mgmt_filter &
  1139. FILTER_MGMT_DISASSOC) ? 1 : 0);
  1140. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1141. FP, MGMT, 1011,
  1142. (htt_tlv_filter->fp_mgmt_filter &
  1143. FILTER_MGMT_AUTH) ? 1 : 0);
  1144. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1145. FP, MGMT, 1100,
  1146. (htt_tlv_filter->fp_mgmt_filter &
  1147. FILTER_MGMT_DEAUTH) ? 1 : 0);
  1148. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1149. FP, MGMT, 1101,
  1150. (htt_tlv_filter->fp_mgmt_filter &
  1151. FILTER_MGMT_ACTION) ? 1 : 0);
  1152. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1153. FP, MGMT, 1110,
  1154. (htt_tlv_filter->fp_mgmt_filter &
  1155. FILTER_MGMT_ACT_NO_ACK) ? 1 : 0);
  1156. /* reserved*/
  1157. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1, FP,
  1158. MGMT, 1111,
  1159. (htt_tlv_filter->fp_mgmt_filter &
  1160. FILTER_MGMT_RESERVED_15) ? 1 : 0);
  1161. }
  1162. if (htt_tlv_filter->enable_md) {
  1163. /* TYPE: MGMT */
  1164. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1165. MD, MGMT, 1010,
  1166. (htt_tlv_filter->md_mgmt_filter &
  1167. FILTER_MGMT_DISASSOC) ? 1 : 0);
  1168. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1169. MD, MGMT, 1011,
  1170. (htt_tlv_filter->md_mgmt_filter &
  1171. FILTER_MGMT_AUTH) ? 1 : 0);
  1172. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1173. MD, MGMT, 1100,
  1174. (htt_tlv_filter->md_mgmt_filter &
  1175. FILTER_MGMT_DEAUTH) ? 1 : 0);
  1176. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1177. MD, MGMT, 1101,
  1178. (htt_tlv_filter->md_mgmt_filter &
  1179. FILTER_MGMT_ACTION) ? 1 : 0);
  1180. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1181. MD, MGMT, 1110,
  1182. (htt_tlv_filter->md_mgmt_filter &
  1183. FILTER_MGMT_ACT_NO_ACK) ? 1 : 0);
  1184. }
  1185. if (htt_tlv_filter->enable_mo) {
  1186. /* TYPE: MGMT */
  1187. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1188. MO, MGMT, 1010,
  1189. (htt_tlv_filter->mo_mgmt_filter &
  1190. FILTER_MGMT_DISASSOC) ? 1 : 0);
  1191. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1192. MO, MGMT, 1011,
  1193. (htt_tlv_filter->mo_mgmt_filter &
  1194. FILTER_MGMT_AUTH) ? 1 : 0);
  1195. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1196. MO, MGMT, 1100,
  1197. (htt_tlv_filter->mo_mgmt_filter &
  1198. FILTER_MGMT_DEAUTH) ? 1 : 0);
  1199. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1200. MO, MGMT, 1101,
  1201. (htt_tlv_filter->mo_mgmt_filter &
  1202. FILTER_MGMT_ACTION) ? 1 : 0);
  1203. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1,
  1204. MO, MGMT, 1110,
  1205. (htt_tlv_filter->mo_mgmt_filter &
  1206. FILTER_MGMT_ACT_NO_ACK) ? 1 : 0);
  1207. /* reserved*/
  1208. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG1, MO,
  1209. MGMT, 1111,
  1210. (htt_tlv_filter->mo_mgmt_filter &
  1211. FILTER_MGMT_RESERVED_15) ? 1 : 0);
  1212. }
  1213. /* word 4 */
  1214. msg_word++;
  1215. *msg_word = 0;
  1216. if (htt_tlv_filter->enable_fp) {
  1217. /* TYPE: CTRL */
  1218. /* reserved */
  1219. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1220. CTRL, 0000,
  1221. (htt_tlv_filter->fp_ctrl_filter &
  1222. FILTER_CTRL_RESERVED_1) ? 1 : 0);
  1223. /* reserved */
  1224. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1225. CTRL, 0001,
  1226. (htt_tlv_filter->fp_ctrl_filter &
  1227. FILTER_CTRL_RESERVED_2) ? 1 : 0);
  1228. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1229. CTRL, 0010,
  1230. (htt_tlv_filter->fp_ctrl_filter &
  1231. FILTER_CTRL_TRIGGER) ? 1 : 0);
  1232. /* reserved */
  1233. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1234. CTRL, 0011,
  1235. (htt_tlv_filter->fp_ctrl_filter &
  1236. FILTER_CTRL_RESERVED_4) ? 1 : 0);
  1237. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1238. CTRL, 0100,
  1239. (htt_tlv_filter->fp_ctrl_filter &
  1240. FILTER_CTRL_BF_REP_POLL) ? 1 : 0);
  1241. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1242. CTRL, 0101,
  1243. (htt_tlv_filter->fp_ctrl_filter &
  1244. FILTER_CTRL_VHT_NDP) ? 1 : 0);
  1245. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1246. CTRL, 0110,
  1247. (htt_tlv_filter->fp_ctrl_filter &
  1248. FILTER_CTRL_FRAME_EXT) ? 1 : 0);
  1249. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1250. CTRL, 0111,
  1251. (htt_tlv_filter->fp_ctrl_filter &
  1252. FILTER_CTRL_CTRLWRAP) ? 1 : 0);
  1253. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1254. CTRL, 1000,
  1255. (htt_tlv_filter->fp_ctrl_filter &
  1256. FILTER_CTRL_BA_REQ) ? 1 : 0);
  1257. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, FP,
  1258. CTRL, 1001,
  1259. (htt_tlv_filter->fp_ctrl_filter &
  1260. FILTER_CTRL_BA) ? 1 : 0);
  1261. }
  1262. if (htt_tlv_filter->enable_md) {
  1263. /* TYPE: CTRL */
  1264. /* reserved */
  1265. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1266. CTRL, 0000,
  1267. (htt_tlv_filter->md_ctrl_filter &
  1268. FILTER_CTRL_RESERVED_1) ? 1 : 0);
  1269. /* reserved */
  1270. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1271. CTRL, 0001,
  1272. (htt_tlv_filter->md_ctrl_filter &
  1273. FILTER_CTRL_RESERVED_2) ? 1 : 0);
  1274. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1275. CTRL, 0010,
  1276. (htt_tlv_filter->md_ctrl_filter &
  1277. FILTER_CTRL_TRIGGER) ? 1 : 0);
  1278. /* reserved */
  1279. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1280. CTRL, 0011,
  1281. (htt_tlv_filter->md_ctrl_filter &
  1282. FILTER_CTRL_RESERVED_4) ? 1 : 0);
  1283. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1284. CTRL, 0100,
  1285. (htt_tlv_filter->md_ctrl_filter &
  1286. FILTER_CTRL_BF_REP_POLL) ? 1 : 0);
  1287. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1288. CTRL, 0101,
  1289. (htt_tlv_filter->md_ctrl_filter &
  1290. FILTER_CTRL_VHT_NDP) ? 1 : 0);
  1291. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1292. CTRL, 0110,
  1293. (htt_tlv_filter->md_ctrl_filter &
  1294. FILTER_CTRL_FRAME_EXT) ? 1 : 0);
  1295. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1296. CTRL, 0111,
  1297. (htt_tlv_filter->md_ctrl_filter &
  1298. FILTER_CTRL_CTRLWRAP) ? 1 : 0);
  1299. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1300. CTRL, 1000,
  1301. (htt_tlv_filter->md_ctrl_filter &
  1302. FILTER_CTRL_BA_REQ) ? 1 : 0);
  1303. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MD,
  1304. CTRL, 1001,
  1305. (htt_tlv_filter->md_ctrl_filter &
  1306. FILTER_CTRL_BA) ? 1 : 0);
  1307. }
  1308. if (htt_tlv_filter->enable_mo) {
  1309. /* TYPE: CTRL */
  1310. /* reserved */
  1311. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1312. CTRL, 0000,
  1313. (htt_tlv_filter->mo_ctrl_filter &
  1314. FILTER_CTRL_RESERVED_1) ? 1 : 0);
  1315. /* reserved */
  1316. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1317. CTRL, 0001,
  1318. (htt_tlv_filter->mo_ctrl_filter &
  1319. FILTER_CTRL_RESERVED_2) ? 1 : 0);
  1320. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1321. CTRL, 0010,
  1322. (htt_tlv_filter->mo_ctrl_filter &
  1323. FILTER_CTRL_TRIGGER) ? 1 : 0);
  1324. /* reserved */
  1325. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1326. CTRL, 0011,
  1327. (htt_tlv_filter->mo_ctrl_filter &
  1328. FILTER_CTRL_RESERVED_4) ? 1 : 0);
  1329. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1330. CTRL, 0100,
  1331. (htt_tlv_filter->mo_ctrl_filter &
  1332. FILTER_CTRL_BF_REP_POLL) ? 1 : 0);
  1333. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1334. CTRL, 0101,
  1335. (htt_tlv_filter->mo_ctrl_filter &
  1336. FILTER_CTRL_VHT_NDP) ? 1 : 0);
  1337. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1338. CTRL, 0110,
  1339. (htt_tlv_filter->mo_ctrl_filter &
  1340. FILTER_CTRL_FRAME_EXT) ? 1 : 0);
  1341. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1342. CTRL, 0111,
  1343. (htt_tlv_filter->mo_ctrl_filter &
  1344. FILTER_CTRL_CTRLWRAP) ? 1 : 0);
  1345. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1346. CTRL, 1000,
  1347. (htt_tlv_filter->mo_ctrl_filter &
  1348. FILTER_CTRL_BA_REQ) ? 1 : 0);
  1349. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG2, MO,
  1350. CTRL, 1001,
  1351. (htt_tlv_filter->mo_ctrl_filter &
  1352. FILTER_CTRL_BA) ? 1 : 0);
  1353. }
  1354. /* word 5 */
  1355. msg_word++;
  1356. *msg_word = 0;
  1357. if (htt_tlv_filter->enable_fp) {
  1358. /* TYPE: CTRL */
  1359. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, FP,
  1360. CTRL, 1010,
  1361. (htt_tlv_filter->fp_ctrl_filter &
  1362. FILTER_CTRL_PSPOLL) ? 1 : 0);
  1363. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, FP,
  1364. CTRL, 1011,
  1365. (htt_tlv_filter->fp_ctrl_filter &
  1366. FILTER_CTRL_RTS) ? 1 : 0);
  1367. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, FP,
  1368. CTRL, 1100,
  1369. (htt_tlv_filter->fp_ctrl_filter &
  1370. FILTER_CTRL_CTS) ? 1 : 0);
  1371. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, FP,
  1372. CTRL, 1101,
  1373. (htt_tlv_filter->fp_ctrl_filter &
  1374. FILTER_CTRL_ACK) ? 1 : 0);
  1375. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, FP,
  1376. CTRL, 1110,
  1377. (htt_tlv_filter->fp_ctrl_filter &
  1378. FILTER_CTRL_CFEND) ? 1 : 0);
  1379. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, FP,
  1380. CTRL, 1111,
  1381. (htt_tlv_filter->fp_ctrl_filter &
  1382. FILTER_CTRL_CFEND_CFACK) ? 1 : 0);
  1383. /* TYPE: DATA */
  1384. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, FP,
  1385. DATA, MCAST,
  1386. (htt_tlv_filter->fp_data_filter &
  1387. FILTER_DATA_MCAST) ? 1 : 0);
  1388. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, FP,
  1389. DATA, UCAST,
  1390. (htt_tlv_filter->fp_data_filter &
  1391. FILTER_DATA_UCAST) ? 1 : 0);
  1392. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, FP,
  1393. DATA, NULL,
  1394. (htt_tlv_filter->fp_data_filter &
  1395. FILTER_DATA_NULL) ? 1 : 0);
  1396. }
  1397. if (htt_tlv_filter->enable_md) {
  1398. /* TYPE: CTRL */
  1399. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MD,
  1400. CTRL, 1010,
  1401. (htt_tlv_filter->md_ctrl_filter &
  1402. FILTER_CTRL_PSPOLL) ? 1 : 0);
  1403. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MD,
  1404. CTRL, 1011,
  1405. (htt_tlv_filter->md_ctrl_filter &
  1406. FILTER_CTRL_RTS) ? 1 : 0);
  1407. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MD,
  1408. CTRL, 1100,
  1409. (htt_tlv_filter->md_ctrl_filter &
  1410. FILTER_CTRL_CTS) ? 1 : 0);
  1411. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MD,
  1412. CTRL, 1101,
  1413. (htt_tlv_filter->md_ctrl_filter &
  1414. FILTER_CTRL_ACK) ? 1 : 0);
  1415. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MD,
  1416. CTRL, 1110,
  1417. (htt_tlv_filter->md_ctrl_filter &
  1418. FILTER_CTRL_CFEND) ? 1 : 0);
  1419. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MD,
  1420. CTRL, 1111,
  1421. (htt_tlv_filter->md_ctrl_filter &
  1422. FILTER_CTRL_CFEND_CFACK) ? 1 : 0);
  1423. /* TYPE: DATA */
  1424. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MD,
  1425. DATA, MCAST,
  1426. (htt_tlv_filter->md_data_filter &
  1427. FILTER_DATA_MCAST) ? 1 : 0);
  1428. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MD,
  1429. DATA, UCAST,
  1430. (htt_tlv_filter->md_data_filter &
  1431. FILTER_DATA_UCAST) ? 1 : 0);
  1432. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MD,
  1433. DATA, NULL,
  1434. (htt_tlv_filter->md_data_filter &
  1435. FILTER_DATA_NULL) ? 1 : 0);
  1436. }
  1437. if (htt_tlv_filter->enable_mo) {
  1438. /* TYPE: CTRL */
  1439. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MO,
  1440. CTRL, 1010,
  1441. (htt_tlv_filter->mo_ctrl_filter &
  1442. FILTER_CTRL_PSPOLL) ? 1 : 0);
  1443. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MO,
  1444. CTRL, 1011,
  1445. (htt_tlv_filter->mo_ctrl_filter &
  1446. FILTER_CTRL_RTS) ? 1 : 0);
  1447. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MO,
  1448. CTRL, 1100,
  1449. (htt_tlv_filter->mo_ctrl_filter &
  1450. FILTER_CTRL_CTS) ? 1 : 0);
  1451. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MO,
  1452. CTRL, 1101,
  1453. (htt_tlv_filter->mo_ctrl_filter &
  1454. FILTER_CTRL_ACK) ? 1 : 0);
  1455. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MO,
  1456. CTRL, 1110,
  1457. (htt_tlv_filter->mo_ctrl_filter &
  1458. FILTER_CTRL_CFEND) ? 1 : 0);
  1459. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MO,
  1460. CTRL, 1111,
  1461. (htt_tlv_filter->mo_ctrl_filter &
  1462. FILTER_CTRL_CFEND_CFACK) ? 1 : 0);
  1463. /* TYPE: DATA */
  1464. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MO,
  1465. DATA, MCAST,
  1466. (htt_tlv_filter->mo_data_filter &
  1467. FILTER_DATA_MCAST) ? 1 : 0);
  1468. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MO,
  1469. DATA, UCAST,
  1470. (htt_tlv_filter->mo_data_filter &
  1471. FILTER_DATA_UCAST) ? 1 : 0);
  1472. htt_rx_ring_pkt_enable_subtype_set(*msg_word, FLAG3, MO,
  1473. DATA, NULL,
  1474. (htt_tlv_filter->mo_data_filter &
  1475. FILTER_DATA_NULL) ? 1 : 0);
  1476. }
  1477. /* word 6 */
  1478. msg_word++;
  1479. *msg_word = 0;
  1480. tlv_filter = 0;
  1481. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, MPDU_START,
  1482. htt_tlv_filter->mpdu_start);
  1483. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, MSDU_START,
  1484. htt_tlv_filter->msdu_start);
  1485. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, PACKET,
  1486. htt_tlv_filter->packet);
  1487. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, MSDU_END,
  1488. htt_tlv_filter->msdu_end);
  1489. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, MPDU_END,
  1490. htt_tlv_filter->mpdu_end);
  1491. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, PACKET_HEADER,
  1492. htt_tlv_filter->packet_header);
  1493. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, ATTENTION,
  1494. htt_tlv_filter->attention);
  1495. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, PPDU_START,
  1496. htt_tlv_filter->ppdu_start);
  1497. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, PPDU_END,
  1498. htt_tlv_filter->ppdu_end);
  1499. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, PPDU_END_USER_STATS,
  1500. htt_tlv_filter->ppdu_end_user_stats);
  1501. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter,
  1502. PPDU_END_USER_STATS_EXT,
  1503. htt_tlv_filter->ppdu_end_user_stats_ext);
  1504. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, PPDU_END_STATUS_DONE,
  1505. htt_tlv_filter->ppdu_end_status_done);
  1506. /* RESERVED bit maps to header_per_msdu in htt_tlv_filter*/
  1507. htt_rx_ring_tlv_filter_in_enable_set(tlv_filter, RESERVED,
  1508. htt_tlv_filter->header_per_msdu);
  1509. HTT_RX_RING_SELECTION_CFG_TLV_FILTER_IN_FLAG_SET(*msg_word, tlv_filter);
  1510. msg_word++;
  1511. *msg_word = 0;
  1512. if (htt_tlv_filter->offset_valid) {
  1513. HTT_RX_RING_SELECTION_CFG_RX_PACKET_OFFSET_SET(*msg_word,
  1514. htt_tlv_filter->rx_packet_offset);
  1515. HTT_RX_RING_SELECTION_CFG_RX_HEADER_OFFSET_SET(*msg_word,
  1516. htt_tlv_filter->rx_header_offset);
  1517. msg_word++;
  1518. *msg_word = 0;
  1519. HTT_RX_RING_SELECTION_CFG_RX_MPDU_END_OFFSET_SET(*msg_word,
  1520. htt_tlv_filter->rx_mpdu_end_offset);
  1521. HTT_RX_RING_SELECTION_CFG_RX_MPDU_START_OFFSET_SET(*msg_word,
  1522. htt_tlv_filter->rx_mpdu_start_offset);
  1523. msg_word++;
  1524. *msg_word = 0;
  1525. HTT_RX_RING_SELECTION_CFG_RX_MSDU_END_OFFSET_SET(*msg_word,
  1526. htt_tlv_filter->rx_msdu_end_offset);
  1527. HTT_RX_RING_SELECTION_CFG_RX_MSDU_START_OFFSET_SET(*msg_word,
  1528. htt_tlv_filter->rx_msdu_start_offset);
  1529. msg_word++;
  1530. *msg_word = 0;
  1531. HTT_RX_RING_SELECTION_CFG_RX_ATTENTION_OFFSET_SET(*msg_word,
  1532. htt_tlv_filter->rx_attn_offset);
  1533. msg_word++;
  1534. *msg_word = 0;
  1535. } else {
  1536. msg_word += 4;
  1537. *msg_word = 0;
  1538. }
  1539. if (mon_drop_th > 0)
  1540. HTT_RX_RING_SELECTION_CFG_RX_DROP_THRESHOLD_SET(*msg_word,
  1541. mon_drop_th);
  1542. /* "response_required" field should be set if a HTT response message is
  1543. * required after setting up the ring.
  1544. */
  1545. pkt = htt_htc_pkt_alloc(soc);
  1546. if (!pkt)
  1547. goto fail1;
  1548. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  1549. SET_HTC_PACKET_INFO_TX(
  1550. &pkt->htc_pkt,
  1551. dp_htt_h2t_send_complete_free_netbuf,
  1552. qdf_nbuf_data(htt_msg),
  1553. qdf_nbuf_len(htt_msg),
  1554. soc->htc_endpoint,
  1555. 1); /* tag - not relevant here */
  1556. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, htt_msg);
  1557. DP_HTT_SEND_HTC_PKT(soc, pkt, HTT_H2T_MSG_TYPE_RX_RING_SELECTION_CFG,
  1558. htt_logger_bufp);
  1559. return QDF_STATUS_SUCCESS;
  1560. fail1:
  1561. qdf_nbuf_free(htt_msg);
  1562. fail0:
  1563. return QDF_STATUS_E_FAILURE;
  1564. }
  1565. #if defined(HTT_STATS_ENABLE)
  1566. static inline QDF_STATUS dp_send_htt_stat_resp(struct htt_stats_context *htt_stats,
  1567. struct dp_soc *soc, qdf_nbuf_t htt_msg)
  1568. {
  1569. uint32_t pdev_id;
  1570. uint32_t *msg_word = NULL;
  1571. uint32_t msg_remain_len = 0;
  1572. msg_word = (uint32_t *) qdf_nbuf_data(htt_msg);
  1573. /*COOKIE MSB*/
  1574. pdev_id = *(msg_word + 2) & HTT_PID_BIT_MASK;
  1575. /* stats message length + 16 size of HTT header*/
  1576. msg_remain_len = qdf_min(htt_stats->msg_len + 16,
  1577. (uint32_t)DP_EXT_MSG_LENGTH);
  1578. dp_wdi_event_handler(WDI_EVENT_HTT_STATS, soc,
  1579. msg_word, msg_remain_len,
  1580. WDI_NO_VAL, pdev_id);
  1581. if (htt_stats->msg_len >= DP_EXT_MSG_LENGTH) {
  1582. htt_stats->msg_len -= DP_EXT_MSG_LENGTH;
  1583. }
  1584. /* Need to be freed here as WDI handler will
  1585. * make a copy of pkt to send data to application
  1586. */
  1587. qdf_nbuf_free(htt_msg);
  1588. return QDF_STATUS_SUCCESS;
  1589. }
  1590. #else
  1591. static inline QDF_STATUS
  1592. dp_send_htt_stat_resp(struct htt_stats_context *htt_stats,
  1593. struct dp_soc *soc, qdf_nbuf_t htt_msg)
  1594. {
  1595. return QDF_STATUS_E_NOSUPPORT;
  1596. }
  1597. #endif
  1598. /**
  1599. * dp_process_htt_stat_msg(): Process the list of buffers of HTT EXT stats
  1600. * @htt_stats: htt stats info
  1601. *
  1602. * The FW sends the HTT EXT STATS as a stream of T2H messages. Each T2H message
  1603. * contains sub messages which are identified by a TLV header.
  1604. * In this function we will process the stream of T2H messages and read all the
  1605. * TLV contained in the message.
  1606. *
  1607. * THe following cases have been taken care of
  1608. * Case 1: When the tlv_remain_length <= msg_remain_length of HTT MSG buffer
  1609. * In this case the buffer will contain multiple tlvs.
  1610. * Case 2: When the tlv_remain_length > msg_remain_length of HTT MSG buffer.
  1611. * Only one tlv will be contained in the HTT message and this tag
  1612. * will extend onto the next buffer.
  1613. * Case 3: When the buffer is the continuation of the previous message
  1614. * Case 4: tlv length is 0. which will indicate the end of message
  1615. *
  1616. * return: void
  1617. */
  1618. static inline void dp_process_htt_stat_msg(struct htt_stats_context *htt_stats,
  1619. struct dp_soc *soc)
  1620. {
  1621. htt_tlv_tag_t tlv_type = 0xff;
  1622. qdf_nbuf_t htt_msg = NULL;
  1623. uint32_t *msg_word;
  1624. uint8_t *tlv_buf_head = NULL;
  1625. uint8_t *tlv_buf_tail = NULL;
  1626. uint32_t msg_remain_len = 0;
  1627. uint32_t tlv_remain_len = 0;
  1628. uint32_t *tlv_start;
  1629. int cookie_val;
  1630. int cookie_msb;
  1631. int pdev_id;
  1632. bool copy_stats = false;
  1633. struct dp_pdev *pdev;
  1634. /* Process node in the HTT message queue */
  1635. while ((htt_msg = qdf_nbuf_queue_remove(&htt_stats->msg))
  1636. != NULL) {
  1637. msg_word = (uint32_t *) qdf_nbuf_data(htt_msg);
  1638. cookie_val = *(msg_word + 1);
  1639. htt_stats->msg_len = HTT_T2H_EXT_STATS_CONF_TLV_LENGTH_GET(
  1640. *(msg_word +
  1641. HTT_T2H_EXT_STATS_TLV_START_OFFSET));
  1642. if (cookie_val) {
  1643. if (dp_send_htt_stat_resp(htt_stats, soc, htt_msg)
  1644. == QDF_STATUS_SUCCESS) {
  1645. continue;
  1646. }
  1647. }
  1648. cookie_msb = *(msg_word + 2);
  1649. pdev_id = *(msg_word + 2) & HTT_PID_BIT_MASK;
  1650. pdev = soc->pdev_list[pdev_id];
  1651. if (cookie_msb >> 2) {
  1652. copy_stats = true;
  1653. }
  1654. /* read 5th word */
  1655. msg_word = msg_word + 4;
  1656. msg_remain_len = qdf_min(htt_stats->msg_len,
  1657. (uint32_t) DP_EXT_MSG_LENGTH);
  1658. /* Keep processing the node till node length is 0 */
  1659. while (msg_remain_len) {
  1660. /*
  1661. * if message is not a continuation of previous message
  1662. * read the tlv type and tlv length
  1663. */
  1664. if (!tlv_buf_head) {
  1665. tlv_type = HTT_STATS_TLV_TAG_GET(
  1666. *msg_word);
  1667. tlv_remain_len = HTT_STATS_TLV_LENGTH_GET(
  1668. *msg_word);
  1669. }
  1670. if (tlv_remain_len == 0) {
  1671. msg_remain_len = 0;
  1672. if (tlv_buf_head) {
  1673. qdf_mem_free(tlv_buf_head);
  1674. tlv_buf_head = NULL;
  1675. tlv_buf_tail = NULL;
  1676. }
  1677. goto error;
  1678. }
  1679. if (!tlv_buf_head)
  1680. tlv_remain_len += HTT_TLV_HDR_LEN;
  1681. if ((tlv_remain_len <= msg_remain_len)) {
  1682. /* Case 3 */
  1683. if (tlv_buf_head) {
  1684. qdf_mem_copy(tlv_buf_tail,
  1685. (uint8_t *)msg_word,
  1686. tlv_remain_len);
  1687. tlv_start = (uint32_t *)tlv_buf_head;
  1688. } else {
  1689. /* Case 1 */
  1690. tlv_start = msg_word;
  1691. }
  1692. if (copy_stats)
  1693. dp_htt_stats_copy_tag(pdev,
  1694. tlv_type,
  1695. tlv_start);
  1696. else
  1697. dp_htt_stats_print_tag(pdev,
  1698. tlv_type,
  1699. tlv_start);
  1700. if (tlv_type == HTT_STATS_PEER_DETAILS_TAG ||
  1701. tlv_type == HTT_STATS_PEER_STATS_CMN_TAG)
  1702. dp_peer_update_inactive_time(pdev,
  1703. tlv_type,
  1704. tlv_start);
  1705. msg_remain_len -= tlv_remain_len;
  1706. msg_word = (uint32_t *)
  1707. (((uint8_t *)msg_word) +
  1708. tlv_remain_len);
  1709. tlv_remain_len = 0;
  1710. if (tlv_buf_head) {
  1711. qdf_mem_free(tlv_buf_head);
  1712. tlv_buf_head = NULL;
  1713. tlv_buf_tail = NULL;
  1714. }
  1715. } else { /* tlv_remain_len > msg_remain_len */
  1716. /* Case 2 & 3 */
  1717. if (!tlv_buf_head) {
  1718. tlv_buf_head = qdf_mem_malloc(
  1719. tlv_remain_len);
  1720. if (!tlv_buf_head) {
  1721. QDF_TRACE(QDF_MODULE_ID_TXRX,
  1722. QDF_TRACE_LEVEL_ERROR,
  1723. "Alloc failed");
  1724. goto error;
  1725. }
  1726. tlv_buf_tail = tlv_buf_head;
  1727. }
  1728. qdf_mem_copy(tlv_buf_tail, (uint8_t *)msg_word,
  1729. msg_remain_len);
  1730. tlv_remain_len -= msg_remain_len;
  1731. tlv_buf_tail += msg_remain_len;
  1732. }
  1733. }
  1734. if (htt_stats->msg_len >= DP_EXT_MSG_LENGTH) {
  1735. htt_stats->msg_len -= DP_EXT_MSG_LENGTH;
  1736. }
  1737. qdf_nbuf_free(htt_msg);
  1738. }
  1739. return;
  1740. error:
  1741. qdf_nbuf_free(htt_msg);
  1742. while ((htt_msg = qdf_nbuf_queue_remove(&htt_stats->msg))
  1743. != NULL)
  1744. qdf_nbuf_free(htt_msg);
  1745. }
  1746. void htt_t2h_stats_handler(void *context)
  1747. {
  1748. struct dp_soc *soc = (struct dp_soc *)context;
  1749. struct htt_stats_context htt_stats;
  1750. uint32_t *msg_word;
  1751. qdf_nbuf_t htt_msg = NULL;
  1752. uint8_t done;
  1753. uint32_t rem_stats;
  1754. if (!soc || !qdf_atomic_read(&soc->cmn_init_done)) {
  1755. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  1756. "soc: 0x%pK, init_done: %d", soc,
  1757. qdf_atomic_read(&soc->cmn_init_done));
  1758. return;
  1759. }
  1760. qdf_mem_zero(&htt_stats, sizeof(htt_stats));
  1761. qdf_nbuf_queue_init(&htt_stats.msg);
  1762. /* pull one completed stats from soc->htt_stats_msg and process */
  1763. qdf_spin_lock_bh(&soc->htt_stats.lock);
  1764. if (!soc->htt_stats.num_stats) {
  1765. qdf_spin_unlock_bh(&soc->htt_stats.lock);
  1766. return;
  1767. }
  1768. while ((htt_msg = qdf_nbuf_queue_remove(&soc->htt_stats.msg)) != NULL) {
  1769. msg_word = (uint32_t *) qdf_nbuf_data(htt_msg);
  1770. msg_word = msg_word + HTT_T2H_EXT_STATS_TLV_START_OFFSET;
  1771. done = HTT_T2H_EXT_STATS_CONF_TLV_DONE_GET(*msg_word);
  1772. qdf_nbuf_queue_add(&htt_stats.msg, htt_msg);
  1773. /*
  1774. * Done bit signifies that this is the last T2H buffer in the
  1775. * stream of HTT EXT STATS message
  1776. */
  1777. if (done)
  1778. break;
  1779. }
  1780. rem_stats = --soc->htt_stats.num_stats;
  1781. qdf_spin_unlock_bh(&soc->htt_stats.lock);
  1782. /* If there are more stats to process, schedule stats work again.
  1783. * Scheduling prior to processing ht_stats to queue with early
  1784. * index
  1785. */
  1786. if (rem_stats)
  1787. qdf_sched_work(0, &soc->htt_stats.work);
  1788. dp_process_htt_stat_msg(&htt_stats, soc);
  1789. }
  1790. /*
  1791. * dp_get_ppdu_info_user_index: Find and allocate a per-user descriptor for a PPDU,
  1792. * if a new peer id arrives in a PPDU
  1793. * pdev: DP pdev handle
  1794. * @peer_id : peer unique identifier
  1795. * @ppdu_info: per ppdu tlv structure
  1796. *
  1797. * return:user index to be populated
  1798. */
  1799. #ifdef FEATURE_PERPKT_INFO
  1800. static uint8_t dp_get_ppdu_info_user_index(struct dp_pdev *pdev,
  1801. uint16_t peer_id,
  1802. struct ppdu_info *ppdu_info)
  1803. {
  1804. uint8_t user_index = 0;
  1805. struct cdp_tx_completion_ppdu *ppdu_desc;
  1806. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  1807. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  1808. while ((user_index + 1) <= ppdu_info->last_user) {
  1809. ppdu_user_desc = &ppdu_desc->user[user_index];
  1810. if (ppdu_user_desc->peer_id != peer_id) {
  1811. user_index++;
  1812. continue;
  1813. } else {
  1814. /* Max users possible is 8 so user array index should
  1815. * not exceed 7
  1816. */
  1817. qdf_assert_always(user_index <= CDP_MU_MAX_USER_INDEX);
  1818. return user_index;
  1819. }
  1820. }
  1821. ppdu_info->last_user++;
  1822. /* Max users possible is 8 so last user should not exceed 8 */
  1823. qdf_assert_always(ppdu_info->last_user <= CDP_MU_MAX_USERS);
  1824. return ppdu_info->last_user - 1;
  1825. }
  1826. /*
  1827. * dp_process_ppdu_stats_common_tlv: Process htt_ppdu_stats_common_tlv
  1828. * pdev: DP pdev handle
  1829. * @tag_buf: buffer containing the tlv htt_ppdu_stats_common_tlv
  1830. * @ppdu_info: per ppdu tlv structure
  1831. *
  1832. * return:void
  1833. */
  1834. static void dp_process_ppdu_stats_common_tlv(struct dp_pdev *pdev,
  1835. uint32_t *tag_buf, struct ppdu_info *ppdu_info)
  1836. {
  1837. uint16_t frame_type;
  1838. uint16_t frame_ctrl;
  1839. uint16_t freq;
  1840. struct dp_soc *soc = NULL;
  1841. struct cdp_tx_completion_ppdu *ppdu_desc = NULL;
  1842. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  1843. tag_buf += 2;
  1844. ppdu_info->sched_cmdid =
  1845. HTT_PPDU_STATS_COMMON_TLV_SCH_CMDID_GET(*tag_buf);
  1846. ppdu_desc->num_users =
  1847. HTT_PPDU_STATS_COMMON_TLV_NUM_USERS_GET(*tag_buf);
  1848. tag_buf++;
  1849. frame_type = HTT_PPDU_STATS_COMMON_TLV_FRM_TYPE_GET(*tag_buf);
  1850. frame_ctrl = ppdu_desc->frame_ctrl;
  1851. switch (frame_type) {
  1852. case HTT_STATS_FTYPE_TIDQ_DATA_SU:
  1853. case HTT_STATS_FTYPE_TIDQ_DATA_MU:
  1854. /*
  1855. * for management packet, frame type come as DATA_SU
  1856. * need to check frame_ctrl before setting frame_type
  1857. */
  1858. if (HTT_GET_FRAME_CTRL_TYPE(frame_ctrl) <= FRAME_CTRL_TYPE_CTRL)
  1859. ppdu_desc->frame_type = CDP_PPDU_FTYPE_CTRL;
  1860. else
  1861. ppdu_desc->frame_type = CDP_PPDU_FTYPE_DATA;
  1862. break;
  1863. case HTT_STATS_FTYPE_SGEN_MU_BAR:
  1864. case HTT_STATS_FTYPE_SGEN_BAR:
  1865. ppdu_desc->frame_type = CDP_PPDU_FTYPE_BAR;
  1866. break;
  1867. default:
  1868. ppdu_desc->frame_type = CDP_PPDU_FTYPE_CTRL;
  1869. break;
  1870. }
  1871. tag_buf += 2;
  1872. ppdu_desc->tx_duration = *tag_buf;
  1873. tag_buf += 3;
  1874. ppdu_desc->ppdu_start_timestamp = *tag_buf;
  1875. ppdu_desc->ppdu_end_timestamp = ppdu_desc->ppdu_start_timestamp +
  1876. ppdu_desc->tx_duration;
  1877. /* Ack time stamp is same as end time stamp*/
  1878. ppdu_desc->ack_timestamp = ppdu_desc->ppdu_end_timestamp;
  1879. tag_buf++;
  1880. freq = HTT_PPDU_STATS_COMMON_TLV_CHAN_MHZ_GET(*tag_buf);
  1881. if (freq != ppdu_desc->channel) {
  1882. soc = pdev->soc;
  1883. ppdu_desc->channel = freq;
  1884. if (soc && soc->cdp_soc.ol_ops->freq_to_channel)
  1885. pdev->operating_channel =
  1886. soc->cdp_soc.ol_ops->freq_to_channel(pdev->ctrl_pdev, freq);
  1887. }
  1888. ppdu_desc->phy_mode = HTT_PPDU_STATS_COMMON_TLV_PHY_MODE_GET(*tag_buf);
  1889. }
  1890. /*
  1891. * dp_process_ppdu_stats_user_common_tlv: Process ppdu_stats_user_common
  1892. * @tag_buf: buffer containing the tlv htt_ppdu_stats_user_common_tlv
  1893. * @ppdu_info: per ppdu tlv structure
  1894. *
  1895. * return:void
  1896. */
  1897. static void dp_process_ppdu_stats_user_common_tlv(
  1898. struct dp_pdev *pdev, uint32_t *tag_buf,
  1899. struct ppdu_info *ppdu_info)
  1900. {
  1901. uint16_t peer_id;
  1902. struct cdp_tx_completion_ppdu *ppdu_desc;
  1903. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  1904. uint8_t curr_user_index = 0;
  1905. ppdu_desc =
  1906. (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  1907. tag_buf++;
  1908. peer_id = HTT_PPDU_STATS_USER_RATE_TLV_SW_PEER_ID_GET(*tag_buf);
  1909. curr_user_index =
  1910. dp_get_ppdu_info_user_index(pdev,
  1911. peer_id, ppdu_info);
  1912. ppdu_user_desc = &ppdu_desc->user[curr_user_index];
  1913. if (peer_id == DP_SCAN_PEER_ID) {
  1914. ppdu_desc->vdev_id =
  1915. HTT_PPDU_STATS_USER_COMMON_TLV_VAP_ID_GET(*tag_buf);
  1916. } else {
  1917. if (!dp_peer_find_by_id_valid(pdev->soc, peer_id))
  1918. return;
  1919. }
  1920. ppdu_user_desc->peer_id = peer_id;
  1921. tag_buf++;
  1922. if (HTT_PPDU_STATS_USER_COMMON_TLV_DELAYED_BA_GET(*tag_buf)) {
  1923. ppdu_user_desc->delayed_ba = 1;
  1924. ppdu_desc->delayed_ba = 1;
  1925. }
  1926. if (HTT_PPDU_STATS_USER_COMMON_TLV_MCAST_GET(*tag_buf)) {
  1927. ppdu_user_desc->is_mcast = true;
  1928. ppdu_user_desc->mpdu_tried_mcast =
  1929. HTT_PPDU_STATS_USER_COMMON_TLV_MPDUS_TRIED_GET(*tag_buf);
  1930. ppdu_user_desc->num_mpdu = ppdu_user_desc->mpdu_tried_mcast;
  1931. } else {
  1932. ppdu_user_desc->mpdu_tried_ucast =
  1933. HTT_PPDU_STATS_USER_COMMON_TLV_MPDUS_TRIED_GET(*tag_buf);
  1934. }
  1935. tag_buf++;
  1936. ppdu_user_desc->qos_ctrl =
  1937. HTT_PPDU_STATS_USER_COMMON_TLV_QOS_CTRL_GET(*tag_buf);
  1938. ppdu_user_desc->frame_ctrl =
  1939. HTT_PPDU_STATS_USER_COMMON_TLV_FRAME_CTRL_GET(*tag_buf);
  1940. ppdu_desc->frame_ctrl = ppdu_user_desc->frame_ctrl;
  1941. if (ppdu_user_desc->delayed_ba)
  1942. ppdu_user_desc->mpdu_success = 0;
  1943. tag_buf += 3;
  1944. if (HTT_PPDU_STATS_IS_OPAQUE_VALID_GET(*tag_buf)) {
  1945. ppdu_user_desc->ppdu_cookie =
  1946. HTT_PPDU_STATS_HOST_OPAQUE_COOKIE_GET(*tag_buf);
  1947. ppdu_user_desc->is_ppdu_cookie_valid = 1;
  1948. }
  1949. }
  1950. /**
  1951. * dp_process_ppdu_stats_user_rate_tlv() - Process htt_ppdu_stats_user_rate_tlv
  1952. * @pdev: DP pdev handle
  1953. * @tag_buf: T2H message buffer carrying the user rate TLV
  1954. * @ppdu_info: per ppdu tlv structure
  1955. *
  1956. * return:void
  1957. */
  1958. static void dp_process_ppdu_stats_user_rate_tlv(struct dp_pdev *pdev,
  1959. uint32_t *tag_buf,
  1960. struct ppdu_info *ppdu_info)
  1961. {
  1962. uint16_t peer_id;
  1963. struct dp_peer *peer;
  1964. struct cdp_tx_completion_ppdu *ppdu_desc;
  1965. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  1966. uint8_t curr_user_index = 0;
  1967. struct dp_vdev *vdev;
  1968. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  1969. tag_buf++;
  1970. peer_id = HTT_PPDU_STATS_USER_RATE_TLV_SW_PEER_ID_GET(*tag_buf);
  1971. curr_user_index =
  1972. dp_get_ppdu_info_user_index(pdev,
  1973. peer_id, ppdu_info);
  1974. ppdu_user_desc = &ppdu_desc->user[curr_user_index];
  1975. if (peer_id == DP_SCAN_PEER_ID) {
  1976. vdev =
  1977. dp_get_vdev_from_soc_vdev_id_wifi3(pdev->soc,
  1978. ppdu_desc->vdev_id);
  1979. if (!vdev)
  1980. return;
  1981. qdf_mem_copy(ppdu_user_desc->mac_addr, vdev->mac_addr.raw,
  1982. QDF_MAC_ADDR_SIZE);
  1983. } else {
  1984. peer = dp_peer_find_by_id(pdev->soc, peer_id);
  1985. if (!peer)
  1986. return;
  1987. qdf_mem_copy(ppdu_user_desc->mac_addr,
  1988. peer->mac_addr.raw, QDF_MAC_ADDR_SIZE);
  1989. dp_peer_unref_del_find_by_id(peer);
  1990. }
  1991. ppdu_user_desc->peer_id = peer_id;
  1992. ppdu_user_desc->tid =
  1993. HTT_PPDU_STATS_USER_RATE_TLV_TID_NUM_GET(*tag_buf);
  1994. tag_buf += 1;
  1995. ppdu_user_desc->user_pos =
  1996. HTT_PPDU_STATS_USER_RATE_TLV_USER_POS_GET(*tag_buf);
  1997. ppdu_user_desc->mu_group_id =
  1998. HTT_PPDU_STATS_USER_RATE_TLV_MU_GROUPID_GET(*tag_buf);
  1999. tag_buf += 1;
  2000. ppdu_user_desc->ru_start =
  2001. HTT_PPDU_STATS_USER_RATE_TLV_RU_START_GET(*tag_buf);
  2002. ppdu_user_desc->ru_tones =
  2003. (HTT_PPDU_STATS_USER_RATE_TLV_RU_END_GET(*tag_buf) -
  2004. HTT_PPDU_STATS_USER_RATE_TLV_RU_START_GET(*tag_buf)) + 1;
  2005. tag_buf += 2;
  2006. ppdu_user_desc->ppdu_type =
  2007. HTT_PPDU_STATS_USER_RATE_TLV_PPDU_TYPE_GET(*tag_buf);
  2008. tag_buf++;
  2009. ppdu_user_desc->tx_rate = *tag_buf;
  2010. ppdu_user_desc->ltf_size =
  2011. HTT_PPDU_STATS_USER_RATE_TLV_LTF_SIZE_GET(*tag_buf);
  2012. ppdu_user_desc->stbc =
  2013. HTT_PPDU_STATS_USER_RATE_TLV_STBC_GET(*tag_buf);
  2014. ppdu_user_desc->he_re =
  2015. HTT_PPDU_STATS_USER_RATE_TLV_HE_RE_GET(*tag_buf);
  2016. ppdu_user_desc->txbf =
  2017. HTT_PPDU_STATS_USER_RATE_TLV_TXBF_GET(*tag_buf);
  2018. ppdu_user_desc->bw =
  2019. HTT_PPDU_STATS_USER_RATE_TLV_BW_GET(*tag_buf) - 2;
  2020. ppdu_user_desc->nss = HTT_PPDU_STATS_USER_RATE_TLV_NSS_GET(*tag_buf);
  2021. ppdu_user_desc->mcs = HTT_PPDU_STATS_USER_RATE_TLV_MCS_GET(*tag_buf);
  2022. ppdu_user_desc->preamble =
  2023. HTT_PPDU_STATS_USER_RATE_TLV_PREAMBLE_GET(*tag_buf);
  2024. ppdu_user_desc->gi = HTT_PPDU_STATS_USER_RATE_TLV_GI_GET(*tag_buf);
  2025. ppdu_user_desc->dcm = HTT_PPDU_STATS_USER_RATE_TLV_DCM_GET(*tag_buf);
  2026. ppdu_user_desc->ldpc = HTT_PPDU_STATS_USER_RATE_TLV_LDPC_GET(*tag_buf);
  2027. }
  2028. /*
  2029. * dp_process_ppdu_stats_enq_mpdu_bitmap_64_tlv: Process
  2030. * htt_ppdu_stats_enq_mpdu_bitmap_64_tlv
  2031. * pdev: DP PDEV handle
  2032. * @tag_buf: buffer containing the tlv htt_ppdu_stats_enq_mpdu_bitmap_64_tlv
  2033. * @ppdu_info: per ppdu tlv structure
  2034. *
  2035. * return:void
  2036. */
  2037. static void dp_process_ppdu_stats_enq_mpdu_bitmap_64_tlv(
  2038. struct dp_pdev *pdev, uint32_t *tag_buf,
  2039. struct ppdu_info *ppdu_info)
  2040. {
  2041. htt_ppdu_stats_enq_mpdu_bitmap_64_tlv *dp_stats_buf =
  2042. (htt_ppdu_stats_enq_mpdu_bitmap_64_tlv *)tag_buf;
  2043. struct cdp_tx_completion_ppdu *ppdu_desc;
  2044. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  2045. uint8_t curr_user_index = 0;
  2046. uint16_t peer_id;
  2047. uint32_t size = CDP_BA_64_BIT_MAP_SIZE_DWORDS;
  2048. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  2049. tag_buf++;
  2050. peer_id =
  2051. HTT_PPDU_STATS_ENQ_MPDU_BITMAP_TLV_SW_PEER_ID_GET(*tag_buf);
  2052. if (!dp_peer_find_by_id_valid(pdev->soc, peer_id))
  2053. return;
  2054. curr_user_index = dp_get_ppdu_info_user_index(pdev, peer_id, ppdu_info);
  2055. ppdu_user_desc = &ppdu_desc->user[curr_user_index];
  2056. ppdu_user_desc->peer_id = peer_id;
  2057. ppdu_user_desc->start_seq = dp_stats_buf->start_seq;
  2058. qdf_mem_copy(&ppdu_user_desc->enq_bitmap, &dp_stats_buf->enq_bitmap,
  2059. sizeof(uint32_t) * CDP_BA_64_BIT_MAP_SIZE_DWORDS);
  2060. dp_process_ppdu_stats_update_failed_bitmap(pdev,
  2061. (void *)ppdu_user_desc,
  2062. ppdu_info->ppdu_id,
  2063. size);
  2064. }
  2065. /*
  2066. * dp_process_ppdu_stats_enq_mpdu_bitmap_256_tlv: Process
  2067. * htt_ppdu_stats_enq_mpdu_bitmap_256_tlv
  2068. * soc: DP SOC handle
  2069. * @tag_buf: buffer containing the tlv htt_ppdu_stats_enq_mpdu_bitmap_256_tlv
  2070. * @ppdu_info: per ppdu tlv structure
  2071. *
  2072. * return:void
  2073. */
  2074. static void dp_process_ppdu_stats_enq_mpdu_bitmap_256_tlv(
  2075. struct dp_pdev *pdev, uint32_t *tag_buf,
  2076. struct ppdu_info *ppdu_info)
  2077. {
  2078. htt_ppdu_stats_enq_mpdu_bitmap_256_tlv *dp_stats_buf =
  2079. (htt_ppdu_stats_enq_mpdu_bitmap_256_tlv *)tag_buf;
  2080. struct cdp_tx_completion_ppdu *ppdu_desc;
  2081. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  2082. uint8_t curr_user_index = 0;
  2083. uint16_t peer_id;
  2084. uint32_t size = CDP_BA_256_BIT_MAP_SIZE_DWORDS;
  2085. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  2086. tag_buf++;
  2087. peer_id =
  2088. HTT_PPDU_STATS_ENQ_MPDU_BITMAP_TLV_SW_PEER_ID_GET(*tag_buf);
  2089. if (!dp_peer_find_by_id_valid(pdev->soc, peer_id))
  2090. return;
  2091. curr_user_index = dp_get_ppdu_info_user_index(pdev, peer_id, ppdu_info);
  2092. ppdu_user_desc = &ppdu_desc->user[curr_user_index];
  2093. ppdu_user_desc->peer_id = peer_id;
  2094. ppdu_user_desc->start_seq = dp_stats_buf->start_seq;
  2095. qdf_mem_copy(&ppdu_user_desc->enq_bitmap, &dp_stats_buf->enq_bitmap,
  2096. sizeof(uint32_t) * CDP_BA_256_BIT_MAP_SIZE_DWORDS);
  2097. dp_process_ppdu_stats_update_failed_bitmap(pdev,
  2098. (void *)ppdu_user_desc,
  2099. ppdu_info->ppdu_id,
  2100. size);
  2101. }
  2102. /*
  2103. * dp_process_ppdu_stats_user_cmpltn_common_tlv: Process
  2104. * htt_ppdu_stats_user_cmpltn_common_tlv
  2105. * soc: DP SOC handle
  2106. * @tag_buf: buffer containing the tlv htt_ppdu_stats_user_cmpltn_common_tlv
  2107. * @ppdu_info: per ppdu tlv structure
  2108. *
  2109. * return:void
  2110. */
  2111. static void dp_process_ppdu_stats_user_cmpltn_common_tlv(
  2112. struct dp_pdev *pdev, uint32_t *tag_buf,
  2113. struct ppdu_info *ppdu_info)
  2114. {
  2115. uint16_t peer_id;
  2116. struct cdp_tx_completion_ppdu *ppdu_desc;
  2117. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  2118. uint8_t curr_user_index = 0;
  2119. uint8_t bw_iter;
  2120. htt_ppdu_stats_user_cmpltn_common_tlv *dp_stats_buf =
  2121. (htt_ppdu_stats_user_cmpltn_common_tlv *)tag_buf;
  2122. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  2123. tag_buf++;
  2124. peer_id =
  2125. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_SW_PEER_ID_GET(*tag_buf);
  2126. if (!dp_peer_find_by_id_valid(pdev->soc, peer_id))
  2127. return;
  2128. curr_user_index = dp_get_ppdu_info_user_index(pdev, peer_id, ppdu_info);
  2129. ppdu_user_desc = &ppdu_desc->user[curr_user_index];
  2130. ppdu_user_desc->peer_id = peer_id;
  2131. ppdu_desc->last_usr_index = curr_user_index;
  2132. ppdu_user_desc->completion_status =
  2133. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_COMPLETION_STATUS_GET(
  2134. *tag_buf);
  2135. ppdu_user_desc->tid =
  2136. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_TID_NUM_GET(*tag_buf);
  2137. tag_buf++;
  2138. if (qdf_likely(ppdu_user_desc->completion_status ==
  2139. HTT_PPDU_STATS_USER_STATUS_OK)) {
  2140. ppdu_desc->ack_rssi = dp_stats_buf->ack_rssi;
  2141. ppdu_user_desc->ack_rssi_valid = 1;
  2142. } else {
  2143. ppdu_user_desc->ack_rssi_valid = 0;
  2144. }
  2145. tag_buf++;
  2146. ppdu_user_desc->mpdu_success =
  2147. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_MPDU_SUCCESS_GET(*tag_buf);
  2148. ppdu_user_desc->mpdu_failed =
  2149. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_MPDU_TRIED_GET(*tag_buf) -
  2150. ppdu_user_desc->mpdu_success;
  2151. tag_buf++;
  2152. ppdu_user_desc->long_retries =
  2153. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_LONG_RETRY_GET(*tag_buf);
  2154. ppdu_user_desc->short_retries =
  2155. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_SHORT_RETRY_GET(*tag_buf);
  2156. ppdu_user_desc->retry_msdus =
  2157. ppdu_user_desc->long_retries + ppdu_user_desc->short_retries;
  2158. ppdu_user_desc->is_ampdu =
  2159. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_IS_AMPDU_GET(*tag_buf);
  2160. ppdu_info->is_ampdu = ppdu_user_desc->is_ampdu;
  2161. /*
  2162. * increase successful mpdu counter from
  2163. * htt_ppdu_stats_user_cmpltn_common_tlv
  2164. */
  2165. ppdu_info->mpdu_compltn_common_tlv += ppdu_user_desc->mpdu_success;
  2166. /*
  2167. * MU BAR may send request to n users but we may received ack only from
  2168. * m users. To have count of number of users respond back, we have a
  2169. * separate counter bar_num_users per PPDU that get increment for every
  2170. * htt_ppdu_stats_user_cmpltn_common_tlv
  2171. */
  2172. ppdu_desc->bar_num_users++;
  2173. tag_buf++;
  2174. for (bw_iter = 0; bw_iter < CDP_RSSI_CHAIN_LEN; bw_iter++) {
  2175. ppdu_user_desc->rssi_chain[bw_iter] =
  2176. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_CHAIN_RSSI_GET(*tag_buf);
  2177. tag_buf++;
  2178. }
  2179. ppdu_user_desc->sa_tx_antenna =
  2180. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_TX_ANTENNA_MASK_GET(*tag_buf);
  2181. tag_buf++;
  2182. ppdu_user_desc->sa_is_training =
  2183. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_IS_TRAINING_GET(*tag_buf);
  2184. if (ppdu_user_desc->sa_is_training) {
  2185. ppdu_user_desc->sa_goodput =
  2186. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_PENDING_TRAINING_PKTS_GET(*tag_buf);
  2187. }
  2188. tag_buf++;
  2189. for (bw_iter = 0; bw_iter < CDP_NUM_SA_BW; bw_iter++) {
  2190. ppdu_user_desc->sa_max_rates[bw_iter] =
  2191. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_MAX_RATES_GET(tag_buf[bw_iter]);
  2192. }
  2193. tag_buf += CDP_NUM_SA_BW;
  2194. ppdu_user_desc->current_rate_per =
  2195. HTT_PPDU_STATS_USER_CMPLTN_COMMON_TLV_CURRENT_RATE_PER_GET(*tag_buf);
  2196. }
  2197. /*
  2198. * dp_process_ppdu_stats_user_compltn_ba_bitmap_64_tlv: Process
  2199. * htt_ppdu_stats_user_compltn_ba_bitmap_64_tlv
  2200. * pdev: DP PDEV handle
  2201. * @tag_buf: buffer containing the htt_ppdu_stats_user_compltn_ba_bitmap_64_tlv
  2202. * @ppdu_info: per ppdu tlv structure
  2203. *
  2204. * return:void
  2205. */
  2206. static void dp_process_ppdu_stats_user_compltn_ba_bitmap_64_tlv(
  2207. struct dp_pdev *pdev, uint32_t *tag_buf,
  2208. struct ppdu_info *ppdu_info)
  2209. {
  2210. htt_ppdu_stats_user_compltn_ba_bitmap_64_tlv *dp_stats_buf =
  2211. (htt_ppdu_stats_user_compltn_ba_bitmap_64_tlv *)tag_buf;
  2212. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  2213. struct cdp_tx_completion_ppdu *ppdu_desc;
  2214. uint8_t curr_user_index = 0;
  2215. uint16_t peer_id;
  2216. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  2217. tag_buf++;
  2218. peer_id =
  2219. HTT_PPDU_STATS_USER_CMPLTN_BA_BITMAP_TLV_SW_PEER_ID_GET(*tag_buf);
  2220. if (!dp_peer_find_by_id_valid(pdev->soc, peer_id))
  2221. return;
  2222. curr_user_index = dp_get_ppdu_info_user_index(pdev, peer_id, ppdu_info);
  2223. ppdu_user_desc = &ppdu_desc->user[curr_user_index];
  2224. ppdu_user_desc->peer_id = peer_id;
  2225. ppdu_user_desc->ba_seq_no = dp_stats_buf->ba_seq_no;
  2226. qdf_mem_copy(&ppdu_user_desc->ba_bitmap, &dp_stats_buf->ba_bitmap,
  2227. sizeof(uint32_t) * CDP_BA_64_BIT_MAP_SIZE_DWORDS);
  2228. ppdu_user_desc->ba_size = CDP_BA_64_BIT_MAP_SIZE_DWORDS * 32;
  2229. }
  2230. /*
  2231. * dp_process_ppdu_stats_user_compltn_ba_bitmap_256_tlv: Process
  2232. * htt_ppdu_stats_user_compltn_ba_bitmap_256_tlv
  2233. * pdev: DP PDEV handle
  2234. * @tag_buf: buffer containing the htt_ppdu_stats_user_compltn_ba_bitmap_256_tlv
  2235. * @ppdu_info: per ppdu tlv structure
  2236. *
  2237. * return:void
  2238. */
  2239. static void dp_process_ppdu_stats_user_compltn_ba_bitmap_256_tlv(
  2240. struct dp_pdev *pdev, uint32_t *tag_buf,
  2241. struct ppdu_info *ppdu_info)
  2242. {
  2243. htt_ppdu_stats_user_compltn_ba_bitmap_256_tlv *dp_stats_buf =
  2244. (htt_ppdu_stats_user_compltn_ba_bitmap_256_tlv *)tag_buf;
  2245. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  2246. struct cdp_tx_completion_ppdu *ppdu_desc;
  2247. uint8_t curr_user_index = 0;
  2248. uint16_t peer_id;
  2249. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  2250. tag_buf++;
  2251. peer_id =
  2252. HTT_PPDU_STATS_USER_CMPLTN_BA_BITMAP_TLV_SW_PEER_ID_GET(*tag_buf);
  2253. if (!dp_peer_find_by_id_valid(pdev->soc, peer_id))
  2254. return;
  2255. curr_user_index = dp_get_ppdu_info_user_index(pdev, peer_id, ppdu_info);
  2256. ppdu_user_desc = &ppdu_desc->user[curr_user_index];
  2257. ppdu_user_desc->peer_id = peer_id;
  2258. ppdu_user_desc->ba_seq_no = dp_stats_buf->ba_seq_no;
  2259. qdf_mem_copy(&ppdu_user_desc->ba_bitmap, &dp_stats_buf->ba_bitmap,
  2260. sizeof(uint32_t) * CDP_BA_256_BIT_MAP_SIZE_DWORDS);
  2261. ppdu_user_desc->ba_size = CDP_BA_256_BIT_MAP_SIZE_DWORDS * 32;
  2262. }
  2263. /*
  2264. * dp_process_ppdu_stats_user_compltn_ack_ba_status_tlv: Process
  2265. * htt_ppdu_stats_user_compltn_ack_ba_status_tlv
  2266. * pdev: DP PDE handle
  2267. * @tag_buf: buffer containing the htt_ppdu_stats_user_compltn_ack_ba_status_tlv
  2268. * @ppdu_info: per ppdu tlv structure
  2269. *
  2270. * return:void
  2271. */
  2272. static void dp_process_ppdu_stats_user_compltn_ack_ba_status_tlv(
  2273. struct dp_pdev *pdev, uint32_t *tag_buf,
  2274. struct ppdu_info *ppdu_info)
  2275. {
  2276. uint16_t peer_id;
  2277. struct cdp_tx_completion_ppdu *ppdu_desc;
  2278. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  2279. uint8_t curr_user_index = 0;
  2280. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  2281. tag_buf += 2;
  2282. peer_id =
  2283. HTT_PPDU_STATS_USER_CMPLTN_ACK_BA_STATUS_TLV_SW_PEER_ID_GET(*tag_buf);
  2284. if (!dp_peer_find_by_id_valid(pdev->soc, peer_id))
  2285. return;
  2286. curr_user_index = dp_get_ppdu_info_user_index(pdev, peer_id, ppdu_info);
  2287. ppdu_user_desc = &ppdu_desc->user[curr_user_index];
  2288. ppdu_user_desc->peer_id = peer_id;
  2289. tag_buf++;
  2290. ppdu_user_desc->tid =
  2291. HTT_PPDU_STATS_USER_CMPLTN_ACK_BA_STATUS_TLV_TID_NUM_GET(*tag_buf);
  2292. ppdu_user_desc->num_mpdu =
  2293. HTT_PPDU_STATS_USER_CMPLTN_ACK_BA_STATUS_TLV_NUM_MPDU_GET(*tag_buf);
  2294. ppdu_user_desc->num_msdu =
  2295. HTT_PPDU_STATS_USER_CMPLTN_ACK_BA_STATUS_TLV_NUM_MSDU_GET(*tag_buf);
  2296. ppdu_user_desc->success_msdus = ppdu_user_desc->num_msdu;
  2297. tag_buf++;
  2298. ppdu_user_desc->start_seq =
  2299. HTT_PPDU_STATS_USER_CMPLTN_ACK_BA_STATUS_TLV_START_SEQ_GET(
  2300. *tag_buf);
  2301. tag_buf++;
  2302. ppdu_user_desc->success_bytes = *tag_buf;
  2303. /* increase successful mpdu counter */
  2304. ppdu_info->mpdu_ack_ba_tlv += ppdu_user_desc->num_mpdu;
  2305. }
  2306. /*
  2307. * dp_process_ppdu_stats_user_common_array_tlv: Process
  2308. * htt_ppdu_stats_user_common_array_tlv
  2309. * pdev: DP PDEV handle
  2310. * @tag_buf: buffer containing the htt_ppdu_stats_user_compltn_ack_ba_status_tlv
  2311. * @ppdu_info: per ppdu tlv structure
  2312. *
  2313. * return:void
  2314. */
  2315. static void dp_process_ppdu_stats_user_common_array_tlv(
  2316. struct dp_pdev *pdev, uint32_t *tag_buf,
  2317. struct ppdu_info *ppdu_info)
  2318. {
  2319. uint32_t peer_id;
  2320. struct cdp_tx_completion_ppdu *ppdu_desc;
  2321. struct cdp_tx_completion_ppdu_user *ppdu_user_desc;
  2322. uint8_t curr_user_index = 0;
  2323. struct htt_tx_ppdu_stats_info *dp_stats_buf;
  2324. ppdu_desc = (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  2325. tag_buf++;
  2326. dp_stats_buf = (struct htt_tx_ppdu_stats_info *)tag_buf;
  2327. tag_buf += 3;
  2328. peer_id =
  2329. HTT_PPDU_STATS_ARRAY_ITEM_TLV_PEERID_GET(*tag_buf);
  2330. if (!dp_peer_find_by_id_valid(pdev->soc, peer_id)) {
  2331. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  2332. "Invalid peer");
  2333. return;
  2334. }
  2335. curr_user_index = dp_get_ppdu_info_user_index(pdev, peer_id, ppdu_info);
  2336. ppdu_user_desc = &ppdu_desc->user[curr_user_index];
  2337. ppdu_user_desc->retry_bytes = dp_stats_buf->tx_retry_bytes;
  2338. ppdu_user_desc->failed_bytes = dp_stats_buf->tx_failed_bytes;
  2339. tag_buf++;
  2340. ppdu_user_desc->success_msdus =
  2341. HTT_PPDU_STATS_ARRAY_ITEM_TLV_TX_SUCC_MSDUS_GET(*tag_buf);
  2342. ppdu_user_desc->retry_bytes =
  2343. HTT_PPDU_STATS_ARRAY_ITEM_TLV_TX_RETRY_MSDUS_GET(*tag_buf);
  2344. tag_buf++;
  2345. ppdu_user_desc->failed_msdus =
  2346. HTT_PPDU_STATS_ARRAY_ITEM_TLV_TX_FAILED_MSDUS_GET(*tag_buf);
  2347. }
  2348. /*
  2349. * dp_process_ppdu_stats_flush_tlv: Process
  2350. * htt_ppdu_stats_flush_tlv
  2351. * @pdev: DP PDEV handle
  2352. * @tag_buf: buffer containing the htt_ppdu_stats_flush_tlv
  2353. *
  2354. * return:void
  2355. */
  2356. static void dp_process_ppdu_stats_user_compltn_flush_tlv(struct dp_pdev *pdev,
  2357. uint32_t *tag_buf)
  2358. {
  2359. uint32_t peer_id;
  2360. uint32_t drop_reason;
  2361. uint8_t tid;
  2362. uint32_t num_msdu;
  2363. struct dp_peer *peer;
  2364. tag_buf++;
  2365. drop_reason = *tag_buf;
  2366. tag_buf++;
  2367. num_msdu = HTT_PPDU_STATS_FLUSH_TLV_NUM_MSDU_GET(*tag_buf);
  2368. tag_buf++;
  2369. peer_id =
  2370. HTT_PPDU_STATS_FLUSH_TLV_SW_PEER_ID_GET(*tag_buf);
  2371. peer = dp_peer_find_by_id(pdev->soc, peer_id);
  2372. if (!peer)
  2373. return;
  2374. tid = HTT_PPDU_STATS_FLUSH_TLV_TID_NUM_GET(*tag_buf);
  2375. if (drop_reason == HTT_FLUSH_EXCESS_RETRIES) {
  2376. DP_STATS_INC(peer, tx.excess_retries_per_ac[TID_TO_WME_AC(tid)],
  2377. num_msdu);
  2378. }
  2379. dp_peer_unref_del_find_by_id(peer);
  2380. }
  2381. #ifndef WLAN_TX_PKT_CAPTURE_ENH
  2382. /*
  2383. * dp_deliver_mgmt_frm: Process
  2384. * @pdev: DP PDEV handle
  2385. * @nbuf: buffer containing the htt_ppdu_stats_tx_mgmtctrl_payload_tlv
  2386. *
  2387. * return: void
  2388. */
  2389. void dp_deliver_mgmt_frm(struct dp_pdev *pdev, qdf_nbuf_t nbuf)
  2390. {
  2391. if (pdev->tx_sniffer_enable || pdev->mcopy_mode) {
  2392. dp_wdi_event_handler(WDI_EVENT_TX_MGMT_CTRL, pdev->soc,
  2393. nbuf, HTT_INVALID_PEER,
  2394. WDI_NO_VAL, pdev->pdev_id);
  2395. }
  2396. }
  2397. #endif
  2398. /*
  2399. * dp_process_ppdu_stats_tx_mgmtctrl_payload_tlv: Process
  2400. * htt_ppdu_stats_tx_mgmtctrl_payload_tlv
  2401. * @pdev: DP PDEV handle
  2402. * @tag_buf: buffer containing the htt_ppdu_stats_tx_mgmtctrl_payload_tlv
  2403. * @length: tlv_length
  2404. *
  2405. * return:QDF_STATUS_SUCCESS if nbuf as to be freed in caller
  2406. */
  2407. static QDF_STATUS
  2408. dp_process_ppdu_stats_tx_mgmtctrl_payload_tlv(struct dp_pdev *pdev,
  2409. qdf_nbuf_t tag_buf,
  2410. uint32_t ppdu_id)
  2411. {
  2412. uint32_t *nbuf_ptr;
  2413. uint8_t trim_size;
  2414. if ((!pdev->tx_sniffer_enable) && (!pdev->mcopy_mode) &&
  2415. (!pdev->bpr_enable) && (!pdev->tx_capture_enabled))
  2416. return QDF_STATUS_SUCCESS;
  2417. trim_size = ((pdev->mgmtctrl_frm_info.mgmt_buf +
  2418. HTT_MGMT_CTRL_TLV_HDR_RESERVERD_LEN) -
  2419. qdf_nbuf_data(tag_buf));
  2420. if (!qdf_nbuf_pull_head(tag_buf, trim_size))
  2421. return QDF_STATUS_SUCCESS;
  2422. qdf_nbuf_trim_tail(tag_buf, qdf_nbuf_len(tag_buf) -
  2423. pdev->mgmtctrl_frm_info.mgmt_buf_len);
  2424. nbuf_ptr = (uint32_t *)qdf_nbuf_push_head(
  2425. tag_buf, sizeof(ppdu_id));
  2426. *nbuf_ptr = ppdu_id;
  2427. if (pdev->bpr_enable) {
  2428. dp_wdi_event_handler(WDI_EVENT_TX_BEACON, pdev->soc,
  2429. tag_buf, HTT_INVALID_PEER,
  2430. WDI_NO_VAL, pdev->pdev_id);
  2431. }
  2432. dp_deliver_mgmt_frm(pdev, tag_buf);
  2433. return QDF_STATUS_E_ALREADY;
  2434. }
  2435. /**
  2436. * dp_validate_fix_ppdu_tlv(): Function to validate the length of PPDU
  2437. *
  2438. * If the TLV length sent as part of PPDU TLV is less that expected size i.e
  2439. * size of corresponding data structure, pad the remaining bytes with zeros
  2440. * and continue processing the TLVs
  2441. *
  2442. * @pdev: DP pdev handle
  2443. * @tag_buf: TLV buffer
  2444. * @tlv_expected_size: Expected size of Tag
  2445. * @tlv_len: TLV length received from FW
  2446. *
  2447. * Return: Pointer to updated TLV
  2448. */
  2449. static inline uint32_t *dp_validate_fix_ppdu_tlv(struct dp_pdev *pdev,
  2450. uint32_t *tag_buf,
  2451. uint16_t tlv_expected_size,
  2452. uint16_t tlv_len)
  2453. {
  2454. uint32_t *tlv_desc = tag_buf;
  2455. qdf_assert_always(tlv_len != 0);
  2456. if (tlv_len < tlv_expected_size) {
  2457. qdf_mem_zero(pdev->ppdu_tlv_buf, tlv_expected_size);
  2458. qdf_mem_copy(pdev->ppdu_tlv_buf, tag_buf, tlv_len);
  2459. tlv_desc = pdev->ppdu_tlv_buf;
  2460. }
  2461. return tlv_desc;
  2462. }
  2463. /**
  2464. * dp_process_ppdu_tag(): Function to process the PPDU TLVs
  2465. * @pdev: DP pdev handle
  2466. * @tag_buf: TLV buffer
  2467. * @tlv_len: length of tlv
  2468. * @ppdu_info: per ppdu tlv structure
  2469. *
  2470. * return: void
  2471. */
  2472. static void dp_process_ppdu_tag(struct dp_pdev *pdev, uint32_t *tag_buf,
  2473. uint32_t tlv_len, struct ppdu_info *ppdu_info)
  2474. {
  2475. uint32_t tlv_type = HTT_STATS_TLV_TAG_GET(*tag_buf);
  2476. uint16_t tlv_expected_size;
  2477. uint32_t *tlv_desc;
  2478. switch (tlv_type) {
  2479. case HTT_PPDU_STATS_COMMON_TLV:
  2480. tlv_expected_size = sizeof(htt_ppdu_stats_common_tlv);
  2481. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2482. tlv_expected_size, tlv_len);
  2483. dp_process_ppdu_stats_common_tlv(pdev, tlv_desc, ppdu_info);
  2484. break;
  2485. case HTT_PPDU_STATS_USR_COMMON_TLV:
  2486. tlv_expected_size = sizeof(htt_ppdu_stats_user_common_tlv);
  2487. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2488. tlv_expected_size, tlv_len);
  2489. dp_process_ppdu_stats_user_common_tlv(pdev, tlv_desc,
  2490. ppdu_info);
  2491. break;
  2492. case HTT_PPDU_STATS_USR_RATE_TLV:
  2493. tlv_expected_size = sizeof(htt_ppdu_stats_user_rate_tlv);
  2494. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2495. tlv_expected_size, tlv_len);
  2496. dp_process_ppdu_stats_user_rate_tlv(pdev, tlv_desc,
  2497. ppdu_info);
  2498. break;
  2499. case HTT_PPDU_STATS_USR_MPDU_ENQ_BITMAP_64_TLV:
  2500. tlv_expected_size =
  2501. sizeof(htt_ppdu_stats_enq_mpdu_bitmap_64_tlv);
  2502. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2503. tlv_expected_size, tlv_len);
  2504. dp_process_ppdu_stats_enq_mpdu_bitmap_64_tlv(
  2505. pdev, tlv_desc, ppdu_info);
  2506. break;
  2507. case HTT_PPDU_STATS_USR_MPDU_ENQ_BITMAP_256_TLV:
  2508. tlv_expected_size =
  2509. sizeof(htt_ppdu_stats_enq_mpdu_bitmap_256_tlv);
  2510. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2511. tlv_expected_size, tlv_len);
  2512. dp_process_ppdu_stats_enq_mpdu_bitmap_256_tlv(
  2513. pdev, tlv_desc, ppdu_info);
  2514. break;
  2515. case HTT_PPDU_STATS_USR_COMPLTN_COMMON_TLV:
  2516. tlv_expected_size =
  2517. sizeof(htt_ppdu_stats_user_cmpltn_common_tlv);
  2518. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2519. tlv_expected_size, tlv_len);
  2520. dp_process_ppdu_stats_user_cmpltn_common_tlv(
  2521. pdev, tlv_desc, ppdu_info);
  2522. break;
  2523. case HTT_PPDU_STATS_USR_COMPLTN_BA_BITMAP_64_TLV:
  2524. tlv_expected_size =
  2525. sizeof(htt_ppdu_stats_user_compltn_ba_bitmap_64_tlv);
  2526. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2527. tlv_expected_size, tlv_len);
  2528. dp_process_ppdu_stats_user_compltn_ba_bitmap_64_tlv(
  2529. pdev, tlv_desc, ppdu_info);
  2530. break;
  2531. case HTT_PPDU_STATS_USR_COMPLTN_BA_BITMAP_256_TLV:
  2532. tlv_expected_size =
  2533. sizeof(htt_ppdu_stats_user_compltn_ba_bitmap_256_tlv);
  2534. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2535. tlv_expected_size, tlv_len);
  2536. dp_process_ppdu_stats_user_compltn_ba_bitmap_256_tlv(
  2537. pdev, tlv_desc, ppdu_info);
  2538. break;
  2539. case HTT_PPDU_STATS_USR_COMPLTN_ACK_BA_STATUS_TLV:
  2540. tlv_expected_size =
  2541. sizeof(htt_ppdu_stats_user_compltn_ack_ba_status_tlv);
  2542. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2543. tlv_expected_size, tlv_len);
  2544. dp_process_ppdu_stats_user_compltn_ack_ba_status_tlv(
  2545. pdev, tlv_desc, ppdu_info);
  2546. break;
  2547. case HTT_PPDU_STATS_USR_COMMON_ARRAY_TLV:
  2548. tlv_expected_size =
  2549. sizeof(htt_ppdu_stats_usr_common_array_tlv_v);
  2550. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2551. tlv_expected_size, tlv_len);
  2552. dp_process_ppdu_stats_user_common_array_tlv(
  2553. pdev, tlv_desc, ppdu_info);
  2554. break;
  2555. case HTT_PPDU_STATS_USR_COMPLTN_FLUSH_TLV:
  2556. tlv_expected_size = sizeof(htt_ppdu_stats_flush_tlv);
  2557. tlv_desc = dp_validate_fix_ppdu_tlv(pdev, tag_buf,
  2558. tlv_expected_size, tlv_len);
  2559. dp_process_ppdu_stats_user_compltn_flush_tlv(
  2560. pdev, tlv_desc);
  2561. break;
  2562. default:
  2563. break;
  2564. }
  2565. }
  2566. /**
  2567. * dp_ppdu_desc_user_stats_update(): Function to update TX user stats
  2568. * @pdev: DP pdev handle
  2569. * @ppdu_info: per PPDU TLV descriptor
  2570. *
  2571. * return: void
  2572. */
  2573. void
  2574. dp_ppdu_desc_user_stats_update(struct dp_pdev *pdev,
  2575. struct ppdu_info *ppdu_info)
  2576. {
  2577. struct cdp_tx_completion_ppdu *ppdu_desc = NULL;
  2578. struct dp_peer *peer = NULL;
  2579. uint32_t tlv_bitmap_expected;
  2580. uint32_t tlv_bitmap_default;
  2581. uint16_t i;
  2582. uint32_t num_users;
  2583. ppdu_desc = (struct cdp_tx_completion_ppdu *)
  2584. qdf_nbuf_data(ppdu_info->nbuf);
  2585. ppdu_desc->num_users = ppdu_info->last_user;
  2586. ppdu_desc->ppdu_id = ppdu_info->ppdu_id;
  2587. tlv_bitmap_expected = HTT_PPDU_DEFAULT_TLV_BITMAP;
  2588. if (pdev->tx_sniffer_enable || pdev->mcopy_mode) {
  2589. if (ppdu_info->is_ampdu)
  2590. tlv_bitmap_expected =
  2591. dp_htt_get_ppdu_sniffer_ampdu_tlv_bitmap(
  2592. ppdu_info->tlv_bitmap);
  2593. }
  2594. tlv_bitmap_default = tlv_bitmap_expected;
  2595. if (ppdu_desc->frame_type == CDP_PPDU_FTYPE_BAR) {
  2596. num_users = ppdu_desc->bar_num_users;
  2597. ppdu_desc->num_users = ppdu_desc->bar_num_users;
  2598. } else {
  2599. num_users = ppdu_desc->num_users;
  2600. }
  2601. for (i = 0; i < num_users; i++) {
  2602. ppdu_desc->num_mpdu += ppdu_desc->user[i].num_mpdu;
  2603. ppdu_desc->num_msdu += ppdu_desc->user[i].num_msdu;
  2604. peer = dp_peer_find_by_id(pdev->soc,
  2605. ppdu_desc->user[i].peer_id);
  2606. /**
  2607. * This check is to make sure peer is not deleted
  2608. * after processing the TLVs.
  2609. */
  2610. if (!peer)
  2611. continue;
  2612. ppdu_desc->user[i].cookie = (void *)peer->wlanstats_ctx;
  2613. if (ppdu_desc->user[i].completion_status !=
  2614. HTT_PPDU_STATS_USER_STATUS_OK) {
  2615. tlv_bitmap_expected = tlv_bitmap_expected & 0xFF;
  2616. if ((ppdu_desc->user[i].tid < CDP_DATA_TID_MAX ||
  2617. (ppdu_desc->user[i].tid == CDP_DATA_NON_QOS_TID)) &&
  2618. (ppdu_desc->frame_type == CDP_PPDU_FTYPE_DATA)) {
  2619. DP_STATS_INC(peer, tx.retries,
  2620. (ppdu_desc->user[i].long_retries +
  2621. ppdu_desc->user[i].short_retries));
  2622. DP_STATS_INC(peer, tx.tx_failed,
  2623. ppdu_desc->user[i].failed_msdus);
  2624. }
  2625. }
  2626. /*
  2627. * different frame like DATA, BAR or CTRL has different
  2628. * tlv bitmap expected. Apart from ACK_BA_STATUS TLV, we
  2629. * receive other tlv in-order/sequential from fw.
  2630. * Since ACK_BA_STATUS TLV come from Hardware it is
  2631. * asynchronous So we need to depend on some tlv to confirm
  2632. * all tlv is received for a ppdu.
  2633. * So we depend on both HTT_PPDU_STATS_COMMON_TLV and
  2634. * ACK_BA_STATUS_TLV.
  2635. */
  2636. if (!(ppdu_info->tlv_bitmap &
  2637. (1 << HTT_PPDU_STATS_COMMON_TLV)) ||
  2638. !(ppdu_info->tlv_bitmap &
  2639. (1 << HTT_PPDU_STATS_USR_COMPLTN_ACK_BA_STATUS_TLV))) {
  2640. dp_peer_unref_del_find_by_id(peer);
  2641. continue;
  2642. }
  2643. /**
  2644. * Update tx stats for data frames having Qos as well as
  2645. * non-Qos data tid
  2646. */
  2647. if ((ppdu_desc->user[i].tid < CDP_DATA_TID_MAX ||
  2648. (ppdu_desc->user[i].tid == CDP_DATA_NON_QOS_TID)) &&
  2649. (ppdu_desc->frame_type != CDP_PPDU_FTYPE_CTRL)) {
  2650. dp_tx_stats_update(pdev, peer,
  2651. &ppdu_desc->user[i],
  2652. ppdu_desc->ack_rssi);
  2653. dp_tx_rate_stats_update(peer, &ppdu_desc->user[i]);
  2654. }
  2655. dp_peer_unref_del_find_by_id(peer);
  2656. tlv_bitmap_expected = tlv_bitmap_default;
  2657. }
  2658. }
  2659. #ifndef WLAN_TX_PKT_CAPTURE_ENH
  2660. /**
  2661. * dp_ppdu_desc_deliver(): Function to deliver Tx PPDU status descriptor
  2662. * to upper layer
  2663. * @pdev: DP pdev handle
  2664. * @ppdu_info: per PPDU TLV descriptor
  2665. *
  2666. * return: void
  2667. */
  2668. static
  2669. void dp_ppdu_desc_deliver(struct dp_pdev *pdev,
  2670. struct ppdu_info *ppdu_info)
  2671. {
  2672. struct cdp_tx_completion_ppdu *ppdu_desc = NULL;
  2673. qdf_nbuf_t nbuf;
  2674. ppdu_desc = (struct cdp_tx_completion_ppdu *)
  2675. qdf_nbuf_data(ppdu_info->nbuf);
  2676. dp_ppdu_desc_user_stats_update(pdev, ppdu_info);
  2677. /*
  2678. * Remove from the list
  2679. */
  2680. TAILQ_REMOVE(&pdev->ppdu_info_list, ppdu_info, ppdu_info_list_elem);
  2681. nbuf = ppdu_info->nbuf;
  2682. pdev->list_depth--;
  2683. qdf_mem_free(ppdu_info);
  2684. qdf_assert_always(nbuf);
  2685. ppdu_desc = (struct cdp_tx_completion_ppdu *)
  2686. qdf_nbuf_data(nbuf);
  2687. /**
  2688. * Deliver PPDU stats only for valid (acked) data frames if
  2689. * sniffer mode is not enabled.
  2690. * If sniffer mode is enabled, PPDU stats for all frames
  2691. * including mgmt/control frames should be delivered to upper layer
  2692. */
  2693. if (pdev->tx_sniffer_enable || pdev->mcopy_mode) {
  2694. dp_wdi_event_handler(WDI_EVENT_TX_PPDU_DESC, pdev->soc,
  2695. nbuf, HTT_INVALID_PEER,
  2696. WDI_NO_VAL, pdev->pdev_id);
  2697. } else {
  2698. if (ppdu_desc->num_mpdu != 0 && ppdu_desc->num_users != 0 &&
  2699. ppdu_desc->frame_ctrl & HTT_FRAMECTRL_DATATYPE) {
  2700. dp_wdi_event_handler(WDI_EVENT_TX_PPDU_DESC,
  2701. pdev->soc, nbuf, HTT_INVALID_PEER,
  2702. WDI_NO_VAL, pdev->pdev_id);
  2703. } else
  2704. qdf_nbuf_free(nbuf);
  2705. }
  2706. return;
  2707. }
  2708. #endif
  2709. /**
  2710. * dp_get_ppdu_desc(): Function to allocate new PPDU status
  2711. * desc for new ppdu id
  2712. * @pdev: DP pdev handle
  2713. * @ppdu_id: PPDU unique identifier
  2714. * @tlv_type: TLV type received
  2715. *
  2716. * return: ppdu_info per ppdu tlv structure
  2717. */
  2718. static
  2719. struct ppdu_info *dp_get_ppdu_desc(struct dp_pdev *pdev, uint32_t ppdu_id,
  2720. uint8_t tlv_type)
  2721. {
  2722. struct ppdu_info *ppdu_info = NULL;
  2723. /*
  2724. * Find ppdu_id node exists or not
  2725. */
  2726. TAILQ_FOREACH(ppdu_info, &pdev->ppdu_info_list, ppdu_info_list_elem) {
  2727. if (ppdu_info && (ppdu_info->ppdu_id == ppdu_id)) {
  2728. break;
  2729. }
  2730. }
  2731. if (ppdu_info) {
  2732. if (ppdu_info->tlv_bitmap & (1 << tlv_type)) {
  2733. /**
  2734. * if we get tlv_type that is already been processed
  2735. * for ppdu, that means we got a new ppdu with same
  2736. * ppdu id. Hence Flush the older ppdu
  2737. * for MUMIMO and OFDMA, In a PPDU we have
  2738. * multiple user with same tlv types. tlv bitmap is
  2739. * used to check whether SU or MU_MIMO/OFDMA
  2740. */
  2741. if (!(ppdu_info->tlv_bitmap &
  2742. (1 << HTT_PPDU_STATS_SCH_CMD_STATUS_TLV)))
  2743. return ppdu_info;
  2744. /**
  2745. * apart from ACK BA STATUS TLV rest all comes in order
  2746. * so if tlv type not ACK BA STATUS TLV we can deliver
  2747. * ppdu_info
  2748. */
  2749. if (tlv_type ==
  2750. HTT_PPDU_STATS_USR_COMPLTN_ACK_BA_STATUS_TLV)
  2751. return ppdu_info;
  2752. dp_ppdu_desc_deliver(pdev, ppdu_info);
  2753. } else {
  2754. return ppdu_info;
  2755. }
  2756. }
  2757. /**
  2758. * Flush the head ppdu descriptor if ppdu desc list reaches max
  2759. * threshold
  2760. */
  2761. if (pdev->list_depth > HTT_PPDU_DESC_MAX_DEPTH) {
  2762. ppdu_info = TAILQ_FIRST(&pdev->ppdu_info_list);
  2763. dp_ppdu_desc_deliver(pdev, ppdu_info);
  2764. }
  2765. /*
  2766. * Allocate new ppdu_info node
  2767. */
  2768. ppdu_info = qdf_mem_malloc(sizeof(struct ppdu_info));
  2769. if (!ppdu_info)
  2770. return NULL;
  2771. ppdu_info->nbuf = qdf_nbuf_alloc(pdev->soc->osdev,
  2772. sizeof(struct cdp_tx_completion_ppdu), 0, 4,
  2773. TRUE);
  2774. if (!ppdu_info->nbuf) {
  2775. qdf_mem_free(ppdu_info);
  2776. return NULL;
  2777. }
  2778. ppdu_info->ppdu_desc =
  2779. (struct cdp_tx_completion_ppdu *)qdf_nbuf_data(ppdu_info->nbuf);
  2780. qdf_mem_zero(qdf_nbuf_data(ppdu_info->nbuf),
  2781. sizeof(struct cdp_tx_completion_ppdu));
  2782. if (qdf_nbuf_put_tail(ppdu_info->nbuf,
  2783. sizeof(struct cdp_tx_completion_ppdu)) == NULL) {
  2784. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  2785. "No tailroom for HTT PPDU");
  2786. qdf_nbuf_free(ppdu_info->nbuf);
  2787. ppdu_info->nbuf = NULL;
  2788. ppdu_info->last_user = 0;
  2789. qdf_mem_free(ppdu_info);
  2790. return NULL;
  2791. }
  2792. /**
  2793. * No lock is needed because all PPDU TLVs are processed in
  2794. * same context and this list is updated in same context
  2795. */
  2796. TAILQ_INSERT_TAIL(&pdev->ppdu_info_list, ppdu_info,
  2797. ppdu_info_list_elem);
  2798. pdev->list_depth++;
  2799. return ppdu_info;
  2800. }
  2801. /**
  2802. * dp_htt_process_tlv(): Function to process each PPDU TLVs
  2803. * @pdev: DP pdev handle
  2804. * @htt_t2h_msg: HTT target to host message
  2805. *
  2806. * return: ppdu_info per ppdu tlv structure
  2807. */
  2808. static struct ppdu_info *dp_htt_process_tlv(struct dp_pdev *pdev,
  2809. qdf_nbuf_t htt_t2h_msg)
  2810. {
  2811. uint32_t length;
  2812. uint32_t ppdu_id;
  2813. uint8_t tlv_type;
  2814. uint32_t tlv_length, tlv_bitmap_expected;
  2815. uint8_t *tlv_buf;
  2816. struct ppdu_info *ppdu_info = NULL;
  2817. struct cdp_tx_completion_ppdu *ppdu_desc = NULL;
  2818. struct dp_peer *peer;
  2819. uint32_t i = 0;
  2820. uint32_t *msg_word = (uint32_t *) qdf_nbuf_data(htt_t2h_msg);
  2821. length = HTT_T2H_PPDU_STATS_PAYLOAD_SIZE_GET(*msg_word);
  2822. msg_word = msg_word + 1;
  2823. ppdu_id = HTT_T2H_PPDU_STATS_PPDU_ID_GET(*msg_word);
  2824. msg_word = msg_word + 3;
  2825. while (length > 0) {
  2826. tlv_buf = (uint8_t *)msg_word;
  2827. tlv_type = HTT_STATS_TLV_TAG_GET(*msg_word);
  2828. tlv_length = HTT_STATS_TLV_LENGTH_GET(*msg_word);
  2829. if (qdf_likely(tlv_type < CDP_PPDU_STATS_MAX_TAG))
  2830. pdev->stats.ppdu_stats_counter[tlv_type]++;
  2831. if (tlv_length == 0)
  2832. break;
  2833. tlv_length += HTT_TLV_HDR_LEN;
  2834. /**
  2835. * Not allocating separate ppdu descriptor for MGMT Payload
  2836. * TLV as this is sent as separate WDI indication and it
  2837. * doesn't contain any ppdu information
  2838. */
  2839. if (tlv_type == HTT_PPDU_STATS_TX_MGMTCTRL_PAYLOAD_TLV) {
  2840. pdev->mgmtctrl_frm_info.mgmt_buf = tlv_buf;
  2841. pdev->mgmtctrl_frm_info.ppdu_id = ppdu_id;
  2842. pdev->mgmtctrl_frm_info.mgmt_buf_len =
  2843. HTT_PPDU_STATS_TX_MGMTCTRL_TLV_FRAME_LENGTH_GET
  2844. (*(msg_word + 1));
  2845. msg_word =
  2846. (uint32_t *)((uint8_t *)tlv_buf + tlv_length);
  2847. length -= (tlv_length);
  2848. continue;
  2849. }
  2850. ppdu_info = dp_get_ppdu_desc(pdev, ppdu_id, tlv_type);
  2851. if (!ppdu_info)
  2852. return NULL;
  2853. ppdu_info->ppdu_id = ppdu_id;
  2854. ppdu_info->tlv_bitmap |= (1 << tlv_type);
  2855. dp_process_ppdu_tag(pdev, msg_word, tlv_length, ppdu_info);
  2856. /**
  2857. * Increment pdev level tlv count to monitor
  2858. * missing TLVs
  2859. */
  2860. pdev->tlv_count++;
  2861. ppdu_info->last_tlv_cnt = pdev->tlv_count;
  2862. msg_word = (uint32_t *)((uint8_t *)tlv_buf + tlv_length);
  2863. length -= (tlv_length);
  2864. }
  2865. if (!ppdu_info)
  2866. return NULL;
  2867. pdev->last_ppdu_id = ppdu_id;
  2868. tlv_bitmap_expected = HTT_PPDU_DEFAULT_TLV_BITMAP;
  2869. if (pdev->tx_sniffer_enable || pdev->mcopy_mode) {
  2870. if (ppdu_info->is_ampdu)
  2871. tlv_bitmap_expected =
  2872. dp_htt_get_ppdu_sniffer_ampdu_tlv_bitmap(
  2873. ppdu_info->tlv_bitmap);
  2874. }
  2875. ppdu_desc = ppdu_info->ppdu_desc;
  2876. if (!ppdu_desc)
  2877. return NULL;
  2878. if (ppdu_desc->user[ppdu_desc->last_usr_index].completion_status !=
  2879. HTT_PPDU_STATS_USER_STATUS_OK) {
  2880. tlv_bitmap_expected = tlv_bitmap_expected & 0xFF;
  2881. }
  2882. if (ppdu_desc->frame_type == CDP_PPDU_FTYPE_DATA &&
  2883. (ppdu_info->tlv_bitmap & (1 << HTT_PPDU_STATS_COMMON_TLV)) &&
  2884. ppdu_desc->delayed_ba) {
  2885. for (i = 0; i < ppdu_desc->num_users; i++) {
  2886. uint32_t ppdu_id;
  2887. ppdu_id = ppdu_desc->ppdu_id;
  2888. peer = dp_peer_find_by_id(pdev->soc,
  2889. ppdu_desc->user[i].peer_id);
  2890. /**
  2891. * This check is to make sure peer is not deleted
  2892. * after processing the TLVs.
  2893. */
  2894. if (!peer)
  2895. continue;
  2896. /**
  2897. * save delayed ba user info
  2898. */
  2899. if (ppdu_desc->user[i].delayed_ba) {
  2900. dp_peer_copy_delay_stats(peer,
  2901. &ppdu_desc->user[i]);
  2902. peer->last_delayed_ba_ppduid = ppdu_id;
  2903. }
  2904. dp_peer_unref_del_find_by_id(peer);
  2905. }
  2906. }
  2907. /*
  2908. * when frame type is BAR and STATS_COMMON_TLV is set
  2909. * copy the store peer delayed info to BAR status
  2910. */
  2911. if (ppdu_desc->frame_type == CDP_PPDU_FTYPE_BAR &&
  2912. (ppdu_info->tlv_bitmap & (1 << HTT_PPDU_STATS_COMMON_TLV))) {
  2913. for (i = 0; i < ppdu_desc->bar_num_users; i++) {
  2914. peer = dp_peer_find_by_id(pdev->soc,
  2915. ppdu_desc->user[i].peer_id);
  2916. /**
  2917. * This check is to make sure peer is not deleted
  2918. * after processing the TLVs.
  2919. */
  2920. if (!peer)
  2921. continue;
  2922. if (peer->last_delayed_ba) {
  2923. dp_peer_copy_stats_to_bar(peer,
  2924. &ppdu_desc->user[i]);
  2925. }
  2926. dp_peer_unref_del_find_by_id(peer);
  2927. }
  2928. }
  2929. /*
  2930. * for frame type DATA and BAR, we update stats based on MSDU,
  2931. * successful msdu and mpdu are populate from ACK BA STATUS TLV
  2932. * which comes out of order. successful mpdu also populated from
  2933. * COMPLTN COMMON TLV which comes in order. for every ppdu_info
  2934. * we store successful mpdu from both tlv and compare before delivering
  2935. * to make sure we received ACK BA STATUS TLV.
  2936. */
  2937. if (ppdu_desc->frame_type != CDP_PPDU_FTYPE_CTRL) {
  2938. /*
  2939. * successful mpdu count should match with both tlv
  2940. */
  2941. if (ppdu_info->mpdu_compltn_common_tlv !=
  2942. ppdu_info->mpdu_ack_ba_tlv)
  2943. return NULL;
  2944. }
  2945. /**
  2946. * Once all the TLVs for a given PPDU has been processed,
  2947. * return PPDU status to be delivered to higher layer
  2948. */
  2949. if (ppdu_info->tlv_bitmap != 0 &&
  2950. ppdu_info->tlv_bitmap == tlv_bitmap_expected)
  2951. return ppdu_info;
  2952. return NULL;
  2953. }
  2954. #endif /* FEATURE_PERPKT_INFO */
  2955. /**
  2956. * dp_txrx_ppdu_stats_handler() - Function to process HTT PPDU stats from FW
  2957. * @soc: DP SOC handle
  2958. * @pdev_id: pdev id
  2959. * @htt_t2h_msg: HTT message nbuf
  2960. *
  2961. * return:void
  2962. */
  2963. #if defined(WDI_EVENT_ENABLE)
  2964. #ifdef FEATURE_PERPKT_INFO
  2965. static bool dp_txrx_ppdu_stats_handler(struct dp_soc *soc,
  2966. uint8_t pdev_id, qdf_nbuf_t htt_t2h_msg)
  2967. {
  2968. struct dp_pdev *pdev = soc->pdev_list[pdev_id];
  2969. struct ppdu_info *ppdu_info = NULL;
  2970. bool free_buf = true;
  2971. if (!pdev)
  2972. return true;
  2973. if (!pdev->enhanced_stats_en && !pdev->tx_sniffer_enable &&
  2974. !pdev->mcopy_mode && !pdev->bpr_enable)
  2975. return free_buf;
  2976. ppdu_info = dp_htt_process_tlv(pdev, htt_t2h_msg);
  2977. if (pdev->mgmtctrl_frm_info.mgmt_buf) {
  2978. if (dp_process_ppdu_stats_tx_mgmtctrl_payload_tlv
  2979. (pdev, htt_t2h_msg, pdev->mgmtctrl_frm_info.ppdu_id) !=
  2980. QDF_STATUS_SUCCESS)
  2981. free_buf = false;
  2982. }
  2983. if (ppdu_info)
  2984. dp_ppdu_desc_deliver(pdev, ppdu_info);
  2985. pdev->mgmtctrl_frm_info.mgmt_buf = NULL;
  2986. pdev->mgmtctrl_frm_info.mgmt_buf_len = 0;
  2987. pdev->mgmtctrl_frm_info.ppdu_id = 0;
  2988. return free_buf;
  2989. }
  2990. #else
  2991. static bool dp_txrx_ppdu_stats_handler(struct dp_soc *soc,
  2992. uint8_t pdev_id, qdf_nbuf_t htt_t2h_msg)
  2993. {
  2994. return true;
  2995. }
  2996. #endif
  2997. #endif
  2998. /**
  2999. * dp_txrx_fw_stats_handler() - Function to process HTT EXT stats
  3000. * @soc: DP SOC handle
  3001. * @htt_t2h_msg: HTT message nbuf
  3002. *
  3003. * return:void
  3004. */
  3005. static inline void dp_txrx_fw_stats_handler(struct dp_soc *soc,
  3006. qdf_nbuf_t htt_t2h_msg)
  3007. {
  3008. uint8_t done;
  3009. qdf_nbuf_t msg_copy;
  3010. uint32_t *msg_word;
  3011. msg_word = (uint32_t *) qdf_nbuf_data(htt_t2h_msg);
  3012. msg_word = msg_word + 3;
  3013. done = HTT_T2H_EXT_STATS_CONF_TLV_DONE_GET(*msg_word);
  3014. /*
  3015. * HTT EXT stats response comes as stream of TLVs which span over
  3016. * multiple T2H messages.
  3017. * The first message will carry length of the response.
  3018. * For rest of the messages length will be zero.
  3019. *
  3020. * Clone the T2H message buffer and store it in a list to process
  3021. * it later.
  3022. *
  3023. * The original T2H message buffers gets freed in the T2H HTT event
  3024. * handler
  3025. */
  3026. msg_copy = qdf_nbuf_clone(htt_t2h_msg);
  3027. if (!msg_copy) {
  3028. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_INFO,
  3029. "T2H messge clone failed for HTT EXT STATS");
  3030. goto error;
  3031. }
  3032. qdf_spin_lock_bh(&soc->htt_stats.lock);
  3033. qdf_nbuf_queue_add(&soc->htt_stats.msg, msg_copy);
  3034. /*
  3035. * Done bit signifies that this is the last T2H buffer in the stream of
  3036. * HTT EXT STATS message
  3037. */
  3038. if (done) {
  3039. soc->htt_stats.num_stats++;
  3040. qdf_sched_work(0, &soc->htt_stats.work);
  3041. }
  3042. qdf_spin_unlock_bh(&soc->htt_stats.lock);
  3043. return;
  3044. error:
  3045. qdf_spin_lock_bh(&soc->htt_stats.lock);
  3046. while ((msg_copy = qdf_nbuf_queue_remove(&soc->htt_stats.msg))
  3047. != NULL) {
  3048. qdf_nbuf_free(msg_copy);
  3049. }
  3050. soc->htt_stats.num_stats = 0;
  3051. qdf_spin_unlock_bh(&soc->htt_stats.lock);
  3052. return;
  3053. }
  3054. /*
  3055. * htt_soc_attach_target() - SOC level HTT setup
  3056. * @htt_soc: HTT SOC handle
  3057. *
  3058. * Return: 0 on success; error code on failure
  3059. */
  3060. int htt_soc_attach_target(struct htt_soc *htt_soc)
  3061. {
  3062. struct htt_soc *soc = (struct htt_soc *)htt_soc;
  3063. return htt_h2t_ver_req_msg(soc);
  3064. }
  3065. void htt_set_htc_handle(struct htt_soc *htt_soc, HTC_HANDLE htc_soc)
  3066. {
  3067. htt_soc->htc_soc = htc_soc;
  3068. }
  3069. HTC_HANDLE htt_get_htc_handle(struct htt_soc *htt_soc)
  3070. {
  3071. return htt_soc->htc_soc;
  3072. }
  3073. struct htt_soc *htt_soc_attach(struct dp_soc *soc, HTC_HANDLE htc_handle)
  3074. {
  3075. int i;
  3076. int j;
  3077. int alloc_size = HTT_SW_UMAC_RING_IDX_MAX * sizeof(unsigned long);
  3078. struct htt_soc *htt_soc = NULL;
  3079. htt_soc = qdf_mem_malloc(sizeof(*htt_soc));
  3080. if (!htt_soc) {
  3081. dp_err("HTT attach failed");
  3082. return NULL;
  3083. }
  3084. for (i = 0; i < MAX_PDEV_CNT; i++) {
  3085. htt_soc->pdevid_tt[i].umac_ttt = qdf_mem_malloc(alloc_size);
  3086. if (!htt_soc->pdevid_tt[i].umac_ttt)
  3087. break;
  3088. qdf_mem_set(htt_soc->pdevid_tt[i].umac_ttt, alloc_size, -1);
  3089. htt_soc->pdevid_tt[i].lmac_ttt = qdf_mem_malloc(alloc_size);
  3090. if (!htt_soc->pdevid_tt[i].lmac_ttt) {
  3091. qdf_mem_free(htt_soc->pdevid_tt[i].umac_ttt);
  3092. break;
  3093. }
  3094. qdf_mem_set(htt_soc->pdevid_tt[i].lmac_ttt, alloc_size, -1);
  3095. }
  3096. if (i != MAX_PDEV_CNT) {
  3097. for (j = 0; j < i; j++) {
  3098. qdf_mem_free(htt_soc->pdevid_tt[i].umac_ttt);
  3099. qdf_mem_free(htt_soc->pdevid_tt[i].lmac_ttt);
  3100. }
  3101. return NULL;
  3102. }
  3103. htt_soc->dp_soc = soc;
  3104. htt_soc->htc_soc = htc_handle;
  3105. HTT_TX_MUTEX_INIT(&htt_soc->htt_tx_mutex);
  3106. return htt_soc;
  3107. }
  3108. #if defined(WDI_EVENT_ENABLE) && !defined(REMOVE_PKT_LOG)
  3109. /*
  3110. * dp_ppdu_stats_ind_handler() - PPDU stats msg handler
  3111. * @htt_soc: HTT SOC handle
  3112. * @msg_word: Pointer to payload
  3113. * @htt_t2h_msg: HTT msg nbuf
  3114. *
  3115. * Return: True if buffer should be freed by caller.
  3116. */
  3117. static bool
  3118. dp_ppdu_stats_ind_handler(struct htt_soc *soc,
  3119. uint32_t *msg_word,
  3120. qdf_nbuf_t htt_t2h_msg)
  3121. {
  3122. u_int8_t pdev_id;
  3123. bool free_buf;
  3124. qdf_nbuf_set_pktlen(htt_t2h_msg, HTT_T2H_MAX_MSG_SIZE);
  3125. pdev_id = HTT_T2H_PPDU_STATS_PDEV_ID_GET(*msg_word);
  3126. pdev_id = DP_HW2SW_MACID(pdev_id);
  3127. free_buf = dp_txrx_ppdu_stats_handler(soc->dp_soc, pdev_id,
  3128. htt_t2h_msg);
  3129. dp_wdi_event_handler(WDI_EVENT_LITE_T2H, soc->dp_soc,
  3130. htt_t2h_msg, HTT_INVALID_PEER, WDI_NO_VAL,
  3131. pdev_id);
  3132. return free_buf;
  3133. }
  3134. #else
  3135. static bool
  3136. dp_ppdu_stats_ind_handler(struct htt_soc *soc,
  3137. uint32_t *msg_word,
  3138. qdf_nbuf_t htt_t2h_msg)
  3139. {
  3140. return true;
  3141. }
  3142. #endif
  3143. #if defined(WDI_EVENT_ENABLE) && \
  3144. !defined(REMOVE_PKT_LOG)
  3145. /*
  3146. * dp_pktlog_msg_handler() - Pktlog msg handler
  3147. * @htt_soc: HTT SOC handle
  3148. * @msg_word: Pointer to payload
  3149. *
  3150. * Return: None
  3151. */
  3152. static void
  3153. dp_pktlog_msg_handler(struct htt_soc *soc,
  3154. uint32_t *msg_word)
  3155. {
  3156. uint8_t pdev_id;
  3157. uint32_t *pl_hdr;
  3158. pdev_id = HTT_T2H_PKTLOG_PDEV_ID_GET(*msg_word);
  3159. pdev_id = DP_HW2SW_MACID(pdev_id);
  3160. pl_hdr = (msg_word + 1);
  3161. dp_wdi_event_handler(WDI_EVENT_OFFLOAD_ALL, soc->dp_soc,
  3162. pl_hdr, HTT_INVALID_PEER, WDI_NO_VAL,
  3163. pdev_id);
  3164. }
  3165. #else
  3166. static void
  3167. dp_pktlog_msg_handler(struct htt_soc *soc,
  3168. uint32_t *msg_word)
  3169. {
  3170. }
  3171. #endif
  3172. /*
  3173. * time_allow_print() - time allow print
  3174. * @htt_ring_tt: ringi_id array of timestamps
  3175. * @ring_id: ring_id (index)
  3176. *
  3177. * Return: 1 for successfully saving timestamp in array
  3178. * and 0 for timestamp falling within 2 seconds after last one
  3179. */
  3180. static bool time_allow_print(unsigned long *htt_ring_tt, u_int8_t ring_id)
  3181. {
  3182. unsigned long tstamp;
  3183. unsigned long delta;
  3184. tstamp = qdf_get_system_timestamp();
  3185. if (!htt_ring_tt)
  3186. return 0; //unable to print backpressure messages
  3187. if (htt_ring_tt[ring_id] == -1) {
  3188. htt_ring_tt[ring_id] = tstamp;
  3189. return 1;
  3190. }
  3191. delta = tstamp - htt_ring_tt[ring_id];
  3192. if (delta >= 2000) {
  3193. htt_ring_tt[ring_id] = tstamp;
  3194. return 1;
  3195. }
  3196. return 0;
  3197. }
  3198. static void dp_htt_alert_print(enum htt_t2h_msg_type msg_type,
  3199. u_int8_t pdev_id, u_int8_t ring_id,
  3200. u_int16_t hp_idx, u_int16_t tp_idx,
  3201. u_int32_t bkp_time, char *ring_stype)
  3202. {
  3203. dp_alert("msg_type: %d pdev_id: %d ring_type: %s ",
  3204. msg_type, pdev_id, ring_stype);
  3205. dp_alert("ring_id: %d hp_idx: %d tp_idx: %d bkpressure_time_ms: %d ",
  3206. ring_id, hp_idx, tp_idx, bkp_time);
  3207. }
  3208. /*
  3209. * dp_htt_bkp_event_alert() - htt backpressure event alert
  3210. * @msg_word: htt packet context
  3211. * @htt_soc: HTT SOC handle
  3212. *
  3213. * Return: after attempting to print stats
  3214. */
  3215. static void dp_htt_bkp_event_alert(u_int32_t *msg_word, struct htt_soc *soc)
  3216. {
  3217. u_int8_t ring_type;
  3218. u_int8_t pdev_id;
  3219. u_int8_t ring_id;
  3220. u_int16_t hp_idx;
  3221. u_int16_t tp_idx;
  3222. u_int32_t bkp_time;
  3223. enum htt_t2h_msg_type msg_type;
  3224. struct dp_soc *dpsoc;
  3225. struct dp_pdev *pdev;
  3226. struct dp_htt_timestamp *radio_tt;
  3227. if (!soc)
  3228. return;
  3229. dpsoc = (struct dp_soc *)soc->dp_soc;
  3230. msg_type = HTT_T2H_MSG_TYPE_GET(*msg_word);
  3231. ring_type = HTT_T2H_RX_BKPRESSURE_RING_TYPE_GET(*msg_word);
  3232. pdev_id = HTT_T2H_RX_BKPRESSURE_PDEV_ID_GET(*msg_word);
  3233. pdev_id = DP_HW2SW_MACID(pdev_id);
  3234. pdev = (struct dp_pdev *)dpsoc->pdev_list[pdev_id];
  3235. ring_id = HTT_T2H_RX_BKPRESSURE_RINGID_GET(*msg_word);
  3236. hp_idx = HTT_T2H_RX_BKPRESSURE_HEAD_IDX_GET(*(msg_word + 1));
  3237. tp_idx = HTT_T2H_RX_BKPRESSURE_TAIL_IDX_GET(*(msg_word + 1));
  3238. bkp_time = HTT_T2H_RX_BKPRESSURE_TIME_MS_GET(*(msg_word + 2));
  3239. radio_tt = &soc->pdevid_tt[pdev_id];
  3240. switch (ring_type) {
  3241. case HTT_SW_RING_TYPE_UMAC:
  3242. if (!time_allow_print(radio_tt->umac_ttt, ring_id))
  3243. return;
  3244. dp_htt_alert_print(msg_type, pdev_id, ring_id, hp_idx, tp_idx,
  3245. bkp_time, "HTT_SW_RING_TYPE_LMAC");
  3246. break;
  3247. case HTT_SW_RING_TYPE_LMAC:
  3248. if (!time_allow_print(radio_tt->lmac_ttt, ring_id))
  3249. return;
  3250. dp_htt_alert_print(msg_type, pdev_id, ring_id, hp_idx, tp_idx,
  3251. bkp_time, "HTT_SW_RING_TYPE_LMAC");
  3252. break;
  3253. default:
  3254. dp_htt_alert_print(msg_type, pdev_id, ring_id, hp_idx, tp_idx,
  3255. bkp_time, "UNKNOWN");
  3256. break;
  3257. }
  3258. dp_print_ring_stats(pdev);
  3259. dp_print_napi_stats(pdev->soc);
  3260. }
  3261. /*
  3262. * dp_htt_t2h_msg_handler() - Generic Target to host Msg/event handler
  3263. * @context: Opaque context (HTT SOC handle)
  3264. * @pkt: HTC packet
  3265. */
  3266. static void dp_htt_t2h_msg_handler(void *context, HTC_PACKET *pkt)
  3267. {
  3268. struct htt_soc *soc = (struct htt_soc *) context;
  3269. qdf_nbuf_t htt_t2h_msg = (qdf_nbuf_t) pkt->pPktContext;
  3270. u_int32_t *msg_word;
  3271. enum htt_t2h_msg_type msg_type;
  3272. bool free_buf = true;
  3273. /* check for successful message reception */
  3274. if (pkt->Status != QDF_STATUS_SUCCESS) {
  3275. if (pkt->Status != QDF_STATUS_E_CANCELED)
  3276. soc->stats.htc_err_cnt++;
  3277. qdf_nbuf_free(htt_t2h_msg);
  3278. return;
  3279. }
  3280. /* TODO: Check if we should pop the HTC/HTT header alignment padding */
  3281. msg_word = (u_int32_t *) qdf_nbuf_data(htt_t2h_msg);
  3282. msg_type = HTT_T2H_MSG_TYPE_GET(*msg_word);
  3283. htt_event_record(soc->htt_logger_handle,
  3284. msg_type, (uint8_t *)msg_word);
  3285. switch (msg_type) {
  3286. case HTT_T2H_MSG_TYPE_BKPRESSURE_EVENT_IND:
  3287. {
  3288. dp_htt_bkp_event_alert(msg_word, soc);
  3289. break;
  3290. }
  3291. case HTT_T2H_MSG_TYPE_PEER_MAP:
  3292. {
  3293. u_int8_t mac_addr_deswizzle_buf[QDF_MAC_ADDR_SIZE];
  3294. u_int8_t *peer_mac_addr;
  3295. u_int16_t peer_id;
  3296. u_int16_t hw_peer_id;
  3297. u_int8_t vdev_id;
  3298. u_int8_t is_wds;
  3299. struct dp_soc *dpsoc = (struct dp_soc *)soc->dp_soc;
  3300. peer_id = HTT_RX_PEER_MAP_PEER_ID_GET(*msg_word);
  3301. hw_peer_id =
  3302. HTT_RX_PEER_MAP_HW_PEER_ID_GET(*(msg_word+2));
  3303. vdev_id = HTT_RX_PEER_MAP_VDEV_ID_GET(*msg_word);
  3304. peer_mac_addr = htt_t2h_mac_addr_deswizzle(
  3305. (u_int8_t *) (msg_word+1),
  3306. &mac_addr_deswizzle_buf[0]);
  3307. QDF_TRACE(QDF_MODULE_ID_TXRX,
  3308. QDF_TRACE_LEVEL_INFO,
  3309. "HTT_T2H_MSG_TYPE_PEER_MAP msg for peer id %d vdev id %d n",
  3310. peer_id, vdev_id);
  3311. /*
  3312. * check if peer already exists for this peer_id, if so
  3313. * this peer map event is in response for a wds peer add
  3314. * wmi command sent during wds source port learning.
  3315. * in this case just add the ast entry to the existing
  3316. * peer ast_list.
  3317. */
  3318. is_wds = !!(dpsoc->peer_id_to_obj_map[peer_id]);
  3319. dp_rx_peer_map_handler(soc->dp_soc, peer_id, hw_peer_id,
  3320. vdev_id, peer_mac_addr, 0,
  3321. is_wds);
  3322. break;
  3323. }
  3324. case HTT_T2H_MSG_TYPE_PEER_UNMAP:
  3325. {
  3326. u_int16_t peer_id;
  3327. u_int8_t vdev_id;
  3328. u_int8_t mac_addr[QDF_MAC_ADDR_SIZE] = {0};
  3329. peer_id = HTT_RX_PEER_UNMAP_PEER_ID_GET(*msg_word);
  3330. vdev_id = HTT_RX_PEER_UNMAP_VDEV_ID_GET(*msg_word);
  3331. dp_rx_peer_unmap_handler(soc->dp_soc, peer_id,
  3332. vdev_id, mac_addr, 0);
  3333. break;
  3334. }
  3335. case HTT_T2H_MSG_TYPE_SEC_IND:
  3336. {
  3337. u_int16_t peer_id;
  3338. enum cdp_sec_type sec_type;
  3339. int is_unicast;
  3340. peer_id = HTT_SEC_IND_PEER_ID_GET(*msg_word);
  3341. sec_type = HTT_SEC_IND_SEC_TYPE_GET(*msg_word);
  3342. is_unicast = HTT_SEC_IND_UNICAST_GET(*msg_word);
  3343. /* point to the first part of the Michael key */
  3344. msg_word++;
  3345. dp_rx_sec_ind_handler(
  3346. soc->dp_soc, peer_id, sec_type, is_unicast,
  3347. msg_word, msg_word + 2);
  3348. break;
  3349. }
  3350. case HTT_T2H_MSG_TYPE_PPDU_STATS_IND:
  3351. {
  3352. free_buf = dp_ppdu_stats_ind_handler(soc, msg_word,
  3353. htt_t2h_msg);
  3354. break;
  3355. }
  3356. case HTT_T2H_MSG_TYPE_PKTLOG:
  3357. {
  3358. dp_pktlog_msg_handler(soc, msg_word);
  3359. break;
  3360. }
  3361. case HTT_T2H_MSG_TYPE_VERSION_CONF:
  3362. {
  3363. htc_pm_runtime_put(soc->htc_soc);
  3364. soc->tgt_ver.major = HTT_VER_CONF_MAJOR_GET(*msg_word);
  3365. soc->tgt_ver.minor = HTT_VER_CONF_MINOR_GET(*msg_word);
  3366. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_INFO_HIGH,
  3367. "target uses HTT version %d.%d; host uses %d.%d",
  3368. soc->tgt_ver.major, soc->tgt_ver.minor,
  3369. HTT_CURRENT_VERSION_MAJOR,
  3370. HTT_CURRENT_VERSION_MINOR);
  3371. if (soc->tgt_ver.major != HTT_CURRENT_VERSION_MAJOR) {
  3372. QDF_TRACE(QDF_MODULE_ID_TXRX,
  3373. QDF_TRACE_LEVEL_ERROR,
  3374. "*** Incompatible host/target HTT versions!");
  3375. }
  3376. /* abort if the target is incompatible with the host */
  3377. qdf_assert(soc->tgt_ver.major ==
  3378. HTT_CURRENT_VERSION_MAJOR);
  3379. if (soc->tgt_ver.minor != HTT_CURRENT_VERSION_MINOR) {
  3380. QDF_TRACE(QDF_MODULE_ID_TXRX,
  3381. QDF_TRACE_LEVEL_WARN,
  3382. "*** Warning: host/target HTT versions"
  3383. " are different, though compatible!");
  3384. }
  3385. break;
  3386. }
  3387. case HTT_T2H_MSG_TYPE_RX_ADDBA:
  3388. {
  3389. uint16_t peer_id;
  3390. uint8_t tid;
  3391. uint8_t win_sz;
  3392. uint16_t status;
  3393. struct dp_peer *peer;
  3394. /*
  3395. * Update REO Queue Desc with new values
  3396. */
  3397. peer_id = HTT_RX_ADDBA_PEER_ID_GET(*msg_word);
  3398. tid = HTT_RX_ADDBA_TID_GET(*msg_word);
  3399. win_sz = HTT_RX_ADDBA_WIN_SIZE_GET(*msg_word);
  3400. peer = dp_peer_find_by_id(soc->dp_soc, peer_id);
  3401. /*
  3402. * Window size needs to be incremented by 1
  3403. * since fw needs to represent a value of 256
  3404. * using just 8 bits
  3405. */
  3406. if (peer) {
  3407. status = dp_addba_requestprocess_wifi3(peer,
  3408. 0, tid, 0, win_sz + 1, 0xffff);
  3409. /*
  3410. * If PEER_LOCK_REF_PROTECT enbled dec ref
  3411. * which is inc by dp_peer_find_by_id
  3412. */
  3413. dp_peer_unref_del_find_by_id(peer);
  3414. QDF_TRACE(QDF_MODULE_ID_TXRX,
  3415. QDF_TRACE_LEVEL_INFO,
  3416. FL("PeerID %d BAW %d TID %d stat %d"),
  3417. peer_id, win_sz, tid, status);
  3418. } else {
  3419. QDF_TRACE(QDF_MODULE_ID_TXRX,
  3420. QDF_TRACE_LEVEL_ERROR,
  3421. FL("Peer not found peer id %d"),
  3422. peer_id);
  3423. }
  3424. break;
  3425. }
  3426. case HTT_T2H_MSG_TYPE_EXT_STATS_CONF:
  3427. {
  3428. dp_txrx_fw_stats_handler(soc->dp_soc, htt_t2h_msg);
  3429. break;
  3430. }
  3431. case HTT_T2H_MSG_TYPE_PEER_MAP_V2:
  3432. {
  3433. u_int8_t mac_addr_deswizzle_buf[QDF_MAC_ADDR_SIZE];
  3434. u_int8_t *peer_mac_addr;
  3435. u_int16_t peer_id;
  3436. u_int16_t hw_peer_id;
  3437. u_int8_t vdev_id;
  3438. bool is_wds;
  3439. u_int16_t ast_hash;
  3440. peer_id = HTT_RX_PEER_MAP_V2_SW_PEER_ID_GET(*msg_word);
  3441. hw_peer_id =
  3442. HTT_RX_PEER_MAP_V2_HW_PEER_ID_GET(*(msg_word + 2));
  3443. vdev_id = HTT_RX_PEER_MAP_V2_VDEV_ID_GET(*msg_word);
  3444. peer_mac_addr =
  3445. htt_t2h_mac_addr_deswizzle((u_int8_t *)(msg_word + 1),
  3446. &mac_addr_deswizzle_buf[0]);
  3447. is_wds =
  3448. HTT_RX_PEER_MAP_V2_NEXT_HOP_GET(*(msg_word + 3));
  3449. ast_hash =
  3450. HTT_RX_PEER_MAP_V2_AST_HASH_VALUE_GET(*(msg_word + 3));
  3451. QDF_TRACE(QDF_MODULE_ID_TXRX,
  3452. QDF_TRACE_LEVEL_INFO,
  3453. "HTT_T2H_MSG_TYPE_PEER_MAP msg for peer id %d vdev id %d n",
  3454. peer_id, vdev_id);
  3455. dp_rx_peer_map_handler(soc->dp_soc, peer_id,
  3456. hw_peer_id, vdev_id,
  3457. peer_mac_addr, ast_hash,
  3458. is_wds);
  3459. break;
  3460. }
  3461. case HTT_T2H_MSG_TYPE_PEER_UNMAP_V2:
  3462. {
  3463. u_int8_t mac_addr_deswizzle_buf[QDF_MAC_ADDR_SIZE];
  3464. u_int8_t *mac_addr;
  3465. u_int16_t peer_id;
  3466. u_int8_t vdev_id;
  3467. u_int8_t is_wds;
  3468. peer_id =
  3469. HTT_RX_PEER_UNMAP_V2_SW_PEER_ID_GET(*msg_word);
  3470. vdev_id = HTT_RX_PEER_UNMAP_V2_VDEV_ID_GET(*msg_word);
  3471. mac_addr =
  3472. htt_t2h_mac_addr_deswizzle((u_int8_t *)(msg_word + 1),
  3473. &mac_addr_deswizzle_buf[0]);
  3474. is_wds =
  3475. HTT_RX_PEER_UNMAP_V2_NEXT_HOP_GET(*(msg_word + 2));
  3476. QDF_TRACE(QDF_MODULE_ID_TXRX,
  3477. QDF_TRACE_LEVEL_INFO,
  3478. "HTT_T2H_MSG_TYPE_PEER_UNMAP msg for peer id %d vdev id %d n",
  3479. peer_id, vdev_id);
  3480. dp_rx_peer_unmap_handler(soc->dp_soc, peer_id,
  3481. vdev_id, mac_addr,
  3482. is_wds);
  3483. break;
  3484. }
  3485. default:
  3486. break;
  3487. };
  3488. /* Free the indication buffer */
  3489. if (free_buf)
  3490. qdf_nbuf_free(htt_t2h_msg);
  3491. }
  3492. /*
  3493. * dp_htt_h2t_full() - Send full handler (called from HTC)
  3494. * @context: Opaque context (HTT SOC handle)
  3495. * @pkt: HTC packet
  3496. *
  3497. * Return: enum htc_send_full_action
  3498. */
  3499. static enum htc_send_full_action
  3500. dp_htt_h2t_full(void *context, HTC_PACKET *pkt)
  3501. {
  3502. return HTC_SEND_FULL_KEEP;
  3503. }
  3504. /*
  3505. * dp_htt_hif_t2h_hp_callback() - HIF callback for high priority T2H messages
  3506. * @context: Opaque context (HTT SOC handle)
  3507. * @nbuf: nbuf containing T2H message
  3508. * @pipe_id: HIF pipe ID
  3509. *
  3510. * Return: QDF_STATUS
  3511. *
  3512. * TODO: Temporary change to bypass HTC connection for this new HIF pipe, which
  3513. * will be used for packet log and other high-priority HTT messages. Proper
  3514. * HTC connection to be added later once required FW changes are available
  3515. */
  3516. static QDF_STATUS
  3517. dp_htt_hif_t2h_hp_callback (void *context, qdf_nbuf_t nbuf, uint8_t pipe_id)
  3518. {
  3519. QDF_STATUS rc = QDF_STATUS_SUCCESS;
  3520. HTC_PACKET htc_pkt;
  3521. qdf_assert_always(pipe_id == DP_HTT_T2H_HP_PIPE);
  3522. qdf_mem_zero(&htc_pkt, sizeof(htc_pkt));
  3523. htc_pkt.Status = QDF_STATUS_SUCCESS;
  3524. htc_pkt.pPktContext = (void *)nbuf;
  3525. dp_htt_t2h_msg_handler(context, &htc_pkt);
  3526. return rc;
  3527. }
  3528. /*
  3529. * htt_htc_soc_attach() - Register SOC level HTT instance with HTC
  3530. * @htt_soc: HTT SOC handle
  3531. *
  3532. * Return: QDF_STATUS
  3533. */
  3534. static QDF_STATUS
  3535. htt_htc_soc_attach(struct htt_soc *soc)
  3536. {
  3537. struct htc_service_connect_req connect;
  3538. struct htc_service_connect_resp response;
  3539. QDF_STATUS status;
  3540. struct dp_soc *dpsoc = soc->dp_soc;
  3541. qdf_mem_zero(&connect, sizeof(connect));
  3542. qdf_mem_zero(&response, sizeof(response));
  3543. connect.pMetaData = NULL;
  3544. connect.MetaDataLength = 0;
  3545. connect.EpCallbacks.pContext = soc;
  3546. connect.EpCallbacks.EpTxComplete = dp_htt_h2t_send_complete;
  3547. connect.EpCallbacks.EpTxCompleteMultiple = NULL;
  3548. connect.EpCallbacks.EpRecv = dp_htt_t2h_msg_handler;
  3549. /* rx buffers currently are provided by HIF, not by EpRecvRefill */
  3550. connect.EpCallbacks.EpRecvRefill = NULL;
  3551. /* N/A, fill is done by HIF */
  3552. connect.EpCallbacks.RecvRefillWaterMark = 1;
  3553. connect.EpCallbacks.EpSendFull = dp_htt_h2t_full;
  3554. /*
  3555. * Specify how deep to let a queue get before htc_send_pkt will
  3556. * call the EpSendFull function due to excessive send queue depth.
  3557. */
  3558. connect.MaxSendQueueDepth = DP_HTT_MAX_SEND_QUEUE_DEPTH;
  3559. /* disable flow control for HTT data message service */
  3560. connect.ConnectionFlags |= HTC_CONNECT_FLAGS_DISABLE_CREDIT_FLOW_CTRL;
  3561. /* connect to control service */
  3562. connect.service_id = HTT_DATA_MSG_SVC;
  3563. status = htc_connect_service(soc->htc_soc, &connect, &response);
  3564. if (status != QDF_STATUS_SUCCESS)
  3565. return status;
  3566. soc->htc_endpoint = response.Endpoint;
  3567. hif_save_htc_htt_config_endpoint(dpsoc->hif_handle, soc->htc_endpoint);
  3568. htt_interface_logging_init(&soc->htt_logger_handle);
  3569. dp_hif_update_pipe_callback(soc->dp_soc, (void *)soc,
  3570. dp_htt_hif_t2h_hp_callback, DP_HTT_T2H_HP_PIPE);
  3571. return QDF_STATUS_SUCCESS; /* success */
  3572. }
  3573. /*
  3574. * htt_soc_initialize() - SOC level HTT initialization
  3575. * @htt_soc: Opaque htt SOC handle
  3576. * @ctrl_psoc: Opaque ctrl SOC handle
  3577. * @htc_soc: SOC level HTC handle
  3578. * @hal_soc: Opaque HAL SOC handle
  3579. * @osdev: QDF device
  3580. *
  3581. * Return: HTT handle on success; NULL on failure
  3582. */
  3583. void *
  3584. htt_soc_initialize(struct htt_soc *htt_soc,
  3585. struct cdp_ctrl_objmgr_psoc *ctrl_psoc,
  3586. HTC_HANDLE htc_soc,
  3587. hal_soc_handle_t hal_soc_hdl, qdf_device_t osdev)
  3588. {
  3589. struct htt_soc *soc = (struct htt_soc *)htt_soc;
  3590. soc->osdev = osdev;
  3591. soc->ctrl_psoc = ctrl_psoc;
  3592. soc->htc_soc = htc_soc;
  3593. soc->hal_soc = hal_soc_hdl;
  3594. if (htt_htc_soc_attach(soc))
  3595. goto fail2;
  3596. return soc;
  3597. fail2:
  3598. return NULL;
  3599. }
  3600. void htt_soc_htc_dealloc(struct htt_soc *htt_handle)
  3601. {
  3602. htt_interface_logging_deinit(htt_handle->htt_logger_handle);
  3603. htt_htc_misc_pkt_pool_free(htt_handle);
  3604. htt_htc_pkt_pool_free(htt_handle);
  3605. }
  3606. /*
  3607. * htt_soc_htc_prealloc() - HTC memory prealloc
  3608. * @htt_soc: SOC level HTT handle
  3609. *
  3610. * Return: QDF_STATUS_SUCCESS on Success or
  3611. * QDF_STATUS_E_NOMEM on allocation failure
  3612. */
  3613. QDF_STATUS htt_soc_htc_prealloc(struct htt_soc *soc)
  3614. {
  3615. int i;
  3616. soc->htt_htc_pkt_freelist = NULL;
  3617. /* pre-allocate some HTC_PACKET objects */
  3618. for (i = 0; i < HTT_HTC_PKT_POOL_INIT_SIZE; i++) {
  3619. struct dp_htt_htc_pkt_union *pkt;
  3620. pkt = qdf_mem_malloc(sizeof(*pkt));
  3621. if (!pkt)
  3622. return QDF_STATUS_E_NOMEM;
  3623. htt_htc_pkt_free(soc, &pkt->u.pkt);
  3624. }
  3625. return QDF_STATUS_SUCCESS;
  3626. }
  3627. /*
  3628. * htt_soc_detach() - Free SOC level HTT handle
  3629. * @htt_hdl: HTT SOC handle
  3630. */
  3631. void htt_soc_detach(struct htt_soc *htt_hdl)
  3632. {
  3633. int i;
  3634. struct htt_soc *htt_handle = (struct htt_soc *)htt_hdl;
  3635. for (i = 0; i < MAX_PDEV_CNT; i++) {
  3636. qdf_mem_free(htt_handle->pdevid_tt[i].umac_ttt);
  3637. qdf_mem_free(htt_handle->pdevid_tt[i].lmac_ttt);
  3638. }
  3639. HTT_TX_MUTEX_DESTROY(&htt_handle->htt_tx_mutex);
  3640. qdf_mem_free(htt_handle);
  3641. }
  3642. /**
  3643. * dp_h2t_ext_stats_msg_send(): function to contruct HTT message to pass to FW
  3644. * @pdev: DP PDEV handle
  3645. * @stats_type_upload_mask: stats type requested by user
  3646. * @config_param_0: extra configuration parameters
  3647. * @config_param_1: extra configuration parameters
  3648. * @config_param_2: extra configuration parameters
  3649. * @config_param_3: extra configuration parameters
  3650. * @mac_id: mac number
  3651. *
  3652. * return: QDF STATUS
  3653. */
  3654. QDF_STATUS dp_h2t_ext_stats_msg_send(struct dp_pdev *pdev,
  3655. uint32_t stats_type_upload_mask, uint32_t config_param_0,
  3656. uint32_t config_param_1, uint32_t config_param_2,
  3657. uint32_t config_param_3, int cookie_val, int cookie_msb,
  3658. uint8_t mac_id)
  3659. {
  3660. struct htt_soc *soc = pdev->soc->htt_handle;
  3661. struct dp_htt_htc_pkt *pkt;
  3662. qdf_nbuf_t msg;
  3663. uint32_t *msg_word;
  3664. uint8_t pdev_mask = 0;
  3665. uint8_t *htt_logger_bufp;
  3666. msg = qdf_nbuf_alloc(
  3667. soc->osdev,
  3668. HTT_MSG_BUF_SIZE(HTT_H2T_EXT_STATS_REQ_MSG_SZ),
  3669. HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING, 4, TRUE);
  3670. if (!msg)
  3671. return QDF_STATUS_E_NOMEM;
  3672. /*TODO:Add support for SOC stats
  3673. * Bit 0: SOC Stats
  3674. * Bit 1: Pdev stats for pdev id 0
  3675. * Bit 2: Pdev stats for pdev id 1
  3676. * Bit 3: Pdev stats for pdev id 2
  3677. */
  3678. mac_id = dp_get_mac_id_for_pdev(mac_id, pdev->pdev_id);
  3679. pdev_mask = 1 << DP_SW2HW_MACID(mac_id);
  3680. /*
  3681. * Set the length of the message.
  3682. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  3683. * separately during the below call to qdf_nbuf_push_head.
  3684. * The contribution from the HTC header is added separately inside HTC.
  3685. */
  3686. if (qdf_nbuf_put_tail(msg, HTT_H2T_EXT_STATS_REQ_MSG_SZ) == NULL) {
  3687. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  3688. "Failed to expand head for HTT_EXT_STATS");
  3689. qdf_nbuf_free(msg);
  3690. return QDF_STATUS_E_FAILURE;
  3691. }
  3692. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
  3693. "-----%s:%d----\n cookie <-> %d\n config_param_0 %u\n"
  3694. "config_param_1 %u\n config_param_2 %u\n"
  3695. "config_param_4 %u\n -------------",
  3696. __func__, __LINE__, cookie_val, config_param_0,
  3697. config_param_1, config_param_2, config_param_3);
  3698. msg_word = (uint32_t *) qdf_nbuf_data(msg);
  3699. qdf_nbuf_push_head(msg, HTC_HDR_ALIGNMENT_PADDING);
  3700. htt_logger_bufp = (uint8_t *)msg_word;
  3701. *msg_word = 0;
  3702. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_EXT_STATS_REQ);
  3703. HTT_H2T_EXT_STATS_REQ_PDEV_MASK_SET(*msg_word, pdev_mask);
  3704. HTT_H2T_EXT_STATS_REQ_STATS_TYPE_SET(*msg_word, stats_type_upload_mask);
  3705. /* word 1 */
  3706. msg_word++;
  3707. *msg_word = 0;
  3708. HTT_H2T_EXT_STATS_REQ_CONFIG_PARAM_SET(*msg_word, config_param_0);
  3709. /* word 2 */
  3710. msg_word++;
  3711. *msg_word = 0;
  3712. HTT_H2T_EXT_STATS_REQ_CONFIG_PARAM_SET(*msg_word, config_param_1);
  3713. /* word 3 */
  3714. msg_word++;
  3715. *msg_word = 0;
  3716. HTT_H2T_EXT_STATS_REQ_CONFIG_PARAM_SET(*msg_word, config_param_2);
  3717. /* word 4 */
  3718. msg_word++;
  3719. *msg_word = 0;
  3720. HTT_H2T_EXT_STATS_REQ_CONFIG_PARAM_SET(*msg_word, config_param_3);
  3721. HTT_H2T_EXT_STATS_REQ_CONFIG_PARAM_SET(*msg_word, 0);
  3722. /* word 5 */
  3723. msg_word++;
  3724. /* word 6 */
  3725. msg_word++;
  3726. *msg_word = 0;
  3727. HTT_H2T_EXT_STATS_REQ_CONFIG_PARAM_SET(*msg_word, cookie_val);
  3728. /* word 7 */
  3729. msg_word++;
  3730. *msg_word = 0;
  3731. /*Using last 2 bits for pdev_id */
  3732. cookie_msb = ((cookie_msb << 2) | pdev->pdev_id);
  3733. HTT_H2T_EXT_STATS_REQ_CONFIG_PARAM_SET(*msg_word, cookie_msb);
  3734. pkt = htt_htc_pkt_alloc(soc);
  3735. if (!pkt) {
  3736. qdf_nbuf_free(msg);
  3737. return QDF_STATUS_E_NOMEM;
  3738. }
  3739. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  3740. SET_HTC_PACKET_INFO_TX(&pkt->htc_pkt,
  3741. dp_htt_h2t_send_complete_free_netbuf,
  3742. qdf_nbuf_data(msg), qdf_nbuf_len(msg),
  3743. soc->htc_endpoint,
  3744. /* tag for FW response msg not guaranteed */
  3745. HTC_TX_PACKET_TAG_RUNTIME_PUT);
  3746. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, msg);
  3747. DP_HTT_SEND_HTC_PKT(soc, pkt, HTT_H2T_MSG_TYPE_EXT_STATS_REQ,
  3748. htt_logger_bufp);
  3749. return 0;
  3750. }
  3751. /* This macro will revert once proper HTT header will define for
  3752. * HTT_H2T_MSG_TYPE_PPDU_STATS_CFG in htt.h file
  3753. * */
  3754. #if defined(WDI_EVENT_ENABLE)
  3755. /**
  3756. * dp_h2t_cfg_stats_msg_send(): function to construct HTT message to pass to FW
  3757. * @pdev: DP PDEV handle
  3758. * @stats_type_upload_mask: stats type requested by user
  3759. * @mac_id: Mac id number
  3760. *
  3761. * return: QDF STATUS
  3762. */
  3763. QDF_STATUS dp_h2t_cfg_stats_msg_send(struct dp_pdev *pdev,
  3764. uint32_t stats_type_upload_mask, uint8_t mac_id)
  3765. {
  3766. struct htt_soc *soc = pdev->soc->htt_handle;
  3767. struct dp_htt_htc_pkt *pkt;
  3768. qdf_nbuf_t msg;
  3769. uint32_t *msg_word;
  3770. uint8_t pdev_mask;
  3771. msg = qdf_nbuf_alloc(
  3772. soc->osdev,
  3773. HTT_MSG_BUF_SIZE(HTT_H2T_PPDU_STATS_CFG_MSG_SZ),
  3774. HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING, 4, true);
  3775. if (!msg) {
  3776. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
  3777. "Fail to allocate HTT_H2T_PPDU_STATS_CFG_MSG_SZ msg buffer");
  3778. qdf_assert(0);
  3779. return QDF_STATUS_E_NOMEM;
  3780. }
  3781. /*TODO:Add support for SOC stats
  3782. * Bit 0: SOC Stats
  3783. * Bit 1: Pdev stats for pdev id 0
  3784. * Bit 2: Pdev stats for pdev id 1
  3785. * Bit 3: Pdev stats for pdev id 2
  3786. */
  3787. pdev_mask = 1 << DP_SW2HW_MACID(mac_id);
  3788. /*
  3789. * Set the length of the message.
  3790. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  3791. * separately during the below call to qdf_nbuf_push_head.
  3792. * The contribution from the HTC header is added separately inside HTC.
  3793. */
  3794. if (qdf_nbuf_put_tail(msg, HTT_H2T_PPDU_STATS_CFG_MSG_SZ) == NULL) {
  3795. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
  3796. "Failed to expand head for HTT_CFG_STATS");
  3797. qdf_nbuf_free(msg);
  3798. return QDF_STATUS_E_FAILURE;
  3799. }
  3800. msg_word = (uint32_t *) qdf_nbuf_data(msg);
  3801. qdf_nbuf_push_head(msg, HTC_HDR_ALIGNMENT_PADDING);
  3802. *msg_word = 0;
  3803. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_PPDU_STATS_CFG);
  3804. HTT_H2T_PPDU_STATS_CFG_PDEV_MASK_SET(*msg_word, pdev_mask);
  3805. HTT_H2T_PPDU_STATS_CFG_TLV_BITMASK_SET(*msg_word,
  3806. stats_type_upload_mask);
  3807. pkt = htt_htc_pkt_alloc(soc);
  3808. if (!pkt) {
  3809. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
  3810. "Fail to allocate dp_htt_htc_pkt buffer");
  3811. qdf_assert(0);
  3812. qdf_nbuf_free(msg);
  3813. return QDF_STATUS_E_NOMEM;
  3814. }
  3815. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  3816. SET_HTC_PACKET_INFO_TX(&pkt->htc_pkt,
  3817. dp_htt_h2t_send_complete_free_netbuf,
  3818. qdf_nbuf_data(msg), qdf_nbuf_len(msg),
  3819. soc->htc_endpoint,
  3820. 1); /* tag - not relevant here */
  3821. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, msg);
  3822. DP_HTT_SEND_HTC_PKT(soc, pkt, HTT_H2T_MSG_TYPE_PPDU_STATS_CFG,
  3823. (uint8_t *)msg_word);
  3824. return 0;
  3825. }
  3826. #endif
  3827. void
  3828. dp_peer_update_inactive_time(struct dp_pdev *pdev, uint32_t tag_type,
  3829. uint32_t *tag_buf)
  3830. {
  3831. switch (tag_type) {
  3832. case HTT_STATS_PEER_DETAILS_TAG:
  3833. {
  3834. htt_peer_details_tlv *dp_stats_buf =
  3835. (htt_peer_details_tlv *)tag_buf;
  3836. pdev->fw_stats_peer_id = dp_stats_buf->sw_peer_id;
  3837. }
  3838. break;
  3839. case HTT_STATS_PEER_STATS_CMN_TAG:
  3840. {
  3841. htt_peer_stats_cmn_tlv *dp_stats_buf =
  3842. (htt_peer_stats_cmn_tlv *)tag_buf;
  3843. struct dp_peer *peer = dp_peer_find_by_id(pdev->soc,
  3844. pdev->fw_stats_peer_id);
  3845. if (peer && !peer->bss_peer) {
  3846. peer->stats.tx.inactive_time =
  3847. dp_stats_buf->inactive_time;
  3848. qdf_event_set(&pdev->fw_peer_stats_event);
  3849. }
  3850. if (peer)
  3851. dp_peer_unref_del_find_by_id(peer);
  3852. }
  3853. break;
  3854. default:
  3855. qdf_err("Invalid tag_type");
  3856. }
  3857. }
  3858. /**
  3859. * dp_htt_rx_flow_fst_setup(): Send HTT Rx FST setup message to FW
  3860. * @pdev: DP pdev handle
  3861. * @fse_setup_info: FST setup parameters
  3862. *
  3863. * Return: Success when HTT message is sent, error on failure
  3864. */
  3865. QDF_STATUS
  3866. dp_htt_rx_flow_fst_setup(struct dp_pdev *pdev,
  3867. struct dp_htt_rx_flow_fst_setup *fse_setup_info)
  3868. {
  3869. struct htt_soc *soc = pdev->soc->htt_handle;
  3870. struct dp_htt_htc_pkt *pkt;
  3871. qdf_nbuf_t msg;
  3872. u_int32_t *msg_word;
  3873. struct htt_h2t_msg_rx_fse_setup_t *fse_setup;
  3874. uint8_t *htt_logger_bufp;
  3875. u_int32_t *key;
  3876. msg = qdf_nbuf_alloc(
  3877. soc->osdev,
  3878. HTT_MSG_BUF_SIZE(sizeof(struct htt_h2t_msg_rx_fse_setup_t)),
  3879. /* reserve room for the HTC header */
  3880. HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING, 4, TRUE);
  3881. if (!msg)
  3882. return QDF_STATUS_E_NOMEM;
  3883. /*
  3884. * Set the length of the message.
  3885. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  3886. * separately during the below call to qdf_nbuf_push_head.
  3887. * The contribution from the HTC header is added separately inside HTC.
  3888. */
  3889. if (!qdf_nbuf_put_tail(msg,
  3890. sizeof(struct htt_h2t_msg_rx_fse_setup_t))) {
  3891. qdf_err("Failed to expand head for HTT RX_FSE_SETUP msg");
  3892. return QDF_STATUS_E_FAILURE;
  3893. }
  3894. /* fill in the message contents */
  3895. msg_word = (u_int32_t *)qdf_nbuf_data(msg);
  3896. memset(msg_word, 0, sizeof(struct htt_h2t_msg_rx_fse_setup_t));
  3897. /* rewind beyond alignment pad to get to the HTC header reserved area */
  3898. qdf_nbuf_push_head(msg, HTC_HDR_ALIGNMENT_PADDING);
  3899. htt_logger_bufp = (uint8_t *)msg_word;
  3900. *msg_word = 0;
  3901. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_RX_FSE_SETUP_CFG);
  3902. fse_setup = (struct htt_h2t_msg_rx_fse_setup_t *)msg_word;
  3903. HTT_RX_FSE_SETUP_PDEV_ID_SET(*msg_word, fse_setup_info->pdev_id);
  3904. msg_word++;
  3905. HTT_RX_FSE_SETUP_NUM_REC_SET(*msg_word, fse_setup_info->max_entries);
  3906. HTT_RX_FSE_SETUP_MAX_SEARCH_SET(*msg_word, fse_setup_info->max_search);
  3907. HTT_RX_FSE_SETUP_IP_DA_SA_PREFIX_SET(*msg_word,
  3908. fse_setup_info->ip_da_sa_prefix);
  3909. msg_word++;
  3910. HTT_RX_FSE_SETUP_BASE_ADDR_LO_SET(*msg_word,
  3911. fse_setup_info->base_addr_lo);
  3912. msg_word++;
  3913. HTT_RX_FSE_SETUP_BASE_ADDR_HI_SET(*msg_word,
  3914. fse_setup_info->base_addr_hi);
  3915. key = (u_int32_t *)fse_setup_info->hash_key;
  3916. fse_setup->toeplitz31_0 = *key++;
  3917. fse_setup->toeplitz63_32 = *key++;
  3918. fse_setup->toeplitz95_64 = *key++;
  3919. fse_setup->toeplitz127_96 = *key++;
  3920. fse_setup->toeplitz159_128 = *key++;
  3921. fse_setup->toeplitz191_160 = *key++;
  3922. fse_setup->toeplitz223_192 = *key++;
  3923. fse_setup->toeplitz255_224 = *key++;
  3924. fse_setup->toeplitz287_256 = *key++;
  3925. fse_setup->toeplitz314_288 = *key;
  3926. msg_word++;
  3927. HTT_RX_FSE_SETUP_HASH_VALUE_SET(*msg_word, fse_setup->toeplitz31_0);
  3928. msg_word++;
  3929. HTT_RX_FSE_SETUP_HASH_VALUE_SET(*msg_word, fse_setup->toeplitz63_32);
  3930. msg_word++;
  3931. HTT_RX_FSE_SETUP_HASH_VALUE_SET(*msg_word, fse_setup->toeplitz95_64);
  3932. msg_word++;
  3933. HTT_RX_FSE_SETUP_HASH_VALUE_SET(*msg_word, fse_setup->toeplitz127_96);
  3934. msg_word++;
  3935. HTT_RX_FSE_SETUP_HASH_VALUE_SET(*msg_word, fse_setup->toeplitz159_128);
  3936. msg_word++;
  3937. HTT_RX_FSE_SETUP_HASH_VALUE_SET(*msg_word, fse_setup->toeplitz191_160);
  3938. msg_word++;
  3939. HTT_RX_FSE_SETUP_HASH_VALUE_SET(*msg_word, fse_setup->toeplitz223_192);
  3940. msg_word++;
  3941. HTT_RX_FSE_SETUP_HASH_VALUE_SET(*msg_word, fse_setup->toeplitz255_224);
  3942. msg_word++;
  3943. HTT_RX_FSE_SETUP_HASH_VALUE_SET(*msg_word, fse_setup->toeplitz287_256);
  3944. msg_word++;
  3945. HTT_RX_FSE_SETUP_HASH_314_288_SET(*msg_word,
  3946. fse_setup->toeplitz314_288);
  3947. pkt = htt_htc_pkt_alloc(soc);
  3948. if (!pkt) {
  3949. qdf_err("Fail to allocate dp_htt_htc_pkt buffer");
  3950. qdf_assert(0);
  3951. qdf_nbuf_free(msg);
  3952. return QDF_STATUS_E_RESOURCES; /* failure */
  3953. }
  3954. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  3955. SET_HTC_PACKET_INFO_TX(
  3956. &pkt->htc_pkt,
  3957. dp_htt_h2t_send_complete_free_netbuf,
  3958. qdf_nbuf_data(msg),
  3959. qdf_nbuf_len(msg),
  3960. soc->htc_endpoint,
  3961. 1); /* tag - not relevant here */
  3962. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, msg);
  3963. DP_HTT_SEND_HTC_PKT(soc, pkt, HTT_H2T_MSG_TYPE_RX_FSE_SETUP_CFG,
  3964. htt_logger_bufp);
  3965. qdf_info("HTT_H2T RX_FSE_SETUP sent to FW for pdev = %u",
  3966. fse_setup_info->pdev_id);
  3967. QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_ANY, QDF_TRACE_LEVEL_DEBUG,
  3968. (void *)fse_setup_info->hash_key,
  3969. fse_setup_info->hash_key_len);
  3970. return QDF_STATUS_SUCCESS;
  3971. }
  3972. /**
  3973. * dp_htt_rx_flow_fse_operation(): Send HTT Flow Search Entry msg to
  3974. * add/del a flow in HW
  3975. * @pdev: DP pdev handle
  3976. * @fse_op_info: Flow entry parameters
  3977. *
  3978. * Return: Success when HTT message is sent, error on failure
  3979. */
  3980. QDF_STATUS
  3981. dp_htt_rx_flow_fse_operation(struct dp_pdev *pdev,
  3982. struct dp_htt_rx_flow_fst_operation *fse_op_info)
  3983. {
  3984. struct htt_soc *soc = pdev->soc->htt_handle;
  3985. struct dp_htt_htc_pkt *pkt;
  3986. qdf_nbuf_t msg;
  3987. u_int32_t *msg_word;
  3988. struct htt_h2t_msg_rx_fse_operation_t *fse_operation;
  3989. uint8_t *htt_logger_bufp;
  3990. msg = qdf_nbuf_alloc(
  3991. soc->osdev,
  3992. HTT_MSG_BUF_SIZE(sizeof(struct htt_h2t_msg_rx_fse_operation_t)),
  3993. /* reserve room for the HTC header */
  3994. HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING, 4, TRUE);
  3995. if (!msg)
  3996. return QDF_STATUS_E_NOMEM;
  3997. /*
  3998. * Set the length of the message.
  3999. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  4000. * separately during the below call to qdf_nbuf_push_head.
  4001. * The contribution from the HTC header is added separately inside HTC.
  4002. */
  4003. if (!qdf_nbuf_put_tail(msg,
  4004. sizeof(struct htt_h2t_msg_rx_fse_operation_t))) {
  4005. qdf_err("Failed to expand head for HTT_RX_FSE_OPERATION msg");
  4006. return QDF_STATUS_E_FAILURE;
  4007. }
  4008. /* fill in the message contents */
  4009. msg_word = (u_int32_t *)qdf_nbuf_data(msg);
  4010. memset(msg_word, 0, sizeof(struct htt_h2t_msg_rx_fse_operation_t));
  4011. /* rewind beyond alignment pad to get to the HTC header reserved area */
  4012. qdf_nbuf_push_head(msg, HTC_HDR_ALIGNMENT_PADDING);
  4013. htt_logger_bufp = (uint8_t *)msg_word;
  4014. *msg_word = 0;
  4015. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_RX_FSE_OPERATION_CFG);
  4016. fse_operation = (struct htt_h2t_msg_rx_fse_operation_t *)msg_word;
  4017. HTT_RX_FSE_OPERATION_PDEV_ID_SET(*msg_word, fse_op_info->pdev_id);
  4018. msg_word++;
  4019. HTT_RX_FSE_IPSEC_VALID_SET(*msg_word, false);
  4020. if (fse_op_info->op_code == DP_HTT_FST_CACHE_INVALIDATE_ENTRY) {
  4021. HTT_RX_FSE_OPERATION_SET(*msg_word,
  4022. HTT_RX_FSE_CACHE_INVALIDATE_ENTRY);
  4023. msg_word++;
  4024. HTT_RX_FSE_OPERATION_IP_ADDR_SET(
  4025. *msg_word,
  4026. qdf_htonl(fse_op_info->rx_flow->flow_tuple_info.src_ip_31_0));
  4027. msg_word++;
  4028. HTT_RX_FSE_OPERATION_IP_ADDR_SET(
  4029. *msg_word,
  4030. qdf_htonl(fse_op_info->rx_flow->flow_tuple_info.src_ip_63_32));
  4031. msg_word++;
  4032. HTT_RX_FSE_OPERATION_IP_ADDR_SET(
  4033. *msg_word,
  4034. qdf_htonl(fse_op_info->rx_flow->flow_tuple_info.src_ip_95_64));
  4035. msg_word++;
  4036. HTT_RX_FSE_OPERATION_IP_ADDR_SET(
  4037. *msg_word,
  4038. qdf_htonl(fse_op_info->rx_flow->flow_tuple_info.src_ip_127_96));
  4039. msg_word++;
  4040. HTT_RX_FSE_OPERATION_IP_ADDR_SET(
  4041. *msg_word,
  4042. qdf_htonl(fse_op_info->rx_flow->flow_tuple_info.dest_ip_31_0));
  4043. msg_word++;
  4044. HTT_RX_FSE_OPERATION_IP_ADDR_SET(
  4045. *msg_word,
  4046. qdf_htonl(fse_op_info->rx_flow->flow_tuple_info.dest_ip_63_32));
  4047. msg_word++;
  4048. HTT_RX_FSE_OPERATION_IP_ADDR_SET(
  4049. *msg_word,
  4050. qdf_htonl(fse_op_info->rx_flow->flow_tuple_info.dest_ip_95_64));
  4051. msg_word++;
  4052. HTT_RX_FSE_OPERATION_IP_ADDR_SET(
  4053. *msg_word,
  4054. qdf_htonl(
  4055. fse_op_info->rx_flow->flow_tuple_info.dest_ip_127_96));
  4056. msg_word++;
  4057. HTT_RX_FSE_SOURCEPORT_SET(
  4058. *msg_word,
  4059. fse_op_info->rx_flow->flow_tuple_info.src_port);
  4060. HTT_RX_FSE_DESTPORT_SET(
  4061. *msg_word,
  4062. fse_op_info->rx_flow->flow_tuple_info.dest_port);
  4063. msg_word++;
  4064. HTT_RX_FSE_L4_PROTO_SET(
  4065. *msg_word,
  4066. fse_op_info->rx_flow->flow_tuple_info.l4_protocol);
  4067. } else if (fse_op_info->op_code == DP_HTT_FST_CACHE_INVALIDATE_FULL) {
  4068. HTT_RX_FSE_OPERATION_SET(*msg_word,
  4069. HTT_RX_FSE_CACHE_INVALIDATE_FULL);
  4070. } else if (fse_op_info->op_code == DP_HTT_FST_DISABLE) {
  4071. HTT_RX_FSE_OPERATION_SET(*msg_word, HTT_RX_FSE_DISABLE);
  4072. } else if (fse_op_info->op_code == DP_HTT_FST_ENABLE) {
  4073. HTT_RX_FSE_OPERATION_SET(*msg_word, HTT_RX_FSE_ENABLE);
  4074. }
  4075. pkt = htt_htc_pkt_alloc(soc);
  4076. if (!pkt) {
  4077. qdf_err("Fail to allocate dp_htt_htc_pkt buffer");
  4078. qdf_assert(0);
  4079. qdf_nbuf_free(msg);
  4080. return QDF_STATUS_E_RESOURCES; /* failure */
  4081. }
  4082. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  4083. SET_HTC_PACKET_INFO_TX(
  4084. &pkt->htc_pkt,
  4085. dp_htt_h2t_send_complete_free_netbuf,
  4086. qdf_nbuf_data(msg),
  4087. qdf_nbuf_len(msg),
  4088. soc->htc_endpoint,
  4089. 1); /* tag - not relevant here */
  4090. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, msg);
  4091. DP_HTT_SEND_HTC_PKT(soc, pkt, HTT_H2T_MSG_TYPE_RX_FSE_OPERATION_CFG,
  4092. htt_logger_bufp);
  4093. qdf_info("HTT_H2T RX_FSE_OPERATION_CFG sent to FW for pdev = %u",
  4094. fse_op_info->pdev_id);
  4095. return QDF_STATUS_SUCCESS;
  4096. }