wlan_mlme_api.h 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511
  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. uint8_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. uint8_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_self_recovery() - Get the self recovery config
  295. * @psoc: pointer to psoc object
  296. * @self_recovery: Pointer to the variable from caller
  297. *
  298. * Return: QDF Status
  299. */
  300. QDF_STATUS wlan_mlme_get_self_recovery(struct wlan_objmgr_psoc *psoc,
  301. bool *self_recovery);
  302. /**
  303. * wlan_mlme_get_sub_20_chan_width() - Get the sub 20 chan width config
  304. * @psoc: pointer to psoc object
  305. * @sub_20_chan_width: Pointer to the variable from caller
  306. *
  307. * Return: QDF Status
  308. */
  309. QDF_STATUS wlan_mlme_get_sub_20_chan_width(struct wlan_objmgr_psoc *psoc,
  310. uint8_t *sub_20_chan_width);
  311. /**
  312. * wlan_mlme_get_fw_timeout_crash() - Get the fw timeout crash config
  313. * @psoc: pointer to psoc object
  314. * @fw_timeout_crash: Pointer to the variable from caller
  315. *
  316. * Return: QDF Status
  317. */
  318. QDF_STATUS wlan_mlme_get_fw_timeout_crash(struct wlan_objmgr_psoc *psoc,
  319. bool *fw_timeout_crash);
  320. /**
  321. * wlan_mlme_get_ito_repeat_count() - Get the fw timeout crash config
  322. * @psoc: pointer to psoc object
  323. * @ito_repeat_count: Pointer to the variable from caller
  324. *
  325. * Return: QDF Status
  326. */
  327. QDF_STATUS wlan_mlme_get_ito_repeat_count(struct wlan_objmgr_psoc *psoc,
  328. uint8_t *ito_repeat_count);
  329. /**
  330. * wlan_mlme_get_acs_with_more_param() - Get the acs_with_more_param flag
  331. * @psoc: pointer to psoc object
  332. * @value: Value that needs to be set from the caller
  333. *
  334. * Return: QDF Status
  335. */
  336. QDF_STATUS wlan_mlme_get_acs_with_more_param(struct wlan_objmgr_psoc *psoc,
  337. bool *value);
  338. /**
  339. * wlan_mlme_get_auto_channel_weight() - Get the auto channel weight
  340. * @psoc: pointer to psoc object
  341. * @value: Value that needs to be set from the caller
  342. *
  343. * Return: QDF Status
  344. */
  345. QDF_STATUS wlan_mlme_get_auto_channel_weight(struct wlan_objmgr_psoc *psoc,
  346. uint32_t *value);
  347. /**
  348. * wlan_mlme_get_vendor_acs_support() - Get the vendor based channel selece
  349. * @psoc: pointer to psoc object
  350. * @value: Value that needs to be set from the caller
  351. *
  352. * Return: QDF Status
  353. */
  354. QDF_STATUS wlan_mlme_get_vendor_acs_support(struct wlan_objmgr_psoc *psoc,
  355. bool *value);
  356. /**
  357. * wlan_mlme_get_acs_support_for_dfs_ltecoex() - Get the flag for
  358. * acs support for dfs ltecoex
  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
  365. wlan_mlme_get_acs_support_for_dfs_ltecoex(struct wlan_objmgr_psoc *psoc,
  366. bool *value);
  367. /**
  368. * wlan_mlme_get_external_acs_policy() - Get the flag for external acs policy
  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_external_acs_policy(struct wlan_objmgr_psoc *psoc,
  376. bool *value);
  377. /**
  378. *
  379. * wlan_mlme_get_sap_inactivity_override() - Check if sap max inactivity
  380. * override flag is set.
  381. * @psoc: pointer to psoc object
  382. * @sme_config - Sme config struct
  383. *
  384. * Return: QDF Status
  385. */
  386. void wlan_mlme_get_sap_inactivity_override(struct wlan_objmgr_psoc *psoc,
  387. bool *value);
  388. /**
  389. * wlan_mlme_get_ignore_peer_ht_mode() - Get the ignore peer ht opmode flag
  390. * @psoc: pointer to psoc object
  391. * @value: Value that needs to be set from the caller
  392. *
  393. * Return: QDF Status
  394. */
  395. QDF_STATUS wlan_mlme_get_ignore_peer_ht_mode(struct wlan_objmgr_psoc *psoc,
  396. bool *value);
  397. /**
  398. * wlan_mlme_get_tx_chainmask_cck() - Get the tx_chainmask_cfg value
  399. * @psoc: pointer to psoc object
  400. * @value: Value that needs to be set from the caller
  401. *
  402. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  403. */
  404. QDF_STATUS wlan_mlme_get_tx_chainmask_cck(struct wlan_objmgr_psoc *psoc,
  405. bool *value);
  406. /**
  407. * wlan_mlme_get_tx_chainmask_1ss() - Get the tx_chainmask_1ss value
  408. * @psoc: pointer to psoc object
  409. * @value: Value that caller needs to get
  410. *
  411. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  412. */
  413. QDF_STATUS wlan_mlme_get_tx_chainmask_1ss(struct wlan_objmgr_psoc *psoc,
  414. uint8_t *value);
  415. /**
  416. * wlan_mlme_get_num_11b_tx_chains() - Get the number of 11b only tx chains
  417. * @psoc: pointer to psoc object
  418. * @value: Value that needs to be set from the caller
  419. *
  420. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  421. */
  422. QDF_STATUS wlan_mlme_get_num_11b_tx_chains(struct wlan_objmgr_psoc *psoc,
  423. uint16_t *value);
  424. /**
  425. * wlan_mlme_get_num_11ag_tx_chains() - get the total number of 11a/g tx chains
  426. * @psoc: pointer to psoc object
  427. * @value: Value that caller needs to get
  428. *
  429. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  430. */
  431. QDF_STATUS wlan_mlme_get_num_11ag_tx_chains(struct wlan_objmgr_psoc *psoc,
  432. uint16_t *value);
  433. /**
  434. * wlan_mlme_get_bt_chain_separation_flag() - get the enable_bt_chain_separation
  435. * flag
  436. * @psoc: pointer to psoc object
  437. * @value: Value that needs to be set from the caller
  438. *
  439. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  440. */
  441. QDF_STATUS wlan_mlme_get_bt_chain_separation_flag(struct wlan_objmgr_psoc *psoc,
  442. bool *value);
  443. /**
  444. * wlan_mlme_configure_chain_mask() - configure chainmask parameters
  445. * @psoc: pointer to psoc object
  446. * @session_id: vdev_id
  447. *
  448. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  449. */
  450. QDF_STATUS wlan_mlme_configure_chain_mask(struct wlan_objmgr_psoc *psoc,
  451. uint8_t session_id);
  452. /**
  453. * wlan_mlme_get_listen_interval() - Get listen interval
  454. * @psoc: pointer to psoc object
  455. * @value: Pointer to value that needs to be filled by MLME
  456. *
  457. * Return: QDF Status
  458. */
  459. QDF_STATUS wlan_mlme_get_listen_interval(struct wlan_objmgr_psoc *psoc,
  460. int *value);
  461. /**
  462. * wlan_mlme_set_sap_listen_interval() - Set the sap listen interval
  463. * @psoc: pointer to psoc object
  464. * @value: Value that needs to be set from the caller
  465. *
  466. * Return: QDF Status
  467. */
  468. QDF_STATUS wlan_mlme_set_sap_listen_interval(struct wlan_objmgr_psoc *psoc,
  469. int value);
  470. /**
  471. * wlan_mlme_set_assoc_sta_limit() - Set the assoc sta limit
  472. * @psoc: pointer to psoc object
  473. * @value: Value that needs to be set from the caller
  474. *
  475. * Return: QDF Status
  476. */
  477. QDF_STATUS wlan_mlme_set_assoc_sta_limit(struct wlan_objmgr_psoc *psoc,
  478. int value);
  479. /**
  480. * wlan_mlme_set_rmc_action_period_freq() - Set the rmc action period frequency
  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_rmc_action_period_freq(struct wlan_objmgr_psoc *psoc,
  487. int value);
  488. /**
  489. * wlan_mlme_set_sap_get_peer_info() - get the sap get peer info
  490. * @psoc: pointer to psoc object
  491. * @value: Value that needs to be set from the caller
  492. *
  493. * Return: QDF Status
  494. */
  495. QDF_STATUS wlan_mlme_get_sap_get_peer_info(struct wlan_objmgr_psoc *psoc,
  496. bool *value);
  497. /**
  498. * wlan_mlme_set_sap_get_peer_info() - set the sap get peer info
  499. * @psoc: pointer to psoc object
  500. * @value: value to overwrite the sap get peer info
  501. *
  502. * Return: QDF Status
  503. */
  504. QDF_STATUS wlan_mlme_set_sap_get_peer_info(struct wlan_objmgr_psoc *psoc,
  505. bool value);
  506. /**
  507. * wlan_mlme_get_sap_bcast_deauth_enabled() - get the enable/disable value
  508. * for broadcast deauth in sap
  509. * @psoc: pointer to psoc object
  510. * @value: Value that needs to get from the caller
  511. *
  512. * Return: QDF Status
  513. */
  514. QDF_STATUS
  515. wlan_mlme_get_sap_bcast_deauth_enabled(struct wlan_objmgr_psoc *psoc,
  516. bool *value);
  517. /**
  518. * wlan_mlme_get_sap_allow_all_channels() - get the value of sap allow all
  519. * channels
  520. * @psoc: pointer to psoc object
  521. * @value: Value that needs to be set from the caller
  522. *
  523. * Return: QDF Status
  524. */
  525. QDF_STATUS wlan_mlme_get_sap_allow_all_channels(struct wlan_objmgr_psoc *psoc,
  526. bool *value);
  527. /**
  528. * wlan_mlme_is_6g_sap_fd_enabled() - get the enable/disable value
  529. * for 6g sap fils discovery
  530. * @psoc: pointer to psoc object
  531. * @value: Value that needs to get from the caller
  532. *
  533. * Return: QDF Status
  534. */
  535. QDF_STATUS
  536. wlan_mlme_is_6g_sap_fd_enabled(struct wlan_objmgr_psoc *psoc,
  537. bool *value);
  538. /**
  539. * wlan_mlme_get_sap_allow_all_channels() - get the value sap max peers
  540. * @psoc: pointer to psoc object
  541. * @value: Value that needs to be set from the caller
  542. *
  543. * Return: QDF Status
  544. */
  545. QDF_STATUS wlan_mlme_get_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  546. int *value);
  547. /**
  548. * wlan_mlme_set_sap_max_peers() - set 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_set_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  555. int value);
  556. /**
  557. * wlan_mlme_get_sap_max_offload_peers() - get the value sap max offload 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_get_sap_max_offload_peers(struct wlan_objmgr_psoc *psoc,
  564. int *value);
  565. /**
  566. * wlan_mlme_get_sap_max_offload_reorder_buffs() - get the value sap max offload
  567. * reorder buffs.
  568. * @psoc: pointer to psoc object
  569. * @value: Value that needs to be set from the caller
  570. *
  571. * Return: QDF Status
  572. */
  573. QDF_STATUS wlan_mlme_get_sap_max_offload_reorder_buffs(struct wlan_objmgr_psoc
  574. *psoc, int *value);
  575. /**
  576. * wlan_mlme_get_sap_chn_switch_bcn_count() - get the value sap max channel
  577. * switch beacon count
  578. * @psoc: pointer to psoc object
  579. * @value: Value that needs to be set from the caller
  580. *
  581. * Return: QDF Status
  582. */
  583. QDF_STATUS wlan_mlme_get_sap_chn_switch_bcn_count(struct wlan_objmgr_psoc *psoc,
  584. int *value);
  585. /**
  586. * wlan_mlme_get_sap_chn_switch_mode() - get the sap channel
  587. * switch mode
  588. * @psoc: pointer to psoc object
  589. * @value: Value that needs to be set from the caller
  590. *
  591. * Return: QDF Status
  592. */
  593. QDF_STATUS wlan_mlme_get_sap_chn_switch_mode(struct wlan_objmgr_psoc *psoc,
  594. bool *value);
  595. /**
  596. * wlan_mlme_get_sap_internal_restart() - get the sap internal
  597. * restart
  598. * @psoc: pointer to psoc object
  599. * @value: Value that needs to be set from the caller
  600. *
  601. * Return: QDF Status
  602. */
  603. QDF_STATUS wlan_mlme_get_sap_internal_restart(struct wlan_objmgr_psoc *psoc,
  604. bool *value);
  605. /**
  606. * wlan_mlme_get_sap_max_modulated_dtim() - get the max modulated dtim
  607. * restart
  608. * @psoc: pointer to psoc object
  609. * @value: Value that needs to be set from the caller
  610. *
  611. * Return: QDF Status
  612. */
  613. QDF_STATUS wlan_mlme_get_sap_max_modulated_dtim(struct wlan_objmgr_psoc *psoc,
  614. uint8_t *value);
  615. /**
  616. * wlan_mlme_get_sap_chan_pref_location() - get the sap chan pref location
  617. * restart
  618. * @psoc: pointer to psoc object
  619. * @value: Value that needs to be set from the caller
  620. *
  621. * Return: QDF Status
  622. */
  623. QDF_STATUS wlan_mlme_get_sap_chan_pref_location(struct wlan_objmgr_psoc *psoc,
  624. uint8_t *value);
  625. /**
  626. * wlan_mlme_get_sap_country_priority() - get the sap country code priority
  627. * restart
  628. * @psoc: pointer to psoc object
  629. * @value: Value that needs to be set from the caller
  630. *
  631. * Return: QDF Status
  632. */
  633. QDF_STATUS wlan_mlme_get_sap_country_priority(struct wlan_objmgr_psoc *psoc,
  634. bool *value);
  635. /**
  636. * wlan_mlme_get_sap_reduced_beacon_interval() - get the sap reduced
  637. * beacon interval
  638. * @psoc: pointer to psoc object
  639. * @value: Value that needs to be set from the caller
  640. *
  641. * Return: QDF Status
  642. */
  643. QDF_STATUS wlan_mlme_get_sap_reduced_beacon_interval(struct wlan_objmgr_psoc
  644. *psoc, int *value);
  645. /**
  646. * wlan_mlme_get_sap_chan_switch_rate_enabled() - get the sap rate hostapd
  647. * enabled beacon interval
  648. * @psoc: pointer to psoc object
  649. * @value: Value that needs to be set from the caller
  650. *
  651. * Return: QDF Status
  652. */
  653. QDF_STATUS wlan_mlme_get_sap_chan_switch_rate_enabled(struct wlan_objmgr_psoc
  654. *psoc, bool *value);
  655. /**
  656. * wlan_mlme_get_sap_force_11n_for_11ac() - get the sap 11n for 11ac
  657. *
  658. * @psoc: pointer to psoc object
  659. * @value: Value that needs to be set from the caller
  660. *
  661. * Return: QDF Status
  662. */
  663. QDF_STATUS wlan_mlme_get_sap_force_11n_for_11ac(struct wlan_objmgr_psoc
  664. *psoc, bool *value);
  665. /**
  666. * wlan_mlme_get_go_force_11n_for_11ac() - get the go 11n for 11ac
  667. *
  668. * @psoc: pointer to psoc object
  669. * @value: Value that needs to be set from the caller
  670. *
  671. * Return: QDF Status
  672. */
  673. QDF_STATUS wlan_mlme_get_go_force_11n_for_11ac(struct wlan_objmgr_psoc
  674. *psoc, bool *value);
  675. /**
  676. * wlan_mlme_is_go_11ac_override() - Override 11ac bandwdith for P2P GO
  677. *
  678. * @psoc: pointer to psoc object
  679. * @value: pointer to the value which will be filled for the caller
  680. *
  681. * Return: QDF Status
  682. */
  683. QDF_STATUS wlan_mlme_is_go_11ac_override(struct wlan_objmgr_psoc *psoc,
  684. bool *value);
  685. /**
  686. * wlan_mlme_is_sap_11ac_override() - Override 11ac bandwdith for SAP
  687. *
  688. * @psoc: pointer to psoc object
  689. * @value: pointer to the value which will be filled for the caller
  690. *
  691. * Return: QDF Status
  692. */
  693. QDF_STATUS wlan_mlme_is_sap_11ac_override(struct wlan_objmgr_psoc *psoc,
  694. bool *value);
  695. /**
  696. * wlan_mlme_set_go_11ac_override() - set override 11ac bandwdith for P2P GO
  697. *
  698. * @psoc: pointer to psoc object
  699. * @value: pointer to the value which will be filled for the caller
  700. *
  701. * Return: QDF Status
  702. */
  703. QDF_STATUS wlan_mlme_set_go_11ac_override(struct wlan_objmgr_psoc *psoc,
  704. bool value);
  705. /**
  706. * wlan_mlme_set_sap_11ac_override() - set override 11ac bandwdith for SAP
  707. *
  708. * @psoc: pointer to psoc object
  709. * @value: pointer to the value which will be filled for the caller
  710. *
  711. * Return: QDF Status
  712. */
  713. QDF_STATUS wlan_mlme_set_sap_11ac_override(struct wlan_objmgr_psoc *psoc,
  714. bool value);
  715. /**
  716. * wlan_mlme_get_oce_sta_enabled_info() - Get the OCE feature enable
  717. * info for STA
  718. * @psoc: pointer to psoc object
  719. * @value: pointer to the value which will be filled for the caller
  720. *
  721. * Return: QDF Status
  722. */
  723. QDF_STATUS wlan_mlme_get_oce_sta_enabled_info(struct wlan_objmgr_psoc *psoc,
  724. bool *value);
  725. /**
  726. * wlan_mlme_get_bigtk_support() - Get the BIGTK support
  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_bigtk_support(struct wlan_objmgr_psoc *psoc,
  733. bool *value);
  734. /**
  735. * wlan_mlme_get_host_scan_abort_support() - Get support for stop all host
  736. * scans service capability.
  737. * @psoc: PSOC object pointer
  738. *
  739. * Return: True if capability is supported, else False
  740. */
  741. bool wlan_mlme_get_host_scan_abort_support(struct wlan_objmgr_psoc *psoc);
  742. /**
  743. * wlan_mlme_get_oce_sap_enabled_info() - Get the OCE feature enable
  744. * info for SAP
  745. * @psoc: pointer to psoc object
  746. * @value: pointer to the value which will be filled for the caller
  747. *
  748. * Return: QDF Status
  749. */
  750. QDF_STATUS wlan_mlme_get_oce_sap_enabled_info(struct wlan_objmgr_psoc *psoc,
  751. bool *value);
  752. /**
  753. * wlan_mlme_update_oce_flags() - Update the oce flags to FW
  754. * @pdev: pointer to pdev object
  755. *
  756. * Return: void
  757. */
  758. void wlan_mlme_update_oce_flags(struct wlan_objmgr_pdev *pdev);
  759. #ifdef WLAN_FEATURE_11AX
  760. /**
  761. * wlan_mlme_cfg_get_he_ul_mumimo() - Get the HE Ul Mumio
  762. * @psoc: pointer to psoc object
  763. * @value: Value that needs to be set from the caller
  764. *
  765. * Return: QDF Status
  766. */
  767. QDF_STATUS wlan_mlme_cfg_get_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  768. uint32_t *value);
  769. /**
  770. * wlan_mlme_cfg_set_he_ul_mumimo() - Set the HE Ul Mumio
  771. * @psoc: pointer to psoc object
  772. * @value: Value that needs to be set from the caller
  773. *
  774. * Return: QDF Status
  775. */
  776. QDF_STATUS wlan_mlme_cfg_set_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  777. uint32_t value);
  778. /**
  779. * mlme_cfg_get_he_caps() - Get the HE capability info
  780. * @psoc: pointer to psoc object
  781. * @he_cap: Caps that needs to be filled.
  782. *
  783. * Return: QDF Status
  784. */
  785. QDF_STATUS mlme_cfg_get_he_caps(struct wlan_objmgr_psoc *psoc,
  786. tDot11fIEhe_cap *he_cap);
  787. /**
  788. * wlan_mlme_cfg_get_enable_ul_mimo() - Get the HE Ul mimo
  789. * @psoc: pointer to psoc object
  790. * @value: Value that needs to be set from the caller
  791. *
  792. * Return: QDF Status
  793. */
  794. QDF_STATUS wlan_mlme_cfg_get_enable_ul_mimo(struct wlan_objmgr_psoc *psoc,
  795. uint8_t *value);
  796. /**
  797. * wlan_mlme_cfg_get_enable_ul_ofdm() - Get enable ul ofdm
  798. * @psoc: pointer to psoc object
  799. * @value: Value that needs to be set from the caller
  800. *
  801. * Return: QDF Status
  802. */
  803. QDF_STATUS wlan_mlme_cfg_get_enable_ul_ofdm(struct wlan_objmgr_psoc *psoc,
  804. uint8_t *value);
  805. /**
  806. * mlme_update_tgt_he_caps_in_cfg() - Update tgt he cap in mlme component
  807. *
  808. * @psoc: pointer to psoc object
  809. * @cfg: pointer to config params from target
  810. *
  811. * This api to be used by callers to update
  812. * he caps in mlme.
  813. *
  814. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  815. */
  816. QDF_STATUS mlme_update_tgt_he_caps_in_cfg(struct wlan_objmgr_psoc *psoc,
  817. struct wma_tgt_cfg *cfg);
  818. #endif
  819. /**
  820. * wlan_mlme_is_ap_prot_enabled() - check if sap protection is enabled
  821. * @psoc: pointer to psoc object
  822. *
  823. * Return: is_ap_prot_enabled flag
  824. */
  825. bool wlan_mlme_is_ap_prot_enabled(struct wlan_objmgr_psoc *psoc);
  826. /**
  827. * wlan_mlme_get_ap_protection_mode() - Get ap_protection_mode value
  828. * @psoc: pointer to psoc object
  829. * @value: pointer to the value which needs to be filled for the caller
  830. *
  831. * Return: QDF Status
  832. */
  833. QDF_STATUS wlan_mlme_get_ap_protection_mode(struct wlan_objmgr_psoc *psoc,
  834. uint16_t *value);
  835. /**
  836. * wlan_mlme_is_ap_obss_prot_enabled() - Get ap_obss_protection is
  837. * enabled/disabled
  838. * @psoc: pointer to psoc object
  839. * @value: pointer to the value which needs to be filled for the caller
  840. *
  841. * Return: QDF Status
  842. */
  843. QDF_STATUS wlan_mlme_is_ap_obss_prot_enabled(struct wlan_objmgr_psoc *psoc,
  844. bool *value);
  845. /**
  846. * wlan_mlme_get_rts_threshold() - Get the RTS threshold config
  847. * @psoc: pointer to psoc object
  848. * @value: pointer to the value which will be filled for the caller
  849. *
  850. * Return: QDF Status
  851. */
  852. QDF_STATUS wlan_mlme_get_rts_threshold(struct wlan_objmgr_psoc *psoc,
  853. uint32_t *value);
  854. /**
  855. * wlan_mlme_set_rts_threshold() - Set the RTS threshold config
  856. * @psoc: pointer to psoc object
  857. * @value: Value that needs to be set from the caller
  858. *
  859. * Return: QDF Status
  860. */
  861. QDF_STATUS wlan_mlme_set_rts_threshold(struct wlan_objmgr_psoc *psoc,
  862. uint32_t value);
  863. /**
  864. * wlan_mlme_get_frag_threshold() - Get the Fragmentation threshold
  865. * config
  866. * @psoc: pointer to psoc object
  867. * @value: pointer to the value which will be filled for the caller
  868. *
  869. * Return: QDF Status
  870. */
  871. QDF_STATUS wlan_mlme_get_frag_threshold(struct wlan_objmgr_psoc *psoc,
  872. uint32_t *value);
  873. /**
  874. * wlan_mlme_set_frag_threshold() - Set the Fragmentation threshold
  875. * config
  876. * @psoc: pointer to psoc object
  877. * @value: Value that needs to be set from the caller
  878. *
  879. * Return: QDF Status
  880. */
  881. QDF_STATUS wlan_mlme_set_frag_threshold(struct wlan_objmgr_psoc *psoc,
  882. uint32_t value);
  883. /**
  884. * wlan_mlme_get_fils_enabled_info() - Get the fils enable info for driver
  885. * @psoc: pointer to psoc object
  886. * @value: pointer to the value which will be filled for the caller
  887. *
  888. * Return: QDF Status
  889. */
  890. QDF_STATUS wlan_mlme_get_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  891. bool *value);
  892. /**
  893. * wlan_mlme_set_fils_enabled_info() - Set the fils enable info for driver
  894. * @psoc: pointer to psoc object
  895. * @value: value that needs to be set from the caller
  896. *
  897. * Return: QDF Status
  898. */
  899. QDF_STATUS wlan_mlme_set_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  900. bool value);
  901. /**
  902. * wlan_mlme_get_tl_delayed_trgr_frm_int() - Get delay interval(in ms)
  903. * of UAPSD auto trigger
  904. * @psoc: pointer to psoc object
  905. * @value: Value that needs to be set from the caller
  906. *
  907. * Return: None
  908. */
  909. void wlan_mlme_get_tl_delayed_trgr_frm_int(struct wlan_objmgr_psoc *psoc,
  910. uint32_t *value);
  911. /**
  912. * wlan_mlme_get_wmm_dir_ac_vi() - Get TSPEC direction
  913. * for VI
  914. * @psoc: pointer to psoc object
  915. * @value: Value that needs to be set from the caller
  916. *
  917. * Return: QDF Status
  918. */
  919. QDF_STATUS
  920. wlan_mlme_get_wmm_dir_ac_vi(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  921. /**
  922. * wlan_mlme_get_wmm_nom_msdu_size_ac_vi() - Get normal
  923. * MSDU size for VI
  924. * @psoc: pointer to psoc object
  925. * @value: Value that needs to be set from the caller
  926. *
  927. * Return: QDF Status
  928. */
  929. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_vi(struct wlan_objmgr_psoc *psoc,
  930. uint16_t *value);
  931. /**
  932. * wlan_mlme_get_wmm_mean_data_rate_ac_vi() - mean data
  933. * rate for VI
  934. * @psoc: pointer to psoc object
  935. * @value: Value that needs to be set from the caller
  936. *
  937. * Return: QDF Status
  938. */
  939. QDF_STATUS
  940. wlan_mlme_get_wmm_mean_data_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  941. uint32_t *value);
  942. /**
  943. * wlan_mlme_get_wmm_min_phy_rate_ac_vi() - min PHY
  944. * rate for VI
  945. * @psoc: pointer to psoc object
  946. * @value: Value that needs to be set from the caller
  947. *
  948. * Return: QDF Status
  949. */
  950. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  951. uint32_t *value);
  952. /**
  953. * wlan_mlme_get_wmm_sba_ac_vi() - surplus bandwidth
  954. * allowance for VI
  955. * @psoc: pointer to psoc object
  956. * @value: Value that needs to be set from the caller
  957. *
  958. * Return: QDF Status
  959. */
  960. QDF_STATUS
  961. wlan_mlme_get_wmm_sba_ac_vi(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  962. /**
  963. * wlan_mlme_get_wmm_uapsd_vi_srv_intv() - Get Uapsd service
  964. * interval for video
  965. * @psoc: pointer to psoc object
  966. * @value: pointer to the value which will be filled for the caller
  967. *
  968. * Return: QDF Status
  969. */
  970. QDF_STATUS
  971. wlan_mlme_get_wmm_uapsd_vi_srv_intv(struct wlan_objmgr_psoc *psoc,
  972. uint32_t *value);
  973. /**
  974. * wlan_mlme_get_wmm_uapsd_vi_sus_intv() - Get Uapsd suspension
  975. * interval for video
  976. * @psoc: pointer to psoc object
  977. * @value: pointer to the value which will be filled for the caller
  978. *
  979. * Return: QDF Status
  980. */
  981. QDF_STATUS
  982. wlan_mlme_get_wmm_uapsd_vi_sus_intv(struct wlan_objmgr_psoc *psoc,
  983. uint32_t *value);
  984. /**
  985. * wlan_mlme_get_wmm_dir_ac_be() - Get TSPEC direction
  986. * for BE
  987. * @psoc: pointer to psoc object
  988. * @value: Value that needs to be set from the caller
  989. *
  990. * Return: QDF Status
  991. */
  992. QDF_STATUS
  993. wlan_mlme_get_wmm_dir_ac_be(struct wlan_objmgr_psoc *psoc,
  994. uint8_t *value);
  995. /**
  996. * wlan_mlme_get_wmm_nom_msdu_size_ac_be() - Get normal
  997. * MSDU size for BE
  998. * @psoc: pointer to psoc object
  999. * @value: Value that needs to be set from the caller
  1000. *
  1001. * Return: QDF Status
  1002. */
  1003. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_be(struct wlan_objmgr_psoc *psoc,
  1004. uint16_t *value);
  1005. /**
  1006. * wlan_mlme_get_wmm_mean_data_rate_ac_be() - mean data
  1007. * rate for BE
  1008. * @psoc: pointer to psoc object
  1009. * @value: Value that needs to be set from the caller
  1010. *
  1011. * Return: QDF Status
  1012. */
  1013. QDF_STATUS wlan_mlme_get_wmm_mean_data_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  1014. uint32_t *value);
  1015. /**
  1016. * wlan_mlme_get_wmm_min_phy_rate_ac_be() - min PHY
  1017. * rate for BE
  1018. * @psoc: pointer to psoc object
  1019. * @value: Value that needs to be set from the caller
  1020. *
  1021. * Return: QDF Status
  1022. */
  1023. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  1024. uint32_t *value);
  1025. /**
  1026. * wlan_mlme_get_wmm_sba_ac_be() - surplus bandwidth
  1027. * allowance for BE
  1028. * @psoc: pointer to psoc object
  1029. * @value: Value that needs to be set from the caller
  1030. *
  1031. * Return: QDF Status
  1032. */
  1033. QDF_STATUS
  1034. wlan_mlme_get_wmm_sba_ac_be(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1035. /**
  1036. * wlan_mlme_get_wmm_uapsd_be_srv_intv() - Get Uapsd service
  1037. * interval for BE
  1038. * @psoc: pointer to psoc object
  1039. * @value: pointer to the value which will be filled for the caller
  1040. *
  1041. * Return: QDF Status
  1042. */
  1043. QDF_STATUS
  1044. wlan_mlme_get_wmm_uapsd_be_srv_intv(struct wlan_objmgr_psoc *psoc,
  1045. uint32_t *value);
  1046. /**
  1047. * wlan_mlme_get_wmm_uapsd_be_sus_intv() - Get Uapsd suspension
  1048. * interval for BE
  1049. * @psoc: pointer to psoc object
  1050. * @value: pointer to the value which will be filled for the caller
  1051. *
  1052. * Return: QDF Status
  1053. */
  1054. QDF_STATUS
  1055. wlan_mlme_get_wmm_uapsd_be_sus_intv(struct wlan_objmgr_psoc *psoc,
  1056. uint32_t *value);
  1057. /**
  1058. * wlan_mlme_get_wmm_dir_ac_bk() - Get TSPEC direction
  1059. * for BK
  1060. * @psoc: pointer to psoc object
  1061. * @value: Value that needs to be set from the caller
  1062. *
  1063. * Return: QDF Status
  1064. */
  1065. QDF_STATUS
  1066. wlan_mlme_get_wmm_dir_ac_bk(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1067. /**
  1068. * wlan_mlme_get_wmm_nom_msdu_size_ac_bk() - Get normal
  1069. * MSDU size for BK
  1070. * @psoc: pointer to psoc object
  1071. * @value: Value that needs to be set from the caller
  1072. *
  1073. * Return: QDF Status
  1074. */
  1075. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_bk(struct wlan_objmgr_psoc *psoc,
  1076. uint16_t *value);
  1077. /**
  1078. * wlan_mlme_get_wmm_mean_data_rate_ac_bk() - mean data
  1079. * rate for BK
  1080. * @psoc: pointer to psoc object
  1081. * @value: Value that needs to be set from the caller
  1082. *
  1083. * Return: QDF Status
  1084. */
  1085. QDF_STATUS wlan_mlme_get_wmm_mean_data_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  1086. uint32_t *value);
  1087. /**
  1088. * wlan_mlme_get_wmm_min_phy_rate_ac_bk() - min PHY
  1089. * rate for BK
  1090. * @psoc: pointer to psoc object
  1091. * @value: Value that needs to be set from the caller
  1092. *
  1093. * Return: QDF Status
  1094. */
  1095. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  1096. uint32_t *value);
  1097. /**
  1098. * wlan_mlme_get_wmm_sba_ac_bk() - surplus bandwidth
  1099. * allowance for BE
  1100. * @psoc: pointer to psoc object
  1101. * @value: Value that needs to be set from the caller
  1102. *
  1103. * Return: QDF Status
  1104. */
  1105. QDF_STATUS
  1106. wlan_mlme_get_wmm_sba_ac_bk(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1107. /**
  1108. * wlan_mlme_get_wmm_uapsd_bk_srv_intv() - Get Uapsd service
  1109. * interval for BK
  1110. * @psoc: pointer to psoc object
  1111. * @value: pointer to the value which will be filled for the caller
  1112. *
  1113. * Return: QDF Status
  1114. */
  1115. QDF_STATUS
  1116. wlan_mlme_get_wmm_uapsd_bk_srv_intv(struct wlan_objmgr_psoc *psoc,
  1117. uint32_t *value);
  1118. /**
  1119. * wlan_mlme_get_wmm_uapsd_bk_sus_intv() - Get Uapsd suspension
  1120. * interval for BK
  1121. * @psoc: pointer to psoc object
  1122. * @value: pointer to the value which will be filled for the caller
  1123. *
  1124. * Return: QDF Status
  1125. */
  1126. QDF_STATUS
  1127. wlan_mlme_get_wmm_uapsd_bk_sus_intv(struct wlan_objmgr_psoc *psoc,
  1128. uint32_t *value);
  1129. /**
  1130. * wlan_mlme_get_wmm_mode() - Enable WMM feature
  1131. * @psoc: pointer to psoc object
  1132. * @value: pointer to the value which will be filled for the caller
  1133. *
  1134. * Return: QDF Status
  1135. */
  1136. QDF_STATUS
  1137. wlan_mlme_get_wmm_mode(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1138. /**
  1139. * wlan_mlme_get_80211e_is_enabled() - Enable 802.11e feature
  1140. * @psoc: pointer to psoc object
  1141. * @value: pointer to the value which will be filled for the caller
  1142. *
  1143. * Return: QDF Status
  1144. */
  1145. QDF_STATUS
  1146. wlan_mlme_get_80211e_is_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1147. /**
  1148. * wlan_mlme_get_wmm_uapsd_mask() - setup U-APSD mask for ACs
  1149. * @psoc: pointer to psoc object
  1150. * @value: pointer to the value which will be filled for the caller
  1151. *
  1152. * Return: QDF Status
  1153. */
  1154. QDF_STATUS
  1155. wlan_mlme_get_wmm_uapsd_mask(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1156. /**
  1157. * wlan_mlme_get_implicit_qos_is_enabled() - Enable implicit QOS
  1158. * @psoc: pointer to psoc object
  1159. * @value: pointer to the value which will be filled for the caller
  1160. *
  1161. * Return: QDF Status
  1162. */
  1163. QDF_STATUS wlan_mlme_get_implicit_qos_is_enabled(struct wlan_objmgr_psoc *psoc,
  1164. bool *value);
  1165. #ifdef FEATURE_WLAN_ESE
  1166. /**
  1167. * wlan_mlme_get_inactivity_interval() - Infra Inactivity Interval
  1168. * @psoc: pointer to psoc object
  1169. * @value: pointer to the value which will be filled for the caller
  1170. *
  1171. * Return: None
  1172. */
  1173. void
  1174. wlan_mlme_get_inactivity_interval(struct wlan_objmgr_psoc *psoc,
  1175. uint32_t *value);
  1176. #endif
  1177. /**
  1178. * wlan_mlme_get_is_ts_burst_size_enable() - Get TS burst size flag
  1179. * @psoc: pointer to psoc object
  1180. * @value: pointer to the value which will be filled for the caller
  1181. *
  1182. * Return: None
  1183. */
  1184. void wlan_mlme_get_is_ts_burst_size_enable(struct wlan_objmgr_psoc *psoc,
  1185. bool *value);
  1186. /**
  1187. * wlan_mlme_get_ts_info_ack_policy() - Get TS ack policy
  1188. * @psoc: pointer to psoc object
  1189. * @value: pointer to the value which will be filled for the caller
  1190. *
  1191. * Return: None
  1192. */
  1193. void wlan_mlme_get_ts_info_ack_policy(struct wlan_objmgr_psoc *psoc,
  1194. enum mlme_ts_info_ack_policy *value);
  1195. /**
  1196. * wlan_mlme_get_ts_acm_value_for_ac() - Get ACM value for AC
  1197. * @psoc: pointer to psoc object
  1198. * @value: pointer to the value which will be filled for the caller
  1199. *
  1200. * Return: QDF Status
  1201. */
  1202. QDF_STATUS
  1203. wlan_mlme_get_ts_acm_value_for_ac(struct wlan_objmgr_psoc *psoc, bool *value);
  1204. /**
  1205. * wlan_mlme_get_wmm_dir_ac_vo() - Get TSPEC direction
  1206. * for VO
  1207. * @psoc: pointer to psoc object
  1208. * @value: Value that needs to be set from the caller
  1209. *
  1210. * Return: QDF Status
  1211. */
  1212. QDF_STATUS
  1213. wlan_mlme_get_wmm_dir_ac_vo(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1214. /**
  1215. * wlan_mlme_get_wmm_nom_msdu_size_ac_vo() - Get normal
  1216. * MSDU size for VO
  1217. * @psoc: pointer to psoc object
  1218. * @value: Value that needs to be set from the caller
  1219. *
  1220. * Return: QDF Status
  1221. */
  1222. QDF_STATUS wlan_mlme_get_wmm_nom_msdu_size_ac_vo(struct wlan_objmgr_psoc *psoc,
  1223. uint16_t *value);
  1224. /**
  1225. * wlan_mlme_get_wmm_mean_data_rate_ac_vo() - mean data rate for VO
  1226. * @psoc: pointer to psoc object
  1227. * @value: Value that needs to be set from the caller
  1228. *
  1229. * Return: QDF Status
  1230. */
  1231. QDF_STATUS wlan_mlme_get_wmm_mean_data_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  1232. uint32_t *value);
  1233. /**
  1234. * wlan_mlme_get_wmm_min_phy_rate_ac_vo() - min PHY
  1235. * rate for VO
  1236. * @psoc: pointer to psoc object
  1237. * @value: Value that needs to be set from the caller
  1238. *
  1239. * Return: QDF Status
  1240. */
  1241. QDF_STATUS wlan_mlme_get_wmm_min_phy_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  1242. uint32_t *value);
  1243. /**
  1244. * wlan_mlme_get_wmm_sba_ac_vo() - surplus bandwidth allowance for VO
  1245. * @psoc: pointer to psoc object
  1246. * @value: Value that needs to be set from the caller
  1247. *
  1248. * Return: QDF Status
  1249. */
  1250. QDF_STATUS
  1251. wlan_mlme_get_wmm_sba_ac_vo(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1252. /**
  1253. * wlan_mlme_set_enable_bcast_probe_rsp() - Set enable bcast probe resp info
  1254. * @psoc: pointer to psoc object
  1255. * @value: value that needs to be set from the caller
  1256. *
  1257. * Return: QDF Status
  1258. */
  1259. QDF_STATUS wlan_mlme_set_enable_bcast_probe_rsp(struct wlan_objmgr_psoc *psoc,
  1260. bool value);
  1261. /**
  1262. * wlan_mlme_get_wmm_uapsd_vo_srv_intv() - Get Uapsd service
  1263. * interval for voice
  1264. * @psoc: pointer to psoc object
  1265. * @value: pointer to the value which will be filled for the caller
  1266. *
  1267. * Return: QDF Status
  1268. */
  1269. QDF_STATUS
  1270. wlan_mlme_get_wmm_uapsd_vo_srv_intv(struct wlan_objmgr_psoc *psoc,
  1271. uint32_t *value);
  1272. /**
  1273. * wlan_mlme_get_wmm_uapsd_vo_sus_intv() - Get Uapsd suspension
  1274. * interval for voice
  1275. * @psoc: pointer to psoc object
  1276. * @value: pointer to the value which will be filled for the caller
  1277. *
  1278. * Return: QDF Status
  1279. */
  1280. QDF_STATUS
  1281. wlan_mlme_get_wmm_uapsd_vo_sus_intv(struct wlan_objmgr_psoc *psoc,
  1282. uint32_t *value);
  1283. /**
  1284. * wlan_mlme_cfg_get_vht_max_mpdu_len() - gets vht max mpdu length from cfg item
  1285. * @psoc: psoc context
  1286. * @value: pointer to get required data
  1287. *
  1288. * Return: QDF_STATUS
  1289. */
  1290. QDF_STATUS
  1291. wlan_mlme_cfg_get_vht_max_mpdu_len(struct wlan_objmgr_psoc *psoc,
  1292. uint8_t *value);
  1293. /**
  1294. * wlan_mlme_cfg_set_vht_max_mpdu_len() - sets vht max mpdu length into cfg item
  1295. * @psoc: psoc context
  1296. * @value: data to be set
  1297. *
  1298. * Return: QDF_STATUS
  1299. */
  1300. QDF_STATUS
  1301. wlan_mlme_cfg_set_vht_max_mpdu_len(struct wlan_objmgr_psoc *psoc,
  1302. uint8_t value);
  1303. /**
  1304. * wlan_mlme_cfg_get_vht_chan_width() - gets vht supported channel width from
  1305. * cfg item
  1306. * @psoc: psoc context
  1307. * @value: pointer to get required data
  1308. *
  1309. * Return: QDF_STATUS
  1310. */
  1311. QDF_STATUS wlan_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1312. uint8_t *value);
  1313. /**
  1314. * wlan_mlme_cfg_set_vht_chan_width() - sets vht supported channel width into
  1315. * cfg item
  1316. * @psoc: psoc context
  1317. * @value: data to be set
  1318. *
  1319. * Return: QDF_STATUS
  1320. */
  1321. QDF_STATUS wlan_mlme_cfg_set_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1322. uint8_t value);
  1323. /**
  1324. * wlan_mlme_cfg_get_vht_chan_width() - sets vht supported channel width into
  1325. * cfg item
  1326. * @psoc: psoc context
  1327. * @value: data to be set
  1328. *
  1329. * Return: QDF_STATUS
  1330. */
  1331. QDF_STATUS wlan_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1332. uint8_t *value);
  1333. /**
  1334. * wlan_mlme_cfg_get_vht_ldpc_coding_cap() - gets vht ldpc coding cap from
  1335. * cfg item
  1336. * @psoc: psoc context
  1337. * @value: pointer to get required data
  1338. *
  1339. * Return: QDF_STATUS
  1340. */
  1341. QDF_STATUS wlan_mlme_cfg_get_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1342. bool *value);
  1343. /**
  1344. * wlan_mlme_cfg_set_vht_ldpc_coding_cap() - sets vht ldpc coding cap into
  1345. * cfg item
  1346. * @psoc: psoc context
  1347. * @value: data to be set
  1348. *
  1349. * Return: QDF_STATUS
  1350. */
  1351. QDF_STATUS wlan_mlme_cfg_set_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1352. bool value);
  1353. /**
  1354. * wlan_mlme_cfg_get_vht_short_gi_80mhz() - gets vht short gi 80MHz from
  1355. * cfg item
  1356. * @psoc: psoc context
  1357. * @value: pointer to get required data
  1358. *
  1359. * Return: QDF_STATUS
  1360. */
  1361. QDF_STATUS wlan_mlme_cfg_get_vht_short_gi_80mhz(struct wlan_objmgr_psoc *psoc,
  1362. bool *value);
  1363. /**
  1364. * wlan_mlme_cfg_set_vht_short_gi_80mhz() - sets vht short gi 80MHz into
  1365. * cfg item
  1366. * @psoc: psoc context
  1367. * @value: data to be set
  1368. *
  1369. * Return: QDF_STATUS
  1370. */
  1371. QDF_STATUS wlan_mlme_cfg_set_vht_short_gi_80mhz(struct wlan_objmgr_psoc *psoc,
  1372. bool value);
  1373. /**
  1374. * wlan_mlme_cfg_get_short_gi_160_mhz() - gets vht short gi 160MHz from
  1375. * cfg item
  1376. * @psoc: psoc context
  1377. * @value: pointer to get required data
  1378. *
  1379. * Return: QDF_STATUS
  1380. */
  1381. QDF_STATUS
  1382. wlan_mlme_cfg_get_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc, bool *value);
  1383. /**
  1384. * wlan_mlme_cfg_set_short_gi_160_mhz() - sets vht short gi 160MHz into
  1385. * cfg item
  1386. * @psoc: psoc context
  1387. * @value: data to be set
  1388. *
  1389. * Return: QDF_STATUS
  1390. */
  1391. QDF_STATUS
  1392. wlan_mlme_cfg_set_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc, bool value);
  1393. /**
  1394. * wlan_mlme_cfg_get_vht_tx_stbc() - gets vht tx stbc from
  1395. * cfg item
  1396. * @psoc: psoc context
  1397. * @value: pointer to get required data
  1398. *
  1399. * Return: QDF_STATUS
  1400. */
  1401. QDF_STATUS
  1402. wlan_mlme_cfg_get_vht_tx_stbc(struct wlan_objmgr_psoc *psoc, bool *value);
  1403. /**
  1404. * wlan_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1405. * cfg item
  1406. * @psoc: psoc context
  1407. * @value: pointer to get required data
  1408. *
  1409. * Return: QDF_STATUS
  1410. */
  1411. QDF_STATUS
  1412. wlan_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc, bool *value);
  1413. /**
  1414. * wlan_mlme_cfg_set_vht_tx_stbc() - sets vht tx stbc into
  1415. * cfg item
  1416. * @psoc: psoc context
  1417. * @value: data to be set
  1418. *
  1419. * Return: QDF_STATUS
  1420. */
  1421. QDF_STATUS
  1422. wlan_mlme_cfg_set_vht_tx_stbc(struct wlan_objmgr_psoc *psoc, bool value);
  1423. /**
  1424. * wlan_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1425. * cfg item
  1426. * @psoc: psoc context
  1427. * @value: pointer to get required data
  1428. *
  1429. * Return: QDF_STATUS
  1430. */
  1431. QDF_STATUS
  1432. wlan_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc, bool *value);
  1433. /**
  1434. * wlan_mlme_cfg_set_vht_rx_stbc() - sets vht rx stbc into
  1435. * cfg item
  1436. * @psoc: psoc context
  1437. * @value: data to be set
  1438. *
  1439. * Return: QDF_STATUS
  1440. */
  1441. QDF_STATUS
  1442. wlan_mlme_cfg_set_vht_rx_stbc(struct wlan_objmgr_psoc *psoc, bool value);
  1443. /**
  1444. * wlan_mlme_cfg_get_vht_su_bformer() - gets vht su beam former cap from
  1445. * cfg item
  1446. * @psoc: psoc context
  1447. * @value: pointer to get required data
  1448. *
  1449. * Return: QDF_STATUS
  1450. */
  1451. QDF_STATUS
  1452. wlan_mlme_cfg_get_vht_su_bformer(struct wlan_objmgr_psoc *psoc, bool *value);
  1453. /**
  1454. * wlan_mlme_cfg_set_vht_su_bformer() - sets vht su beam former cap into
  1455. * cfg item
  1456. * @psoc: psoc context
  1457. * @value: data to be set
  1458. *
  1459. * Return: QDF_STATUS
  1460. */
  1461. QDF_STATUS
  1462. wlan_mlme_cfg_set_vht_su_bformer(struct wlan_objmgr_psoc *psoc, bool value);
  1463. /**
  1464. * wlan_mlme_cfg_set_vht_su_bformee() - sets vht su beam formee cap into
  1465. * cfg item
  1466. * @psoc: psoc context
  1467. * @value: data to be set
  1468. *
  1469. * Return: QDF_STATUS
  1470. */
  1471. QDF_STATUS
  1472. wlan_mlme_cfg_set_vht_su_bformee(struct wlan_objmgr_psoc *psoc, bool value);
  1473. /**
  1474. * wlan_mlme_cfg_set_vht_tx_bfee_ant_supp() - sets vht Beamformee antenna
  1475. * support cap
  1476. * into cfg item
  1477. * @psoc: psoc context
  1478. * @value: data to be set
  1479. *
  1480. * Return: QDF_STATUS
  1481. */
  1482. QDF_STATUS wlan_mlme_cfg_set_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1483. uint8_t value);
  1484. /**
  1485. * wlan_mlme_cfg_get_vht_tx_bfee_ant_supp() - Gets vht Beamformee antenna
  1486. * support cap into cfg item
  1487. *
  1488. * @psoc: psoc context
  1489. * @value: data to be set
  1490. *
  1491. * Return: QDF_STATUS
  1492. */
  1493. QDF_STATUS wlan_mlme_cfg_get_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1494. uint8_t *value);
  1495. /**
  1496. * wlan_mlme_cfg_set_vht_num_sounding_dim() - sets vht no of sounding dimensions
  1497. * into cfg item
  1498. * @psoc: psoc context
  1499. * @value: data to be set
  1500. *
  1501. * Return: QDF_STATUS
  1502. */
  1503. QDF_STATUS wlan_mlme_cfg_set_vht_num_sounding_dim(struct wlan_objmgr_psoc *psoc,
  1504. uint8_t value);
  1505. /**
  1506. * wlan_mlme_cfg_get_vht_mu_bformer() - gets vht mu beam former cap from
  1507. * cfg item
  1508. * @psoc: psoc context
  1509. * @value: pointer to get required data
  1510. *
  1511. * Return: QDF_STATUS
  1512. */
  1513. QDF_STATUS
  1514. wlan_mlme_cfg_get_vht_mu_bformer(struct wlan_objmgr_psoc *psoc, bool *value);
  1515. /**
  1516. * wlan_mlme_cfg_set_vht_mu_bformer() - sets vht mu beam former cap into
  1517. * cfg item
  1518. * @psoc: psoc context
  1519. * @value: data to be set
  1520. *
  1521. * Return: QDF_STATUS
  1522. */
  1523. QDF_STATUS
  1524. wlan_mlme_cfg_set_vht_mu_bformer(struct wlan_objmgr_psoc *psoc, bool value);
  1525. /**
  1526. * wlan_mlme_cfg_get_vht_mu_bformee() - gets vht mu beam formee cap from
  1527. * cfg item
  1528. * @psoc: psoc context
  1529. * @value: pointer to get required data
  1530. *
  1531. * Return: QDF_STATUS
  1532. */
  1533. QDF_STATUS
  1534. wlan_mlme_cfg_get_vht_mu_bformee(struct wlan_objmgr_psoc *psoc, bool *value);
  1535. /**
  1536. * wlan_mlme_cfg_set_vht_mu_bformee() - sets vht mu beam formee cap into
  1537. * cfg item
  1538. * @psoc: psoc context
  1539. * @value: data to be set
  1540. *
  1541. * Return: QDF_STATUS
  1542. */
  1543. QDF_STATUS
  1544. wlan_mlme_cfg_set_vht_mu_bformee(struct wlan_objmgr_psoc *psoc, bool value);
  1545. /**
  1546. * wlan_mlme_cfg_get_vht_txop_ps() - gets vht tx ops ps cap from
  1547. * cfg item
  1548. * @psoc: psoc context
  1549. * @value: pointer to get required data
  1550. *
  1551. * Return: QDF_STATUS
  1552. */
  1553. QDF_STATUS
  1554. wlan_mlme_cfg_get_vht_txop_ps(struct wlan_objmgr_psoc *psoc, bool *value);
  1555. /**
  1556. * wlan_mlme_cfg_set_vht_txop_ps() - sets vht tx ops ps cap into
  1557. * cfg item
  1558. * @psoc: psoc context
  1559. * @value: data to be set
  1560. *
  1561. * Return: QDF_STATUS
  1562. */
  1563. QDF_STATUS
  1564. wlan_mlme_cfg_set_vht_txop_ps(struct wlan_objmgr_psoc *psoc, bool value);
  1565. /**
  1566. * wlan_mlme_cfg_get_vht_ampdu_len_exp() - gets vht max AMPDU length exponent from
  1567. * cfg item
  1568. * @psoc: psoc context
  1569. * @value: pointer to get required data
  1570. *
  1571. * Return: QDF_STATUS
  1572. */
  1573. QDF_STATUS
  1574. wlan_mlme_cfg_get_vht_ampdu_len_exp(struct wlan_objmgr_psoc *psoc,
  1575. uint8_t *value);
  1576. /**
  1577. * wlan_mlme_cfg_set_vht_ampdu_len_exp() - sets vht max AMPDU length exponent into
  1578. * cfg item
  1579. * @psoc: psoc context
  1580. * @value: data to be set
  1581. *
  1582. * Return: QDF_STATUS
  1583. */
  1584. QDF_STATUS
  1585. wlan_mlme_cfg_set_vht_ampdu_len_exp(struct wlan_objmgr_psoc *psoc,
  1586. uint8_t value);
  1587. /**
  1588. * wlan_mlme_cfg_get_vht_rx_mcs_map() - gets vht rx mcs map from
  1589. * cfg item
  1590. * @psoc: psoc context
  1591. * @value: pointer to get required data
  1592. *
  1593. * Return: QDF_STATUS
  1594. */
  1595. QDF_STATUS wlan_mlme_cfg_get_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1596. uint32_t *value);
  1597. /**
  1598. * wlan_mlme_cfg_set_vht_rx_mcs_map() - sets rx mcs map into
  1599. * cfg item
  1600. * @psoc: psoc context
  1601. * @value: data to be set
  1602. *
  1603. * Return: QDF_STATUS
  1604. */
  1605. QDF_STATUS
  1606. wlan_mlme_cfg_set_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc, uint32_t value);
  1607. /**
  1608. * wlan_mlme_cfg_get_vht_tx_mcs_map() - gets vht tx mcs map from
  1609. * cfg item
  1610. * @psoc: psoc context
  1611. * @value: pointer to get required data
  1612. *
  1613. * Return: QDF_STATUS
  1614. */
  1615. QDF_STATUS wlan_mlme_cfg_get_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1616. uint32_t *value);
  1617. /**
  1618. * wlan_mlme_cfg_set_vht_tx_mcs_map() - sets tx mcs map into
  1619. * cfg item
  1620. * @psoc: psoc context
  1621. * @value: data to be set
  1622. *
  1623. * Return: QDF_STATUS
  1624. */
  1625. QDF_STATUS wlan_mlme_cfg_set_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1626. uint32_t value);
  1627. /**
  1628. * wlan_mlme_cfg_set_vht_rx_supp_data_rate() - sets rx supported data rate into
  1629. * cfg item
  1630. * @psoc: psoc context
  1631. * @value: data to be set
  1632. *
  1633. * Return: QDF_STATUS
  1634. */
  1635. QDF_STATUS
  1636. wlan_mlme_cfg_set_vht_rx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1637. uint32_t value);
  1638. /**
  1639. * wlan_mlme_cfg_set_vht_tx_supp_data_rate() - sets tx supported data rate into
  1640. * cfg item
  1641. * @psoc: psoc context
  1642. * @value: data to be set
  1643. *
  1644. * Return: QDF_STATUS
  1645. */
  1646. QDF_STATUS
  1647. wlan_mlme_cfg_set_vht_tx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1648. uint32_t value);
  1649. /**
  1650. * wlan_mlme_cfg_get_vht_basic_mcs_set() - gets basic mcs set from
  1651. * cfg item
  1652. * @psoc: psoc context
  1653. * @value: data to be set
  1654. *
  1655. * Return: QDF_STATUS
  1656. */
  1657. QDF_STATUS
  1658. wlan_mlme_cfg_get_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1659. uint32_t *value);
  1660. /**
  1661. * wlan_mlme_cfg_set_vht_basic_mcs_set() - sets basic mcs set into
  1662. * cfg item
  1663. * @psoc: psoc context
  1664. * @value: data to be set
  1665. *
  1666. * Return: QDF_STATUS
  1667. */
  1668. QDF_STATUS
  1669. wlan_mlme_cfg_set_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1670. uint32_t value);
  1671. /**
  1672. * wlan_mlme_get_vht_enable_tx_bf() - Get vht enable tx bf
  1673. * @psoc: psoc context
  1674. * @value: data to be set
  1675. *
  1676. * Return: QDF_STATUS
  1677. */
  1678. QDF_STATUS
  1679. wlan_mlme_get_vht_enable_tx_bf(struct wlan_objmgr_psoc *psoc, bool *value);
  1680. /**
  1681. * wlan_mlme_get_vht_tx_su_beamformer() - VHT enable tx su beamformer
  1682. * @psoc: psoc context
  1683. * @value: data to be set
  1684. *
  1685. * Return: QDF_STATUS
  1686. */
  1687. QDF_STATUS
  1688. wlan_mlme_get_vht_tx_su_beamformer(struct wlan_objmgr_psoc *psoc, bool *value);
  1689. /**
  1690. * wlan_mlme_get_vht_channel_width() - gets Channel width capability
  1691. * for 11ac
  1692. * @psoc: psoc context
  1693. * @value: data to be set
  1694. *
  1695. * Return: QDF_STATUS
  1696. */
  1697. QDF_STATUS wlan_mlme_get_vht_channel_width(struct wlan_objmgr_psoc *psoc,
  1698. uint8_t *value);
  1699. /**
  1700. * wlan_mlme_get_vht_rx_mcs_8_9() - VHT Rx MCS capability for 1x1 mode
  1701. * @psoc: psoc context
  1702. * @value: data to be set
  1703. *
  1704. * Return: QDF_STATUS
  1705. */
  1706. QDF_STATUS wlan_mlme_get_vht_rx_mcs_8_9(struct wlan_objmgr_psoc *psoc,
  1707. uint8_t *value);
  1708. /**
  1709. * wlan_mlme_get_vht_tx_mcs_8_9() - VHT Tx MCS capability for 1x1 mode
  1710. * @psoc: psoc context
  1711. * @value: data to be set
  1712. *
  1713. * Return: QDF_STATUS
  1714. */
  1715. QDF_STATUS
  1716. wlan_mlme_get_vht_tx_mcs_8_9(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1717. /**
  1718. * wlan_mlme_get_vht_rx_mcs_2x2() - VHT Rx MCS capability for 2x2 mode
  1719. * @psoc: psoc context
  1720. * @value: data to be set
  1721. *
  1722. * Return: QDF_STATUS
  1723. */
  1724. QDF_STATUS wlan_mlme_get_vht_rx_mcs_2x2(struct wlan_objmgr_psoc *psoc,
  1725. uint8_t *value);
  1726. /**
  1727. * wlan_mlme_get_vht_tx_mcs_2x2() - VHT Tx MCS capability for 2x2 mode
  1728. * @psoc: psoc context
  1729. * @value: data to be set
  1730. *
  1731. * Return: QDF_STATUS
  1732. */
  1733. QDF_STATUS wlan_mlme_get_vht_tx_mcs_2x2(struct wlan_objmgr_psoc *psoc,
  1734. uint8_t *value);
  1735. /**
  1736. * wlan_mlme_get_vht20_mcs9() - Enables VHT MCS9 in 20M BW operation
  1737. * @psoc: psoc context
  1738. * @value: data to be set
  1739. *
  1740. * Return: QDF_STATUS
  1741. */
  1742. QDF_STATUS
  1743. wlan_mlme_get_vht20_mcs9(struct wlan_objmgr_psoc *psoc, bool *value);
  1744. /**
  1745. * wlan_mlme_get_force_sap_enabled() - Get the value of force SAP enabled
  1746. * @psoc: psoc context
  1747. * @value: data to get
  1748. *
  1749. * Get the value of force SAP enabled
  1750. *
  1751. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1752. */
  1753. QDF_STATUS
  1754. wlan_mlme_get_force_sap_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1755. /**
  1756. * wlan_mlme_get_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  1757. * @psoc: psoc context
  1758. * @value: data to be set
  1759. *
  1760. * Return: QDF_STATUS
  1761. */
  1762. QDF_STATUS
  1763. wlan_mlme_get_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool *value);
  1764. /**
  1765. * wlan_mlme_set_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  1766. * @psoc: psoc context
  1767. * @value: data to be set
  1768. *
  1769. * Return: QDF_STATUS
  1770. */
  1771. QDF_STATUS
  1772. wlan_mlme_set_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool value);
  1773. /**
  1774. * wlan_mlme_get_vht_enable_paid() - Enables/disables paid feature
  1775. * @psoc: psoc context
  1776. * @value: data to be set
  1777. *
  1778. * Return: QDF_STATUS
  1779. */
  1780. QDF_STATUS
  1781. wlan_mlme_get_vht_enable_paid(struct wlan_objmgr_psoc *psoc, bool *value);
  1782. /**
  1783. * wlan_mlme_get_vht_enable_gid() - Enables/disables VHT GID feature
  1784. * @psoc: psoc context
  1785. * @value: data to be set
  1786. *
  1787. * Return: QDF_STATUS
  1788. */
  1789. QDF_STATUS
  1790. wlan_mlme_get_vht_enable_gid(struct wlan_objmgr_psoc *psoc, bool *value);
  1791. /**
  1792. * wlan_mlme_get_vht_for_24ghz() - Enables/disables VHT for 24 ghz
  1793. * @psoc: psoc context
  1794. * @value: data to be set
  1795. *
  1796. * Return: QDF_STATUS
  1797. */
  1798. QDF_STATUS
  1799. wlan_mlme_get_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value);
  1800. /**
  1801. * wlan_mlme_set_vht_for_24ghz() - Enables/disables VHT for 24 ghz
  1802. * @psoc: psoc context
  1803. * @value: data to be set
  1804. *
  1805. * Return: QDF_STATUS
  1806. */
  1807. QDF_STATUS
  1808. wlan_mlme_set_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool value);
  1809. /**
  1810. * wlan_mlme_get_vendor_vht_for_24ghz() - nables/disables vendor VHT for 24 ghz
  1811. * @psoc: psoc context
  1812. * @value: data to be set
  1813. *
  1814. * Return: QDF_STATUS
  1815. */
  1816. QDF_STATUS
  1817. wlan_mlme_get_vendor_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value);
  1818. /**
  1819. * mlme_update_vht_cap() - update vht capabilities
  1820. * @psoc: psoc context
  1821. * @cfg: data to be set
  1822. *
  1823. * Return: QDF_STATUS
  1824. */
  1825. QDF_STATUS
  1826. mlme_update_vht_cap(struct wlan_objmgr_psoc *psoc, struct wma_tgt_vht_cap *cfg);
  1827. /**
  1828. * mlme_update_nss_vht_cap() - Update the number of spatial
  1829. * streams supported for vht
  1830. * @psoc: psoc context
  1831. *
  1832. * Return: QDF_STATUS
  1833. */
  1834. QDF_STATUS mlme_update_nss_vht_cap(struct wlan_objmgr_psoc *psoc);
  1835. /**
  1836. * wlan_mlme_is_sap_uapsd_enabled() - Get if SAP UAPSD is enabled/disabled
  1837. * @psoc: psoc context
  1838. * @value: value to be filled for caller
  1839. *
  1840. * Return: QDF_STATUS
  1841. */
  1842. QDF_STATUS wlan_mlme_is_sap_uapsd_enabled(struct wlan_objmgr_psoc *psoc,
  1843. bool *value);
  1844. /**
  1845. * wlan_mlme_set_sap_uapsd_flag() - Enable/Disable SAP UAPSD
  1846. * @psoc: psoc context
  1847. * @value: Enable/Disable control value for sap_uapsd_enabled field
  1848. *
  1849. * Return: QDF_STATUS
  1850. */
  1851. QDF_STATUS wlan_mlme_set_sap_uapsd_flag(struct wlan_objmgr_psoc *psoc,
  1852. bool value);
  1853. /**
  1854. * wlan_mlme_is_11h_enabled() - Get the 11h flag
  1855. * @psoc: psoc context
  1856. *
  1857. * Return: QDF_STATUS
  1858. */
  1859. QDF_STATUS
  1860. wlan_mlme_is_11h_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1861. /**
  1862. * wlan_mlme_set_11h_enabled() - Set the 11h flag
  1863. * @psoc: psoc context
  1864. *
  1865. * Return: QDF_STATUS
  1866. */
  1867. QDF_STATUS
  1868. wlan_mlme_set_11h_enabled(struct wlan_objmgr_psoc *psoc, bool value);
  1869. /**
  1870. * wlan_mlme_is_11d_enabled() - Get the 11d flag
  1871. * @psoc: psoc context
  1872. *
  1873. * Return: QDF_STATUS
  1874. */
  1875. QDF_STATUS
  1876. wlan_mlme_is_11d_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1877. /**
  1878. * wlan_mlme_set_11d_enabled() - Set the 11h flag
  1879. * @psoc: psoc context
  1880. *
  1881. * Return: QDF_STATUS
  1882. */
  1883. QDF_STATUS
  1884. wlan_mlme_set_11d_enabled(struct wlan_objmgr_psoc *psoc, bool value);
  1885. /**
  1886. * wlan_mlme_get_sta_miracast_mcc_rest_time() - Get STA/MIRACAST MCC rest time
  1887. *
  1888. * @psoc: pointer to psoc object
  1889. * @value: value which needs to filled by API
  1890. *
  1891. * This API gives rest time to be used when STA and MIRACAST MCC conc happens
  1892. *
  1893. * Return: QDF_STATUS
  1894. */
  1895. QDF_STATUS
  1896. wlan_mlme_get_sta_miracast_mcc_rest_time(struct wlan_objmgr_psoc *psoc,
  1897. uint32_t *value);
  1898. /**
  1899. * wlan_mlme_get_sap_mcc_chnl_avoid() - Check if SAP MCC needs to be avoided
  1900. *
  1901. * @psoc: pointer to psoc object
  1902. * @value: value which needs to filled by API
  1903. *
  1904. * This API fetches the user setting to determine if SAP MCC with other persona
  1905. * to be avoided.
  1906. *
  1907. * Return: QDF_STATUS
  1908. */
  1909. QDF_STATUS
  1910. wlan_mlme_get_sap_mcc_chnl_avoid(struct wlan_objmgr_psoc *psoc,
  1911. uint8_t *value);
  1912. /**
  1913. * wlan_mlme_get_mcc_bcast_prob_resp() - Get broadcast probe rsp in MCC
  1914. *
  1915. * @psoc: pointer to psoc object
  1916. * @value: value which needs to filled by API
  1917. *
  1918. * To get INI value which helps to determe whether to enable/disable use of
  1919. * broadcast probe response to increase the detectability of SAP in MCC mode.
  1920. *
  1921. *
  1922. * Return: QDF_STATUS
  1923. */
  1924. QDF_STATUS
  1925. wlan_mlme_get_mcc_bcast_prob_resp(struct wlan_objmgr_psoc *psoc,
  1926. uint8_t *value);
  1927. /**
  1928. * wlan_mlme_get_mcc_rts_cts_prot() - To get RTS-CTS protection in MCC.
  1929. *
  1930. * @psoc: pointer to psoc object
  1931. * @value: value which needs to filled by API
  1932. *
  1933. * To get INI value which helps to determine whether to enable/disable
  1934. * use of long duration RTS-CTS protection when SAP goes off
  1935. * channel in MCC mode.
  1936. *
  1937. * Return: QDF_STATUS
  1938. */
  1939. QDF_STATUS
  1940. wlan_mlme_get_mcc_rts_cts_prot(struct wlan_objmgr_psoc *psoc,
  1941. uint8_t *value);
  1942. /**
  1943. * wlan_mlme_get_mcc_feature() - To find out to enable/disable MCC feature
  1944. *
  1945. * @psoc: pointer to psoc object
  1946. * @value: value which needs to filled by API
  1947. *
  1948. * To get INI value which helps to determine whether to enable MCC feature
  1949. *
  1950. * Return: QDF_STATUS
  1951. */
  1952. QDF_STATUS
  1953. wlan_mlme_get_mcc_feature(struct wlan_objmgr_psoc *psoc,
  1954. uint8_t *value);
  1955. /**
  1956. * wlan_mlme_get_rrm_enabled() - Get the RRM enabled ini
  1957. * @psoc: pointer to psoc object
  1958. * @value: pointer to the value which will be filled for the caller
  1959. *
  1960. * Return: QDF Status
  1961. */
  1962. QDF_STATUS wlan_mlme_get_rrm_enabled(struct wlan_objmgr_psoc *psoc,
  1963. bool *value);
  1964. /**
  1965. * wlan_mlme_get_dtim_selection_diversity() - get dtim selection diversity
  1966. * bitmap
  1967. * @psoc: pointer to psoc object
  1968. * @dtim_selection_div: value that is requested by the caller
  1969. * This function gets the dtim selection diversity bitmap to be
  1970. * sent to the firmware
  1971. *
  1972. * Return: QDF_STATUS_SUCCESS - in case of success
  1973. */
  1974. QDF_STATUS wlan_mlme_get_dtim_selection_diversity(struct wlan_objmgr_psoc *psoc,
  1975. uint32_t *dtim_selection_div);
  1976. /**
  1977. * wlan_mlme_get_bmps_min_listen_interval() - get beacon mode powersave
  1978. * minimum listen interval value
  1979. * @psoc: pointer to psoc object
  1980. * @value: value that is requested by the caller
  1981. *
  1982. * Return: QDF_STATUS_SUCCESS - in case of success
  1983. */
  1984. QDF_STATUS wlan_mlme_get_bmps_min_listen_interval(struct wlan_objmgr_psoc *psoc,
  1985. uint32_t *value);
  1986. /**
  1987. * wlan_mlme_get_bmps_max_listen_interval() - get beacon mode powersave
  1988. * maximum listen interval value
  1989. * @psoc: pointer to psoc object
  1990. * @value: value that is requested by the caller
  1991. *
  1992. * Return: QDF_STATUS_SUCCESS - in case of success
  1993. */
  1994. QDF_STATUS wlan_mlme_get_bmps_max_listen_interval(struct wlan_objmgr_psoc *psoc,
  1995. uint32_t *value);
  1996. /**
  1997. * wlan_mlme_get_auto_bmps_timer_value() - get bmps timer value
  1998. * @psoc: pointer to psoc object
  1999. * @value: value that is requested by the caller
  2000. *
  2001. * Return: QDF_STATUS_SUCCESS - in case of success
  2002. */
  2003. QDF_STATUS wlan_mlme_get_auto_bmps_timer_value(struct wlan_objmgr_psoc *psoc,
  2004. uint32_t *value);
  2005. /**
  2006. * wlan_mlme_is_bmps_enabled() - check if beacon mode powersave is
  2007. * enabled/disabled
  2008. * @psoc: pointer to psoc object
  2009. * @value: value that is requested by the caller
  2010. *
  2011. * Return: QDF_STATUS_SUCCESS - in case of success
  2012. */
  2013. QDF_STATUS wlan_mlme_is_bmps_enabled(struct wlan_objmgr_psoc *psoc,
  2014. bool *value);
  2015. /**
  2016. * wlan_mlme_override_bmps_imps() - disable imps/bmps
  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_override_bmps_imps(struct wlan_objmgr_psoc *psoc);
  2023. /**
  2024. * wlan_mlme_is_imps_enabled() - check if idle mode powersave is
  2025. * enabled/disabled
  2026. * @psoc: pointer to psoc object
  2027. * @value: value that is requested by the caller
  2028. *
  2029. * Return: QDF_STATUS_SUCCESS - in case of success
  2030. */
  2031. QDF_STATUS wlan_mlme_is_imps_enabled(struct wlan_objmgr_psoc *psoc,
  2032. bool *value);
  2033. /**
  2034. * wlan_mlme_get_wps_uuid() - get the wps uuid string
  2035. * @wps_params: pointer to mlme wps parameters structure
  2036. * @data: data to which the parameter is to be copied
  2037. *
  2038. * Return None
  2039. *
  2040. */
  2041. void
  2042. wlan_mlme_get_wps_uuid(struct wlan_mlme_wps_params *wps_params, uint8_t *data);
  2043. /**
  2044. * wlan_mlme_get_self_gen_frm_pwr() - get self gen frm pwr
  2045. * @psoc: pointer to psoc object
  2046. * @val: Pointer to the value which will be filled for the caller
  2047. *
  2048. * Return: QDF Status
  2049. */
  2050. QDF_STATUS
  2051. wlan_mlme_get_self_gen_frm_pwr(struct wlan_objmgr_psoc *psoc,
  2052. uint32_t *value);
  2053. /**
  2054. * wlan_mlme_get_4way_hs_offload() - get 4-way hs offload to fw cfg
  2055. * @psoc: pointer to psoc object
  2056. * @val: Pointer to the value which will be filled for the caller
  2057. *
  2058. * Return: QDF Status
  2059. */
  2060. QDF_STATUS
  2061. wlan_mlme_get_4way_hs_offload(struct wlan_objmgr_psoc *psoc, bool *value);
  2062. /**
  2063. * wlan_mlme_get_bmiss_skip_full_scan_value() - To get value of
  2064. * bmiss_skip_full_scan ini
  2065. * @psoc: pointer to psoc object
  2066. * @val: Pointer to the value which will be filled for the caller
  2067. *
  2068. * Return: QDF Status
  2069. */
  2070. QDF_STATUS
  2071. wlan_mlme_get_bmiss_skip_full_scan_value(struct wlan_objmgr_psoc *psoc,
  2072. bool *value);
  2073. /**
  2074. * mlme_get_peer_phymode() - get phymode of peer
  2075. * @psoc: pointer to psoc object
  2076. * @mac: Pointer to the mac addr of the peer
  2077. * @peer_phymode: phymode
  2078. *
  2079. * Return: QDF Status
  2080. */
  2081. QDF_STATUS
  2082. mlme_get_peer_phymode(struct wlan_objmgr_psoc *psoc, uint8_t *mac,
  2083. enum wlan_phymode *peer_phymode);
  2084. /**
  2085. * mlme_set_tgt_wpa3_roam_cap() - Set the target WPA3 roam support
  2086. * to mlme
  2087. * @psoc: pointer to PSOC object
  2088. * @akm_bitmap: Bitmap of akm suites supported for roaming by the firmware
  2089. *
  2090. * Return: QDF Status
  2091. */
  2092. QDF_STATUS mlme_set_tgt_wpa3_roam_cap(struct wlan_objmgr_psoc *psoc,
  2093. uint32_t akm_bitmap);
  2094. /**
  2095. * wlan_mlme_get_ignore_fw_reg_offload_ind() - Get the
  2096. * ignore_fw_reg_offload_ind ini
  2097. * @psoc: pointer to psoc object
  2098. * @disabled: output pointer to hold user config
  2099. *
  2100. * Return: QDF Status
  2101. */
  2102. QDF_STATUS
  2103. wlan_mlme_get_ignore_fw_reg_offload_ind(struct wlan_objmgr_psoc *psoc,
  2104. bool *disabled);
  2105. /**
  2106. * mlme_get_roam_trigger_str() - Get the string for enum
  2107. * WMI_ROAM_TRIGGER_REASON_ID reason.
  2108. * @roam_scan_trigger: roam scan trigger ID
  2109. *
  2110. * Return: Meaningful string from enum WMI_ROAM_TRIGGER_REASON_ID
  2111. */
  2112. char *mlme_get_roam_trigger_str(uint32_t roam_scan_trigger);
  2113. /**
  2114. * mlme_get_converted_timestamp() - Return time of the day
  2115. * from timestamp
  2116. * @timestamp: Timestamp value in milliseconds
  2117. * @time: Output buffer to fill time into
  2118. *
  2119. * Return: Time of the day in [HH:MM:SS.uS]
  2120. */
  2121. void mlme_get_converted_timestamp(uint32_t timestamp, char *time);
  2122. #if defined(WLAN_SAE_SINGLE_PMK) && defined(WLAN_FEATURE_ROAM_OFFLOAD)
  2123. /**
  2124. * wlan_mlme_set_sae_single_pmk_bss_cap - API to set WPA3 single pmk AP IE
  2125. * @psoc: Pointer to psoc object
  2126. * @vdev_id: vdev id
  2127. * @val: value to be set
  2128. *
  2129. * Return : None
  2130. */
  2131. void wlan_mlme_set_sae_single_pmk_bss_cap(struct wlan_objmgr_psoc *psoc,
  2132. uint8_t vdev_id, bool val);
  2133. /**
  2134. * wlan_mlme_update_sae_single_pmk - API to update mlme_pmkid_info
  2135. * @vdev: vdev object
  2136. * @sae_single_pmk: pointer to sae_single_pmk_info struct
  2137. *
  2138. * Return : None
  2139. */
  2140. void
  2141. wlan_mlme_update_sae_single_pmk(struct wlan_objmgr_vdev *vdev,
  2142. struct mlme_pmk_info *sae_single_pmk);
  2143. /**
  2144. * wlan_mlme_get_sae_single_pmk_info - API to get mlme_pmkid_info
  2145. * @vdev: vdev object
  2146. * @pmksa: pointer to PMKSA struct
  2147. *
  2148. * Return : None
  2149. */
  2150. void
  2151. wlan_mlme_get_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2152. struct wlan_mlme_sae_single_pmk *pmksa);
  2153. /**
  2154. * wlan_mlme_clear_sae_single_pmk_info - API to clear mlme_pmkid_info ap caps
  2155. * @vdev: vdev object
  2156. * @pmk : pmk info to clear
  2157. *
  2158. * Return : None
  2159. */
  2160. void wlan_mlme_clear_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2161. struct mlme_pmk_info *pmk);
  2162. #else
  2163. static inline void
  2164. wlan_mlme_set_sae_single_pmk_bss_cap(struct wlan_objmgr_psoc *psoc,
  2165. uint8_t vdev_id, bool val)
  2166. {
  2167. }
  2168. static inline void
  2169. wlan_mlme_update_sae_single_pmk(struct wlan_objmgr_vdev *vdev,
  2170. struct mlme_pmk_info *sae_single_pmk)
  2171. {
  2172. }
  2173. static inline void
  2174. wlan_mlme_get_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2175. struct wlan_mlme_sae_single_pmk *pmksa)
  2176. {
  2177. }
  2178. static inline
  2179. void wlan_mlme_clear_sae_single_pmk_info(struct wlan_objmgr_vdev *vdev,
  2180. struct mlme_pmk_info *pmk)
  2181. {
  2182. }
  2183. #endif
  2184. /**
  2185. * mlme_get_roam_fail_reason_str() - Get fail string from enum
  2186. * WMI_ROAM_FAIL_REASON_ID
  2187. * @result: Roam fail reason
  2188. *
  2189. * Return: Meaningful string from enum
  2190. */
  2191. char *mlme_get_roam_fail_reason_str(uint32_t result);
  2192. /**
  2193. * mlme_get_sub_reason_str() - Get roam trigger sub reason from enum
  2194. * WMI_ROAM_TRIGGER_SUB_REASON_ID
  2195. * @sub_reason: Sub reason value
  2196. *
  2197. * Return: Meaningful string from enum WMI_ROAM_TRIGGER_SUB_REASON_ID
  2198. */
  2199. char *mlme_get_sub_reason_str(uint32_t sub_reason);
  2200. /**
  2201. * wlan_mlme_get_mgmt_max_retry() - Get the
  2202. * max mgmt retry
  2203. * @psoc: pointer to psoc object
  2204. * @max_retry: output pointer to hold user config
  2205. *
  2206. * Return: QDF Status
  2207. */
  2208. QDF_STATUS
  2209. wlan_mlme_get_mgmt_max_retry(struct wlan_objmgr_psoc *psoc,
  2210. uint8_t *max_retry);
  2211. /**
  2212. * wlan_mlme_get_status_ring_buffer() - Get the
  2213. * status of ring buffer
  2214. * @psoc: pointer to psoc object
  2215. * @enable_ring_buffer: output pointer to point the configured value of
  2216. * ring buffer
  2217. *
  2218. * Return: QDF_STATUS
  2219. */
  2220. QDF_STATUS
  2221. wlan_mlme_get_status_ring_buffer(struct wlan_objmgr_psoc *psoc,
  2222. bool *enable_ring_buffer);
  2223. /**
  2224. * wlan_mlme_get_peer_unmap_conf() - Indicate if peer unmap confirmation
  2225. * support is enabled or disabled
  2226. * @psoc: pointer to psoc object
  2227. *
  2228. * Return: true if peer unmap confirmation support is enabled, else false
  2229. */
  2230. bool wlan_mlme_get_peer_unmap_conf(struct wlan_objmgr_psoc *psoc);
  2231. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  2232. /**
  2233. * wlan_mlme_get_roam_reason_vsie_status() - Indicate if roam reason
  2234. * vsie is enabled or disabled
  2235. * @psoc: pointer to psoc object
  2236. * @roam_reason_vsie_enabled: pointer to hold value of roam reason
  2237. * vsie
  2238. *
  2239. * Return: QDF_STATUS
  2240. */
  2241. QDF_STATUS
  2242. wlan_mlme_get_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2243. uint8_t *roam_reason_vsie_enabled);
  2244. /**
  2245. * wlan_mlme_set_roam_reason_vsie_status() - Update roam reason vsie status
  2246. * @psoc: pointer to psoc object
  2247. * @roam_reason_vsie_enabled: value of roam reason vsie
  2248. *
  2249. * Return: QDF_STATUS
  2250. */
  2251. QDF_STATUS
  2252. wlan_mlme_set_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2253. uint8_t roam_reason_vsie_enabled);
  2254. /**
  2255. * wlan_mlme_get_roaming_triggers - Get the roaming triggers bitmap
  2256. * @psoc: Pointer to PSOC object
  2257. *
  2258. * Return: Roaming triggers value
  2259. */
  2260. uint32_t wlan_mlme_get_roaming_triggers(struct wlan_objmgr_psoc *psoc);
  2261. #else
  2262. static inline QDF_STATUS
  2263. wlan_mlme_get_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2264. uint8_t *roam_reason_vsie_enable)
  2265. {
  2266. return QDF_STATUS_E_FAILURE;
  2267. }
  2268. static inline QDF_STATUS
  2269. wlan_mlme_set_roam_reason_vsie_status(struct wlan_objmgr_psoc *psoc,
  2270. uint8_t roam_reason_vsie_enable)
  2271. {
  2272. return QDF_STATUS_E_FAILURE;
  2273. }
  2274. static inline
  2275. uint32_t wlan_mlme_get_roaming_triggers(struct wlan_objmgr_psoc *psoc)
  2276. {
  2277. return 0xFFFF;
  2278. }
  2279. #endif
  2280. /**
  2281. * wlan_mlme_get_dfs_chan_ageout_time() - Get the DFS Channel ageout time
  2282. * @psoc: pointer to psoc object
  2283. * @dfs_chan_ageout_time: output pointer to hold configured value of DFS
  2284. * Channel ageout time
  2285. *
  2286. * Return: QDF Status
  2287. */
  2288. QDF_STATUS
  2289. wlan_mlme_get_dfs_chan_ageout_time(struct wlan_objmgr_psoc *psoc,
  2290. uint8_t *dfs_chan_ageout_time);
  2291. #endif /* _WLAN_MLME_API_H_ */