wlan_mlme_api.h 83 KB

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