wlan_mlme_api.h 113 KB

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