wlan_mlme_api.h 115 KB

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