wmi_unified_priv.h 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035
  1. /*
  2. * Copyright (c) 2013-2021 The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for
  6. * any purpose with or without fee is hereby granted, provided that the
  7. * above copyright notice and this permission notice appear in all
  8. * copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  11. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  12. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  13. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  14. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  15. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  17. * PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. /*
  20. * This file contains the API definitions for the Unified Wireless
  21. * Module Interface (WMI).
  22. */
  23. #ifndef _WMI_UNIFIED_PRIV_H_
  24. #define _WMI_UNIFIED_PRIV_H_
  25. #include <osdep.h>
  26. #include "wmi_unified_api.h"
  27. #include "wmi_unified_param.h"
  28. #include "wlan_scan_ucfg_api.h"
  29. #include "qdf_atomic.h"
  30. #include <wbuff.h>
  31. #ifdef WLAN_FW_OFFLOAD
  32. #include "wlan_fwol_public_structs.h"
  33. #endif
  34. #ifdef DFS_COMPONENT_ENABLE
  35. #include <wlan_dfs_public_struct.h>
  36. #endif
  37. #include <qdf_threads.h>
  38. #ifdef WLAN_SUPPORT_GREEN_AP
  39. #include "wlan_green_ap_api.h"
  40. #endif
  41. #ifdef WLAN_FEATURE_NAN
  42. #include "nan_public_structs.h"
  43. #endif
  44. #ifdef WLAN_SUPPORT_TWT
  45. #include "wmi_unified_twt_param.h"
  46. #endif
  47. #ifdef WMI_SMART_ANT_SUPPORT
  48. #include "wmi_unified_smart_ant_param.h"
  49. #endif
  50. #ifdef WMI_DBR_SUPPORT
  51. #include "wmi_unified_dbr_param.h"
  52. #endif
  53. #ifdef WMI_ATF_SUPPORT
  54. #include "wmi_unified_atf_param.h"
  55. #endif
  56. #ifdef WDS_CONV_TARGET_IF_OPS_ENABLE
  57. #include "wmi_unified_wds_param.h"
  58. #endif
  59. #ifdef WLAN_FEATURE_INTEROP_ISSUES_AP
  60. #include <wlan_interop_issues_ap_public_structs.h>
  61. #endif
  62. #ifdef WLAN_CFR_ENABLE
  63. #include <wmi_unified_cfr_param.h>
  64. #endif
  65. #ifdef DCS_INTERFERENCE_DETECTION
  66. #include <wlan_dcs_public_structs.h>
  67. #endif
  68. #ifdef WLAN_FEATURE_PKT_CAPTURE
  69. #include "wlan_pkt_capture_public_structs.h"
  70. #endif
  71. #ifdef WLAN_CONV_SPECTRAL_ENABLE
  72. #include "wlan_spectral_public_structs.h"
  73. #endif /* WLAN_CONV_SPECTRAL_ENABLE */
  74. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  75. #include <wlan_cm_roam_public_struct.h>
  76. #include <wlan_mlme_public_struct.h>
  77. #endif
  78. #ifdef WMI_AP_SUPPORT
  79. #include <wmi_unified_ap_params.h>
  80. #endif
  81. #ifdef WLAN_FEATURE_11BE_MLO
  82. #include <wmi_unified_11be_param.h>
  83. #include "wlan_mlo_mgr_public_structs.h"
  84. #include <wlan_mlo_mgr_link_switch.h>
  85. #endif
  86. #if defined(WLAN_SUPPORT_TWT) && defined(WLAN_TWT_CONV_SUPPORTED)
  87. #include <wlan_twt_public_structs.h>
  88. #endif
  89. #ifdef WLAN_FEATURE_DBAM_CONFIG
  90. #include "wlan_coex_public_structs.h"
  91. #endif
  92. #ifdef WLAN_FEATURE_COAP
  93. #include "wlan_coap_public_structs.h"
  94. #endif
  95. #define WMI_UNIFIED_MAX_EVENT 0x100
  96. #ifdef WMI_EXT_DBG
  97. #define WMI_EXT_DBG_DIR "WMI_EXT_DBG"
  98. #define WMI_EXT_DBG_FILE "wmi_log"
  99. #define WMI_EXT_DBG_FILE_PERM (QDF_FILE_USR_READ | \
  100. QDF_FILE_GRP_READ | \
  101. QDF_FILE_OTH_READ)
  102. #define WMI_EXT_DBG_QUEUE_SIZE 1024
  103. #define WMI_EXT_DBG_DUMP_ROW_SIZE 16
  104. #define WMI_EXT_DBG_DUMP_GROUP_SIZE 1
  105. /**
  106. * enum WMI_MSG_TYPE - WMI message types
  107. * @WMI_MSG_TYPE_CMD: Message is of type WMI command
  108. * @WMI_MSG_TYPE_EVENT: Message is of type WMI event
  109. */
  110. enum WMI_MSG_TYPE {
  111. WMI_MSG_TYPE_CMD = 0,
  112. WMI_MSG_TYPE_EVENT,
  113. };
  114. /**
  115. * struct wmi_ext_dbg_msg - WMI command/event msg details
  116. * @node: qdf list node of wmi messages
  117. * @len: command/event message length
  118. * @ts: Time of WMI command/event handling
  119. * @type: message type
  120. * @buf: command/event buffer
  121. */
  122. struct wmi_ext_dbg_msg {
  123. qdf_list_node_t node;
  124. uint32_t len;
  125. uint64_t ts;
  126. enum WMI_MSG_TYPE type;
  127. uint8_t buf[0];
  128. };
  129. #endif /*WMI_EXT_DBG */
  130. #define wmi_alert(params...) QDF_TRACE_FATAL(QDF_MODULE_ID_WMI, ## params)
  131. #define wmi_err(params...) QDF_TRACE_ERROR(QDF_MODULE_ID_WMI, ## params)
  132. #define wmi_warn(params...) QDF_TRACE_WARN(QDF_MODULE_ID_WMI, ## params)
  133. #define wmi_info(params...) QDF_TRACE_INFO(QDF_MODULE_ID_WMI, ## params)
  134. #define wmi_debug(params...) QDF_TRACE_DEBUG(QDF_MODULE_ID_WMI, ## params)
  135. #define wmi_nofl_alert(params...) \
  136. QDF_TRACE_FATAL_NO_FL(QDF_MODULE_ID_WMI, ## params)
  137. #define wmi_nofl_err(params...) \
  138. QDF_TRACE_ERROR_NO_FL(QDF_MODULE_ID_WMI, ## params)
  139. #define wmi_nofl_warn(params...) \
  140. QDF_TRACE_WARN_NO_FL(QDF_MODULE_ID_WMI, ## params)
  141. #define wmi_nofl_info(params...) \
  142. QDF_TRACE_INFO_NO_FL(QDF_MODULE_ID_WMI, ## params)
  143. #define wmi_nofl_info_high(params...) \
  144. QDF_TRACE_INFO_HIGH_NO_FL(QDF_MODULE_ID_WMI, ## params)
  145. #define wmi_nofl_debug(params...) \
  146. QDF_TRACE_DEBUG_NO_FL(QDF_MODULE_ID_WMI, ## params)
  147. #define wmi_alert_rl(params...) QDF_TRACE_FATAL_RL(QDF_MODULE_ID_WMI, params)
  148. #define wmi_err_rl(params...) QDF_TRACE_ERROR_RL(QDF_MODULE_ID_WMI, params)
  149. #define wmi_warn_rl(params...) QDF_TRACE_WARN_RL(QDF_MODULE_ID_WMI, params)
  150. #define wmi_info_rl(params...) QDF_TRACE_INFO_RL(QDF_MODULE_ID_WMI, params)
  151. #define wmi_debug_rl(params...) QDF_TRACE_DEBUG_RL(QDF_MODULE_ID_WMI, params)
  152. #ifdef WMI_INTERFACE_EVENT_LOGGING
  153. /* wmi entry size */
  154. #ifndef WMI_DEBUG_ENTRY_MAX_LENGTH
  155. #define WMI_DEBUG_ENTRY_MAX_LENGTH (16)
  156. #endif
  157. /* wmi commands */
  158. #ifndef WMI_CMD_DEBUG_MAX_ENTRY
  159. #define WMI_CMD_DEBUG_MAX_ENTRY (1024)
  160. #endif
  161. #ifndef WMI_CMD_CMPL_DEBUG_MAX_ENTRY
  162. #define WMI_CMD_CMPL_DEBUG_MAX_ENTRY (1024)
  163. #endif
  164. /* wmi events */
  165. #ifndef WMI_EVENT_DEBUG_MAX_ENTRY
  166. #define WMI_EVENT_DEBUG_MAX_ENTRY (1024)
  167. #endif
  168. /* wmi mgmt Tx */
  169. #ifndef WMI_MGMT_TX_DEBUG_MAX_ENTRY
  170. #define WMI_MGMT_TX_DEBUG_MAX_ENTRY (256)
  171. #endif
  172. #ifndef WMI_MGMT_TX_CMPL_DEBUG_MAX_ENTRY
  173. #define WMI_MGMT_TX_CMPL_DEBUG_MAX_ENTRY (256)
  174. #endif
  175. /* wmi mgmt Rx */
  176. #ifndef WMI_MGMT_RX_DEBUG_MAX_ENTRY
  177. #define WMI_MGMT_RX_DEBUG_MAX_ENTRY (256)
  178. #endif
  179. /* wmi diag rx events max buffer */
  180. #ifndef WMI_DIAG_RX_EVENT_DEBUG_MAX_ENTRY
  181. #define WMI_DIAG_RX_EVENT_DEBUG_MAX_ENTRY (256)
  182. #endif
  183. /* wmi filtered command event */
  184. #ifdef WMI_INTERFACE_FILTERED_EVENT_LOGGING
  185. #ifndef WMI_FILTERED_CMD_EVT_SUPPORTED
  186. #define WMI_FILTERED_CMD_EVT_SUPPORTED (10)
  187. #endif
  188. #ifndef WMI_FILTERED_CMD_EVT_MAX_NUM_ENTRY
  189. #define WMI_FILTERED_CMD_EVT_MAX_NUM_ENTRY (1024)
  190. #endif
  191. #endif /* WMI_INTERFACE_FILTERED_EVENT_LOGGING */
  192. /**
  193. * struct wmi_command_debug - WMI command log buffer data type
  194. * @command: Store WMI Command id
  195. * @data: Stores WMI command data
  196. * @time: Time of WMI command handling
  197. */
  198. struct wmi_command_debug {
  199. uint32_t command;
  200. /* WMI cmd data excluding TLV and WMI headers */
  201. uint32_t data[WMI_DEBUG_ENTRY_MAX_LENGTH / sizeof(uint32_t)];
  202. uint64_t time;
  203. };
  204. /**
  205. * struct wmi_command_cmp_debug - WMI command completion log buffer data type
  206. * @command: Store WMI Command id
  207. * @data: Stores WMI command data
  208. * @time: Time of WMI command handling
  209. * @dma_addr: dma address of the WMI buffer
  210. * @phy_addr: physical address of the WMI buffer
  211. */
  212. struct wmi_command_cmp_debug {
  213. uint32_t command;
  214. /* WMI cmd data excluding TLV and WMI headers */
  215. uint32_t data[WMI_DEBUG_ENTRY_MAX_LENGTH / sizeof(uint32_t)];
  216. uint64_t time;
  217. qdf_dma_addr_t dma_addr;
  218. uint64_t phy_addr;
  219. };
  220. /**
  221. * struct wmi_event_debug - WMI event log buffer data type
  222. * @event: Store WMI Event id
  223. * @data: Stores WMI Event data
  224. * @time: Time of WMI Event handling
  225. */
  226. struct wmi_event_debug {
  227. uint32_t event;
  228. /* WMI event data excluding TLV header */
  229. uint32_t data[WMI_DEBUG_ENTRY_MAX_LENGTH / sizeof(uint32_t)];
  230. uint64_t time;
  231. };
  232. /**
  233. * struct wmi_command_header - Type for accessing frame data
  234. * @type: 802.11 Frame type
  235. * @sub_type: 802.11 Frame subtype
  236. * @prot_ver: 802.11 Version
  237. */
  238. struct wmi_command_header {
  239. #ifndef ANI_LITTLE_BIT_ENDIAN
  240. uint32_t sub_type:4;
  241. uint32_t type:2;
  242. uint32_t prot_ver:2;
  243. #else
  244. uint32_t prot_ver:2;
  245. uint32_t type:2;
  246. uint32_t sub_type:4;
  247. #endif
  248. };
  249. /**
  250. * struct wmi_log_buf_t - WMI log buffer information type
  251. * @buf: Reference to WMI log buffer
  252. * @length: length of buffer
  253. * @buf_tail_idx: Tail index of buffer
  254. * @p_buf_tail_idx: reference to buffer tail index. It is added to accommodate
  255. * unified design since MCL uses global variable for buffer tail index
  256. * @size: the size of the buffer in number of entries
  257. */
  258. struct wmi_log_buf_t {
  259. void *buf;
  260. uint32_t length;
  261. uint32_t buf_tail_idx;
  262. uint32_t *p_buf_tail_idx;
  263. uint32_t size;
  264. };
  265. /**
  266. * struct wmi_debug_log_info - Meta data to hold information of all buffers
  267. * used for WMI logging
  268. * @wmi_command_log_buf_info: Buffer info for WMI Command log
  269. * @wmi_command_tx_cmp_log_buf_info: Buffer info for WMI Command Tx completion
  270. * log
  271. * @wmi_event_log_buf_info: Buffer info for WMI Event log
  272. * @wmi_rx_event_log_buf_info: Buffer info for WMI event received log
  273. * @wmi_mgmt_command_log_buf_info: Buffer info for WMI Management Command log
  274. * @wmi_mgmt_command_tx_cmp_log_buf_info: Buffer info for WMI Management
  275. * Command Tx completion log
  276. * @wmi_mgmt_event_log_buf_info: Buffer info for WMI Management event log
  277. * @wmi_diag_event_log_buf_info: Buffer info for WMI diag event log
  278. * @wmi_record_lock: Lock WMI recording
  279. * @wmi_logging_enable: Enable/Disable state for WMI logging
  280. * @wmi_id_to_name: Function reference to API to convert Command id to
  281. * string name
  282. * @wmi_log_debugfs_dir: reference to debugfs directory
  283. * @filtered_wmi_cmds: Buffer to save inputs from user on
  284. * which WMI commands to record
  285. * @filtered_wmi_cmds_idx: target cmd index
  286. * @filtered_wmi_evts: Buffer to save inputs from user on
  287. * which WMI event to record
  288. * @filtered_wmi_evts_idx: target evt index
  289. * @wmi_filtered_command_log: buffer to record user specified WMI commands
  290. * @wmi_filtered_event_log: buffer to record user specified WMI events
  291. */
  292. struct wmi_debug_log_info {
  293. struct wmi_log_buf_t wmi_command_log_buf_info;
  294. struct wmi_log_buf_t wmi_command_tx_cmp_log_buf_info;
  295. struct wmi_log_buf_t wmi_event_log_buf_info;
  296. struct wmi_log_buf_t wmi_rx_event_log_buf_info;
  297. struct wmi_log_buf_t wmi_mgmt_command_log_buf_info;
  298. struct wmi_log_buf_t wmi_mgmt_command_tx_cmp_log_buf_info;
  299. struct wmi_log_buf_t wmi_mgmt_event_log_buf_info;
  300. struct wmi_log_buf_t wmi_diag_event_log_buf_info;
  301. qdf_spinlock_t wmi_record_lock;
  302. bool wmi_logging_enable;
  303. struct dentry *wmi_log_debugfs_dir;
  304. #ifdef WMI_INTERFACE_FILTERED_EVENT_LOGGING
  305. uint32_t *filtered_wmi_cmds;
  306. uint32_t filtered_wmi_cmds_idx;
  307. uint32_t *filtered_wmi_evts;
  308. uint32_t filtered_wmi_evts_idx;
  309. struct wmi_log_buf_t *wmi_filtered_command_log;
  310. struct wmi_log_buf_t *wmi_filtered_event_log;
  311. #endif
  312. };
  313. /**
  314. * enum WMI_RECORD_TYPE - User specified WMI logging types
  315. * @WMI_CMD: wmi command id
  316. * @WMI_EVT: wmi event id
  317. */
  318. enum WMI_RECORD_TYPE {
  319. WMI_CMD = 1,
  320. WMI_EVT = 2,
  321. };
  322. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  323. #ifdef WLAN_DBGLOG_DEBUGFS
  324. struct fwdebug {
  325. struct sk_buff_head fwlog_queue;
  326. struct completion fwlog_completion;
  327. A_BOOL fwlog_open;
  328. };
  329. #endif /* WLAN_DBGLOG_DEBUGFS */
  330. /**
  331. * struct wmi_wq_dbg_info - WMI WQ debug info
  332. * @wd_msg_type_id: wmi event id
  333. * @wmi_wq: WMI workqueue struct
  334. * @task: WMI workqueue task struct
  335. */
  336. struct wmi_wq_dbg_info {
  337. uint32_t wd_msg_type_id;
  338. qdf_workqueue_t *wmi_wq;
  339. qdf_thread_t *task;
  340. };
  341. struct wmi_ops {
  342. #if defined(CONN_MGR_ADV_FEATURE) && \
  343. (defined(WLAN_FEATURE_HOST_ROAM) || \
  344. defined(WLAN_FEATURE_ROAM_OFFLOAD))
  345. QDF_STATUS
  346. (*extract_roam_event)(wmi_unified_t wmi_handle, void *evt_buf, uint32_t len,
  347. struct roam_offload_roam_event *roam_event);
  348. #endif
  349. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  350. QDF_STATUS
  351. (*extract_roam_btm_response_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  352. struct roam_btm_response_data *dst,
  353. uint8_t idx);
  354. QDF_STATUS
  355. (*extract_roam_initial_info)(wmi_unified_t wmi_handle, void *evt_buf,
  356. struct roam_initial_data *dst, uint8_t idx);
  357. QDF_STATUS
  358. (*extract_roam_msg_info)(wmi_unified_t wmi_handle, void *evt_buf,
  359. struct roam_msg_info *dst, uint8_t idx);
  360. QDF_STATUS
  361. (*extract_roam_frame_info)(wmi_unified_t wmi_handle, void *evt_buf,
  362. struct roam_frame_stats *dst, uint8_t idx,
  363. uint8_t num_frames);
  364. /**
  365. * extract_roam_sync_event - Extract roam sync event func ptr
  366. * @wmi_handle: WMI handle
  367. * @evt_buf: Event buffer
  368. * @len: evt buffer data len
  369. * @sync_ind: roam sync ptr
  370. *
  371. * This api will allocate memory for roam sync info, extract
  372. * the information sent by FW and pass to CM.The memory will be
  373. * freed by target_if_cm_roam_sync_event.
  374. *
  375. * Return: QDF_STATUS
  376. */
  377. QDF_STATUS
  378. (*extract_roam_sync_event)(wmi_unified_t wmi_handle, void *evt_buf,
  379. uint32_t len,
  380. struct roam_offload_synch_ind **sync_ind);
  381. QDF_STATUS
  382. (*extract_roam_sync_frame_event)(wmi_unified_t wmi_handle, void *event,
  383. uint32_t len,
  384. struct roam_synch_frame_ind *frame_ptr);
  385. QDF_STATUS
  386. (*extract_btm_dl_event)(wmi_unified_t wmi_handle,
  387. uint8_t *event, uint32_t data_len,
  388. struct roam_denylist_event **dst_list);
  389. QDF_STATUS
  390. (*extract_vdev_disconnect_event)(wmi_unified_t wmi_handle,
  391. uint8_t *event, uint32_t data_len,
  392. struct vdev_disconnect_event_data *data);
  393. QDF_STATUS
  394. (*extract_roam_scan_chan_list)(wmi_unified_t wmi_handle,
  395. uint8_t *event, uint32_t data_len,
  396. struct cm_roam_scan_ch_resp **data);
  397. QDF_STATUS
  398. (*extract_roam_stats_event)(wmi_unified_t wmi_handle,
  399. uint8_t *event, uint32_t data_len,
  400. struct roam_stats_event **data);
  401. QDF_STATUS
  402. (*extract_auth_offload_event)(wmi_unified_t wmi_handle,
  403. uint8_t *event, uint32_t data_len,
  404. struct auth_offload_event *auth_event);
  405. QDF_STATUS
  406. (*extract_roam_pmkid_request)(wmi_unified_t wmi_handle,
  407. uint8_t *event, uint32_t data_len,
  408. struct roam_pmkid_req_event **list);
  409. QDF_STATUS
  410. (*extract_roam_candidate_frame)(wmi_unified_t wmi_handle,
  411. uint8_t *event, uint32_t data_len,
  412. struct roam_scan_candidate_frame *data);
  413. #ifdef WLAN_VENDOR_HANDOFF_CONTROL
  414. /**
  415. * extract_roam_vendor_control_param_event - Extract vendor handoff param event
  416. * function pointer
  417. * @wmi_handle: WMI handle
  418. * @event: Event buffer
  419. * @data_len: evt buffer data len
  420. * @vendor_handoff_params: vendor handoff param buffer pointer
  421. *
  422. * Return: QDF_STATUS
  423. */
  424. QDF_STATUS
  425. (*extract_roam_vendor_control_param_event)(wmi_unified_t wmi_handle,
  426. uint8_t *event, uint32_t data_len,
  427. struct roam_vendor_handoff_params **vendor_handoff_params);
  428. #endif
  429. #ifdef WLAN_FEATURE_11BE_MLO
  430. /**
  431. * extract_roam_synch_key_event() - Extract Roam synch key event
  432. * @wmi_handle: WMI Handle
  433. * @event: Event buffer
  434. * @data_len: Event data length
  435. * @keys: Destination buffer to fill the keys
  436. * @num_keys: Number of keys
  437. * @mld_addr: Peer MLD address
  438. *
  439. * Return: QDF_STATUS
  440. */
  441. QDF_STATUS
  442. (*extract_roam_synch_key_event) (wmi_unified_t wmi_handle, uint8_t *event,
  443. uint32_t data_len,
  444. struct wlan_crypto_key_entry **keys,
  445. uint8_t *num_keys,
  446. struct qdf_mac_addr *mld_addr);
  447. #endif
  448. QDF_STATUS
  449. (*extract_peer_oper_mode_event)(wmi_unified_t wmi_handle,
  450. uint8_t *event, uint32_t data_len,
  451. struct peer_oper_mode_event *data);
  452. #endif
  453. #ifdef FEATURE_MEC_OFFLOAD
  454. QDF_STATUS
  455. (*send_pdev_set_mec_timer_cmd)(struct wmi_unified *wmi_handle,
  456. struct set_mec_timer_params *param);
  457. #endif
  458. QDF_STATUS (*send_vdev_create_cmd)(wmi_unified_t wmi_handle,
  459. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  460. struct vdev_create_params *param);
  461. QDF_STATUS (*send_vdev_delete_cmd)(wmi_unified_t wmi_handle,
  462. uint8_t if_id);
  463. QDF_STATUS (*send_vdev_nss_chain_params_cmd)(wmi_unified_t wmi_handle,
  464. uint8_t vdev_id,
  465. struct vdev_nss_chains *user_cfg);
  466. QDF_STATUS (*send_vdev_stop_cmd)(wmi_unified_t wmi,
  467. uint8_t vdev_id);
  468. QDF_STATUS (*send_vdev_down_cmd)(wmi_unified_t wmi,
  469. uint8_t vdev_id);
  470. QDF_STATUS (*send_vdev_start_cmd)(wmi_unified_t wmi,
  471. struct vdev_start_params *req);
  472. QDF_STATUS (*send_vdev_set_nac_rssi_cmd)(wmi_unified_t wmi,
  473. struct vdev_scan_nac_rssi_params *req);
  474. QDF_STATUS (*send_peer_flush_tids_cmd)(wmi_unified_t wmi,
  475. uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
  476. struct peer_flush_params *param);
  477. QDF_STATUS (*send_peer_delete_cmd)(wmi_unified_t wmi,
  478. uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
  479. struct peer_delete_cmd_params *param);
  480. QDF_STATUS (*send_peer_delete_all_cmd)(
  481. wmi_unified_t wmi,
  482. struct peer_delete_all_params *param);
  483. QDF_STATUS
  484. (*send_peer_unmap_conf_cmd)(wmi_unified_t wmi,
  485. uint8_t vdev_id,
  486. uint32_t peer_id_cnt,
  487. uint16_t *peer_id_list);
  488. QDF_STATUS (*send_peer_param_cmd)(wmi_unified_t wmi,
  489. uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
  490. struct peer_set_params *param);
  491. QDF_STATUS (*send_vdev_up_cmd)(wmi_unified_t wmi,
  492. uint8_t bssid[QDF_MAC_ADDR_SIZE],
  493. struct vdev_up_params *params);
  494. QDF_STATUS (*send_peer_create_cmd)(wmi_unified_t wmi,
  495. struct peer_create_params *param);
  496. #ifdef WLAN_SUPPORT_GREEN_AP
  497. QDF_STATUS (*send_green_ap_ps_cmd)(wmi_unified_t wmi_handle,
  498. uint32_t value, uint8_t pdev_id);
  499. QDF_STATUS (*extract_green_ap_egap_status_info)(
  500. uint8_t *evt_buf,
  501. struct wlan_green_ap_egap_status_info *egap_status_info_params);
  502. #if defined(WLAN_SUPPORT_GAP_LL_PS_MODE)
  503. QDF_STATUS (*send_green_ap_ll_ps_cmd)(wmi_unified_t wmi_handle,
  504. struct green_ap_ll_ps_cmd_param *ll_ps_params);
  505. #endif
  506. #endif
  507. #ifdef WLAN_SUPPORT_GAP_LL_PS_MODE
  508. QDF_STATUS (*extract_green_ap_ll_ps_param)(
  509. uint8_t *evt_buf,
  510. struct wlan_green_ap_ll_ps_event_param *ll_ps_params);
  511. #endif
  512. QDF_STATUS
  513. (*send_pdev_utf_cmd)(wmi_unified_t wmi_handle,
  514. struct pdev_utf_params *param,
  515. uint8_t mac_id);
  516. QDF_STATUS
  517. (*send_pdev_param_cmd)(wmi_unified_t wmi_handle,
  518. struct pdev_params *param,
  519. uint8_t mac_id);
  520. QDF_STATUS
  521. (*send_multiple_pdev_param_cmd)(wmi_unified_t wmi_handle,
  522. struct set_multiple_pdev_vdev_param *params);
  523. QDF_STATUS
  524. (*send_pdev_set_hw_mode_cmd)(wmi_unified_t wmi_handle,
  525. uint32_t hw_mode_index);
  526. QDF_STATUS
  527. (*send_pdev_set_rf_path_cmd)(wmi_unified_t wmi_handle,
  528. uint32_t hw_mode_index, uint8_t pdev_id);
  529. QDF_STATUS (*send_suspend_cmd)(wmi_unified_t wmi_handle,
  530. struct suspend_params *param,
  531. uint8_t mac_id);
  532. QDF_STATUS (*send_resume_cmd)(wmi_unified_t wmi_handle,
  533. uint8_t mac_id);
  534. #ifdef FEATURE_WLAN_D0WOW
  535. QDF_STATUS (*send_d0wow_enable_cmd)(wmi_unified_t wmi_handle,
  536. uint8_t mac_id);
  537. QDF_STATUS (*send_d0wow_disable_cmd)(wmi_unified_t wmi_handle,
  538. uint8_t mac_id);
  539. #endif
  540. #if defined(WLAN_FEATURE_ROAM_OFFLOAD) && defined(FEATURE_DENYLIST_MGR)
  541. QDF_STATUS
  542. (*send_reject_ap_list_cmd)(struct wmi_unified *wmi_handle,
  543. struct reject_ap_params *reject_params);
  544. #endif
  545. QDF_STATUS (*send_wow_enable_cmd)(wmi_unified_t wmi_handle,
  546. struct wow_cmd_params *param,
  547. uint8_t mac_id);
  548. QDF_STATUS (*send_set_ap_ps_param_cmd)(wmi_unified_t wmi_handle,
  549. uint8_t *peer_addr,
  550. struct ap_ps_params *param);
  551. QDF_STATUS (*send_set_sta_ps_param_cmd)(wmi_unified_t wmi_handle,
  552. struct sta_ps_params *param);
  553. QDF_STATUS (*send_crash_inject_cmd)(wmi_unified_t wmi_handle,
  554. struct crash_inject *param);
  555. QDF_STATUS
  556. (*send_dbglog_cmd)(wmi_unified_t wmi_handle,
  557. struct dbglog_params *dbglog_param);
  558. QDF_STATUS (*send_vdev_set_param_cmd)(wmi_unified_t wmi_handle,
  559. struct vdev_set_params *param);
  560. QDF_STATUS
  561. (*send_multiple_vdev_param_cmd)(wmi_unified_t wmi_handle,
  562. struct set_multiple_pdev_vdev_param *params);
  563. QDF_STATUS (*send_vdev_set_mu_snif_cmd)(wmi_unified_t wmi_handle,
  564. struct vdev_set_mu_snif_param *param);
  565. QDF_STATUS (*send_vdev_sifs_trigger_cmd)(wmi_unified_t wmi_handle,
  566. struct sifs_trigger_param *param);
  567. QDF_STATUS (*send_stats_request_cmd)(wmi_unified_t wmi_handle,
  568. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  569. struct stats_request_params *param);
  570. #ifdef QCA_SUPPORT_MC_CP_STATS
  571. QDF_STATUS (*send_request_peer_stats_info_cmd)(wmi_unified_t wmi_handle,
  572. struct peer_stats_request_params *param);
  573. #endif /* QCA_SUPPORT_MC_CP_STATS */
  574. QDF_STATUS (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
  575. WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
  576. QDF_STATUS (*send_packet_log_disable_cmd)(wmi_unified_t wmi_handle,
  577. uint8_t mac_id);
  578. QDF_STATUS (*send_fd_tmpl_cmd)(wmi_unified_t wmi_handle,
  579. struct fils_discovery_tmpl_params *param);
  580. QDF_STATUS (*send_beacon_send_cmd)(wmi_unified_t wmi_handle,
  581. struct beacon_params *param);
  582. QDF_STATUS (*send_beacon_tmpl_send_cmd)(wmi_unified_t wmi_handle,
  583. struct beacon_tmpl_params *param);
  584. QDF_STATUS (*send_peer_assoc_cmd)(wmi_unified_t wmi_handle,
  585. struct peer_assoc_params *param);
  586. QDF_STATUS (*send_scan_start_cmd)(wmi_unified_t wmi_handle,
  587. struct scan_req_params *param);
  588. QDF_STATUS (*send_scan_stop_cmd)(wmi_unified_t wmi_handle,
  589. struct scan_cancel_param *param);
  590. QDF_STATUS (*send_scan_chan_list_cmd)(wmi_unified_t wmi_handle,
  591. struct scan_chan_list_params *param);
  592. QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
  593. struct wmi_mgmt_params *param);
  594. QDF_STATUS (*send_offchan_data_tx_cmd)(wmi_unified_t wmi_handle,
  595. struct wmi_offchan_data_tx_params *param);
  596. QDF_STATUS (*send_modem_power_state_cmd)(wmi_unified_t wmi_handle,
  597. uint32_t param_value);
  598. QDF_STATUS (*send_set_sta_ps_mode_cmd)(wmi_unified_t wmi_handle,
  599. uint32_t vdev_id, uint8_t val);
  600. QDF_STATUS (*send_idle_roam_monitor_cmd)(wmi_unified_t wmi_handle,
  601. uint8_t val);
  602. QDF_STATUS (*send_get_temperature_cmd)(wmi_unified_t wmi_handle);
  603. #ifdef CONVERGED_P2P_ENABLE
  604. QDF_STATUS (*send_set_p2pgo_oppps_req_cmd)(wmi_unified_t wmi_handle,
  605. struct p2p_ps_params *oppps);
  606. QDF_STATUS (*send_set_p2pgo_noa_req_cmd)(wmi_unified_t wmi_handle,
  607. struct p2p_ps_params *noa);
  608. #ifdef FEATURE_P2P_LISTEN_OFFLOAD
  609. QDF_STATUS (*send_p2p_lo_start_cmd)(wmi_unified_t wmi_handle,
  610. struct p2p_lo_start *param);
  611. QDF_STATUS (*send_p2p_lo_stop_cmd)(wmi_unified_t wmi_handle,
  612. uint8_t vdev_id);
  613. #endif /* FEATURE_P2P_LISTEN_OFFLOAD */
  614. #endif /* CONVERGED_P2P_ENABLE */
  615. QDF_STATUS (*send_set_smps_params_cmd)(wmi_unified_t wmi_handle,
  616. uint8_t vdev_id,
  617. int value);
  618. QDF_STATUS (*send_set_mimops_cmd)(wmi_unified_t wmi_handle,
  619. uint8_t vdev_id, int value);
  620. QDF_STATUS (*send_set_sta_uapsd_auto_trig_cmd)(wmi_unified_t wmi_handle,
  621. struct sta_uapsd_trig_params *param);
  622. #ifdef WLAN_FEATURE_DSRC
  623. QDF_STATUS (*send_ocb_set_utc_time_cmd)(wmi_unified_t wmi_handle,
  624. struct ocb_utc_param *utc);
  625. QDF_STATUS (*send_ocb_get_tsf_timer_cmd)(wmi_unified_t wmi_handle,
  626. uint8_t vdev_id);
  627. QDF_STATUS (*send_ocb_start_timing_advert_cmd)(wmi_unified_t wmi_handle,
  628. struct ocb_timing_advert_param *timing_advert);
  629. QDF_STATUS (*send_ocb_stop_timing_advert_cmd)(wmi_unified_t wmi_handle,
  630. struct ocb_timing_advert_param *timing_advert);
  631. QDF_STATUS (*send_dcc_get_stats_cmd)(wmi_unified_t wmi_handle,
  632. struct ocb_dcc_get_stats_param *get_stats_param);
  633. QDF_STATUS (*send_dcc_clear_stats_cmd)(wmi_unified_t wmi_handle,
  634. uint32_t vdev_id, uint32_t dcc_stats_bitmap);
  635. QDF_STATUS (*send_dcc_update_ndl_cmd)(wmi_unified_t wmi_handle,
  636. struct ocb_dcc_update_ndl_param *update_ndl_param);
  637. QDF_STATUS (*send_ocb_set_config_cmd)(wmi_unified_t wmi_handle,
  638. struct ocb_config *config);
  639. QDF_STATUS (*extract_ocb_chan_config_resp)(wmi_unified_t wmi_hdl,
  640. void *evt_buf,
  641. uint32_t *status);
  642. QDF_STATUS (*extract_ocb_tsf_timer)(wmi_unified_t wmi_hdl,
  643. void *evt_buf,
  644. struct ocb_get_tsf_timer_response *resp);
  645. QDF_STATUS (*extract_dcc_update_ndl_resp)(wmi_unified_t wmi_hdl,
  646. void *evt_buf, struct ocb_dcc_update_ndl_response *resp);
  647. QDF_STATUS (*extract_dcc_stats)(wmi_unified_t wmi_hdl,
  648. void *evt_buf,
  649. struct ocb_dcc_get_stats_response **response);
  650. #endif /* WLAN_FEATURE_DSRC */
  651. QDF_STATUS (*send_lro_config_cmd)(wmi_unified_t wmi_handle,
  652. struct wmi_lro_config_cmd_t *wmi_lro_cmd);
  653. QDF_STATUS (*send_set_thermal_mgmt_cmd)(wmi_unified_t wmi_handle,
  654. struct thermal_cmd_params *thermal_info);
  655. QDF_STATUS (*send_peer_rate_report_cmd)(wmi_unified_t wmi_handle,
  656. struct wmi_peer_rate_report_params *rate_report_params);
  657. #ifdef WMI_CONCURRENCY_SUPPORT
  658. QDF_STATUS (*send_set_mcc_channel_time_quota_cmd)
  659. (wmi_unified_t wmi_handle,
  660. uint32_t adapter_1_chan_freq,
  661. uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
  662. QDF_STATUS (*send_set_mcc_channel_time_latency_cmd)
  663. (wmi_unified_t wmi_handle,
  664. uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
  665. QDF_STATUS (*send_set_enable_disable_mcc_adaptive_scheduler_cmd)(
  666. wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler,
  667. uint32_t pdev_id);
  668. #ifdef WLAN_FEATURE_MCC_QUOTA
  669. QDF_STATUS (*extract_mcc_quota_ev_param)(wmi_unified_t wmi_handle,
  670. void *evt_buf,
  671. struct mcc_quota_info *param);
  672. #endif
  673. #endif /* WMI_CONCURRENCY_SUPPORT */
  674. QDF_STATUS (*send_p2p_go_set_beacon_ie_cmd)(wmi_unified_t wmi_handle,
  675. uint32_t vdev_id, uint8_t *p2p_ie);
  676. QDF_STATUS (*send_probe_rsp_tmpl_send_cmd)(wmi_unified_t wmi_handle,
  677. uint8_t vdev_id,
  678. struct wmi_probe_resp_params *probe_rsp_info);
  679. QDF_STATUS (*send_setup_install_key_cmd)(wmi_unified_t wmi_handle,
  680. struct set_key_params *key_params);
  681. QDF_STATUS (*send_reset_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
  682. struct wifi_passpoint_req_param *req);
  683. #ifdef WMI_ROAM_SUPPORT
  684. #ifdef FEATURE_LFR_SUBNET_DETECTION
  685. QDF_STATUS (*send_set_gateway_params_cmd)(wmi_unified_t wmi_handle,
  686. struct gateway_update_req_param *req);
  687. #endif /* FEATURE_LFR_SUBNET_DETECTION */
  688. #ifdef FEATURE_RSSI_MONITOR
  689. QDF_STATUS (*send_set_rssi_monitoring_cmd)(wmi_unified_t wmi_handle,
  690. struct rssi_monitor_param *req);
  691. #endif /* FEATURE_RSSI_MONITOR */
  692. QDF_STATUS (*send_roam_scan_offload_rssi_thresh_cmd)(
  693. wmi_unified_t wmi_handle,
  694. struct wlan_roam_offload_scan_rssi_params *roam_req);
  695. QDF_STATUS (*send_roam_scan_offload_scan_period_cmd)(
  696. wmi_unified_t wmi_handle,
  697. struct wlan_roam_scan_period_params *params);
  698. QDF_STATUS (*send_roam_mawc_params_cmd)(
  699. wmi_unified_t wmi_handle,
  700. struct wlan_roam_mawc_params *params);
  701. QDF_STATUS (*send_roam_scan_filter_cmd)(wmi_unified_t wmi_handle,
  702. struct roam_scan_filter_params *roam_req);
  703. QDF_STATUS (*send_roam_scan_offload_mode_cmd)(
  704. wmi_unified_t wmi_handle,
  705. struct wlan_roam_scan_offload_params *rso_cfg);
  706. QDF_STATUS (*send_roam_scan_offload_ap_profile_cmd)(wmi_unified_t wmi_handle,
  707. struct ap_profile_params *ap_profile);
  708. QDF_STATUS (*send_roam_scan_offload_cmd)(wmi_unified_t wmi_handle,
  709. uint32_t command, uint32_t vdev_id);
  710. QDF_STATUS (*send_roam_scan_offload_chan_list_cmd)(
  711. wmi_unified_t wmi_handle,
  712. struct wlan_roam_scan_channel_list *rso_ch_info);
  713. QDF_STATUS (*send_roam_scan_offload_rssi_change_cmd)(
  714. wmi_unified_t wmi_handle,
  715. struct wlan_roam_rssi_change_params *params);
  716. QDF_STATUS (*send_per_roam_config_cmd)(wmi_unified_t wmi_handle,
  717. struct wlan_per_roam_config_req *req_buf);
  718. QDF_STATUS (*send_offload_11k_cmd)(wmi_unified_t wmi_handle,
  719. struct wlan_roam_11k_offload_params *params);
  720. QDF_STATUS (*send_invoke_neighbor_report_cmd)(wmi_unified_t wmi_handle,
  721. struct wmi_invoke_neighbor_report_params *params);
  722. QDF_STATUS (*send_roam_bss_load_config)(
  723. wmi_unified_t wmi_handle,
  724. struct wlan_roam_bss_load_config *params);
  725. QDF_STATUS (*send_disconnect_roam_params)(wmi_unified_t wmi_handle,
  726. struct wlan_roam_disconnect_params *req);
  727. QDF_STATUS (*send_idle_roam_params)(wmi_unified_t wmi_handle,
  728. struct wlan_roam_idle_params *req);
  729. #ifdef WLAN_FEATURE_11BE_MLO
  730. QDF_STATUS (*send_roam_mlo_config)(wmi_unified_t wmi_handle,
  731. struct wlan_roam_mlo_config *req);
  732. #endif
  733. QDF_STATUS (*send_roam_preauth_status)(wmi_unified_t wmi_handle,
  734. struct wmi_roam_auth_status_params *params);
  735. QDF_STATUS (*send_btm_config)(wmi_unified_t wmi_handle,
  736. struct wlan_roam_btm_config *params);
  737. QDF_STATUS (*send_limit_off_chan_cmd)(wmi_unified_t wmi_handle,
  738. struct wmi_limit_off_chan_param *limit_off_chan_param);
  739. #ifdef WLAN_FEATURE_FILS_SK
  740. QDF_STATUS (*send_roam_scan_hlp_cmd) (wmi_unified_t wmi_handle,
  741. struct hlp_params *params);
  742. #endif /* WLAN_FEATURE_FILS_SK */
  743. #ifdef FEATURE_WLAN_ESE
  744. QDF_STATUS (*send_plm_stop_cmd)(wmi_unified_t wmi_handle,
  745. const struct plm_req_params *plm);
  746. QDF_STATUS (*send_plm_start_cmd)(wmi_unified_t wmi_handle,
  747. const struct plm_req_params *plm);
  748. #endif /* FEATURE_WLAN_ESE */
  749. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  750. QDF_STATUS (*send_set_ric_req_cmd)(wmi_unified_t wmi_handle, void *msg,
  751. uint8_t is_add_ts);
  752. QDF_STATUS (*send_process_roam_synch_complete_cmd)(wmi_unified_t wmi_handle,
  753. uint8_t vdev_id);
  754. #ifdef WLAN_VENDOR_HANDOFF_CONTROL
  755. QDF_STATUS (*send_process_roam_vendor_handoff_req_cmd)(wmi_unified_t wmi_handle,
  756. uint8_t vdev_id, uint32_t param_id);
  757. #endif
  758. QDF_STATUS (*send_roam_invoke_cmd)(wmi_unified_t wmi_handle,
  759. struct roam_invoke_req *roaminvoke);
  760. QDF_STATUS (*send_set_roam_trigger_cmd)(wmi_unified_t wmi_handle,
  761. struct wlan_roam_triggers *triggers);
  762. #endif /* WLAN_FEATURE_ROAM_OFFLOAD */
  763. #endif /* WMI_ROAM_SUPPORT */
  764. QDF_STATUS (*send_scan_probe_setoui_cmd)(wmi_unified_t wmi_handle,
  765. struct scan_mac_oui *psetoui);
  766. QDF_STATUS (*send_set_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
  767. struct wifi_passpoint_req_param *req);
  768. QDF_STATUS (*send_set_epno_network_list_cmd)(wmi_unified_t wmi_handle,
  769. struct wifi_enhanced_pno_params *req);
  770. QDF_STATUS (*send_extscan_get_capabilities_cmd)(wmi_unified_t wmi_handle,
  771. struct extscan_capabilities_params *pgetcapab);
  772. QDF_STATUS (*send_extscan_get_cached_results_cmd)(wmi_unified_t wmi_handle,
  773. struct extscan_cached_result_params *pcached_results);
  774. QDF_STATUS (*send_extscan_stop_change_monitor_cmd)(wmi_unified_t wmi_handle,
  775. struct extscan_capabilities_reset_params *reset_req);
  776. QDF_STATUS (*send_extscan_start_change_monitor_cmd)(wmi_unified_t wmi_handle,
  777. struct extscan_set_sig_changereq_params *
  778. psigchange);
  779. QDF_STATUS (*send_extscan_stop_hotlist_monitor_cmd)(wmi_unified_t wmi_handle,
  780. struct extscan_bssid_hotlist_reset_params *photlist_reset);
  781. QDF_STATUS (*send_extscan_start_hotlist_monitor_cmd)(wmi_unified_t wmi_handle,
  782. struct extscan_bssid_hotlist_set_params *params);
  783. QDF_STATUS (*send_stop_extscan_cmd)(wmi_unified_t wmi_handle,
  784. struct extscan_stop_req_params *pstopcmd);
  785. QDF_STATUS (*send_start_extscan_cmd)(wmi_unified_t wmi_handle,
  786. struct wifi_scan_cmd_req_params *pstart);
  787. QDF_STATUS (*send_csa_offload_enable_cmd)(wmi_unified_t wmi_handle,
  788. uint8_t vdev_id);
  789. QDF_STATUS (*send_pno_stop_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  790. QDF_STATUS (*send_pno_start_cmd)(wmi_unified_t wmi_handle,
  791. struct pno_scan_req_params *pno);
  792. QDF_STATUS (*send_obss_disable_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  793. QDF_STATUS (*send_nlo_mawc_cmd)(wmi_unified_t wmi_handle,
  794. struct nlo_mawc_params *params);
  795. #ifdef IPA_OFFLOAD
  796. QDF_STATUS (*send_ipa_offload_control_cmd)(wmi_unified_t wmi_handle,
  797. struct ipa_uc_offload_control_params *ipa_offload);
  798. #endif
  799. #ifdef WLAN_FEATURE_LINK_LAYER_STATS
  800. QDF_STATUS (*send_process_ll_stats_clear_cmd)(wmi_unified_t wmi_handle,
  801. const struct ll_stats_clear_params *clear_req);
  802. QDF_STATUS (*send_process_ll_stats_set_cmd)(wmi_unified_t wmi_handle,
  803. const struct ll_stats_set_params *set_req);
  804. QDF_STATUS (*send_process_ll_stats_get_cmd)(wmi_unified_t wmi_handle,
  805. const struct ll_stats_get_params *get_req);
  806. #ifdef FEATURE_CLUB_LL_STATS_AND_GET_STATION
  807. QDF_STATUS (*send_unified_ll_stats_get_sta_cmd)(wmi_unified_t wmi_handle,
  808. const struct ll_stats_get_params *get_req);
  809. #endif
  810. #endif
  811. QDF_STATUS (*send_congestion_cmd)(wmi_unified_t wmi_handle,
  812. uint8_t vdev_id);
  813. QDF_STATUS (*send_snr_request_cmd)(wmi_unified_t wmi_handle);
  814. QDF_STATUS (*send_snr_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  815. QDF_STATUS (*send_link_status_req_cmd)(wmi_unified_t wmi_handle,
  816. struct link_status_params *link_status);
  817. #ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
  818. QDF_STATUS (*send_add_wow_wakeup_event_cmd)(wmi_unified_t wmi_handle,
  819. uint32_t vdev_id,
  820. uint32_t *bitmap,
  821. bool enable);
  822. QDF_STATUS (*send_wow_patterns_to_fw_cmd)(wmi_unified_t wmi_handle,
  823. uint8_t vdev_id, uint8_t ptrn_id,
  824. const uint8_t *ptrn, uint8_t ptrn_len,
  825. uint8_t ptrn_offset, const uint8_t *mask,
  826. uint8_t mask_len, bool user,
  827. uint8_t default_patterns);
  828. QDF_STATUS (*send_enable_arp_ns_offload_cmd)(wmi_unified_t wmi_handle,
  829. struct pmo_arp_offload_params *arp_offload_req,
  830. struct pmo_ns_offload_params *ns_offload_req,
  831. uint8_t vdev_id);
  832. QDF_STATUS (*send_conf_hw_filter_cmd)(wmi_unified_t wmi,
  833. struct pmo_hw_filter_params *req);
  834. QDF_STATUS (*send_enable_enhance_multicast_offload_cmd)(
  835. wmi_unified_t wmi_handle,
  836. uint8_t vdev_id, bool action);
  837. QDF_STATUS (*send_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
  838. uint8_t vdev_id,
  839. struct qdf_mac_addr multicast_addr,
  840. bool clearList);
  841. QDF_STATUS (*send_multiple_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
  842. uint8_t vdev_id,
  843. struct pmo_mcast_filter_params *filter_param);
  844. QDF_STATUS (*send_gtk_offload_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  845. struct pmo_gtk_req *params,
  846. bool enable_offload,
  847. uint32_t gtk_offload_opcode);
  848. #ifdef WLAN_FEATURE_IGMP_OFFLOAD
  849. QDF_STATUS (*send_igmp_offload_cmd)(wmi_unified_t wmi_handle,
  850. struct pmo_igmp_offload_req *pmo_igmp_req);
  851. #endif
  852. QDF_STATUS (*send_process_gtk_offload_getinfo_cmd)(wmi_unified_t wmi_handle,
  853. uint8_t vdev_id,
  854. uint64_t offload_req_opcode);
  855. QDF_STATUS (*send_wow_sta_ra_filter_cmd)(wmi_unified_t wmi_handle,
  856. uint8_t vdev_id, uint8_t default_pattern,
  857. uint16_t rate_limit_interval);
  858. QDF_STATUS (*send_action_frame_patterns_cmd)(wmi_unified_t wmi_handle,
  859. struct pmo_action_wakeup_set_params *action_params);
  860. QDF_STATUS (*extract_gtk_rsp_event)(wmi_unified_t wmi_handle,
  861. void *evt_buf,
  862. struct pmo_gtk_rsp_params *gtk_rsp_param, uint32_t len);
  863. QDF_STATUS (*send_wow_delete_pattern_cmd)(wmi_unified_t wmi_handle,
  864. uint8_t ptrn_id,
  865. uint8_t vdev_id);
  866. QDF_STATUS (*send_host_wakeup_ind_to_fw_cmd)(wmi_unified_t wmi_handle,
  867. bool tx_pending_ind);
  868. QDF_STATUS (*send_wow_timer_pattern_cmd)(wmi_unified_t wmi_handle,
  869. uint8_t vdev_id, uint32_t cookie, uint32_t time);
  870. #ifdef FEATURE_WLAN_LPHB
  871. QDF_STATUS (*send_lphb_config_hbenable_cmd)(wmi_unified_t wmi_handle,
  872. wmi_hb_set_enable_cmd_fixed_param *params);
  873. QDF_STATUS (*send_lphb_config_tcp_params_cmd)(wmi_unified_t wmi_handle,
  874. wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
  875. QDF_STATUS (*send_lphb_config_tcp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
  876. wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
  877. QDF_STATUS (*send_lphb_config_udp_params_cmd)(wmi_unified_t wmi_handle,
  878. wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
  879. QDF_STATUS (*send_lphb_config_udp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
  880. wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
  881. #endif /* FEATURE_WLAN_LPHB */
  882. #ifdef WLAN_FEATURE_PACKET_FILTERING
  883. QDF_STATUS (*send_enable_disable_packet_filter_cmd)(wmi_unified_t wmi_handle,
  884. uint8_t vdev_id, bool enable);
  885. QDF_STATUS (*send_config_packet_filter_cmd)(wmi_unified_t wmi_handle,
  886. uint8_t vdev_id, struct pmo_rcv_pkt_fltr_cfg *rcv_filter_param,
  887. uint8_t filter_id, bool enable);
  888. #endif
  889. #ifdef WLAN_FEATURE_ICMP_OFFLOAD
  890. QDF_STATUS (*send_icmp_offload_config_cmd)(wmi_unified_t wmi_handle,
  891. struct pmo_icmp_offload *pmo_icmp_req);
  892. #endif
  893. #endif /* end of WLAN_POWER_MANAGEMENT_OFFLOAD */
  894. #ifdef WLAN_WMI_BCN
  895. QDF_STATUS (*send_bcn_buf_ll_cmd)(wmi_unified_t wmi_handle,
  896. wmi_bcn_send_from_host_cmd_fixed_param * param);
  897. #endif
  898. #if !defined(REMOVE_PKT_LOG) && defined(FEATURE_PKTLOG)
  899. QDF_STATUS (*send_pktlog_wmi_send_cmd)(wmi_unified_t wmi_handle,
  900. WMI_PKTLOG_EVENT pktlog_event,
  901. WMI_CMD_ID cmd_id, uint8_t user_triggered);
  902. #endif
  903. #ifdef WLAN_SUPPORT_GREEN_AP
  904. QDF_STATUS (*send_egap_conf_params_cmd)(wmi_unified_t wmi_handle,
  905. struct wlan_green_ap_egap_params *egap_params);
  906. #endif
  907. #ifdef WLAN_FEATURE_CIF_CFR
  908. QDF_STATUS (*send_oem_dma_cfg_cmd)(wmi_unified_t wmi_handle,
  909. wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
  910. #endif
  911. QDF_STATUS (*send_start_oem_data_cmd)(wmi_unified_t wmi_handle,
  912. uint32_t data_len,
  913. uint8_t *data);
  914. #ifdef FEATURE_OEM_DATA
  915. QDF_STATUS (*send_start_oemv2_data_cmd)(wmi_unified_t wmi_handle,
  916. struct oem_data *params);
  917. #endif
  918. QDF_STATUS
  919. (*send_dfs_phyerr_filter_offload_en_cmd)(wmi_unified_t wmi_handle,
  920. bool dfs_phyerr_filter_offload);
  921. QDF_STATUS (*send_bss_color_change_enable_cmd)(wmi_unified_t wmi_handle,
  922. uint32_t vdev_id,
  923. bool enable);
  924. QDF_STATUS (*send_obss_color_collision_cfg_cmd)(wmi_unified_t wmi_handle,
  925. struct wmi_obss_color_collision_cfg_param *cfg);
  926. QDF_STATUS (*extract_obss_color_collision_info)(uint8_t *evt_buf,
  927. struct wmi_obss_color_collision_info *info);
  928. QDF_STATUS (*send_peer_based_pktlog_cmd)(wmi_unified_t wmi_handle,
  929. uint8_t *macaddr,
  930. uint8_t mac_id,
  931. uint8_t enb_dsb);
  932. #ifdef WMI_STA_SUPPORT
  933. QDF_STATUS (*send_del_ts_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  934. uint8_t ac);
  935. QDF_STATUS (*send_aggr_qos_cmd)(wmi_unified_t wmi_handle,
  936. struct aggr_add_ts_param *aggr_qos_rsp_msg);
  937. QDF_STATUS (*send_add_ts_cmd)(wmi_unified_t wmi_handle,
  938. struct add_ts_param *msg);
  939. QDF_STATUS (*send_process_add_periodic_tx_ptrn_cmd)(
  940. wmi_unified_t wmi_handle,
  941. struct periodic_tx_pattern *pattern,
  942. uint8_t vdev_id);
  943. QDF_STATUS (*send_process_del_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
  944. uint8_t vdev_id,
  945. uint8_t pattern_id);
  946. QDF_STATUS (*send_set_auto_shutdown_timer_cmd)(wmi_unified_t wmi_handle,
  947. uint32_t timer_val);
  948. #ifdef WLAN_FEATURE_NAN
  949. QDF_STATUS (*send_nan_req_cmd)(wmi_unified_t wmi_handle,
  950. struct nan_msg_params *nan_req);
  951. QDF_STATUS (*send_nan_disable_req_cmd)(wmi_unified_t wmi_handle,
  952. struct nan_disable_req *nan_msg);
  953. QDF_STATUS (*extract_nan_event_rsp)(wmi_unified_t wmi_handle, void *evt_buf,
  954. struct nan_event_params *evt_params,
  955. uint8_t **msg_buf);
  956. #endif
  957. QDF_STATUS (*send_process_ch_avoid_update_cmd)(wmi_unified_t wmi_handle);
  958. QDF_STATUS (*send_process_set_ie_info_cmd)(wmi_unified_t wmi_handle,
  959. struct vdev_ie_info_param *ie_info);
  960. QDF_STATUS (*send_set_base_macaddr_indicate_cmd)(wmi_unified_t wmi_handle,
  961. uint8_t *custom_addr);
  962. QDF_STATUS (*send_pdev_set_pcl_cmd)(wmi_unified_t wmi_handle,
  963. struct wmi_pcl_chan_weights *msg);
  964. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  965. QDF_STATUS (*send_vdev_set_pcl_cmd)(wmi_unified_t wmi_handle,
  966. struct set_pcl_cmd_params *params);
  967. QDF_STATUS (*send_roam_set_param_cmd)(wmi_unified_t wmi_handle,
  968. struct vdev_set_params *roam_param);
  969. #endif
  970. #ifdef WLAN_POLICY_MGR_ENABLE
  971. QDF_STATUS (*send_pdev_set_dual_mac_config_cmd)(wmi_unified_t wmi_handle,
  972. struct policy_mgr_dual_mac_config *msg);
  973. #endif
  974. QDF_STATUS (*send_set_led_flashing_cmd)(wmi_unified_t wmi_handle,
  975. struct flashing_req_params *flashing);
  976. QDF_STATUS (*send_set_arp_stats_req_cmd)(wmi_unified_t wmi_handle,
  977. struct set_arp_stats *req_buf);
  978. QDF_STATUS (*send_get_arp_stats_req_cmd)(wmi_unified_t wmi_handle,
  979. struct get_arp_stats *req_buf);
  980. QDF_STATUS (*send_set_del_pmkid_cache_cmd) (wmi_unified_t wmi_handle,
  981. struct wmi_unified_pmk_cache *req_buf);
  982. QDF_STATUS (*send_adapt_dwelltime_params_cmd)(wmi_unified_t wmi_handle,
  983. struct wmi_adaptive_dwelltime_params *dwelltime_params);
  984. QDF_STATUS (*send_dbs_scan_sel_params_cmd)(wmi_unified_t wmi_handle,
  985. struct wmi_dbs_scan_sel_params *dbs_scan_params);
  986. QDF_STATUS (*send_vdev_set_gtx_cfg_cmd)(wmi_unified_t wmi_handle,
  987. uint32_t if_id,
  988. struct wmi_gtx_config *gtx_info);
  989. QDF_STATUS (*send_set_sta_keep_alive_cmd)(wmi_unified_t wmi_handle,
  990. struct sta_keep_alive_params *params);
  991. QDF_STATUS (*send_set_sta_sa_query_param_cmd)(wmi_unified_t wmi_handle,
  992. uint8_t vdev_id, uint32_t max_retries,
  993. uint32_t retry_interval);
  994. QDF_STATUS (*send_fw_profiling_cmd)(wmi_unified_t wmi_handle,
  995. uint32_t cmd, uint32_t value1, uint32_t value2);
  996. QDF_STATUS (*send_nat_keepalive_en_cmd)(wmi_unified_t wmi_handle,
  997. uint8_t vdev_id);
  998. QDF_STATUS (*send_process_dhcp_ind_cmd)(wmi_unified_t wmi_handle,
  999. wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
  1000. QDF_STATUS (*send_get_link_speed_cmd)(wmi_unified_t wmi_handle,
  1001. wmi_mac_addr peer_macaddr);
  1002. QDF_STATUS (*send_wlm_latency_level_cmd)(wmi_unified_t wmi_handle,
  1003. struct wlm_latency_level_param *param);
  1004. QDF_STATUS (*send_sar_limit_cmd)(wmi_unified_t wmi_handle,
  1005. struct sar_limit_cmd_params *params);
  1006. QDF_STATUS (*get_sar_limit_cmd)(wmi_unified_t wmi_handle);
  1007. QDF_STATUS (*extract_sar_limit_event)(wmi_unified_t wmi_handle,
  1008. uint8_t *evt_buf,
  1009. struct sar_limit_event *event);
  1010. QDF_STATUS (*extract_sar2_result_event)(void *handle,
  1011. uint8_t *event,
  1012. uint32_t len);
  1013. #ifdef FEATURE_WLAN_TDLS
  1014. QDF_STATUS (*send_set_tdls_offchan_mode_cmd)(wmi_unified_t wmi_handle,
  1015. struct tdls_channel_switch_params *chan_switch_params);
  1016. QDF_STATUS (*send_update_fw_tdls_state_cmd)(wmi_unified_t wmi_handle,
  1017. struct tdls_info *tdls_param,
  1018. enum wmi_tdls_state tdls_state);
  1019. QDF_STATUS (*send_update_tdls_peer_state_cmd)(wmi_unified_t wmi_handle,
  1020. struct tdls_peer_update_state *peer_state,
  1021. uint32_t *ch_mhz);
  1022. QDF_STATUS (*extract_vdev_tdls_ev_param)(wmi_unified_t wmi_handle,
  1023. void *evt_buf, struct tdls_event_info *param);
  1024. #endif /* FEATURE_WLAN_TDLS */
  1025. #endif /* WMI_STA_SUPPORT */
  1026. QDF_STATUS (*send_stats_ext_req_cmd)(wmi_unified_t wmi_handle,
  1027. struct stats_ext_params *preq);
  1028. #ifdef WLAN_FEATURE_EXTWOW_SUPPORT
  1029. QDF_STATUS (*send_enable_ext_wow_cmd)(wmi_unified_t wmi_handle,
  1030. struct ext_wow_params *params);
  1031. QDF_STATUS (*send_set_app_type2_params_in_fw_cmd)(wmi_unified_t wmi_handle,
  1032. struct app_type2_params *appType2Params);
  1033. QDF_STATUS (*send_app_type1_params_in_fw_cmd)(wmi_unified_t wmi_handle,
  1034. struct app_type1_params *app_type1_params);
  1035. #endif /* WLAN_FEATURE_EXTWOW_SUPPORT */
  1036. QDF_STATUS (*send_process_dhcpserver_offload_cmd)(wmi_unified_t wmi_handle,
  1037. struct dhcp_offload_info_params *params);
  1038. QDF_STATUS (*send_regdomain_info_to_fw_cmd)(wmi_unified_t wmi_handle,
  1039. uint32_t reg_dmn, uint16_t regdmn2G,
  1040. uint16_t regdmn5G, uint8_t ctl2G,
  1041. uint8_t ctl5G);
  1042. QDF_STATUS (*send_process_fw_mem_dump_cmd)(wmi_unified_t wmi_handle,
  1043. struct fw_dump_req_param *mem_dump_req);
  1044. QDF_STATUS (*send_cfg_action_frm_tb_ppdu_cmd)(wmi_unified_t wmi_handle,
  1045. struct cfg_action_frm_tb_ppdu_param *cfg_info);
  1046. QDF_STATUS (*save_fw_version_cmd)(wmi_unified_t wmi_handle, void *evt_buf);
  1047. QDF_STATUS (*check_and_update_fw_version_cmd)(wmi_unified_t wmi_hdl, void *ev);
  1048. QDF_STATUS (*send_log_supported_evt_cmd)(wmi_unified_t wmi_handle,
  1049. uint8_t *event,
  1050. uint32_t len);
  1051. QDF_STATUS (*send_enable_specific_fw_logs_cmd)(wmi_unified_t wmi_handle,
  1052. struct wmi_wifi_start_log *start_log);
  1053. QDF_STATUS (*send_flush_logs_to_fw_cmd)(wmi_unified_t wmi_handle);
  1054. QDF_STATUS (*send_unit_test_cmd)(wmi_unified_t wmi_handle,
  1055. struct wmi_unit_test_cmd *wmi_utest);
  1056. #ifdef FEATURE_WLAN_APF
  1057. QDF_STATUS
  1058. (*send_set_active_apf_mode_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  1059. enum wmi_host_active_apf_mode ucast_mode,
  1060. enum wmi_host_active_apf_mode mcast_bcast_mode);
  1061. QDF_STATUS (*send_apf_enable_cmd)(wmi_unified_t wmi_handle, uint32_t vdev_id,
  1062. bool enable);
  1063. QDF_STATUS (*send_apf_write_work_memory_cmd)(wmi_unified_t wmi_handle,
  1064. struct wmi_apf_write_memory_params *apf_write_params);
  1065. QDF_STATUS (*send_apf_read_work_memory_cmd)(wmi_unified_t wmi_handle,
  1066. struct wmi_apf_read_memory_params *apf_read_params);
  1067. QDF_STATUS (*extract_apf_read_memory_resp_event)(wmi_unified_t wmi_handle,
  1068. void *evt_buf,
  1069. struct wmi_apf_read_memory_resp_event_params *resp);
  1070. #endif /* FEATURE_WLAN_APF */
  1071. QDF_STATUS (*send_pdev_get_tpc_config_cmd)(wmi_unified_t wmi_handle,
  1072. uint32_t param);
  1073. #ifdef WMI_ATF_SUPPORT
  1074. QDF_STATUS (*send_set_bwf_cmd)(wmi_unified_t wmi_handle,
  1075. struct set_bwf_params *param);
  1076. #endif
  1077. QDF_STATUS (*send_pdev_fips_cmd)(wmi_unified_t wmi_handle,
  1078. struct fips_params *param);
  1079. #ifdef WLAN_FEATURE_FIPS_BER_CCMGCM
  1080. QDF_STATUS (*send_pdev_fips_extend_cmd)(wmi_unified_t wmi_handle,
  1081. struct fips_extend_params *param);
  1082. QDF_STATUS (*send_pdev_fips_mode_set_cmd)(wmi_unified_t wmi_handle,
  1083. struct fips_mode_set_params *param);
  1084. #endif
  1085. QDF_STATUS (*send_wlan_profile_enable_cmd)(wmi_unified_t wmi_handle,
  1086. struct wlan_profile_params *param);
  1087. #ifdef WLAN_FEATURE_DISA
  1088. QDF_STATUS
  1089. (*send_encrypt_decrypt_send_cmd)(wmi_unified_t wmi_handle,
  1090. struct disa_encrypt_decrypt_req_params
  1091. *params);
  1092. #endif
  1093. QDF_STATUS (*send_wlan_profile_trigger_cmd)(wmi_unified_t wmi_handle,
  1094. struct wlan_profile_params *param);
  1095. QDF_STATUS (*send_wlan_profile_hist_intvl_cmd)(wmi_unified_t wmi_handle,
  1096. struct wlan_profile_params *param);
  1097. QDF_STATUS (*send_pdev_set_chan_cmd)(wmi_unified_t wmi_handle,
  1098. struct channel_param *param);
  1099. QDF_STATUS (*send_process_update_edca_param_cmd)(wmi_unified_t wmi_handle,
  1100. uint8_t vdev_id, bool mu_edca_param,
  1101. struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
  1102. QDF_STATUS (*send_set_ratepwr_table_cmd)(wmi_unified_t wmi_handle,
  1103. struct ratepwr_table_params *param);
  1104. QDF_STATUS (*send_get_ratepwr_table_cmd)(wmi_unified_t wmi_handle);
  1105. QDF_STATUS (*send_set_ratepwr_chainmsk_cmd)(wmi_unified_t wmi_handle,
  1106. struct ratepwr_chainmsk_params *param);
  1107. QDF_STATUS (*send_set_macaddr_cmd)(wmi_unified_t wmi_handle,
  1108. struct macaddr_params *param);
  1109. QDF_STATUS (*send_pdev_scan_start_cmd)(wmi_unified_t wmi_handle);
  1110. QDF_STATUS (*send_pdev_scan_end_cmd)(wmi_unified_t wmi_handle);
  1111. QDF_STATUS (*send_set_acparams_cmd)(wmi_unified_t wmi_handle,
  1112. struct acparams_params *param);
  1113. QDF_STATUS (*send_set_vap_dscp_tid_map_cmd)(wmi_unified_t wmi_handle,
  1114. struct vap_dscp_tid_map_params *param);
  1115. QDF_STATUS (*send_proxy_ast_reserve_cmd)(wmi_unified_t wmi_handle,
  1116. struct proxy_ast_reserve_params *param);
  1117. #if defined(WMI_AP_SUPPORT) || defined(WDS_CONV_TARGET_IF_OPS_ENABLE)
  1118. QDF_STATUS (*send_peer_add_wds_entry_cmd)(wmi_unified_t wmi_handle,
  1119. struct peer_add_wds_entry_params *param);
  1120. QDF_STATUS (*send_peer_del_wds_entry_cmd)(wmi_unified_t wmi_handle,
  1121. struct peer_del_wds_entry_params *param);
  1122. #ifdef WLAN_FEATURE_MULTI_AST_DEL
  1123. QDF_STATUS (*send_peer_del_multi_wds_entries_cmd)(wmi_unified_t wmi_handle,
  1124. struct peer_del_multi_wds_entry_params *param);
  1125. #endif
  1126. QDF_STATUS (*send_peer_update_wds_entry_cmd)(wmi_unified_t wmi_handle,
  1127. struct peer_update_wds_entry_params *param);
  1128. #endif
  1129. QDF_STATUS (*send_peer_vlan_config_cmd)(wmi_unified_t wmi,
  1130. uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
  1131. struct peer_vlan_config_param *param);
  1132. #ifdef WMI_AP_SUPPORT
  1133. QDF_STATUS (*send_set_ctl_table_cmd)(wmi_unified_t wmi_handle,
  1134. struct ctl_table_params *param);
  1135. QDF_STATUS
  1136. (*send_set_sta_max_pwr_table_cmd)(wmi_unified_t wmi_handle,
  1137. struct sta_max_pwr_table_params *param);
  1138. QDF_STATUS
  1139. (*send_set_power_table_cmd)(wmi_unified_t wmi_handle,
  1140. struct rate2power_table_params *param);
  1141. QDF_STATUS (*send_set_mimogain_table_cmd)(wmi_unified_t wmi_handle,
  1142. struct mimogain_table_params *param);
  1143. QDF_STATUS (*send_packet_power_info_get_cmd)(wmi_unified_t wmi_handle,
  1144. struct packet_power_info_params *param);
  1145. QDF_STATUS (*send_get_halphy_cal_status_cmd)(wmi_unified_t wmi_handle,
  1146. struct halphy_cal_status_params *param);
  1147. QDF_STATUS (*send_set_ht_ie_cmd)(wmi_unified_t wmi_handle,
  1148. struct ht_ie_params *param);
  1149. QDF_STATUS (*send_set_vht_ie_cmd)(wmi_unified_t wmi_handle,
  1150. struct vht_ie_params *param);
  1151. QDF_STATUS (*send_set_quiet_mode_cmd)(wmi_unified_t wmi_handle,
  1152. struct set_quiet_mode_params *param);
  1153. QDF_STATUS (*send_set_bcn_offload_quiet_mode_cmd)(wmi_unified_t wmi_handle,
  1154. struct set_bcn_offload_quiet_mode_params *param);
  1155. QDF_STATUS (*send_bcn_offload_control_cmd)(wmi_unified_t wmi_handle,
  1156. struct bcn_offload_control *bcn_ctrl_param);
  1157. QDF_STATUS (*extract_swba_tim_info)(wmi_unified_t wmi_handle, void *evt_buf,
  1158. uint32_t idx, wmi_host_tim_info *tim_info);
  1159. QDF_STATUS (*extract_swba_noa_info)(wmi_unified_t wmi_handle, void *evt_buf,
  1160. uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
  1161. QDF_STATUS (*extract_swba_quiet_info)(wmi_unified_t wmi_handle, void *evt_buf,
  1162. uint32_t idx,
  1163. wmi_host_quiet_info *quiet_info);
  1164. QDF_STATUS (*extract_offchan_data_tx_compl_param)(wmi_unified_t wmi_handle,
  1165. void *evt_buf,
  1166. struct wmi_host_offchan_data_tx_compl_event *param);
  1167. QDF_STATUS (*extract_pdev_tpc_config_ev_param)(wmi_unified_t wmi_handle,
  1168. void *evt_buf, wmi_host_pdev_tpc_config_event *param);
  1169. #ifdef QCA_RSSI_DB2DBM
  1170. QDF_STATUS (*extract_pdev_rssi_dbm_conv_ev_param)(wmi_unified_t wmi_handle,
  1171. void *evt_buf,
  1172. struct rssi_db2dbm_param *param);
  1173. #endif
  1174. QDF_STATUS (*extract_peer_sta_kickout_ev)(wmi_unified_t wmi_handle,
  1175. void *evt_buf, wmi_host_peer_sta_kickout_event *ev);
  1176. QDF_STATUS (*extract_peer_create_response_event)(
  1177. wmi_unified_t wmi_handle,
  1178. void *evt_buf,
  1179. struct wmi_host_peer_create_response_event *param);
  1180. QDF_STATUS (*extract_peer_delete_response_event)(
  1181. wmi_unified_t wmi_handle,
  1182. void *evt_buf,
  1183. struct wmi_host_peer_delete_response_event *param);
  1184. QDF_STATUS (*extract_pdev_tpc_ev_param)(wmi_unified_t wmi_handle,
  1185. void *evt_buf, wmi_host_pdev_tpc_event *param);
  1186. QDF_STATUS (*extract_nfcal_power_ev_param)(wmi_unified_t wmi_handle,
  1187. void *evt_buf,
  1188. wmi_host_pdev_nfcal_power_all_channels_event *param);
  1189. QDF_STATUS (*extract_wds_addr_event)(wmi_unified_t wmi_handle,
  1190. void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
  1191. QDF_STATUS (*extract_peer_sta_ps_statechange_ev)(wmi_unified_t wmi_handle,
  1192. void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
  1193. QDF_STATUS (*extract_inst_rssi_stats_event)(wmi_unified_t wmi_handle,
  1194. void *evt_buf, wmi_host_inst_stats_resp *inst_rssi_resp);
  1195. QDF_STATUS (*extract_pdev_caldata_version_check_ev_param)(
  1196. wmi_unified_t wmi_handle,
  1197. void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
  1198. QDF_STATUS
  1199. (*send_peer_set_intra_bss_cmd)(wmi_unified_t wmi_handle,
  1200. struct wmi_intra_bss_params *param);
  1201. QDF_STATUS
  1202. (*send_vdev_set_intra_bss_cmd)(struct wmi_unified *wmi_handle,
  1203. struct wmi_intra_bss_params *param);
  1204. #ifdef WLAN_SUPPORT_RX_PROTOCOL_TYPE_TAG
  1205. QDF_STATUS (*set_rx_pkt_type_routing_tag_cmd)(
  1206. wmi_unified_t wmi_hdl, struct wmi_rx_pkt_protocol_routing_info *param);
  1207. #endif /* WLAN_SUPPORT_RX_PROTOCOL_TYPE_TAG */
  1208. #ifdef WLAN_SUPPORT_FILS
  1209. QDF_STATUS (*extract_swfda_vdev_id)(wmi_unified_t wmi_handle, void *evt_buf,
  1210. uint32_t *vdev_id);
  1211. QDF_STATUS (*send_fils_discovery_send_cmd)(wmi_unified_t wmi_handle,
  1212. struct fd_params *param);
  1213. #endif /* WLAN_SUPPORT_FILS */
  1214. QDF_STATUS (*send_set_qboost_param_cmd)(wmi_unified_t wmi_handle,
  1215. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1216. struct set_qboost_params *param);
  1217. QDF_STATUS (*send_mcast_group_update_cmd)(wmi_unified_t wmi_handle,
  1218. struct mcast_group_update_params *param);
  1219. QDF_STATUS (*send_pdev_qvit_cmd)(wmi_unified_t wmi_handle,
  1220. struct pdev_qvit_params *param);
  1221. QDF_STATUS (*send_wmm_update_cmd)(wmi_unified_t wmi_handle,
  1222. struct wmm_update_params *param);
  1223. QDF_STATUS (*extract_mgmt_tx_compl_param)(wmi_unified_t wmi_handle,
  1224. void *evt_buf, wmi_host_mgmt_tx_compl_event *param);
  1225. QDF_STATUS (*extract_chan_info_event)(wmi_unified_t wmi_handle, void *evt_buf,
  1226. wmi_host_chan_info_event *chan_info);
  1227. QDF_STATUS (*extract_scan_blanking_params)(wmi_unified_t wmi_handle,
  1228. void *evt_buf, wmi_host_scan_blanking_params *blanking_params);
  1229. #ifdef QCA_MANUAL_TRIGGERED_ULOFDMA
  1230. QDF_STATUS
  1231. (*extract_ulofdma_trigger_feedback_event)(
  1232. wmi_unified_t wmi_handle,
  1233. void *evt_buf,
  1234. wmi_host_manual_ul_ofdma_trig_feedback_evt *feedback);
  1235. QDF_STATUS
  1236. (*extract_ul_ofdma_trig_rx_peer_userinfo)(wmi_unified_t wmi_handle,
  1237. void *evt_buf,
  1238. struct wmi_host_rx_peer_userinfo_evt_data *resp);
  1239. #endif
  1240. QDF_STATUS (*extract_channel_hopping_event)(wmi_unified_t wmi_handle,
  1241. void *evt_buf,
  1242. wmi_host_pdev_channel_hopping_event *ch_hopping);
  1243. QDF_STATUS (*send_peer_chan_width_switch_cmd)(wmi_unified_t wmi_handle,
  1244. struct peer_chan_width_switch_params *param);
  1245. #endif
  1246. QDF_STATUS (*send_set_bridge_mac_addr_cmd)(wmi_unified_t wmi_handle,
  1247. struct set_bridge_mac_addr_params *param);
  1248. QDF_STATUS (*send_phyerr_enable_cmd)(wmi_unified_t wmi_handle);
  1249. QDF_STATUS (*send_phyerr_disable_cmd)(wmi_unified_t wmi_handle);
  1250. #ifdef WMI_SMART_ANT_SUPPORT
  1251. QDF_STATUS (*send_set_ant_switch_tbl_cmd)(wmi_unified_t wmi_handle,
  1252. struct ant_switch_tbl_params *param);
  1253. QDF_STATUS (*send_smart_ant_enable_cmd)(wmi_unified_t wmi_handle,
  1254. struct smart_ant_enable_params *param);
  1255. QDF_STATUS (*send_smart_ant_set_rx_ant_cmd)(wmi_unified_t wmi_handle,
  1256. struct smart_ant_rx_ant_params *param);
  1257. QDF_STATUS (*send_smart_ant_set_tx_ant_cmd)(wmi_unified_t wmi_handle,
  1258. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1259. struct smart_ant_tx_ant_params *param);
  1260. QDF_STATUS (*send_smart_ant_set_training_info_cmd)(wmi_unified_t wmi_handle,
  1261. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1262. struct smart_ant_training_info_params *param);
  1263. QDF_STATUS (*send_smart_ant_set_node_config_cmd)(wmi_unified_t wmi_handle,
  1264. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1265. struct smart_ant_node_config_params *param);
  1266. #endif
  1267. #ifdef WLAN_IOT_SIM_SUPPORT
  1268. QDF_STATUS (*send_simulation_test_cmd)(wmi_unified_t wmi_handle,
  1269. struct simulation_test_params *param);
  1270. #endif
  1271. QDF_STATUS (*send_smart_ant_enable_tx_feedback_cmd)(wmi_unified_t wmi_handle,
  1272. struct smart_ant_enable_tx_feedback_params *param);
  1273. #ifdef WLAN_CONV_SPECTRAL_ENABLE
  1274. QDF_STATUS (*extract_pdev_sscan_fw_cmd_fixed_param)(
  1275. wmi_unified_t wmi_handle,
  1276. uint8_t *evt_buf,
  1277. struct spectral_startscan_resp_params *params);
  1278. QDF_STATUS (*extract_pdev_sscan_fft_bin_index)(
  1279. wmi_unified_t wmi_handle,
  1280. uint8_t *evt_buf,
  1281. struct spectral_fft_bin_markers_160_165mhz *params);
  1282. QDF_STATUS (*extract_pdev_spectral_session_chan_info)(
  1283. wmi_unified_t wmi_handle, void *event,
  1284. struct spectral_session_chan_info *chan_info);
  1285. QDF_STATUS (*extract_pdev_spectral_session_detector_info)(
  1286. wmi_unified_t wmi_handle, void *event,
  1287. struct spectral_session_det_info *det_info,
  1288. uint8_t det_info_idx);
  1289. QDF_STATUS (*extract_spectral_caps_fixed_param)(
  1290. wmi_unified_t wmi_handle, void *event,
  1291. struct spectral_capabilities_event_params *param);
  1292. QDF_STATUS (*extract_spectral_scan_bw_caps)(
  1293. wmi_unified_t wmi_handle, void *event,
  1294. struct spectral_scan_bw_capabilities *bw_caps);
  1295. QDF_STATUS (*extract_spectral_fft_size_caps)(
  1296. wmi_unified_t wmi_handle, void *event,
  1297. struct spectral_fft_size_capabilities *fft_size_caps);
  1298. #endif /* WLAN_CONV_SPECTRAL_ENABLE */
  1299. QDF_STATUS (*send_vdev_spectral_configure_cmd)(wmi_unified_t wmi_handle,
  1300. struct vdev_spectral_configure_params *param);
  1301. QDF_STATUS (*send_vdev_spectral_enable_cmd)(wmi_unified_t wmi_handle,
  1302. struct vdev_spectral_enable_params *param);
  1303. QDF_STATUS (*send_bss_chan_info_request_cmd)(wmi_unified_t wmi_handle,
  1304. struct bss_chan_info_request_params *param);
  1305. QDF_STATUS (*send_thermal_mitigation_param_cmd)(wmi_unified_t wmi_handle,
  1306. struct thermal_mitigation_params *param);
  1307. QDF_STATUS (*send_vdev_set_neighbour_rx_cmd)(wmi_unified_t wmi_handle,
  1308. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1309. struct set_neighbour_rx_params *param);
  1310. QDF_STATUS (*send_vdev_set_fwtest_param_cmd)(wmi_unified_t wmi_handle,
  1311. struct set_fwtest_params *param);
  1312. QDF_STATUS (*send_vdev_config_ratemask_cmd)(wmi_unified_t wmi_handle,
  1313. struct config_ratemask_params *param);
  1314. QDF_STATUS (*send_vdev_set_custom_aggr_size_cmd)(wmi_unified_t wmi_handle,
  1315. struct set_custom_aggr_size_params *param);
  1316. QDF_STATUS (*send_vdev_set_qdepth_thresh_cmd)(wmi_unified_t wmi_handle,
  1317. struct set_qdepth_thresh_params *param);
  1318. QDF_STATUS (*send_wow_wakeup_cmd)(wmi_unified_t wmi_handle);
  1319. QDF_STATUS (*send_wow_add_wakeup_event_cmd)(wmi_unified_t wmi_handle,
  1320. struct wow_add_wakeup_params *param);
  1321. QDF_STATUS (*send_wow_add_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
  1322. struct wow_add_wakeup_pattern_params *param);
  1323. QDF_STATUS (*send_wow_remove_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
  1324. struct wow_remove_wakeup_pattern_params *param);
  1325. QDF_STATUS (*send_pdev_set_regdomain_cmd)(wmi_unified_t wmi_handle,
  1326. struct pdev_set_regdomain_params *param);
  1327. QDF_STATUS (*send_set_beacon_filter_cmd)(wmi_unified_t wmi_handle,
  1328. struct set_beacon_filter_params *param);
  1329. QDF_STATUS (*send_remove_beacon_filter_cmd)(wmi_unified_t wmi_handle,
  1330. struct remove_beacon_filter_params *param);
  1331. /*
  1332. QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
  1333. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1334. struct mgmt_params *param);
  1335. */
  1336. QDF_STATUS (*send_addba_clearresponse_cmd)(wmi_unified_t wmi_handle,
  1337. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1338. struct addba_clearresponse_params *param);
  1339. QDF_STATUS (*send_addba_send_cmd)(wmi_unified_t wmi_handle,
  1340. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1341. struct addba_send_params *param);
  1342. QDF_STATUS (*send_delba_send_cmd)(wmi_unified_t wmi_handle,
  1343. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1344. struct delba_send_params *param);
  1345. QDF_STATUS (*send_addba_setresponse_cmd)(wmi_unified_t wmi_handle,
  1346. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1347. struct addba_setresponse_params *param);
  1348. QDF_STATUS (*send_singleamsdu_cmd)(wmi_unified_t wmi_handle,
  1349. uint8_t macaddr[QDF_MAC_ADDR_SIZE],
  1350. struct singleamsdu_params *param);
  1351. QDF_STATUS (*send_mu_scan_cmd)(wmi_unified_t wmi_handle,
  1352. struct mu_scan_params *param);
  1353. QDF_STATUS (*send_lteu_config_cmd)(wmi_unified_t wmi_handle,
  1354. struct lteu_config_params *param);
  1355. QDF_STATUS (*send_set_ps_mode_cmd)(wmi_unified_t wmi_handle,
  1356. struct set_ps_mode_params *param);
  1357. QDF_STATUS (*save_service_bitmap)(wmi_unified_t wmi_handle,
  1358. void *evt_buf, void *bitmap_buf);
  1359. QDF_STATUS (*save_ext_service_bitmap)(wmi_unified_t wmi_handle,
  1360. void *evt_buf, void *bitmap_buf);
  1361. bool (*is_service_enabled)(wmi_unified_t wmi_handle,
  1362. uint32_t service_id);
  1363. QDF_STATUS (*get_target_cap_from_service_ready)(wmi_unified_t wmi_handle,
  1364. void *evt_buf, struct wlan_psoc_target_capability_info *ev);
  1365. QDF_STATUS (*extract_fw_version)(wmi_unified_t wmi_handle,
  1366. void *ev, struct wmi_host_fw_ver *fw_ver);
  1367. QDF_STATUS (*extract_fw_abi_version)(wmi_unified_t wmi_handle,
  1368. void *ev, struct wmi_host_fw_abi_ver *fw_ver);
  1369. QDF_STATUS (*extract_hal_reg_cap)(
  1370. wmi_unified_t wmi_handle, void *evt_buf,
  1371. struct wlan_psoc_hal_reg_capability *hal_reg_cap);
  1372. QDF_STATUS (*extract_hal_reg_cap_ext2)(
  1373. wmi_unified_t wmi_handle, void *evt_buf, uint8_t phy_idx,
  1374. struct wlan_psoc_host_hal_reg_capabilities_ext2 *hal_reg_cap);
  1375. uint32_t (*extract_num_mem_reqs)(wmi_unified_t wmi_handle,
  1376. void *evt_buf);
  1377. QDF_STATUS (*extract_host_mem_req)(wmi_unified_t wmi_handle,
  1378. void *evt_buf, host_mem_req *mem_reqs,
  1379. uint32_t num_active_peers,
  1380. uint32_t num_peers,
  1381. enum wmi_fw_mem_prio fw_prio, uint16_t idx);
  1382. QDF_STATUS (*init_cmd_send)(wmi_unified_t wmi_handle,
  1383. struct wmi_init_cmd_param *param);
  1384. QDF_STATUS (*save_fw_version)(wmi_unified_t wmi_handle, void *evt_buf);
  1385. uint32_t (*ready_extract_init_status)(wmi_unified_t wmi_hdl, void *ev);
  1386. QDF_STATUS (*ready_extract_mac_addr)(wmi_unified_t wmi_hdl, void *ev,
  1387. uint8_t *macaddr);
  1388. wmi_host_mac_addr * (*ready_extract_mac_addr_list)(wmi_unified_t wmi_hdl,
  1389. void *ev, uint8_t *num_mac_addr);
  1390. QDF_STATUS (*extract_ready_event_params)(wmi_unified_t wmi_handle,
  1391. void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
  1392. QDF_STATUS (*check_and_update_fw_version)(wmi_unified_t wmi_hdl, void *ev);
  1393. uint8_t* (*extract_dbglog_data_len)(wmi_unified_t wmi_handle, void *evt_buf,
  1394. uint32_t *len);
  1395. QDF_STATUS (*send_ext_resource_config)(wmi_unified_t wmi_handle,
  1396. wmi_host_ext_resource_config *ext_cfg);
  1397. QDF_STATUS (*send_nf_dbr_dbm_info_get_cmd)(wmi_unified_t wmi_handle,
  1398. uint8_t mac_id);
  1399. #ifdef WLAN_FEATURE_GPIO_CFG
  1400. QDF_STATUS (*send_gpio_config_cmd)(wmi_unified_t wmi_handle,
  1401. struct gpio_config_params *param);
  1402. QDF_STATUS (*send_gpio_output_cmd)(wmi_unified_t wmi_handle,
  1403. struct gpio_output_params *param);
  1404. #endif
  1405. QDF_STATUS (*send_rtt_meas_req_test_cmd)(wmi_unified_t wmi_handle,
  1406. struct rtt_meas_req_test_params *param);
  1407. QDF_STATUS (*send_rtt_meas_req_cmd)(wmi_unified_t wmi_handle,
  1408. struct rtt_meas_req_params *param);
  1409. QDF_STATUS (*send_rtt_keepalive_req_cmd)(wmi_unified_t wmi_handle,
  1410. struct rtt_keepalive_req_params *param);
  1411. QDF_STATUS (*send_lci_set_cmd)(wmi_unified_t wmi_handle,
  1412. struct lci_set_params *param);
  1413. QDF_STATUS (*send_lcr_set_cmd)(wmi_unified_t wmi_handle,
  1414. struct lcr_set_params *param);
  1415. QDF_STATUS (*send_periodic_chan_stats_config_cmd)(wmi_unified_t wmi_handle,
  1416. struct periodic_chan_stats_params *param);
  1417. #ifdef WLAN_ATF_ENABLE
  1418. QDF_STATUS (*send_atf_peer_list_cmd)(wmi_unified_t wmi_handle,
  1419. struct set_atf_params *param);
  1420. QDF_STATUS
  1421. (*send_atf_peer_request_cmd)(wmi_unified_t wmi_handle,
  1422. struct atf_peer_request_params *param);
  1423. QDF_STATUS
  1424. (*send_set_atf_grouping_cmd)(wmi_unified_t wmi_handle,
  1425. struct atf_grouping_params *param);
  1426. QDF_STATUS
  1427. (*send_set_atf_group_ac_cmd)(wmi_unified_t wmi_handle,
  1428. struct atf_group_ac_params *param);
  1429. QDF_STATUS (*extract_atf_peer_stats_ev)(wmi_unified_t wmi_handle,
  1430. void *evt_buf,
  1431. wmi_host_atf_peer_stats_event *ev);
  1432. QDF_STATUS (*extract_atf_token_info_ev)(wmi_unified_t wmi_handle,
  1433. void *evt_buf, uint8_t idx,
  1434. wmi_host_atf_peer_stats_info *atf_info);
  1435. #ifdef WLAN_ATF_INCREASED_STA
  1436. QDF_STATUS (*send_atf_peer_list_cmd_v2)(wmi_unified_t wmi_handle,
  1437. struct atf_peer_params_v2 *param);
  1438. QDF_STATUS
  1439. (*send_set_atf_grouping_cmd_v2)(wmi_unified_t wmi_handle,
  1440. struct atf_grouping_params_v2 *param);
  1441. #endif
  1442. #endif
  1443. QDF_STATUS (*send_get_user_position_cmd)(wmi_unified_t wmi_handle,
  1444. uint32_t value);
  1445. QDF_STATUS
  1446. (*send_reset_peer_mumimo_tx_count_cmd)(wmi_unified_t wmi_handle,
  1447. uint32_t value);
  1448. QDF_STATUS (*send_get_peer_mumimo_tx_count_cmd)(wmi_unified_t wmi_handle,
  1449. uint32_t value);
  1450. QDF_STATUS
  1451. (*send_pdev_caldata_version_check_cmd)(wmi_unified_t wmi_handle,
  1452. uint32_t value);
  1453. QDF_STATUS
  1454. (*send_btcoex_wlan_priority_cmd)(wmi_unified_t wmi_handle,
  1455. struct btcoex_cfg_params *param);
  1456. QDF_STATUS
  1457. (*send_start_11d_scan_cmd)(wmi_unified_t wmi_handle,
  1458. struct reg_start_11d_scan_req *param);
  1459. QDF_STATUS
  1460. (*send_stop_11d_scan_cmd)(wmi_unified_t wmi_handle,
  1461. struct reg_stop_11d_scan_req *param);
  1462. QDF_STATUS
  1463. (*send_btcoex_duty_cycle_cmd)(wmi_unified_t wmi_handle,
  1464. struct btcoex_cfg_params *param);
  1465. QDF_STATUS
  1466. (*send_egid_info_cmd)(wmi_unified_t wmi_handle,
  1467. struct esl_egid_params *param);
  1468. QDF_STATUS
  1469. (*send_coex_ver_cfg_cmd)(wmi_unified_t wmi_handle, coex_ver_cfg_t *param);
  1470. QDF_STATUS
  1471. (*send_coex_config_cmd)(wmi_unified_t wmi_handle,
  1472. struct coex_config_params *param);
  1473. #ifdef WLAN_FEATURE_DBAM_CONFIG
  1474. QDF_STATUS
  1475. (*send_dbam_config_cmd)(wmi_unified_t wmi_handle,
  1476. struct coex_dbam_config_params *param);
  1477. QDF_STATUS
  1478. (*extract_dbam_config_resp_event)(wmi_unified_t wmi_handle, void *evt_buf,
  1479. struct coex_dbam_config_resp *resp);
  1480. #endif
  1481. #ifdef OL_ATH_SMART_LOGGING
  1482. QDF_STATUS
  1483. (*send_smart_logging_enable_cmd)(wmi_unified_t wmi_handle, uint32_t param);
  1484. QDF_STATUS
  1485. (*send_smart_logging_fatal_cmd)(wmi_unified_t wmi_handle,
  1486. struct wmi_debug_fatal_events *param);
  1487. #endif /* OL_ATH_SMART_LOGGING */
  1488. #ifdef DCS_INTERFERENCE_DETECTION
  1489. QDF_STATUS (*extract_dcs_interference_type)(
  1490. wmi_unified_t wmi_handle,
  1491. void *evt_buf,
  1492. struct wlan_host_dcs_interference_param *param);
  1493. QDF_STATUS (*extract_dcs_im_tgt_stats)(
  1494. wmi_unified_t wmi_handle,
  1495. void *evt_buf,
  1496. struct wlan_host_dcs_im_tgt_stats *wlan_stat);
  1497. QDF_STATUS (*extract_dcs_awgn_info)(wmi_unified_t wmi_handle, void *evt_buf,
  1498. struct wlan_host_dcs_awgn_info *awgn_info);
  1499. #else
  1500. QDF_STATUS (*extract_dcs_interference_type)(wmi_unified_t wmi_handle,
  1501. void *evt_buf, struct wmi_host_dcs_interference_param *param);
  1502. QDF_STATUS (*extract_dcs_cw_int)(wmi_unified_t wmi_handle, void *evt_buf,
  1503. wmi_host_ath_dcs_cw_int *cw_int);
  1504. QDF_STATUS (*extract_dcs_im_tgt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1505. wmi_host_dcs_im_tgt_stats_t *wlan_stat);
  1506. QDF_STATUS (*extract_dcs_awgn_info)(
  1507. wmi_unified_t wmi_handle,
  1508. void *evt_buf,
  1509. struct wmi_host_dcs_awgn_info *awgn_info);
  1510. #endif
  1511. QDF_STATUS (*extract_fips_event_data)(wmi_unified_t wmi_handle,
  1512. void *evt_buf, struct wmi_host_fips_event_param *param);
  1513. #ifdef WLAN_FEATURE_FIPS_BER_CCMGCM
  1514. QDF_STATUS
  1515. (*extract_fips_extend_ev_data)(wmi_unified_t wmi_handle,
  1516. void *evt_buf,
  1517. struct wmi_host_fips_extend_event_param
  1518. *param);
  1519. #endif
  1520. #ifdef WLAN_FEATURE_DISA
  1521. QDF_STATUS
  1522. (*extract_encrypt_decrypt_resp_event)(wmi_unified_t wmi_handle,
  1523. void *evt_buf,
  1524. struct disa_encrypt_decrypt_resp_params
  1525. *resp);
  1526. #endif
  1527. QDF_STATUS (*extract_vdev_start_resp)(wmi_unified_t wmi_handle, void *evt_buf,
  1528. struct vdev_start_response *vdev_rsp);
  1529. QDF_STATUS (*extract_vdev_delete_resp)(
  1530. wmi_unified_t wmi_handle, void *evt_buf,
  1531. struct vdev_delete_response *delete_rsp);
  1532. QDF_STATUS (*extract_tbttoffset_update_params)(wmi_unified_t wmi_hdl,
  1533. void *evt_buf, uint8_t idx,
  1534. struct tbttoffset_params *tbtt_param);
  1535. QDF_STATUS (*extract_ext_tbttoffset_update_params)(wmi_unified_t wmi_hdl,
  1536. void *evt_buf, uint8_t idx,
  1537. struct tbttoffset_params *tbtt_param);
  1538. QDF_STATUS (*extract_tbttoffset_num_vdevs)(wmi_unified_t wmi_hdl, void *evt_buf,
  1539. uint32_t *num_vdevs);
  1540. QDF_STATUS (*extract_ext_tbttoffset_num_vdevs)(wmi_unified_t wmi_hdl,
  1541. void *evt_buf,
  1542. uint32_t *num_vdevs);
  1543. QDF_STATUS (*extract_muedca_params_handler)(wmi_unified_t wmi_hdl,
  1544. void *evt_buf,
  1545. struct muedca_params *muedca_param_list);
  1546. QDF_STATUS (*extract_mgmt_rx_params)(wmi_unified_t wmi_handle, void *evt_buf,
  1547. struct mgmt_rx_event_params *hdr, uint8_t **bufp);
  1548. QDF_STATUS (*extract_frame_pn_params)(wmi_unified_t wmi_handle, void *evt_buf,
  1549. struct frame_pn_params *pn_params);
  1550. QDF_STATUS (*extract_is_conn_ap_frame)(wmi_unified_t wmi_handle,
  1551. void *evt_buf,
  1552. struct frm_conn_ap *is_conn_ap);
  1553. QDF_STATUS (*extract_vdev_stopped_param)(wmi_unified_t wmi_handle,
  1554. void *evt_buf, uint32_t *vdev_id);
  1555. QDF_STATUS (*extract_vdev_roam_param)(wmi_unified_t wmi_handle, void *evt_buf,
  1556. wmi_host_roam_event *param);
  1557. QDF_STATUS (*extract_vdev_scan_ev_param)(wmi_unified_t wmi_handle,
  1558. void *evt_buf, struct scan_event *param);
  1559. #ifdef FEATURE_WLAN_SCAN_PNO
  1560. QDF_STATUS (*extract_nlo_match_ev_param)(wmi_unified_t wmi_handle,
  1561. void *evt_buf,
  1562. struct scan_event *param);
  1563. QDF_STATUS (*extract_nlo_complete_ev_param)(wmi_unified_t wmi_handle,
  1564. void *evt_buf,
  1565. struct scan_event *param);
  1566. #endif
  1567. QDF_STATUS (*extract_mu_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
  1568. wmi_host_mu_report_event *param);
  1569. QDF_STATUS (*extract_mu_db_entry)(wmi_unified_t wmi_hdl, void *evt_buf,
  1570. uint8_t idx, wmi_host_mu_db_entry *param);
  1571. QDF_STATUS (*extract_mumimo_tx_count_ev_param)(wmi_unified_t wmi_handle,
  1572. void *evt_buf, wmi_host_peer_txmu_cnt_event *param);
  1573. QDF_STATUS (*extract_peer_gid_userpos_list_ev_param)(wmi_unified_t wmi_handle,
  1574. void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
  1575. QDF_STATUS
  1576. (*extract_esp_estimation_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
  1577. struct esp_estimation_event *param);
  1578. QDF_STATUS (*extract_gpio_input_ev_param)(wmi_unified_t wmi_handle,
  1579. void *evt_buf, uint32_t *gpio_num);
  1580. QDF_STATUS (*extract_pdev_reserve_ast_ev_param)(wmi_unified_t wmi_handle,
  1581. void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
  1582. QDF_STATUS (*extract_pdev_generic_buffer_ev_param)(wmi_unified_t wmi_handle,
  1583. void *evt_buf, wmi_host_pdev_generic_buffer_event *param);
  1584. QDF_STATUS (*extract_pdev_csa_switch_count_status)(wmi_unified_t wmi_handle,
  1585. void *evt_buf, struct pdev_csa_switch_count_status *param);
  1586. QDF_STATUS (*extract_swba_num_vdevs)(wmi_unified_t wmi_handle, void *evt_buf,
  1587. uint32_t *num_vdevs, uint32_t *num_quiet_triggered_vdevs);
  1588. #ifdef CONVERGED_P2P_ENABLE
  1589. #ifdef FEATURE_P2P_LISTEN_OFFLOAD
  1590. QDF_STATUS (*extract_p2p_lo_stop_ev_param)(wmi_unified_t wmi_handle,
  1591. void *evt_buf, struct p2p_lo_event *param);
  1592. #endif
  1593. QDF_STATUS (*extract_p2p_noa_ev_param)(wmi_unified_t wmi_handle,
  1594. void *evt_buf, struct p2p_noa_info *param);
  1595. QDF_STATUS
  1596. (*extract_mac_addr_rx_filter_evt_param)(wmi_unified_t wmi_handle,
  1597. void *evt_buf,
  1598. struct p2p_set_mac_filter_evt *param);
  1599. #endif
  1600. QDF_STATUS (*set_mac_addr_rx_filter)(wmi_unified_t wmi_handle,
  1601. struct set_rx_mac_filter *param);
  1602. #ifdef WLAN_FEATURE_INTEROP_ISSUES_AP
  1603. QDF_STATUS
  1604. (*extract_interop_issues_ap_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
  1605. struct wlan_interop_issues_ap_event *param);
  1606. QDF_STATUS
  1607. (*send_set_rap_ps_cmd)(wmi_unified_t wmi_handle,
  1608. struct wlan_interop_issues_ap_info *interop_issues_ap);
  1609. #endif
  1610. QDF_STATUS (*extract_peer_ratecode_list_ev)(wmi_unified_t wmi_handle,
  1611. void *evt_buf, uint8_t *peer_mac,
  1612. uint32_t *pdev_id,
  1613. wmi_sa_rate_cap *rate_cap);
  1614. QDF_STATUS (*extract_comb_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
  1615. uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
  1616. QDF_STATUS (*extract_single_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
  1617. uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
  1618. QDF_STATUS (*extract_composite_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
  1619. uint16_t datalen, wmi_host_phyerr_t *phyerr);
  1620. QDF_STATUS (*extract_rtt_hdr)(wmi_unified_t wmi_handle, void *evt_buf,
  1621. wmi_host_rtt_event_hdr *ev);
  1622. QDF_STATUS (*extract_rtt_ev)(wmi_unified_t wmi_handle, void *evt_buf,
  1623. wmi_host_rtt_meas_event *ev, uint8_t *hdump, uint16_t hdump_len);
  1624. QDF_STATUS (*extract_rtt_error_report_ev)(wmi_unified_t wmi_handle,
  1625. void *evt_buf, wmi_host_rtt_error_report_event *ev);
  1626. QDF_STATUS (*extract_all_stats_count)(wmi_unified_t wmi_handle, void *evt_buf,
  1627. wmi_host_stats_event *stats_param);
  1628. #ifdef WLAN_FEATURE_BIG_DATA_STATS
  1629. QDF_STATUS (*extract_big_data_stats)(
  1630. wmi_unified_t wmi_handle, void *evt_buf,
  1631. struct big_data_stats_event *stats_param);
  1632. #endif
  1633. QDF_STATUS (*extract_pdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1634. uint32_t index, wmi_host_pdev_stats *pdev_stats);
  1635. QDF_STATUS (*extract_pmf_bcn_protect_stats)(wmi_unified_t wmi_handle,
  1636. void *evt_buf, wmi_host_pmf_bcn_protect_stats *pmf_bcn_stats);
  1637. QDF_STATUS (*extract_unit_test)(wmi_unified_t wmi_handle, void *evt_buf,
  1638. wmi_unit_test_event *unit_test, uint32_t maxspace);
  1639. QDF_STATUS (*extract_pdev_ext_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1640. uint32_t index, wmi_host_pdev_ext_stats *pdev_ext_stats);
  1641. QDF_STATUS (*extract_vdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1642. uint32_t index, wmi_host_vdev_stats *vdev_stats);
  1643. QDF_STATUS (*extract_per_chain_rssi_stats)(wmi_unified_t wmi_handle,
  1644. void *evt_buf, uint32_t index,
  1645. struct wmi_host_per_chain_rssi_stats *rssi_stats);
  1646. QDF_STATUS (*extract_peer_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1647. uint32_t index, wmi_host_peer_stats *peer_stats);
  1648. QDF_STATUS (*extract_bcnflt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1649. uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
  1650. QDF_STATUS (*extract_peer_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1651. uint32_t index, wmi_host_peer_extd_stats *peer_extd_stats);
  1652. QDF_STATUS (*extract_peer_retry_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1653. uint32_t index,
  1654. struct wmi_host_peer_retry_stats *peer_retry_stats);
  1655. QDF_STATUS (*extract_peer_adv_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1656. struct wmi_host_peer_adv_stats
  1657. *peer_adv_stats);
  1658. QDF_STATUS (*extract_chan_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1659. uint32_t index, wmi_host_chan_stats *chan_stats);
  1660. #ifdef WLAN_FEATURE_MIB_STATS
  1661. QDF_STATUS (*extract_mib_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1662. struct mib_stats_metrics *mib_stats);
  1663. #endif
  1664. QDF_STATUS (*extract_thermal_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1665. uint32_t *temp, enum thermal_throttle_level *level,
  1666. uint32_t *therm_throt_levels,
  1667. struct thermal_throt_level_stats *tt_temp_range_stats_event,
  1668. uint32_t *pdev_id);
  1669. QDF_STATUS (*extract_thermal_level_stats)(wmi_unified_t wmi_handle,
  1670. void *evt_buf, uint8_t idx, uint32_t *levelcount,
  1671. uint32_t *dccount);
  1672. QDF_STATUS (*extract_profile_ctx)(wmi_unified_t wmi_handle, void *evt_buf,
  1673. wmi_host_wlan_profile_ctx_t *profile_ctx);
  1674. QDF_STATUS (*extract_profile_data)(wmi_unified_t wmi_handle, void *evt_buf,
  1675. uint8_t idx,
  1676. wmi_host_wlan_profile_t *profile_data);
  1677. QDF_STATUS (*extract_bss_chan_info_event)(wmi_unified_t wmi_handle,
  1678. void *evt_buf,
  1679. wmi_host_pdev_bss_chan_info_event *bss_chan_info);
  1680. QDF_STATUS (*extract_tx_data_traffic_ctrl_ev)(wmi_unified_t wmi_handle,
  1681. void *evt_buf, wmi_host_tx_data_traffic_ctrl_event *ev);
  1682. QDF_STATUS (*extract_vdev_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1683. uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
  1684. QDF_STATUS (*extract_vdev_nac_rssi_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1685. struct wmi_host_vdev_nac_rssi_event *vdev_nac_rssi_stats);
  1686. QDF_STATUS (*extract_bcn_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1687. uint32_t index, wmi_host_bcn_stats *bcn_stats);
  1688. #ifdef QCA_SUPPORT_MC_CP_STATS
  1689. QDF_STATUS (*extract_peer_stats_count)(wmi_unified_t wmi_handle, void *evt_buf,
  1690. wmi_host_stats_event *stats_param);
  1691. QDF_STATUS (*extract_peer_stats_info)(wmi_unified_t wmi_handle, void *evt_buf,
  1692. uint32_t index, wmi_host_peer_stats_info *peer_stats_info);
  1693. QDF_STATUS
  1694. (*extract_peer_tx_pkt_per_mcs)(wmi_unified_t wmi_handle, void *evt_buf,
  1695. uint32_t index,
  1696. wmi_host_peer_stats_info *peer_stats_info);
  1697. QDF_STATUS
  1698. (*extract_peer_rx_pkt_per_mcs)(wmi_unified_t wmi_handle, void *evt_buf,
  1699. uint32_t index,
  1700. wmi_host_peer_stats_info *peer_stats_info);
  1701. #endif /* QCA_SUPPORT_MC_CP_STATS */
  1702. QDF_STATUS
  1703. (*extract_vdev_prb_fils_stats)(wmi_unified_t wmi_handle,
  1704. void *evt_buf, uint32_t index,
  1705. struct wmi_host_vdev_prb_fils_stats *vdev_stats);
  1706. #ifdef OL_ATH_SMART_LOGGING
  1707. QDF_STATUS (*extract_smartlog_event)(wmi_unified_t wmi_handle, void *evt_buf,
  1708. struct wmi_debug_fatal_events *event);
  1709. #endif /* OL_ATH_SMART_LOGGING */
  1710. QDF_STATUS (*send_power_dbg_cmd)(wmi_unified_t wmi_handle,
  1711. struct wmi_power_dbg_params *param);
  1712. QDF_STATUS (*send_multiple_vdev_restart_req_cmd)(wmi_unified_t wmi_handle,
  1713. struct multiple_vdev_restart_params *param);
  1714. QDF_STATUS (*send_multiple_vdev_set_param_cmd)(
  1715. wmi_unified_t wmi_handle,
  1716. struct multiple_vdev_set_param *param);
  1717. #ifdef QCA_SUPPORT_AGILE_DFS
  1718. QDF_STATUS
  1719. (*send_adfs_ocac_abort_cmd)(wmi_unified_t wmi_handle,
  1720. struct vdev_adfs_abort_params *param);
  1721. QDF_STATUS (*send_adfs_ch_cfg_cmd)(wmi_unified_t wmi_handle,
  1722. struct vdev_adfs_ch_cfg_params *param);
  1723. #endif
  1724. QDF_STATUS (*send_fw_test_cmd)(wmi_unified_t wmi_handle,
  1725. struct set_fwtest_params *wmi_fwtest);
  1726. QDF_STATUS (*send_wfa_test_cmd)(wmi_unified_t wmi_handle,
  1727. struct set_wfatest_params *wmi_wfatest);
  1728. #ifdef WLAN_FEATURE_ACTION_OUI
  1729. QDF_STATUS (*send_action_oui_cmd)(wmi_unified_t wmi_handle,
  1730. struct action_oui_request *req);
  1731. #endif /* WLAN_FEATURE_ACTION_OUI */
  1732. QDF_STATUS (*send_peer_rx_reorder_queue_setup_cmd)(wmi_unified_t wmi_handle,
  1733. struct rx_reorder_queue_setup_params *param);
  1734. QDF_STATUS (*send_peer_rx_reorder_queue_remove_cmd)(wmi_unified_t wmi_handle,
  1735. struct rx_reorder_queue_remove_params *param);
  1736. QDF_STATUS (*extract_service_ready_ext)(
  1737. wmi_unified_t wmi_handle,
  1738. uint8_t *evt_buf,
  1739. struct wlan_psoc_host_service_ext_param *param);
  1740. QDF_STATUS (*extract_service_ready_ext2)(
  1741. wmi_unified_t wmi_handle,
  1742. uint8_t *evt_buf,
  1743. struct wlan_psoc_host_service_ext2_param *param);
  1744. QDF_STATUS (*extract_dbs_or_sbs_service_ready_ext2)(
  1745. wmi_unified_t wmi_handle, uint8_t *event,
  1746. uint32_t *sbs_lower_band_end_freq);
  1747. QDF_STATUS (*extract_hw_mode_cap_service_ready_ext)(
  1748. wmi_unified_t wmi_handle,
  1749. uint8_t *evt_buf, uint8_t hw_mode_idx,
  1750. struct wlan_psoc_host_hw_mode_caps *param);
  1751. QDF_STATUS (*extract_mac_phy_cap_service_ready_ext)(
  1752. wmi_unified_t wmi_handle,
  1753. uint8_t *evt_buf,
  1754. uint8_t hw_mode_id,
  1755. uint8_t phy_id,
  1756. struct wlan_psoc_host_mac_phy_caps *param);
  1757. QDF_STATUS (*extract_mac_phy_cap_service_ready_ext2)(
  1758. wmi_unified_t wmi_handle,
  1759. uint8_t *evt_buf,
  1760. uint8_t hw_mode_id,
  1761. uint8_t phy_id,
  1762. uint8_t phy_idx,
  1763. struct wlan_psoc_host_mac_phy_caps_ext2 *mac_phy_cap);
  1764. QDF_STATUS (*extract_reg_cap_service_ready_ext)(
  1765. wmi_unified_t wmi_handle,
  1766. uint8_t *evt_buf, uint8_t phy_idx,
  1767. struct wlan_psoc_host_hal_reg_capabilities_ext *param);
  1768. QDF_STATUS (*extract_dbr_ring_cap_service_ready_ext)(
  1769. wmi_unified_t wmi_handle,
  1770. uint8_t *evt_buf, uint8_t idx,
  1771. struct wlan_psoc_host_dbr_ring_caps *param);
  1772. QDF_STATUS (*extract_dbr_ring_cap_service_ready_ext2)(
  1773. wmi_unified_t wmi_handle,
  1774. uint8_t *evt_buf, uint8_t idx,
  1775. struct wlan_psoc_host_dbr_ring_caps *param);
  1776. QDF_STATUS (*extract_scan_radio_cap_service_ready_ext2)(
  1777. wmi_unified_t wmi_handle,
  1778. uint8_t *evt_buf, uint8_t idx,
  1779. struct wlan_psoc_host_scan_radio_caps *param);
  1780. QDF_STATUS (*extract_msdu_idx_qtype_map_service_ready_ext2)(
  1781. wmi_unified_t wmi_handle,
  1782. uint8_t *evt_buf, uint8_t idx,
  1783. uint8_t *msdu_qtype);
  1784. QDF_STATUS (*extract_sw_cal_ver_ext2)(wmi_unified_t wmi_handle,
  1785. uint8_t *event,
  1786. struct wmi_host_sw_cal_ver *cal);
  1787. QDF_STATUS (*extract_scaling_params_service_ready_ext)(
  1788. wmi_unified_t wmi_handle,
  1789. uint8_t *evt_buf, uint8_t idx,
  1790. struct wlan_psoc_host_spectral_scaling_params *param);
  1791. QDF_STATUS (*extract_sar_cap_service_ready_ext)(
  1792. wmi_unified_t wmi_handle,
  1793. uint8_t *evt_buf,
  1794. struct wlan_psoc_host_service_ext_param *ext_param);
  1795. #ifdef WLAN_SUPPORT_TWT
  1796. QDF_STATUS (*extract_twt_cap_service_ready_ext2)(
  1797. wmi_unified_t wmi_handle,
  1798. uint8_t *evt_buf,
  1799. struct wmi_twt_cap_bitmap_params *var);
  1800. #endif
  1801. #ifdef WMI_DBR_SUPPORT
  1802. QDF_STATUS (*send_dbr_cfg_cmd)(wmi_unified_t wmi_handle,
  1803. struct direct_buf_rx_cfg_req *cfg);
  1804. QDF_STATUS (*extract_dbr_buf_release_fixed)(
  1805. wmi_unified_t wmi_handle,
  1806. uint8_t *evt_buf,
  1807. struct direct_buf_rx_rsp *param);
  1808. QDF_STATUS (*extract_dbr_buf_release_entry)(
  1809. wmi_unified_t wmi_handle,
  1810. uint8_t *evt_buf, uint8_t idx,
  1811. struct direct_buf_rx_entry *param);
  1812. QDF_STATUS (*extract_dbr_buf_metadata)(
  1813. wmi_unified_t wmi_handle,
  1814. uint8_t *evt_buf, uint8_t idx,
  1815. struct direct_buf_rx_metadata *param);
  1816. QDF_STATUS (*extract_dbr_buf_cv_metadata)(
  1817. wmi_unified_t wmi_handle,
  1818. uint8_t *evt_buf, uint8_t idx,
  1819. struct direct_buf_rx_cv_metadata *param);
  1820. QDF_STATUS (*extract_dbr_buf_cqi_metadata)(
  1821. wmi_unified_t wmi_handle,
  1822. uint8_t *evt_buf, uint8_t idx,
  1823. struct direct_buf_rx_cqi_metadata *param);
  1824. #endif
  1825. QDF_STATUS (*extract_pdev_utf_event)(wmi_unified_t wmi_hdl,
  1826. uint8_t *evt_buf,
  1827. struct wmi_host_pdev_utf_event *param);
  1828. QDF_STATUS (*extract_pdev_qvit_event)(wmi_unified_t wmi_hdl,
  1829. uint8_t *evt_buf,
  1830. struct wmi_host_pdev_qvit_event *param);
  1831. uint16_t (*wmi_set_htc_tx_tag)(wmi_unified_t wmi_handle,
  1832. wmi_buf_t buf, uint32_t cmd_id);
  1833. QDF_STATUS (*extract_vdev_peer_delete_all_resp)(
  1834. wmi_unified_t wmi_handle,
  1835. void *evt_buf,
  1836. struct peer_delete_all_response *peer_delete_all_rsp);
  1837. QDF_STATUS (*extract_vdev_peer_delete_all_response_event)(
  1838. wmi_unified_t wmi_handle,
  1839. void *evt_buf,
  1840. struct peer_delete_all_response *param);
  1841. bool (*is_management_record)(uint32_t cmd_id);
  1842. bool (*is_diag_event)(uint32_t event_id);
  1843. uint8_t *(*wmi_id_to_name)(uint32_t cmd_id);
  1844. QDF_STATUS (*send_dfs_phyerr_offload_en_cmd)(wmi_unified_t wmi_handle,
  1845. uint32_t pdev_id);
  1846. QDF_STATUS (*send_dfs_phyerr_offload_dis_cmd)(wmi_unified_t wmi_handle,
  1847. uint32_t pdev_id);
  1848. QDF_STATUS (*extract_reg_chan_list_update_event)(wmi_unified_t wmi_handle,
  1849. uint8_t *evt_buf,
  1850. struct cur_regulatory_info
  1851. *reg_info,
  1852. uint32_t len);
  1853. #ifdef CONFIG_BAND_6GHZ
  1854. QDF_STATUS (*extract_reg_chan_list_ext_update_event)(wmi_unified_t wmi_handle,
  1855. uint8_t *evt_buf,
  1856. struct cur_regulatory_info
  1857. *reg_info,
  1858. uint32_t len);
  1859. #ifdef CONFIG_AFC_SUPPORT
  1860. QDF_STATUS
  1861. (*extract_afc_event)(wmi_unified_t wmi_handle,
  1862. uint8_t *evt_buf,
  1863. struct afc_regulatory_info *reg_info,
  1864. uint32_t len);
  1865. #endif
  1866. #endif
  1867. QDF_STATUS (*extract_reg_11d_new_country_event)(wmi_unified_t wmi_handle,
  1868. uint8_t *evt_buf,
  1869. struct reg_11d_new_country *reg_11d_country,
  1870. uint32_t len);
  1871. QDF_STATUS (*extract_reg_ch_avoid_event)(wmi_unified_t wmi_handle,
  1872. uint8_t *evt_buf,
  1873. struct ch_avoid_ind_type *ch_avoid_event,
  1874. uint32_t len);
  1875. #ifdef WLAN_SUPPORT_RF_CHARACTERIZATION
  1876. QDF_STATUS (*extract_num_rf_characterization_entries)(wmi_unified_t wmi_hdl,
  1877. uint8_t *evt_buf,
  1878. uint32_t *num_rf_characterization_entries);
  1879. QDF_STATUS (*extract_rf_characterization_entries)(wmi_unified_t wmi_handle,
  1880. uint8_t *evt_buf,
  1881. uint32_t num_rf_characterization_entries,
  1882. struct wmi_host_rf_characterization_event_param *rf_characterization_entries);
  1883. #endif
  1884. QDF_STATUS (*extract_chainmask_tables)(wmi_unified_t wmi_handle,
  1885. uint8_t *evt_buf,
  1886. struct wlan_psoc_host_chainmask_table *chainmask_table);
  1887. QDF_STATUS (*send_get_rcpi_cmd)(wmi_unified_t wmi_handle,
  1888. struct rcpi_req *get_rcpi_param);
  1889. QDF_STATUS (*extract_rcpi_response_event)(wmi_unified_t wmi_handle,
  1890. void *evt_buf,
  1891. struct rcpi_res *res);
  1892. QDF_STATUS (*extract_dfs_cac_complete_event)(wmi_unified_t wmi_handle,
  1893. uint8_t *evt_buf,
  1894. uint32_t *vdev_id,
  1895. uint32_t len);
  1896. QDF_STATUS
  1897. (*extract_dfs_ocac_complete_event)(wmi_unified_t wmi_handle,
  1898. uint8_t *evt_buf,
  1899. struct vdev_adfs_complete_status *oca_stats);
  1900. QDF_STATUS (*extract_dfs_radar_detection_event)(wmi_unified_t wmi_handle,
  1901. uint8_t *evt_buf,
  1902. struct radar_found_info *radar_found,
  1903. uint32_t len);
  1904. QDF_STATUS (*extract_wlan_radar_event_info)(wmi_unified_t wmi_handle,
  1905. uint8_t *evt_buf,
  1906. struct radar_event_info *wlan_radar_event,
  1907. uint32_t len);
  1908. QDF_STATUS (*send_set_country_cmd)(wmi_unified_t wmi_handle,
  1909. struct set_country *param);
  1910. uint32_t (*convert_pdev_id_host_to_target)(wmi_unified_t wmi_handle,
  1911. uint32_t pdev_id);
  1912. uint32_t (*convert_pdev_id_target_to_host)(wmi_unified_t wmi_handle,
  1913. uint32_t pdev_id);
  1914. uint32_t (*convert_phy_id_host_to_target)(wmi_unified_t wmi_handle,
  1915. uint32_t phy_id);
  1916. uint32_t (*convert_phy_id_target_to_host)(wmi_unified_t wmi_handle,
  1917. uint32_t phy_id);
  1918. uint32_t (*convert_host_vdev_param_tlv)(uint32_t param_id);
  1919. /*
  1920. * For MCL, convert_pdev_id_host_to_target returns legacy pdev id value.
  1921. * But in converged firmware, WMI_SET_CURRENT_COUNTRY_CMDID expects target
  1922. * mapping of pdev_id to give only one WMI_REG_CHAN_LIST_CC_EVENTID.
  1923. * wmi_pdev_id_conversion_enable cannot be used since it overwrites
  1924. * convert_pdev_id_host_to_target which effects legacy cases.
  1925. * Below two commands: convert_host_pdev_id_to_target and
  1926. * convert_target_pdev_id_to_host should be used for any WMI
  1927. * command/event where FW expects target/host mapping of pdev_id respectively.
  1928. */
  1929. uint32_t (*convert_host_pdev_id_to_target)(wmi_unified_t wmi_handle,
  1930. uint32_t pdev_id);
  1931. uint32_t (*convert_target_pdev_id_to_host)(wmi_unified_t wmi_handle,
  1932. uint32_t pdev_id);
  1933. uint32_t (*convert_host_phy_id_to_target)(wmi_unified_t wmi_handle,
  1934. uint32_t phy_id);
  1935. uint32_t (*convert_target_phy_id_to_host)(wmi_unified_t wmi_handle,
  1936. uint32_t phy_id);
  1937. QDF_STATUS (*send_user_country_code_cmd)(wmi_unified_t wmi_handle,
  1938. uint8_t pdev_id, struct cc_regdmn_s *rd);
  1939. QDF_STATUS (*send_wds_entry_list_cmd)(wmi_unified_t wmi_handle);
  1940. QDF_STATUS (*extract_wds_entry)(wmi_unified_t wmi_handle,
  1941. uint8_t *evt_buf,
  1942. struct wdsentry *wds_entry,
  1943. u_int32_t idx);
  1944. #ifdef WLAN_FEATURE_NAN
  1945. QDF_STATUS (*send_ndp_initiator_req_cmd)(wmi_unified_t wmi_handle,
  1946. struct nan_datapath_initiator_req *req);
  1947. QDF_STATUS (*send_ndp_responder_req_cmd)(wmi_unified_t wmi_handle,
  1948. struct nan_datapath_responder_req *req);
  1949. QDF_STATUS (*send_ndp_end_req_cmd)(wmi_unified_t wmi_handle,
  1950. struct nan_datapath_end_req *req);
  1951. QDF_STATUS (*send_terminate_all_ndps_req_cmd)(wmi_unified_t wmi_handle,
  1952. uint32_t vdev_id);
  1953. QDF_STATUS (*extract_ndp_initiator_rsp)(wmi_unified_t wmi_handle,
  1954. uint8_t *data, struct nan_datapath_initiator_rsp *rsp);
  1955. QDF_STATUS (*extract_ndp_ind)(wmi_unified_t wmi_handle,
  1956. uint8_t *data, struct nan_datapath_indication_event *ind);
  1957. QDF_STATUS (*extract_nan_msg)(uint8_t *data,
  1958. struct nan_dump_msg *msg);
  1959. QDF_STATUS (*extract_ndp_confirm)(wmi_unified_t wmi_handle,
  1960. uint8_t *data, struct nan_datapath_confirm_event *ev);
  1961. QDF_STATUS (*extract_ndp_responder_rsp)(wmi_unified_t wmi_handle,
  1962. uint8_t *data, struct nan_datapath_responder_rsp *rsp);
  1963. QDF_STATUS (*extract_ndp_end_rsp)(wmi_unified_t wmi_handle,
  1964. uint8_t *data, struct nan_datapath_end_rsp_event *rsp);
  1965. QDF_STATUS (*extract_ndp_end_ind)(wmi_unified_t wmi_handle,
  1966. uint8_t *data, struct nan_datapath_end_indication_event **ind);
  1967. QDF_STATUS (*extract_ndp_sch_update)(wmi_unified_t wmi_handle,
  1968. uint8_t *data, struct nan_datapath_sch_update_event *ind);
  1969. QDF_STATUS (*extract_ndp_host_event)(wmi_unified_t wmi_handle, uint8_t *data,
  1970. struct nan_datapath_host_event *evt);
  1971. #endif /* WLAN_FEATURE_NAN */
  1972. QDF_STATUS (*send_obss_detection_cfg_cmd)(wmi_unified_t wmi_handle,
  1973. struct wmi_obss_detection_cfg_param *obss_cfg_param);
  1974. QDF_STATUS (*extract_obss_detection_info)(uint8_t *evt_buf,
  1975. struct wmi_obss_detect_info *info);
  1976. #if defined(WLAN_SUPPORT_FILS) || defined(CONFIG_BAND_6GHZ)
  1977. QDF_STATUS (*send_vdev_fils_enable_cmd)(wmi_unified_t wmi_handle,
  1978. struct config_fils_params *param);
  1979. #endif
  1980. QDF_STATUS
  1981. (*send_roam_scan_stats_cmd)(wmi_unified_t wmi_handle,
  1982. struct wmi_roam_scan_stats_req *params);
  1983. QDF_STATUS
  1984. (*extract_roam_scan_stats_res_evt)(wmi_unified_t wmi_handle,
  1985. void *evt_buf,
  1986. uint32_t *vdev_id,
  1987. struct wmi_roam_scan_stats_res **res_param);
  1988. QDF_STATUS
  1989. (*extract_offload_bcn_tx_status_evt)(wmi_unified_t wmi_handle,
  1990. void *evt_buf, uint32_t *vdev_id,
  1991. uint32_t *tx_status);
  1992. QDF_STATUS
  1993. (*extract_roam_trigger_stats)(wmi_unified_t wmi_handle,
  1994. void *evt_buf,
  1995. struct wmi_roam_trigger_info *trig,
  1996. uint8_t idx, uint8_t btm_idx);
  1997. QDF_STATUS
  1998. (*extract_roam_scan_stats)(wmi_unified_t wmi_handle,
  1999. void *evt_buf,
  2000. struct wmi_roam_scan_data *dst, uint8_t idx,
  2001. uint8_t chan_idx, uint8_t ap_idx);
  2002. QDF_STATUS
  2003. (*extract_roam_result_stats)(wmi_unified_t wmi_handle,
  2004. void *evt_buf,
  2005. struct wmi_roam_result *dst,
  2006. uint8_t idx);
  2007. QDF_STATUS
  2008. (*extract_roam_11kv_stats)(wmi_unified_t wmi_handle,
  2009. void *evt_buf,
  2010. struct wmi_neighbor_report_data *dst,
  2011. uint8_t idx, uint8_t rpt_idx, uint8_t band);
  2012. void (*wmi_pdev_id_conversion_enable)(wmi_unified_t wmi_handle,
  2013. uint32_t *pdev_map,
  2014. uint8_t size);
  2015. void (*send_time_stamp_sync_cmd)(wmi_unified_t wmi_handle);
  2016. void (*wmi_free_allocated_event)(uint32_t cmd_event_id,
  2017. void **wmi_cmd_struct_ptr);
  2018. int (*wmi_check_and_pad_event)(void *os_handle, void *param_struc_ptr,
  2019. uint32_t param_buf_len,
  2020. uint32_t wmi_cmd_event_id,
  2021. void **wmi_cmd_struct_ptr);
  2022. int (*wmi_check_command_params)(void *os_handle, void *param_struc_ptr,
  2023. uint32_t param_buf_len,
  2024. uint32_t wmi_cmd_event_id);
  2025. #if defined(WLAN_SUPPORT_TWT) && defined(WLAN_TWT_CONV_SUPPORTED)
  2026. QDF_STATUS (*send_twt_enable_cmd)(wmi_unified_t wmi_handle,
  2027. struct twt_enable_param *params);
  2028. QDF_STATUS (*send_twt_disable_cmd)(wmi_unified_t wmi_handle,
  2029. struct twt_disable_param *params);
  2030. QDF_STATUS (*send_twt_add_dialog_cmd)(wmi_unified_t wmi_handle,
  2031. struct twt_add_dialog_param *params);
  2032. QDF_STATUS (*send_twt_del_dialog_cmd)(wmi_unified_t wmi_handle,
  2033. struct twt_del_dialog_param *params);
  2034. QDF_STATUS (*send_twt_pause_dialog_cmd)(wmi_unified_t wmi_handle,
  2035. struct twt_pause_dialog_cmd_param *params);
  2036. QDF_STATUS (*send_twt_nudge_dialog_cmd)(wmi_unified_t wmi_handle,
  2037. struct twt_nudge_dialog_cmd_param *params);
  2038. QDF_STATUS (*send_twt_resume_dialog_cmd)(wmi_unified_t wmi_handle,
  2039. struct twt_resume_dialog_cmd_param *params);
  2040. #ifdef WLAN_SUPPORT_BCAST_TWT
  2041. QDF_STATUS (*send_twt_btwt_invite_sta_cmd)(wmi_unified_t wmi_handle,
  2042. struct twt_btwt_invite_sta_cmd_param *params);
  2043. QDF_STATUS (*send_twt_btwt_remove_sta_cmd)(wmi_unified_t wmi_handle,
  2044. struct twt_btwt_remove_sta_cmd_param *params);
  2045. #endif
  2046. QDF_STATUS (*extract_twt_enable_comp_event)(wmi_unified_t wmi_handle,
  2047. uint8_t *evt_buf,
  2048. struct twt_enable_complete_event_param *params);
  2049. QDF_STATUS (*extract_twt_disable_comp_event)(wmi_unified_t wmi_handle,
  2050. uint8_t *evt_buf,
  2051. struct twt_disable_complete_event_param *params);
  2052. QDF_STATUS (*extract_twt_add_dialog_comp_event)(wmi_unified_t wmi_handle,
  2053. uint8_t *evt_buf,
  2054. struct twt_add_dialog_complete_event_param *params);
  2055. QDF_STATUS (*extract_twt_add_dialog_comp_additional_params)
  2056. (
  2057. wmi_unified_t wmi_handle, uint8_t *evt_buf,
  2058. uint32_t evt_buf_len, uint32_t idx,
  2059. struct twt_add_dialog_additional_params *additional_params
  2060. );
  2061. QDF_STATUS (*extract_twt_del_dialog_comp_event)(wmi_unified_t wmi_handle,
  2062. uint8_t *evt_buf,
  2063. struct twt_del_dialog_complete_event_param *params);
  2064. QDF_STATUS (*extract_twt_pause_dialog_comp_event)(wmi_unified_t wmi_handle,
  2065. uint8_t *evt_buf,
  2066. struct twt_pause_dialog_complete_event_param *params);
  2067. QDF_STATUS (*extract_twt_nudge_dialog_comp_event)(wmi_unified_t wmi_handle,
  2068. uint8_t *evt_buf,
  2069. struct twt_nudge_dialog_complete_event_param *params);
  2070. QDF_STATUS (*extract_twt_resume_dialog_comp_event)(wmi_unified_t wmi_handle,
  2071. uint8_t *evt_buf,
  2072. struct twt_resume_dialog_complete_event_param *params);
  2073. QDF_STATUS (*extract_twt_notify_event)(wmi_unified_t wmi_handle,
  2074. uint8_t *evt_buf,
  2075. struct twt_notify_event_param *params);
  2076. QDF_STATUS (*extract_twt_ack_comp_event)(wmi_unified_t wmi_handle,
  2077. uint8_t *evt_buf,
  2078. struct twt_ack_complete_event_param *params);
  2079. #ifdef WLAN_SUPPORT_BCAST_TWT
  2080. QDF_STATUS (*extract_twt_btwt_invite_sta_comp_event)(wmi_unified_t wmi_handle,
  2081. uint8_t *evt_buf,
  2082. struct twt_btwt_invite_sta_complete_event_param *params);
  2083. QDF_STATUS (*extract_twt_btwt_remove_sta_comp_event)(wmi_unified_t wmi_handle,
  2084. uint8_t *evt_buf,
  2085. struct twt_btwt_remove_sta_complete_event_param *params);
  2086. #endif
  2087. QDF_STATUS(*extract_twt_session_stats_event)
  2088. (
  2089. wmi_unified_t wmi_handle,
  2090. uint8_t *evt_buf,
  2091. struct twt_session_stats_event_param *params
  2092. );
  2093. QDF_STATUS(*extract_twt_session_stats_data)
  2094. (
  2095. wmi_unified_t wmi_handle,
  2096. uint8_t *evt_buf,
  2097. struct twt_session_stats_event_param *params,
  2098. struct twt_session_stats_info *session,
  2099. uint32_t idx
  2100. );
  2101. #elif defined(WLAN_SUPPORT_TWT)
  2102. QDF_STATUS (*send_twt_enable_cmd)(wmi_unified_t wmi_handle,
  2103. struct wmi_twt_enable_param *params);
  2104. QDF_STATUS (*send_twt_disable_cmd)(wmi_unified_t wmi_handle,
  2105. struct wmi_twt_disable_param *params);
  2106. QDF_STATUS (*send_twt_add_dialog_cmd)(wmi_unified_t wmi_handle,
  2107. struct wmi_twt_add_dialog_param *params);
  2108. QDF_STATUS (*send_twt_del_dialog_cmd)(wmi_unified_t wmi_handle,
  2109. struct wmi_twt_del_dialog_param *params);
  2110. QDF_STATUS (*send_twt_pause_dialog_cmd)(wmi_unified_t wmi_handle,
  2111. struct wmi_twt_pause_dialog_cmd_param *params);
  2112. QDF_STATUS (*send_twt_nudge_dialog_cmd)(wmi_unified_t wmi_handle,
  2113. struct wmi_twt_nudge_dialog_cmd_param *params);
  2114. QDF_STATUS (*send_twt_resume_dialog_cmd)(wmi_unified_t wmi_handle,
  2115. struct wmi_twt_resume_dialog_cmd_param *params);
  2116. #ifdef WLAN_SUPPORT_BCAST_TWT
  2117. QDF_STATUS (*send_twt_btwt_invite_sta_cmd)(wmi_unified_t wmi_handle,
  2118. struct wmi_twt_btwt_invite_sta_cmd_param *params);
  2119. QDF_STATUS (*send_twt_btwt_remove_sta_cmd)(wmi_unified_t wmi_handle,
  2120. struct wmi_twt_btwt_remove_sta_cmd_param *params);
  2121. #endif
  2122. QDF_STATUS (*extract_twt_enable_comp_event)(wmi_unified_t wmi_handle,
  2123. uint8_t *evt_buf,
  2124. struct wmi_twt_enable_complete_event_param *params);
  2125. QDF_STATUS (*extract_twt_disable_comp_event)(wmi_unified_t wmi_handle,
  2126. uint8_t *evt_buf,
  2127. struct wmi_twt_disable_complete_event *params);
  2128. QDF_STATUS (*extract_twt_add_dialog_comp_event)(wmi_unified_t wmi_handle,
  2129. uint8_t *evt_buf,
  2130. struct wmi_twt_add_dialog_complete_event_param *params);
  2131. QDF_STATUS (*extract_twt_add_dialog_comp_additional_params)
  2132. (
  2133. wmi_unified_t wmi_handle, uint8_t *evt_buf,
  2134. uint32_t evt_buf_len, uint32_t idx,
  2135. struct wmi_twt_add_dialog_additional_params *additional_params
  2136. );
  2137. QDF_STATUS (*extract_twt_del_dialog_comp_event)(wmi_unified_t wmi_handle,
  2138. uint8_t *evt_buf,
  2139. struct wmi_twt_del_dialog_complete_event_param *params);
  2140. QDF_STATUS (*extract_twt_pause_dialog_comp_event)(wmi_unified_t wmi_handle,
  2141. uint8_t *evt_buf,
  2142. struct wmi_twt_pause_dialog_complete_event_param *params);
  2143. QDF_STATUS (*extract_twt_nudge_dialog_comp_event)(wmi_unified_t wmi_handle,
  2144. uint8_t *evt_buf,
  2145. struct wmi_twt_nudge_dialog_complete_event_param *params);
  2146. QDF_STATUS (*extract_twt_resume_dialog_comp_event)(wmi_unified_t wmi_handle,
  2147. uint8_t *evt_buf,
  2148. struct wmi_twt_resume_dialog_complete_event_param *params);
  2149. QDF_STATUS (*extract_twt_notify_event)(wmi_unified_t wmi_handle,
  2150. uint8_t *evt_buf,
  2151. struct wmi_twt_notify_event_param *params);
  2152. QDF_STATUS (*extract_twt_ack_comp_event)(wmi_unified_t wmi_handle,
  2153. uint8_t *evt_buf,
  2154. struct wmi_twt_ack_complete_event_param *params);
  2155. #ifdef WLAN_SUPPORT_BCAST_TWT
  2156. QDF_STATUS (*extract_twt_btwt_invite_sta_comp_event)(wmi_unified_t wmi_handle,
  2157. uint8_t *evt_buf,
  2158. struct wmi_twt_btwt_invite_sta_complete_event_param *params);
  2159. QDF_STATUS (*extract_twt_btwt_remove_sta_comp_event)(wmi_unified_t wmi_handle,
  2160. uint8_t *evt_buf,
  2161. struct wmi_twt_btwt_remove_sta_complete_event_param *params);
  2162. #endif
  2163. QDF_STATUS(*extract_twt_session_stats_event)
  2164. (
  2165. wmi_unified_t wmi_handle,
  2166. uint8_t *evt_buf,
  2167. struct wmi_twt_session_stats_event_param *params
  2168. );
  2169. QDF_STATUS(*extract_twt_session_stats_data)
  2170. (
  2171. wmi_unified_t wmi_handle,
  2172. uint8_t *evt_buf,
  2173. struct wmi_twt_session_stats_event_param *params,
  2174. struct wmi_host_twt_session_stats_info *session,
  2175. uint32_t idx
  2176. );
  2177. #endif
  2178. #ifdef QCA_STANDALONE_SOUNDING_TRIGGER
  2179. QDF_STATUS (*extract_standalone_sounding_evt_params)
  2180. (
  2181. wmi_unified_t wmi_handle,
  2182. void *evt_buf,
  2183. struct wmi_host_standalone_sounding_evt_params *ss_params
  2184. );
  2185. #endif
  2186. #ifdef QCA_SUPPORT_CP_STATS
  2187. QDF_STATUS (*extract_cca_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  2188. struct wmi_host_congestion_stats *stats);
  2189. #endif /* QCA_SUPPORT_CP_STATS */
  2190. #if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
  2191. QDF_STATUS (*send_dfs_average_radar_params_cmd)(
  2192. wmi_unified_t wmi_handle,
  2193. struct dfs_radar_found_params *params);
  2194. QDF_STATUS (*extract_dfs_status_from_fw)(wmi_unified_t wmi_handle,
  2195. void *evt_buf,
  2196. uint32_t *dfs_status_check);
  2197. #endif
  2198. #ifdef OBSS_PD
  2199. QDF_STATUS (*send_obss_spatial_reuse_set)(wmi_unified_t wmi_handle,
  2200. struct wmi_host_obss_spatial_reuse_set_param
  2201. *obss_spatial_reuse_param);
  2202. QDF_STATUS (*send_obss_spatial_reuse_set_def_thresh)(wmi_unified_t wmi_handle,
  2203. struct wmi_host_obss_spatial_reuse_set_def_thresh
  2204. *obss_spatial_reuse_param);
  2205. QDF_STATUS (*send_self_srg_bss_color_bitmap_set)(
  2206. wmi_unified_t wmi_handle, uint32_t bitmap_0,
  2207. uint32_t bitmap_1, uint8_t pdev_id);
  2208. QDF_STATUS (*send_self_srg_partial_bssid_bitmap_set)(
  2209. wmi_unified_t wmi_handle, uint32_t bitmap_0,
  2210. uint32_t bitmap_1, uint8_t pdev_id);
  2211. QDF_STATUS (*send_self_srg_obss_color_enable_bitmap)(
  2212. wmi_unified_t wmi_handle, uint32_t bitmap_0,
  2213. uint32_t bitmap_1, uint8_t pdev_id);
  2214. QDF_STATUS (*send_self_srg_obss_bssid_enable_bitmap)(
  2215. wmi_unified_t wmi_handle, uint32_t bitmap_0,
  2216. uint32_t bitmap_1, uint8_t pdev_id);
  2217. QDF_STATUS (*send_self_non_srg_obss_color_enable_bitmap)(
  2218. wmi_unified_t wmi_handle, uint32_t bitmap_0,
  2219. uint32_t bitmap_1, uint8_t pdev_id);
  2220. QDF_STATUS (*send_self_non_srg_obss_bssid_enable_bitmap)(
  2221. wmi_unified_t wmi_handle, uint32_t bitmap_0,
  2222. uint32_t bitmap_1, uint8_t pdev_id);
  2223. #endif
  2224. QDF_STATUS
  2225. (*extract_ctl_failsafe_check_ev_param)(
  2226. wmi_unified_t wmi_handle,
  2227. void *evt_buf,
  2228. struct wmi_host_pdev_ctl_failsafe_event *param);
  2229. QDF_STATUS (*send_peer_del_all_wds_entries_cmd)(wmi_unified_t wmi_handle,
  2230. struct peer_del_all_wds_entries_params *param);
  2231. #ifdef WLAN_CFR_ENABLE
  2232. QDF_STATUS
  2233. (*extract_cfr_peer_tx_event_param)(wmi_unified_t wmi_handle, void *evt_buf,
  2234. wmi_cfr_peer_tx_event_param *peer_tx_event);
  2235. QDF_STATUS (*send_peer_cfr_capture_cmd)(wmi_unified_t wmi_handle,
  2236. struct peer_cfr_params *param);
  2237. #ifdef WLAN_ENH_CFR_ENABLE
  2238. QDF_STATUS (*send_cfr_rcc_cmd)(wmi_unified_t wmi_handle,
  2239. struct cfr_rcc_param *cfg);
  2240. #endif
  2241. #endif
  2242. #ifdef WMI_AP_SUPPORT
  2243. QDF_STATUS (*send_vdev_pcp_tid_map_cmd)(wmi_unified_t wmi_handle,
  2244. struct vap_pcp_tid_map_params *param);
  2245. QDF_STATUS (*send_vdev_tidmap_prec_cmd)(wmi_unified_t wmi_handle,
  2246. struct vap_tidmap_prec_params *param);
  2247. QDF_STATUS (*send_peer_ft_roam_cmd)(wmi_unified_t wmi_handle,
  2248. uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
  2249. uint8_t vdev_id);
  2250. #endif
  2251. QDF_STATUS (*send_mws_coex_status_req_cmd)(wmi_unified_t wmi_handle,
  2252. uint32_t vdev_id, uint32_t cmd_id);
  2253. #ifdef WIFI_POS_CONVERGED
  2254. QDF_STATUS (*extract_oem_response_param)
  2255. (wmi_unified_t wmi_hdl, void *resp_buf,
  2256. struct wmi_oem_response_param *oem_resp_param);
  2257. #endif /* WIFI_POS_CONVERGED */
  2258. #if defined(WIFI_POS_CONVERGED) && defined(WLAN_FEATURE_RTT_11AZ_SUPPORT)
  2259. QDF_STATUS (*extract_pasn_peer_create_req_event)
  2260. (wmi_unified_t wmi_handle,
  2261. void *evt_buf,
  2262. struct wifi_pos_pasn_peer_data *dst);
  2263. QDF_STATUS (*extract_pasn_peer_delete_req_event)
  2264. (wmi_unified_t wmi_handle,
  2265. void *evt_buf,
  2266. struct wifi_pos_pasn_peer_data *dst);
  2267. QDF_STATUS (*send_rtt_pasn_auth_status_cmd)
  2268. (wmi_unified_t wmi_handle,
  2269. struct wlan_pasn_auth_status *data);
  2270. QDF_STATUS (*send_rtt_pasn_deauth_cmd)(wmi_unified_t wmi_handle,
  2271. struct qdf_mac_addr *peer_mac);
  2272. #endif
  2273. QDF_STATUS (*extract_hw_mode_resp_event)(wmi_unified_t wmi_handle,
  2274. void *evt_buf, uint32_t *cmd_status);
  2275. QDF_STATUS (*extract_rf_path_resp)(wmi_unified_t wmi_handle,
  2276. void *evt_buf, uint32_t *cmd_status);
  2277. #ifdef WLAN_FEATURE_ELNA
  2278. QDF_STATUS (*send_set_elna_bypass_cmd)(wmi_unified_t wmi_handle,
  2279. struct set_elna_bypass_request *req);
  2280. QDF_STATUS (*send_get_elna_bypass_cmd)(wmi_unified_t wmi_handle,
  2281. struct get_elna_bypass_request *req);
  2282. QDF_STATUS (*extract_get_elna_bypass_resp)(wmi_unified_t wmi_handle,
  2283. void *resp_buf,
  2284. struct get_elna_bypass_response *resp);
  2285. #endif /* WLAN_FEATURE_ELNA */
  2286. #ifdef WLAN_SEND_DSCP_UP_MAP_TO_FW
  2287. QDF_STATUS (*send_dscp_tid_map_cmd)(wmi_unified_t wmi_handle,
  2288. uint32_t *dscp_to_tid_map);
  2289. #endif
  2290. #ifdef WLAN_FEATURE_MDNS_OFFLOAD
  2291. QDF_STATUS (*send_set_mdns_config_cmd)(wmi_unified_t wmi_handle,
  2292. struct mdns_config_info *mdns_info);
  2293. #endif /* WLAN_FEATURE_MDNS_OFFLOAD */
  2294. #ifdef THERMAL_STATS_SUPPORT
  2295. QDF_STATUS (*send_get_thermal_stats_cmd)(wmi_unified_t wmi_handle,
  2296. enum thermal_stats_request_type req,
  2297. uint8_t temp_offset);
  2298. #endif /* THERMAL_STATS_SUPPORT */
  2299. QDF_STATUS (*send_pdev_get_pn_cmd)(wmi_unified_t wmi_handle,
  2300. struct peer_request_pn_param *pn_params);
  2301. QDF_STATUS (*extract_get_pn_data)(wmi_unified_t wmi_handle,
  2302. void *evt_buf,
  2303. struct wmi_host_get_pn_event *param);
  2304. QDF_STATUS (*send_pdev_get_rxpn_cmd)(wmi_unified_t wmi_handle,
  2305. struct peer_request_rxpn_param *pn_params);
  2306. QDF_STATUS (*extract_get_rxpn_data)(wmi_unified_t wmi_handle,
  2307. void *evt_buf,
  2308. struct wmi_host_get_rxpn_event *param);
  2309. #ifdef FEATURE_ANI_LEVEL_REQUEST
  2310. QDF_STATUS (*send_ani_level_cmd)(wmi_unified_t wmi_handle, uint32_t *freqs,
  2311. uint8_t num_freqs);
  2312. QDF_STATUS (*extract_ani_level)(uint8_t *evt_buf,
  2313. struct wmi_host_ani_level_event **info,
  2314. uint32_t *num_freqs);
  2315. #endif /* FEATURE_ANI_LEVEL_REQUEST */
  2316. QDF_STATUS (*extract_multi_vdev_restart_resp_event)(
  2317. wmi_unified_t wmi_handle, void *evt_buf,
  2318. struct multi_vdev_restart_resp *restart_rsp);
  2319. #ifdef WLAN_FEATURE_PKT_CAPTURE
  2320. QDF_STATUS (*extract_vdev_mgmt_offload_event)(
  2321. void *handle,
  2322. void *event_buf,
  2323. struct mgmt_offload_event_params *params);
  2324. #endif /* WLAN_FEATURE_PKT_CAPTURE */
  2325. #ifdef WLAN_FEATURE_PKT_CAPTURE_V2
  2326. QDF_STATUS (*extract_smart_monitor_event)(
  2327. void *handle,
  2328. void *event_buf,
  2329. struct smu_event_params *params);
  2330. #endif /* WLAN_FEATURE_PKT_CAPTURE_V2 */
  2331. QDF_STATUS (*multisoc_tbtt_sync_cmd)(wmi_unified_t wmi_handle,
  2332. struct rnr_tbtt_multisoc_sync_param *param);
  2333. #ifdef WLAN_FEATURE_SR
  2334. QDF_STATUS (*vdev_param_sr_prohibit_send)(wmi_unified_t wmi_handle,
  2335. struct sr_prohibit_param *param);
  2336. #endif
  2337. #ifdef FEATURE_WLAN_TIME_SYNC_FTM
  2338. QDF_STATUS (*send_wlan_time_sync_ftm_trigger_cmd)(wmi_unified_t wmi_handle,
  2339. uint32_t vdev_id,
  2340. bool burst_mode);
  2341. QDF_STATUS (*send_wlan_ts_qtime_cmd)(wmi_unified_t wmi_handle,
  2342. uint32_t vdev_id,
  2343. uint64_t lpass_ts);
  2344. QDF_STATUS (*extract_time_sync_ftm_start_stop_event)(
  2345. wmi_unified_t wmi_hdl, void *evt_buf,
  2346. struct ftm_time_sync_start_stop_params *param);
  2347. QDF_STATUS (*extract_time_sync_ftm_offset_event)(
  2348. wmi_unified_t wmi_hdl, void *evt_buf,
  2349. struct ftm_time_sync_offset *param);
  2350. #endif /* FEATURE_WLAN_TIME_SYNC_FTM */
  2351. QDF_STATUS (*send_roam_scan_ch_list_req_cmd)(wmi_unified_t wmi_hdl,
  2352. uint32_t vdev_id);
  2353. QDF_STATUS (*send_injector_config_cmd)(wmi_unified_t wmi_handle,
  2354. struct wmi_host_injector_frame_params *params);
  2355. QDF_STATUS (*send_cp_stats_cmd)(wmi_unified_t wmi_handle,
  2356. void *buf_ptr, uint32_t buf_len);
  2357. QDF_STATUS (*send_halphy_stats_cmd)(wmi_unified_t wmi_handle,
  2358. void *buf_ptr, uint32_t buf_len);
  2359. QDF_STATUS (*extract_cp_stats_more_pending)(wmi_unified_t wmi_handle,
  2360. void *evt_buf,
  2361. uint32_t *more_flag);
  2362. QDF_STATUS (*extract_halphy_stats_end_of_event)(wmi_unified_t wmi_handle,
  2363. void *evt_buf,
  2364. uint32_t *end_of_event_flag);
  2365. QDF_STATUS (*extract_halphy_stats_event_count)(wmi_unified_t wmi_handle,
  2366. void *evt_buf,
  2367. uint32_t *event_count_flag);
  2368. #if defined(WLAN_SUPPORT_INFRA_CTRL_PATH_STATS) || \
  2369. defined(WLAN_CONFIG_TELEMETRY_AGENT)
  2370. QDF_STATUS
  2371. (*extract_infra_cp_stats)(wmi_unified_t wmi_handle,
  2372. void *evt_buf, uint32_t evt_buf_len,
  2373. struct infra_cp_stats_event *params);
  2374. QDF_STATUS
  2375. (*send_infra_cp_stats_request_cmd)(wmi_unified_t wmi_handle,
  2376. struct infra_cp_stats_cmd_info *param);
  2377. #endif /* WLAN_SUPPORT_INFRA_CTRL_PATH_STATS */
  2378. QDF_STATUS (*send_vdev_tsf_tstamp_action_cmd)(wmi_unified_t wmi,
  2379. uint8_t vdev_id);
  2380. QDF_STATUS (*extract_vdev_tsf_report_event)(wmi_unified_t wmi_handle,
  2381. void *evt_buf,
  2382. struct wmi_host_tsf_event *param);
  2383. #ifdef WMI_AP_SUPPORT
  2384. QDF_STATUS (*set_radio_tx_mode_select_cmd)(
  2385. wmi_unified_t wmi,
  2386. struct wmi_pdev_enable_tx_mode_selection *param);
  2387. QDF_STATUS (*send_lcr_cmd)(wmi_unified_t wmi_handle,
  2388. struct wmi_wifi_pos_lcr_info *lcr_info);
  2389. QDF_STATUS (*send_lci_cmd)(wmi_unified_t wmi_handle,
  2390. struct wifi_pos_lci_info *lci_info);
  2391. #if !defined(CNSS_GENL) && defined(WLAN_RTT_MEASUREMENT_NOTIFICATION)
  2392. QDF_STATUS (*extract_measreq_chan_info)(uint32_t data_len, uint8_t *data,
  2393. struct rtt_channel_info *chinfo);
  2394. #endif
  2395. #ifdef WLAN_SUPPORT_MESH_LATENCY
  2396. QDF_STATUS (*config_vdev_tid_latency_info_cmd)(
  2397. wmi_unified_t wmi,
  2398. struct wmi_vdev_tid_latency_config_params
  2399. *param);
  2400. QDF_STATUS (*config_peer_latency_info_cmd)(
  2401. wmi_unified_t wmi,
  2402. struct wmi_peer_latency_config_params
  2403. *param);
  2404. #endif
  2405. #endif
  2406. #ifdef WLAN_WSI_STATS_SUPPORT
  2407. QDF_STATUS (*send_wsi_stats_info_cmd)(
  2408. wmi_unified_t wmi,
  2409. struct wmi_wsi_stats_info_params
  2410. *param);
  2411. #endif
  2412. #ifdef QCA_MANUAL_TRIGGERED_ULOFDMA
  2413. QDF_STATUS
  2414. (*trigger_ulofdma_su_cmd)(wmi_unified_t wmi,
  2415. struct wmi_trigger_ul_ofdma_su_params *param);
  2416. QDF_STATUS
  2417. (*trigger_ulofdma_mu_cmd)(wmi_unified_t wmi,
  2418. struct wmi_trigger_ul_ofdma_mu_params *param);
  2419. #endif
  2420. #ifdef QCA_STANDALONE_SOUNDING_TRIGGER
  2421. QDF_STATUS
  2422. (*config_txbf_sounding_trig_info_cmd)(wmi_unified_t wmi,
  2423. struct wmi_txbf_sounding_trig_param
  2424. *sounding_params);
  2425. #endif
  2426. QDF_STATUS (*send_set_tpc_power_cmd)(wmi_unified_t wmi_handle,
  2427. uint8_t vdev_id,
  2428. struct reg_tpc_power_info *param);
  2429. #ifdef CONFIG_AFC_SUPPORT
  2430. QDF_STATUS
  2431. (*send_afc_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
  2432. struct reg_afc_resp_rx_ind_info *param);
  2433. #endif
  2434. #ifdef WLAN_FEATURE_BIG_DATA_STATS
  2435. QDF_STATUS (*send_big_data_stats_request_cmd)(
  2436. wmi_unified_t wmi_handle,
  2437. struct stats_request_params *param);
  2438. #endif
  2439. QDF_STATUS (*extract_dpd_status_ev_param)(wmi_unified_t wmi_handle,
  2440. void *evt_buf,
  2441. struct wmi_host_pdev_get_dpd_status_event *param);
  2442. QDF_STATUS (*extract_halphy_cal_status_ev_param)(wmi_unified_t wmi_handle,
  2443. void *evt_buf,
  2444. struct wmi_host_pdev_get_halphy_cal_status_event *param);
  2445. QDF_STATUS
  2446. (*extract_install_key_comp_event)(wmi_unified_t wmi_handle,
  2447. void *evt_buf, uint32_t len,
  2448. struct wmi_install_key_comp_event *param);
  2449. QDF_STATUS (*send_vdev_set_ltf_key_seed_cmd)
  2450. (wmi_unified_t wmi_handle,
  2451. struct wlan_crypto_ltf_keyseed_data *data);
  2452. #ifdef WLAN_ENH_CFR_ENABLE
  2453. QDF_STATUS
  2454. (*extract_cfr_phase_param)(wmi_unified_t wmi_handle,
  2455. void *evt_buf,
  2456. struct wmi_cfr_phase_delta_param *param);
  2457. #ifdef WLAN_RCC_ENHANCED_AOA_SUPPORT
  2458. QDF_STATUS
  2459. (*extract_cfr_enh_phase_data)(wmi_unified_t wmi_handle,
  2460. void *evt_buf,
  2461. struct wmi_cfr_enh_phase_delta_param *param);
  2462. QDF_STATUS
  2463. (*extract_cfr_enh_phase_fixed_param)(
  2464. wmi_unified_t wmi_handle,
  2465. void *evt_buf,
  2466. struct wmi_cfr_enh_phase_delta_param *param);
  2467. #endif /* WLAN_RCC_ENHANCED_AOA_SUPPORT */
  2468. #endif
  2469. QDF_STATUS (*send_set_halphy_cal)(wmi_unified_t wmi_handle,
  2470. struct wmi_host_send_set_halphy_cal_info *param);
  2471. QDF_STATUS
  2472. (*extract_halphy_cal_ev_param)(wmi_unified_t wmi_handle,
  2473. void *evt_buf,
  2474. struct wmi_host_pdev_set_halphy_cal_event *param);
  2475. QDF_STATUS (*extract_mgmt_rx_ext_params)(wmi_unified_t wmi_handle,
  2476. void *evt_buf,
  2477. struct mgmt_rx_event_ext_params *params);
  2478. #ifdef WLAN_MGMT_RX_REO_SUPPORT
  2479. QDF_STATUS (*extract_mgmt_rx_fw_consumed)(wmi_unified_t wmi_handle,
  2480. void *evt_buf,
  2481. struct mgmt_rx_reo_params *params);
  2482. QDF_STATUS (*extract_mgmt_rx_reo_params)(wmi_unified_t wmi_handle,
  2483. void *evt_buf,
  2484. struct mgmt_rx_reo_params *params);
  2485. QDF_STATUS (*send_mgmt_rx_reo_filter_config_cmd)(
  2486. wmi_unified_t wmi_handle,
  2487. uint8_t pdev_id,
  2488. struct mgmt_rx_reo_filter *filter);
  2489. #endif
  2490. #ifdef WLAN_FEATURE_11BE_MLO
  2491. QDF_STATUS (*mlo_setup_cmd_send)(wmi_unified_t wmi_handle,
  2492. struct wmi_mlo_setup_params *params);
  2493. QDF_STATUS (*mlo_teardown_cmd_send)(wmi_unified_t wmi_handle,
  2494. struct wmi_mlo_teardown_params *params);
  2495. QDF_STATUS (*mlo_ready_cmd_send)(wmi_unified_t wmi_handle,
  2496. struct wmi_mlo_ready_params *params);
  2497. QDF_STATUS
  2498. (*extract_mlo_setup_cmpl_event)(wmi_unified_t wmi_handle,
  2499. uint8_t *buf,
  2500. struct wmi_mlo_setup_complete_params *params);
  2501. QDF_STATUS
  2502. (*extract_mlo_teardown_cmpl_event)(wmi_unified_t wmi_handle,
  2503. uint8_t *buf,
  2504. struct wmi_mlo_teardown_cmpl_params *param);
  2505. QDF_STATUS
  2506. (*send_mlo_link_set_active_cmd)(wmi_unified_t wmi_handle,
  2507. struct mlo_link_set_active_param *param);
  2508. QDF_STATUS
  2509. (*send_mlo_vdev_pause)(wmi_unified_t wmi_handle,
  2510. struct mlo_vdev_pause *info);
  2511. QDF_STATUS
  2512. (*extract_mlo_link_set_active_resp)(wmi_unified_t wmi_handle,
  2513. void *evt_buf,
  2514. struct mlo_link_set_active_resp *resp);
  2515. QDF_STATUS
  2516. (*extract_mgmt_rx_ml_cu_params)(wmi_unified_t wmi_handle,
  2517. void *evt_buf,
  2518. struct mlo_mgmt_ml_info *cu_params);
  2519. QDF_STATUS (*send_mlo_link_removal_cmd)(
  2520. wmi_unified_t wmi_handle,
  2521. const struct mlo_link_removal_cmd_params *params);
  2522. QDF_STATUS (*extract_mlo_link_removal_evt_fixed_param)(
  2523. struct wmi_unified *wmi_handle,
  2524. void *buf,
  2525. struct mlo_link_removal_evt_params *params);
  2526. QDF_STATUS (*extract_mlo_link_removal_tbtt_update)(
  2527. struct wmi_unified *wmi_handle,
  2528. void *buf,
  2529. struct mlo_link_removal_tbtt_info *tbtt_info);
  2530. QDF_STATUS (*extract_mgmt_rx_mlo_link_removal_info)(
  2531. struct wmi_unified *wmi_handle,
  2532. void *buf,
  2533. struct mgmt_rx_mlo_link_removal_info *link_removal_info,
  2534. int num_link_removal_info);
  2535. QDF_STATUS (*extract_mlo_link_disable_request_evt_param)(
  2536. struct wmi_unified *wmi_handle,
  2537. void *buf,
  2538. struct mlo_link_disable_request_evt_params *params);
  2539. #ifdef WLAN_FEATURE_11BE_MLO_ADV_FEATURE
  2540. QDF_STATUS
  2541. (*extract_mlo_link_switch_request_event)(struct wmi_unified *wmi_handle,
  2542. void *buf,
  2543. struct wlan_mlo_link_switch_req *req);
  2544. QDF_STATUS
  2545. (*send_mlo_link_switch_req_cnf_cmd)(wmi_unified_t wmi_handle,
  2546. struct wlan_mlo_link_switch_cnf *params);
  2547. #endif
  2548. #endif
  2549. #ifdef WLAN_FEATURE_SON
  2550. QDF_STATUS
  2551. (*extract_inst_rssi_stats_resp)(wmi_unified_t wmi_handle, void *evt_buf,
  2552. struct wmi_host_inst_rssi_stats_resp *inst_rssi_resp);
  2553. #endif
  2554. #ifdef WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE
  2555. QDF_STATUS (*send_set_mac_address_cmd)(wmi_unified_t wmi,
  2556. struct set_mac_addr_params *params);
  2557. QDF_STATUS (*extract_update_mac_address_event)(wmi_unified_t wmi_handle,
  2558. void *evt_buf, uint8_t *vdev_id,
  2559. uint8_t *status);
  2560. #endif
  2561. QDF_STATUS
  2562. (*send_soc_tqm_reset_enable_disable_cmd)(wmi_unified_t wmi_handle,
  2563. uint32_t enable);
  2564. QDF_STATUS
  2565. (*send_set_peer_disable_mode)(wmi_unified_t wmi_handle, uint8_t *peer_mac,
  2566. uint8_t pdev_id, uint32_t disabled_modes);
  2567. #ifdef CONFIG_SAWF_DEF_QUEUES
  2568. QDF_STATUS
  2569. (*send_set_rate_upper_cap_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
  2570. struct wmi_rc_params *param);
  2571. QDF_STATUS
  2572. (*send_set_rate_retry_mcs_drop_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
  2573. struct wmi_rc_params *param);
  2574. QDF_STATUS
  2575. (*send_set_mcs_probe_intvl_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
  2576. struct wmi_rc_params *param);
  2577. QDF_STATUS
  2578. (*send_set_nss_probe_intvl_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
  2579. struct wmi_rc_params *param);
  2580. QDF_STATUS
  2581. (*send_sawf_create_cmd)(wmi_unified_t wmi, struct wmi_sawf_params *params);
  2582. QDF_STATUS
  2583. (*send_sawf_disable_cmd)(wmi_unified_t wmi, uint32_t svc_id);
  2584. #endif
  2585. #ifdef WLAN_FEATURE_11BE_MLO
  2586. QDF_STATUS (*extract_quiet_offload_event)(
  2587. wmi_unified_t wmi_handle, void *evt_buf,
  2588. struct vdev_sta_quiet_event *quiet_event);
  2589. QDF_STATUS (*extract_mlo_link_state_event)(
  2590. struct wmi_unified *wmi_handle,
  2591. void *buf,
  2592. struct ml_link_state_info_event *params);
  2593. #endif
  2594. #ifdef WLAN_SUPPORT_PPEDS
  2595. QDF_STATUS
  2596. (*peer_ppe_ds_param_send)(wmi_unified_t wmi_handle,
  2597. struct peer_ppe_ds_param *param);
  2598. #endif /* WLAN_SUPPORT_PPEDS */
  2599. QDF_STATUS
  2600. (*send_vdev_pn_mgmt_rxfilter_cmd)(wmi_unified_t wmi_handle,
  2601. struct vdev_pn_mgmt_rxfilter_params *params);
  2602. #ifdef WLAN_FEATURE_11BE
  2603. QDF_STATUS (*send_mlo_peer_tid_to_link_map)(
  2604. wmi_unified_t wmi_handle,
  2605. struct wmi_host_tid_to_link_map_params *params,
  2606. bool t2lm_info);
  2607. QDF_STATUS (*send_mlo_vdev_tid_to_link_map)(
  2608. wmi_unified_t wmi_handle,
  2609. struct wmi_host_tid_to_link_map_ap_params *params);
  2610. QDF_STATUS (*send_mlo_link_state_request)(
  2611. wmi_unified_t wmi_handle,
  2612. struct wmi_host_link_state_params *params);
  2613. QDF_STATUS (*extract_mlo_vdev_tid_to_link_map_event)(
  2614. struct wmi_unified *wmi_handle,
  2615. uint8_t *buf,
  2616. struct mlo_vdev_host_tid_to_link_map_resp *params);
  2617. QDF_STATUS (*extract_mlo_vdev_bcast_tid_to_link_map_event)(
  2618. struct wmi_unified *wmi_handle,
  2619. void *buf,
  2620. struct mlo_bcast_t2lm_info *bcast_info);
  2621. #endif /* WLAN_FEATURE_11BE */
  2622. QDF_STATUS
  2623. (*extract_pktlog_decode_info_event)(wmi_unified_t wmi_handle, void *evt_buf,
  2624. uint8_t *pdev_id, uint8_t *software_image,
  2625. uint8_t *chip_info,
  2626. uint32_t *pktlog_json_version);
  2627. QDF_STATUS
  2628. (*send_peer_filter_set_tx_cmd)(wmi_unified_t wmi_handle,
  2629. uint8_t macaddr[],
  2630. struct set_tx_peer_filter *param);
  2631. QDF_STATUS
  2632. (*extract_pdev_telemetry_stats)(
  2633. wmi_unified_t wmi_handle, void *evt_buf,
  2634. struct wmi_host_pdev_telemetry_stats *pdev_stats);
  2635. #ifdef WLAN_FEATURE_PEER_TXQ_FLUSH_CONF
  2636. QDF_STATUS
  2637. (*send_peer_txq_flush_config_cmd)(wmi_unified_t wmi_handle,
  2638. struct peer_txq_flush_config_params *param);
  2639. #endif
  2640. #ifdef FEATURE_SET
  2641. QDF_STATUS
  2642. (*feature_set_cmd_send)(wmi_unified_t wmi_handle,
  2643. struct target_feature_set *feature_set);
  2644. #endif
  2645. #ifdef WLAN_FEATURE_COAP
  2646. QDF_STATUS
  2647. (*send_coap_add_pattern_cmd)(wmi_unified_t wmi_handle,
  2648. struct coap_offload_reply_param *param);
  2649. QDF_STATUS
  2650. (*send_coap_del_pattern_cmd)(wmi_unified_t wmi_handle,
  2651. uint8_t vdev_id, uint32_t pattern_id);
  2652. QDF_STATUS
  2653. (*send_coap_add_keepalive_pattern_cmd)(wmi_unified_t wmi_handle,
  2654. struct coap_offload_periodic_tx_param *param);
  2655. QDF_STATUS
  2656. (*send_coap_del_keepalive_pattern_cmd)(wmi_unified_t wmi_handle,
  2657. uint8_t vdev_id, uint32_t pattern_id);
  2658. QDF_STATUS
  2659. (*send_coap_cache_get_cmd)(wmi_unified_t wmi_handle,
  2660. uint8_t vdev_id, uint32_t pattern_id);
  2661. QDF_STATUS (*extract_coap_buf_info)(wmi_unified_t wmi_handle, void *evt_buf,
  2662. struct coap_buf_info *info);
  2663. #endif
  2664. #ifdef HEALTH_MON_SUPPORT
  2665. QDF_STATUS
  2666. (*extract_health_mon_init_done_info_event)(wmi_unified_t wmi_handle,
  2667. void *evt_buf,
  2668. struct wmi_health_mon_params *param);
  2669. #endif /* HEALTH_MON_SUPPORT */
  2670. QDF_STATUS (*send_update_edca_pifs_param_cmd)(
  2671. wmi_unified_t wmi_handle,
  2672. struct edca_pifs_vparam *edca_pifs_param);
  2673. QDF_STATUS (*extract_sap_coex_cap_service_ready_ext2)(
  2674. wmi_unified_t wmi_handle, uint8_t *event,
  2675. struct wmi_host_coex_fix_chan_cap *cap);
  2676. #ifdef WMI_AP_SUPPORT
  2677. QDF_STATUS
  2678. (*send_wmi_tdma_schedule_request_cmd)(wmi_unified_t wmi_handle,
  2679. struct wlan_tdma_sched_cmd_param *param);
  2680. #ifdef WLAN_FEATURE_11BE_MLO
  2681. QDF_STATUS
  2682. (*send_wmi_link_recommendation_cmd)(wmi_unified_t wmi_handle,
  2683. struct wlan_link_recmnd_param *param);
  2684. #endif
  2685. #endif
  2686. QDF_STATUS
  2687. (*extract_tgtr2p_table_event)(wmi_unified_t wmi_handle,
  2688. uint8_t *evt_buf,
  2689. struct r2p_table_update_status_obj *update_status,
  2690. uint32_t len);
  2691. QDF_STATUS
  2692. (*extract_csa_ie_received_ev_params)(wmi_unified_t wmi_handle,
  2693. void *evt_buf, uint8_t *vdev_id,
  2694. struct csa_offload_params *csa_event);
  2695. #ifdef QCA_SUPPORT_PRIMARY_LINK_MIGRATE
  2696. QDF_STATUS (*send_peer_ptqm_migrate_cmd)(
  2697. wmi_unified_t wmi,
  2698. struct peer_ptqm_migrate_params *param);
  2699. QDF_STATUS (*extract_peer_ptqm_migrate_event)(
  2700. struct wmi_unified *wmi_handle,
  2701. uint8_t *buf,
  2702. struct peer_ptqm_migrate_event_params *params);
  2703. QDF_STATUS (*extract_peer_entry_ptqm_migrate_event)(
  2704. struct wmi_unified *wmi_handle,
  2705. uint8_t *buf,
  2706. uint32_t index,
  2707. struct peer_entry_ptqm_migrate_event_params *entry);
  2708. #endif /* QCA_SUPPORT_PRIMARY_LINK_MIGRATE */
  2709. QDF_STATUS (*extract_aux_dev_cap_service_ready_ext2)(
  2710. wmi_unified_t wmi_handle,
  2711. uint8_t *evt_buf, uint8_t idx,
  2712. struct wlan_psoc_host_aux_dev_caps *param);
  2713. #ifdef WLAN_RCC_ENHANCED_AOA_SUPPORT
  2714. QDF_STATUS (*extract_aoa_caps_service_ready_ext2)
  2715. (struct wmi_unified *wmi_handle, uint8_t *buf,
  2716. struct wlan_psoc_host_rcc_enh_aoa_caps_ext2 *aoa_cap);
  2717. #endif /* WLAN_RCC_ENHANCED_AOA_SUPPORT */
  2718. };
  2719. /* Forward declaration for psoc*/
  2720. struct wlan_objmgr_psoc;
  2721. /**
  2722. * struct wmi_cmd_init - Saved wmi INIT command
  2723. * @buf: Buffer containing the wmi INIT command
  2724. * @buf_len: Length of the buffer
  2725. */
  2726. struct wmi_cmd_init {
  2727. wmi_buf_t buf;
  2728. uint32_t buf_len;
  2729. };
  2730. /**
  2731. * struct wmi_host_abi_version - HOST WMI ABI version
  2732. * @abi_version_0: WMI Major and Minor versions
  2733. * @abi_version_1: WMI change revision
  2734. * @abi_version_ns_0: ABI version namespace first four dwords
  2735. * @abi_version_ns_1: ABI version namespace second four dwords
  2736. * @abi_version_ns_2: ABI version namespace third four dwords
  2737. * @abi_version_ns_3: ABI version namespace fourth four dwords
  2738. */
  2739. struct wmi_host_abi_version {
  2740. uint32_t abi_version_0;
  2741. uint32_t abi_version_1;
  2742. uint32_t abi_version_ns_0;
  2743. uint32_t abi_version_ns_1;
  2744. uint32_t abi_version_ns_2;
  2745. uint32_t abi_version_ns_3;
  2746. };
  2747. /* number of debugfs entries used */
  2748. #ifdef WMI_INTERFACE_FILTERED_EVENT_LOGGING
  2749. /* filtered logging added 4 more entries */
  2750. #define NUM_DEBUG_INFOS 13
  2751. #else
  2752. #define NUM_DEBUG_INFOS 9
  2753. #endif
  2754. struct wmi_unified {
  2755. void *scn_handle; /* handle to device */
  2756. osdev_t osdev; /* handle to use OS-independent services */
  2757. struct wbuff_mod_handle *wbuff_handle; /* handle to wbuff */
  2758. qdf_atomic_t pending_cmds;
  2759. HTC_ENDPOINT_ID wmi_endpoint_id;
  2760. uint16_t max_msg_len;
  2761. uint32_t *event_id;
  2762. wmi_unified_event_handler *event_handler;
  2763. struct wmi_unified_exec_ctx *ctx;
  2764. HTC_HANDLE htc_handle;
  2765. qdf_spinlock_t eventq_lock;
  2766. qdf_nbuf_queue_t event_queue;
  2767. qdf_work_t rx_event_work;
  2768. qdf_workqueue_t *wmi_rx_work_queue;
  2769. qdf_workqueue_t *wmi_rx_diag_work_queue;
  2770. qdf_spinlock_t diag_eventq_lock;
  2771. qdf_nbuf_queue_t diag_event_queue;
  2772. qdf_work_t rx_diag_event_work;
  2773. uint32_t wmi_rx_diag_events_dropped;
  2774. int wmi_stop_in_progress;
  2775. struct wmi_host_abi_version fw_abi_version;
  2776. struct wmi_host_abi_version final_abi_vers;
  2777. uint32_t num_of_diag_events_logs;
  2778. uint32_t *events_logs_list;
  2779. #ifdef WLAN_DBGLOG_DEBUGFS
  2780. struct fwdebug dbglog;
  2781. struct dentry *debugfs_phy;
  2782. #endif /* WLAN_DBGLOG_DEBUGFS */
  2783. #ifdef WMI_INTERFACE_EVENT_LOGGING
  2784. struct wmi_debug_log_info log_info;
  2785. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  2786. qdf_atomic_t is_target_suspended;
  2787. qdf_atomic_t is_target_suspend_acked;
  2788. #ifdef WLAN_FEATURE_WMI_SEND_RECV_QMI
  2789. bool is_qmi_stats_enabled;
  2790. #endif
  2791. #ifdef FEATURE_RUNTIME_PM
  2792. qdf_atomic_t runtime_pm_inprogress;
  2793. #endif
  2794. qdf_atomic_t is_wow_bus_suspended;
  2795. qdf_atomic_t is_wow_enable_ack_failed;
  2796. bool tag_crash_inject;
  2797. bool tgt_force_assert_enable;
  2798. enum wmi_target_type target_type;
  2799. struct wmi_ops *ops;
  2800. bool use_cookie;
  2801. bool wmi_stopinprogress;
  2802. uint32_t *wmi_events;
  2803. uint32_t *services;
  2804. struct wmi_soc *soc;
  2805. uint16_t wmi_max_cmds;
  2806. struct dentry *debugfs_de[NUM_DEBUG_INFOS];
  2807. qdf_atomic_t critical_events_in_flight;
  2808. #ifdef WMI_EXT_DBG
  2809. int wmi_ext_dbg_msg_queue_size;
  2810. qdf_list_t wmi_ext_dbg_msg_queue;
  2811. qdf_spinlock_t wmi_ext_dbg_msg_queue_lock;
  2812. qdf_dentry_t wmi_ext_dbg_dentry;
  2813. #endif /*WMI_EXT_DBG*/
  2814. uint32_t *cmd_pdev_id_map;
  2815. uint32_t *evt_pdev_id_map;
  2816. uint32_t *cmd_phy_id_map;
  2817. uint32_t *evt_phy_id_map;
  2818. #ifdef WMI_INTERFACE_SEQUENCE_CHECK
  2819. /* wmi sequence stop */
  2820. bool wmi_sequence_stop;
  2821. /* wmi next transmit sequence number */
  2822. uint32_t wmi_sequence;
  2823. /* wmi completion expected sequence number */
  2824. uint32_t wmi_exp_sequence;
  2825. qdf_spinlock_t wmi_seq_lock;
  2826. #endif /*WMI_INTERFACE_SEQUENCE_CHECK*/
  2827. qdf_atomic_t num_stats_over_qmi;
  2828. };
  2829. #define WMI_MAX_RADIOS 3
  2830. struct wmi_soc {
  2831. struct wlan_objmgr_psoc *wmi_psoc;
  2832. void *scn_handle; /* handle to device */
  2833. qdf_atomic_t num_pdevs;
  2834. enum wmi_target_type target_type;
  2835. bool is_async_ep;
  2836. HTC_HANDLE htc_handle;
  2837. uint32_t event_id[WMI_UNIFIED_MAX_EVENT];
  2838. wmi_unified_event_handler event_handler[WMI_UNIFIED_MAX_EVENT];
  2839. uint32_t max_event_idx;
  2840. struct wmi_unified_exec_ctx ctx[WMI_UNIFIED_MAX_EVENT];
  2841. qdf_spinlock_t ctx_lock;
  2842. struct wmi_unified *wmi_pdev[WMI_MAX_RADIOS];
  2843. HTC_ENDPOINT_ID wmi_endpoint_id[WMI_MAX_RADIOS];
  2844. uint16_t max_msg_len[WMI_MAX_RADIOS];
  2845. struct wmi_ops *ops;
  2846. const uint32_t *svc_ids;
  2847. #if defined(WLAN_FEATURE_WMI_DIAG_OVER_CE7) || \
  2848. defined(WLAN_DIAG_AND_DBR_OVER_SEPARATE_CE)
  2849. HTC_ENDPOINT_ID wmi_diag_endpoint_id;
  2850. #endif
  2851. #if defined(WLAN_DIAG_AND_DBR_OVER_SEPARATE_CE)
  2852. HTC_ENDPOINT_ID wmi_dbr_endpoint_id;
  2853. #endif
  2854. uint32_t wmi_events[wmi_events_max];
  2855. /* WMI service bitmap received from target */
  2856. uint32_t *wmi_service_bitmap;
  2857. uint32_t *wmi_ext_service_bitmap;
  2858. uint32_t wmi_ext2_service_bitmap_len;
  2859. uint32_t *wmi_ext2_service_bitmap;
  2860. uint32_t services[wmi_services_max];
  2861. uint16_t wmi_max_cmds;
  2862. uint32_t soc_idx;
  2863. uint32_t cmd_pdev_id_map[WMI_MAX_RADIOS];
  2864. uint32_t evt_pdev_id_map[WMI_MAX_RADIOS];
  2865. uint32_t cmd_phy_id_map[WMI_MAX_RADIOS];
  2866. uint32_t evt_phy_id_map[WMI_MAX_RADIOS];
  2867. bool is_pdev_is_map_enable;
  2868. bool is_phy_id_map_enable;
  2869. #ifdef WMI_INTERFACE_EVENT_LOGGING
  2870. uint32_t buf_offset_command;
  2871. uint32_t buf_offset_event;
  2872. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  2873. };
  2874. /**
  2875. * struct wmi_process_fw_event_params - fw event parameters
  2876. * @wmi_handle: wmi handle
  2877. * @evt_buf: event buffer
  2878. */
  2879. struct wmi_process_fw_event_params {
  2880. void *wmi_handle;
  2881. void *evt_buf;
  2882. };
  2883. /**
  2884. * wmi_mtrace() - Wrappper function for qdf_mtrace api
  2885. * @message_id: 32-Bit Wmi message ID
  2886. * @vdev_id: Vdev ID
  2887. * @data: Actual message contents
  2888. *
  2889. * This function converts the 32-bit WMI message ID in 15-bit message ID
  2890. * format for qdf_mtrace as in qdf_mtrace message there are only 15
  2891. * bits reserved for message ID.
  2892. * out of these 15-bits, 8-bits (From MSB) specifies the WMI_GRP_ID
  2893. * and remaining 7-bits specifies the actual WMI command. With this
  2894. * notation there can be maximum 256 groups and each group can have
  2895. * max 128 commands can be supported.
  2896. *
  2897. * Return: None
  2898. */
  2899. void wmi_mtrace(uint32_t message_id, uint16_t vdev_id, uint32_t data);
  2900. void wmi_unified_register_module(enum wmi_target_type target_type,
  2901. void (*wmi_attach)(wmi_unified_t wmi_handle));
  2902. void wmi_tlv_init(void);
  2903. void wmi_non_tlv_init(void);
  2904. #ifdef WMI_NON_TLV_SUPPORT
  2905. /* ONLY_NON_TLV_TARGET:TLV attach dummy function definition for case when
  2906. * driver supports only NON-TLV target (WIN mainline) */
  2907. #define wmi_tlv_attach(x) qdf_print("TLV Unavailable")
  2908. #else
  2909. void wmi_tlv_attach(wmi_unified_t wmi_handle);
  2910. #endif
  2911. void wmi_non_tlv_attach(wmi_unified_t wmi_handle);
  2912. #ifdef FEATURE_WLAN_EXTSCAN
  2913. void wmi_extscan_attach_tlv(struct wmi_unified *wmi_handle);
  2914. #else
  2915. static inline void wmi_extscan_attach_tlv(struct wmi_unified *wmi_handle)
  2916. {
  2917. }
  2918. #endif
  2919. #ifdef WMI_SMART_ANT_SUPPORT
  2920. void wmi_smart_ant_attach_tlv(struct wmi_unified *wmi_handle);
  2921. #else
  2922. static inline void wmi_smart_ant_attach_tlv(struct wmi_unified *wmi_handle)
  2923. {
  2924. }
  2925. #endif
  2926. #ifdef WMI_DBR_SUPPORT
  2927. void wmi_dbr_attach_tlv(struct wmi_unified *wmi_handle);
  2928. #else
  2929. static inline void wmi_dbr_attach_tlv(struct wmi_unified *wmi_handle)
  2930. {
  2931. }
  2932. #endif
  2933. #ifdef WMI_ATF_SUPPORT
  2934. void wmi_atf_attach_tlv(struct wmi_unified *wmi_handle);
  2935. #else
  2936. static inline void wmi_atf_attach_tlv(struct wmi_unified *wmi_handle)
  2937. {
  2938. }
  2939. #endif
  2940. #ifdef WMI_AP_SUPPORT
  2941. void wmi_ap_attach_tlv(struct wmi_unified *wmi_handle);
  2942. #else
  2943. static inline void wmi_ap_attach_tlv(struct wmi_unified *wmi_handle)
  2944. {
  2945. }
  2946. #endif
  2947. #ifdef WLAN_FEATURE_DSRC
  2948. void wmi_ocb_attach_tlv(wmi_unified_t wmi_handle);
  2949. #else
  2950. static inline void wmi_ocb_attach_tlv(wmi_unified_t wmi_handle)
  2951. {
  2952. }
  2953. #endif
  2954. #ifdef WLAN_FEATURE_NAN
  2955. void wmi_nan_attach_tlv(wmi_unified_t wmi_handle);
  2956. #else
  2957. static inline void wmi_nan_attach_tlv(wmi_unified_t wmi_handle)
  2958. {
  2959. }
  2960. #endif
  2961. #ifdef FEATURE_P2P_LISTEN_OFFLOAD
  2962. void wmi_p2p_listen_offload_attach_tlv(wmi_unified_t wmi_handle);
  2963. #else
  2964. static inline
  2965. void wmi_p2p_listen_offload_attach_tlv(wmi_unified_t wmi_handle)
  2966. {
  2967. }
  2968. #endif
  2969. #ifdef CONVERGED_P2P_ENABLE
  2970. void wmi_p2p_attach_tlv(wmi_unified_t wmi_handle);
  2971. #else
  2972. static inline void wmi_p2p_attach_tlv(struct wmi_unified *wmi_handle)
  2973. {
  2974. }
  2975. #endif
  2976. #ifdef WLAN_FEATURE_INTEROP_ISSUES_AP
  2977. void wmi_interop_issues_ap_attach_tlv(wmi_unified_t wmi_handle);
  2978. #else
  2979. static inline void
  2980. wmi_interop_issues_ap_attach_tlv(struct wmi_unified *wmi_handle)
  2981. {
  2982. }
  2983. #endif
  2984. #ifdef DCS_INTERFERENCE_DETECTION
  2985. void wmi_dcs_attach_tlv(wmi_unified_t wmi_handle);
  2986. #else
  2987. static inline void
  2988. wmi_dcs_attach_tlv(struct wmi_unified *wmi_handle)
  2989. {
  2990. }
  2991. #endif
  2992. #ifdef FEATURE_LFR_SUBNET_DETECTION
  2993. void wmi_lfr_subnet_detection_attach_tlv(wmi_unified_t wmi_handle);
  2994. #else
  2995. static inline
  2996. void wmi_lfr_subnet_detection_attach_tlv(struct wmi_unified *wmi_handle)
  2997. {
  2998. }
  2999. #endif
  3000. #ifdef FEATURE_RSSI_MONITOR
  3001. void wmi_rssi_monitor_attach_tlv(wmi_unified_t wmi_handle);
  3002. #else
  3003. static inline
  3004. void wmi_rssi_monitor_attach_tlv(struct wmi_unified *wmi_handle)
  3005. {
  3006. }
  3007. #endif
  3008. #ifdef FEATURE_WLAN_ESE
  3009. void wmi_ese_attach_tlv(wmi_unified_t wmi_handle);
  3010. #else
  3011. static inline void wmi_ese_attach_tlv(struct wmi_unified *wmi_handle)
  3012. {
  3013. }
  3014. #endif
  3015. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  3016. void wmi_roam_offload_attach_tlv(wmi_unified_t wmi_handle);
  3017. #else
  3018. static inline
  3019. void wmi_roam_offload_attach_tlv(struct wmi_unified *wmi_handle)
  3020. {
  3021. }
  3022. #endif
  3023. #ifdef WLAN_FEATURE_FILS_SK
  3024. void wmi_fils_sk_attach_tlv(wmi_unified_t wmi_handle);
  3025. #else
  3026. static inline void wmi_fils_sk_attach_tlv(struct wmi_unified *wmi_handle)
  3027. {
  3028. }
  3029. #endif
  3030. #ifdef WMI_ROAM_SUPPORT
  3031. void wmi_roam_attach_tlv(struct wmi_unified *wmi_handle);
  3032. #else
  3033. static inline void wmi_roam_attach_tlv(struct wmi_unified *wmi_handle)
  3034. {
  3035. }
  3036. #endif
  3037. #ifdef WMI_CONCURRENCY_SUPPORT
  3038. void wmi_concurrency_attach_tlv(struct wmi_unified *wmi_handle);
  3039. #else
  3040. static inline void wmi_concurrency_attach_tlv(struct wmi_unified *wmi_handle)
  3041. {
  3042. }
  3043. #endif
  3044. #ifdef FEATURE_WLAN_D0WOW
  3045. void wmi_d0wow_attach_tlv(struct wmi_unified *wmi_handle);
  3046. #else
  3047. static inline void wmi_d0wow_attach_tlv(struct wmi_unified *wmi_handle)
  3048. {
  3049. }
  3050. #endif
  3051. #ifdef FEATURE_WLAN_RA_FILTERING
  3052. void wmi_ra_filtering_attach_tlv(struct wmi_unified *wmi_handle);
  3053. #else
  3054. static inline
  3055. void wmi_ra_filtering_attach_tlv(struct wmi_unified *wmi_handle)
  3056. {
  3057. }
  3058. #endif
  3059. #ifdef FEATURE_WLAN_LPHB
  3060. void wmi_lphb_attach_tlv(struct wmi_unified *wmi_handle);
  3061. #else
  3062. static inline void wmi_lphb_attach_tlv(struct wmi_unified *wmi_handle)
  3063. {
  3064. }
  3065. #endif
  3066. #ifdef WLAN_FEATURE_PACKET_FILTERING
  3067. void wmi_packet_filtering_attach_tlv(struct wmi_unified *wmi_handle);
  3068. #else
  3069. static inline
  3070. void wmi_packet_filtering_attach_tlv(struct wmi_unified *wmi_handle)
  3071. {
  3072. }
  3073. #endif
  3074. #ifdef WLAN_FEATURE_EXTWOW_SUPPORT
  3075. void wmi_extwow_attach_tlv(struct wmi_unified *wmi_handle);
  3076. #else
  3077. static inline void wmi_extwow_attach_tlv(struct wmi_unified *wmi_handle)
  3078. {
  3079. }
  3080. #endif
  3081. #ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
  3082. void wmi_pmo_attach_tlv(struct wmi_unified *wmi_handle);
  3083. #else
  3084. static inline void wmi_pmo_attach_tlv(struct wmi_unified *wmi_handle)
  3085. {
  3086. }
  3087. #endif
  3088. #ifdef FEATURE_WLAN_TDLS
  3089. void wmi_tdls_attach_tlv(struct wmi_unified *wmi_handle);
  3090. #else
  3091. static inline void wmi_tdls_attach_tlv(struct wmi_unified *wmi_handle)
  3092. {
  3093. }
  3094. #endif
  3095. #ifdef WLAN_POLICY_MGR_ENABLE
  3096. void wmi_policy_mgr_attach_tlv(struct wmi_unified *wmi_handle);
  3097. #else
  3098. static inline
  3099. void wmi_policy_mgr_attach_tlv(struct wmi_unified *wmi_handle)
  3100. {
  3101. }
  3102. #endif
  3103. #if defined(WLAN_FEATURE_ROAM_OFFLOAD) && defined(FEATURE_DENYLIST_MGR)
  3104. void wmi_denylist_mgr_attach_tlv(struct wmi_unified *wmi_handle);
  3105. #else
  3106. static inline
  3107. void wmi_denylist_mgr_attach_tlv(struct wmi_unified *wmi_handle)
  3108. {
  3109. }
  3110. #endif
  3111. #ifdef WMI_STA_SUPPORT
  3112. void wmi_sta_attach_tlv(struct wmi_unified *wmi_handle);
  3113. #else
  3114. static inline void wmi_sta_attach_tlv(struct wmi_unified *wmi_handle)
  3115. {
  3116. }
  3117. #endif
  3118. #ifdef WLAN_WMI_BCN
  3119. void wmi_bcn_attach_tlv(wmi_unified_t wmi_handle);
  3120. #else
  3121. static inline void wmi_bcn_attach_tlv(wmi_unified_t wmi_handle)
  3122. {
  3123. }
  3124. #endif
  3125. /**
  3126. * wmi_fwol_attach_tlv() - attach fw offload tlv handlers
  3127. * @wmi_handle: wmi handle
  3128. *
  3129. * Return: void
  3130. */
  3131. #ifdef WLAN_FW_OFFLOAD
  3132. void wmi_fwol_attach_tlv(wmi_unified_t wmi_handle);
  3133. #else
  3134. static inline void wmi_fwol_attach_tlv(wmi_unified_t wmi_handle)
  3135. {
  3136. }
  3137. #endif
  3138. /**
  3139. * wmi_gpio_attach_tlv() - attach gpio tlv handlers
  3140. * @wmi_handle: wmi handle
  3141. *
  3142. * Return: void
  3143. */
  3144. #ifdef WLAN_FEATURE_GPIO_CFG
  3145. void wmi_gpio_attach_tlv(wmi_unified_t wmi_handle);
  3146. #else
  3147. static inline void
  3148. wmi_gpio_attach_tlv(struct wmi_unified *wmi_handle)
  3149. {
  3150. }
  3151. #endif
  3152. /**
  3153. * wmi_align() - provides word aligned parameter
  3154. * @param: parameter to be aligned
  3155. *
  3156. * Return: word aligned parameter
  3157. */
  3158. static inline uint32_t wmi_align(uint32_t param)
  3159. {
  3160. return roundup(param, sizeof(uint32_t));
  3161. }
  3162. /**
  3163. * wmi_vdev_map_to_vdev_id() - Provides vdev id corresponding to idx
  3164. * from vdev map
  3165. * @vdev_map: Bitmask containing information of active vdev ids
  3166. * @idx: Index referring to the i'th bit set from LSB in vdev map
  3167. *
  3168. * This API returns the vdev id for the i'th bit set from LSB in vdev map.
  3169. * Index runs through 1 from maximum number of vdevs set in the vdev map
  3170. *
  3171. * Return: vdev id of the vdev object
  3172. */
  3173. static inline uint32_t wmi_vdev_map_to_vdev_id(uint32_t vdev_map,
  3174. uint32_t idx)
  3175. {
  3176. uint32_t vdev_count = 0, vdev_set = 0, vdev_id = WLAN_INVALID_VDEV_ID;
  3177. while (vdev_map) {
  3178. vdev_set += (vdev_map & 0x1);
  3179. if (vdev_set == (idx+1)) {
  3180. vdev_id = vdev_count;
  3181. break;
  3182. }
  3183. vdev_map >>= 1;
  3184. vdev_count++;
  3185. }
  3186. return vdev_id;
  3187. }
  3188. /**
  3189. * wmi_vdev_map_to_num_vdevs() - Provides number of vdevs active based on the
  3190. * vdev map received from FW
  3191. * @vdev_map: Bitmask containing information of active vdev ids
  3192. *
  3193. * Return: Number of vdevs set in the vdev bit mask
  3194. */
  3195. static inline uint32_t wmi_vdev_map_to_num_vdevs(uint32_t vdev_map)
  3196. {
  3197. uint32_t num_vdevs = 0;
  3198. while (vdev_map) {
  3199. num_vdevs += (vdev_map & 0x1);
  3200. vdev_map >>= 1;
  3201. }
  3202. return num_vdevs;
  3203. }
  3204. #ifdef WMI_EXT_DBG
  3205. /**
  3206. * wmi_ext_dbg_msg_get() - Allocate memory for wmi debug msg
  3207. *
  3208. * @buflen: Length of WMI message buffer
  3209. *
  3210. * Return: Allocated msg buffer else NULL on failure.
  3211. */
  3212. static inline struct wmi_ext_dbg_msg *wmi_ext_dbg_msg_get(uint32_t buflen)
  3213. {
  3214. return qdf_mem_malloc(sizeof(struct wmi_ext_dbg_msg) + buflen);
  3215. }
  3216. /**
  3217. * wmi_ext_dbg_msg_put() - Free wmi debug msg buffer
  3218. *
  3219. * @msg: wmi message buffer to be freed
  3220. *
  3221. * Return: none
  3222. */
  3223. static inline void wmi_ext_dbg_msg_put(struct wmi_ext_dbg_msg *msg)
  3224. {
  3225. qdf_mem_free(msg);
  3226. }
  3227. #endif /*WMI_EXT_DBG */
  3228. #ifdef WLAN_CFR_ENABLE
  3229. void wmi_cfr_attach_tlv(struct wmi_unified *wmi_handle);
  3230. #else
  3231. static inline void wmi_cfr_attach_tlv(struct wmi_unified *wmi_handle)
  3232. {
  3233. }
  3234. #endif
  3235. #ifdef QCA_SUPPORT_CP_STATS
  3236. void wmi_cp_stats_attach_tlv(struct wmi_unified *wmi_handle);
  3237. #else
  3238. static inline void wmi_cp_stats_attach_tlv(struct wmi_unified *wmi_handle)
  3239. {
  3240. }
  3241. #endif /* QCA_SUPPORT_CP_STATS */
  3242. #ifdef QCA_SUPPORT_MC_CP_STATS
  3243. void wmi_mc_cp_stats_attach_tlv(struct wmi_unified *wmi_handle);
  3244. #else
  3245. static inline void wmi_mc_cp_stats_attach_tlv(struct wmi_unified *wmi_handle)
  3246. {
  3247. }
  3248. #endif /* QCA_SUPPORT_MC_CP_STATS */
  3249. #ifdef WLAN_FEATURE_COAP
  3250. void wmi_coap_attach_tlv(wmi_unified_t wmi_handle);
  3251. #else
  3252. static inline void wmi_coap_attach_tlv(wmi_unified_t wmi_handle)
  3253. {
  3254. }
  3255. #endif
  3256. /*
  3257. * wmi_map_ch_width() - map wmi channel width to host channel width
  3258. * @wmi_width: wmi channel width
  3259. *
  3260. * Return: host channel width, enum phy_ch_width
  3261. */
  3262. enum phy_ch_width wmi_map_ch_width(A_UINT32 wmi_width);
  3263. /**
  3264. * wmi_host_to_fw_phymode() - convert host to fw phymode
  3265. * @host_phymode: phymode to convert
  3266. *
  3267. * Return: one of the values defined in enum WMI_HOST_WLAN_PHY_MODE;
  3268. * or WMI_HOST_MODE_UNKNOWN if the conversion fails
  3269. */
  3270. WMI_HOST_WLAN_PHY_MODE wmi_host_to_fw_phymode(enum wlan_phymode host_phymode);
  3271. #endif