wlan_mlme_api.h 101 KB

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