wlan_mlme_api.h 105 KB

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