wmi_unified_priv.h 123 KB

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