wlan_mlme_api.h 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132
  1. /*
  2. * Copyright (c) 2018-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. * DOC: declare public APIs exposed by the mlme component
  20. */
  21. #ifndef _WLAN_MLME_API_H_
  22. #define _WLAN_MLME_API_H_
  23. #include <wlan_mlme_public_struct.h>
  24. #include <wlan_objmgr_psoc_obj.h>
  25. #include <wlan_cmn.h>
  26. #include "sme_api.h"
  27. /**
  28. * wlan_mlme_get_cfg_str() - Copy the uint8_t array for a particular CFG
  29. * @dst: pointer to the destination buffer.
  30. * @cfg_str: pointer to the cfg string structure
  31. * @len: length to be copied
  32. *
  33. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_E_FAILURE
  34. */
  35. QDF_STATUS wlan_mlme_get_cfg_str(uint8_t *dst, struct mlme_cfg_str *cfg_str,
  36. qdf_size_t *len);
  37. /**
  38. * wlan_mlme_set_cfg_str() - Set values for a particular CFG
  39. * @src: pointer to the source buffer.
  40. * @dst_cfg_str: pointer to the cfg string structure to be modified
  41. * @len: length to be written
  42. *
  43. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_E_FAILURE
  44. */
  45. QDF_STATUS wlan_mlme_set_cfg_str(uint8_t *src, struct mlme_cfg_str *dst_cfg_str,
  46. qdf_size_t len);
  47. /**
  48. * wlan_mlme_get_edca_params() - get the EDCA parameters corresponding to the
  49. * edca profile access category
  50. * @edca_params: pointer to mlme edca parameters structure
  51. * @data: data to which the parameter is to be copied
  52. * @edca_ac: edca ac type enum passed to get the cfg value
  53. *
  54. * Return QDF_STATUS_SUCCESS or QDF_STATUS_E_FAILURE
  55. *
  56. */
  57. QDF_STATUS wlan_mlme_get_edca_params(struct wlan_mlme_edca_params *edca_params,
  58. uint8_t *data, enum e_edca_type edca_ac);
  59. /**
  60. * wlan_mlme_update_cfg_with_tgt_caps() - Update mlme cfg with tgt caps
  61. * @psoc: pointer to psoc object
  62. * @tgt_caps: Pointer to the mlme related capability structure
  63. *
  64. * Return: None
  65. */
  66. void
  67. wlan_mlme_update_cfg_with_tgt_caps(struct wlan_objmgr_psoc *psoc,
  68. struct mlme_tgt_caps *tgt_caps);
  69. /*
  70. * mlme_get_wep_key() - get the wep key to process during auth frame
  71. * @vdev: VDEV object for which the wep key is being requested
  72. * @wep_params: cfg wep parameters structure
  73. * @wep_key_id: default key number
  74. * @default_key: default key to be copied
  75. * @key_len: length of the key to copy
  76. *
  77. * Return QDF_STATUS
  78. */
  79. QDF_STATUS mlme_get_wep_key(struct wlan_objmgr_vdev *vdev,
  80. struct wlan_mlme_wep_cfg *wep_params,
  81. enum wep_key_id wep_keyid, uint8_t *default_key,
  82. qdf_size_t *key_len);
  83. /**
  84. * wlan_mlme_get_tx_power() - Get the max tx power in particular band
  85. * @psoc: pointer to psoc object
  86. * @band: 2ghz/5ghz band
  87. *
  88. * Return: value of tx power in the respective band
  89. */
  90. uint8_t wlan_mlme_get_tx_power(struct wlan_objmgr_psoc *psoc,
  91. enum band_info band);
  92. /**
  93. * wlan_mlme_get_power_usage() - Get the power usage info
  94. * @psoc: pointer to psoc object
  95. *
  96. * Return: pointer to character array of power usage
  97. */
  98. char *wlan_mlme_get_power_usage(struct wlan_objmgr_psoc *psoc);
  99. /**
  100. * wlan_mlme_get_enable_deauth_to_disassoc_map() - Get the deauth to disassoc
  101. * map
  102. * @psoc: pointer to psoc object
  103. * @value: pointer to the value which will be filled for the caller
  104. *
  105. * Return: QDF Status
  106. */
  107. QDF_STATUS
  108. wlan_mlme_get_enable_deauth_to_disassoc_map(struct wlan_objmgr_psoc *psoc,
  109. bool *value);
  110. /**
  111. * wlan_mlme_get_ht_cap_info() - Get the HT cap info config
  112. * @psoc: pointer to psoc object
  113. * @value: pointer to the value which will be filled for the caller
  114. *
  115. * Return: QDF Status
  116. */
  117. QDF_STATUS wlan_mlme_get_ht_cap_info(struct wlan_objmgr_psoc *psoc,
  118. struct mlme_ht_capabilities_info
  119. *ht_cap_info);
  120. /**
  121. * wlan_mlme_get_manufacturer_name() - get manufacturer name
  122. * @psoc: pointer to psoc object
  123. * @pbuf: pointer of the buff which will be filled for the caller
  124. * @plen: pointer of max buffer length
  125. * actual length will be returned at this address
  126. * This function gets manufacturer name
  127. *
  128. * Return: QDF_STATUS_SUCCESS - in case of success
  129. */
  130. QDF_STATUS
  131. wlan_mlme_get_manufacturer_name(struct wlan_objmgr_psoc *psoc,
  132. uint8_t *pbuf, uint32_t *plen);
  133. /**
  134. * wlan_mlme_get_model_number() - get model number
  135. * @psoc: pointer to psoc object
  136. * @pbuf: pointer of the buff which will be filled for the caller
  137. * @plen: pointer of max buffer length
  138. * actual length will be returned at this address
  139. * This function gets model number
  140. *
  141. * Return: QDF_STATUS_SUCCESS - in case of success
  142. */
  143. QDF_STATUS
  144. wlan_mlme_get_model_number(struct wlan_objmgr_psoc *psoc,
  145. uint8_t *pbuf, uint32_t *plen);
  146. /**
  147. * wlan_mlme_get_model_name() - get model name
  148. * @psoc: pointer to psoc object
  149. * @pbuf: pointer of the buff which will be filled for the caller
  150. * @plen: pointer of max buffer length
  151. * actual length will be returned at this address
  152. * This function gets model name
  153. *
  154. * Return: QDF_STATUS_SUCCESS - in case of success
  155. */
  156. QDF_STATUS
  157. wlan_mlme_get_model_name(struct wlan_objmgr_psoc *psoc,
  158. uint8_t *pbuf, uint32_t *plen);
  159. /**
  160. * wlan_mlme_get_manufacture_product_name() - get manufacture product name
  161. * @psoc: pointer to psoc object
  162. * @pbuf: pointer of the buff which will be filled for the caller
  163. * @plen: pointer of max buffer length
  164. * actual length will be returned at this address
  165. * This function gets manufacture product name
  166. *
  167. * Return: QDF_STATUS_SUCCESS - in case of success
  168. */
  169. QDF_STATUS
  170. wlan_mlme_get_manufacture_product_name(struct wlan_objmgr_psoc *psoc,
  171. uint8_t *pbuf, uint32_t *plen);
  172. /**
  173. * wlan_mlme_get_manufacture_product_version() - get manufacture product version
  174. * @psoc: pointer to psoc object
  175. * @pbuf: pointer of the buff which will be filled for the caller
  176. * @plen: pointer of max buffer length
  177. * actual length will be returned at this address
  178. * This function gets manufacture product version
  179. *
  180. * Return: QDF_STATUS_SUCCESS - in case of success
  181. */
  182. QDF_STATUS
  183. wlan_mlme_get_manufacture_product_version(struct wlan_objmgr_psoc *psoc,
  184. uint8_t *pbuf, uint32_t *plen);
  185. /**
  186. * wlan_mlme_set_ht_cap_info() - Set the HT cap info config
  187. * @psoc: pointer to psoc object
  188. * @value: Value that needs to be set from the caller
  189. *
  190. * Return: QDF Status
  191. */
  192. QDF_STATUS wlan_mlme_set_ht_cap_info(struct wlan_objmgr_psoc *psoc,
  193. struct mlme_ht_capabilities_info
  194. ht_cap_info);
  195. /**
  196. * wlan_mlme_get_max_amsdu_num() - get the max amsdu num
  197. * @psoc: pointer to psoc object
  198. * @value: pointer to the value where the max_amsdu num is to be filled
  199. *
  200. * Return: QDF_STATUS
  201. */
  202. QDF_STATUS wlan_mlme_get_max_amsdu_num(struct wlan_objmgr_psoc *psoc,
  203. uint8_t *value);
  204. /**
  205. * wlan_mlme_set_max_amsdu_num() - set the max amsdu num
  206. * @psoc: pointer to psoc object
  207. * @value: value to be set for max_amsdu_num
  208. *
  209. * Return: QDF_STATUS
  210. */
  211. QDF_STATUS wlan_mlme_set_max_amsdu_num(struct wlan_objmgr_psoc *psoc,
  212. uint8_t value);
  213. /**
  214. * wlan_mlme_get_ht_mpdu_density() - get the ht mpdu density
  215. * @psoc: pointer to psoc object
  216. * @value: pointer to the value where the ht mpdu density is to be filled
  217. *
  218. * Return: QDF_STATUS
  219. */
  220. QDF_STATUS wlan_mlme_get_ht_mpdu_density(struct wlan_objmgr_psoc *psoc,
  221. uint8_t *value);
  222. /**
  223. * wlan_mlme_set_ht_mpdu_density() - set the ht mpdu density
  224. * @psoc: pointer to psoc object
  225. * @value: value to be set for ht mpdu density
  226. *
  227. * Return: QDF_STATUS
  228. */
  229. QDF_STATUS wlan_mlme_set_ht_mpdu_density(struct wlan_objmgr_psoc *psoc,
  230. uint8_t value);
  231. /**
  232. * wlan_mlme_get_band_capability() - Get the Band capability config
  233. * @psoc: pointer to psoc object
  234. * @band_capability: Pointer to the variable from caller
  235. *
  236. * Return: QDF Status
  237. */
  238. QDF_STATUS wlan_mlme_get_band_capability(struct wlan_objmgr_psoc *psoc,
  239. uint32_t *band_capability);
  240. /**
  241. * wlan_mlme_set_band_capability() - Set the Band capability config
  242. * @psoc: pointer to psoc object
  243. * @band_capability: Value to be set from the caller
  244. *
  245. * Return: QDF Status
  246. */
  247. QDF_STATUS wlan_mlme_set_band_capability(struct wlan_objmgr_psoc *psoc,
  248. uint32_t band_capability);
  249. /**
  250. * wlan_mlme_get_prevent_link_down() - Get the prevent link down config
  251. * @psoc: pointer to psoc object
  252. * @prevent_link_down: Pointer to the variable from caller
  253. *
  254. * Return: QDF Status
  255. */
  256. QDF_STATUS wlan_mlme_get_prevent_link_down(struct wlan_objmgr_psoc *psoc,
  257. bool *prevent_link_down);
  258. /**
  259. * wlan_mlme_get_select_5ghz_margin() - Get the select 5Ghz margin config
  260. * @psoc: pointer to psoc object
  261. * @select_5ghz_margin: Pointer to the variable from caller
  262. *
  263. * Return: QDF Status
  264. */
  265. QDF_STATUS wlan_mlme_get_select_5ghz_margin(struct wlan_objmgr_psoc *psoc,
  266. uint8_t *select_5ghz_margin);
  267. /**
  268. * wlan_mlme_get_rtt_mac_randomization() - Get the RTT MAC randomization config
  269. * @psoc: pointer to psoc object
  270. * @rtt_mac_randomization: Pointer to the variable from caller
  271. *
  272. * Return: QDF Status
  273. */
  274. QDF_STATUS wlan_mlme_get_rtt_mac_randomization(struct wlan_objmgr_psoc *psoc,
  275. bool *rtt_mac_randomization);
  276. /**
  277. * wlan_mlme_get_crash_inject() - Get the crash inject config
  278. * @psoc: pointer to psoc object
  279. * @crash_inject: Pointer to the variable from caller
  280. *
  281. * Return: QDF Status
  282. */
  283. QDF_STATUS wlan_mlme_get_crash_inject(struct wlan_objmgr_psoc *psoc,
  284. bool *crash_inject);
  285. /**
  286. * wlan_mlme_get_lpass_support() - Get the LPASS Support config
  287. * @psoc: pointer to psoc object
  288. * @lpass_support: Pointer to the variable from caller
  289. *
  290. * Return: QDF Status
  291. */
  292. QDF_STATUS wlan_mlme_get_lpass_support(struct wlan_objmgr_psoc *psoc,
  293. bool *lpass_support);
  294. /**
  295. * wlan_mlme_get_wls_6ghz_cap() - Get the wifi location service(WLS)
  296. * 6ghz capability
  297. * @psoc: pointer to psoc object
  298. * @wls_6ghz_capable: Pointer to the variable from caller
  299. *
  300. * Return: void
  301. */
  302. void wlan_mlme_get_wls_6ghz_cap(struct wlan_objmgr_psoc *psoc,
  303. bool *wls_6ghz_capable);
  304. /**
  305. * wlan_mlme_get_self_recovery() - Get the self recovery config
  306. * @psoc: pointer to psoc object
  307. * @self_recovery: Pointer to the variable from caller
  308. *
  309. * Return: QDF Status
  310. */
  311. QDF_STATUS wlan_mlme_get_self_recovery(struct wlan_objmgr_psoc *psoc,
  312. bool *self_recovery);
  313. /**
  314. * wlan_mlme_get_sub_20_chan_width() - Get the sub 20 chan width config
  315. * @psoc: pointer to psoc object
  316. * @sub_20_chan_width: Pointer to the variable from caller
  317. *
  318. * Return: QDF Status
  319. */
  320. QDF_STATUS wlan_mlme_get_sub_20_chan_width(struct wlan_objmgr_psoc *psoc,
  321. uint8_t *sub_20_chan_width);
  322. /**
  323. * wlan_mlme_get_fw_timeout_crash() - Get the fw timeout crash config
  324. * @psoc: pointer to psoc object
  325. * @fw_timeout_crash: Pointer to the variable from caller
  326. *
  327. * Return: QDF Status
  328. */
  329. QDF_STATUS wlan_mlme_get_fw_timeout_crash(struct wlan_objmgr_psoc *psoc,
  330. bool *fw_timeout_crash);
  331. /**
  332. * wlan_mlme_get_ito_repeat_count() - Get the fw timeout crash config
  333. * @psoc: pointer to psoc object
  334. * @ito_repeat_count: Pointer to the variable from caller
  335. *
  336. * Return: QDF Status
  337. */
  338. QDF_STATUS wlan_mlme_get_ito_repeat_count(struct wlan_objmgr_psoc *psoc,
  339. uint8_t *ito_repeat_count);
  340. /**
  341. * wlan_mlme_get_acs_with_more_param() - Get the acs_with_more_param flag
  342. * @psoc: pointer to psoc object
  343. * @value: Value that needs to be set from the caller
  344. *
  345. * Return: QDF Status
  346. */
  347. QDF_STATUS wlan_mlme_get_acs_with_more_param(struct wlan_objmgr_psoc *psoc,
  348. bool *value);
  349. /**
  350. * wlan_mlme_get_auto_channel_weight() - Get the auto channel weight
  351. * @psoc: pointer to psoc object
  352. * @value: Value that needs to be set from the caller
  353. *
  354. * Return: QDF Status
  355. */
  356. QDF_STATUS wlan_mlme_get_auto_channel_weight(struct wlan_objmgr_psoc *psoc,
  357. uint32_t *value);
  358. /**
  359. * wlan_mlme_get_vendor_acs_support() - Get the vendor based channel selece
  360. * @psoc: pointer to psoc object
  361. * @value: Value that needs to be set from the caller
  362. *
  363. * Return: QDF Status
  364. */
  365. QDF_STATUS wlan_mlme_get_vendor_acs_support(struct wlan_objmgr_psoc *psoc,
  366. bool *value);
  367. /**
  368. * wlan_mlme_get_acs_support_for_dfs_ltecoex() - Get the flag for
  369. * acs support for dfs ltecoex
  370. * @psoc: pointer to psoc object
  371. * @value: Value that needs to be set from the caller
  372. *
  373. * Return: QDF Status
  374. */
  375. QDF_STATUS
  376. wlan_mlme_get_acs_support_for_dfs_ltecoex(struct wlan_objmgr_psoc *psoc,
  377. bool *value);
  378. /**
  379. * wlan_mlme_get_external_acs_policy() - Get the flag for external acs policy
  380. * @psoc: pointer to psoc object
  381. * @value: Value that needs to be set from the caller
  382. *
  383. * Return: QDF Status
  384. */
  385. QDF_STATUS
  386. wlan_mlme_get_external_acs_policy(struct wlan_objmgr_psoc *psoc,
  387. bool *value);
  388. /**
  389. *
  390. * wlan_mlme_get_sap_inactivity_override() - Check if sap max inactivity
  391. * override flag is set.
  392. * @psoc: pointer to psoc object
  393. * @sme_config - Sme config struct
  394. *
  395. * Return: QDF Status
  396. */
  397. void wlan_mlme_get_sap_inactivity_override(struct wlan_objmgr_psoc *psoc,
  398. bool *value);
  399. /**
  400. * wlan_mlme_get_ignore_peer_ht_mode() - Get the ignore peer ht opmode flag
  401. * @psoc: pointer to psoc object
  402. * @value: Value that needs to be set from the caller
  403. *
  404. * Return: QDF Status
  405. */
  406. QDF_STATUS wlan_mlme_get_ignore_peer_ht_mode(struct wlan_objmgr_psoc *psoc,
  407. bool *value);
  408. /**
  409. * wlan_mlme_get_tx_chainmask_cck() - Get the tx_chainmask_cfg value
  410. * @psoc: pointer to psoc object
  411. * @value: Value that needs to be set from the caller
  412. *
  413. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  414. */
  415. QDF_STATUS wlan_mlme_get_tx_chainmask_cck(struct wlan_objmgr_psoc *psoc,
  416. bool *value);
  417. /**
  418. * wlan_mlme_get_tx_chainmask_1ss() - Get the tx_chainmask_1ss value
  419. * @psoc: pointer to psoc object
  420. * @value: Value that caller needs to get
  421. *
  422. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  423. */
  424. QDF_STATUS wlan_mlme_get_tx_chainmask_1ss(struct wlan_objmgr_psoc *psoc,
  425. uint8_t *value);
  426. /**
  427. * wlan_mlme_get_num_11b_tx_chains() - Get the number of 11b only tx chains
  428. * @psoc: pointer to psoc object
  429. * @value: Value that needs to be set from the caller
  430. *
  431. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  432. */
  433. QDF_STATUS wlan_mlme_get_num_11b_tx_chains(struct wlan_objmgr_psoc *psoc,
  434. uint16_t *value);
  435. /**
  436. * wlan_mlme_get_num_11ag_tx_chains() - get the total number of 11a/g tx chains
  437. * @psoc: pointer to psoc object
  438. * @value: Value that caller needs to get
  439. *
  440. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  441. */
  442. QDF_STATUS wlan_mlme_get_num_11ag_tx_chains(struct wlan_objmgr_psoc *psoc,
  443. uint16_t *value);
  444. /**
  445. * wlan_mlme_get_bt_chain_separation_flag() - get the enable_bt_chain_separation
  446. * flag
  447. * @psoc: pointer to psoc object
  448. * @value: Value that needs to be set from the caller
  449. *
  450. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  451. */
  452. QDF_STATUS wlan_mlme_get_bt_chain_separation_flag(struct wlan_objmgr_psoc *psoc,
  453. bool *value);
  454. /**
  455. * wlan_mlme_configure_chain_mask() - configure chainmask parameters
  456. * @psoc: pointer to psoc object
  457. * @session_id: vdev_id
  458. *
  459. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  460. */
  461. QDF_STATUS wlan_mlme_configure_chain_mask(struct wlan_objmgr_psoc *psoc,
  462. uint8_t session_id);
  463. /**
  464. * wlan_mlme_is_chain_mask_supported() - check if configure chainmask can
  465. * be supported
  466. * @psoc: pointer to psoc object
  467. *
  468. * Return: true if supported else false
  469. */
  470. bool wlan_mlme_is_chain_mask_supported(struct wlan_objmgr_psoc *psoc);
  471. /**
  472. * wlan_mlme_get_listen_interval() - Get listen interval
  473. * @psoc: pointer to psoc object
  474. * @value: Pointer to value that needs to be filled by MLME
  475. *
  476. * Return: QDF Status
  477. */
  478. QDF_STATUS wlan_mlme_get_listen_interval(struct wlan_objmgr_psoc *psoc,
  479. int *value);
  480. /**
  481. * wlan_mlme_set_sap_listen_interval() - Set the sap listen interval
  482. * @psoc: pointer to psoc object
  483. * @value: Value that needs to be set from the caller
  484. *
  485. * Return: QDF Status
  486. */
  487. QDF_STATUS wlan_mlme_set_sap_listen_interval(struct wlan_objmgr_psoc *psoc,
  488. int value);
  489. /**
  490. * wlan_mlme_set_assoc_sta_limit() - Set the assoc sta limit
  491. * @psoc: pointer to psoc object
  492. * @value: Value that needs to be set from the caller
  493. *
  494. * Return: QDF Status
  495. */
  496. QDF_STATUS wlan_mlme_set_assoc_sta_limit(struct wlan_objmgr_psoc *psoc,
  497. int value);
  498. /**
  499. * wlan_mlme_get_assoc_sta_limit() - Get the assoc sta limit
  500. * @psoc: pointer to psoc object
  501. * @value: Pointer to value that needs to be filled by MLME
  502. *
  503. * Return: QDF Status
  504. */
  505. QDF_STATUS wlan_mlme_get_assoc_sta_limit(struct wlan_objmgr_psoc *psoc,
  506. int *value);
  507. /**
  508. * wlan_mlme_set_sap_get_peer_info() - get the sap get peer info
  509. * @psoc: pointer to psoc object
  510. * @value: Value that needs to be set from the caller
  511. *
  512. * Return: QDF Status
  513. */
  514. QDF_STATUS wlan_mlme_get_sap_get_peer_info(struct wlan_objmgr_psoc *psoc,
  515. bool *value);
  516. /**
  517. * wlan_mlme_set_sap_get_peer_info() - set the sap get peer info
  518. * @psoc: pointer to psoc object
  519. * @value: value to overwrite the sap get peer info
  520. *
  521. * Return: QDF Status
  522. */
  523. QDF_STATUS wlan_mlme_set_sap_get_peer_info(struct wlan_objmgr_psoc *psoc,
  524. bool value);
  525. /**
  526. * wlan_mlme_get_sap_bcast_deauth_enabled() - get the enable/disable value
  527. * for broadcast deauth in sap
  528. * @psoc: pointer to psoc object
  529. * @value: Value that needs to get from the caller
  530. *
  531. * Return: QDF Status
  532. */
  533. QDF_STATUS
  534. wlan_mlme_get_sap_bcast_deauth_enabled(struct wlan_objmgr_psoc *psoc,
  535. bool *value);
  536. /**
  537. * wlan_mlme_get_sap_allow_all_channels() - get the value of sap allow all
  538. * channels
  539. * @psoc: pointer to psoc object
  540. * @value: Value that needs to be set from the caller
  541. *
  542. * Return: QDF Status
  543. */
  544. QDF_STATUS wlan_mlme_get_sap_allow_all_channels(struct wlan_objmgr_psoc *psoc,
  545. bool *value);
  546. /**
  547. * wlan_mlme_is_6g_sap_fd_enabled() - get the enable/disable value
  548. * for 6g sap fils discovery
  549. * @psoc: pointer to psoc object
  550. * @value: Value that needs to get from the caller
  551. *
  552. * Return: QDF Status
  553. */
  554. QDF_STATUS
  555. wlan_mlme_is_6g_sap_fd_enabled(struct wlan_objmgr_psoc *psoc,
  556. bool *value);
  557. /**
  558. * wlan_mlme_get_sap_allow_all_channels() - get the value sap max peers
  559. * @psoc: pointer to psoc object
  560. * @value: Value that needs to be set from the caller
  561. *
  562. * Return: QDF Status
  563. */
  564. QDF_STATUS wlan_mlme_get_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  565. int *value);
  566. /**
  567. * wlan_mlme_set_sap_max_peers() - set the value sap max peers
  568. * @psoc: pointer to psoc object
  569. * @value: Value that needs to be set from the caller
  570. *
  571. * Return: QDF Status
  572. */
  573. QDF_STATUS wlan_mlme_set_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  574. int value);
  575. /**
  576. * wlan_mlme_get_sap_max_offload_peers() - get the value sap max offload peers
  577. * @psoc: pointer to psoc object
  578. * @value: Value that needs to be set from the caller
  579. *
  580. * Return: QDF Status
  581. */
  582. QDF_STATUS wlan_mlme_get_sap_max_offload_peers(struct wlan_objmgr_psoc *psoc,
  583. int *value);
  584. /**
  585. * wlan_mlme_get_sap_max_offload_reorder_buffs() - get the value sap max offload
  586. * reorder buffs.
  587. * @psoc: pointer to psoc object
  588. * @value: Value that needs to be set from the caller
  589. *
  590. * Return: QDF Status
  591. */
  592. QDF_STATUS wlan_mlme_get_sap_max_offload_reorder_buffs(struct wlan_objmgr_psoc
  593. *psoc, int *value);
  594. /**
  595. * wlan_mlme_get_sap_chn_switch_bcn_count() - get the value sap max channel
  596. * switch beacon count
  597. * @psoc: pointer to psoc object
  598. * @value: Value that needs to be set from the caller
  599. *
  600. * Return: QDF Status
  601. */
  602. QDF_STATUS wlan_mlme_get_sap_chn_switch_bcn_count(struct wlan_objmgr_psoc *psoc,
  603. int *value);
  604. /**
  605. * wlan_mlme_get_sap_chn_switch_mode() - get the sap channel
  606. * switch mode
  607. * @psoc: pointer to psoc object
  608. * @value: Value that needs to be set from the caller
  609. *
  610. * Return: QDF Status
  611. */
  612. QDF_STATUS wlan_mlme_get_sap_chn_switch_mode(struct wlan_objmgr_psoc *psoc,
  613. bool *value);
  614. /**
  615. * wlan_mlme_get_sap_internal_restart() - get the sap internal
  616. * restart
  617. * @psoc: pointer to psoc object
  618. * @value: Value that needs to be set from the caller
  619. *
  620. * Return: QDF Status
  621. */
  622. QDF_STATUS wlan_mlme_get_sap_internal_restart(struct wlan_objmgr_psoc *psoc,
  623. bool *value);
  624. /**
  625. * wlan_mlme_get_sap_max_modulated_dtim() - get the max modulated dtim
  626. * restart
  627. * @psoc: pointer to psoc object
  628. * @value: Value that needs to be set from the caller
  629. *
  630. * Return: QDF Status
  631. */
  632. QDF_STATUS wlan_mlme_get_sap_max_modulated_dtim(struct wlan_objmgr_psoc *psoc,
  633. uint8_t *value);
  634. /**
  635. * wlan_mlme_get_sap_chan_pref_location() - get the sap chan pref location
  636. * restart
  637. * @psoc: pointer to psoc object
  638. * @value: Value that needs to be set from the caller
  639. *
  640. * Return: QDF Status
  641. */
  642. QDF_STATUS wlan_mlme_get_sap_chan_pref_location(struct wlan_objmgr_psoc *psoc,
  643. uint8_t *value);
  644. /**
  645. * wlan_mlme_get_sap_country_priority() - get the sap country code priority
  646. * restart
  647. * @psoc: pointer to psoc object
  648. * @value: Value that needs to be set from the caller
  649. *
  650. * Return: QDF Status
  651. */
  652. QDF_STATUS wlan_mlme_get_sap_country_priority(struct wlan_objmgr_psoc *psoc,
  653. bool *value);
  654. /**
  655. * wlan_mlme_get_sap_reduced_beacon_interval() - get the sap reduced
  656. * beacon interval
  657. * @psoc: pointer to psoc object
  658. * @value: Value that needs to be set from the caller
  659. *
  660. * Return: QDF Status
  661. */
  662. QDF_STATUS wlan_mlme_get_sap_reduced_beacon_interval(struct wlan_objmgr_psoc
  663. *psoc, int *value);
  664. /**
  665. * wlan_mlme_get_sap_chan_switch_rate_enabled() - get the sap rate hostapd
  666. * enabled beacon interval
  667. * @psoc: pointer to psoc object
  668. * @value: Value that needs to be set from the caller
  669. *
  670. * Return: QDF Status
  671. */
  672. QDF_STATUS wlan_mlme_get_sap_chan_switch_rate_enabled(struct wlan_objmgr_psoc
  673. *psoc, bool *value);
  674. /**
  675. * wlan_mlme_get_sap_force_11n_for_11ac() - get the sap 11n for 11ac
  676. *
  677. * @psoc: pointer to psoc object
  678. * @value: Value that needs to be set from the caller
  679. *
  680. * Return: QDF Status
  681. */
  682. QDF_STATUS wlan_mlme_get_sap_force_11n_for_11ac(struct wlan_objmgr_psoc
  683. *psoc, bool *value);
  684. /**
  685. * wlan_mlme_get_go_force_11n_for_11ac() - get the go 11n for 11ac
  686. *
  687. * @psoc: pointer to psoc object
  688. * @value: Value that needs to be set from the caller
  689. *
  690. * Return: QDF Status
  691. */
  692. QDF_STATUS wlan_mlme_get_go_force_11n_for_11ac(struct wlan_objmgr_psoc
  693. *psoc, bool *value);
  694. /**
  695. * wlan_mlme_is_go_11ac_override() - Override 11ac bandwdith for P2P GO
  696. *
  697. * @psoc: pointer to psoc object
  698. * @value: pointer to the value which will be filled for the caller
  699. *
  700. * Return: QDF Status
  701. */
  702. QDF_STATUS wlan_mlme_is_go_11ac_override(struct wlan_objmgr_psoc *psoc,
  703. bool *value);
  704. /**
  705. * wlan_mlme_is_sap_11ac_override() - Override 11ac bandwdith for SAP
  706. *
  707. * @psoc: pointer to psoc object
  708. * @value: pointer to the value which will be filled for the caller
  709. *
  710. * Return: QDF Status
  711. */
  712. QDF_STATUS wlan_mlme_is_sap_11ac_override(struct wlan_objmgr_psoc *psoc,
  713. bool *value);
  714. /**
  715. * wlan_mlme_set_go_11ac_override() - set override 11ac bandwdith for P2P GO
  716. *
  717. * @psoc: pointer to psoc object
  718. * @value: pointer to the value which will be filled for the caller
  719. *
  720. * Return: QDF Status
  721. */
  722. QDF_STATUS wlan_mlme_set_go_11ac_override(struct wlan_objmgr_psoc *psoc,
  723. bool value);
  724. /**
  725. * wlan_mlme_set_sap_11ac_override() - set override 11ac bandwdith for SAP
  726. *
  727. * @psoc: pointer to psoc object
  728. * @value: pointer to the value which will be filled for the caller
  729. *
  730. * Return: QDF Status
  731. */
  732. QDF_STATUS wlan_mlme_set_sap_11ac_override(struct wlan_objmgr_psoc *psoc,
  733. bool value);
  734. /**
  735. * wlan_mlme_get_oce_sta_enabled_info() - Get the OCE feature enable
  736. * info for STA
  737. * @psoc: pointer to psoc object
  738. * @value: pointer to the value which will be filled for the caller
  739. *
  740. * Return: QDF Status
  741. */
  742. QDF_STATUS wlan_mlme_get_oce_sta_enabled_info(struct wlan_objmgr_psoc *psoc,
  743. bool *value);
  744. /**
  745. * wlan_mlme_get_bigtk_support() - Get the BIGTK support
  746. * @psoc: pointer to psoc object
  747. * @value: pointer to the value which will be filled for the caller
  748. *
  749. * Return: QDF Status
  750. */
  751. QDF_STATUS wlan_mlme_get_bigtk_support(struct wlan_objmgr_psoc *psoc,
  752. bool *value);
  753. /**
  754. * wlan_mlme_get_ocv_support() - Get the OCV support
  755. * @psoc: pointer to psoc object
  756. * @value: pointer to the value which will be filled for the caller
  757. *
  758. * Return: QDF Status
  759. */
  760. QDF_STATUS wlan_mlme_get_ocv_support(struct wlan_objmgr_psoc *psoc,
  761. bool *value);
  762. /**
  763. * wlan_mlme_get_host_scan_abort_support() - Get support for stop all host
  764. * scans service capability.
  765. * @psoc: PSOC object pointer
  766. *
  767. * Return: True if capability is supported, else False
  768. */
  769. bool wlan_mlme_get_host_scan_abort_support(struct wlan_objmgr_psoc *psoc);
  770. /**
  771. * wlan_mlme_get_dual_sta_roam_support - Get support for dual sta roaming
  772. * feature
  773. * @psoc: PSOC object pointer
  774. *
  775. * Return: True if capability is supported, else False
  776. */
  777. bool wlan_mlme_get_dual_sta_roam_support(struct wlan_objmgr_psoc *psoc);
  778. /**
  779. * wlan_mlme_get_oce_sap_enabled_info() - Get the OCE feature enable
  780. * info for SAP
  781. * @psoc: pointer to psoc object
  782. * @value: pointer to the value which will be filled for the caller
  783. *
  784. * Return: QDF Status
  785. */
  786. QDF_STATUS wlan_mlme_get_oce_sap_enabled_info(struct wlan_objmgr_psoc *psoc,
  787. bool *value);
  788. /**
  789. * wlan_mlme_update_oce_flags() - Update the oce flags to FW
  790. * @pdev: pointer to pdev object
  791. *
  792. * Return: void
  793. */
  794. void wlan_mlme_update_oce_flags(struct wlan_objmgr_pdev *pdev);
  795. #ifdef WLAN_FEATURE_11AX
  796. /**
  797. * wlan_mlme_cfg_get_he_ul_mumimo() - Get the HE Ul Mumio
  798. * @psoc: pointer to psoc object
  799. * @value: Value that needs to be set from the caller
  800. *
  801. * Return: QDF Status
  802. */
  803. QDF_STATUS wlan_mlme_cfg_get_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  804. uint32_t *value);
  805. /**
  806. * wlan_mlme_cfg_set_he_ul_mumimo() - Set the HE Ul Mumio
  807. * @psoc: pointer to psoc object
  808. * @value: Value that needs to be set from the caller
  809. *
  810. * Return: QDF Status
  811. */
  812. QDF_STATUS wlan_mlme_cfg_set_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  813. uint32_t value);
  814. /**
  815. * mlme_cfg_get_he_caps() - Get the HE capability info
  816. * @psoc: pointer to psoc object
  817. * @he_cap: Caps that needs to be filled.
  818. *
  819. * Return: QDF Status
  820. */
  821. QDF_STATUS mlme_cfg_get_he_caps(struct wlan_objmgr_psoc *psoc,
  822. tDot11fIEhe_cap *he_cap);
  823. /**
  824. * wlan_mlme_cfg_get_enable_ul_mimo() - Get the HE Ul mimo
  825. * @psoc: pointer to psoc object
  826. * @value: Value that needs to be set from the caller
  827. *
  828. * Return: QDF Status
  829. */
  830. QDF_STATUS wlan_mlme_cfg_get_enable_ul_mimo(struct wlan_objmgr_psoc *psoc,
  831. uint8_t *value);
  832. /**
  833. * wlan_mlme_cfg_get_enable_ul_ofdm() - Get enable ul ofdm
  834. * @psoc: pointer to psoc object
  835. * @value: Value that needs to be set from the caller
  836. *
  837. * Return: QDF Status
  838. */
  839. QDF_STATUS wlan_mlme_cfg_get_enable_ul_ofdm(struct wlan_objmgr_psoc *psoc,
  840. uint8_t *value);
  841. /**
  842. * mlme_update_tgt_he_caps_in_cfg() - Update tgt he cap in mlme component
  843. *
  844. * @psoc: pointer to psoc object
  845. * @cfg: pointer to config params from target
  846. *
  847. * This api to be used by callers to update
  848. * he caps in mlme.
  849. *
  850. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  851. */
  852. QDF_STATUS mlme_update_tgt_he_caps_in_cfg(struct wlan_objmgr_psoc *psoc,
  853. struct wma_tgt_cfg *cfg);
  854. #endif
  855. #ifdef WLAN_FEATURE_11BE
  856. /**
  857. * mlme_update_tgt_eht_caps_in_cfg() - Update tgt eht cap in mlme component
  858. *
  859. * @psoc: pointer to psoc object
  860. * @cfg: pointer to config params from target
  861. *
  862. * This api to be used by callers to update EHT caps in mlme.
  863. *
  864. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  865. */
  866. QDF_STATUS mlme_update_tgt_eht_caps_in_cfg(struct wlan_objmgr_psoc *psoc,
  867. struct wma_tgt_cfg *cfg);
  868. #endif
  869. /**
  870. * wlan_mlme_is_ap_prot_enabled() - check if sap protection is enabled
  871. * @psoc: pointer to psoc object
  872. *
  873. * Return: is_ap_prot_enabled flag
  874. */
  875. bool wlan_mlme_is_ap_prot_enabled(struct wlan_objmgr_psoc *psoc);
  876. /**
  877. * wlan_mlme_get_ap_protection_mode() - Get ap_protection_mode value
  878. * @psoc: pointer to psoc object
  879. * @value: pointer to the value which needs to be filled for the caller
  880. *
  881. * Return: QDF Status
  882. */
  883. QDF_STATUS wlan_mlme_get_ap_protection_mode(struct wlan_objmgr_psoc *psoc,
  884. uint16_t *value);
  885. /**
  886. * wlan_mlme_is_ap_obss_prot_enabled() - Get ap_obss_protection is
  887. * enabled/disabled
  888. * @psoc: pointer to psoc object
  889. * @value: pointer to the value which needs to be filled for the caller
  890. *
  891. * Return: QDF Status
  892. */
  893. QDF_STATUS wlan_mlme_is_ap_obss_prot_enabled(struct wlan_objmgr_psoc *psoc,
  894. bool *value);
  895. /**
  896. * wlan_mlme_get_rts_threshold() - Get the RTS threshold config
  897. * @psoc: pointer to psoc object
  898. * @value: pointer to the value which will be filled for the caller
  899. *
  900. * Return: QDF Status
  901. */
  902. QDF_STATUS wlan_mlme_get_rts_threshold(struct wlan_objmgr_psoc *psoc,
  903. uint32_t *value);
  904. /**
  905. * wlan_mlme_set_rts_threshold() - Set the RTS threshold config
  906. * @psoc: pointer to psoc object
  907. * @value: Value that needs to be set from the caller
  908. *
  909. * Return: QDF Status
  910. */
  911. QDF_STATUS wlan_mlme_set_rts_threshold(struct wlan_objmgr_psoc *psoc,
  912. uint32_t value);
  913. /**
  914. * wlan_mlme_get_frag_threshold() - Get the Fragmentation threshold
  915. * config
  916. * @psoc: pointer to psoc object
  917. * @value: pointer to the value which will be filled for the caller
  918. *
  919. * Return: QDF Status
  920. */
  921. QDF_STATUS wlan_mlme_get_frag_threshold(struct wlan_objmgr_psoc *psoc,
  922. uint32_t *value);
  923. /**
  924. * wlan_mlme_set_frag_threshold() - Set the Fragmentation threshold
  925. * config
  926. * @psoc: pointer to psoc object
  927. * @value: Value that needs to be set from the caller
  928. *
  929. * Return: QDF Status
  930. */
  931. QDF_STATUS wlan_mlme_set_frag_threshold(struct wlan_objmgr_psoc *psoc,
  932. uint32_t value);
  933. /**
  934. * wlan_mlme_get_fils_enabled_info() - Get the fils enable info for driver
  935. * @psoc: pointer to psoc object
  936. * @value: pointer to the value which will be filled for the caller
  937. *
  938. * Return: QDF Status
  939. */
  940. QDF_STATUS wlan_mlme_get_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  941. bool *value);
  942. /**
  943. * wlan_mlme_set_fils_enabled_info() - Set the fils enable info for driver
  944. * @psoc: pointer to psoc object
  945. * @value: value that needs to be set from the caller
  946. *
  947. * Return: QDF Status
  948. */
  949. QDF_STATUS wlan_mlme_set_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  950. bool value);
  951. /**
  952. * wlan_mlme_get_tl_delayed_trgr_frm_int() - Get delay interval(in ms)
  953. * of UAPSD auto trigger
  954. * @psoc: pointer to psoc object
  955. * @value: Value that needs to be set from the caller
  956. *
  957. * Return: None
  958. */
  959. void wlan_mlme_get_tl_delayed_trgr_frm_int(struct wlan_objmgr_psoc *psoc,
  960. uint32_t *value);
  961. /**
  962. * wlan_mlme_get_wmm_dir_ac_vi() - Get TSPEC direction
  963. * for VI
  964. * @psoc: pointer to psoc object
  965. * @value: Value that needs to be set from the caller
  966. *
  967. * Return: QDF Status
  968. */
  969. QDF_STATUS
  970. wlan_mlme_get_wmm_dir_ac_vi(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  971. /**
  972. * wlan_mlme_get_wmm_nom_msdu_size_ac_vi() - Get normal
  973. * MSDU size for VI
  974. * @psoc: pointer to psoc object
  975. * @value: Value that needs to be set from the caller
  976. *
  977. * Return: QDF Status
  978. */
  979. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_vi(struct wlan_objmgr_psoc *psoc,
  980. uint16_t *value);
  981. /**
  982. * wlan_mlme_get_wmm_mean_data_rate_ac_vi() - mean data
  983. * rate for VI
  984. * @psoc: pointer to psoc object
  985. * @value: Value that needs to be set from the caller
  986. *
  987. * Return: QDF Status
  988. */
  989. QDF_STATUS
  990. wlan_mlme_get_wmm_mean_data_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  991. uint32_t *value);
  992. /**
  993. * wlan_mlme_get_wmm_min_phy_rate_ac_vi() - min PHY
  994. * rate for VI
  995. * @psoc: pointer to psoc object
  996. * @value: Value that needs to be set from the caller
  997. *
  998. * Return: QDF Status
  999. */
  1000. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  1001. uint32_t *value);
  1002. /**
  1003. * wlan_mlme_get_wmm_sba_ac_vi() - surplus bandwidth
  1004. * allowance for VI
  1005. * @psoc: pointer to psoc object
  1006. * @value: Value that needs to be set from the caller
  1007. *
  1008. * Return: QDF Status
  1009. */
  1010. QDF_STATUS
  1011. wlan_mlme_get_wmm_sba_ac_vi(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1012. /**
  1013. * wlan_mlme_get_wmm_uapsd_vi_srv_intv() - Get Uapsd service
  1014. * interval for video
  1015. * @psoc: pointer to psoc object
  1016. * @value: pointer to the value which will be filled for the caller
  1017. *
  1018. * Return: QDF Status
  1019. */
  1020. QDF_STATUS
  1021. wlan_mlme_get_wmm_uapsd_vi_srv_intv(struct wlan_objmgr_psoc *psoc,
  1022. uint32_t *value);
  1023. /**
  1024. * wlan_mlme_get_wmm_uapsd_vi_sus_intv() - Get Uapsd suspension
  1025. * interval for video
  1026. * @psoc: pointer to psoc object
  1027. * @value: pointer to the value which will be filled for the caller
  1028. *
  1029. * Return: QDF Status
  1030. */
  1031. QDF_STATUS
  1032. wlan_mlme_get_wmm_uapsd_vi_sus_intv(struct wlan_objmgr_psoc *psoc,
  1033. uint32_t *value);
  1034. /**
  1035. * wlan_mlme_get_wmm_dir_ac_be() - Get TSPEC direction
  1036. * for BE
  1037. * @psoc: pointer to psoc object
  1038. * @value: Value that needs to be set from the caller
  1039. *
  1040. * Return: QDF Status
  1041. */
  1042. QDF_STATUS
  1043. wlan_mlme_get_wmm_dir_ac_be(struct wlan_objmgr_psoc *psoc,
  1044. uint8_t *value);
  1045. /**
  1046. * wlan_mlme_get_wmm_nom_msdu_size_ac_be() - Get normal
  1047. * MSDU size for BE
  1048. * @psoc: pointer to psoc object
  1049. * @value: Value that needs to be set from the caller
  1050. *
  1051. * Return: QDF Status
  1052. */
  1053. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_be(struct wlan_objmgr_psoc *psoc,
  1054. uint16_t *value);
  1055. /**
  1056. * wlan_mlme_get_wmm_mean_data_rate_ac_be() - mean data
  1057. * rate for BE
  1058. * @psoc: pointer to psoc object
  1059. * @value: Value that needs to be set from the caller
  1060. *
  1061. * Return: QDF Status
  1062. */
  1063. QDF_STATUS wlan_mlme_get_wmm_mean_data_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  1064. uint32_t *value);
  1065. /**
  1066. * wlan_mlme_get_wmm_min_phy_rate_ac_be() - min PHY
  1067. * rate for BE
  1068. * @psoc: pointer to psoc object
  1069. * @value: Value that needs to be set from the caller
  1070. *
  1071. * Return: QDF Status
  1072. */
  1073. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  1074. uint32_t *value);
  1075. /**
  1076. * wlan_mlme_get_wmm_sba_ac_be() - surplus bandwidth
  1077. * allowance for BE
  1078. * @psoc: pointer to psoc object
  1079. * @value: Value that needs to be set from the caller
  1080. *
  1081. * Return: QDF Status
  1082. */
  1083. QDF_STATUS
  1084. wlan_mlme_get_wmm_sba_ac_be(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1085. /**
  1086. * wlan_mlme_get_wmm_uapsd_be_srv_intv() - Get Uapsd service
  1087. * interval for BE
  1088. * @psoc: pointer to psoc object
  1089. * @value: pointer to the value which will be filled for the caller
  1090. *
  1091. * Return: QDF Status
  1092. */
  1093. QDF_STATUS
  1094. wlan_mlme_get_wmm_uapsd_be_srv_intv(struct wlan_objmgr_psoc *psoc,
  1095. uint32_t *value);
  1096. /**
  1097. * wlan_mlme_get_wmm_uapsd_be_sus_intv() - Get Uapsd suspension
  1098. * interval for BE
  1099. * @psoc: pointer to psoc object
  1100. * @value: pointer to the value which will be filled for the caller
  1101. *
  1102. * Return: QDF Status
  1103. */
  1104. QDF_STATUS
  1105. wlan_mlme_get_wmm_uapsd_be_sus_intv(struct wlan_objmgr_psoc *psoc,
  1106. uint32_t *value);
  1107. /**
  1108. * wlan_mlme_get_wmm_dir_ac_bk() - Get TSPEC direction
  1109. * for BK
  1110. * @psoc: pointer to psoc object
  1111. * @value: Value that needs to be set from the caller
  1112. *
  1113. * Return: QDF Status
  1114. */
  1115. QDF_STATUS
  1116. wlan_mlme_get_wmm_dir_ac_bk(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1117. /**
  1118. * wlan_mlme_get_wmm_nom_msdu_size_ac_bk() - Get normal
  1119. * MSDU size for BK
  1120. * @psoc: pointer to psoc object
  1121. * @value: Value that needs to be set from the caller
  1122. *
  1123. * Return: QDF Status
  1124. */
  1125. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_bk(struct wlan_objmgr_psoc *psoc,
  1126. uint16_t *value);
  1127. /**
  1128. * wlan_mlme_get_wmm_mean_data_rate_ac_bk() - mean data
  1129. * rate for BK
  1130. * @psoc: pointer to psoc object
  1131. * @value: Value that needs to be set from the caller
  1132. *
  1133. * Return: QDF Status
  1134. */
  1135. QDF_STATUS wlan_mlme_get_wmm_mean_data_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  1136. uint32_t *value);
  1137. /**
  1138. * wlan_mlme_get_wmm_min_phy_rate_ac_bk() - min PHY
  1139. * rate for BK
  1140. * @psoc: pointer to psoc object
  1141. * @value: Value that needs to be set from the caller
  1142. *
  1143. * Return: QDF Status
  1144. */
  1145. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  1146. uint32_t *value);
  1147. /**
  1148. * wlan_mlme_get_wmm_sba_ac_bk() - surplus bandwidth
  1149. * allowance for BE
  1150. * @psoc: pointer to psoc object
  1151. * @value: Value that needs to be set from the caller
  1152. *
  1153. * Return: QDF Status
  1154. */
  1155. QDF_STATUS
  1156. wlan_mlme_get_wmm_sba_ac_bk(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1157. /**
  1158. * wlan_mlme_get_wmm_uapsd_bk_srv_intv() - Get Uapsd service
  1159. * interval for BK
  1160. * @psoc: pointer to psoc object
  1161. * @value: pointer to the value which will be filled for the caller
  1162. *
  1163. * Return: QDF Status
  1164. */
  1165. QDF_STATUS
  1166. wlan_mlme_get_wmm_uapsd_bk_srv_intv(struct wlan_objmgr_psoc *psoc,
  1167. uint32_t *value);
  1168. /**
  1169. * wlan_mlme_get_wmm_uapsd_bk_sus_intv() - Get Uapsd suspension
  1170. * interval for BK
  1171. * @psoc: pointer to psoc object
  1172. * @value: pointer to the value which will be filled for the caller
  1173. *
  1174. * Return: QDF Status
  1175. */
  1176. QDF_STATUS
  1177. wlan_mlme_get_wmm_uapsd_bk_sus_intv(struct wlan_objmgr_psoc *psoc,
  1178. uint32_t *value);
  1179. /**
  1180. * wlan_mlme_get_wmm_mode() - Enable WMM feature
  1181. * @psoc: pointer to psoc object
  1182. * @value: pointer to the value which will be filled for the caller
  1183. *
  1184. * Return: QDF Status
  1185. */
  1186. QDF_STATUS
  1187. wlan_mlme_get_wmm_mode(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1188. /**
  1189. * wlan_mlme_get_80211e_is_enabled() - Enable 802.11e feature
  1190. * @psoc: pointer to psoc object
  1191. * @value: pointer to the value which will be filled for the caller
  1192. *
  1193. * Return: QDF Status
  1194. */
  1195. QDF_STATUS
  1196. wlan_mlme_get_80211e_is_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1197. /**
  1198. * wlan_mlme_get_wmm_uapsd_mask() - setup U-APSD mask for ACs
  1199. * @psoc: pointer to psoc object
  1200. * @value: pointer to the value which will be filled for the caller
  1201. *
  1202. * Return: QDF Status
  1203. */
  1204. QDF_STATUS
  1205. wlan_mlme_get_wmm_uapsd_mask(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1206. #ifdef FEATURE_WLAN_ESE
  1207. /**
  1208. * wlan_mlme_get_inactivity_interval() - Infra Inactivity Interval
  1209. * @psoc: pointer to psoc object
  1210. * @value: pointer to the value which will be filled for the caller
  1211. *
  1212. * Return: None
  1213. */
  1214. void
  1215. wlan_mlme_get_inactivity_interval(struct wlan_objmgr_psoc *psoc,
  1216. uint32_t *value);
  1217. #endif
  1218. /**
  1219. * wlan_mlme_get_is_ts_burst_size_enable() - Get TS burst size flag
  1220. * @psoc: pointer to psoc object
  1221. * @value: pointer to the value which will be filled for the caller
  1222. *
  1223. * Return: None
  1224. */
  1225. void wlan_mlme_get_is_ts_burst_size_enable(struct wlan_objmgr_psoc *psoc,
  1226. bool *value);
  1227. /**
  1228. * wlan_mlme_get_ts_info_ack_policy() - Get TS ack policy
  1229. * @psoc: pointer to psoc object
  1230. * @value: pointer to the value which will be filled for the caller
  1231. *
  1232. * Return: None
  1233. */
  1234. void wlan_mlme_get_ts_info_ack_policy(struct wlan_objmgr_psoc *psoc,
  1235. enum mlme_ts_info_ack_policy *value);
  1236. /**
  1237. * wlan_mlme_get_ts_acm_value_for_ac() - Get ACM value for AC
  1238. * @psoc: pointer to psoc object
  1239. * @value: pointer to the value which will be filled for the caller
  1240. *
  1241. * Return: QDF Status
  1242. */
  1243. QDF_STATUS
  1244. wlan_mlme_get_ts_acm_value_for_ac(struct wlan_objmgr_psoc *psoc, bool *value);
  1245. /**
  1246. * wlan_mlme_get_wmm_dir_ac_vo() - Get TSPEC direction
  1247. * for VO
  1248. * @psoc: pointer to psoc object
  1249. * @value: Value that needs to be set from the caller
  1250. *
  1251. * Return: QDF Status
  1252. */
  1253. QDF_STATUS
  1254. wlan_mlme_get_wmm_dir_ac_vo(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1255. /**
  1256. * wlan_mlme_get_wmm_nom_msdu_size_ac_vo() - Get normal
  1257. * MSDU size for VO
  1258. * @psoc: pointer to psoc object
  1259. * @value: Value that needs to be set from the caller
  1260. *
  1261. * Return: QDF Status
  1262. */
  1263. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_vo(struct wlan_objmgr_psoc *psoc,
  1264. uint16_t *value);
  1265. /**
  1266. * wlan_mlme_get_wmm_mean_data_rate_ac_vo() - mean data rate for VO
  1267. * @psoc: pointer to psoc object
  1268. * @value: Value that needs to be set from the caller
  1269. *
  1270. * Return: QDF Status
  1271. */
  1272. QDF_STATUS wlan_mlme_get_wmm_mean_data_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  1273. uint32_t *value);
  1274. /**
  1275. * wlan_mlme_get_wmm_min_phy_rate_ac_vo() - min PHY
  1276. * rate for VO
  1277. * @psoc: pointer to psoc object
  1278. * @value: Value that needs to be set from the caller
  1279. *
  1280. * Return: QDF Status
  1281. */
  1282. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  1283. uint32_t *value);
  1284. /**
  1285. * wlan_mlme_get_wmm_sba_ac_vo() - surplus bandwidth allowance for VO
  1286. * @psoc: pointer to psoc object
  1287. * @value: Value that needs to be set from the caller
  1288. *
  1289. * Return: QDF Status
  1290. */
  1291. QDF_STATUS
  1292. wlan_mlme_get_wmm_sba_ac_vo(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1293. /**
  1294. * wlan_mlme_set_enable_bcast_probe_rsp() - Set enable bcast probe resp info
  1295. * @psoc: pointer to psoc object
  1296. * @value: value that needs to be set from the caller
  1297. *
  1298. * Return: QDF Status
  1299. */
  1300. QDF_STATUS wlan_mlme_set_enable_bcast_probe_rsp(struct wlan_objmgr_psoc *psoc,
  1301. bool value);
  1302. /**
  1303. * wlan_mlme_get_wmm_uapsd_vo_srv_intv() - Get Uapsd service
  1304. * interval for voice
  1305. * @psoc: pointer to psoc object
  1306. * @value: pointer to the value which will be filled for the caller
  1307. *
  1308. * Return: QDF Status
  1309. */
  1310. QDF_STATUS
  1311. wlan_mlme_get_wmm_uapsd_vo_srv_intv(struct wlan_objmgr_psoc *psoc,
  1312. uint32_t *value);
  1313. /**
  1314. * wlan_mlme_get_wmm_uapsd_vo_sus_intv() - Get Uapsd suspension
  1315. * interval for voice
  1316. * @psoc: pointer to psoc object
  1317. * @value: pointer to the value which will be filled for the caller
  1318. *
  1319. * Return: QDF Status
  1320. */
  1321. QDF_STATUS
  1322. wlan_mlme_get_wmm_uapsd_vo_sus_intv(struct wlan_objmgr_psoc *psoc,
  1323. uint32_t *value);
  1324. /**
  1325. * wlan_mlme_cfg_get_vht_max_mpdu_len() - gets vht max mpdu length from cfg item
  1326. * @psoc: psoc context
  1327. * @value: pointer to get required data
  1328. *
  1329. * Return: QDF_STATUS
  1330. */
  1331. QDF_STATUS
  1332. wlan_mlme_cfg_get_vht_max_mpdu_len(struct wlan_objmgr_psoc *psoc,
  1333. uint8_t *value);
  1334. /**
  1335. * wlan_mlme_cfg_set_vht_max_mpdu_len() - sets vht max mpdu length into cfg item
  1336. * @psoc: psoc context
  1337. * @value: data to be set
  1338. *
  1339. * Return: QDF_STATUS
  1340. */
  1341. QDF_STATUS
  1342. wlan_mlme_cfg_set_vht_max_mpdu_len(struct wlan_objmgr_psoc *psoc,
  1343. uint8_t value);
  1344. /**
  1345. * wlan_mlme_cfg_get_vht_chan_width() - gets vht supported channel width from
  1346. * cfg item
  1347. * @psoc: psoc context
  1348. * @value: pointer to get required data
  1349. *
  1350. * Return: QDF_STATUS
  1351. */
  1352. QDF_STATUS wlan_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1353. uint8_t *value);
  1354. /**
  1355. * wlan_mlme_cfg_set_vht_chan_width() - sets vht supported channel width into
  1356. * cfg item
  1357. * @psoc: psoc context
  1358. * @value: data to be set
  1359. *
  1360. * Return: QDF_STATUS
  1361. */
  1362. QDF_STATUS wlan_mlme_cfg_set_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1363. uint8_t value);
  1364. /**
  1365. * wlan_mlme_cfg_get_vht_chan_width() - sets vht supported channel width into
  1366. * cfg item
  1367. * @psoc: psoc context
  1368. * @value: data to be set
  1369. *
  1370. * Return: QDF_STATUS
  1371. */
  1372. QDF_STATUS wlan_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1373. uint8_t *value);
  1374. /**
  1375. * wlan_mlme_cfg_get_vht_ldpc_coding_cap() - gets vht ldpc coding cap from
  1376. * cfg item
  1377. * @psoc: psoc context
  1378. * @value: pointer to get required data
  1379. *
  1380. * Return: QDF_STATUS
  1381. */
  1382. QDF_STATUS wlan_mlme_cfg_get_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1383. bool *value);
  1384. /**
  1385. * wlan_mlme_cfg_set_vht_ldpc_coding_cap() - sets vht ldpc coding cap into
  1386. * cfg item
  1387. * @psoc: psoc context
  1388. * @value: data to be set
  1389. *
  1390. * Return: QDF_STATUS
  1391. */
  1392. QDF_STATUS wlan_mlme_cfg_set_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1393. bool value);
  1394. /**
  1395. * wlan_mlme_cfg_get_vht_short_gi_80mhz() - gets vht short gi 80MHz from
  1396. * cfg item
  1397. * @psoc: psoc context
  1398. * @value: pointer to get required data
  1399. *
  1400. * Return: QDF_STATUS
  1401. */
  1402. QDF_STATUS wlan_mlme_cfg_get_vht_short_gi_80mhz(struct wlan_objmgr_psoc *psoc,
  1403. bool *value);
  1404. /**
  1405. * wlan_mlme_cfg_set_vht_short_gi_80mhz() - sets vht short gi 80MHz into
  1406. * cfg item
  1407. * @psoc: psoc context
  1408. * @value: data to be set
  1409. *
  1410. * Return: QDF_STATUS
  1411. */
  1412. QDF_STATUS wlan_mlme_cfg_set_vht_short_gi_80mhz(struct wlan_objmgr_psoc *psoc,
  1413. bool value);
  1414. /**
  1415. * wlan_mlme_cfg_get_short_gi_160_mhz() - gets vht short gi 160MHz from
  1416. * cfg item
  1417. * @psoc: psoc context
  1418. * @value: pointer to get required data
  1419. *
  1420. * Return: QDF_STATUS
  1421. */
  1422. QDF_STATUS
  1423. wlan_mlme_cfg_get_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc, bool *value);
  1424. /**
  1425. * wlan_mlme_cfg_set_short_gi_160_mhz() - sets vht short gi 160MHz into
  1426. * cfg item
  1427. * @psoc: psoc context
  1428. * @value: data to be set
  1429. *
  1430. * Return: QDF_STATUS
  1431. */
  1432. QDF_STATUS
  1433. wlan_mlme_cfg_set_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc, bool value);
  1434. /**
  1435. * wlan_mlme_cfg_get_vht_tx_stbc() - gets vht tx stbc from
  1436. * cfg item
  1437. * @psoc: psoc context
  1438. * @value: pointer to get required data
  1439. *
  1440. * Return: QDF_STATUS
  1441. */
  1442. QDF_STATUS
  1443. wlan_mlme_cfg_get_vht_tx_stbc(struct wlan_objmgr_psoc *psoc, bool *value);
  1444. /**
  1445. * wlan_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1446. * cfg item
  1447. * @psoc: psoc context
  1448. * @value: pointer to get required data
  1449. *
  1450. * Return: QDF_STATUS
  1451. */
  1452. QDF_STATUS
  1453. wlan_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc, bool *value);
  1454. /**
  1455. * wlan_mlme_cfg_set_vht_tx_stbc() - sets vht tx stbc into
  1456. * cfg item
  1457. * @psoc: psoc context
  1458. * @value: data to be set
  1459. *
  1460. * Return: QDF_STATUS
  1461. */
  1462. QDF_STATUS
  1463. wlan_mlme_cfg_set_vht_tx_stbc(struct wlan_objmgr_psoc *psoc, bool value);
  1464. /**
  1465. * wlan_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1466. * cfg item
  1467. * @psoc: psoc context
  1468. * @value: pointer to get required data
  1469. *
  1470. * Return: QDF_STATUS
  1471. */
  1472. QDF_STATUS
  1473. wlan_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc, bool *value);
  1474. /**
  1475. * wlan_mlme_cfg_set_vht_rx_stbc() - sets vht rx stbc into
  1476. * cfg item
  1477. * @psoc: psoc context
  1478. * @value: data to be set
  1479. *
  1480. * Return: QDF_STATUS
  1481. */
  1482. QDF_STATUS
  1483. wlan_mlme_cfg_set_vht_rx_stbc(struct wlan_objmgr_psoc *psoc, bool value);
  1484. /**
  1485. * wlan_mlme_cfg_get_vht_su_bformer() - gets vht su beam former cap from
  1486. * cfg item
  1487. * @psoc: psoc context
  1488. * @value: pointer to get required data
  1489. *
  1490. * Return: QDF_STATUS
  1491. */
  1492. QDF_STATUS
  1493. wlan_mlme_cfg_get_vht_su_bformer(struct wlan_objmgr_psoc *psoc, bool *value);
  1494. /**
  1495. * wlan_mlme_cfg_set_vht_su_bformer() - sets vht su beam former cap into
  1496. * cfg item
  1497. * @psoc: psoc context
  1498. * @value: data to be set
  1499. *
  1500. * Return: QDF_STATUS
  1501. */
  1502. QDF_STATUS
  1503. wlan_mlme_cfg_set_vht_su_bformer(struct wlan_objmgr_psoc *psoc, bool value);
  1504. /**
  1505. * wlan_mlme_cfg_set_vht_su_bformee() - sets vht su beam formee cap into
  1506. * cfg item
  1507. * @psoc: psoc context
  1508. * @value: data to be set
  1509. *
  1510. * Return: QDF_STATUS
  1511. */
  1512. QDF_STATUS
  1513. wlan_mlme_cfg_set_vht_su_bformee(struct wlan_objmgr_psoc *psoc, bool value);
  1514. /**
  1515. * wlan_mlme_cfg_set_vht_tx_bfee_ant_supp() - sets vht Beamformee antenna
  1516. * support cap
  1517. * into cfg item
  1518. * @psoc: psoc context
  1519. * @value: data to be set
  1520. *
  1521. * Return: QDF_STATUS
  1522. */
  1523. QDF_STATUS wlan_mlme_cfg_set_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1524. uint8_t value);
  1525. /**
  1526. * wlan_mlme_cfg_get_vht_tx_bfee_ant_supp() - Gets vht Beamformee antenna
  1527. * support cap into cfg item
  1528. *
  1529. * @psoc: psoc context
  1530. * @value: data to be set
  1531. *
  1532. * Return: QDF_STATUS
  1533. */
  1534. QDF_STATUS wlan_mlme_cfg_get_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1535. uint8_t *value);
  1536. /**
  1537. * wlan_mlme_cfg_set_vht_num_sounding_dim() - sets vht no of sounding dimensions
  1538. * into cfg item
  1539. * @psoc: psoc context
  1540. * @value: data to be set
  1541. *
  1542. * Return: QDF_STATUS
  1543. */
  1544. QDF_STATUS wlan_mlme_cfg_set_vht_num_sounding_dim(struct wlan_objmgr_psoc *psoc,
  1545. uint8_t value);
  1546. /**
  1547. * wlan_mlme_cfg_get_vht_mu_bformer() - gets vht mu beam former cap from
  1548. * cfg item
  1549. * @psoc: psoc context
  1550. * @value: pointer to get required data
  1551. *
  1552. * Return: QDF_STATUS
  1553. */
  1554. QDF_STATUS
  1555. wlan_mlme_cfg_get_vht_mu_bformer(struct wlan_objmgr_psoc *psoc, bool *value);
  1556. /**
  1557. * wlan_mlme_cfg_set_vht_mu_bformer() - sets vht mu beam former cap into
  1558. * cfg item
  1559. * @psoc: psoc context
  1560. * @value: data to be set
  1561. *
  1562. * Return: QDF_STATUS
  1563. */
  1564. QDF_STATUS
  1565. wlan_mlme_cfg_set_vht_mu_bformer(struct wlan_objmgr_psoc *psoc, bool value);
  1566. /**
  1567. * wlan_mlme_cfg_get_vht_mu_bformee() - gets vht mu beam formee cap from
  1568. * cfg item
  1569. * @psoc: psoc context
  1570. * @value: pointer to get required data
  1571. *
  1572. * Return: QDF_STATUS
  1573. */
  1574. QDF_STATUS
  1575. wlan_mlme_cfg_get_vht_mu_bformee(struct wlan_objmgr_psoc *psoc, bool *value);
  1576. /**
  1577. * wlan_mlme_cfg_set_vht_mu_bformee() - sets vht mu beam formee cap into
  1578. * cfg item
  1579. * @psoc: psoc context
  1580. * @value: data to be set
  1581. *
  1582. * Return: QDF_STATUS
  1583. */
  1584. QDF_STATUS
  1585. wlan_mlme_cfg_set_vht_mu_bformee(struct wlan_objmgr_psoc *psoc, bool value);
  1586. /**
  1587. * wlan_mlme_cfg_get_vht_txop_ps() - gets vht tx ops ps cap from
  1588. * cfg item
  1589. * @psoc: psoc context
  1590. * @value: pointer to get required data
  1591. *
  1592. * Return: QDF_STATUS
  1593. */
  1594. QDF_STATUS
  1595. wlan_mlme_cfg_get_vht_txop_ps(struct wlan_objmgr_psoc *psoc, bool *value);
  1596. /**
  1597. * wlan_mlme_cfg_set_vht_txop_ps() - sets vht tx ops ps cap into
  1598. * cfg item
  1599. * @psoc: psoc context
  1600. * @value: data to be set
  1601. *
  1602. * Return: QDF_STATUS
  1603. */
  1604. QDF_STATUS
  1605. wlan_mlme_cfg_set_vht_txop_ps(struct wlan_objmgr_psoc *psoc, bool value);
  1606. /**
  1607. * wlan_mlme_cfg_get_vht_ampdu_len_exp() - gets vht max AMPDU length exponent from
  1608. * cfg item
  1609. * @psoc: psoc context
  1610. * @value: pointer to get required data
  1611. *
  1612. * Return: QDF_STATUS
  1613. */
  1614. QDF_STATUS
  1615. wlan_mlme_cfg_get_vht_ampdu_len_exp(struct wlan_objmgr_psoc *psoc,
  1616. uint8_t *value);
  1617. /**
  1618. * wlan_mlme_cfg_set_vht_ampdu_len_exp() - sets vht max AMPDU length exponent into
  1619. * cfg item
  1620. * @psoc: psoc context
  1621. * @value: data to be set
  1622. *
  1623. * Return: QDF_STATUS
  1624. */
  1625. QDF_STATUS
  1626. wlan_mlme_cfg_set_vht_ampdu_len_exp(struct wlan_objmgr_psoc *psoc,
  1627. uint8_t value);
  1628. /**
  1629. * wlan_mlme_cfg_get_vht_rx_mcs_map() - gets vht rx mcs map from
  1630. * cfg item
  1631. * @psoc: psoc context
  1632. * @value: pointer to get required data
  1633. *
  1634. * Return: QDF_STATUS
  1635. */
  1636. QDF_STATUS wlan_mlme_cfg_get_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1637. uint32_t *value);
  1638. /**
  1639. * wlan_mlme_cfg_set_vht_rx_mcs_map() - sets rx mcs map into
  1640. * cfg item
  1641. * @psoc: psoc context
  1642. * @value: data to be set
  1643. *
  1644. * Return: QDF_STATUS
  1645. */
  1646. QDF_STATUS
  1647. wlan_mlme_cfg_set_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc, uint32_t value);
  1648. /**
  1649. * wlan_mlme_cfg_get_vht_tx_mcs_map() - gets vht tx mcs map from
  1650. * cfg item
  1651. * @psoc: psoc context
  1652. * @value: pointer to get required data
  1653. *
  1654. * Return: QDF_STATUS
  1655. */
  1656. QDF_STATUS wlan_mlme_cfg_get_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1657. uint32_t *value);
  1658. /**
  1659. * wlan_mlme_cfg_set_vht_tx_mcs_map() - sets tx mcs map into
  1660. * cfg item
  1661. * @psoc: psoc context
  1662. * @value: data to be set
  1663. *
  1664. * Return: QDF_STATUS
  1665. */
  1666. QDF_STATUS wlan_mlme_cfg_set_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1667. uint32_t value);
  1668. /**
  1669. * wlan_mlme_cfg_set_vht_rx_supp_data_rate() - sets rx supported data rate into
  1670. * cfg item
  1671. * @psoc: psoc context
  1672. * @value: data to be set
  1673. *
  1674. * Return: QDF_STATUS
  1675. */
  1676. QDF_STATUS
  1677. wlan_mlme_cfg_set_vht_rx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1678. uint32_t value);
  1679. /**
  1680. * wlan_mlme_cfg_set_vht_tx_supp_data_rate() - sets tx supported data rate into
  1681. * cfg item
  1682. * @psoc: psoc context
  1683. * @value: data to be set
  1684. *
  1685. * Return: QDF_STATUS
  1686. */
  1687. QDF_STATUS
  1688. wlan_mlme_cfg_set_vht_tx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1689. uint32_t value);
  1690. /**
  1691. * wlan_mlme_cfg_get_vht_basic_mcs_set() - gets basic mcs set from
  1692. * cfg item
  1693. * @psoc: psoc context
  1694. * @value: data to be set
  1695. *
  1696. * Return: QDF_STATUS
  1697. */
  1698. QDF_STATUS
  1699. wlan_mlme_cfg_get_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1700. uint32_t *value);
  1701. /**
  1702. * wlan_mlme_cfg_set_vht_basic_mcs_set() - sets basic mcs set into
  1703. * cfg item
  1704. * @psoc: psoc context
  1705. * @value: data to be set
  1706. *
  1707. * Return: QDF_STATUS
  1708. */
  1709. QDF_STATUS
  1710. wlan_mlme_cfg_set_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1711. uint32_t value);
  1712. /**
  1713. * wlan_mlme_get_vht_enable_tx_bf() - Get vht enable tx bf
  1714. * @psoc: psoc context
  1715. * @value: data to be set
  1716. *
  1717. * Return: QDF_STATUS
  1718. */
  1719. QDF_STATUS
  1720. wlan_mlme_get_vht_enable_tx_bf(struct wlan_objmgr_psoc *psoc, bool *value);
  1721. /**
  1722. * wlan_mlme_get_vht_tx_su_beamformer() - VHT enable tx su beamformer
  1723. * @psoc: psoc context
  1724. * @value: data to be set
  1725. *
  1726. * Return: QDF_STATUS
  1727. */
  1728. QDF_STATUS
  1729. wlan_mlme_get_vht_tx_su_beamformer(struct wlan_objmgr_psoc *psoc, bool *value);
  1730. /**
  1731. * wlan_mlme_get_vht_channel_width() - gets Channel width capability
  1732. * for 11ac
  1733. * @psoc: psoc context
  1734. * @value: data to be set
  1735. *
  1736. * Return: QDF_STATUS
  1737. */
  1738. QDF_STATUS wlan_mlme_get_vht_channel_width(struct wlan_objmgr_psoc *psoc,
  1739. uint8_t *value);
  1740. /**
  1741. * wlan_mlme_get_vht_rx_mcs_8_9() - VHT Rx MCS capability for 1x1 mode
  1742. * @psoc: psoc context
  1743. * @value: data to be set
  1744. *
  1745. * Return: QDF_STATUS
  1746. */
  1747. QDF_STATUS wlan_mlme_get_vht_rx_mcs_8_9(struct wlan_objmgr_psoc *psoc,
  1748. uint8_t *value);
  1749. /**
  1750. * wlan_mlme_get_vht_tx_mcs_8_9() - VHT Tx MCS capability for 1x1 mode
  1751. * @psoc: psoc context
  1752. * @value: data to be set
  1753. *
  1754. * Return: QDF_STATUS
  1755. */
  1756. QDF_STATUS
  1757. wlan_mlme_get_vht_tx_mcs_8_9(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1758. /**
  1759. * wlan_mlme_get_vht_rx_mcs_2x2() - VHT Rx MCS capability for 2x2 mode
  1760. * @psoc: psoc context
  1761. * @value: data to be set
  1762. *
  1763. * Return: QDF_STATUS
  1764. */
  1765. QDF_STATUS wlan_mlme_get_vht_rx_mcs_2x2(struct wlan_objmgr_psoc *psoc,
  1766. uint8_t *value);
  1767. /**
  1768. * wlan_mlme_get_vht_tx_mcs_2x2() - VHT Tx MCS capability for 2x2 mode
  1769. * @psoc: psoc context
  1770. * @value: data to be set
  1771. *
  1772. * Return: QDF_STATUS
  1773. */
  1774. QDF_STATUS wlan_mlme_get_vht_tx_mcs_2x2(struct wlan_objmgr_psoc *psoc,
  1775. uint8_t *value);
  1776. /**
  1777. * wlan_mlme_get_vht20_mcs9() - Enables VHT MCS9 in 20M BW operation
  1778. * @psoc: psoc context
  1779. * @value: data to be set
  1780. *
  1781. * Return: QDF_STATUS
  1782. */
  1783. QDF_STATUS
  1784. wlan_mlme_get_vht20_mcs9(struct wlan_objmgr_psoc *psoc, bool *value);
  1785. /**
  1786. * wlan_mlme_get_srd_master_mode_for_vdev - Get SRD master mode for vdev
  1787. * @psoc: pointer to psoc object
  1788. * @vdev_opmode: vdev operating mode
  1789. * @value: pointer to the value which will be filled for the caller
  1790. *
  1791. * Return: QDF Status
  1792. */
  1793. QDF_STATUS
  1794. wlan_mlme_get_srd_master_mode_for_vdev(struct wlan_objmgr_psoc *psoc,
  1795. enum QDF_OPMODE vdev_opmode,
  1796. bool *value);
  1797. /**
  1798. * wlan_mlme_get_force_sap_enabled() - Get the value of force SAP enabled
  1799. * @psoc: psoc context
  1800. * @value: data to get
  1801. *
  1802. * Get the value of force SAP enabled
  1803. *
  1804. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1805. */
  1806. QDF_STATUS
  1807. wlan_mlme_get_force_sap_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1808. /**
  1809. * wlan_mlme_get_enable_dynamic_nss_chains_cfg() - API to get whether dynamic
  1810. * nss and chain config is enabled or not
  1811. * @psoc: psoc context
  1812. * @value: data to be set
  1813. *
  1814. * API to get whether dynamic nss and chain config is enabled or not
  1815. *
  1816. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1817. */
  1818. QDF_STATUS
  1819. wlan_mlme_get_enable_dynamic_nss_chains_cfg(struct wlan_objmgr_psoc *psoc,
  1820. bool *value);
  1821. /**
  1822. * wlan_mlme_get_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  1823. * @psoc: psoc context
  1824. * @value: data to be set
  1825. *
  1826. * Return: QDF_STATUS
  1827. */
  1828. QDF_STATUS
  1829. wlan_mlme_get_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool *value);
  1830. /**
  1831. * wlan_mlme_set_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  1832. * @psoc: psoc context
  1833. * @value: data to be set
  1834. *
  1835. * Return: QDF_STATUS
  1836. */
  1837. QDF_STATUS
  1838. wlan_mlme_set_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool value);
  1839. /**
  1840. * wlan_mlme_get_vht_enable_paid() - Enables/disables paid feature
  1841. * @psoc: psoc context
  1842. * @value: data to be set
  1843. *
  1844. * Return: QDF_STATUS
  1845. */
  1846. QDF_STATUS
  1847. wlan_mlme_get_vht_enable_paid(struct wlan_objmgr_psoc *psoc, bool *value);
  1848. /**
  1849. * wlan_mlme_get_vht_enable_gid() - Enables/disables VHT GID feature
  1850. * @psoc: psoc context
  1851. * @value: data to be set
  1852. *
  1853. * Return: QDF_STATUS
  1854. */
  1855. QDF_STATUS
  1856. wlan_mlme_get_vht_enable_gid(struct wlan_objmgr_psoc *psoc, bool *value);
  1857. /**
  1858. * wlan_mlme_get_vht_for_24ghz() - Enables/disables VHT for 24 ghz
  1859. * @psoc: psoc context
  1860. * @value: data to be set
  1861. *
  1862. * Return: QDF_STATUS
  1863. */
  1864. QDF_STATUS
  1865. wlan_mlme_get_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value);
  1866. /**
  1867. * wlan_mlme_set_vht_for_24ghz() - Enables/disables VHT for 24 ghz
  1868. * @psoc: psoc context
  1869. * @value: data to be set
  1870. *
  1871. * Return: QDF_STATUS
  1872. */
  1873. QDF_STATUS
  1874. wlan_mlme_set_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool value);
  1875. /**
  1876. * wlan_mlme_get_vendor_vht_for_24ghz() - nables/disables vendor VHT for 24 ghz
  1877. * @psoc: psoc context
  1878. * @value: data to be set
  1879. *
  1880. * Return: QDF_STATUS
  1881. */
  1882. QDF_STATUS
  1883. wlan_mlme_get_vendor_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value);
  1884. /**
  1885. * mlme_update_vht_cap() - update vht capabilities
  1886. * @psoc: psoc context
  1887. * @cfg: data to be set
  1888. *
  1889. * Return: QDF_STATUS
  1890. */
  1891. QDF_STATUS
  1892. mlme_update_vht_cap(struct wlan_objmgr_psoc *psoc, struct wma_tgt_vht_cap *cfg);
  1893. /**
  1894. * mlme_update_nss_vht_cap() - Update the number of spatial
  1895. * streams supported for vht
  1896. * @psoc: psoc context
  1897. *
  1898. * Return: QDF_STATUS
  1899. */
  1900. QDF_STATUS mlme_update_nss_vht_cap(struct wlan_objmgr_psoc *psoc);
  1901. /**
  1902. * wlan_mlme_is_sap_uapsd_enabled() - Get if SAP UAPSD is enabled/disabled
  1903. * @psoc: psoc context
  1904. * @value: value to be filled for caller
  1905. *
  1906. * Return: QDF_STATUS
  1907. */
  1908. QDF_STATUS wlan_mlme_is_sap_uapsd_enabled(struct wlan_objmgr_psoc *psoc,
  1909. bool *value);
  1910. /**
  1911. * wlan_mlme_set_sap_uapsd_flag() - Enable/Disable SAP UAPSD
  1912. * @psoc: psoc context
  1913. * @value: Enable/Disable control value for sap_uapsd_enabled field
  1914. *
  1915. * Return: QDF_STATUS
  1916. */
  1917. QDF_STATUS wlan_mlme_set_sap_uapsd_flag(struct wlan_objmgr_psoc *psoc,
  1918. bool value);
  1919. /**
  1920. * wlan_mlme_is_11h_enabled() - Get the 11h flag
  1921. * @psoc: psoc context
  1922. *
  1923. * Return: QDF_STATUS
  1924. */
  1925. QDF_STATUS
  1926. wlan_mlme_is_11h_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1927. /**
  1928. * wlan_mlme_set_11h_enabled() - Set the 11h flag
  1929. * @psoc: psoc context
  1930. *
  1931. * Return: QDF_STATUS
  1932. */
  1933. QDF_STATUS
  1934. wlan_mlme_set_11h_enabled(struct wlan_objmgr_psoc *psoc, bool value);
  1935. /**
  1936. * wlan_mlme_is_11d_enabled() - Get the 11d flag
  1937. * @psoc: psoc context
  1938. *
  1939. * Return: QDF_STATUS
  1940. */
  1941. QDF_STATUS
  1942. wlan_mlme_is_11d_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1943. /**
  1944. * wlan_mlme_set_11d_enabled() - Set the 11h flag
  1945. * @psoc: psoc context
  1946. *
  1947. * Return: QDF_STATUS
  1948. */
  1949. QDF_STATUS
  1950. wlan_mlme_set_11d_enabled(struct wlan_objmgr_psoc *psoc, bool value);
  1951. /**
  1952. * wlan_mlme_is_rf_test_mode_enabled() - Get the rf test mode flag
  1953. * @psoc: psoc context
  1954. * @value: Enable/Disable value ptr.
  1955. *
  1956. * Return: QDF_STATUS
  1957. */
  1958. QDF_STATUS
  1959. wlan_mlme_is_rf_test_mode_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1960. /**
  1961. * wlan_mlme_set_rf_test_mode_enabled() - Set the rf test mode flag
  1962. * @psoc: psoc context
  1963. * @value: Enable/Disable value.
  1964. *
  1965. * Return: QDF_STATUS
  1966. */
  1967. QDF_STATUS
  1968. wlan_mlme_set_rf_test_mode_enabled(struct wlan_objmgr_psoc *psoc, bool value);
  1969. /**
  1970. * wlan_mlme_get_sta_miracast_mcc_rest_time() - Get STA/MIRACAST MCC rest time
  1971. *
  1972. * @psoc: pointer to psoc object
  1973. * @value: value which needs to filled by API
  1974. *
  1975. * This API gives rest time to be used when STA and MIRACAST MCC conc happens
  1976. *
  1977. * Return: QDF_STATUS
  1978. */
  1979. QDF_STATUS
  1980. wlan_mlme_get_sta_miracast_mcc_rest_time(struct wlan_objmgr_psoc *psoc,
  1981. uint32_t *value);
  1982. /**
  1983. * wlan_mlme_get_sap_mcc_chnl_avoid() - Check if SAP MCC needs to be avoided
  1984. *
  1985. * @psoc: pointer to psoc object
  1986. * @value: value which needs to filled by API
  1987. *
  1988. * This API fetches the user setting to determine if SAP MCC with other persona
  1989. * to be avoided.
  1990. *
  1991. * Return: QDF_STATUS
  1992. */
  1993. QDF_STATUS
  1994. wlan_mlme_get_sap_mcc_chnl_avoid(struct wlan_objmgr_psoc *psoc,
  1995. uint8_t *value);
  1996. /**
  1997. * wlan_mlme_get_mcc_bcast_prob_resp() - Get broadcast probe rsp in MCC
  1998. *
  1999. * @psoc: pointer to psoc object
  2000. * @value: value which needs to filled by API
  2001. *
  2002. * To get INI value which helps to determe whether to enable/disable use of
  2003. * broadcast probe response to increase the detectability of SAP in MCC mode.
  2004. *
  2005. *
  2006. * Return: QDF_STATUS
  2007. */
  2008. QDF_STATUS
  2009. wlan_mlme_get_mcc_bcast_prob_resp(struct wlan_objmgr_psoc *psoc,
  2010. uint8_t *value);
  2011. /**
  2012. * wlan_mlme_get_mcc_rts_cts_prot() - To get RTS-CTS protection in MCC.
  2013. *
  2014. * @psoc: pointer to psoc object
  2015. * @value: value which needs to filled by API
  2016. *
  2017. * To get INI value which helps to determine whether to enable/disable
  2018. * use of long duration RTS-CTS protection when SAP goes off
  2019. * channel in MCC mode.
  2020. *
  2021. * Return: QDF_STATUS
  2022. */
  2023. QDF_STATUS
  2024. wlan_mlme_get_mcc_rts_cts_prot(struct wlan_objmgr_psoc *psoc,
  2025. uint8_t *value);
  2026. /**
  2027. * wlan_mlme_get_mcc_feature() - To find out to enable/disable MCC feature
  2028. *
  2029. * @psoc: pointer to psoc object
  2030. * @value: value which needs to filled by API
  2031. *
  2032. * To get INI value which helps to determine whether to enable MCC feature
  2033. *
  2034. * Return: QDF_STATUS
  2035. */
  2036. QDF_STATUS
  2037. wlan_mlme_get_mcc_feature(struct wlan_objmgr_psoc *psoc,
  2038. uint8_t *value);
  2039. /**
  2040. * wlan_mlme_get_rrm_enabled() - Get the RRM enabled ini
  2041. * @psoc: pointer to psoc object
  2042. * @value: pointer to the value which will be filled for the caller
  2043. *
  2044. * Return: QDF Status
  2045. */
  2046. QDF_STATUS wlan_mlme_get_rrm_enabled(struct wlan_objmgr_psoc *psoc,
  2047. bool *value);
  2048. /**
  2049. * wlan_mlme_get_dtim_selection_diversity() - get dtim selection diversity
  2050. * bitmap
  2051. * @psoc: pointer to psoc object
  2052. * @dtim_selection_div: value that is requested by the caller
  2053. * This function gets the dtim selection diversity bitmap to be
  2054. * sent to the firmware
  2055. *
  2056. * Return: QDF_STATUS_SUCCESS - in case of success
  2057. */
  2058. QDF_STATUS wlan_mlme_get_dtim_selection_diversity(struct wlan_objmgr_psoc *psoc,
  2059. uint32_t *dtim_selection_div);
  2060. /**
  2061. * wlan_mlme_get_bmps_min_listen_interval() - get beacon mode powersave
  2062. * minimum listen interval value
  2063. * @psoc: pointer to psoc object
  2064. * @value: value that is requested by the caller
  2065. *
  2066. * Return: QDF_STATUS_SUCCESS - in case of success
  2067. */
  2068. QDF_STATUS wlan_mlme_get_bmps_min_listen_interval(struct wlan_objmgr_psoc *psoc,
  2069. uint32_t *value);
  2070. /**
  2071. * wlan_mlme_get_bmps_max_listen_interval() - get beacon mode powersave
  2072. * maximum listen interval value
  2073. * @psoc: pointer to psoc object
  2074. * @value: value that is requested by the caller
  2075. *
  2076. * Return: QDF_STATUS_SUCCESS - in case of success
  2077. */
  2078. QDF_STATUS wlan_mlme_get_bmps_max_listen_interval(struct wlan_objmgr_psoc *psoc,
  2079. uint32_t *value);
  2080. /**
  2081. * wlan_mlme_get_auto_bmps_timer_value() - get bmps timer value
  2082. * @psoc: pointer to psoc object
  2083. * @value: value that is requested by the caller
  2084. *
  2085. * Return: QDF_STATUS_SUCCESS - in case of success
  2086. */
  2087. QDF_STATUS wlan_mlme_get_auto_bmps_timer_value(struct wlan_objmgr_psoc *psoc,
  2088. uint32_t *value);
  2089. /**
  2090. * wlan_mlme_is_bmps_enabled() - check if beacon mode powersave is
  2091. * enabled/disabled
  2092. * @psoc: pointer to psoc object
  2093. * @value: value that is requested by the caller
  2094. *
  2095. * Return: QDF_STATUS_SUCCESS - in case of success
  2096. */
  2097. QDF_STATUS wlan_mlme_is_bmps_enabled(struct wlan_objmgr_psoc *psoc,
  2098. bool *value);
  2099. /**
  2100. * wlan_mlme_override_bmps_imps() - disable imps/bmps
  2101. * @psoc: pointer to psoc object
  2102. *
  2103. * Return: QDF_STATUS_SUCCESS - in case of success
  2104. */
  2105. QDF_STATUS wlan_mlme_override_bmps_imps(struct wlan_objmgr_psoc *psoc);
  2106. /**
  2107. * wlan_mlme_is_imps_enabled() - check if idle mode powersave is
  2108. * enabled/disabled
  2109. * @psoc: pointer to psoc object
  2110. * @value: value that is requested by the caller
  2111. *
  2112. * Return: QDF_STATUS_SUCCESS - in case of success
  2113. */
  2114. QDF_STATUS wlan_mlme_is_imps_enabled(struct wlan_objmgr_psoc *psoc,
  2115. bool *value);
  2116. /**
  2117. * wlan_mlme_get_wps_uuid() - get the wps uuid string
  2118. * @wps_params: pointer to mlme wps parameters structure
  2119. * @data: data to which the parameter is to be copied
  2120. *
  2121. * Return None
  2122. *
  2123. */
  2124. void
  2125. wlan_mlme_get_wps_uuid(struct wlan_mlme_wps_params *wps_params, uint8_t *data);
  2126. /**
  2127. * wlan_mlme_get_self_gen_frm_pwr() - get self gen frm pwr
  2128. * @psoc: pointer to psoc object
  2129. * @val: Pointer to the value which will be filled for the caller
  2130. *
  2131. * Return: QDF Status
  2132. */
  2133. QDF_STATUS
  2134. wlan_mlme_get_self_gen_frm_pwr(struct wlan_objmgr_psoc *psoc,
  2135. uint32_t *value);
  2136. /**
  2137. * wlan_mlme_get_4way_hs_offload() - get 4-way hs offload to fw cfg
  2138. * @psoc: pointer to psoc object
  2139. * @val: Pointer to the value which will be filled for the caller
  2140. *
  2141. * Return: QDF Status
  2142. */
  2143. QDF_STATUS
  2144. wlan_mlme_get_4way_hs_offload(struct wlan_objmgr_psoc *psoc, bool *value);
  2145. /**
  2146. * wlan_mlme_get_bmiss_skip_full_scan_value() - To get value of
  2147. * bmiss_skip_full_scan ini
  2148. * @psoc: pointer to psoc object
  2149. * @val: Pointer to the value which will be filled for the caller
  2150. *
  2151. * Return: QDF Status
  2152. */
  2153. QDF_STATUS
  2154. wlan_mlme_get_bmiss_skip_full_scan_value(struct wlan_objmgr_psoc *psoc,
  2155. bool *value);
  2156. /**
  2157. * mlme_get_peer_phymode() - get phymode of peer
  2158. * @psoc: pointer to psoc object
  2159. * @mac: Pointer to the mac addr of the peer
  2160. * @peer_phymode: phymode
  2161. *
  2162. * Return: QDF Status
  2163. */
  2164. QDF_STATUS
  2165. mlme_get_peer_phymode(struct wlan_objmgr_psoc *psoc, uint8_t *mac,
  2166. enum wlan_phymode *peer_phymode);
  2167. /**
  2168. * mlme_set_tgt_wpa3_roam_cap() - Set the target WPA3 roam support
  2169. * to mlme
  2170. * @psoc: pointer to PSOC object
  2171. * @akm_bitmap: Bitmap of akm suites supported for roaming by the firmware
  2172. *
  2173. * Return: QDF Status
  2174. */
  2175. QDF_STATUS mlme_set_tgt_wpa3_roam_cap(struct wlan_objmgr_psoc *psoc,
  2176. uint32_t akm_bitmap);
  2177. /**
  2178. * wlan_mlme_get_ignore_fw_reg_offload_ind() - Get the
  2179. * ignore_fw_reg_offload_ind ini
  2180. * @psoc: pointer to psoc object
  2181. * @disabled: output pointer to hold user config
  2182. *
  2183. * Return: QDF Status
  2184. */
  2185. QDF_STATUS
  2186. wlan_mlme_get_ignore_fw_reg_offload_ind(struct wlan_objmgr_psoc *psoc,
  2187. bool *disabled);
  2188. /**
  2189. * mlme_get_roam_trigger_str() - Get the string for enum
  2190. * WMI_ROAM_TRIGGER_REASON_ID reason.
  2191. * @roam_scan_trigger: roam scan trigger ID
  2192. *
  2193. * Return: Meaningful string from enum WMI_ROAM_TRIGGER_REASON_ID
  2194. */
  2195. char *mlme_get_roam_trigger_str(uint32_t roam_scan_trigger);
  2196. /**
  2197. * mlme_get_roam_scan_type_str() - Get the string for roam sacn type
  2198. * @roam_scan_type: roam scan type coming from fw via
  2199. * wmi_roam_scan_info tlv
  2200. *
  2201. * Return: Meaningful string for roam sacn type
  2202. */
  2203. char *mlme_get_roam_scan_type_str(uint32_t roam_scan_type);
  2204. /**
  2205. * mlme_get_roam_status_str() - Get the string for roam status
  2206. * @roam_status: roam status coming from fw via
  2207. * wmi_roam_scan_info tlv
  2208. *
  2209. * Return: Meaningful string for roam status
  2210. */
  2211. char *mlme_get_roam_status_str(uint32_t roam_status);
  2212. /**
  2213. * mlme_get_converted_timestamp() - Return time of the day
  2214. * from timestamp
  2215. * @timestamp: Timestamp value in milliseconds
  2216. * @time: Output buffer to fill time into
  2217. *
  2218. * Return: Time of the day in [HH:MM:SS.uS]
  2219. */
  2220. void mlme_get_converted_timestamp(uint32_t timestamp, char *time);
  2221. #if defined(WLAN_SAE_SINGLE_PMK) && defined(WLAN_FEATURE_ROAM_OFFLOAD)
  2222. /**
  2223. * wlan_mlme_set_sae_single_pmk_bss_cap - API to set WPA3 single pmk AP IE
  2224. * @psoc: Pointer to psoc object
  2225. * @vdev_id: vdev id
  2226. * @val: value to be set
  2227. *
  2228. * Return : None
  2229. */
  2230. void wlan_mlme_set_sae_single_pmk_bss_cap(struct wlan_objmgr_psoc *psoc,
  2231. uint8_t vdev_id, bool val);
  2232. /**
  2233. * wlan_mlme_update_sae_single_pmk - API to update mlme_pmkid_info
  2234. * @vdev: vdev object
  2235. * @sae_single_pmk: pointer to sae_single_pmk_info struct
  2236. *
  2237. * Return : None
  2238. */
  2239. void
  2240. wlan_mlme_update_sae_single_pmk(struct wlan_objmgr_vdev *vdev,
  2241. struct mlme_pmk_info *sae_single_pmk);
  2242. /**
  2243. * wlan_mlme_get_sae_single_pmk_info - API to get mlme_pmkid_info
  2244. * @vdev: vdev object
  2245. * @pmksa: pointer to PMKSA struct
  2246. *
  2247. * Return : None
  2248. */
  2249. void
  2250. wlan_mlme_get_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2251. struct wlan_mlme_sae_single_pmk *pmksa);
  2252. /**
  2253. * wlan_mlme_clear_sae_single_pmk_info - API to clear mlme_pmkid_info ap caps
  2254. * @vdev: vdev object
  2255. * @pmk : pmk info to clear
  2256. *
  2257. * Return : None
  2258. */
  2259. void wlan_mlme_clear_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2260. struct mlme_pmk_info *pmk);
  2261. #else
  2262. static inline void
  2263. wlan_mlme_set_sae_single_pmk_bss_cap(struct wlan_objmgr_psoc *psoc,
  2264. uint8_t vdev_id, bool val)
  2265. {
  2266. }
  2267. static inline void
  2268. wlan_mlme_update_sae_single_pmk(struct wlan_objmgr_vdev *vdev,
  2269. struct mlme_pmk_info *sae_single_pmk)
  2270. {
  2271. }
  2272. static inline void
  2273. wlan_mlme_get_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2274. struct wlan_mlme_sae_single_pmk *pmksa)
  2275. {
  2276. }
  2277. static inline
  2278. void wlan_mlme_clear_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2279. struct mlme_pmk_info *pmk)
  2280. {
  2281. }
  2282. #endif
  2283. /**
  2284. * mlme_get_roam_fail_reason_str() - Get fail string from enum
  2285. * WMI_ROAM_FAIL_REASON_ID
  2286. * @result: Roam fail reason
  2287. *
  2288. * Return: Meaningful string from enum
  2289. */
  2290. char *mlme_get_roam_fail_reason_str(uint32_t result);
  2291. /**
  2292. * mlme_get_sub_reason_str() - Get roam trigger sub reason from enum
  2293. * WMI_ROAM_TRIGGER_SUB_REASON_ID
  2294. * @sub_reason: Sub reason value
  2295. *
  2296. * Return: Meaningful string from enum WMI_ROAM_TRIGGER_SUB_REASON_ID
  2297. */
  2298. char *mlme_get_sub_reason_str(uint32_t sub_reason);
  2299. /**
  2300. * wlan_mlme_get_mgmt_max_retry() - Get the
  2301. * max mgmt retry
  2302. * @psoc: pointer to psoc object
  2303. * @max_retry: output pointer to hold user config
  2304. *
  2305. * Return: QDF Status
  2306. */
  2307. QDF_STATUS
  2308. wlan_mlme_get_mgmt_max_retry(struct wlan_objmgr_psoc *psoc,
  2309. uint8_t *max_retry);
  2310. /**
  2311. * wlan_mlme_get_status_ring_buffer() - Get the
  2312. * status of ring buffer
  2313. * @psoc: pointer to psoc object
  2314. * @enable_ring_buffer: output pointer to point the configured value of
  2315. * ring buffer
  2316. *
  2317. * Return: QDF_STATUS
  2318. */
  2319. QDF_STATUS
  2320. wlan_mlme_get_status_ring_buffer(struct wlan_objmgr_psoc *psoc,
  2321. bool *enable_ring_buffer);
  2322. /**
  2323. * wlan_mlme_get_peer_unmap_conf() - Indicate if peer unmap confirmation
  2324. * support is enabled or disabled
  2325. * @psoc: pointer to psoc object
  2326. *
  2327. * Return: true if peer unmap confirmation support is enabled, else false
  2328. */
  2329. bool wlan_mlme_get_peer_unmap_conf(struct wlan_objmgr_psoc *psoc);
  2330. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  2331. /**
  2332. * wlan_mlme_get_roam_reason_vsie_status() - Indicate if roam reason
  2333. * vsie is enabled or disabled
  2334. * @psoc: pointer to psoc object
  2335. * @roam_reason_vsie_enabled: pointer to hold value of roam reason
  2336. * vsie
  2337. *
  2338. * Return: QDF_STATUS
  2339. */
  2340. QDF_STATUS
  2341. wlan_mlme_get_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2342. uint8_t *roam_reason_vsie_enabled);
  2343. /**
  2344. * wlan_mlme_set_roam_reason_vsie_status() - Update roam reason vsie status
  2345. * @psoc: pointer to psoc object
  2346. * @roam_reason_vsie_enabled: value of roam reason vsie
  2347. *
  2348. * Return: QDF_STATUS
  2349. */
  2350. QDF_STATUS
  2351. wlan_mlme_set_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2352. uint8_t roam_reason_vsie_enabled);
  2353. /**
  2354. * wlan_mlme_get_roaming_triggers - Get the roaming triggers bitmap
  2355. * @psoc: Pointer to PSOC object
  2356. *
  2357. * Return: Roaming triggers value
  2358. */
  2359. uint32_t wlan_mlme_get_roaming_triggers(struct wlan_objmgr_psoc *psoc);
  2360. /**
  2361. * wlan_mlme_get_roaming_offload() - Get roaming offload setting
  2362. * @psoc: pointer to psoc object
  2363. * @val: Pointer to enable/disable roaming offload
  2364. *
  2365. * Return: QDF Status
  2366. */
  2367. QDF_STATUS
  2368. wlan_mlme_get_roaming_offload(struct wlan_objmgr_psoc *psoc,
  2369. bool *val);
  2370. /**
  2371. * wlan_mlme_get_enable_disconnect_roam_offload() - Get emergency roaming
  2372. * Enable/Disable status during deauth/disassoc
  2373. * @psoc: pointer to psoc object
  2374. * @val: Pointer to emergency roaming Enable/Disable status
  2375. * during deauth/disassoc
  2376. *
  2377. * Return: QDF Status
  2378. */
  2379. QDF_STATUS
  2380. wlan_mlme_get_enable_disconnect_roam_offload(struct wlan_objmgr_psoc *psoc,
  2381. bool *val);
  2382. /**
  2383. * wlan_mlme_get_enable_idle_roam() - Get Enable/Disable idle roaming status
  2384. * @psoc: pointer to psoc object
  2385. * @val: Pointer to Enable/Disable idle roaming status
  2386. *
  2387. * Return: QDF Status
  2388. */
  2389. QDF_STATUS
  2390. wlan_mlme_get_enable_idle_roam(struct wlan_objmgr_psoc *psoc, bool *val);
  2391. /**
  2392. * wlan_mlme_get_idle_roam_rssi_delta() - Get idle roam rssi delta
  2393. * @psoc: pointer to psoc object
  2394. * @val: Pointer to idle roam rssi delta
  2395. *
  2396. * Return: QDF Status
  2397. */
  2398. QDF_STATUS
  2399. wlan_mlme_get_idle_roam_rssi_delta(struct wlan_objmgr_psoc *psoc,
  2400. uint32_t *val);
  2401. /**
  2402. * wlan_mlme_get_idle_roam_inactive_time() - Get idle roam inactive time
  2403. * @psoc: pointer to psoc object
  2404. * @val: Pointer to idle roam inactive time
  2405. *
  2406. * Return: QDF Status
  2407. */
  2408. QDF_STATUS
  2409. wlan_mlme_get_idle_roam_inactive_time(struct wlan_objmgr_psoc *psoc,
  2410. uint32_t *val);
  2411. /**
  2412. * wlan_mlme_get_idle_data_packet_count() - Get idle data packet count
  2413. * @psoc: pointer to psoc object
  2414. * @val: Pointer to idle data packet count
  2415. *
  2416. * Return: QDF Status
  2417. */
  2418. QDF_STATUS
  2419. wlan_mlme_get_idle_data_packet_count(struct wlan_objmgr_psoc *psoc,
  2420. uint32_t *val);
  2421. /**
  2422. * wlan_mlme_get_idle_roam_min_rssi() - Get idle roam min rssi
  2423. * @psoc: pointer to psoc object
  2424. * @val: Pointer to idle roam min rssi
  2425. *
  2426. * Return: QDF Status
  2427. */
  2428. QDF_STATUS
  2429. wlan_mlme_get_idle_roam_min_rssi(struct wlan_objmgr_psoc *psoc, uint32_t *val);
  2430. /**
  2431. * wlan_mlme_get_idle_roam_band() - Get idle roam band
  2432. * @psoc: pointer to psoc object
  2433. * @val: Pointer to idle roam band
  2434. *
  2435. * Return: QDF Status
  2436. */
  2437. QDF_STATUS
  2438. wlan_mlme_get_idle_roam_band(struct wlan_objmgr_psoc *psoc, uint32_t *val);
  2439. #else
  2440. static inline QDF_STATUS
  2441. wlan_mlme_get_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2442. uint8_t *roam_reason_vsie_enable)
  2443. {
  2444. return QDF_STATUS_E_FAILURE;
  2445. }
  2446. static inline QDF_STATUS
  2447. wlan_mlme_set_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2448. uint8_t roam_reason_vsie_enable)
  2449. {
  2450. return QDF_STATUS_E_FAILURE;
  2451. }
  2452. static inline
  2453. uint32_t wlan_mlme_get_roaming_triggers(struct wlan_objmgr_psoc *psoc)
  2454. {
  2455. return 0xFFFF;
  2456. }
  2457. static inline QDF_STATUS
  2458. wlan_mlme_get_roaming_offload(struct wlan_objmgr_psoc *psoc,
  2459. bool *val)
  2460. {
  2461. *val = false;
  2462. return QDF_STATUS_SUCCESS;
  2463. }
  2464. #endif
  2465. /**
  2466. * wlan_mlme_get_dfs_chan_ageout_time() - Get the DFS Channel ageout time
  2467. * @psoc: pointer to psoc object
  2468. * @dfs_chan_ageout_time: output pointer to hold configured value of DFS
  2469. * Channel ageout time
  2470. *
  2471. * Return: QDF Status
  2472. */
  2473. QDF_STATUS
  2474. wlan_mlme_get_dfs_chan_ageout_time(struct wlan_objmgr_psoc *psoc,
  2475. uint8_t *dfs_chan_ageout_time);
  2476. #ifdef WLAN_FEATURE_SAE
  2477. /**
  2478. * wlan_mlme_get_sae_assoc_retry_count() - Get the sae assoc retry count
  2479. * @psoc: pointer to psoc object
  2480. * @retry_count: assoc retry count
  2481. *
  2482. * Return: QDF Status
  2483. */
  2484. QDF_STATUS
  2485. wlan_mlme_get_sae_assoc_retry_count(struct wlan_objmgr_psoc *psoc,
  2486. uint8_t *retry_count);
  2487. /**
  2488. * wlan_mlme_get_sae_assoc_retry_count() - Get the sae auth retry count
  2489. * @psoc: pointer to psoc object
  2490. * @retry_count: auth retry count
  2491. *
  2492. * Return: QDF Status
  2493. */
  2494. QDF_STATUS
  2495. wlan_mlme_get_sae_auth_retry_count(struct wlan_objmgr_psoc *psoc,
  2496. uint8_t *retry_count);
  2497. /**
  2498. * wlan_mlme_get_sae_roam_auth_retry_count() - Get the sae roam auth retry count
  2499. * @psoc: pointer to psoc object
  2500. * @retry_count: auth retry count
  2501. *
  2502. * Return: QDF Status
  2503. */
  2504. QDF_STATUS
  2505. wlan_mlme_get_sae_roam_auth_retry_count(struct wlan_objmgr_psoc *psoc,
  2506. uint8_t *retry_count);
  2507. #else
  2508. static inline QDF_STATUS
  2509. wlan_mlme_get_sae_assoc_retry_count(struct wlan_objmgr_psoc *psoc,
  2510. uint8_t *retry_count)
  2511. {
  2512. *retry_count = 0;
  2513. return QDF_STATUS_SUCCESS;
  2514. }
  2515. static inline QDF_STATUS
  2516. wlan_mlme_get_sae_auth_retry_count(struct wlan_objmgr_psoc *psoc,
  2517. uint8_t *retry_count)
  2518. {
  2519. *retry_count = 0;
  2520. return QDF_STATUS_SUCCESS;
  2521. }
  2522. static inline QDF_STATUS
  2523. wlan_mlme_get_sae_roam_auth_retry_count(struct wlan_objmgr_psoc *psoc,
  2524. uint8_t *retry_count)
  2525. {
  2526. *retry_count = 0;
  2527. return QDF_STATUS_SUCCESS;
  2528. }
  2529. #endif
  2530. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  2531. /**
  2532. * wlan_mlme_get_dual_sta_roaming_enabled - API to get if the dual sta
  2533. * roaming support is enabled.
  2534. * @psoc: Pointer to global psoc object
  2535. *
  2536. * Return: True if dual sta roaming feature is enabled else return false
  2537. */
  2538. bool
  2539. wlan_mlme_get_dual_sta_roaming_enabled(struct wlan_objmgr_psoc *psoc);
  2540. #else
  2541. static inline bool
  2542. wlan_mlme_get_dual_sta_roaming_enabled(struct wlan_objmgr_psoc *psoc)
  2543. {
  2544. return false;
  2545. }
  2546. #endif
  2547. /**
  2548. * mlme_store_fw_scan_channels - Update the valid channel list to mlme.
  2549. * @psoc: Pointer to global psoc object
  2550. * @chan_list: Source channel list pointer
  2551. *
  2552. * Currently the channel list is saved to wma_handle to be updated in the
  2553. * PCL command. This cannot be accesed at target_if while sending vdev
  2554. * set pcl command. So save the channel list to mlme.
  2555. *
  2556. * Return: QDF_STATUS
  2557. */
  2558. QDF_STATUS
  2559. mlme_store_fw_scan_channels(struct wlan_objmgr_psoc *psoc,
  2560. tSirUpdateChanList *chan_list);
  2561. /**
  2562. * mlme_get_fw_scan_channels - Copy the saved valid channel
  2563. * list to the provided buffer
  2564. * @psoc: Pointer to global psoc object
  2565. * @freq_list: Pointer to the frequency list buffer to be filled
  2566. * @saved_num_chan: Number of channels filled
  2567. *
  2568. * Return: QDF_STATUS
  2569. */
  2570. QDF_STATUS mlme_get_fw_scan_channels(struct wlan_objmgr_psoc *psoc,
  2571. uint32_t *freq_list,
  2572. uint8_t *saved_num_chan);
  2573. /**
  2574. * wlan_mlme_get_roam_scan_offload_enabled() - Roam scan offload enable or not
  2575. * @psoc: pointer to psoc object
  2576. * @val: Pointer to the value which will be filled for the caller
  2577. *
  2578. * Return: QDF Status
  2579. */
  2580. QDF_STATUS
  2581. wlan_mlme_get_roam_scan_offload_enabled(struct wlan_objmgr_psoc *psoc,
  2582. bool *val);
  2583. /**
  2584. * wlan_mlme_get_roam_bmiss_final_bcnt() - Get roam bmiss final count
  2585. * @psoc: pointer to psoc object
  2586. * @val: Pointer to the value which will be filled for the caller
  2587. *
  2588. * Return: QDF Status
  2589. */
  2590. QDF_STATUS
  2591. wlan_mlme_get_roam_bmiss_final_bcnt(struct wlan_objmgr_psoc *psoc,
  2592. uint8_t *val);
  2593. /**
  2594. * wlan_mlme_get_roam_bmiss_first_bcnt() - Get roam bmiss first count
  2595. * @psoc: pointer to psoc object
  2596. * @val: Pointer to the value which will be filled for the caller
  2597. *
  2598. * Return: QDF Status
  2599. */
  2600. QDF_STATUS
  2601. wlan_mlme_get_roam_bmiss_first_bcnt(struct wlan_objmgr_psoc *psoc,
  2602. uint8_t *val);
  2603. /**
  2604. * wlan_mlme_adaptive_11r_enabled() - check if adaptive 11r feature is enaled
  2605. * or not
  2606. * @psoc: pointer to psoc object
  2607. *
  2608. * Return: bool
  2609. */
  2610. #ifdef WLAN_ADAPTIVE_11R
  2611. bool wlan_mlme_adaptive_11r_enabled(struct wlan_objmgr_psoc *psoc);
  2612. #else
  2613. static inline bool wlan_mlme_adaptive_11r_enabled(struct wlan_objmgr_psoc *psoc)
  2614. {
  2615. return false;
  2616. }
  2617. #endif
  2618. /**
  2619. * wlan_mlme_get_mawc_enabled() - Get mawc enabled status
  2620. * @psoc: pointer to psoc object
  2621. * @val: Pointer to the value which will be filled for the caller
  2622. *
  2623. * Return: QDF Status
  2624. */
  2625. QDF_STATUS
  2626. wlan_mlme_get_mawc_enabled(struct wlan_objmgr_psoc *psoc, bool *val);
  2627. /**
  2628. * wlan_mlme_get_mawc_roam_enabled() - Get mawc roam enabled status
  2629. * @psoc: pointer to psoc object
  2630. * @val: Pointer to the value which will be filled for the caller
  2631. *
  2632. * Return: QDF Status
  2633. */
  2634. QDF_STATUS
  2635. wlan_mlme_get_mawc_roam_enabled(struct wlan_objmgr_psoc *psoc, bool *val);
  2636. /**
  2637. * wlan_mlme_get_mawc_roam_traffic_threshold() - Get mawc traffic threshold
  2638. * @psoc: pointer to psoc object
  2639. * @val: Pointer to the value which will be filled for the caller
  2640. *
  2641. * Return: QDF Status
  2642. */
  2643. QDF_STATUS
  2644. wlan_mlme_get_mawc_roam_traffic_threshold(struct wlan_objmgr_psoc *psoc,
  2645. uint32_t *val);
  2646. /**
  2647. * wlan_mlme_get_mawc_roam_ap_rssi_threshold() - Get AP RSSI threshold for
  2648. * MAWC roaming
  2649. * @psoc: pointer to psoc object
  2650. * @val: Pointer to the value which will be filled for the caller
  2651. *
  2652. * Return: QDF Status
  2653. */
  2654. QDF_STATUS
  2655. wlan_mlme_get_mawc_roam_ap_rssi_threshold(struct wlan_objmgr_psoc *psoc,
  2656. uint32_t *val);
  2657. /**
  2658. * wlan_mlme_get_mawc_roam_rssi_high_adjust() - Get high adjustment value
  2659. * for suppressing scan
  2660. * @psoc: pointer to psoc object
  2661. * @val: Pointer to the value which will be filled for the caller
  2662. *
  2663. * Return: QDF Status
  2664. */
  2665. QDF_STATUS
  2666. wlan_mlme_get_mawc_roam_rssi_high_adjust(struct wlan_objmgr_psoc *psoc,
  2667. uint8_t *val);
  2668. /**
  2669. * wlan_mlme_get_mawc_roam_rssi_low_adjust() - Get low adjustment value
  2670. * for suppressing scan
  2671. * @psoc: pointer to psoc object
  2672. * @val: Pointer to the value which will be filled for the caller
  2673. *
  2674. * Return: QDF Status
  2675. */
  2676. QDF_STATUS
  2677. wlan_mlme_get_mawc_roam_rssi_low_adjust(struct wlan_objmgr_psoc *psoc,
  2678. uint8_t *val);
  2679. /**
  2680. * wlan_mlme_get_bss_load_enabled() - Get bss load based roam trigger
  2681. * enabled status
  2682. * @psoc: pointer to psoc object
  2683. * @val: Pointer to the value which will be filled for the caller
  2684. *
  2685. * Return: QDF Status
  2686. */
  2687. QDF_STATUS
  2688. wlan_mlme_get_bss_load_enabled(struct wlan_objmgr_psoc *psoc, bool *val);
  2689. /**
  2690. * wlan_mlme_get_bss_load_threshold() - Get bss load threshold
  2691. * @psoc: pointer to psoc object
  2692. * @val: Pointer to the value which will be filled for the caller
  2693. *
  2694. * Return: QDF Status
  2695. */
  2696. QDF_STATUS
  2697. wlan_mlme_get_bss_load_threshold(struct wlan_objmgr_psoc *psoc, uint32_t *val);
  2698. /**
  2699. * wlan_mlme_get_bss_load_sample_time() - Get bss load sample time
  2700. * @psoc: pointer to psoc object
  2701. * @val: Pointer to the value which will be filled for the caller
  2702. *
  2703. * Return: QDF Status
  2704. */
  2705. QDF_STATUS
  2706. wlan_mlme_get_bss_load_sample_time(struct wlan_objmgr_psoc *psoc,
  2707. uint32_t *val);
  2708. /**
  2709. * wlan_mlme_get_bss_load_rssi_threshold_5ghz() - Get bss load RSSI
  2710. * threshold on 5G
  2711. * @psoc: pointer to psoc object
  2712. * @val: Pointer to the value which will be filled for the caller
  2713. *
  2714. * Return: QDF Status
  2715. */
  2716. QDF_STATUS
  2717. wlan_mlme_get_bss_load_rssi_threshold_5ghz(struct wlan_objmgr_psoc *psoc,
  2718. int32_t *val);
  2719. /**
  2720. * wlan_mlme_get_bss_load_rssi_threshold_24ghz() - Get bss load RSSI
  2721. * threshold on 2.4G
  2722. * @psoc: pointer to psoc object
  2723. * @val: Pointer to the value which will be filled for the caller
  2724. *
  2725. * Return: QDF Status
  2726. */
  2727. QDF_STATUS
  2728. wlan_mlme_get_bss_load_rssi_threshold_24ghz(struct wlan_objmgr_psoc *psoc,
  2729. int32_t *val);
  2730. /**
  2731. * wlan_mlme_check_chan_param_has_dfs() - Get dfs flag based on
  2732. * channel & channel parameters
  2733. * @pdev: pdev object
  2734. * @ch_params: channel parameters
  2735. * @chan_freq: channel frequency in MHz
  2736. *
  2737. * Return: True for dfs
  2738. */
  2739. bool
  2740. wlan_mlme_check_chan_param_has_dfs(struct wlan_objmgr_pdev *pdev,
  2741. struct ch_params *ch_params,
  2742. uint32_t chan_freq);
  2743. /**
  2744. * wlan_mlme_set_usr_disabled_roaming() - Set user config for roaming disable
  2745. * @psoc: pointer to psoc object
  2746. * @val: user config for roaming disable
  2747. *
  2748. * Return: QDF_STATUS
  2749. */
  2750. QDF_STATUS
  2751. wlan_mlme_set_usr_disabled_roaming(struct wlan_objmgr_psoc *psoc, bool val);
  2752. /**
  2753. * wlan_mlme_get_usr_disabled_roaming() - Get user config for roaming disable
  2754. * @psoc: pointer to psoc object
  2755. * @val: user config for roaming disable
  2756. *
  2757. * Return: QDF_STATUS
  2758. */
  2759. QDF_STATUS
  2760. wlan_mlme_get_usr_disabled_roaming(struct wlan_objmgr_psoc *psoc, bool *val);
  2761. /**
  2762. * mlme_get_opr_rate() - get operational rate
  2763. * @vdev: vdev pointer
  2764. * @dst: pointer to get operational rate
  2765. * @len: length of operational rate
  2766. *
  2767. * Return: QDF_SUCCESS if success
  2768. */
  2769. QDF_STATUS mlme_get_opr_rate(struct wlan_objmgr_vdev *vdev, uint8_t *dst,
  2770. qdf_size_t *len);
  2771. /**
  2772. * mlme_set_opr_rate() - set operational rate
  2773. * @vdev: vdev pointer
  2774. * @src: pointer to set operational rate
  2775. * @len: length of operational rate
  2776. *
  2777. * Return: QDF_SUCCESS if success
  2778. */
  2779. QDF_STATUS mlme_set_opr_rate(struct wlan_objmgr_vdev *vdev, uint8_t *src,
  2780. qdf_size_t len);
  2781. /**
  2782. * mlme_get_ext_opr_rate() - get extended operational rate
  2783. * @vdev: vdev pointer
  2784. * @dst: pointer to get extended operational rate
  2785. * @len: length of extended operational rate
  2786. *
  2787. * Return: QDF_SUCCESS if success
  2788. */
  2789. QDF_STATUS mlme_get_ext_opr_rate(struct wlan_objmgr_vdev *vdev, uint8_t *dst,
  2790. qdf_size_t *len);
  2791. /**
  2792. * mlme_set_ext_opr_rate() - set extended operational rate
  2793. * @vdev: vdev pointer
  2794. * @src: pointer to set extended operational rate
  2795. * @len: length of extended operational rate
  2796. *
  2797. * Return: QDF_SUCCESS if success
  2798. */
  2799. QDF_STATUS mlme_set_ext_opr_rate(struct wlan_objmgr_vdev *vdev, uint8_t *src,
  2800. qdf_size_t len);
  2801. /**
  2802. * wlan_mlme_is_sta_mon_conc_supported() - Check if STA + Monitor mode
  2803. * concurrency is supported
  2804. * @psoc: pointer to psoc object
  2805. *
  2806. * Return: True if supported
  2807. */
  2808. bool wlan_mlme_is_sta_mon_conc_supported(struct wlan_objmgr_psoc *psoc);
  2809. #ifdef FEATURE_WDS
  2810. /**
  2811. * wlan_mlme_get_wds_mode() - Check wds mode supported
  2812. * @psoc: pointer to psoc object
  2813. *
  2814. * Return: supprted wds mode
  2815. */
  2816. enum wlan_wds_mode
  2817. wlan_mlme_get_wds_mode(struct wlan_objmgr_psoc *psoc);
  2818. #else
  2819. static inline enum wlan_wds_mode
  2820. wlan_mlme_get_wds_mode(struct wlan_objmgr_psoc *psoc)
  2821. {
  2822. return WLAN_WDS_MODE_DISABLED;
  2823. }
  2824. #endif
  2825. #ifdef WLAN_SUPPORT_TWT
  2826. /**
  2827. * mlme_is_twt_enabled() - Get if TWT is enabled via ini.
  2828. * @psoc: pointer to psoc object
  2829. * @val: pointer to the value to be filled
  2830. *
  2831. * Return: True if TWT is enabled else false.
  2832. */
  2833. bool
  2834. mlme_is_twt_enabled(struct wlan_objmgr_psoc *psoc);
  2835. #else
  2836. static inline bool
  2837. mlme_is_twt_enabled(struct wlan_objmgr_psoc *psoc)
  2838. {
  2839. return false;
  2840. }
  2841. #endif /* WLAN_SUPPORT_TWT */
  2842. /**
  2843. * wlan_mlme_is_local_tpe_pref() - Get preference to use local TPE or
  2844. * regulatory TPE values
  2845. * @psoc: pointer to psoc object
  2846. *
  2847. * Return: True if there is local preference, false if there is regulatory
  2848. * preference
  2849. */
  2850. bool wlan_mlme_is_local_tpe_pref(struct wlan_objmgr_psoc *psoc);
  2851. /**
  2852. * wlan_mlme_is_data_stall_recovery_fw_supported() - Check if data stall
  2853. * recovery is supported by fw
  2854. * @psoc: pointer to psoc object
  2855. *
  2856. * Return: True if supported
  2857. */
  2858. bool
  2859. wlan_mlme_is_data_stall_recovery_fw_supported(struct wlan_objmgr_psoc *psoc);
  2860. #endif /* _WLAN_MLME_API_H_ */