wlan_mlme_api.h 121 KB

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