wlan_mlme_api.h 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064
  1. /*
  2. * Copyright (c) 2018 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. * mlme_get_wep_key() - get the wep key to process during auth frame
  61. * @wep_params: cfg wep parameters structure
  62. * @wep_key_id: default key number
  63. * @default_key: default key to be copied
  64. * @key_len: length of the key to copy
  65. *
  66. * Return QDF_STATUS
  67. */
  68. QDF_STATUS mlme_get_wep_key(struct wlan_mlme_wep_cfg *wep_params,
  69. enum wep_key_id wep_keyid, uint8_t *default_key,
  70. qdf_size_t *key_len);
  71. /**
  72. * mlme_set_wep_key() - set the wep keys during auth
  73. * @wep_params: cfg wep parametrs structure
  74. * @wep_key_id: default key number that needs to be copied
  75. * @key_to_set: destination buffer to be copied
  76. * @len: size to be copied
  77. */
  78. QDF_STATUS mlme_set_wep_key(struct wlan_mlme_wep_cfg *wep_params,
  79. enum wep_key_id wep_keyid, uint8_t *key_to_set,
  80. qdf_size_t len);
  81. /**
  82. * wlan_mlme_get_tx_power() - Get the max tx power in particular band
  83. * @psoc: pointer to psoc object
  84. * @band: 2ghz/5ghz band
  85. *
  86. * Return: value of tx power in the respective band
  87. */
  88. uint8_t wlan_mlme_get_tx_power(struct wlan_objmgr_psoc *psoc,
  89. enum band_info band);
  90. /**
  91. * wlan_mlme_get_power_usage() - Get the power usage info
  92. * @psoc: pointer to psoc object
  93. *
  94. * Return: pointer to character array of power usage
  95. */
  96. char *wlan_mlme_get_power_usage(struct wlan_objmgr_psoc *psoc);
  97. /**
  98. * wlan_mlme_get_ht_cap_info() - Get the HT cap info config
  99. * @psoc: pointer to psoc object
  100. * @value: pointer to the value which will be filled for the caller
  101. *
  102. * Return: QDF Status
  103. */
  104. QDF_STATUS wlan_mlme_get_ht_cap_info(struct wlan_objmgr_psoc *psoc,
  105. struct mlme_ht_capabilities_info
  106. *ht_cap_info);
  107. /**
  108. * wlan_mlme_get_manufacturer_name() - get manufacturer name
  109. * @psoc: pointer to psoc object
  110. * @pbuf: pointer of the buff which will be filled for the caller
  111. * @plen: pointer of max buffer length
  112. * actual length will be returned at this address
  113. * This function gets manufacturer name
  114. *
  115. * Return: QDF_STATUS_SUCCESS - in case of success
  116. */
  117. QDF_STATUS
  118. wlan_mlme_get_manufacturer_name(struct wlan_objmgr_psoc *psoc,
  119. uint8_t *pbuf, uint32_t *plen);
  120. /**
  121. * wlan_mlme_get_model_number() - get model number
  122. * @psoc: pointer to psoc object
  123. * @pbuf: pointer of the buff which will be filled for the caller
  124. * @plen: pointer of max buffer length
  125. * actual length will be returned at this address
  126. * This function gets model number
  127. *
  128. * Return: QDF_STATUS_SUCCESS - in case of success
  129. */
  130. QDF_STATUS
  131. wlan_mlme_get_model_number(struct wlan_objmgr_psoc *psoc,
  132. uint8_t *pbuf, uint32_t *plen);
  133. /**
  134. * wlan_mlme_get_model_name() - get model name
  135. * @psoc: pointer to psoc object
  136. * @pbuf: pointer of the buff which will be filled for the caller
  137. * @plen: pointer of max buffer length
  138. * actual length will be returned at this address
  139. * This function gets model name
  140. *
  141. * Return: QDF_STATUS_SUCCESS - in case of success
  142. */
  143. QDF_STATUS
  144. wlan_mlme_get_model_name(struct wlan_objmgr_psoc *psoc,
  145. uint8_t *pbuf, uint32_t *plen);
  146. /**
  147. * wlan_mlme_get_manufacture_product_name() - get manufacture product name
  148. * @psoc: pointer to psoc object
  149. * @pbuf: pointer of the buff which will be filled for the caller
  150. * @plen: pointer of max buffer length
  151. * actual length will be returned at this address
  152. * This function gets manufacture product name
  153. *
  154. * Return: QDF_STATUS_SUCCESS - in case of success
  155. */
  156. QDF_STATUS
  157. wlan_mlme_get_manufacture_product_name(struct wlan_objmgr_psoc *psoc,
  158. uint8_t *pbuf, uint32_t *plen);
  159. /**
  160. * wlan_mlme_get_manufacture_product_version() - get manufacture product version
  161. * @psoc: pointer to psoc object
  162. * @pbuf: pointer of the buff which will be filled for the caller
  163. * @plen: pointer of max buffer length
  164. * actual length will be returned at this address
  165. * This function gets manufacture product version
  166. *
  167. * Return: QDF_STATUS_SUCCESS - in case of success
  168. */
  169. QDF_STATUS
  170. wlan_mlme_get_manufacture_product_version(struct wlan_objmgr_psoc *psoc,
  171. uint8_t *pbuf, uint32_t *plen);
  172. /**
  173. * wlan_mlme_set_ht_cap_info() - Set the HT cap info config
  174. * @psoc: pointer to psoc object
  175. * @value: Value that needs to be set from the caller
  176. *
  177. * Return: QDF Status
  178. */
  179. QDF_STATUS wlan_mlme_set_ht_cap_info(struct wlan_objmgr_psoc *psoc,
  180. struct mlme_ht_capabilities_info
  181. ht_cap_info);
  182. /**
  183. * wlan_mlme_get_max_amsdu_num() - get the max amsdu num
  184. * @psoc: pointer to psoc object
  185. * @value: pointer to the value where the max_amsdu num is to be filled
  186. *
  187. * Return: QDF_STATUS
  188. */
  189. QDF_STATUS wlan_mlme_get_max_amsdu_num(struct wlan_objmgr_psoc *psoc,
  190. uint8_t *value);
  191. /**
  192. * wlan_mlme_set_max_amsdu_num() - set the max amsdu num
  193. * @psoc: pointer to psoc object
  194. * @value: value to be set for max_amsdu_num
  195. *
  196. * Return: QDF_STATUS
  197. */
  198. QDF_STATUS wlan_mlme_set_max_amsdu_num(struct wlan_objmgr_psoc *psoc,
  199. uint8_t value);
  200. /**
  201. * wlan_mlme_get_ht_mpdu_density() - get the ht mpdu density
  202. * @psoc: pointer to psoc object
  203. * @value: pointer to the value where the ht mpdu density is to be filled
  204. *
  205. * Return: QDF_STATUS
  206. */
  207. QDF_STATUS wlan_mlme_get_ht_mpdu_density(struct wlan_objmgr_psoc *psoc,
  208. uint8_t *value);
  209. /**
  210. * wlan_mlme_set_ht_mpdu_density() - set the ht mpdu density
  211. * @psoc: pointer to psoc object
  212. * @value: value to be set for ht mpdu density
  213. *
  214. * Return: QDF_STATUS
  215. */
  216. QDF_STATUS wlan_mlme_set_ht_mpdu_density(struct wlan_objmgr_psoc *psoc,
  217. uint8_t value);
  218. /**
  219. * wlan_mlme_get_band_capability() - Get the Band capability config
  220. * @psoc: pointer to psoc object
  221. * @band_capability: Pointer to the variable from caller
  222. *
  223. * Return: QDF Status
  224. */
  225. QDF_STATUS wlan_mlme_get_band_capability(struct wlan_objmgr_psoc *psoc,
  226. uint8_t *band_capability);
  227. /**
  228. * wlan_mlme_set_band_capability() - Set the Band capability config
  229. * @psoc: pointer to psoc object
  230. * @band_capability: Value to be set from the caller
  231. *
  232. * Return: QDF Status
  233. */
  234. QDF_STATUS wlan_mlme_set_band_capability(struct wlan_objmgr_psoc *psoc,
  235. uint8_t band_capability);
  236. /**
  237. * wlan_mlme_get_prevent_link_down() - Get the prevent link down config
  238. * @psoc: pointer to psoc object
  239. * @prevent_link_down: Pointer to the variable from caller
  240. *
  241. * Return: QDF Status
  242. */
  243. QDF_STATUS wlan_mlme_get_prevent_link_down(struct wlan_objmgr_psoc *psoc,
  244. bool *prevent_link_down);
  245. /**
  246. * wlan_mlme_get_select_5ghz_margin() - Get the select 5Ghz margin config
  247. * @psoc: pointer to psoc object
  248. * @select_5ghz_margin: Pointer to the variable from caller
  249. *
  250. * Return: QDF Status
  251. */
  252. QDF_STATUS wlan_mlme_get_select_5ghz_margin(struct wlan_objmgr_psoc *psoc,
  253. uint8_t *select_5ghz_margin);
  254. /**
  255. * wlan_mlme_get_rtt_mac_randomization() - Get the RTT MAC randomization config
  256. * @psoc: pointer to psoc object
  257. * @rtt_mac_randomization: Pointer to the variable from caller
  258. *
  259. * Return: QDF Status
  260. */
  261. QDF_STATUS wlan_mlme_get_rtt_mac_randomization(struct wlan_objmgr_psoc *psoc,
  262. bool *rtt_mac_randomization);
  263. /**
  264. * wlan_mlme_get_crash_inject() - Get the crash inject config
  265. * @psoc: pointer to psoc object
  266. * @crash_inject: Pointer to the variable from caller
  267. *
  268. * Return: QDF Status
  269. */
  270. QDF_STATUS wlan_mlme_get_crash_inject(struct wlan_objmgr_psoc *psoc,
  271. bool *crash_inject);
  272. /**
  273. * wlan_mlme_get_lpass_support() - Get the LPASS Support config
  274. * @psoc: pointer to psoc object
  275. * @lpass_support: Pointer to the variable from caller
  276. *
  277. * Return: QDF Status
  278. */
  279. QDF_STATUS wlan_mlme_get_lpass_support(struct wlan_objmgr_psoc *psoc,
  280. bool *lpass_support);
  281. /**
  282. * wlan_mlme_get_self_recovery() - Get the self recovery config
  283. * @psoc: pointer to psoc object
  284. * @self_recovery: Pointer to the variable from caller
  285. *
  286. * Return: QDF Status
  287. */
  288. QDF_STATUS wlan_mlme_get_self_recovery(struct wlan_objmgr_psoc *psoc,
  289. bool *self_recovery);
  290. /**
  291. * wlan_mlme_get_sub_20_chan_width() - Get the sub 20 chan width config
  292. * @psoc: pointer to psoc object
  293. * @sub_20_chan_width: Pointer to the variable from caller
  294. *
  295. * Return: QDF Status
  296. */
  297. QDF_STATUS wlan_mlme_get_sub_20_chan_width(struct wlan_objmgr_psoc *psoc,
  298. uint8_t *sub_20_chan_width);
  299. /**
  300. * wlan_mlme_get_fw_timeout_crash() - Get the fw timeout crash config
  301. * @psoc: pointer to psoc object
  302. * @fw_timeout_crash: Pointer to the variable from caller
  303. *
  304. * Return: QDF Status
  305. */
  306. QDF_STATUS wlan_mlme_get_fw_timeout_crash(struct wlan_objmgr_psoc *psoc,
  307. bool *fw_timeout_crash);
  308. /**
  309. * wlan_mlme_get_ito_repeat_count() - Get the fw timeout crash config
  310. * @psoc: pointer to psoc object
  311. * @ito_repeat_count: Pointer to the variable from caller
  312. *
  313. * Return: QDF Status
  314. */
  315. QDF_STATUS wlan_mlme_get_ito_repeat_count(struct wlan_objmgr_psoc *psoc,
  316. uint8_t *ito_repeat_count);
  317. /**
  318. * wlan_mlme_get_acs_with_more_param() - Get the acs_with_more_param flag
  319. * @psoc: pointer to psoc object
  320. * @value: Value that needs to be set from the caller
  321. *
  322. * Return: QDF Status
  323. */
  324. QDF_STATUS wlan_mlme_get_acs_with_more_param(struct wlan_objmgr_psoc *psoc,
  325. bool *value);
  326. /**
  327. * wlan_mlme_get_auto_channel_weight() - Get the auto channel weight
  328. * @psoc: pointer to psoc object
  329. * @value: Value that needs to be set from the caller
  330. *
  331. * Return: QDF Status
  332. */
  333. QDF_STATUS wlan_mlme_get_auto_channel_weight(struct wlan_objmgr_psoc *psoc,
  334. uint32_t *value);
  335. /**
  336. * wlan_mlme_get_vendor_acs_support() - Get the vendor based channel selece
  337. * @psoc: pointer to psoc object
  338. * @value: Value that needs to be set from the caller
  339. *
  340. * Return: QDF Status
  341. */
  342. QDF_STATUS wlan_mlme_get_vendor_acs_support(struct wlan_objmgr_psoc *psoc,
  343. bool *value);
  344. /**
  345. * wlan_mlme_get_acs_support_for_dfs_ltecoex() - Get the flag for
  346. * acs support for dfs ltecoex
  347. * @psoc: pointer to psoc object
  348. * @value: Value that needs to be set from the caller
  349. *
  350. * Return: QDF Status
  351. */
  352. QDF_STATUS
  353. wlan_mlme_get_acs_support_for_dfs_ltecoex(struct wlan_objmgr_psoc *psoc,
  354. bool *value);
  355. /**
  356. * wlan_mlme_get_external_acs_policy() - Get the flag for external acs policy
  357. * @psoc: pointer to psoc object
  358. * @value: Value that needs to be set from the caller
  359. *
  360. * Return: QDF Status
  361. */
  362. QDF_STATUS
  363. wlan_mlme_get_external_acs_policy(struct wlan_objmgr_psoc *psoc,
  364. bool *value);
  365. /**
  366. *
  367. * wlan_mlme_get_sap_inactivity_override() - Check if sap max inactivity
  368. * override flag is set.
  369. * @psoc: pointer to psoc object
  370. * @sme_config - Sme config struct
  371. *
  372. * Return: QDF Status
  373. */
  374. void wlan_mlme_get_sap_inactivity_override(struct wlan_objmgr_psoc *psoc,
  375. bool *value);
  376. /**
  377. * wlan_mlme_get_ignore_peer_ht_mode() - Get the ignore peer ht opmode flag
  378. * @psoc: pointer to psoc object
  379. * @value: Value that needs to be set from the caller
  380. *
  381. * Return: QDF Status
  382. */
  383. QDF_STATUS wlan_mlme_get_ignore_peer_ht_mode(struct wlan_objmgr_psoc *psoc,
  384. bool *value);
  385. /**
  386. * wlan_mlme_get_tx_chainmask_cck() - Get the tx_chainmask_cfg value
  387. * @psoc: pointer to psoc object
  388. * @value: Value that needs to be set from the caller
  389. *
  390. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  391. */
  392. QDF_STATUS wlan_mlme_get_tx_chainmask_cck(struct wlan_objmgr_psoc *psoc,
  393. bool *value);
  394. /**
  395. * wlan_mlme_get_tx_chainmask_1ss() - Get the tx_chainmask_1ss value
  396. * @psoc: pointer to psoc object
  397. * @value: Value that caller needs to get
  398. *
  399. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  400. */
  401. QDF_STATUS wlan_mlme_get_tx_chainmask_1ss(struct wlan_objmgr_psoc *psoc,
  402. uint8_t *value);
  403. /**
  404. * wlan_mlme_get_num_11b_tx_chains() - Get the number of 11b only tx chains
  405. * @psoc: pointer to psoc object
  406. * @value: Value that needs to be set from the caller
  407. *
  408. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  409. */
  410. QDF_STATUS wlan_mlme_get_num_11b_tx_chains(struct wlan_objmgr_psoc *psoc,
  411. uint16_t *value);
  412. /**
  413. * wlan_mlme_get_num_11ag_tx_chains() - get the total number of 11a/g tx chains
  414. * @psoc: pointer to psoc object
  415. * @value: Value that caller needs to get
  416. *
  417. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  418. */
  419. QDF_STATUS wlan_mlme_get_num_11ag_tx_chains(struct wlan_objmgr_psoc *psoc,
  420. uint16_t *value);
  421. /**
  422. * wlan_mlme_get_bt_chain_separation_flag() - get the enable_bt_chain_separation
  423. * flag
  424. * @psoc: pointer to psoc object
  425. * @value: Value that needs to be set from the caller
  426. *
  427. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  428. */
  429. QDF_STATUS wlan_mlme_get_bt_chain_separation_flag(struct wlan_objmgr_psoc *psoc,
  430. bool *value);
  431. /**
  432. * wlan_mlme_configure_chain_mask() - configure chainmask parameters
  433. * @psoc: pointer to psoc object
  434. * @session_id: vdev_id
  435. *
  436. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  437. */
  438. QDF_STATUS wlan_mlme_configure_chain_mask(struct wlan_objmgr_psoc *psoc,
  439. uint8_t session_id);
  440. /**
  441. * wlan_mlme_set_sap_listen_interval() - Set the sap listen interval
  442. * @psoc: pointer to psoc object
  443. * @value: Value that needs to be set from the caller
  444. *
  445. * Return: QDF Status
  446. */
  447. QDF_STATUS wlan_mlme_set_sap_listen_interval(struct wlan_objmgr_psoc *psoc,
  448. int value);
  449. /**
  450. * wlan_mlme_set_assoc_sta_limit() - Set the assoc sta limit
  451. * @psoc: pointer to psoc object
  452. * @value: Value that needs to be set from the caller
  453. *
  454. * Return: QDF Status
  455. */
  456. QDF_STATUS wlan_mlme_set_assoc_sta_limit(struct wlan_objmgr_psoc *psoc,
  457. int value);
  458. /**
  459. * wlan_mlme_set_rmc_action_period_freq() - Set the rmc action period frequency
  460. * @psoc: pointer to psoc object
  461. * @value: Value that needs to be set from the caller
  462. *
  463. * Return: QDF Status
  464. */
  465. QDF_STATUS wlan_mlme_set_rmc_action_period_freq(struct wlan_objmgr_psoc *psoc,
  466. int value);
  467. /**
  468. * wlan_mlme_set_sap_get_peer_info() - get the sap get peer info
  469. * @psoc: pointer to psoc object
  470. * @value: Value that needs to be set from the caller
  471. *
  472. * Return: QDF Status
  473. */
  474. QDF_STATUS wlan_mlme_get_sap_get_peer_info(struct wlan_objmgr_psoc *psoc,
  475. bool *value);
  476. /**
  477. * wlan_mlme_get_sap_allow_all_channels() - get the value of sap allow all
  478. * channels
  479. * @psoc: pointer to psoc object
  480. * @value: Value that needs to be set from the caller
  481. *
  482. * Return: QDF Status
  483. */
  484. QDF_STATUS wlan_mlme_get_sap_allow_all_channels(struct wlan_objmgr_psoc *psoc,
  485. bool *value);
  486. /**
  487. * wlan_mlme_get_sap_allow_all_channels() - get the value sap max peers
  488. * @psoc: pointer to psoc object
  489. * @value: Value that needs to be set from the caller
  490. *
  491. * Return: QDF Status
  492. */
  493. QDF_STATUS wlan_mlme_get_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  494. int *value);
  495. /**
  496. * wlan_mlme_set_sap_max_peers() - set the value sap max peers
  497. * @psoc: pointer to psoc object
  498. * @value: Value that needs to be set from the caller
  499. *
  500. * Return: QDF Status
  501. */
  502. QDF_STATUS wlan_mlme_set_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  503. int value);
  504. /**
  505. * wlan_mlme_get_sap_max_offload_peers() - get the value sap max offload peers
  506. * @psoc: pointer to psoc object
  507. * @value: Value that needs to be set from the caller
  508. *
  509. * Return: QDF Status
  510. */
  511. QDF_STATUS wlan_mlme_get_sap_max_offload_peers(struct wlan_objmgr_psoc *psoc,
  512. int *value);
  513. /**
  514. * wlan_mlme_get_sap_max_offload_reorder_buffs() - get the value sap max offload
  515. * reorder buffs.
  516. * @psoc: pointer to psoc object
  517. * @value: Value that needs to be set from the caller
  518. *
  519. * Return: QDF Status
  520. */
  521. QDF_STATUS wlan_mlme_get_sap_max_offload_reorder_buffs(struct wlan_objmgr_psoc
  522. *psoc, int *value);
  523. /**
  524. * wlan_mlme_get_sap_chn_switch_bcn_count() - get the value sap max channel
  525. * switch beacon count
  526. * @psoc: pointer to psoc object
  527. * @value: Value that needs to be set from the caller
  528. *
  529. * Return: QDF Status
  530. */
  531. QDF_STATUS wlan_mlme_get_sap_chn_switch_bcn_count(struct wlan_objmgr_psoc *psoc,
  532. int *value);
  533. /**
  534. * wlan_mlme_get_sap_chn_switch_mode() - get the sap channel
  535. * switch mode
  536. * @psoc: pointer to psoc object
  537. * @value: Value that needs to be set from the caller
  538. *
  539. * Return: QDF Status
  540. */
  541. QDF_STATUS wlan_mlme_get_sap_chn_switch_mode(struct wlan_objmgr_psoc *psoc,
  542. bool *value);
  543. /**
  544. * wlan_mlme_get_sap_internal_restart() - get the sap internal
  545. * restart
  546. * @psoc: pointer to psoc object
  547. * @value: Value that needs to be set from the caller
  548. *
  549. * Return: QDF Status
  550. */
  551. QDF_STATUS wlan_mlme_get_sap_internal_restart(struct wlan_objmgr_psoc *psoc,
  552. bool *value);
  553. /**
  554. * wlan_mlme_get_sap_max_modulated_dtim() - get the max modulated dtim
  555. * restart
  556. * @psoc: pointer to psoc object
  557. * @value: Value that needs to be set from the caller
  558. *
  559. * Return: QDF Status
  560. */
  561. QDF_STATUS wlan_mlme_get_sap_max_modulated_dtim(struct wlan_objmgr_psoc *psoc,
  562. uint8_t *value);
  563. /**
  564. * wlan_mlme_get_sap_chan_pref_location() - get the sap chan pref location
  565. * restart
  566. * @psoc: pointer to psoc object
  567. * @value: Value that needs to be set from the caller
  568. *
  569. * Return: QDF Status
  570. */
  571. QDF_STATUS wlan_mlme_get_sap_chan_pref_location(struct wlan_objmgr_psoc *psoc,
  572. uint8_t *value);
  573. /**
  574. * wlan_mlme_get_sap_country_priority() - get the sap country code priority
  575. * restart
  576. * @psoc: pointer to psoc object
  577. * @value: Value that needs to be set from the caller
  578. *
  579. * Return: QDF Status
  580. */
  581. QDF_STATUS wlan_mlme_get_sap_country_priority(struct wlan_objmgr_psoc *psoc,
  582. bool *value);
  583. /**
  584. * wlan_mlme_get_sap_reduced_beacon_interval() - get the sap reduced
  585. * beacon interval
  586. * @psoc: pointer to psoc object
  587. * @value: Value that needs to be set from the caller
  588. *
  589. * Return: QDF Status
  590. */
  591. QDF_STATUS wlan_mlme_get_sap_reduced_beacon_interval(struct wlan_objmgr_psoc
  592. *psoc, int *value);
  593. /**
  594. * wlan_mlme_get_sap_chan_switch_rate_enabled() - get the sap rate hostapd
  595. * enabled beacon interval
  596. * @psoc: pointer to psoc object
  597. * @value: Value that needs to be set from the caller
  598. *
  599. * Return: QDF Status
  600. */
  601. QDF_STATUS wlan_mlme_get_sap_chan_switch_rate_enabled(struct wlan_objmgr_psoc
  602. *psoc, bool *value);
  603. /**
  604. * wlan_mlme_get_sap_force_11n_for_11ac() - get the sap 11n for 11ac
  605. *
  606. * @psoc: pointer to psoc object
  607. * @value: Value that needs to be set from the caller
  608. *
  609. * Return: QDF Status
  610. */
  611. QDF_STATUS wlan_mlme_get_sap_force_11n_for_11ac(struct wlan_objmgr_psoc
  612. *psoc, bool *value);
  613. /**
  614. * wlan_mlme_get_go_force_11n_for_11ac() - get the go 11n for 11ac
  615. *
  616. * @psoc: pointer to psoc object
  617. * @value: Value that needs to be set from the caller
  618. *
  619. * Return: QDF Status
  620. */
  621. QDF_STATUS wlan_mlme_get_go_force_11n_for_11ac(struct wlan_objmgr_psoc
  622. *psoc, bool *value);
  623. /**
  624. * wlan_mlme_get_oce_sta_enabled_info() - Get the OCE feature enable
  625. * info for STA
  626. * @psoc: pointer to psoc object
  627. * @value: pointer to the value which will be filled for the caller
  628. *
  629. * Return: QDF Status
  630. */
  631. QDF_STATUS wlan_mlme_get_oce_sta_enabled_info(struct wlan_objmgr_psoc *psoc,
  632. bool *value);
  633. /**
  634. * wlan_mlme_get_oce_sap_enabled_info() - Get the OCE feature enable
  635. * info for SAP
  636. * @psoc: pointer to psoc object
  637. * @value: pointer to the value which will be filled for the caller
  638. *
  639. * Return: QDF Status
  640. */
  641. QDF_STATUS wlan_mlme_get_oce_sap_enabled_info(struct wlan_objmgr_psoc *psoc,
  642. bool *value);
  643. #ifdef WLAN_FEATURE_11AX
  644. /**
  645. * wlan_mlme_cfg_get_he_ul_mumimo() - Get the HE Ul Mumio
  646. * @psoc: pointer to psoc object
  647. * @value: Value that needs to be set from the caller
  648. *
  649. * Return: QDF Status
  650. */
  651. QDF_STATUS wlan_mlme_cfg_get_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  652. uint32_t *value);
  653. /**
  654. * wlan_mlme_cfg_set_he_ul_mumimo() - Set the HE Ul Mumio
  655. * @psoc: pointer to psoc object
  656. * @value: Value that needs to be set from the caller
  657. *
  658. * Return: QDF Status
  659. */
  660. QDF_STATUS wlan_mlme_cfg_set_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  661. uint32_t value);
  662. /**
  663. * wlan_mlme_cfg_get_enable_ul_mimo() - Get the HE Ul mimo
  664. * @psoc: pointer to psoc object
  665. * @value: Value that needs to be set from the caller
  666. *
  667. * Return: QDF Status
  668. */
  669. QDF_STATUS wlan_mlme_cfg_get_enable_ul_mimo(struct wlan_objmgr_psoc *psoc,
  670. uint8_t *value);
  671. /**
  672. * wlan_mlme_cfg_get_enable_ul_ofdm() - Get enable ul ofdm
  673. * @psoc: pointer to psoc object
  674. * @value: Value that needs to be set from the caller
  675. *
  676. * Return: QDF Status
  677. */
  678. QDF_STATUS wlan_mlme_cfg_get_enable_ul_ofdm(struct wlan_objmgr_psoc *psoc,
  679. uint8_t *value);
  680. /**
  681. * mlme_update_tgt_he_caps_in_cfg() - Update tgt he cap in mlme component
  682. *
  683. * @psoc: pointer to psoc object
  684. * @cfg: pointer to config params from target
  685. *
  686. * This api to be used by callers to update
  687. * he caps in mlme.
  688. *
  689. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  690. */
  691. QDF_STATUS mlme_update_tgt_he_caps_in_cfg(struct wlan_objmgr_psoc *psoc,
  692. struct wma_tgt_cfg *cfg);
  693. #endif
  694. /**
  695. * wlan_mlme_get_ap_protection_mode() - Get ap_protection_mode value
  696. * @psoc: pointer to psoc object
  697. * @value: pointer to the value which needs to be filled for the caller
  698. *
  699. * Return: QDF Status
  700. */
  701. QDF_STATUS wlan_mlme_get_ap_protection_mode(struct wlan_objmgr_psoc *psoc,
  702. uint16_t *value);
  703. /**
  704. * wlan_mlme_is_ap_obss_prot_enabled() - Get ap_obss_protection is
  705. * enabled/disabled
  706. * @psoc: pointer to psoc object
  707. * @value: pointer to the value which needs to be filled for the caller
  708. *
  709. * Return: QDF Status
  710. */
  711. QDF_STATUS wlan_mlme_is_ap_obss_prot_enabled(struct wlan_objmgr_psoc *psoc,
  712. bool *value);
  713. /**
  714. * wlan_mlme_get_rts_threshold() - Get the RTS threshold config
  715. * @psoc: pointer to psoc object
  716. * @value: pointer to the value which will be filled for the caller
  717. *
  718. * Return: QDF Status
  719. */
  720. QDF_STATUS wlan_mlme_get_rts_threshold(struct wlan_objmgr_psoc *psoc,
  721. uint32_t *value);
  722. /**
  723. * wlan_mlme_set_rts_threshold() - Set the RTS threshold config
  724. * @psoc: pointer to psoc object
  725. * @value: Value that needs to be set from the caller
  726. *
  727. * Return: QDF Status
  728. */
  729. QDF_STATUS wlan_mlme_set_rts_threshold(struct wlan_objmgr_psoc *psoc,
  730. uint32_t value);
  731. /**
  732. * wlan_mlme_get_frag_threshold() - Get the Fragmentation threshold
  733. * config
  734. * @psoc: pointer to psoc object
  735. * @value: pointer to the value which will be filled for the caller
  736. *
  737. * Return: QDF Status
  738. */
  739. QDF_STATUS wlan_mlme_get_frag_threshold(struct wlan_objmgr_psoc *psoc,
  740. uint32_t *value);
  741. /**
  742. * wlan_mlme_set_frag_threshold() - Set the Fragmentation threshold
  743. * config
  744. * @psoc: pointer to psoc object
  745. * @value: Value that needs to be set from the caller
  746. *
  747. * Return: QDF Status
  748. */
  749. QDF_STATUS wlan_mlme_set_frag_threshold(struct wlan_objmgr_psoc *psoc,
  750. uint32_t value);
  751. /**
  752. * wlan_mlme_get_fils_enabled_info() - Get the fils enable info for driver
  753. * @psoc: pointer to psoc object
  754. * @value: pointer to the value which will be filled for the caller
  755. *
  756. * Return: QDF Status
  757. */
  758. QDF_STATUS wlan_mlme_get_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  759. bool *value);
  760. /**
  761. * wlan_mlme_set_fils_enabled_info() - Set the fils enable info for driver
  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_set_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  768. bool value);
  769. /**
  770. * wlan_mlme_get_wmm_dir_ac_vi() - Get TSPEC direction
  771. * for VI
  772. * @psoc: pointer to psoc object
  773. * @value: Value that needs to be set from the caller
  774. *
  775. * Return: QDF Status
  776. */
  777. QDF_STATUS
  778. wlan_mlme_get_wmm_dir_ac_vi(struct wlan_objmgr_psoc *psoc,
  779. uint8_t *value);
  780. /**
  781. * wlan_mlme_get_wmm_nom_msdu_size_ac_vi() - Get normal
  782. * MSDU size for VI
  783. * @psoc: pointer to psoc object
  784. * @value: Value that needs to be set from the caller
  785. *
  786. * Return: QDF Status
  787. */
  788. QDF_STATUS
  789. wlan_mlme_get_wmm_nom_msdu_size_ac_vi(struct wlan_objmgr_psoc *psoc,
  790. uint16_t *value);
  791. /**
  792. * wlan_mlme_get_wmm_mean_data_rate_ac_vi() - mean data
  793. * rate for VI
  794. * @psoc: pointer to psoc object
  795. * @value: Value that needs to be set from the caller
  796. *
  797. * Return: QDF Status
  798. */
  799. QDF_STATUS
  800. wlan_mlme_get_wmm_mean_data_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  801. uint32_t *value);
  802. /**
  803. * wlan_mlme_get_wmm_min_phy_rate_ac_vi() - min PHY
  804. * rate for VI
  805. * @psoc: pointer to psoc object
  806. * @value: Value that needs to be set from the caller
  807. *
  808. * Return: QDF Status
  809. */
  810. QDF_STATUS
  811. wlan_mlme_get_wmm_min_phy_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  812. uint32_t *value);
  813. /**
  814. * wlan_mlme_get_wmm_sba_ac_vi() - surplus bandwidth
  815. * allowance for VI
  816. * @psoc: pointer to psoc object
  817. * @value: Value that needs to be set from the caller
  818. *
  819. * Return: QDF Status
  820. */
  821. QDF_STATUS
  822. wlan_mlme_get_wmm_sba_ac_vi(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  823. /**
  824. * wlan_mlme_get_wmm_uapsd_vi_srv_intv() - Get Uapsd service
  825. * interval for video
  826. * @psoc: pointer to psoc object
  827. * @value: pointer to the value which will be filled for the caller
  828. *
  829. * Return: QDF Status
  830. */
  831. QDF_STATUS
  832. wlan_mlme_get_wmm_uapsd_vi_srv_intv(struct wlan_objmgr_psoc *psoc,
  833. uint32_t *value);
  834. /**
  835. * wlan_mlme_get_wmm_uapsd_vi_sus_intv() - Get Uapsd suspension
  836. * interval for video
  837. * @psoc: pointer to psoc object
  838. * @value: pointer to the value which will be filled for the caller
  839. *
  840. * Return: QDF Status
  841. */
  842. QDF_STATUS
  843. wlan_mlme_get_wmm_uapsd_vi_sus_intv(struct wlan_objmgr_psoc *psoc,
  844. uint32_t *value);
  845. /**
  846. * wlan_mlme_get_wmm_dir_ac_be() - Get TSPEC direction
  847. * for BE
  848. * @psoc: pointer to psoc object
  849. * @value: Value that needs to be set from the caller
  850. *
  851. * Return: QDF Status
  852. */
  853. QDF_STATUS
  854. wlan_mlme_get_wmm_dir_ac_be(struct wlan_objmgr_psoc *psoc,
  855. uint8_t *value);
  856. /**
  857. * wlan_mlme_get_wmm_nom_msdu_size_ac_be() - Get normal
  858. * MSDU size for BE
  859. * @psoc: pointer to psoc object
  860. * @value: Value that needs to be set from the caller
  861. *
  862. * Return: QDF Status
  863. */
  864. QDF_STATUS
  865. wlan_mlme_get_wmm_nom_msdu_size_ac_be(struct wlan_objmgr_psoc *psoc,
  866. uint16_t *value);
  867. /**
  868. * wlan_mlme_get_wmm_mean_data_rate_ac_be() - mean data
  869. * rate for BE
  870. * @psoc: pointer to psoc object
  871. * @value: Value that needs to be set from the caller
  872. *
  873. * Return: QDF Status
  874. */
  875. QDF_STATUS
  876. wlan_mlme_get_wmm_mean_data_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  877. uint32_t *value);
  878. /**
  879. * wlan_mlme_get_wmm_min_phy_rate_ac_be() - min PHY
  880. * rate for BE
  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_get_wmm_min_phy_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  887. uint32_t *value);
  888. /**
  889. * wlan_mlme_get_wmm_sba_ac_be() - surplus bandwidth
  890. * allowance for BE
  891. * @psoc: pointer to psoc object
  892. * @value: Value that needs to be set from the caller
  893. *
  894. * Return: QDF Status
  895. */
  896. QDF_STATUS wlan_mlme_get_wmm_sba_ac_be(struct wlan_objmgr_psoc *psoc,
  897. uint16_t *value);
  898. /**
  899. * wlan_mlme_get_wmm_uapsd_be_srv_intv() - Get Uapsd service
  900. * interval for BE
  901. * @psoc: pointer to psoc object
  902. * @value: pointer to the value which will be filled for the caller
  903. *
  904. * Return: QDF Status
  905. */
  906. QDF_STATUS wlan_mlme_get_wmm_uapsd_be_srv_intv(struct wlan_objmgr_psoc *psoc,
  907. uint32_t *value);
  908. /**
  909. * wlan_mlme_get_wmm_uapsd_be_sus_intv() - Get Uapsd suspension
  910. * interval for BE
  911. * @psoc: pointer to psoc object
  912. * @value: pointer to the value which will be filled for the caller
  913. *
  914. * Return: QDF Status
  915. */
  916. QDF_STATUS wlan_mlme_get_wmm_uapsd_be_sus_intv(struct wlan_objmgr_psoc *psoc,
  917. uint32_t *value);
  918. /**
  919. * wlan_mlme_get_wmm_dir_ac_bk() - Get TSPEC direction
  920. * for BK
  921. * @psoc: pointer to psoc object
  922. * @value: Value that needs to be set from the caller
  923. *
  924. * Return: QDF Status
  925. */
  926. QDF_STATUS
  927. wlan_mlme_get_wmm_dir_ac_bk(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  928. /**
  929. * wlan_mlme_get_wmm_nom_msdu_size_ac_bk() - Get normal
  930. * MSDU size for BK
  931. * @psoc: pointer to psoc object
  932. * @value: Value that needs to be set from the caller
  933. *
  934. * Return: QDF Status
  935. */
  936. QDF_STATUS
  937. wlan_mlme_get_wmm_nom_msdu_size_ac_bk(struct wlan_objmgr_psoc *psoc,
  938. uint16_t *value);
  939. /**
  940. * wlan_mlme_get_wmm_mean_data_rate_ac_bk() - mean data
  941. * rate for BK
  942. * @psoc: pointer to psoc object
  943. * @value: Value that needs to be set from the caller
  944. *
  945. * Return: QDF Status
  946. */
  947. QDF_STATUS
  948. wlan_mlme_get_wmm_mean_data_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  949. uint32_t *value);
  950. /**
  951. * wlan_mlme_get_wmm_min_phy_rate_ac_bk() - min PHY
  952. * rate for BK
  953. * @psoc: pointer to psoc object
  954. * @value: Value that needs to be set from the caller
  955. *
  956. * Return: QDF Status
  957. */
  958. QDF_STATUS
  959. wlan_mlme_get_wmm_min_phy_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  960. uint32_t *value);
  961. /**
  962. * wlan_mlme_get_wmm_sba_ac_bk() - surplus bandwidth
  963. * allowance for BE
  964. * @psoc: pointer to psoc object
  965. * @value: Value that needs to be set from the caller
  966. *
  967. * Return: QDF Status
  968. */
  969. QDF_STATUS
  970. wlan_mlme_get_wmm_sba_ac_bk(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  971. /**
  972. * wlan_mlme_get_wmm_uapsd_bk_srv_intv() - Get Uapsd service
  973. * interval for BK
  974. * @psoc: pointer to psoc object
  975. * @value: pointer to the value which will be filled for the caller
  976. *
  977. * Return: QDF Status
  978. */
  979. QDF_STATUS
  980. wlan_mlme_get_wmm_uapsd_bk_srv_intv(struct wlan_objmgr_psoc *psoc,
  981. uint32_t *value);
  982. /**
  983. * wlan_mlme_get_wmm_uapsd_bk_sus_intv() - Get Uapsd suspension
  984. * interval for BK
  985. * @psoc: pointer to psoc object
  986. * @value: pointer to the value which will be filled for the caller
  987. *
  988. * Return: QDF Status
  989. */
  990. QDF_STATUS
  991. wlan_mlme_get_wmm_uapsd_bk_sus_intv(struct wlan_objmgr_psoc *psoc,
  992. uint32_t *value);
  993. /**
  994. * wlan_mlme_get_wmm_mode() - Enable WMM feature
  995. * @psoc: pointer to psoc object
  996. * @value: pointer to the value which will be filled for the caller
  997. *
  998. * Return: QDF Status
  999. */
  1000. QDF_STATUS
  1001. wlan_mlme_get_wmm_mode(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1002. /**
  1003. * wlan_mlme_get_80211e_is_enabled() - Enable 802.11e feature
  1004. * @psoc: pointer to psoc object
  1005. * @value: pointer to the value which will be filled for the caller
  1006. *
  1007. * Return: QDF Status
  1008. */
  1009. QDF_STATUS
  1010. wlan_mlme_get_80211e_is_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1011. /**
  1012. * wlan_mlme_get_wmm_uapsd_mask() - setup U-APSD mask for ACs
  1013. * @psoc: pointer to psoc object
  1014. * @value: pointer to the value which will be filled for the caller
  1015. *
  1016. * Return: QDF Status
  1017. */
  1018. QDF_STATUS
  1019. wlan_mlme_get_wmm_uapsd_mask(struct wlan_objmgr_psoc *psoc, uint8_t *value);
  1020. /**
  1021. * wlan_mlme_get_implicit_qos_is_enabled() - Enable implicit QOS
  1022. * @psoc: pointer to psoc object
  1023. * @value: pointer to the value which will be filled for the caller
  1024. *
  1025. * Return: QDF Status
  1026. */
  1027. QDF_STATUS
  1028. wlan_mlme_get_implicit_qos_is_enabled(struct wlan_objmgr_psoc *psoc,
  1029. bool *value);
  1030. #ifdef FEATURE_WLAN_ESE
  1031. /**
  1032. * wlan_mlme_get_inactivity_interval() - Infra Inactivity Interval
  1033. * @psoc: pointer to psoc object
  1034. * @value: pointer to the value which will be filled for the caller
  1035. *
  1036. * Return: None
  1037. */
  1038. void wlan_mlme_get_inactivity_interval(struct wlan_objmgr_psoc *psoc,
  1039. uint32_t *value);
  1040. #endif
  1041. /**
  1042. * wlan_mlme_get_is_ts_burst_size_enable() - Get TS burst size flag
  1043. * @psoc: pointer to psoc object
  1044. * @value: pointer to the value which will be filled for the caller
  1045. *
  1046. * Return: None
  1047. */
  1048. void wlan_mlme_get_is_ts_burst_size_enable(struct wlan_objmgr_psoc *psoc,
  1049. bool *value);
  1050. /**
  1051. * wlan_mlme_get_ts_info_ack_policy() - Get TS ack policy
  1052. * @psoc: pointer to psoc object
  1053. * @value: pointer to the value which will be filled for the caller
  1054. *
  1055. * Return: None
  1056. */
  1057. void wlan_mlme_get_ts_info_ack_policy(struct wlan_objmgr_psoc *psoc,
  1058. enum mlme_ts_info_ack_policy *value);
  1059. /**
  1060. * wlan_mlme_get_ts_acm_value_for_ac() - Get ACM value for AC
  1061. * @psoc: pointer to psoc object
  1062. * @value: pointer to the value which will be filled for the caller
  1063. *
  1064. * Return: QDF Status
  1065. */
  1066. QDF_STATUS
  1067. wlan_mlme_get_ts_acm_value_for_ac(struct wlan_objmgr_psoc *psoc, bool *value);
  1068. /**
  1069. * wlan_mlme_get_wmm_dir_ac_vo() - Get TSPEC direction
  1070. * for VO
  1071. * @psoc: pointer to psoc object
  1072. * @value: Value that needs to be set from the caller
  1073. *
  1074. * Return: QDF Status
  1075. */
  1076. QDF_STATUS wlan_mlme_get_wmm_dir_ac_vo(struct wlan_objmgr_psoc *psoc,
  1077. uint8_t *value);
  1078. /**
  1079. * wlan_mlme_get_wmm_nom_msdu_size_ac_vo() - Get normal
  1080. * MSDU size for VO
  1081. * @psoc: pointer to psoc object
  1082. * @value: Value that needs to be set from the caller
  1083. *
  1084. * Return: QDF Status
  1085. */
  1086. QDF_STATUS
  1087. wlan_mlme_get_wmm_nom_msdu_size_ac_vo(struct wlan_objmgr_psoc *psoc,
  1088. uint16_t *value);
  1089. /**
  1090. * wlan_mlme_get_wmm_mean_data_rate_ac_vo() - mean data rate for VO
  1091. * @psoc: pointer to psoc object
  1092. * @value: Value that needs to be set from the caller
  1093. *
  1094. * Return: QDF Status
  1095. */
  1096. QDF_STATUS
  1097. wlan_mlme_get_wmm_mean_data_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  1098. uint32_t *value);
  1099. /**
  1100. * wlan_mlme_get_wmm_min_phy_rate_ac_vo() - min PHY
  1101. * rate for VO
  1102. * @psoc: pointer to psoc object
  1103. * @value: Value that needs to be set from the caller
  1104. *
  1105. * Return: QDF Status
  1106. */
  1107. QDF_STATUS
  1108. wlan_mlme_get_wmm_min_phy_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  1109. uint32_t *value);
  1110. /**
  1111. * wlan_mlme_get_wmm_sba_ac_vo() - surplus bandwidth allowance for VO
  1112. * @psoc: pointer to psoc object
  1113. * @value: Value that needs to be set from the caller
  1114. *
  1115. * Return: QDF Status
  1116. */
  1117. QDF_STATUS
  1118. wlan_mlme_get_wmm_sba_ac_vo(struct wlan_objmgr_psoc *psoc, uint16_t *value);
  1119. /**
  1120. * wlan_mlme_set_enable_bcast_probe_rsp() - Set enable bcast probe resp info
  1121. * @psoc: pointer to psoc object
  1122. * @value: value that needs to be set from the caller
  1123. *
  1124. * Return: QDF Status
  1125. */
  1126. QDF_STATUS wlan_mlme_set_enable_bcast_probe_rsp(struct wlan_objmgr_psoc *psoc,
  1127. bool value);
  1128. /**
  1129. * wlan_mlme_get_wmm_uapsd_vo_srv_intv() - Get Uapsd service
  1130. * interval for voice
  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_uapsd_vo_srv_intv(struct wlan_objmgr_psoc *psoc,
  1138. uint32_t *value);
  1139. /**
  1140. * wlan_mlme_get_wmm_uapsd_vo_sus_intv() - Get Uapsd suspension
  1141. * interval for voice
  1142. * @psoc: pointer to psoc object
  1143. * @value: pointer to the value which will be filled for the caller
  1144. *
  1145. * Return: QDF Status
  1146. */
  1147. QDF_STATUS
  1148. wlan_mlme_get_wmm_uapsd_vo_sus_intv(struct wlan_objmgr_psoc *psoc,
  1149. uint32_t *value);
  1150. /**
  1151. * wlan_mlme_cfg_get_vht_max_mpdu_len() - gets vht max mpdu length from cfg item
  1152. * @psoc: psoc context
  1153. * @value: pointer to get required data
  1154. *
  1155. * Return: QDF_STATUS
  1156. */
  1157. QDF_STATUS wlan_mlme_cfg_get_vht_max_mpdu_len(struct wlan_objmgr_psoc *psoc,
  1158. uint8_t *value);
  1159. /**
  1160. * wlan_mlme_cfg_set_vht_max_mpdu_len() - sets vht max mpdu length into cfg item
  1161. * @psoc: psoc context
  1162. * @value: data to be set
  1163. *
  1164. * Return: QDF_STATUS
  1165. */
  1166. QDF_STATUS wlan_mlme_cfg_set_vht_max_mpdu_len(struct wlan_objmgr_psoc *psoc,
  1167. uint8_t value);
  1168. /**
  1169. * wlan_mlme_cfg_get_vht_chan_width() - gets vht supported channel width from
  1170. * cfg item
  1171. * @psoc: psoc context
  1172. * @value: pointer to get required data
  1173. *
  1174. * Return: QDF_STATUS
  1175. */
  1176. QDF_STATUS wlan_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1177. uint8_t *value);
  1178. /**
  1179. * wlan_mlme_cfg_set_vht_chan_width() - sets vht supported channel width into
  1180. * cfg item
  1181. * @psoc: psoc context
  1182. * @value: data to be set
  1183. *
  1184. * Return: QDF_STATUS
  1185. */
  1186. QDF_STATUS wlan_mlme_cfg_set_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1187. uint8_t value);
  1188. /**
  1189. * wlan_mlme_cfg_get_vht_chan_width() - sets vht supported channel width into
  1190. * cfg item
  1191. * @psoc: psoc context
  1192. * @value: data to be set
  1193. *
  1194. * Return: QDF_STATUS
  1195. */
  1196. QDF_STATUS wlan_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1197. uint8_t *value);
  1198. /**
  1199. * wlan_mlme_cfg_get_vht_ldpc_coding_cap() - gets vht ldpc coding cap from
  1200. * cfg item
  1201. * @psoc: psoc context
  1202. * @value: pointer to get required data
  1203. *
  1204. * Return: QDF_STATUS
  1205. */
  1206. QDF_STATUS wlan_mlme_cfg_get_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1207. bool *value);
  1208. /**
  1209. * wlan_mlme_cfg_set_vht_ldpc_coding_cap() - sets vht ldpc coding cap into
  1210. * cfg item
  1211. * @psoc: psoc context
  1212. * @value: data to be set
  1213. *
  1214. * Return: QDF_STATUS
  1215. */
  1216. QDF_STATUS wlan_mlme_cfg_set_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1217. bool value);
  1218. /**
  1219. * wlan_mlme_cfg_get_vht_short_gi_80mhz() - gets vht short gi 80MHz from
  1220. * cfg item
  1221. * @psoc: psoc context
  1222. * @value: pointer to get required data
  1223. *
  1224. * Return: QDF_STATUS
  1225. */
  1226. QDF_STATUS wlan_mlme_cfg_get_vht_short_gi_80mhz(struct wlan_objmgr_psoc *psoc,
  1227. bool *value);
  1228. /**
  1229. * wlan_mlme_cfg_set_vht_short_gi_80mhz() - sets vht short gi 80MHz into
  1230. * cfg item
  1231. * @psoc: psoc context
  1232. * @value: data to be set
  1233. *
  1234. * Return: QDF_STATUS
  1235. */
  1236. QDF_STATUS wlan_mlme_cfg_set_vht_short_gi_80mhz(struct wlan_objmgr_psoc *psoc,
  1237. bool value);
  1238. /**
  1239. * wlan_mlme_cfg_get_short_gi_160_mhz() - gets vht short gi 160MHz from
  1240. * cfg item
  1241. * @psoc: psoc context
  1242. * @value: pointer to get required data
  1243. *
  1244. * Return: QDF_STATUS
  1245. */
  1246. QDF_STATUS wlan_mlme_cfg_get_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc,
  1247. bool *value);
  1248. /**
  1249. * wlan_mlme_cfg_set_short_gi_160_mhz() - sets vht short gi 160MHz into
  1250. * cfg item
  1251. * @psoc: psoc context
  1252. * @value: data to be set
  1253. *
  1254. * Return: QDF_STATUS
  1255. */
  1256. QDF_STATUS wlan_mlme_cfg_set_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc,
  1257. bool value);
  1258. /**
  1259. * wlan_mlme_cfg_get_vht_tx_stbc() - gets vht tx stbc from
  1260. * cfg item
  1261. * @psoc: psoc context
  1262. * @value: pointer to get required data
  1263. *
  1264. * Return: QDF_STATUS
  1265. */
  1266. QDF_STATUS wlan_mlme_cfg_get_vht_tx_stbc(struct wlan_objmgr_psoc *psoc,
  1267. bool *value);
  1268. /**
  1269. * wlan_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1270. * cfg item
  1271. * @psoc: psoc context
  1272. * @value: pointer to get required data
  1273. *
  1274. * Return: QDF_STATUS
  1275. */
  1276. QDF_STATUS wlan_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc,
  1277. bool *value);
  1278. /**
  1279. * wlan_mlme_cfg_set_vht_tx_stbc() - sets vht tx stbc into
  1280. * cfg item
  1281. * @psoc: psoc context
  1282. * @value: data to be set
  1283. *
  1284. * Return: QDF_STATUS
  1285. */
  1286. QDF_STATUS wlan_mlme_cfg_set_vht_tx_stbc(struct wlan_objmgr_psoc *psoc,
  1287. bool value);
  1288. /**
  1289. * wlan_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1290. * cfg item
  1291. * @psoc: psoc context
  1292. * @value: pointer to get required data
  1293. *
  1294. * Return: QDF_STATUS
  1295. */
  1296. QDF_STATUS wlan_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc,
  1297. bool *value);
  1298. /**
  1299. * wlan_mlme_cfg_set_vht_rx_stbc() - sets vht rx stbc into
  1300. * cfg item
  1301. * @psoc: psoc context
  1302. * @value: data to be set
  1303. *
  1304. * Return: QDF_STATUS
  1305. */
  1306. QDF_STATUS wlan_mlme_cfg_set_vht_rx_stbc(struct wlan_objmgr_psoc *psoc,
  1307. bool value);
  1308. /**
  1309. * wlan_mlme_cfg_get_vht_su_bformer() - gets vht su beam former cap from
  1310. * cfg item
  1311. * @psoc: psoc context
  1312. * @value: pointer to get required data
  1313. *
  1314. * Return: QDF_STATUS
  1315. */
  1316. QDF_STATUS wlan_mlme_cfg_get_vht_su_bformer(struct wlan_objmgr_psoc *psoc,
  1317. bool *value);
  1318. /**
  1319. * wlan_mlme_cfg_set_vht_su_bformer() - sets vht su beam former cap into
  1320. * cfg item
  1321. * @psoc: psoc context
  1322. * @value: data to be set
  1323. *
  1324. * Return: QDF_STATUS
  1325. */
  1326. QDF_STATUS wlan_mlme_cfg_set_vht_su_bformer(struct wlan_objmgr_psoc *psoc,
  1327. bool value);
  1328. /**
  1329. * wlan_mlme_cfg_set_vht_su_bformee() - sets vht su beam formee cap into
  1330. * cfg item
  1331. * @psoc: psoc context
  1332. * @value: data to be set
  1333. *
  1334. * Return: QDF_STATUS
  1335. */
  1336. QDF_STATUS wlan_mlme_cfg_set_vht_su_bformee(struct wlan_objmgr_psoc *psoc,
  1337. bool value);
  1338. /**
  1339. * wlan_mlme_cfg_set_vht_tx_bfee_ant_supp() - sets vht Beamformee antenna
  1340. * support cap
  1341. * into cfg item
  1342. * @psoc: psoc context
  1343. * @value: data to be set
  1344. *
  1345. * Return: QDF_STATUS
  1346. */
  1347. QDF_STATUS wlan_mlme_cfg_set_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1348. uint8_t value);
  1349. /**
  1350. * wlan_mlme_cfg_get_vht_tx_bfee_ant_supp() - Gets vht Beamformee antenna
  1351. * support cap into cfg item
  1352. *
  1353. * @psoc: psoc context
  1354. * @value: data to be set
  1355. *
  1356. * Return: QDF_STATUS
  1357. */
  1358. QDF_STATUS wlan_mlme_cfg_get_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1359. uint8_t *value);
  1360. /**
  1361. * wlan_mlme_cfg_set_vht_num_sounding_dim() - sets vht no of sounding dimensions
  1362. * into cfg item
  1363. * @psoc: psoc context
  1364. * @value: data to be set
  1365. *
  1366. * Return: QDF_STATUS
  1367. */
  1368. QDF_STATUS wlan_mlme_cfg_set_vht_num_sounding_dim(struct wlan_objmgr_psoc *psoc,
  1369. uint8_t value);
  1370. /**
  1371. * wlan_mlme_cfg_get_vht_mu_bformer() - gets vht mu beam former cap from
  1372. * cfg item
  1373. * @psoc: psoc context
  1374. * @value: pointer to get required data
  1375. *
  1376. * Return: QDF_STATUS
  1377. */
  1378. QDF_STATUS wlan_mlme_cfg_get_vht_mu_bformer(struct wlan_objmgr_psoc *psoc,
  1379. bool *value);
  1380. /**
  1381. * wlan_mlme_cfg_set_vht_mu_bformer() - sets vht mu beam former cap into
  1382. * cfg item
  1383. * @psoc: psoc context
  1384. * @value: data to be set
  1385. *
  1386. * Return: QDF_STATUS
  1387. */
  1388. QDF_STATUS wlan_mlme_cfg_set_vht_mu_bformer(struct wlan_objmgr_psoc *psoc,
  1389. bool value);
  1390. /**
  1391. * wlan_mlme_cfg_get_vht_mu_bformee() - gets vht mu beam formee cap from
  1392. * cfg item
  1393. * @psoc: psoc context
  1394. * @value: pointer to get required data
  1395. *
  1396. * Return: QDF_STATUS
  1397. */
  1398. QDF_STATUS wlan_mlme_cfg_get_vht_mu_bformee(struct wlan_objmgr_psoc *psoc,
  1399. bool *value);
  1400. /**
  1401. * wlan_mlme_cfg_set_vht_mu_bformee() - sets vht mu beam formee cap into
  1402. * cfg item
  1403. * @psoc: psoc context
  1404. * @value: data to be set
  1405. *
  1406. * Return: QDF_STATUS
  1407. */
  1408. QDF_STATUS wlan_mlme_cfg_set_vht_mu_bformee(struct wlan_objmgr_psoc *psoc,
  1409. bool value);
  1410. /**
  1411. * wlan_mlme_cfg_get_vht_txop_ps() - gets vht tx ops ps cap from
  1412. * cfg item
  1413. * @psoc: psoc context
  1414. * @value: pointer to get required data
  1415. *
  1416. * Return: QDF_STATUS
  1417. */
  1418. QDF_STATUS wlan_mlme_cfg_get_vht_txop_ps(struct wlan_objmgr_psoc *psoc,
  1419. bool *value);
  1420. /**
  1421. * wlan_mlme_cfg_set_vht_txop_ps() - sets vht tx ops ps cap into
  1422. * cfg item
  1423. * @psoc: psoc context
  1424. * @value: data to be set
  1425. *
  1426. * Return: QDF_STATUS
  1427. */
  1428. QDF_STATUS wlan_mlme_cfg_set_vht_txop_ps(struct wlan_objmgr_psoc *psoc,
  1429. bool value);
  1430. /**
  1431. * wlan_mlme_cfg_get_vht_ampdu_len_exp() - gets vht max AMPDU length exponent from
  1432. * cfg item
  1433. * @psoc: psoc context
  1434. * @value: pointer to get required data
  1435. *
  1436. * Return: QDF_STATUS
  1437. */
  1438. QDF_STATUS wlan_mlme_cfg_get_vht_ampdu_len_exp(struct wlan_objmgr_psoc *psoc,
  1439. uint8_t *value);
  1440. /**
  1441. * wlan_mlme_cfg_set_vht_ampdu_len_exp() - sets vht max AMPDU length exponent into
  1442. * cfg item
  1443. * @psoc: psoc context
  1444. * @value: data to be set
  1445. *
  1446. * Return: QDF_STATUS
  1447. */
  1448. QDF_STATUS wlan_mlme_cfg_set_vht_ampdu_len_exp(struct wlan_objmgr_psoc *psoc,
  1449. uint8_t value);
  1450. /**
  1451. * wlan_mlme_cfg_get_vht_rx_mcs_map() - gets vht rx mcs map from
  1452. * cfg item
  1453. * @psoc: psoc context
  1454. * @value: pointer to get required data
  1455. *
  1456. * Return: QDF_STATUS
  1457. */
  1458. QDF_STATUS wlan_mlme_cfg_get_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1459. uint32_t *value);
  1460. /**
  1461. * wlan_mlme_cfg_set_vht_rx_mcs_map() - sets rx mcs map into
  1462. * cfg item
  1463. * @psoc: psoc context
  1464. * @value: data to be set
  1465. *
  1466. * Return: QDF_STATUS
  1467. */
  1468. QDF_STATUS wlan_mlme_cfg_set_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1469. uint32_t value);
  1470. /**
  1471. * wlan_mlme_cfg_get_vht_tx_mcs_map() - gets vht tx mcs map from
  1472. * cfg item
  1473. * @psoc: psoc context
  1474. * @value: pointer to get required data
  1475. *
  1476. * Return: QDF_STATUS
  1477. */
  1478. QDF_STATUS wlan_mlme_cfg_get_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1479. uint32_t *value);
  1480. /**
  1481. * wlan_mlme_cfg_set_vht_tx_mcs_map() - sets tx mcs map into
  1482. * cfg item
  1483. * @psoc: psoc context
  1484. * @value: data to be set
  1485. *
  1486. * Return: QDF_STATUS
  1487. */
  1488. QDF_STATUS wlan_mlme_cfg_set_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1489. uint32_t value);
  1490. /**
  1491. * wlan_mlme_cfg_set_vht_rx_supp_data_rate() - sets rx supported data rate into
  1492. * cfg item
  1493. * @psoc: psoc context
  1494. * @value: data to be set
  1495. *
  1496. * Return: QDF_STATUS
  1497. */
  1498. QDF_STATUS
  1499. wlan_mlme_cfg_set_vht_rx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1500. uint32_t value);
  1501. /**
  1502. * wlan_mlme_cfg_set_vht_tx_supp_data_rate() - sets tx supported data rate into
  1503. * cfg item
  1504. * @psoc: psoc context
  1505. * @value: data to be set
  1506. *
  1507. * Return: QDF_STATUS
  1508. */
  1509. QDF_STATUS
  1510. wlan_mlme_cfg_set_vht_tx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1511. uint32_t value);
  1512. /**
  1513. * wlan_mlme_cfg_get_vht_basic_mcs_set() - gets basic mcs set from
  1514. * cfg item
  1515. * @psoc: psoc context
  1516. * @value: data to be set
  1517. *
  1518. * Return: QDF_STATUS
  1519. */
  1520. QDF_STATUS wlan_mlme_cfg_get_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1521. uint32_t *value);
  1522. /**
  1523. * wlan_mlme_cfg_set_vht_basic_mcs_set() - sets basic mcs set into
  1524. * cfg item
  1525. * @psoc: psoc context
  1526. * @value: data to be set
  1527. *
  1528. * Return: QDF_STATUS
  1529. */
  1530. QDF_STATUS wlan_mlme_cfg_set_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1531. uint32_t value);
  1532. /**
  1533. * wlan_mlme_get_vht_enable_tx_bf() - Get vht enable tx bf
  1534. * @psoc: psoc context
  1535. * @value: data to be set
  1536. *
  1537. * Return: QDF_STATUS
  1538. */
  1539. QDF_STATUS wlan_mlme_get_vht_enable_tx_bf(struct wlan_objmgr_psoc *psoc,
  1540. bool *value);
  1541. /**
  1542. * wlan_mlme_get_vht_tx_su_beamformer() - VHT enable tx su beamformer
  1543. * @psoc: psoc context
  1544. * @value: data to be set
  1545. *
  1546. * Return: QDF_STATUS
  1547. */
  1548. QDF_STATUS wlan_mlme_get_vht_tx_su_beamformer(struct wlan_objmgr_psoc *psoc,
  1549. bool *value);
  1550. /**
  1551. * wlan_mlme_get_vht_channel_width() - gets Channel width capability
  1552. * for 11ac
  1553. * @psoc: psoc context
  1554. * @value: data to be set
  1555. *
  1556. * Return: QDF_STATUS
  1557. */
  1558. QDF_STATUS wlan_mlme_get_vht_channel_width(struct wlan_objmgr_psoc *psoc,
  1559. uint8_t *value);
  1560. /**
  1561. * wlan_mlme_get_vht_rx_mcs_8_9() - VHT Rx MCS capability for 1x1 mode
  1562. * @psoc: psoc context
  1563. * @value: data to be set
  1564. *
  1565. * Return: QDF_STATUS
  1566. */
  1567. QDF_STATUS wlan_mlme_get_vht_rx_mcs_8_9(struct wlan_objmgr_psoc *psoc,
  1568. uint8_t *value);
  1569. /**
  1570. * wlan_mlme_get_vht_tx_mcs_8_9() - VHT Tx MCS capability for 1x1 mode
  1571. * @psoc: psoc context
  1572. * @value: data to be set
  1573. *
  1574. * Return: QDF_STATUS
  1575. */
  1576. QDF_STATUS wlan_mlme_get_vht_tx_mcs_8_9(struct wlan_objmgr_psoc *psoc,
  1577. uint8_t *value);
  1578. /**
  1579. * wlan_mlme_get_vht_rx_mcs_2x2() - VHT Rx MCS capability for 2x2 mode
  1580. * @psoc: psoc context
  1581. * @value: data to be set
  1582. *
  1583. * Return: QDF_STATUS
  1584. */
  1585. QDF_STATUS wlan_mlme_get_vht_rx_mcs_2x2(struct wlan_objmgr_psoc *psoc,
  1586. uint8_t *value);
  1587. /**
  1588. * wlan_mlme_get_vht_tx_mcs_2x2() - VHT Tx MCS capability for 2x2 mode
  1589. * @psoc: psoc context
  1590. * @value: data to be set
  1591. *
  1592. * Return: QDF_STATUS
  1593. */
  1594. QDF_STATUS wlan_mlme_get_vht_tx_mcs_2x2(struct wlan_objmgr_psoc *psoc,
  1595. uint8_t *value);
  1596. /**
  1597. * wlan_mlme_get_vht20_mcs9() - Enables VHT MCS9 in 20M BW operation
  1598. * @psoc: psoc context
  1599. * @value: data to be set
  1600. *
  1601. * Return: QDF_STATUS
  1602. */
  1603. QDF_STATUS wlan_mlme_get_vht20_mcs9(struct wlan_objmgr_psoc *psoc,
  1604. bool *value);
  1605. /**
  1606. * wlan_mlme_get_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  1607. * @psoc: psoc context
  1608. * @value: data to be set
  1609. *
  1610. * Return: QDF_STATUS
  1611. */
  1612. QDF_STATUS wlan_mlme_get_vht_enable2x2(struct wlan_objmgr_psoc *psoc,
  1613. bool *value);
  1614. /**
  1615. * wlan_mlme_set_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  1616. * @psoc: psoc context
  1617. * @value: data to be set
  1618. *
  1619. * Return: QDF_STATUS
  1620. */
  1621. QDF_STATUS wlan_mlme_set_vht_enable2x2(struct wlan_objmgr_psoc *psoc,
  1622. bool value);
  1623. /**
  1624. * wlan_mlme_get_vht_enable_paid() - Enables/disables paid feature
  1625. * @psoc: psoc context
  1626. * @value: data to be set
  1627. *
  1628. * Return: QDF_STATUS
  1629. */
  1630. QDF_STATUS wlan_mlme_get_vht_enable_paid(struct wlan_objmgr_psoc *psoc,
  1631. bool *value);
  1632. /**
  1633. * wlan_mlme_get_vht_enable_gid() - Enables/disables VHT GID feature
  1634. * @psoc: psoc context
  1635. * @value: data to be set
  1636. *
  1637. * Return: QDF_STATUS
  1638. */
  1639. QDF_STATUS wlan_mlme_get_vht_enable_gid(struct wlan_objmgr_psoc *psoc,
  1640. bool *value);
  1641. /**
  1642. * wlan_mlme_get_vht_for_24ghz() - Enables/disables VHT for 24 ghz
  1643. * @psoc: psoc context
  1644. * @value: data to be set
  1645. *
  1646. * Return: QDF_STATUS
  1647. */
  1648. QDF_STATUS wlan_mlme_get_vht_for_24ghz(struct wlan_objmgr_psoc *psoc,
  1649. bool *value);
  1650. /**
  1651. * wlan_mlme_get_vendor_vht_for_24ghz() - nables/disables vendor VHT for 24 ghz
  1652. * @psoc: psoc context
  1653. * @value: data to be set
  1654. *
  1655. * Return: QDF_STATUS
  1656. */
  1657. QDF_STATUS wlan_mlme_get_vendor_vht_for_24ghz(struct wlan_objmgr_psoc *psoc,
  1658. bool *value);
  1659. /**
  1660. * mlme_update_vht_cap() - update vht capabilities
  1661. * @psoc: psoc context
  1662. * @cfg: data to be set
  1663. *
  1664. * Return: QDF_STATUS
  1665. */
  1666. QDF_STATUS mlme_update_vht_cap(struct wlan_objmgr_psoc *psoc,
  1667. struct wma_tgt_vht_cap *cfg);
  1668. /**
  1669. * mlme_update_nss_vht_cap() - Update the number of spatial
  1670. * streams supported for vht
  1671. * @psoc: psoc context
  1672. *
  1673. * Return: QDF_STATUS
  1674. */
  1675. QDF_STATUS mlme_update_nss_vht_cap(struct wlan_objmgr_psoc *psoc);
  1676. /**
  1677. * wlan_mlme_is_sap_uapsd_enabled() - Get if SAP UAPSD is enabled/disabled
  1678. * @psoc: psoc context
  1679. * @value: value to be filled for caller
  1680. *
  1681. * Return: QDF_STATUS
  1682. */
  1683. QDF_STATUS wlan_mlme_is_sap_uapsd_enabled(struct wlan_objmgr_psoc *psoc,
  1684. bool *value);
  1685. /**
  1686. * wlan_mlme_set_sap_uapsd_flag() - Enable/Disable SAP UAPSD
  1687. * @psoc: psoc context
  1688. * @value: Enable/Disable control value for sap_uapsd_enabled field
  1689. *
  1690. * Return: QDF_STATUS
  1691. */
  1692. QDF_STATUS wlan_mlme_set_sap_uapsd_flag(struct wlan_objmgr_psoc *psoc,
  1693. bool value);
  1694. /**
  1695. * wlan_mlme_is_11h_enabled() - Get the 11h flag
  1696. * @psoc: psoc context
  1697. *
  1698. * Return: QDF_STATUS
  1699. */
  1700. QDF_STATUS
  1701. wlan_mlme_is_11h_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1702. /**
  1703. * wlan_mlme_set_11h_enabled() - Set the 11h flag
  1704. * @psoc: psoc context
  1705. *
  1706. * Return: QDF_STATUS
  1707. */
  1708. QDF_STATUS
  1709. wlan_mlme_set_11h_enabled(struct wlan_objmgr_psoc *psoc, bool value);
  1710. /**
  1711. * wlan_mlme_is_11d_enabled() - Get the 11d flag
  1712. * @psoc: psoc context
  1713. *
  1714. * Return: QDF_STATUS
  1715. */
  1716. QDF_STATUS
  1717. wlan_mlme_is_11d_enabled(struct wlan_objmgr_psoc *psoc, bool *value);
  1718. /**
  1719. * wlan_mlme_set_11d_enabled() - Set the 11h flag
  1720. * @psoc: psoc context
  1721. *
  1722. * Return: QDF_STATUS
  1723. */
  1724. QDF_STATUS
  1725. wlan_mlme_set_11d_enabled(struct wlan_objmgr_psoc *psoc, bool value);
  1726. /**
  1727. * wlan_mlme_get_sta_miracast_mcc_rest_time() - Get STA/MIRACAST MCC rest time
  1728. *
  1729. * @psoc: pointer to psoc object
  1730. * @value: value which needs to filled by API
  1731. *
  1732. * This API gives rest time to be used when STA and MIRACAST MCC conc happens
  1733. *
  1734. * Return: QDF_STATUS
  1735. */
  1736. QDF_STATUS
  1737. wlan_mlme_get_sta_miracast_mcc_rest_time(struct wlan_objmgr_psoc *psoc,
  1738. uint32_t *value);
  1739. /**
  1740. * wlan_mlme_get_sap_mcc_chnl_avoid() - Check if SAP MCC needs to be avoided
  1741. *
  1742. * @psoc: pointer to psoc object
  1743. * @value: value which needs to filled by API
  1744. *
  1745. * This API fetches the user setting to determine if SAP MCC with other persona
  1746. * to be avoided.
  1747. *
  1748. * Return: QDF_STATUS
  1749. */
  1750. QDF_STATUS
  1751. wlan_mlme_get_sap_mcc_chnl_avoid(struct wlan_objmgr_psoc *psoc,
  1752. uint8_t *value);
  1753. /**
  1754. * wlan_mlme_get_mcc_bcast_prob_resp() - Get broadcast probe rsp in MCC
  1755. *
  1756. * @psoc: pointer to psoc object
  1757. * @value: value which needs to filled by API
  1758. *
  1759. * To get INI value which helps to determe whether to enable/disable use of
  1760. * broadcast probe response to increase the detectability of SAP in MCC mode.
  1761. *
  1762. *
  1763. * Return: QDF_STATUS
  1764. */
  1765. QDF_STATUS
  1766. wlan_mlme_get_mcc_bcast_prob_resp(struct wlan_objmgr_psoc *psoc,
  1767. uint8_t *value);
  1768. /**
  1769. * wlan_mlme_get_mcc_rts_cts_prot() - To get RTS-CTS protection in MCC.
  1770. *
  1771. * @psoc: pointer to psoc object
  1772. * @value: value which needs to filled by API
  1773. *
  1774. * To get INI value which helps to determine whether to enable/disable
  1775. * use of long duration RTS-CTS protection when SAP goes off
  1776. * channel in MCC mode.
  1777. *
  1778. * Return: QDF_STATUS
  1779. */
  1780. QDF_STATUS
  1781. wlan_mlme_get_mcc_rts_cts_prot(struct wlan_objmgr_psoc *psoc,
  1782. uint8_t *value);
  1783. /**
  1784. * wlan_mlme_get_mcc_feature() - To find out to enable/disable MCC feature
  1785. *
  1786. * @psoc: pointer to psoc object
  1787. * @value: value which needs to filled by API
  1788. *
  1789. * To get INI value which helps to determine whether to enable MCC feature
  1790. *
  1791. * Return: QDF_STATUS
  1792. */
  1793. QDF_STATUS
  1794. wlan_mlme_get_mcc_feature(struct wlan_objmgr_psoc *psoc,
  1795. uint8_t *value);
  1796. /**
  1797. * wlan_mlme_get_rrm_enabled() - Get the RRM enabled ini
  1798. * @psoc: pointer to psoc object
  1799. * @value: pointer to the value which will be filled for the caller
  1800. *
  1801. * Return: QDF Status
  1802. */
  1803. QDF_STATUS wlan_mlme_get_rrm_enabled(struct wlan_objmgr_psoc *psoc,
  1804. bool *value);
  1805. /*
  1806. * wlan_mlme_get_dtim_selection_diversity() - get dtim selection diversity
  1807. * bitmap
  1808. * @psoc: pointer to psoc object
  1809. * @dtim_selection_div: value that is requested by the caller
  1810. * This function gets the dtim selection diversity bitmap to be
  1811. * sent to the firmware
  1812. *
  1813. * Return: QDF_STATUS_SUCCESS - in case of success
  1814. */
  1815. QDF_STATUS wlan_mlme_get_dtim_selection_diversity(struct wlan_objmgr_psoc *psoc,
  1816. uint32_t *dtim_selection_div);
  1817. /**
  1818. * wlan_mlme_get_bmps_min_listen_interval() - get beacon mode powersave
  1819. * minimum listen interval value
  1820. * @psoc: pointer to psoc object
  1821. * @value: value that is requested by the caller
  1822. *
  1823. * Return: QDF_STATUS_SUCCESS - in case of success
  1824. */
  1825. QDF_STATUS wlan_mlme_get_bmps_min_listen_interval(struct wlan_objmgr_psoc *psoc,
  1826. uint32_t *value);
  1827. /**
  1828. * wlan_mlme_get_bmps_max_listen_interval() - get beacon mode powersave
  1829. * maximum listen interval value
  1830. * @psoc: pointer to psoc object
  1831. * @value: value that is requested by the caller
  1832. *
  1833. * Return: QDF_STATUS_SUCCESS - in case of success
  1834. */
  1835. QDF_STATUS wlan_mlme_get_bmps_max_listen_interval(struct wlan_objmgr_psoc *psoc,
  1836. uint32_t *value);
  1837. /**
  1838. * wlan_mlme_get_auto_bmps_timer_value() - get bmps timer value
  1839. * @psoc: pointer to psoc object
  1840. * @value: value that is requested by the caller
  1841. *
  1842. * Return: QDF_STATUS_SUCCESS - in case of success
  1843. */
  1844. QDF_STATUS wlan_mlme_get_auto_bmps_timer_value(struct wlan_objmgr_psoc *psoc,
  1845. uint32_t *value);
  1846. /**
  1847. * wlan_mlme_is_bmps_enabled() - check if beacon mode powersave is
  1848. * enabled/disabled
  1849. * @psoc: pointer to psoc object
  1850. * @value: value that is requested by the caller
  1851. *
  1852. * Return: QDF_STATUS_SUCCESS - in case of success
  1853. */
  1854. QDF_STATUS wlan_mlme_is_bmps_enabled(struct wlan_objmgr_psoc *psoc,
  1855. bool *value);
  1856. /**
  1857. * wlan_mlme_override_bmps_imps() - disable imps/bmps
  1858. * @psoc: pointer to psoc object
  1859. * @value: value that is requested by the caller
  1860. *
  1861. * Return: QDF_STATUS_SUCCESS - in case of success
  1862. */
  1863. QDF_STATUS wlan_mlme_override_bmps_imps(struct wlan_objmgr_psoc *psoc);
  1864. /**
  1865. * wlan_mlme_is_imps_enabled() - check if idle mode powersave is
  1866. * enabled/disabled
  1867. * @psoc: pointer to psoc object
  1868. * @value: value that is requested by the caller
  1869. *
  1870. * Return: QDF_STATUS_SUCCESS - in case of success
  1871. */
  1872. QDF_STATUS wlan_mlme_is_imps_enabled(struct wlan_objmgr_psoc *psoc,
  1873. bool *value);
  1874. /*
  1875. * wlan_mlme_get_wps_uuid() - get the wps uuid string
  1876. * @wps_params: pointer to mlme wps parameters structure
  1877. * @data: data to which the parameter is to be copied
  1878. *
  1879. * Return None
  1880. *
  1881. */
  1882. void
  1883. wlan_mlme_get_wps_uuid(struct wlan_mlme_wps_params *wps_params, uint8_t *data);
  1884. #endif /* _WLAN_MLME_API_H_ */