wlan_mlme_api.h 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784
  1. /*
  2. * Copyright (c) 2018-2020 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. * mlme_set_wep_key() - set the wep keys during auth
  85. * @wep_params: cfg wep parametrs structure
  86. * @wep_key_id: default key number that needs to be copied
  87. * @key_to_set: destination buffer to be copied
  88. * @len: size to be copied
  89. */
  90. QDF_STATUS mlme_set_wep_key(struct wlan_mlme_wep_cfg *wep_params,
  91. enum wep_key_id wep_keyid, uint8_t *key_to_set,
  92. qdf_size_t len);
  93. /**
  94. * wlan_mlme_get_tx_power() - Get the max tx power in particular band
  95. * @psoc: pointer to psoc object
  96. * @band: 2ghz/5ghz band
  97. *
  98. * Return: value of tx power in the respective band
  99. */
  100. uint8_t wlan_mlme_get_tx_power(struct wlan_objmgr_psoc *psoc,
  101. enum band_info band);
  102. /**
  103. * wlan_mlme_get_power_usage() - Get the power usage info
  104. * @psoc: pointer to psoc object
  105. *
  106. * Return: pointer to character array of power usage
  107. */
  108. char *wlan_mlme_get_power_usage(struct wlan_objmgr_psoc *psoc);
  109. /**
  110. * wlan_mlme_get_ht_cap_info() - Get the HT cap info config
  111. * @psoc: pointer to psoc object
  112. * @value: pointer to the value which will be filled for the caller
  113. *
  114. * Return: QDF Status
  115. */
  116. QDF_STATUS wlan_mlme_get_ht_cap_info(struct wlan_objmgr_psoc *psoc,
  117. struct mlme_ht_capabilities_info
  118. *ht_cap_info);
  119. /**
  120. * wlan_mlme_get_manufacturer_name() - get manufacturer name
  121. * @psoc: pointer to psoc object
  122. * @pbuf: pointer of the buff which will be filled for the caller
  123. * @plen: pointer of max buffer length
  124. * actual length will be returned at this address
  125. * This function gets manufacturer name
  126. *
  127. * Return: QDF_STATUS_SUCCESS - in case of success
  128. */
  129. QDF_STATUS
  130. wlan_mlme_get_manufacturer_name(struct wlan_objmgr_psoc *psoc,
  131. uint8_t *pbuf, uint32_t *plen);
  132. /**
  133. * wlan_mlme_get_model_number() - get model number
  134. * @psoc: pointer to psoc object
  135. * @pbuf: pointer of the buff which will be filled for the caller
  136. * @plen: pointer of max buffer length
  137. * actual length will be returned at this address
  138. * This function gets model number
  139. *
  140. * Return: QDF_STATUS_SUCCESS - in case of success
  141. */
  142. QDF_STATUS
  143. wlan_mlme_get_model_number(struct wlan_objmgr_psoc *psoc,
  144. uint8_t *pbuf, uint32_t *plen);
  145. /**
  146. * wlan_mlme_get_model_name() - get model name
  147. * @psoc: pointer to psoc object
  148. * @pbuf: pointer of the buff which will be filled for the caller
  149. * @plen: pointer of max buffer length
  150. * actual length will be returned at this address
  151. * This function gets model name
  152. *
  153. * Return: QDF_STATUS_SUCCESS - in case of success
  154. */
  155. QDF_STATUS
  156. wlan_mlme_get_model_name(struct wlan_objmgr_psoc *psoc,
  157. uint8_t *pbuf, uint32_t *plen);
  158. /**
  159. * wlan_mlme_get_manufacture_product_name() - get manufacture product name
  160. * @psoc: pointer to psoc object
  161. * @pbuf: pointer of the buff which will be filled for the caller
  162. * @plen: pointer of max buffer length
  163. * actual length will be returned at this address
  164. * This function gets manufacture product name
  165. *
  166. * Return: QDF_STATUS_SUCCESS - in case of success
  167. */
  168. QDF_STATUS
  169. wlan_mlme_get_manufacture_product_name(struct wlan_objmgr_psoc *psoc,
  170. uint8_t *pbuf, uint32_t *plen);
  171. /**
  172. * wlan_mlme_get_manufacture_product_version() - get manufacture product version
  173. * @psoc: pointer to psoc object
  174. * @pbuf: pointer of the buff which will be filled for the caller
  175. * @plen: pointer of max buffer length
  176. * actual length will be returned at this address
  177. * This function gets manufacture product version
  178. *
  179. * Return: QDF_STATUS_SUCCESS - in case of success
  180. */
  181. QDF_STATUS
  182. wlan_mlme_get_manufacture_product_version(struct wlan_objmgr_psoc *psoc,
  183. uint8_t *pbuf, uint32_t *plen);
  184. /**
  185. * wlan_mlme_set_ht_cap_info() - Set the HT cap info config
  186. * @psoc: pointer to psoc object
  187. * @value: Value that needs to be set from the caller
  188. *
  189. * Return: QDF Status
  190. */
  191. QDF_STATUS wlan_mlme_set_ht_cap_info(struct wlan_objmgr_psoc *psoc,
  192. struct mlme_ht_capabilities_info
  193. ht_cap_info);
  194. /**
  195. * wlan_mlme_get_max_amsdu_num() - get the max amsdu num
  196. * @psoc: pointer to psoc object
  197. * @value: pointer to the value where the max_amsdu num is to be filled
  198. *
  199. * Return: QDF_STATUS
  200. */
  201. QDF_STATUS wlan_mlme_get_max_amsdu_num(struct wlan_objmgr_psoc *psoc,
  202. uint8_t *value);
  203. /**
  204. * wlan_mlme_set_max_amsdu_num() - set the max amsdu num
  205. * @psoc: pointer to psoc object
  206. * @value: value to be set for max_amsdu_num
  207. *
  208. * Return: QDF_STATUS
  209. */
  210. QDF_STATUS wlan_mlme_set_max_amsdu_num(struct wlan_objmgr_psoc *psoc,
  211. uint8_t value);
  212. /**
  213. * wlan_mlme_get_ht_mpdu_density() - get the ht mpdu density
  214. * @psoc: pointer to psoc object
  215. * @value: pointer to the value where the ht mpdu density is to be filled
  216. *
  217. * Return: QDF_STATUS
  218. */
  219. QDF_STATUS wlan_mlme_get_ht_mpdu_density(struct wlan_objmgr_psoc *psoc,
  220. uint8_t *value);
  221. /**
  222. * wlan_mlme_set_ht_mpdu_density() - set the ht mpdu density
  223. * @psoc: pointer to psoc object
  224. * @value: value to be set for ht mpdu density
  225. *
  226. * Return: QDF_STATUS
  227. */
  228. QDF_STATUS wlan_mlme_set_ht_mpdu_density(struct wlan_objmgr_psoc *psoc,
  229. uint8_t value);
  230. /**
  231. * wlan_mlme_get_band_capability() - Get the Band capability config
  232. * @psoc: pointer to psoc object
  233. * @band_capability: Pointer to the variable from caller
  234. *
  235. * Return: QDF Status
  236. */
  237. QDF_STATUS wlan_mlme_get_band_capability(struct wlan_objmgr_psoc *psoc,
  238. uint32_t *band_capability);
  239. /**
  240. * wlan_mlme_set_band_capability() - Set the Band capability config
  241. * @psoc: pointer to psoc object
  242. * @band_capability: Value to be set from the caller
  243. *
  244. * Return: QDF Status
  245. */
  246. QDF_STATUS wlan_mlme_set_band_capability(struct wlan_objmgr_psoc *psoc,
  247. uint32_t band_capability);
  248. /**
  249. * wlan_mlme_get_prevent_link_down() - Get the prevent link down config
  250. * @psoc: pointer to psoc object
  251. * @prevent_link_down: Pointer to the variable from caller
  252. *
  253. * Return: QDF Status
  254. */
  255. QDF_STATUS wlan_mlme_get_prevent_link_down(struct wlan_objmgr_psoc *psoc,
  256. bool *prevent_link_down);
  257. /**
  258. * wlan_mlme_get_select_5ghz_margin() - Get the select 5Ghz margin config
  259. * @psoc: pointer to psoc object
  260. * @select_5ghz_margin: Pointer to the variable from caller
  261. *
  262. * Return: QDF Status
  263. */
  264. QDF_STATUS wlan_mlme_get_select_5ghz_margin(struct wlan_objmgr_psoc *psoc,
  265. uint8_t *select_5ghz_margin);
  266. /**
  267. * wlan_mlme_get_rtt_mac_randomization() - Get the RTT MAC randomization config
  268. * @psoc: pointer to psoc object
  269. * @rtt_mac_randomization: Pointer to the variable from caller
  270. *
  271. * Return: QDF Status
  272. */
  273. QDF_STATUS wlan_mlme_get_rtt_mac_randomization(struct wlan_objmgr_psoc *psoc,
  274. bool *rtt_mac_randomization);
  275. /**
  276. * wlan_mlme_get_crash_inject() - Get the crash inject config
  277. * @psoc: pointer to psoc object
  278. * @crash_inject: Pointer to the variable from caller
  279. *
  280. * Return: QDF Status
  281. */
  282. QDF_STATUS wlan_mlme_get_crash_inject(struct wlan_objmgr_psoc *psoc,
  283. bool *crash_inject);
  284. /**
  285. * wlan_mlme_get_lpass_support() - Get the LPASS Support config
  286. * @psoc: pointer to psoc object
  287. * @lpass_support: Pointer to the variable from caller
  288. *
  289. * Return: QDF Status
  290. */
  291. QDF_STATUS wlan_mlme_get_lpass_support(struct wlan_objmgr_psoc *psoc,
  292. bool *lpass_support);
  293. /**
  294. * wlan_mlme_get_wls_6ghz_cap() - Get the wifi location service(WLS)
  295. * 6ghz capability
  296. * @psoc: pointer to psoc object
  297. * @wls_6ghz_capable: Pointer to the variable from caller
  298. *
  299. * Return: void
  300. */
  301. void wlan_mlme_get_wls_6ghz_cap(struct wlan_objmgr_psoc *psoc,
  302. bool *wls_6ghz_capable);
  303. /**
  304. * wlan_mlme_get_self_recovery() - Get the self recovery config
  305. * @psoc: pointer to psoc object
  306. * @self_recovery: Pointer to the variable from caller
  307. *
  308. * Return: QDF Status
  309. */
  310. QDF_STATUS wlan_mlme_get_self_recovery(struct wlan_objmgr_psoc *psoc,
  311. bool *self_recovery);
  312. /**
  313. * wlan_mlme_get_sub_20_chan_width() - Get the sub 20 chan width config
  314. * @psoc: pointer to psoc object
  315. * @sub_20_chan_width: Pointer to the variable from caller
  316. *
  317. * Return: QDF Status
  318. */
  319. QDF_STATUS wlan_mlme_get_sub_20_chan_width(struct wlan_objmgr_psoc *psoc,
  320. uint8_t *sub_20_chan_width);
  321. /**
  322. * wlan_mlme_get_fw_timeout_crash() - Get the fw timeout crash config
  323. * @psoc: pointer to psoc object
  324. * @fw_timeout_crash: Pointer to the variable from caller
  325. *
  326. * Return: QDF Status
  327. */
  328. QDF_STATUS wlan_mlme_get_fw_timeout_crash(struct wlan_objmgr_psoc *psoc,
  329. bool *fw_timeout_crash);
  330. /**
  331. * wlan_mlme_get_ito_repeat_count() - Get the fw timeout crash config
  332. * @psoc: pointer to psoc object
  333. * @ito_repeat_count: Pointer to the variable from caller
  334. *
  335. * Return: QDF Status
  336. */
  337. QDF_STATUS wlan_mlme_get_ito_repeat_count(struct wlan_objmgr_psoc *psoc,
  338. uint8_t *ito_repeat_count);
  339. /**
  340. * wlan_mlme_get_acs_with_more_param() - Get the acs_with_more_param flag
  341. * @psoc: pointer to psoc object
  342. * @value: Value that needs to be set from the caller
  343. *
  344. * Return: QDF Status
  345. */
  346. QDF_STATUS wlan_mlme_get_acs_with_more_param(struct wlan_objmgr_psoc *psoc,
  347. bool *value);
  348. /**
  349. * wlan_mlme_get_auto_channel_weight() - Get the auto channel weight
  350. * @psoc: pointer to psoc object
  351. * @value: Value that needs to be set from the caller
  352. *
  353. * Return: QDF Status
  354. */
  355. QDF_STATUS wlan_mlme_get_auto_channel_weight(struct wlan_objmgr_psoc *psoc,
  356. uint32_t *value);
  357. /**
  358. * wlan_mlme_get_vendor_acs_support() - Get the vendor based channel selece
  359. * @psoc: pointer to psoc object
  360. * @value: Value that needs to be set from the caller
  361. *
  362. * Return: QDF Status
  363. */
  364. QDF_STATUS wlan_mlme_get_vendor_acs_support(struct wlan_objmgr_psoc *psoc,
  365. bool *value);
  366. /**
  367. * wlan_mlme_get_acs_support_for_dfs_ltecoex() - Get the flag for
  368. * acs support for dfs ltecoex
  369. * @psoc: pointer to psoc object
  370. * @value: Value that needs to be set from the caller
  371. *
  372. * Return: QDF Status
  373. */
  374. QDF_STATUS
  375. wlan_mlme_get_acs_support_for_dfs_ltecoex(struct wlan_objmgr_psoc *psoc,
  376. bool *value);
  377. /**
  378. * wlan_mlme_get_external_acs_policy() - Get the flag for external acs policy
  379. * @psoc: pointer to psoc object
  380. * @value: Value that needs to be set from the caller
  381. *
  382. * Return: QDF Status
  383. */
  384. QDF_STATUS
  385. wlan_mlme_get_external_acs_policy(struct wlan_objmgr_psoc *psoc,
  386. bool *value);
  387. /**
  388. *
  389. * wlan_mlme_get_sap_inactivity_override() - Check if sap max inactivity
  390. * override flag is set.
  391. * @psoc: pointer to psoc object
  392. * @sme_config - Sme config struct
  393. *
  394. * Return: QDF Status
  395. */
  396. void wlan_mlme_get_sap_inactivity_override(struct wlan_objmgr_psoc *psoc,
  397. bool *value);
  398. /**
  399. * wlan_mlme_get_ignore_peer_ht_mode() - Get the ignore peer ht opmode flag
  400. * @psoc: pointer to psoc object
  401. * @value: Value that needs to be set from the caller
  402. *
  403. * Return: QDF Status
  404. */
  405. QDF_STATUS wlan_mlme_get_ignore_peer_ht_mode(struct wlan_objmgr_psoc *psoc,
  406. bool *value);
  407. /**
  408. * wlan_mlme_get_tx_chainmask_cck() - Get the tx_chainmask_cfg value
  409. * @psoc: pointer to psoc object
  410. * @value: Value that needs to be set from the caller
  411. *
  412. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  413. */
  414. QDF_STATUS wlan_mlme_get_tx_chainmask_cck(struct wlan_objmgr_psoc *psoc,
  415. bool *value);
  416. /**
  417. * wlan_mlme_get_tx_chainmask_1ss() - Get the tx_chainmask_1ss value
  418. * @psoc: pointer to psoc object
  419. * @value: Value that caller needs to get
  420. *
  421. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  422. */
  423. QDF_STATUS wlan_mlme_get_tx_chainmask_1ss(struct wlan_objmgr_psoc *psoc,
  424. uint8_t *value);
  425. /**
  426. * wlan_mlme_get_num_11b_tx_chains() - Get the number of 11b only tx chains
  427. * @psoc: pointer to psoc object
  428. * @value: Value that needs to be set from the caller
  429. *
  430. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  431. */
  432. QDF_STATUS wlan_mlme_get_num_11b_tx_chains(struct wlan_objmgr_psoc *psoc,
  433. uint16_t *value);
  434. /**
  435. * wlan_mlme_get_num_11ag_tx_chains() - get the total number of 11a/g tx chains
  436. * @psoc: pointer to psoc object
  437. * @value: Value that caller needs to get
  438. *
  439. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  440. */
  441. QDF_STATUS wlan_mlme_get_num_11ag_tx_chains(struct wlan_objmgr_psoc *psoc,
  442. uint16_t *value);
  443. /**
  444. * wlan_mlme_get_bt_chain_separation_flag() - get the enable_bt_chain_separation
  445. * flag
  446. * @psoc: pointer to psoc object
  447. * @value: Value that needs to be set from the caller
  448. *
  449. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  450. */
  451. QDF_STATUS wlan_mlme_get_bt_chain_separation_flag(struct wlan_objmgr_psoc *psoc,
  452. bool *value);
  453. /**
  454. * wlan_mlme_configure_chain_mask() - configure chainmask parameters
  455. * @psoc: pointer to psoc object
  456. * @session_id: vdev_id
  457. *
  458. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  459. */
  460. QDF_STATUS wlan_mlme_configure_chain_mask(struct wlan_objmgr_psoc *psoc,
  461. uint8_t session_id);
  462. /**
  463. * wlan_mlme_is_chain_mask_supported() - check if configure chainmask can
  464. * be supported
  465. * @psoc: pointer to psoc object
  466. *
  467. * Return: true if supported else false
  468. */
  469. bool wlan_mlme_is_chain_mask_supported(struct wlan_objmgr_psoc *psoc);
  470. /**
  471. * wlan_mlme_get_listen_interval() - Get listen interval
  472. * @psoc: pointer to psoc object
  473. * @value: Pointer to value that needs to be filled by MLME
  474. *
  475. * Return: QDF Status
  476. */
  477. QDF_STATUS wlan_mlme_get_listen_interval(struct wlan_objmgr_psoc *psoc,
  478. int *value);
  479. /**
  480. * wlan_mlme_set_sap_listen_interval() - Set the sap listen interval
  481. * @psoc: pointer to psoc object
  482. * @value: Value that needs to be set from the caller
  483. *
  484. * Return: QDF Status
  485. */
  486. QDF_STATUS wlan_mlme_set_sap_listen_interval(struct wlan_objmgr_psoc *psoc,
  487. int value);
  488. /**
  489. * wlan_mlme_set_assoc_sta_limit() - Set the assoc sta limit
  490. * @psoc: pointer to psoc object
  491. * @value: Value that needs to be set from the caller
  492. *
  493. * Return: QDF Status
  494. */
  495. QDF_STATUS wlan_mlme_set_assoc_sta_limit(struct wlan_objmgr_psoc *psoc,
  496. int value);
  497. /**
  498. * wlan_mlme_set_sap_get_peer_info() - get the sap get peer info
  499. * @psoc: pointer to psoc object
  500. * @value: Value that needs to be set from the caller
  501. *
  502. * Return: QDF Status
  503. */
  504. QDF_STATUS wlan_mlme_get_sap_get_peer_info(struct wlan_objmgr_psoc *psoc,
  505. bool *value);
  506. /**
  507. * wlan_mlme_set_sap_get_peer_info() - set the sap get peer info
  508. * @psoc: pointer to psoc object
  509. * @value: value to overwrite the sap get peer info
  510. *
  511. * Return: QDF Status
  512. */
  513. QDF_STATUS wlan_mlme_set_sap_get_peer_info(struct wlan_objmgr_psoc *psoc,
  514. bool value);
  515. /**
  516. * wlan_mlme_get_sap_bcast_deauth_enabled() - get the enable/disable value
  517. * for broadcast deauth in sap
  518. * @psoc: pointer to psoc object
  519. * @value: Value that needs to get from the caller
  520. *
  521. * Return: QDF Status
  522. */
  523. QDF_STATUS
  524. wlan_mlme_get_sap_bcast_deauth_enabled(struct wlan_objmgr_psoc *psoc,
  525. bool *value);
  526. /**
  527. * wlan_mlme_get_sap_allow_all_channels() - get the value of sap allow all
  528. * channels
  529. * @psoc: pointer to psoc object
  530. * @value: Value that needs to be set from the caller
  531. *
  532. * Return: QDF Status
  533. */
  534. QDF_STATUS wlan_mlme_get_sap_allow_all_channels(struct wlan_objmgr_psoc *psoc,
  535. bool *value);
  536. /**
  537. * wlan_mlme_is_6g_sap_fd_enabled() - get the enable/disable value
  538. * for 6g sap fils discovery
  539. * @psoc: pointer to psoc object
  540. * @value: Value that needs to get from the caller
  541. *
  542. * Return: QDF Status
  543. */
  544. QDF_STATUS
  545. wlan_mlme_is_6g_sap_fd_enabled(struct wlan_objmgr_psoc *psoc,
  546. bool *value);
  547. /**
  548. * wlan_mlme_get_sap_allow_all_channels() - get the value sap max peers
  549. * @psoc: pointer to psoc object
  550. * @value: Value that needs to be set from the caller
  551. *
  552. * Return: QDF Status
  553. */
  554. QDF_STATUS wlan_mlme_get_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  555. int *value);
  556. /**
  557. * wlan_mlme_set_sap_max_peers() - set the value sap max peers
  558. * @psoc: pointer to psoc object
  559. * @value: Value that needs to be set from the caller
  560. *
  561. * Return: QDF Status
  562. */
  563. QDF_STATUS wlan_mlme_set_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  564. int value);
  565. /**
  566. * wlan_mlme_get_sap_max_offload_peers() - get the value sap max offload peers
  567. * @psoc: pointer to psoc object
  568. * @value: Value that needs to be set from the caller
  569. *
  570. * Return: QDF Status
  571. */
  572. QDF_STATUS wlan_mlme_get_sap_max_offload_peers(struct wlan_objmgr_psoc *psoc,
  573. int *value);
  574. /**
  575. * wlan_mlme_get_sap_max_offload_reorder_buffs() - get the value sap max offload
  576. * reorder buffs.
  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_reorder_buffs(struct wlan_objmgr_psoc
  583. *psoc, int *value);
  584. /**
  585. * wlan_mlme_get_sap_chn_switch_bcn_count() - get the value sap max channel
  586. * switch beacon count
  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_chn_switch_bcn_count(struct wlan_objmgr_psoc *psoc,
  593. int *value);
  594. /**
  595. * wlan_mlme_get_sap_chn_switch_mode() - get the sap channel
  596. * switch mode
  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_mode(struct wlan_objmgr_psoc *psoc,
  603. bool *value);
  604. /**
  605. * wlan_mlme_get_sap_internal_restart() - get the sap internal
  606. * restart
  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_internal_restart(struct wlan_objmgr_psoc *psoc,
  613. bool *value);
  614. /**
  615. * wlan_mlme_get_sap_max_modulated_dtim() - get the max modulated dtim
  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_max_modulated_dtim(struct wlan_objmgr_psoc *psoc,
  623. uint8_t *value);
  624. /**
  625. * wlan_mlme_get_sap_chan_pref_location() - get the sap chan pref location
  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_chan_pref_location(struct wlan_objmgr_psoc *psoc,
  633. uint8_t *value);
  634. /**
  635. * wlan_mlme_get_sap_country_priority() - get the sap country code priority
  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_country_priority(struct wlan_objmgr_psoc *psoc,
  643. bool *value);
  644. /**
  645. * wlan_mlme_get_sap_reduced_beacon_interval() - get the sap reduced
  646. * beacon interval
  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_reduced_beacon_interval(struct wlan_objmgr_psoc
  653. *psoc, int *value);
  654. /**
  655. * wlan_mlme_get_sap_chan_switch_rate_enabled() - get the sap rate hostapd
  656. * enabled 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_chan_switch_rate_enabled(struct wlan_objmgr_psoc
  663. *psoc, bool *value);
  664. /**
  665. * wlan_mlme_get_sap_force_11n_for_11ac() - get the sap 11n for 11ac
  666. *
  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_force_11n_for_11ac(struct wlan_objmgr_psoc
  673. *psoc, bool *value);
  674. /**
  675. * wlan_mlme_get_go_force_11n_for_11ac() - get the go 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_go_force_11n_for_11ac(struct wlan_objmgr_psoc
  683. *psoc, bool *value);
  684. /**
  685. * wlan_mlme_is_go_11ac_override() - Override 11ac bandwdith for P2P GO
  686. *
  687. * @psoc: pointer to psoc object
  688. * @value: pointer to the value which will be filled for the caller
  689. *
  690. * Return: QDF Status
  691. */
  692. QDF_STATUS wlan_mlme_is_go_11ac_override(struct wlan_objmgr_psoc *psoc,
  693. bool *value);
  694. /**
  695. * wlan_mlme_is_sap_11ac_override() - Override 11ac bandwdith for SAP
  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_sap_11ac_override(struct wlan_objmgr_psoc *psoc,
  703. bool *value);
  704. /**
  705. * wlan_mlme_set_go_11ac_override() - set override 11ac bandwdith for P2P GO
  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_set_go_11ac_override(struct wlan_objmgr_psoc *psoc,
  713. bool value);
  714. /**
  715. * wlan_mlme_set_sap_11ac_override() - set override 11ac bandwdith for SAP
  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_sap_11ac_override(struct wlan_objmgr_psoc *psoc,
  723. bool value);
  724. /**
  725. * wlan_mlme_get_oce_sta_enabled_info() - Get the OCE feature enable
  726. * info for STA
  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_get_oce_sta_enabled_info(struct wlan_objmgr_psoc *psoc,
  733. bool *value);
  734. /**
  735. * wlan_mlme_get_bigtk_support() - Get the BIGTK support
  736. * @psoc: pointer to psoc object
  737. * @value: pointer to the value which will be filled for the caller
  738. *
  739. * Return: QDF Status
  740. */
  741. QDF_STATUS wlan_mlme_get_bigtk_support(struct wlan_objmgr_psoc *psoc,
  742. bool *value);
  743. /**
  744. * wlan_mlme_get_host_scan_abort_support() - Get support for stop all host
  745. * scans service capability.
  746. * @psoc: PSOC object pointer
  747. *
  748. * Return: True if capability is supported, else False
  749. */
  750. bool wlan_mlme_get_host_scan_abort_support(struct wlan_objmgr_psoc *psoc);
  751. /**
  752. * wlan_mlme_get_peer_create_conf_support - Get if the firmware supports
  753. * peer create confirm event
  754. * @psoc: PSOC object pointer
  755. *
  756. * Return: True if capability is supported, else False
  757. */
  758. bool wlan_mlme_get_peer_create_conf_support(struct wlan_objmgr_psoc *psoc);
  759. /**
  760. * wlan_mlme_get_dual_sta_roam_support - Get support for dual sta roaming
  761. * feature
  762. * @psoc: PSOC object pointer
  763. *
  764. * Return: True if capability is supported, else False
  765. */
  766. bool wlan_mlme_get_dual_sta_roam_support(struct wlan_objmgr_psoc *psoc);
  767. /**
  768. * wlan_mlme_get_oce_sap_enabled_info() - Get the OCE feature enable
  769. * info for SAP
  770. * @psoc: pointer to psoc object
  771. * @value: pointer to the value which will be filled for the caller
  772. *
  773. * Return: QDF Status
  774. */
  775. QDF_STATUS wlan_mlme_get_oce_sap_enabled_info(struct wlan_objmgr_psoc *psoc,
  776. bool *value);
  777. /**
  778. * wlan_mlme_update_oce_flags() - Update the oce flags to FW
  779. * @pdev: pointer to pdev object
  780. *
  781. * Return: void
  782. */
  783. void wlan_mlme_update_oce_flags(struct wlan_objmgr_pdev *pdev);
  784. #ifdef WLAN_FEATURE_11AX
  785. /**
  786. * wlan_mlme_cfg_get_he_ul_mumimo() - Get the HE Ul Mumio
  787. * @psoc: pointer to psoc object
  788. * @value: Value that needs to be set from the caller
  789. *
  790. * Return: QDF Status
  791. */
  792. QDF_STATUS wlan_mlme_cfg_get_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  793. uint32_t *value);
  794. /**
  795. * wlan_mlme_cfg_set_he_ul_mumimo() - Set the HE Ul Mumio
  796. * @psoc: pointer to psoc object
  797. * @value: Value that needs to be set from the caller
  798. *
  799. * Return: QDF Status
  800. */
  801. QDF_STATUS wlan_mlme_cfg_set_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  802. uint32_t value);
  803. /**
  804. * mlme_cfg_get_he_caps() - Get the HE capability info
  805. * @psoc: pointer to psoc object
  806. * @he_cap: Caps that needs to be filled.
  807. *
  808. * Return: QDF Status
  809. */
  810. QDF_STATUS mlme_cfg_get_he_caps(struct wlan_objmgr_psoc *psoc,
  811. tDot11fIEhe_cap *he_cap);
  812. /**
  813. * wlan_mlme_cfg_get_enable_ul_mimo() - Get the HE Ul mimo
  814. * @psoc: pointer to psoc object
  815. * @value: Value that needs to be set from the caller
  816. *
  817. * Return: QDF Status
  818. */
  819. QDF_STATUS wlan_mlme_cfg_get_enable_ul_mimo(struct wlan_objmgr_psoc *psoc,
  820. uint8_t *value);
  821. /**
  822. * wlan_mlme_cfg_get_enable_ul_ofdm() - Get enable ul ofdm
  823. * @psoc: pointer to psoc object
  824. * @value: Value that needs to be set from the caller
  825. *
  826. * Return: QDF Status
  827. */
  828. QDF_STATUS wlan_mlme_cfg_get_enable_ul_ofdm(struct wlan_objmgr_psoc *psoc,
  829. uint8_t *value);
  830. /**
  831. * mlme_update_tgt_he_caps_in_cfg() - Update tgt he cap in mlme component
  832. *
  833. * @psoc: pointer to psoc object
  834. * @cfg: pointer to config params from target
  835. *
  836. * This api to be used by callers to update
  837. * he caps in mlme.
  838. *
  839. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  840. */
  841. QDF_STATUS mlme_update_tgt_he_caps_in_cfg(struct wlan_objmgr_psoc *psoc,
  842. struct wma_tgt_cfg *cfg);
  843. #endif
  844. /**
  845. * wlan_mlme_is_ap_prot_enabled() - check if sap protection is enabled
  846. * @psoc: pointer to psoc object
  847. *
  848. * Return: is_ap_prot_enabled flag
  849. */
  850. bool wlan_mlme_is_ap_prot_enabled(struct wlan_objmgr_psoc *psoc);
  851. /**
  852. * wlan_mlme_get_ap_protection_mode() - Get ap_protection_mode value
  853. * @psoc: pointer to psoc object
  854. * @value: pointer to the value which needs to be filled for the caller
  855. *
  856. * Return: QDF Status
  857. */
  858. QDF_STATUS wlan_mlme_get_ap_protection_mode(struct wlan_objmgr_psoc *psoc,
  859. uint16_t *value);
  860. /**
  861. * wlan_mlme_is_ap_obss_prot_enabled() - Get ap_obss_protection is
  862. * enabled/disabled
  863. * @psoc: pointer to psoc object
  864. * @value: pointer to the value which needs to be filled for the caller
  865. *
  866. * Return: QDF Status
  867. */
  868. QDF_STATUS wlan_mlme_is_ap_obss_prot_enabled(struct wlan_objmgr_psoc *psoc,
  869. bool *value);
  870. /**
  871. * wlan_mlme_get_rts_threshold() - Get the RTS threshold config
  872. * @psoc: pointer to psoc object
  873. * @value: pointer to the value which will be filled for the caller
  874. *
  875. * Return: QDF Status
  876. */
  877. QDF_STATUS wlan_mlme_get_rts_threshold(struct wlan_objmgr_psoc *psoc,
  878. uint32_t *value);
  879. /**
  880. * wlan_mlme_set_rts_threshold() - Set the RTS threshold config
  881. * @psoc: pointer to psoc object
  882. * @value: Value that needs to be set from the caller
  883. *
  884. * Return: QDF Status
  885. */
  886. QDF_STATUS wlan_mlme_set_rts_threshold(struct wlan_objmgr_psoc *psoc,
  887. uint32_t value);
  888. /**
  889. * wlan_mlme_get_frag_threshold() - Get the Fragmentation threshold
  890. * config
  891. * @psoc: pointer to psoc object
  892. * @value: pointer to the value which will be filled for the caller
  893. *
  894. * Return: QDF Status
  895. */
  896. QDF_STATUS wlan_mlme_get_frag_threshold(struct wlan_objmgr_psoc *psoc,
  897. uint32_t *value);
  898. /**
  899. * wlan_mlme_set_frag_threshold() - Set the Fragmentation threshold
  900. * config
  901. * @psoc: pointer to psoc object
  902. * @value: Value that needs to be set from the caller
  903. *
  904. * Return: QDF Status
  905. */
  906. QDF_STATUS wlan_mlme_set_frag_threshold(struct wlan_objmgr_psoc *psoc,
  907. uint32_t value);
  908. /**
  909. * wlan_mlme_get_fils_enabled_info() - Get the fils enable info for driver
  910. * @psoc: pointer to psoc object
  911. * @value: pointer to the value which will be filled for the caller
  912. *
  913. * Return: QDF Status
  914. */
  915. QDF_STATUS wlan_mlme_get_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  916. bool *value);
  917. /**
  918. * wlan_mlme_set_fils_enabled_info() - Set the fils enable info for driver
  919. * @psoc: pointer to psoc object
  920. * @value: value that needs to be set from the caller
  921. *
  922. * Return: QDF Status
  923. */
  924. QDF_STATUS wlan_mlme_set_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  925. bool value);
  926. /**
  927. * wlan_mlme_get_tl_delayed_trgr_frm_int() - Get delay interval(in ms)
  928. * of UAPSD auto trigger
  929. * @psoc: pointer to psoc object
  930. * @value: Value that needs to be set from the caller
  931. *
  932. * Return: None
  933. */
  934. void wlan_mlme_get_tl_delayed_trgr_frm_int(struct wlan_objmgr_psoc *psoc,
  935. uint32_t *value);
  936. /**
  937. * wlan_mlme_get_wmm_dir_ac_vi() - Get TSPEC direction
  938. * for VI
  939. * @psoc: pointer to psoc object
  940. * @value: Value that needs to be set from the caller
  941. *
  942. * Return: QDF Status
  943. */
  944. QDF_STATUS
  945. wlan_mlme_get_wmm_dir_ac_vi(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  946. /**
  947. * wlan_mlme_get_wmm_nom_msdu_size_ac_vi() - Get normal
  948. * MSDU size for VI
  949. * @psoc: pointer to psoc object
  950. * @value: Value that needs to be set from the caller
  951. *
  952. * Return: QDF Status
  953. */
  954. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_vi(struct wlan_objmgr_psoc *psoc,
  955. uint16_t *value);
  956. /**
  957. * wlan_mlme_get_wmm_mean_data_rate_ac_vi() - mean data
  958. * rate for VI
  959. * @psoc: pointer to psoc object
  960. * @value: Value that needs to be set from the caller
  961. *
  962. * Return: QDF Status
  963. */
  964. QDF_STATUS
  965. wlan_mlme_get_wmm_mean_data_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  966. uint32_t *value);
  967. /**
  968. * wlan_mlme_get_wmm_min_phy_rate_ac_vi() - min PHY
  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 wlan_mlme_get_wmm_min_phy_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  976. uint32_t *value);
  977. /**
  978. * wlan_mlme_get_wmm_sba_ac_vi() - surplus bandwidth
  979. * allowance for VI
  980. * @psoc: pointer to psoc object
  981. * @value: Value that needs to be set from the caller
  982. *
  983. * Return: QDF Status
  984. */
  985. QDF_STATUS
  986. wlan_mlme_get_wmm_sba_ac_vi(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  987. /**
  988. * wlan_mlme_get_wmm_uapsd_vi_srv_intv() - Get Uapsd service
  989. * interval for video
  990. * @psoc: pointer to psoc object
  991. * @value: pointer to the value which will be filled for the caller
  992. *
  993. * Return: QDF Status
  994. */
  995. QDF_STATUS
  996. wlan_mlme_get_wmm_uapsd_vi_srv_intv(struct wlan_objmgr_psoc *psoc,
  997. uint32_t *value);
  998. /**
  999. * wlan_mlme_get_wmm_uapsd_vi_sus_intv() - Get Uapsd suspension
  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_sus_intv(struct wlan_objmgr_psoc *psoc,
  1008. uint32_t *value);
  1009. /**
  1010. * wlan_mlme_get_wmm_dir_ac_be() - Get TSPEC direction
  1011. * for BE
  1012. * @psoc: pointer to psoc object
  1013. * @value: Value that needs to be set from the caller
  1014. *
  1015. * Return: QDF Status
  1016. */
  1017. QDF_STATUS
  1018. wlan_mlme_get_wmm_dir_ac_be(struct wlan_objmgr_psoc *psoc,
  1019. uint8_t *value);
  1020. /**
  1021. * wlan_mlme_get_wmm_nom_msdu_size_ac_be() - Get normal
  1022. * MSDU size 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 wlan_mlme_get_wmm_nom_msdu_size_ac_be(struct wlan_objmgr_psoc *psoc,
  1029. uint16_t *value);
  1030. /**
  1031. * wlan_mlme_get_wmm_mean_data_rate_ac_be() - mean data
  1032. * rate for BE
  1033. * @psoc: pointer to psoc object
  1034. * @value: Value that needs to be set from the caller
  1035. *
  1036. * Return: QDF Status
  1037. */
  1038. QDF_STATUS wlan_mlme_get_wmm_mean_data_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  1039. uint32_t *value);
  1040. /**
  1041. * wlan_mlme_get_wmm_min_phy_rate_ac_be() - min PHY
  1042. * rate for BE
  1043. * @psoc: pointer to psoc object
  1044. * @value: Value that needs to be set from the caller
  1045. *
  1046. * Return: QDF Status
  1047. */
  1048. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  1049. uint32_t *value);
  1050. /**
  1051. * wlan_mlme_get_wmm_sba_ac_be() - surplus bandwidth
  1052. * allowance for BE
  1053. * @psoc: pointer to psoc object
  1054. * @value: Value that needs to be set from the caller
  1055. *
  1056. * Return: QDF Status
  1057. */
  1058. QDF_STATUS
  1059. wlan_mlme_get_wmm_sba_ac_be(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1060. /**
  1061. * wlan_mlme_get_wmm_uapsd_be_srv_intv() - Get Uapsd service
  1062. * interval for BE
  1063. * @psoc: pointer to psoc object
  1064. * @value: pointer to the value which will be filled for the caller
  1065. *
  1066. * Return: QDF Status
  1067. */
  1068. QDF_STATUS
  1069. wlan_mlme_get_wmm_uapsd_be_srv_intv(struct wlan_objmgr_psoc *psoc,
  1070. uint32_t *value);
  1071. /**
  1072. * wlan_mlme_get_wmm_uapsd_be_sus_intv() - Get Uapsd suspension
  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_sus_intv(struct wlan_objmgr_psoc *psoc,
  1081. uint32_t *value);
  1082. /**
  1083. * wlan_mlme_get_wmm_dir_ac_bk() - Get TSPEC direction
  1084. * for BK
  1085. * @psoc: pointer to psoc object
  1086. * @value: Value that needs to be set from the caller
  1087. *
  1088. * Return: QDF Status
  1089. */
  1090. QDF_STATUS
  1091. wlan_mlme_get_wmm_dir_ac_bk(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1092. /**
  1093. * wlan_mlme_get_wmm_nom_msdu_size_ac_bk() - Get normal
  1094. * MSDU size for BK
  1095. * @psoc: pointer to psoc object
  1096. * @value: Value that needs to be set from the caller
  1097. *
  1098. * Return: QDF Status
  1099. */
  1100. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_bk(struct wlan_objmgr_psoc *psoc,
  1101. uint16_t *value);
  1102. /**
  1103. * wlan_mlme_get_wmm_mean_data_rate_ac_bk() - mean data
  1104. * rate for BK
  1105. * @psoc: pointer to psoc object
  1106. * @value: Value that needs to be set from the caller
  1107. *
  1108. * Return: QDF Status
  1109. */
  1110. QDF_STATUS wlan_mlme_get_wmm_mean_data_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  1111. uint32_t *value);
  1112. /**
  1113. * wlan_mlme_get_wmm_min_phy_rate_ac_bk() - min PHY
  1114. * rate for BK
  1115. * @psoc: pointer to psoc object
  1116. * @value: Value that needs to be set from the caller
  1117. *
  1118. * Return: QDF Status
  1119. */
  1120. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  1121. uint32_t *value);
  1122. /**
  1123. * wlan_mlme_get_wmm_sba_ac_bk() - surplus bandwidth
  1124. * allowance for BE
  1125. * @psoc: pointer to psoc object
  1126. * @value: Value that needs to be set from the caller
  1127. *
  1128. * Return: QDF Status
  1129. */
  1130. QDF_STATUS
  1131. wlan_mlme_get_wmm_sba_ac_bk(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1132. /**
  1133. * wlan_mlme_get_wmm_uapsd_bk_srv_intv() - Get Uapsd service
  1134. * interval for BK
  1135. * @psoc: pointer to psoc object
  1136. * @value: pointer to the value which will be filled for the caller
  1137. *
  1138. * Return: QDF Status
  1139. */
  1140. QDF_STATUS
  1141. wlan_mlme_get_wmm_uapsd_bk_srv_intv(struct wlan_objmgr_psoc *psoc,
  1142. uint32_t *value);
  1143. /**
  1144. * wlan_mlme_get_wmm_uapsd_bk_sus_intv() - Get Uapsd suspension
  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_sus_intv(struct wlan_objmgr_psoc *psoc,
  1153. uint32_t *value);
  1154. /**
  1155. * wlan_mlme_get_wmm_mode() - Enable WMM feature
  1156. * @psoc: pointer to psoc object
  1157. * @value: pointer to the value which will be filled for the caller
  1158. *
  1159. * Return: QDF Status
  1160. */
  1161. QDF_STATUS
  1162. wlan_mlme_get_wmm_mode(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1163. /**
  1164. * wlan_mlme_get_80211e_is_enabled() - Enable 802.11e feature
  1165. * @psoc: pointer to psoc object
  1166. * @value: pointer to the value which will be filled for the caller
  1167. *
  1168. * Return: QDF Status
  1169. */
  1170. QDF_STATUS
  1171. wlan_mlme_get_80211e_is_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1172. /**
  1173. * wlan_mlme_get_wmm_uapsd_mask() - setup U-APSD mask for ACs
  1174. * @psoc: pointer to psoc object
  1175. * @value: pointer to the value which will be filled for the caller
  1176. *
  1177. * Return: QDF Status
  1178. */
  1179. QDF_STATUS
  1180. wlan_mlme_get_wmm_uapsd_mask(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1181. /**
  1182. * wlan_mlme_get_implicit_qos_is_enabled() - Enable implicit QOS
  1183. * @psoc: pointer to psoc object
  1184. * @value: pointer to the value which will be filled for the caller
  1185. *
  1186. * Return: QDF Status
  1187. */
  1188. QDF_STATUS wlan_mlme_get_implicit_qos_is_enabled(struct wlan_objmgr_psoc *psoc,
  1189. bool *value);
  1190. #ifdef FEATURE_WLAN_ESE
  1191. /**
  1192. * wlan_mlme_get_inactivity_interval() - Infra Inactivity Interval
  1193. * @psoc: pointer to psoc object
  1194. * @value: pointer to the value which will be filled for the caller
  1195. *
  1196. * Return: None
  1197. */
  1198. void
  1199. wlan_mlme_get_inactivity_interval(struct wlan_objmgr_psoc *psoc,
  1200. uint32_t *value);
  1201. #endif
  1202. /**
  1203. * wlan_mlme_get_is_ts_burst_size_enable() - Get TS burst size flag
  1204. * @psoc: pointer to psoc object
  1205. * @value: pointer to the value which will be filled for the caller
  1206. *
  1207. * Return: None
  1208. */
  1209. void wlan_mlme_get_is_ts_burst_size_enable(struct wlan_objmgr_psoc *psoc,
  1210. bool *value);
  1211. /**
  1212. * wlan_mlme_get_ts_info_ack_policy() - Get TS ack policy
  1213. * @psoc: pointer to psoc object
  1214. * @value: pointer to the value which will be filled for the caller
  1215. *
  1216. * Return: None
  1217. */
  1218. void wlan_mlme_get_ts_info_ack_policy(struct wlan_objmgr_psoc *psoc,
  1219. enum mlme_ts_info_ack_policy *value);
  1220. /**
  1221. * wlan_mlme_get_ts_acm_value_for_ac() - Get ACM value for AC
  1222. * @psoc: pointer to psoc object
  1223. * @value: pointer to the value which will be filled for the caller
  1224. *
  1225. * Return: QDF Status
  1226. */
  1227. QDF_STATUS
  1228. wlan_mlme_get_ts_acm_value_for_ac(struct wlan_objmgr_psoc *psoc, bool *value);
  1229. /**
  1230. * wlan_mlme_get_wmm_dir_ac_vo() - Get TSPEC direction
  1231. * for VO
  1232. * @psoc: pointer to psoc object
  1233. * @value: Value that needs to be set from the caller
  1234. *
  1235. * Return: QDF Status
  1236. */
  1237. QDF_STATUS
  1238. wlan_mlme_get_wmm_dir_ac_vo(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1239. /**
  1240. * wlan_mlme_get_wmm_nom_msdu_size_ac_vo() - Get normal
  1241. * MSDU size for VO
  1242. * @psoc: pointer to psoc object
  1243. * @value: Value that needs to be set from the caller
  1244. *
  1245. * Return: QDF Status
  1246. */
  1247. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_vo(struct wlan_objmgr_psoc *psoc,
  1248. uint16_t *value);
  1249. /**
  1250. * wlan_mlme_get_wmm_mean_data_rate_ac_vo() - mean data rate for VO
  1251. * @psoc: pointer to psoc object
  1252. * @value: Value that needs to be set from the caller
  1253. *
  1254. * Return: QDF Status
  1255. */
  1256. QDF_STATUS wlan_mlme_get_wmm_mean_data_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  1257. uint32_t *value);
  1258. /**
  1259. * wlan_mlme_get_wmm_min_phy_rate_ac_vo() - min PHY
  1260. * rate for VO
  1261. * @psoc: pointer to psoc object
  1262. * @value: Value that needs to be set from the caller
  1263. *
  1264. * Return: QDF Status
  1265. */
  1266. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  1267. uint32_t *value);
  1268. /**
  1269. * wlan_mlme_get_wmm_sba_ac_vo() - surplus bandwidth allowance for VO
  1270. * @psoc: pointer to psoc object
  1271. * @value: Value that needs to be set from the caller
  1272. *
  1273. * Return: QDF Status
  1274. */
  1275. QDF_STATUS
  1276. wlan_mlme_get_wmm_sba_ac_vo(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1277. /**
  1278. * wlan_mlme_set_enable_bcast_probe_rsp() - Set enable bcast probe resp info
  1279. * @psoc: pointer to psoc object
  1280. * @value: value that needs to be set from the caller
  1281. *
  1282. * Return: QDF Status
  1283. */
  1284. QDF_STATUS wlan_mlme_set_enable_bcast_probe_rsp(struct wlan_objmgr_psoc *psoc,
  1285. bool value);
  1286. /**
  1287. * wlan_mlme_get_wmm_uapsd_vo_srv_intv() - Get Uapsd service
  1288. * interval for voice
  1289. * @psoc: pointer to psoc object
  1290. * @value: pointer to the value which will be filled for the caller
  1291. *
  1292. * Return: QDF Status
  1293. */
  1294. QDF_STATUS
  1295. wlan_mlme_get_wmm_uapsd_vo_srv_intv(struct wlan_objmgr_psoc *psoc,
  1296. uint32_t *value);
  1297. /**
  1298. * wlan_mlme_get_wmm_uapsd_vo_sus_intv() - Get Uapsd suspension
  1299. * interval for voice
  1300. * @psoc: pointer to psoc object
  1301. * @value: pointer to the value which will be filled for the caller
  1302. *
  1303. * Return: QDF Status
  1304. */
  1305. QDF_STATUS
  1306. wlan_mlme_get_wmm_uapsd_vo_sus_intv(struct wlan_objmgr_psoc *psoc,
  1307. uint32_t *value);
  1308. /**
  1309. * wlan_mlme_cfg_get_vht_max_mpdu_len() - gets vht max mpdu length from cfg item
  1310. * @psoc: psoc context
  1311. * @value: pointer to get required data
  1312. *
  1313. * Return: QDF_STATUS
  1314. */
  1315. QDF_STATUS
  1316. wlan_mlme_cfg_get_vht_max_mpdu_len(struct wlan_objmgr_psoc *psoc,
  1317. uint8_t *value);
  1318. /**
  1319. * wlan_mlme_cfg_set_vht_max_mpdu_len() - sets vht max mpdu length into cfg item
  1320. * @psoc: psoc context
  1321. * @value: data to be set
  1322. *
  1323. * Return: QDF_STATUS
  1324. */
  1325. QDF_STATUS
  1326. wlan_mlme_cfg_set_vht_max_mpdu_len(struct wlan_objmgr_psoc *psoc,
  1327. uint8_t value);
  1328. /**
  1329. * wlan_mlme_cfg_get_vht_chan_width() - gets vht supported channel width from
  1330. * cfg item
  1331. * @psoc: psoc context
  1332. * @value: pointer to get required data
  1333. *
  1334. * Return: QDF_STATUS
  1335. */
  1336. QDF_STATUS wlan_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1337. uint8_t *value);
  1338. /**
  1339. * wlan_mlme_cfg_set_vht_chan_width() - sets vht supported channel width into
  1340. * cfg item
  1341. * @psoc: psoc context
  1342. * @value: data to be set
  1343. *
  1344. * Return: QDF_STATUS
  1345. */
  1346. QDF_STATUS wlan_mlme_cfg_set_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1347. uint8_t value);
  1348. /**
  1349. * wlan_mlme_cfg_get_vht_chan_width() - sets vht supported channel width into
  1350. * cfg item
  1351. * @psoc: psoc context
  1352. * @value: data to be set
  1353. *
  1354. * Return: QDF_STATUS
  1355. */
  1356. QDF_STATUS wlan_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1357. uint8_t *value);
  1358. /**
  1359. * wlan_mlme_cfg_get_vht_ldpc_coding_cap() - gets vht ldpc coding cap from
  1360. * cfg item
  1361. * @psoc: psoc context
  1362. * @value: pointer to get required data
  1363. *
  1364. * Return: QDF_STATUS
  1365. */
  1366. QDF_STATUS wlan_mlme_cfg_get_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1367. bool *value);
  1368. /**
  1369. * wlan_mlme_cfg_set_vht_ldpc_coding_cap() - sets vht ldpc coding cap into
  1370. * cfg item
  1371. * @psoc: psoc context
  1372. * @value: data to be set
  1373. *
  1374. * Return: QDF_STATUS
  1375. */
  1376. QDF_STATUS wlan_mlme_cfg_set_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1377. bool value);
  1378. /**
  1379. * wlan_mlme_cfg_get_vht_short_gi_80mhz() - gets vht short gi 80MHz from
  1380. * cfg item
  1381. * @psoc: psoc context
  1382. * @value: pointer to get required data
  1383. *
  1384. * Return: QDF_STATUS
  1385. */
  1386. QDF_STATUS wlan_mlme_cfg_get_vht_short_gi_80mhz(struct wlan_objmgr_psoc *psoc,
  1387. bool *value);
  1388. /**
  1389. * wlan_mlme_cfg_set_vht_short_gi_80mhz() - sets vht short gi 80MHz into
  1390. * cfg item
  1391. * @psoc: psoc context
  1392. * @value: data to be set
  1393. *
  1394. * Return: QDF_STATUS
  1395. */
  1396. QDF_STATUS wlan_mlme_cfg_set_vht_short_gi_80mhz(struct wlan_objmgr_psoc *psoc,
  1397. bool value);
  1398. /**
  1399. * wlan_mlme_cfg_get_short_gi_160_mhz() - gets vht short gi 160MHz from
  1400. * cfg item
  1401. * @psoc: psoc context
  1402. * @value: pointer to get required data
  1403. *
  1404. * Return: QDF_STATUS
  1405. */
  1406. QDF_STATUS
  1407. wlan_mlme_cfg_get_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc, bool *value);
  1408. /**
  1409. * wlan_mlme_cfg_set_short_gi_160_mhz() - sets vht short gi 160MHz into
  1410. * cfg item
  1411. * @psoc: psoc context
  1412. * @value: data to be set
  1413. *
  1414. * Return: QDF_STATUS
  1415. */
  1416. QDF_STATUS
  1417. wlan_mlme_cfg_set_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc, bool value);
  1418. /**
  1419. * wlan_mlme_cfg_get_vht_tx_stbc() - gets vht tx stbc from
  1420. * cfg item
  1421. * @psoc: psoc context
  1422. * @value: pointer to get required data
  1423. *
  1424. * Return: QDF_STATUS
  1425. */
  1426. QDF_STATUS
  1427. wlan_mlme_cfg_get_vht_tx_stbc(struct wlan_objmgr_psoc *psoc, bool *value);
  1428. /**
  1429. * wlan_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1430. * cfg item
  1431. * @psoc: psoc context
  1432. * @value: pointer to get required data
  1433. *
  1434. * Return: QDF_STATUS
  1435. */
  1436. QDF_STATUS
  1437. wlan_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc, bool *value);
  1438. /**
  1439. * wlan_mlme_cfg_set_vht_tx_stbc() - sets vht tx stbc into
  1440. * cfg item
  1441. * @psoc: psoc context
  1442. * @value: data to be set
  1443. *
  1444. * Return: QDF_STATUS
  1445. */
  1446. QDF_STATUS
  1447. wlan_mlme_cfg_set_vht_tx_stbc(struct wlan_objmgr_psoc *psoc, bool value);
  1448. /**
  1449. * wlan_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1450. * cfg item
  1451. * @psoc: psoc context
  1452. * @value: pointer to get required data
  1453. *
  1454. * Return: QDF_STATUS
  1455. */
  1456. QDF_STATUS
  1457. wlan_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc, bool *value);
  1458. /**
  1459. * wlan_mlme_cfg_set_vht_rx_stbc() - sets vht rx stbc into
  1460. * cfg item
  1461. * @psoc: psoc context
  1462. * @value: data to be set
  1463. *
  1464. * Return: QDF_STATUS
  1465. */
  1466. QDF_STATUS
  1467. wlan_mlme_cfg_set_vht_rx_stbc(struct wlan_objmgr_psoc *psoc, bool value);
  1468. /**
  1469. * wlan_mlme_cfg_get_vht_su_bformer() - gets vht su beam former cap from
  1470. * cfg item
  1471. * @psoc: psoc context
  1472. * @value: pointer to get required data
  1473. *
  1474. * Return: QDF_STATUS
  1475. */
  1476. QDF_STATUS
  1477. wlan_mlme_cfg_get_vht_su_bformer(struct wlan_objmgr_psoc *psoc, bool *value);
  1478. /**
  1479. * wlan_mlme_cfg_set_vht_su_bformer() - sets vht su beam former cap into
  1480. * cfg item
  1481. * @psoc: psoc context
  1482. * @value: data to be set
  1483. *
  1484. * Return: QDF_STATUS
  1485. */
  1486. QDF_STATUS
  1487. wlan_mlme_cfg_set_vht_su_bformer(struct wlan_objmgr_psoc *psoc, bool value);
  1488. /**
  1489. * wlan_mlme_cfg_set_vht_su_bformee() - sets vht su beam formee cap into
  1490. * cfg item
  1491. * @psoc: psoc context
  1492. * @value: data to be set
  1493. *
  1494. * Return: QDF_STATUS
  1495. */
  1496. QDF_STATUS
  1497. wlan_mlme_cfg_set_vht_su_bformee(struct wlan_objmgr_psoc *psoc, bool value);
  1498. /**
  1499. * wlan_mlme_cfg_set_vht_tx_bfee_ant_supp() - sets vht Beamformee antenna
  1500. * support cap
  1501. * into cfg item
  1502. * @psoc: psoc context
  1503. * @value: data to be set
  1504. *
  1505. * Return: QDF_STATUS
  1506. */
  1507. QDF_STATUS wlan_mlme_cfg_set_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1508. uint8_t value);
  1509. /**
  1510. * wlan_mlme_cfg_get_vht_tx_bfee_ant_supp() - Gets vht Beamformee antenna
  1511. * support cap into cfg item
  1512. *
  1513. * @psoc: psoc context
  1514. * @value: data to be set
  1515. *
  1516. * Return: QDF_STATUS
  1517. */
  1518. QDF_STATUS wlan_mlme_cfg_get_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1519. uint8_t *value);
  1520. /**
  1521. * wlan_mlme_cfg_set_vht_num_sounding_dim() - sets vht no of sounding dimensions
  1522. * into cfg item
  1523. * @psoc: psoc context
  1524. * @value: data to be set
  1525. *
  1526. * Return: QDF_STATUS
  1527. */
  1528. QDF_STATUS wlan_mlme_cfg_set_vht_num_sounding_dim(struct wlan_objmgr_psoc *psoc,
  1529. uint8_t value);
  1530. /**
  1531. * wlan_mlme_cfg_get_vht_mu_bformer() - gets vht mu beam former cap from
  1532. * cfg item
  1533. * @psoc: psoc context
  1534. * @value: pointer to get required data
  1535. *
  1536. * Return: QDF_STATUS
  1537. */
  1538. QDF_STATUS
  1539. wlan_mlme_cfg_get_vht_mu_bformer(struct wlan_objmgr_psoc *psoc, bool *value);
  1540. /**
  1541. * wlan_mlme_cfg_set_vht_mu_bformer() - sets vht mu beam former cap into
  1542. * cfg item
  1543. * @psoc: psoc context
  1544. * @value: data to be set
  1545. *
  1546. * Return: QDF_STATUS
  1547. */
  1548. QDF_STATUS
  1549. wlan_mlme_cfg_set_vht_mu_bformer(struct wlan_objmgr_psoc *psoc, bool value);
  1550. /**
  1551. * wlan_mlme_cfg_get_vht_mu_bformee() - gets vht mu beam formee cap from
  1552. * cfg item
  1553. * @psoc: psoc context
  1554. * @value: pointer to get required data
  1555. *
  1556. * Return: QDF_STATUS
  1557. */
  1558. QDF_STATUS
  1559. wlan_mlme_cfg_get_vht_mu_bformee(struct wlan_objmgr_psoc *psoc, bool *value);
  1560. /**
  1561. * wlan_mlme_cfg_set_vht_mu_bformee() - sets vht mu beam formee cap into
  1562. * cfg item
  1563. * @psoc: psoc context
  1564. * @value: data to be set
  1565. *
  1566. * Return: QDF_STATUS
  1567. */
  1568. QDF_STATUS
  1569. wlan_mlme_cfg_set_vht_mu_bformee(struct wlan_objmgr_psoc *psoc, bool value);
  1570. /**
  1571. * wlan_mlme_cfg_get_vht_txop_ps() - gets vht tx ops ps cap from
  1572. * cfg item
  1573. * @psoc: psoc context
  1574. * @value: pointer to get required data
  1575. *
  1576. * Return: QDF_STATUS
  1577. */
  1578. QDF_STATUS
  1579. wlan_mlme_cfg_get_vht_txop_ps(struct wlan_objmgr_psoc *psoc, bool *value);
  1580. /**
  1581. * wlan_mlme_cfg_set_vht_txop_ps() - sets vht tx ops ps cap into
  1582. * cfg item
  1583. * @psoc: psoc context
  1584. * @value: data to be set
  1585. *
  1586. * Return: QDF_STATUS
  1587. */
  1588. QDF_STATUS
  1589. wlan_mlme_cfg_set_vht_txop_ps(struct wlan_objmgr_psoc *psoc, bool value);
  1590. /**
  1591. * wlan_mlme_cfg_get_vht_ampdu_len_exp() - gets vht max AMPDU length exponent from
  1592. * cfg item
  1593. * @psoc: psoc context
  1594. * @value: pointer to get required data
  1595. *
  1596. * Return: QDF_STATUS
  1597. */
  1598. QDF_STATUS
  1599. wlan_mlme_cfg_get_vht_ampdu_len_exp(struct wlan_objmgr_psoc *psoc,
  1600. uint8_t *value);
  1601. /**
  1602. * wlan_mlme_cfg_set_vht_ampdu_len_exp() - sets vht max AMPDU length exponent into
  1603. * cfg item
  1604. * @psoc: psoc context
  1605. * @value: data to be set
  1606. *
  1607. * Return: QDF_STATUS
  1608. */
  1609. QDF_STATUS
  1610. wlan_mlme_cfg_set_vht_ampdu_len_exp(struct wlan_objmgr_psoc *psoc,
  1611. uint8_t value);
  1612. /**
  1613. * wlan_mlme_cfg_get_vht_rx_mcs_map() - gets vht rx mcs map from
  1614. * cfg item
  1615. * @psoc: psoc context
  1616. * @value: pointer to get required data
  1617. *
  1618. * Return: QDF_STATUS
  1619. */
  1620. QDF_STATUS wlan_mlme_cfg_get_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1621. uint32_t *value);
  1622. /**
  1623. * wlan_mlme_cfg_set_vht_rx_mcs_map() - sets rx mcs map into
  1624. * cfg item
  1625. * @psoc: psoc context
  1626. * @value: data to be set
  1627. *
  1628. * Return: QDF_STATUS
  1629. */
  1630. QDF_STATUS
  1631. wlan_mlme_cfg_set_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc, uint32_t value);
  1632. /**
  1633. * wlan_mlme_cfg_get_vht_tx_mcs_map() - gets vht tx mcs map from
  1634. * cfg item
  1635. * @psoc: psoc context
  1636. * @value: pointer to get required data
  1637. *
  1638. * Return: QDF_STATUS
  1639. */
  1640. QDF_STATUS wlan_mlme_cfg_get_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1641. uint32_t *value);
  1642. /**
  1643. * wlan_mlme_cfg_set_vht_tx_mcs_map() - sets tx mcs map into
  1644. * cfg item
  1645. * @psoc: psoc context
  1646. * @value: data to be set
  1647. *
  1648. * Return: QDF_STATUS
  1649. */
  1650. QDF_STATUS wlan_mlme_cfg_set_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1651. uint32_t value);
  1652. /**
  1653. * wlan_mlme_cfg_set_vht_rx_supp_data_rate() - sets rx supported data rate into
  1654. * cfg item
  1655. * @psoc: psoc context
  1656. * @value: data to be set
  1657. *
  1658. * Return: QDF_STATUS
  1659. */
  1660. QDF_STATUS
  1661. wlan_mlme_cfg_set_vht_rx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1662. uint32_t value);
  1663. /**
  1664. * wlan_mlme_cfg_set_vht_tx_supp_data_rate() - sets tx supported data rate into
  1665. * cfg item
  1666. * @psoc: psoc context
  1667. * @value: data to be set
  1668. *
  1669. * Return: QDF_STATUS
  1670. */
  1671. QDF_STATUS
  1672. wlan_mlme_cfg_set_vht_tx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1673. uint32_t value);
  1674. /**
  1675. * wlan_mlme_cfg_get_vht_basic_mcs_set() - gets basic mcs set from
  1676. * cfg item
  1677. * @psoc: psoc context
  1678. * @value: data to be set
  1679. *
  1680. * Return: QDF_STATUS
  1681. */
  1682. QDF_STATUS
  1683. wlan_mlme_cfg_get_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1684. uint32_t *value);
  1685. /**
  1686. * wlan_mlme_cfg_set_vht_basic_mcs_set() - sets basic mcs set into
  1687. * cfg item
  1688. * @psoc: psoc context
  1689. * @value: data to be set
  1690. *
  1691. * Return: QDF_STATUS
  1692. */
  1693. QDF_STATUS
  1694. wlan_mlme_cfg_set_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1695. uint32_t value);
  1696. /**
  1697. * wlan_mlme_get_vht_enable_tx_bf() - Get vht enable tx bf
  1698. * @psoc: psoc context
  1699. * @value: data to be set
  1700. *
  1701. * Return: QDF_STATUS
  1702. */
  1703. QDF_STATUS
  1704. wlan_mlme_get_vht_enable_tx_bf(struct wlan_objmgr_psoc *psoc, bool *value);
  1705. /**
  1706. * wlan_mlme_get_vht_tx_su_beamformer() - VHT enable tx su beamformer
  1707. * @psoc: psoc context
  1708. * @value: data to be set
  1709. *
  1710. * Return: QDF_STATUS
  1711. */
  1712. QDF_STATUS
  1713. wlan_mlme_get_vht_tx_su_beamformer(struct wlan_objmgr_psoc *psoc, bool *value);
  1714. /**
  1715. * wlan_mlme_get_vht_channel_width() - gets Channel width capability
  1716. * for 11ac
  1717. * @psoc: psoc context
  1718. * @value: data to be set
  1719. *
  1720. * Return: QDF_STATUS
  1721. */
  1722. QDF_STATUS wlan_mlme_get_vht_channel_width(struct wlan_objmgr_psoc *psoc,
  1723. uint8_t *value);
  1724. /**
  1725. * wlan_mlme_get_vht_rx_mcs_8_9() - VHT Rx MCS capability for 1x1 mode
  1726. * @psoc: psoc context
  1727. * @value: data to be set
  1728. *
  1729. * Return: QDF_STATUS
  1730. */
  1731. QDF_STATUS wlan_mlme_get_vht_rx_mcs_8_9(struct wlan_objmgr_psoc *psoc,
  1732. uint8_t *value);
  1733. /**
  1734. * wlan_mlme_get_vht_tx_mcs_8_9() - VHT Tx MCS capability for 1x1 mode
  1735. * @psoc: psoc context
  1736. * @value: data to be set
  1737. *
  1738. * Return: QDF_STATUS
  1739. */
  1740. QDF_STATUS
  1741. wlan_mlme_get_vht_tx_mcs_8_9(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1742. /**
  1743. * wlan_mlme_get_vht_rx_mcs_2x2() - VHT Rx MCS capability for 2x2 mode
  1744. * @psoc: psoc context
  1745. * @value: data to be set
  1746. *
  1747. * Return: QDF_STATUS
  1748. */
  1749. QDF_STATUS wlan_mlme_get_vht_rx_mcs_2x2(struct wlan_objmgr_psoc *psoc,
  1750. uint8_t *value);
  1751. /**
  1752. * wlan_mlme_get_vht_tx_mcs_2x2() - VHT Tx MCS capability for 2x2 mode
  1753. * @psoc: psoc context
  1754. * @value: data to be set
  1755. *
  1756. * Return: QDF_STATUS
  1757. */
  1758. QDF_STATUS wlan_mlme_get_vht_tx_mcs_2x2(struct wlan_objmgr_psoc *psoc,
  1759. uint8_t *value);
  1760. /**
  1761. * wlan_mlme_get_vht20_mcs9() - Enables VHT MCS9 in 20M BW operation
  1762. * @psoc: psoc context
  1763. * @value: data to be set
  1764. *
  1765. * Return: QDF_STATUS
  1766. */
  1767. QDF_STATUS
  1768. wlan_mlme_get_vht20_mcs9(struct wlan_objmgr_psoc *psoc, bool *value);
  1769. /**
  1770. * wlan_mlme_get_force_sap_enabled() - Get the value of force SAP enabled
  1771. * @psoc: psoc context
  1772. * @value: data to get
  1773. *
  1774. * Get the value of force SAP enabled
  1775. *
  1776. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1777. */
  1778. QDF_STATUS
  1779. wlan_mlme_get_force_sap_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1780. /**
  1781. * wlan_mlme_get_enable_dynamic_nss_chains_cfg() - API to get whether dynamic
  1782. * nss and chain config is enabled or not
  1783. * @psoc: psoc context
  1784. * @value: data to be set
  1785. *
  1786. * API to get whether dynamic nss and chain config is enabled or not
  1787. *
  1788. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1789. */
  1790. QDF_STATUS
  1791. wlan_mlme_get_enable_dynamic_nss_chains_cfg(struct wlan_objmgr_psoc *psoc,
  1792. bool *value);
  1793. /**
  1794. * wlan_mlme_get_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  1795. * @psoc: psoc context
  1796. * @value: data to be set
  1797. *
  1798. * Return: QDF_STATUS
  1799. */
  1800. QDF_STATUS
  1801. wlan_mlme_get_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool *value);
  1802. /**
  1803. * wlan_mlme_set_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  1804. * @psoc: psoc context
  1805. * @value: data to be set
  1806. *
  1807. * Return: QDF_STATUS
  1808. */
  1809. QDF_STATUS
  1810. wlan_mlme_set_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool value);
  1811. /**
  1812. * wlan_mlme_get_vht_enable_paid() - Enables/disables paid feature
  1813. * @psoc: psoc context
  1814. * @value: data to be set
  1815. *
  1816. * Return: QDF_STATUS
  1817. */
  1818. QDF_STATUS
  1819. wlan_mlme_get_vht_enable_paid(struct wlan_objmgr_psoc *psoc, bool *value);
  1820. /**
  1821. * wlan_mlme_get_vht_enable_gid() - Enables/disables VHT GID feature
  1822. * @psoc: psoc context
  1823. * @value: data to be set
  1824. *
  1825. * Return: QDF_STATUS
  1826. */
  1827. QDF_STATUS
  1828. wlan_mlme_get_vht_enable_gid(struct wlan_objmgr_psoc *psoc, bool *value);
  1829. /**
  1830. * wlan_mlme_get_vht_for_24ghz() - Enables/disables VHT for 24 ghz
  1831. * @psoc: psoc context
  1832. * @value: data to be set
  1833. *
  1834. * Return: QDF_STATUS
  1835. */
  1836. QDF_STATUS
  1837. wlan_mlme_get_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value);
  1838. /**
  1839. * wlan_mlme_set_vht_for_24ghz() - Enables/disables VHT for 24 ghz
  1840. * @psoc: psoc context
  1841. * @value: data to be set
  1842. *
  1843. * Return: QDF_STATUS
  1844. */
  1845. QDF_STATUS
  1846. wlan_mlme_set_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool value);
  1847. /**
  1848. * wlan_mlme_get_vendor_vht_for_24ghz() - nables/disables vendor VHT for 24 ghz
  1849. * @psoc: psoc context
  1850. * @value: data to be set
  1851. *
  1852. * Return: QDF_STATUS
  1853. */
  1854. QDF_STATUS
  1855. wlan_mlme_get_vendor_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value);
  1856. /**
  1857. * mlme_update_vht_cap() - update vht capabilities
  1858. * @psoc: psoc context
  1859. * @cfg: data to be set
  1860. *
  1861. * Return: QDF_STATUS
  1862. */
  1863. QDF_STATUS
  1864. mlme_update_vht_cap(struct wlan_objmgr_psoc *psoc, struct wma_tgt_vht_cap *cfg);
  1865. /**
  1866. * mlme_update_nss_vht_cap() - Update the number of spatial
  1867. * streams supported for vht
  1868. * @psoc: psoc context
  1869. *
  1870. * Return: QDF_STATUS
  1871. */
  1872. QDF_STATUS mlme_update_nss_vht_cap(struct wlan_objmgr_psoc *psoc);
  1873. /**
  1874. * wlan_mlme_is_sap_uapsd_enabled() - Get if SAP UAPSD is enabled/disabled
  1875. * @psoc: psoc context
  1876. * @value: value to be filled for caller
  1877. *
  1878. * Return: QDF_STATUS
  1879. */
  1880. QDF_STATUS wlan_mlme_is_sap_uapsd_enabled(struct wlan_objmgr_psoc *psoc,
  1881. bool *value);
  1882. /**
  1883. * wlan_mlme_set_sap_uapsd_flag() - Enable/Disable SAP UAPSD
  1884. * @psoc: psoc context
  1885. * @value: Enable/Disable control value for sap_uapsd_enabled field
  1886. *
  1887. * Return: QDF_STATUS
  1888. */
  1889. QDF_STATUS wlan_mlme_set_sap_uapsd_flag(struct wlan_objmgr_psoc *psoc,
  1890. bool value);
  1891. /**
  1892. * wlan_mlme_is_11h_enabled() - Get the 11h flag
  1893. * @psoc: psoc context
  1894. *
  1895. * Return: QDF_STATUS
  1896. */
  1897. QDF_STATUS
  1898. wlan_mlme_is_11h_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1899. /**
  1900. * wlan_mlme_set_11h_enabled() - Set the 11h flag
  1901. * @psoc: psoc context
  1902. *
  1903. * Return: QDF_STATUS
  1904. */
  1905. QDF_STATUS
  1906. wlan_mlme_set_11h_enabled(struct wlan_objmgr_psoc *psoc, bool value);
  1907. /**
  1908. * wlan_mlme_is_11d_enabled() - Get the 11d flag
  1909. * @psoc: psoc context
  1910. *
  1911. * Return: QDF_STATUS
  1912. */
  1913. QDF_STATUS
  1914. wlan_mlme_is_11d_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1915. /**
  1916. * wlan_mlme_set_11d_enabled() - Set the 11h flag
  1917. * @psoc: psoc context
  1918. *
  1919. * Return: QDF_STATUS
  1920. */
  1921. QDF_STATUS
  1922. wlan_mlme_set_11d_enabled(struct wlan_objmgr_psoc *psoc, bool value);
  1923. /**
  1924. * wlan_mlme_get_sta_miracast_mcc_rest_time() - Get STA/MIRACAST MCC rest time
  1925. *
  1926. * @psoc: pointer to psoc object
  1927. * @value: value which needs to filled by API
  1928. *
  1929. * This API gives rest time to be used when STA and MIRACAST MCC conc happens
  1930. *
  1931. * Return: QDF_STATUS
  1932. */
  1933. QDF_STATUS
  1934. wlan_mlme_get_sta_miracast_mcc_rest_time(struct wlan_objmgr_psoc *psoc,
  1935. uint32_t *value);
  1936. /**
  1937. * wlan_mlme_get_sap_mcc_chnl_avoid() - Check if SAP MCC needs to be avoided
  1938. *
  1939. * @psoc: pointer to psoc object
  1940. * @value: value which needs to filled by API
  1941. *
  1942. * This API fetches the user setting to determine if SAP MCC with other persona
  1943. * to be avoided.
  1944. *
  1945. * Return: QDF_STATUS
  1946. */
  1947. QDF_STATUS
  1948. wlan_mlme_get_sap_mcc_chnl_avoid(struct wlan_objmgr_psoc *psoc,
  1949. uint8_t *value);
  1950. /**
  1951. * wlan_mlme_get_mcc_bcast_prob_resp() - Get broadcast probe rsp in MCC
  1952. *
  1953. * @psoc: pointer to psoc object
  1954. * @value: value which needs to filled by API
  1955. *
  1956. * To get INI value which helps to determe whether to enable/disable use of
  1957. * broadcast probe response to increase the detectability of SAP in MCC mode.
  1958. *
  1959. *
  1960. * Return: QDF_STATUS
  1961. */
  1962. QDF_STATUS
  1963. wlan_mlme_get_mcc_bcast_prob_resp(struct wlan_objmgr_psoc *psoc,
  1964. uint8_t *value);
  1965. /**
  1966. * wlan_mlme_get_mcc_rts_cts_prot() - To get RTS-CTS protection in MCC.
  1967. *
  1968. * @psoc: pointer to psoc object
  1969. * @value: value which needs to filled by API
  1970. *
  1971. * To get INI value which helps to determine whether to enable/disable
  1972. * use of long duration RTS-CTS protection when SAP goes off
  1973. * channel in MCC mode.
  1974. *
  1975. * Return: QDF_STATUS
  1976. */
  1977. QDF_STATUS
  1978. wlan_mlme_get_mcc_rts_cts_prot(struct wlan_objmgr_psoc *psoc,
  1979. uint8_t *value);
  1980. /**
  1981. * wlan_mlme_get_mcc_feature() - To find out to enable/disable MCC feature
  1982. *
  1983. * @psoc: pointer to psoc object
  1984. * @value: value which needs to filled by API
  1985. *
  1986. * To get INI value which helps to determine whether to enable MCC feature
  1987. *
  1988. * Return: QDF_STATUS
  1989. */
  1990. QDF_STATUS
  1991. wlan_mlme_get_mcc_feature(struct wlan_objmgr_psoc *psoc,
  1992. uint8_t *value);
  1993. /**
  1994. * wlan_mlme_get_rrm_enabled() - Get the RRM enabled ini
  1995. * @psoc: pointer to psoc object
  1996. * @value: pointer to the value which will be filled for the caller
  1997. *
  1998. * Return: QDF Status
  1999. */
  2000. QDF_STATUS wlan_mlme_get_rrm_enabled(struct wlan_objmgr_psoc *psoc,
  2001. bool *value);
  2002. /**
  2003. * wlan_mlme_get_dtim_selection_diversity() - get dtim selection diversity
  2004. * bitmap
  2005. * @psoc: pointer to psoc object
  2006. * @dtim_selection_div: value that is requested by the caller
  2007. * This function gets the dtim selection diversity bitmap to be
  2008. * sent to the firmware
  2009. *
  2010. * Return: QDF_STATUS_SUCCESS - in case of success
  2011. */
  2012. QDF_STATUS wlan_mlme_get_dtim_selection_diversity(struct wlan_objmgr_psoc *psoc,
  2013. uint32_t *dtim_selection_div);
  2014. /**
  2015. * wlan_mlme_get_bmps_min_listen_interval() - get beacon mode powersave
  2016. * minimum listen interval value
  2017. * @psoc: pointer to psoc object
  2018. * @value: value that is requested by the caller
  2019. *
  2020. * Return: QDF_STATUS_SUCCESS - in case of success
  2021. */
  2022. QDF_STATUS wlan_mlme_get_bmps_min_listen_interval(struct wlan_objmgr_psoc *psoc,
  2023. uint32_t *value);
  2024. /**
  2025. * wlan_mlme_get_bmps_max_listen_interval() - get beacon mode powersave
  2026. * maximum listen interval value
  2027. * @psoc: pointer to psoc object
  2028. * @value: value that is requested by the caller
  2029. *
  2030. * Return: QDF_STATUS_SUCCESS - in case of success
  2031. */
  2032. QDF_STATUS wlan_mlme_get_bmps_max_listen_interval(struct wlan_objmgr_psoc *psoc,
  2033. uint32_t *value);
  2034. /**
  2035. * wlan_mlme_get_auto_bmps_timer_value() - get bmps timer value
  2036. * @psoc: pointer to psoc object
  2037. * @value: value that is requested by the caller
  2038. *
  2039. * Return: QDF_STATUS_SUCCESS - in case of success
  2040. */
  2041. QDF_STATUS wlan_mlme_get_auto_bmps_timer_value(struct wlan_objmgr_psoc *psoc,
  2042. uint32_t *value);
  2043. /**
  2044. * wlan_mlme_is_bmps_enabled() - check if beacon mode powersave is
  2045. * enabled/disabled
  2046. * @psoc: pointer to psoc object
  2047. * @value: value that is requested by the caller
  2048. *
  2049. * Return: QDF_STATUS_SUCCESS - in case of success
  2050. */
  2051. QDF_STATUS wlan_mlme_is_bmps_enabled(struct wlan_objmgr_psoc *psoc,
  2052. bool *value);
  2053. /**
  2054. * wlan_mlme_override_bmps_imps() - disable imps/bmps
  2055. * @psoc: pointer to psoc object
  2056. *
  2057. * Return: QDF_STATUS_SUCCESS - in case of success
  2058. */
  2059. QDF_STATUS wlan_mlme_override_bmps_imps(struct wlan_objmgr_psoc *psoc);
  2060. /**
  2061. * wlan_mlme_is_imps_enabled() - check if idle mode powersave is
  2062. * enabled/disabled
  2063. * @psoc: pointer to psoc object
  2064. * @value: value that is requested by the caller
  2065. *
  2066. * Return: QDF_STATUS_SUCCESS - in case of success
  2067. */
  2068. QDF_STATUS wlan_mlme_is_imps_enabled(struct wlan_objmgr_psoc *psoc,
  2069. bool *value);
  2070. /**
  2071. * wlan_mlme_get_wps_uuid() - get the wps uuid string
  2072. * @wps_params: pointer to mlme wps parameters structure
  2073. * @data: data to which the parameter is to be copied
  2074. *
  2075. * Return None
  2076. *
  2077. */
  2078. void
  2079. wlan_mlme_get_wps_uuid(struct wlan_mlme_wps_params *wps_params, uint8_t *data);
  2080. /**
  2081. * wlan_mlme_get_self_gen_frm_pwr() - get self gen frm pwr
  2082. * @psoc: pointer to psoc object
  2083. * @val: Pointer to the value which will be filled for the caller
  2084. *
  2085. * Return: QDF Status
  2086. */
  2087. QDF_STATUS
  2088. wlan_mlme_get_self_gen_frm_pwr(struct wlan_objmgr_psoc *psoc,
  2089. uint32_t *value);
  2090. /**
  2091. * wlan_mlme_get_4way_hs_offload() - get 4-way hs offload to fw cfg
  2092. * @psoc: pointer to psoc object
  2093. * @val: Pointer to the value which will be filled for the caller
  2094. *
  2095. * Return: QDF Status
  2096. */
  2097. QDF_STATUS
  2098. wlan_mlme_get_4way_hs_offload(struct wlan_objmgr_psoc *psoc, bool *value);
  2099. /**
  2100. * wlan_mlme_get_bmiss_skip_full_scan_value() - To get value of
  2101. * bmiss_skip_full_scan ini
  2102. * @psoc: pointer to psoc object
  2103. * @val: Pointer to the value which will be filled for the caller
  2104. *
  2105. * Return: QDF Status
  2106. */
  2107. QDF_STATUS
  2108. wlan_mlme_get_bmiss_skip_full_scan_value(struct wlan_objmgr_psoc *psoc,
  2109. bool *value);
  2110. /**
  2111. * mlme_get_peer_phymode() - get phymode of peer
  2112. * @psoc: pointer to psoc object
  2113. * @mac: Pointer to the mac addr of the peer
  2114. * @peer_phymode: phymode
  2115. *
  2116. * Return: QDF Status
  2117. */
  2118. QDF_STATUS
  2119. mlme_get_peer_phymode(struct wlan_objmgr_psoc *psoc, uint8_t *mac,
  2120. enum wlan_phymode *peer_phymode);
  2121. /**
  2122. * mlme_set_tgt_wpa3_roam_cap() - Set the target WPA3 roam support
  2123. * to mlme
  2124. * @psoc: pointer to PSOC object
  2125. * @akm_bitmap: Bitmap of akm suites supported for roaming by the firmware
  2126. *
  2127. * Return: QDF Status
  2128. */
  2129. QDF_STATUS mlme_set_tgt_wpa3_roam_cap(struct wlan_objmgr_psoc *psoc,
  2130. uint32_t akm_bitmap);
  2131. /**
  2132. * wlan_mlme_get_ignore_fw_reg_offload_ind() - Get the
  2133. * ignore_fw_reg_offload_ind ini
  2134. * @psoc: pointer to psoc object
  2135. * @disabled: output pointer to hold user config
  2136. *
  2137. * Return: QDF Status
  2138. */
  2139. QDF_STATUS
  2140. wlan_mlme_get_ignore_fw_reg_offload_ind(struct wlan_objmgr_psoc *psoc,
  2141. bool *disabled);
  2142. /**
  2143. * mlme_get_roam_trigger_str() - Get the string for enum
  2144. * WMI_ROAM_TRIGGER_REASON_ID reason.
  2145. * @roam_scan_trigger: roam scan trigger ID
  2146. *
  2147. * Return: Meaningful string from enum WMI_ROAM_TRIGGER_REASON_ID
  2148. */
  2149. char *mlme_get_roam_trigger_str(uint32_t roam_scan_trigger);
  2150. /**
  2151. * mlme_get_converted_timestamp() - Return time of the day
  2152. * from timestamp
  2153. * @timestamp: Timestamp value in milliseconds
  2154. * @time: Output buffer to fill time into
  2155. *
  2156. * Return: Time of the day in [HH:MM:SS.uS]
  2157. */
  2158. void mlme_get_converted_timestamp(uint32_t timestamp, char *time);
  2159. #if defined(WLAN_SAE_SINGLE_PMK) && defined(WLAN_FEATURE_ROAM_OFFLOAD)
  2160. /**
  2161. * wlan_mlme_set_sae_single_pmk_bss_cap - API to set WPA3 single pmk AP IE
  2162. * @psoc: Pointer to psoc object
  2163. * @vdev_id: vdev id
  2164. * @val: value to be set
  2165. *
  2166. * Return : None
  2167. */
  2168. void wlan_mlme_set_sae_single_pmk_bss_cap(struct wlan_objmgr_psoc *psoc,
  2169. uint8_t vdev_id, bool val);
  2170. /**
  2171. * wlan_mlme_update_sae_single_pmk - API to update mlme_pmkid_info
  2172. * @vdev: vdev object
  2173. * @sae_single_pmk: pointer to sae_single_pmk_info struct
  2174. *
  2175. * Return : None
  2176. */
  2177. void
  2178. wlan_mlme_update_sae_single_pmk(struct wlan_objmgr_vdev *vdev,
  2179. struct mlme_pmk_info *sae_single_pmk);
  2180. /**
  2181. * wlan_mlme_get_sae_single_pmk_info - API to get mlme_pmkid_info
  2182. * @vdev: vdev object
  2183. * @pmksa: pointer to PMKSA struct
  2184. *
  2185. * Return : None
  2186. */
  2187. void
  2188. wlan_mlme_get_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2189. struct wlan_mlme_sae_single_pmk *pmksa);
  2190. /**
  2191. * wlan_mlme_clear_sae_single_pmk_info - API to clear mlme_pmkid_info ap caps
  2192. * @vdev: vdev object
  2193. * @pmk : pmk info to clear
  2194. *
  2195. * Return : None
  2196. */
  2197. void wlan_mlme_clear_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2198. struct mlme_pmk_info *pmk);
  2199. #else
  2200. static inline void
  2201. wlan_mlme_set_sae_single_pmk_bss_cap(struct wlan_objmgr_psoc *psoc,
  2202. uint8_t vdev_id, bool val)
  2203. {
  2204. }
  2205. static inline void
  2206. wlan_mlme_update_sae_single_pmk(struct wlan_objmgr_vdev *vdev,
  2207. struct mlme_pmk_info *sae_single_pmk)
  2208. {
  2209. }
  2210. static inline void
  2211. wlan_mlme_get_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2212. struct wlan_mlme_sae_single_pmk *pmksa)
  2213. {
  2214. }
  2215. static inline
  2216. void wlan_mlme_clear_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2217. struct mlme_pmk_info *pmk)
  2218. {
  2219. }
  2220. #endif
  2221. /**
  2222. * mlme_get_roam_fail_reason_str() - Get fail string from enum
  2223. * WMI_ROAM_FAIL_REASON_ID
  2224. * @result: Roam fail reason
  2225. *
  2226. * Return: Meaningful string from enum
  2227. */
  2228. char *mlme_get_roam_fail_reason_str(uint32_t result);
  2229. /**
  2230. * mlme_get_sub_reason_str() - Get roam trigger sub reason from enum
  2231. * WMI_ROAM_TRIGGER_SUB_REASON_ID
  2232. * @sub_reason: Sub reason value
  2233. *
  2234. * Return: Meaningful string from enum WMI_ROAM_TRIGGER_SUB_REASON_ID
  2235. */
  2236. char *mlme_get_sub_reason_str(uint32_t sub_reason);
  2237. /**
  2238. * wlan_mlme_get_mgmt_max_retry() - Get the
  2239. * max mgmt retry
  2240. * @psoc: pointer to psoc object
  2241. * @max_retry: output pointer to hold user config
  2242. *
  2243. * Return: QDF Status
  2244. */
  2245. QDF_STATUS
  2246. wlan_mlme_get_mgmt_max_retry(struct wlan_objmgr_psoc *psoc,
  2247. uint8_t *max_retry);
  2248. /**
  2249. * wlan_mlme_get_status_ring_buffer() - Get the
  2250. * status of ring buffer
  2251. * @psoc: pointer to psoc object
  2252. * @enable_ring_buffer: output pointer to point the configured value of
  2253. * ring buffer
  2254. *
  2255. * Return: QDF_STATUS
  2256. */
  2257. QDF_STATUS
  2258. wlan_mlme_get_status_ring_buffer(struct wlan_objmgr_psoc *psoc,
  2259. bool *enable_ring_buffer);
  2260. /**
  2261. * wlan_mlme_get_peer_unmap_conf() - Indicate if peer unmap confirmation
  2262. * support is enabled or disabled
  2263. * @psoc: pointer to psoc object
  2264. *
  2265. * Return: true if peer unmap confirmation support is enabled, else false
  2266. */
  2267. bool wlan_mlme_get_peer_unmap_conf(struct wlan_objmgr_psoc *psoc);
  2268. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  2269. /**
  2270. * wlan_mlme_get_roam_reason_vsie_status() - Indicate if roam reason
  2271. * vsie is enabled or disabled
  2272. * @psoc: pointer to psoc object
  2273. * @roam_reason_vsie_enabled: pointer to hold value of roam reason
  2274. * vsie
  2275. *
  2276. * Return: QDF_STATUS
  2277. */
  2278. QDF_STATUS
  2279. wlan_mlme_get_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2280. uint8_t *roam_reason_vsie_enabled);
  2281. /**
  2282. * wlan_mlme_set_roam_reason_vsie_status() - Update roam reason vsie status
  2283. * @psoc: pointer to psoc object
  2284. * @roam_reason_vsie_enabled: value of roam reason vsie
  2285. *
  2286. * Return: QDF_STATUS
  2287. */
  2288. QDF_STATUS
  2289. wlan_mlme_set_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2290. uint8_t roam_reason_vsie_enabled);
  2291. /**
  2292. * wlan_mlme_get_roaming_triggers - Get the roaming triggers bitmap
  2293. * @psoc: Pointer to PSOC object
  2294. *
  2295. * Return: Roaming triggers value
  2296. */
  2297. uint32_t wlan_mlme_get_roaming_triggers(struct wlan_objmgr_psoc *psoc);
  2298. /**
  2299. * wlan_mlme_get_roaming_offload() - Get roaming offload setting
  2300. * @psoc: pointer to psoc object
  2301. * @val: Pointer to enable/disable roaming offload
  2302. *
  2303. * Return: QDF Status
  2304. */
  2305. QDF_STATUS
  2306. wlan_mlme_get_roaming_offload(struct wlan_objmgr_psoc *psoc,
  2307. bool *val);
  2308. /**
  2309. * wlan_mlme_get_enable_disconnect_roam_offload() - Get emergency roaming
  2310. * Enable/Disable status during deauth/disassoc
  2311. * @psoc: pointer to psoc object
  2312. * @val: Pointer to emergency roaming Enable/Disable status
  2313. * during deauth/disassoc
  2314. *
  2315. * Return: QDF Status
  2316. */
  2317. QDF_STATUS
  2318. wlan_mlme_get_enable_disconnect_roam_offload(struct wlan_objmgr_psoc *psoc,
  2319. bool *val);
  2320. /**
  2321. * wlan_mlme_get_enable_idle_roam() - Get Enable/Disable idle roaming status
  2322. * @psoc: pointer to psoc object
  2323. * @val: Pointer to Enable/Disable idle roaming status
  2324. *
  2325. * Return: QDF Status
  2326. */
  2327. QDF_STATUS
  2328. wlan_mlme_get_enable_idle_roam(struct wlan_objmgr_psoc *psoc, bool *val);
  2329. /**
  2330. * wlan_mlme_get_idle_roam_rssi_delta() - Get idle roam rssi delta
  2331. * @psoc: pointer to psoc object
  2332. * @val: Pointer to idle roam rssi delta
  2333. *
  2334. * Return: QDF Status
  2335. */
  2336. QDF_STATUS
  2337. wlan_mlme_get_idle_roam_rssi_delta(struct wlan_objmgr_psoc *psoc,
  2338. uint32_t *val);
  2339. /**
  2340. * wlan_mlme_get_idle_roam_inactive_time() - Get idle roam inactive time
  2341. * @psoc: pointer to psoc object
  2342. * @val: Pointer to idle roam inactive time
  2343. *
  2344. * Return: QDF Status
  2345. */
  2346. QDF_STATUS
  2347. wlan_mlme_get_idle_roam_inactive_time(struct wlan_objmgr_psoc *psoc,
  2348. uint32_t *val);
  2349. /**
  2350. * wlan_mlme_get_idle_data_packet_count() - Get idle data packet count
  2351. * @psoc: pointer to psoc object
  2352. * @val: Pointer to idle data packet count
  2353. *
  2354. * Return: QDF Status
  2355. */
  2356. QDF_STATUS
  2357. wlan_mlme_get_idle_data_packet_count(struct wlan_objmgr_psoc *psoc,
  2358. uint32_t *val);
  2359. /**
  2360. * wlan_mlme_get_idle_roam_min_rssi() - Get idle roam min rssi
  2361. * @psoc: pointer to psoc object
  2362. * @val: Pointer to idle roam min rssi
  2363. *
  2364. * Return: QDF Status
  2365. */
  2366. QDF_STATUS
  2367. wlan_mlme_get_idle_roam_min_rssi(struct wlan_objmgr_psoc *psoc, uint32_t *val);
  2368. /**
  2369. * wlan_mlme_get_idle_roam_band() - Get idle roam band
  2370. * @psoc: pointer to psoc object
  2371. * @val: Pointer to idle roam band
  2372. *
  2373. * Return: QDF Status
  2374. */
  2375. QDF_STATUS
  2376. wlan_mlme_get_idle_roam_band(struct wlan_objmgr_psoc *psoc, uint32_t *val);
  2377. #else
  2378. static inline QDF_STATUS
  2379. wlan_mlme_get_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2380. uint8_t *roam_reason_vsie_enable)
  2381. {
  2382. return QDF_STATUS_E_FAILURE;
  2383. }
  2384. static inline QDF_STATUS
  2385. wlan_mlme_set_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2386. uint8_t roam_reason_vsie_enable)
  2387. {
  2388. return QDF_STATUS_E_FAILURE;
  2389. }
  2390. static inline
  2391. uint32_t wlan_mlme_get_roaming_triggers(struct wlan_objmgr_psoc *psoc)
  2392. {
  2393. return 0xFFFF;
  2394. }
  2395. static inline QDF_STATUS
  2396. wlan_mlme_get_roaming_offload(struct wlan_objmgr_psoc *psoc,
  2397. bool *val)
  2398. {
  2399. *val = false;
  2400. return QDF_STATUS_SUCCESS;
  2401. }
  2402. #endif
  2403. /**
  2404. * wlan_mlme_get_dfs_chan_ageout_time() - Get the DFS Channel ageout time
  2405. * @psoc: pointer to psoc object
  2406. * @dfs_chan_ageout_time: output pointer to hold configured value of DFS
  2407. * Channel ageout time
  2408. *
  2409. * Return: QDF Status
  2410. */
  2411. QDF_STATUS
  2412. wlan_mlme_get_dfs_chan_ageout_time(struct wlan_objmgr_psoc *psoc,
  2413. uint8_t *dfs_chan_ageout_time);
  2414. #ifdef WLAN_FEATURE_SAE
  2415. /**
  2416. * wlan_mlme_get_sae_assoc_retry_count() - Get the sae assoc retry count
  2417. * @psoc: pointer to psoc object
  2418. * @retry_count: assoc retry count
  2419. *
  2420. * Return: QDF Status
  2421. */
  2422. QDF_STATUS
  2423. wlan_mlme_get_sae_assoc_retry_count(struct wlan_objmgr_psoc *psoc,
  2424. uint8_t *retry_count);
  2425. /**
  2426. * wlan_mlme_get_sae_assoc_retry_count() - Get the sae auth retry count
  2427. * @psoc: pointer to psoc object
  2428. * @retry_count: auth retry count
  2429. *
  2430. * Return: QDF Status
  2431. */
  2432. QDF_STATUS
  2433. wlan_mlme_get_sae_auth_retry_count(struct wlan_objmgr_psoc *psoc,
  2434. uint8_t *retry_count);
  2435. /**
  2436. * wlan_mlme_get_sae_roam_auth_retry_count() - Get the sae roam auth retry count
  2437. * @psoc: pointer to psoc object
  2438. * @retry_count: auth retry count
  2439. *
  2440. * Return: QDF Status
  2441. */
  2442. QDF_STATUS
  2443. wlan_mlme_get_sae_roam_auth_retry_count(struct wlan_objmgr_psoc *psoc,
  2444. uint8_t *retry_count);
  2445. #else
  2446. static inline QDF_STATUS
  2447. wlan_mlme_get_sae_assoc_retry_count(struct wlan_objmgr_psoc *psoc,
  2448. uint8_t *retry_count)
  2449. {
  2450. *retry_count = 0;
  2451. return QDF_STATUS_SUCCESS;
  2452. }
  2453. static inline QDF_STATUS
  2454. wlan_mlme_get_sae_auth_retry_count(struct wlan_objmgr_psoc *psoc,
  2455. uint8_t *retry_count)
  2456. {
  2457. *retry_count = 0;
  2458. return QDF_STATUS_SUCCESS;
  2459. }
  2460. static inline QDF_STATUS
  2461. wlan_mlme_get_sae_roam_auth_retry_count(struct wlan_objmgr_psoc *psoc,
  2462. uint8_t *retry_count)
  2463. {
  2464. *retry_count = 0;
  2465. return QDF_STATUS_SUCCESS;
  2466. }
  2467. #endif
  2468. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  2469. /**
  2470. * wlan_mlme_get_dual_sta_roaming_enabled - API to get if the dual sta
  2471. * roaming support is enabled.
  2472. * @psoc: Pointer to global psoc object
  2473. *
  2474. * Return: True if dual sta roaming feature is enabled else return false
  2475. */
  2476. bool
  2477. wlan_mlme_get_dual_sta_roaming_enabled(struct wlan_objmgr_psoc *psoc);
  2478. #else
  2479. static inline bool
  2480. wlan_mlme_get_dual_sta_roaming_enabled(struct wlan_objmgr_psoc *psoc)
  2481. {
  2482. return false;
  2483. }
  2484. #endif
  2485. /**
  2486. * mlme_store_fw_scan_channels - Update the valid channel list to mlme.
  2487. * @psoc: Pointer to global psoc object
  2488. * @chan_list: Source channel list pointer
  2489. *
  2490. * Currently the channel list is saved to wma_handle to be updated in the
  2491. * PCL command. This cannot be accesed at target_if while sending vdev
  2492. * set pcl command. So save the channel list to mlme.
  2493. *
  2494. * Return: QDF_STATUS
  2495. */
  2496. QDF_STATUS
  2497. mlme_store_fw_scan_channels(struct wlan_objmgr_psoc *psoc,
  2498. tSirUpdateChanList *chan_list);
  2499. /**
  2500. * mlme_get_fw_scan_channels - Copy the saved valid channel
  2501. * list to the provided buffer
  2502. * @psoc: Pointer to global psoc object
  2503. * @freq_list: Pointer to the frequency list buffer to be filled
  2504. * @saved_num_chan: Number of channels filled
  2505. *
  2506. * Return: QDF_STATUS
  2507. */
  2508. QDF_STATUS mlme_get_fw_scan_channels(struct wlan_objmgr_psoc *psoc,
  2509. uint32_t *freq_list,
  2510. uint8_t *saved_num_chan);
  2511. /**
  2512. * wlan_mlme_get_roam_scan_offload_enabled() - Roam scan offload enable or not
  2513. * @psoc: pointer to psoc object
  2514. * @val: Pointer to the value which will be filled for the caller
  2515. *
  2516. * Return: QDF Status
  2517. */
  2518. QDF_STATUS
  2519. wlan_mlme_get_roam_scan_offload_enabled(struct wlan_objmgr_psoc *psoc,
  2520. bool *val);
  2521. /**
  2522. * wlan_mlme_get_roam_bmiss_final_bcnt() - Get roam bmiss final count
  2523. * @psoc: pointer to psoc object
  2524. * @val: Pointer to the value which will be filled for the caller
  2525. *
  2526. * Return: QDF Status
  2527. */
  2528. QDF_STATUS
  2529. wlan_mlme_get_roam_bmiss_final_bcnt(struct wlan_objmgr_psoc *psoc,
  2530. uint8_t *val);
  2531. /**
  2532. * wlan_mlme_get_roam_bmiss_first_bcnt() - Get roam bmiss first count
  2533. * @psoc: pointer to psoc object
  2534. * @val: Pointer to the value which will be filled for the caller
  2535. *
  2536. * Return: QDF Status
  2537. */
  2538. QDF_STATUS
  2539. wlan_mlme_get_roam_bmiss_first_bcnt(struct wlan_objmgr_psoc *psoc,
  2540. uint8_t *val);
  2541. #endif /* _WLAN_MLME_API_H_ */