wlan_mlme_api.h 107 KB

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