wlan_mlme_api.h 97 KB

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