wlan_mlme_api.h 90 KB

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