wmi_unified_priv.h 102 KB

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