wlan_mlme_ucfg_api.h 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967
  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 UCFG APIs exposed by the mlme component
  20. */
  21. #ifndef _WLAN_MLME_UCFG_API_H_
  22. #define _WLAN_MLME_UCFG_API_H_
  23. #include <wlan_mlme_public_struct.h>
  24. #include <wlan_objmgr_psoc_obj.h>
  25. #include <wlan_objmgr_global_obj.h>
  26. #include <wlan_cmn.h>
  27. #include <wlan_mlme_api.h>
  28. #include <wlan_mlme_main.h>
  29. #include "wma_tgt_cfg.h"
  30. /**
  31. * ucfg_mlme_init() - initialize mlme_ctx context.
  32. *
  33. * This function initializes the mlme context.
  34. *
  35. * Return: QDF_STATUS_SUCCESS - in case of success else return error
  36. */
  37. QDF_STATUS ucfg_mlme_init(void);
  38. /**
  39. * ucfg_mlme_deinit() - De initialize mlme_ctx context.
  40. *
  41. * This function De initializes mlme contex.
  42. *
  43. * Return: QDF_STATUS_SUCCESS - in case of success else return error
  44. */
  45. QDF_STATUS ucfg_mlme_deinit(void);
  46. /**
  47. * ucfg_mlme_psoc_open() - MLME component Open
  48. * @psoc: pointer to psoc object
  49. *
  50. * Open the MLME component and initialize the MLME strucutre
  51. *
  52. * Return: QDF Status
  53. */
  54. QDF_STATUS ucfg_mlme_psoc_open(struct wlan_objmgr_psoc *psoc);
  55. /**
  56. * ucfg_mlme_psoc_close() - MLME component close
  57. * @psoc: pointer to psoc object
  58. *
  59. * Close the MLME component and clear the MLME structures
  60. *
  61. * Return: None
  62. */
  63. void ucfg_mlme_psoc_close(struct wlan_objmgr_psoc *psoc);
  64. #ifdef CONFIG_VDEV_SM
  65. /**
  66. * ucfg_mlme_pdev_open() - MLME component pdev Open
  67. * @pdev: pointer to pdev object
  68. *
  69. * Open the MLME component and initialize the MLME pdev strucutre
  70. *
  71. * Return: QDF Status
  72. */
  73. QDF_STATUS ucfg_mlme_pdev_open(struct wlan_objmgr_pdev *pdev);
  74. /**
  75. * ucfg_mlme_pdev_close() - MLME component pdev close
  76. * @pdev: pointer to pdev object
  77. *
  78. * close the MLME pdev information
  79. *
  80. * Return: QDF Status
  81. */
  82. QDF_STATUS ucfg_mlme_pdev_close(struct wlan_objmgr_pdev *pdev);
  83. #else
  84. /**
  85. * ucfg_mlme_pdev_open() - MLME component pdev Open
  86. * @pdev: pointer to pdev object
  87. *
  88. * Open the MLME component and initialize the MLME pdev strucutre
  89. *
  90. * Return: QDF Status
  91. */
  92. static inline QDF_STATUS ucfg_mlme_pdev_open(struct wlan_objmgr_pdev *pdev)
  93. {
  94. return QDF_STATUS_SUCCESS;
  95. }
  96. /**
  97. * ucfg_mlme_pdev_close() - MLME component pdev close
  98. * @pdev: pointer to pdev object
  99. *
  100. * close the MLME pdev information
  101. *
  102. * Return: QDF Status
  103. */
  104. static inline QDF_STATUS ucfg_mlme_pdev_close(struct wlan_objmgr_pdev *pdev)
  105. {
  106. return QDF_STATUS_SUCCESS;
  107. }
  108. #endif
  109. /**
  110. * wlan_mlme_get_power_usage() - Get the power usage info
  111. * @psoc: pointer to psoc object
  112. *
  113. * Return: pointer to character array of power usage
  114. */
  115. static inline
  116. char *ucfg_mlme_get_power_usage(struct wlan_objmgr_psoc *psoc)
  117. {
  118. return wlan_mlme_get_power_usage(psoc);
  119. }
  120. /**
  121. * ucfg_get_tx_power() - Get the max tx power in particular band
  122. * @psoc: pointer to psoc object
  123. * @band: 2ghz/5ghz band
  124. *
  125. * Return: value of tx power in the respective band
  126. */
  127. static inline
  128. uint8_t ucfg_get_tx_power(struct wlan_objmgr_psoc *psoc, uint8_t band)
  129. {
  130. return wlan_mlme_get_tx_power(psoc, band);
  131. }
  132. /**
  133. * ucfg_mlme_get_ht_cap_info() - Get the HT cap info config
  134. * @psoc: pointer to psoc object
  135. * @value: pointer to the value which will be filled for the caller
  136. *
  137. * Inline UCFG API to be used by HDD/OSIF callers
  138. *
  139. * Return: QDF Status
  140. */
  141. static inline
  142. QDF_STATUS ucfg_mlme_get_ht_cap_info(struct wlan_objmgr_psoc *psoc,
  143. struct mlme_ht_capabilities_info
  144. *ht_cap_info)
  145. {
  146. return wlan_mlme_get_ht_cap_info(psoc, ht_cap_info);
  147. }
  148. /**
  149. * ucfg_mlme_set_ht_cap_info() - Set the HT cap info config
  150. * @psoc: pointer to psoc object
  151. * @value: Value that needs to be set from the caller
  152. *
  153. * Inline UCFG API to be used by HDD/OSIF callers
  154. *
  155. * Return: QDF Status
  156. */
  157. static inline
  158. QDF_STATUS ucfg_mlme_set_ht_cap_info(struct wlan_objmgr_psoc *psoc,
  159. struct mlme_ht_capabilities_info
  160. ht_cap_info)
  161. {
  162. return wlan_mlme_set_ht_cap_info(psoc, ht_cap_info);
  163. }
  164. /**
  165. * ucfg_mlme_get_max_amsdu_num() - get the max amsdu num
  166. * @psoc: pointer to psoc object
  167. * @value: pointer to the value where the max_amsdu num is to be filled
  168. *
  169. * Return: QDF_STATUS
  170. */
  171. static inline
  172. QDF_STATUS ucfg_mlme_get_max_amsdu_num(struct wlan_objmgr_psoc *psoc,
  173. uint8_t *value)
  174. {
  175. return wlan_mlme_get_max_amsdu_num(psoc, value);
  176. }
  177. /**
  178. * ucfg_mlme_set_max_amsdu_num() - set the max amsdu num
  179. * @psoc: pointer to psoc object
  180. * @value: value to be set for max_amsdu_num
  181. *
  182. * Return: QDF_STATUS
  183. */
  184. static inline
  185. QDF_STATUS ucfg_mlme_set_max_amsdu_num(struct wlan_objmgr_psoc *psoc,
  186. uint8_t value)
  187. {
  188. return wlan_mlme_set_max_amsdu_num(psoc, value);
  189. }
  190. /**
  191. * ucfg_mlme_get_ht_mpdu_density() - get the ht mpdu density
  192. * @psoc: pointer to psoc object
  193. * @value: pointer to the value where the ht mpdu density is to be filled
  194. *
  195. * Return: QDF_STATUS
  196. */
  197. static inline
  198. QDF_STATUS ucfg_mlme_get_ht_mpdu_density(struct wlan_objmgr_psoc *psoc,
  199. uint8_t *value)
  200. {
  201. return wlan_mlme_get_ht_mpdu_density(psoc, value);
  202. }
  203. /**
  204. * ucfg_mlme_set_ht_mpdu_density() - set the ht mpdu density
  205. * @psoc: pointer to psoc object
  206. * @value: value to be set for ht mpdu density
  207. *
  208. * Return: QDF_STATUS
  209. */
  210. static inline
  211. QDF_STATUS ucfg_mlme_set_ht_mpdu_density(struct wlan_objmgr_psoc *psoc,
  212. uint8_t value)
  213. {
  214. return wlan_mlme_set_ht_mpdu_density(psoc, value);
  215. }
  216. /**
  217. * ucfg_mlme_get_band_capability() - Get the Band capability config
  218. * @psoc: pointer to psoc object
  219. * @band_capability: Pointer to the variable from caller
  220. *
  221. * Return: QDF Status
  222. */
  223. static inline
  224. QDF_STATUS ucfg_mlme_get_band_capability(struct wlan_objmgr_psoc *psoc,
  225. uint8_t *band_capability)
  226. {
  227. return wlan_mlme_get_band_capability(psoc, band_capability);
  228. }
  229. /**
  230. * ucfg_mlme_set_band_capability() - Set the Band capability config
  231. * @psoc: pointer to psoc object
  232. * @band_capability: Value to be set from the caller
  233. *
  234. * Return: QDF Status
  235. */
  236. static inline
  237. QDF_STATUS ucfg_mlme_set_band_capability(struct wlan_objmgr_psoc *psoc,
  238. uint8_t band_capability)
  239. {
  240. return wlan_mlme_set_band_capability(psoc, band_capability);
  241. }
  242. /**
  243. * ucfg_mlme_get_prevent_link_down() - Get the prevent link down config
  244. * @psoc: pointer to psoc object
  245. * @prevent_link_down: Pointer to the variable from caller
  246. *
  247. * Return: QDF Status
  248. */
  249. static inline
  250. QDF_STATUS ucfg_mlme_get_prevent_link_down(struct wlan_objmgr_psoc *psoc,
  251. bool *prevent_link_down)
  252. {
  253. return wlan_mlme_get_prevent_link_down(psoc, prevent_link_down);
  254. }
  255. /**
  256. * ucfg_mlme_get_select_5ghz_margin() - Get the select 5Ghz margin config
  257. * @psoc: pointer to psoc object
  258. * @select_5ghz_margin: Pointer to the variable from caller
  259. *
  260. * Return: QDF Status
  261. */
  262. static inline
  263. QDF_STATUS ucfg_mlme_get_select_5ghz_margin(struct wlan_objmgr_psoc *psoc,
  264. uint8_t *select_5ghz_margin)
  265. {
  266. return wlan_mlme_get_select_5ghz_margin(psoc, select_5ghz_margin);
  267. }
  268. /**
  269. * ucfg_mlme_get_rtt_mac_randomization() - Get the RTT MAC randomization config
  270. * @psoc: pointer to psoc object
  271. * @rtt_mac_randomization: Pointer to the variable from caller
  272. *
  273. * Return: QDF Status
  274. */
  275. static inline
  276. QDF_STATUS ucfg_mlme_get_rtt_mac_randomization(struct wlan_objmgr_psoc *psoc,
  277. bool *rtt_mac_randomization)
  278. {
  279. return wlan_mlme_get_rtt_mac_randomization(psoc, rtt_mac_randomization);
  280. }
  281. /**
  282. * ucfg_mlme_get_crash_inject() - Get the crash inject config
  283. * @psoc: pointer to psoc object
  284. * @crash_inject: Pointer to the variable from caller
  285. *
  286. * Return: QDF Status
  287. */
  288. static inline
  289. QDF_STATUS ucfg_mlme_get_crash_inject(struct wlan_objmgr_psoc *psoc,
  290. bool *crash_inject)
  291. {
  292. return wlan_mlme_get_crash_inject(psoc, crash_inject);
  293. }
  294. /**
  295. * ucfg_mlme_get_lpass_support() - Get the LPASS Support config
  296. * @psoc: pointer to psoc object
  297. * @lpass_support: Pointer to the variable from caller
  298. *
  299. * Return: QDF Status
  300. */
  301. static inline
  302. QDF_STATUS ucfg_mlme_get_lpass_support(struct wlan_objmgr_psoc *psoc,
  303. bool *lpass_support)
  304. {
  305. return wlan_mlme_get_lpass_support(psoc, lpass_support);
  306. }
  307. /**
  308. * ucfg_mlme_get_self_recovery() - Get the self recovery config
  309. * @psoc: pointer to psoc object
  310. * @self_recovery: Pointer to the variable from caller
  311. *
  312. * Return: QDF Status
  313. */
  314. static inline
  315. QDF_STATUS ucfg_mlme_get_self_recovery(struct wlan_objmgr_psoc *psoc,
  316. bool *self_recovery)
  317. {
  318. return wlan_mlme_get_self_recovery(psoc, self_recovery);
  319. }
  320. /**
  321. * ucfg_mlme_get_sub_20_chan_width() - Get the sub 20 chan width config
  322. * @psoc: pointer to psoc object
  323. * @sub_20_chan_width: Pointer to the variable from caller
  324. *
  325. * Return: QDF Status
  326. */
  327. static inline
  328. QDF_STATUS ucfg_mlme_get_sub_20_chan_width(struct wlan_objmgr_psoc *psoc,
  329. uint8_t *sub_20_chan_width)
  330. {
  331. return wlan_mlme_get_sub_20_chan_width(psoc, sub_20_chan_width);
  332. }
  333. /**
  334. * ucfg_mlme_get_fw_timeout_crash() - Get the fw timeout crash config
  335. * @psoc: pointer to psoc object
  336. * @fw_timeout_crash: Pointer to the variable from caller
  337. *
  338. * Return: QDF Status
  339. */
  340. static inline
  341. QDF_STATUS ucfg_mlme_get_fw_timeout_crash(struct wlan_objmgr_psoc *psoc,
  342. bool *fw_timeout_crash)
  343. {
  344. return wlan_mlme_get_fw_timeout_crash(psoc, fw_timeout_crash);
  345. }
  346. /**
  347. * ucfg_mlme_get_ito_repeat_count() - Get the fw timeout crash config
  348. * @psoc: pointer to psoc object
  349. * @ito_repeat_count: Pointer to the variable from caller
  350. *
  351. * Return: QDF Status
  352. */
  353. static inline
  354. QDF_STATUS ucfg_mlme_get_ito_repeat_count(struct wlan_objmgr_psoc *psoc,
  355. uint8_t *ito_repeat_count)
  356. {
  357. return wlan_mlme_get_ito_repeat_count(psoc, ito_repeat_count);
  358. }
  359. /**
  360. * ucfg_mlme_get_acs_with_more_param() - Get the flag for acs with
  361. * more param
  362. * @psoc: pointer to psoc object
  363. * @value: Value that needs to be set from the caller
  364. *
  365. * Inline UCFG API to be used by HDD/OSIF callers
  366. *
  367. * Return: QDF Status
  368. */
  369. static inline
  370. QDF_STATUS ucfg_mlme_get_acs_with_more_param(struct wlan_objmgr_psoc *psoc,
  371. bool *value)
  372. {
  373. return wlan_mlme_get_acs_with_more_param(psoc, value);
  374. }
  375. /**
  376. * ucfg_mlme_get_auto_channel_weight() - Get the auto channel select weight
  377. * @psoc: pointer to psoc object
  378. * @value: Value that needs to be set from the caller
  379. *
  380. * Inline UCFG API to be used by HDD/OSIF callers
  381. *
  382. * Return: QDF Status
  383. */
  384. static inline
  385. QDF_STATUS ucfg_mlme_get_auto_channel_weight(struct wlan_objmgr_psoc *psoc,
  386. uint32_t *value)
  387. {
  388. return wlan_mlme_get_auto_channel_weight(psoc, value);
  389. }
  390. /**
  391. * ucfg_mlme_get_vendor_acs_support() - Get the flag for
  392. * vendor acs support
  393. * @psoc: pointer to psoc object
  394. * @value: Value that needs to be set from the caller
  395. *
  396. * Inline UCFG API to be used by HDD/OSIF callers
  397. *
  398. * Return: QDF Status
  399. */
  400. static inline
  401. QDF_STATUS ucfg_mlme_get_vendor_acs_support(struct wlan_objmgr_psoc *psoc,
  402. bool *value)
  403. {
  404. return wlan_mlme_get_vendor_acs_support(psoc, value);
  405. }
  406. /**
  407. * ucfg_mlme_get_external_acs_policy() - Get flag for external control
  408. * acs policy
  409. * @psoc: pointer to psoc object
  410. * @value: Value that needs to be set from the caller
  411. *
  412. * Inline UCFG API to be used by HDD/OSIF callers
  413. *
  414. * Return: QDF Status
  415. */
  416. static inline QDF_STATUS
  417. ucfg_mlme_get_external_acs_policy(struct wlan_objmgr_psoc *psoc,
  418. bool *value)
  419. {
  420. return wlan_mlme_get_external_acs_policy(psoc, value);
  421. }
  422. /**
  423. * ucfg_mlme_set_ht_cap_info() - Set the HT cap info config
  424. * @psoc: pointer to psoc object
  425. * @value: Value that needs to be set from the caller
  426. *
  427. * Inline UCFG API to be used by HDD/OSIF callers
  428. *
  429. * Return: QDF Status
  430. */
  431. static inline
  432. QDF_STATUS
  433. ucfg_mlme_get_acs_support_for_dfs_ltecoex(struct wlan_objmgr_psoc *psoc,
  434. bool *value)
  435. {
  436. return wlan_mlme_get_acs_support_for_dfs_ltecoex(psoc, value);
  437. }
  438. /**
  439. * ucfg_mlme_get_wmm_dir_ac_vo() - Get TSPEC direction for VO
  440. * @psoc: pointer to psoc object
  441. * @value: Value that needs to be set from the caller
  442. *
  443. * Inline UCFG API to be used by HDD/OSIF callers
  444. *
  445. * Return: QDF Status
  446. */
  447. static inline QDF_STATUS
  448. ucfg_mlme_get_wmm_dir_ac_vo(struct wlan_objmgr_psoc *psoc,
  449. uint8_t *value)
  450. {
  451. return wlan_mlme_get_wmm_dir_ac_vo(psoc, value);
  452. }
  453. /**
  454. * ucfg_mlme_get_wmm_nom_msdu_size_ac_vo() - Get normal
  455. * MSDU size for VO
  456. * @psoc: pointer to psoc object
  457. * @value: Value that needs to be set from the caller
  458. *
  459. * Inline UCFG API to be used by HDD/OSIF callers
  460. *
  461. * Return: QDF Status
  462. */
  463. static inline QDF_STATUS
  464. ucfg_mlme_get_wmm_nom_msdu_size_ac_vo(struct wlan_objmgr_psoc *psoc,
  465. uint16_t *value)
  466. {
  467. return wlan_mlme_get_wmm_nom_msdu_size_ac_vo(psoc, value);
  468. }
  469. /**
  470. * ucfg_mlme_get_wmm_mean_data_rate_ac_vo() - mean data rate for VO
  471. * @psoc: pointer to psoc object
  472. * @value: Value that needs to be set from the caller
  473. *
  474. * Inline UCFG API to be used by HDD/OSIF callers
  475. *
  476. * Return: QDF Status
  477. */
  478. static inline QDF_STATUS
  479. ucfg_mlme_get_wmm_mean_data_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  480. uint32_t *value)
  481. {
  482. return wlan_mlme_get_wmm_mean_data_rate_ac_vo(psoc, value);
  483. }
  484. /**
  485. * ucfg_mlme_get_wmm_min_phy_rate_ac_vo() - min PHY
  486. * rate for VO
  487. * @psoc: pointer to psoc object
  488. * @value: Value that needs to be set from the caller
  489. *
  490. * Inline UCFG API to be used by HDD/OSIF callers
  491. *
  492. * Return: QDF Status
  493. */
  494. static inline QDF_STATUS
  495. ucfg_mlme_get_wmm_min_phy_rate_ac_vo(struct wlan_objmgr_psoc *psoc,
  496. uint32_t *value)
  497. {
  498. return wlan_mlme_get_wmm_min_phy_rate_ac_vo(psoc, value);
  499. }
  500. /**
  501. * ucfg_mlme_get_wmm_sba_ac_vo() - surplus bandwidth
  502. * allowance for VO
  503. * @psoc: pointer to psoc object
  504. * @value: Value that needs to be set from the caller
  505. *
  506. * Inline UCFG API to be used by HDD/OSIF callers
  507. *
  508. * Return: QDF Status
  509. */
  510. static inline QDF_STATUS
  511. ucfg_mlme_get_wmm_sba_ac_vo(struct wlan_objmgr_psoc *psoc,
  512. uint16_t *value)
  513. {
  514. return wlan_mlme_get_wmm_sba_ac_vo(psoc, value);
  515. }
  516. /**
  517. * ucfg_mlme_get_wmm_uapsd_vo_srv_intv() - Get Uapsd service
  518. * interval for voice
  519. * @psoc: pointer to psoc object
  520. * @value: pointer to the value which will be filled for the caller
  521. *
  522. * Inline UCFG API to be used by HDD/OSIF callers
  523. *
  524. * Return: QDF Status
  525. */
  526. static inline QDF_STATUS
  527. ucfg_mlme_get_wmm_uapsd_vo_srv_intv(struct wlan_objmgr_psoc *psoc,
  528. uint32_t *value)
  529. {
  530. return wlan_mlme_get_wmm_uapsd_vo_srv_intv(psoc, value);
  531. }
  532. /**
  533. * ucfg_mlme_get_wmm_uapsd_vo_sus_intv() - Get Uapsd suspension
  534. * interval for voice
  535. * @psoc: pointer to psoc object
  536. * @value: Value that needs to be set from the caller
  537. *
  538. * Inline UCFG API to be used by HDD/OSIF callers
  539. *
  540. * Return: QDF Status
  541. */
  542. static inline QDF_STATUS
  543. ucfg_mlme_get_wmm_uapsd_vo_sus_intv(struct wlan_objmgr_psoc *psoc,
  544. uint32_t *value)
  545. {
  546. return wlan_mlme_get_wmm_uapsd_vo_sus_intv(psoc, value);
  547. }
  548. /**
  549. *
  550. * ucfg_mlme_get_sap_inactivity_override() - Check if sap max inactivity
  551. * override flag is set.
  552. * @psoc: pointer to psoc object
  553. * @sme_config - Sme config struct
  554. *
  555. * Inline UCFG API to be used by HDD/OSIF callers to call
  556. * the mlme function wlan_mlme_get_sap_inactivity_override
  557. *
  558. * Return: QDF Status
  559. */
  560. static inline
  561. void ucfg_mlme_get_sap_inactivity_override(struct wlan_objmgr_psoc *psoc,
  562. bool *value)
  563. {
  564. wlan_mlme_get_sap_inactivity_override(psoc, value);
  565. }
  566. /**
  567. * ucfg_mlme_get_tx_chainmask_1ss() - Get the tx_chainmask_1ss value
  568. *
  569. * @psoc: pointer to psoc object
  570. * @value: Value that needs to be set from the caller
  571. *
  572. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  573. */
  574. static inline
  575. QDF_STATUS ucfg_mlme_get_tx_chainmask_1ss(struct wlan_objmgr_psoc *psoc,
  576. uint8_t *value)
  577. {
  578. return wlan_mlme_get_tx_chainmask_1ss(psoc, value);
  579. }
  580. /**
  581. * ucfg_mlme_get_num_11b_tx_chains() - Get the number of 11b only tx chains
  582. *
  583. * @psoc: pointer to psoc object
  584. * @value: Value that needs to be set from the caller
  585. *
  586. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  587. */
  588. static inline
  589. QDF_STATUS ucfg_mlme_get_num_11b_tx_chains(struct wlan_objmgr_psoc *psoc,
  590. uint16_t *value)
  591. {
  592. return wlan_mlme_get_num_11b_tx_chains(psoc, value);
  593. }
  594. /**
  595. * ucfg_mlme_get_num_11ag_tx_chains() - get the total number of 11a/g tx chains
  596. *
  597. * @psoc: pointer to psoc object
  598. * @value: Value that needs to be set from the caller
  599. *
  600. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  601. */
  602. static inline
  603. QDF_STATUS ucfg_mlme_get_num_11ag_tx_chains(struct wlan_objmgr_psoc *psoc,
  604. uint16_t *value)
  605. {
  606. return wlan_mlme_get_num_11ag_tx_chains(psoc, value);
  607. }
  608. /**
  609. * ucfg_mlme_get_bt_chain_separation_flag() - bt chain separation enable/disable
  610. * @psoc: pointer to psoc object
  611. * @value: Value that needs to be got for the caller
  612. *
  613. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  614. */
  615. static inline
  616. QDF_STATUS ucfg_mlme_get_bt_chain_separation_flag(struct wlan_objmgr_psoc *psoc,
  617. bool *value)
  618. {
  619. return wlan_mlme_get_bt_chain_separation_flag(psoc, value);
  620. }
  621. /**
  622. * ucfg_mlme_configure_chain_mask() - configure chainmask parameters
  623. *
  624. * @psoc: pointer to psoc object
  625. * @session_id: vdev_id
  626. *
  627. * Return: QDF_STATUS_FAILURE or QDF_STATUS_SUCCESS
  628. */
  629. static inline
  630. QDF_STATUS ucfg_mlme_configure_chain_mask(struct wlan_objmgr_psoc *psoc,
  631. uint8_t session_id)
  632. {
  633. return wlan_mlme_configure_chain_mask(psoc, session_id);
  634. }
  635. /*
  636. * ucfg_mlme_get_sta_keep_alive_period() - Get the sta keep alive period
  637. * @psoc: pointer to psoc object
  638. * @val: Pointer to the value which will be filled for the caller
  639. *
  640. * Return: QDF Status
  641. */
  642. QDF_STATUS
  643. ucfg_mlme_get_sta_keep_alive_period(struct wlan_objmgr_psoc *psoc,
  644. uint32_t *val);
  645. /*
  646. * ucfg_mlme_get_dfs_master_capability() - Get the dfs master capability
  647. * @psoc: pointer to psoc object
  648. * @val: Pointer to the value which will be filled for the caller
  649. *
  650. * Return: QDF Status
  651. */
  652. QDF_STATUS
  653. ucfg_mlme_get_dfs_master_capability(struct wlan_objmgr_psoc *psoc,
  654. bool *val);
  655. /*
  656. * ucfg_mlme_get_dfs_disable_channel_switch() - Get the dfs channel switch
  657. * @psoc: pointer to psoc object
  658. * @dfs_disable_channel_switch: Pointer to the value which will be filled
  659. *
  660. * Return: QDF Status
  661. */
  662. QDF_STATUS
  663. ucfg_mlme_get_dfs_disable_channel_switch(struct wlan_objmgr_psoc *psoc,
  664. bool *dfs_disable_channel_switch);
  665. /*
  666. * ucfg_mlme_set_dfs_disable_channel_switch() - Set the dfs channel switch
  667. * @psoc: pointer to psoc object
  668. * @dfs_disable_channel_switch: Value that needs to be set.
  669. *
  670. * Return: QDF Status
  671. */
  672. QDF_STATUS
  673. ucfg_mlme_set_dfs_disable_channel_switch(struct wlan_objmgr_psoc *psoc,
  674. bool dfs_disable_channel_switch);
  675. /*
  676. * ucfg_mlme_get_dfs_ignore_cac() - GSet the dfs ignore cac
  677. * @psoc: pointer to psoc object
  678. * @dfs_ignore_cac: Pointer to the value which will be filled for the caller
  679. *
  680. * Return: QDF Status
  681. */
  682. QDF_STATUS
  683. ucfg_mlme_get_dfs_ignore_cac(struct wlan_objmgr_psoc *psoc,
  684. bool *dfs_ignore_cac);
  685. /*
  686. * ucfg_mlme_set_dfs_ignore_cac() - Set the dfs ignore cac
  687. * @psoc: pointer to psoc object
  688. * @dfs_ignore_cac: Value that needs to be set.
  689. *
  690. * Return: QDF Status
  691. */
  692. QDF_STATUS
  693. ucfg_mlme_set_dfs_ignore_cac(struct wlan_objmgr_psoc *psoc,
  694. bool dfs_ignore_cac);
  695. /*
  696. * ucfg_mlme_get_sap_tx_leakage_threshold() - Get sap tx leakage threshold
  697. * @psoc: pointer to psoc object
  698. * @sap_tx_leakage_threshold: Pointer to the value which will be filled
  699. *
  700. * Return: QDF Status
  701. */
  702. QDF_STATUS
  703. ucfg_mlme_get_sap_tx_leakage_threshold(struct wlan_objmgr_psoc *psoc,
  704. uint32_t *sap_tx_leakage_threshold);
  705. /*
  706. * ucfg_mlme_set_sap_tx_leakage_threshold() - Set sap tx leakage threshold
  707. * @psoc: pointer to psoc object
  708. * @sap_tx_leakage_threshold: Value that needs to be set.
  709. *
  710. * Return: QDF Status
  711. */
  712. QDF_STATUS
  713. ucfg_mlme_set_sap_tx_leakage_threshold(struct wlan_objmgr_psoc *psoc,
  714. uint32_t sap_tx_leakage_threshold);
  715. /*
  716. * ucfg_mlme_get_dfs_filter_offload() - Get the dfs filter offload
  717. * @psoc: pointer to psoc object
  718. * @dfs_filter_offload: Pointer to the value which will be filled
  719. *
  720. * Return: QDF Status
  721. */
  722. QDF_STATUS
  723. ucfg_mlme_get_dfs_filter_offload(struct wlan_objmgr_psoc *psoc,
  724. bool *dfs_filter_offload);
  725. /*
  726. * ucfg_mlme_set_dfs_filter_offload() - Set the dfs filter offload
  727. * @psoc: pointer to psoc object
  728. * @dfs_filter_offload: Value that needs to be set.
  729. *
  730. * Return: QDF Status
  731. */
  732. QDF_STATUS
  733. ucfg_mlme_set_dfs_filter_offload(struct wlan_objmgr_psoc *psoc,
  734. bool dfs_filter_offload);
  735. /**
  736. * ucfg_mlme_get_pmkid_modes() - Get PMKID modes
  737. * @psoc: pointer to psoc object
  738. * @val: Pointer to the value which will be filled for the caller
  739. *
  740. * Return: QDF Status
  741. */
  742. QDF_STATUS
  743. ucfg_mlme_get_pmkid_modes(struct wlan_objmgr_psoc *psoc,
  744. uint32_t *val);
  745. /**
  746. * ucfg_mlme_set_pmkid_modes() - Set PMKID modes
  747. * @psoc: pointer to psoc object
  748. * @val: Pointer to the value which will be filled for the caller
  749. *
  750. * Return: QDF Status
  751. */
  752. QDF_STATUS
  753. ucfg_mlme_set_pmkid_modes(struct wlan_objmgr_psoc *psoc,
  754. uint32_t val);
  755. /**
  756. * ucfg_mlme_get_twt_requestor() - Get twt requestor
  757. * @psoc: pointer to psoc object
  758. * @val: Pointer to the value which will be filled for the caller
  759. *
  760. * Return: QDF Status
  761. */
  762. QDF_STATUS
  763. ucfg_mlme_get_twt_requestor(struct wlan_objmgr_psoc *psoc,
  764. bool *val);
  765. /**
  766. * ucfg_mlme_set_twt_requestor() - Set twt requestor
  767. * @psoc: pointer to psoc object
  768. * @val: value that needs to set to this config
  769. *
  770. * Return: QDF Status
  771. */
  772. QDF_STATUS
  773. ucfg_mlme_set_twt_requestor(struct wlan_objmgr_psoc *psoc,
  774. bool val);
  775. /**
  776. * ucfg_mlme_get_twt_responder() - Get twt responder
  777. * @psoc: pointer to psoc object
  778. * @val: Pointer to the value which will be filled for the caller
  779. *
  780. * Return: QDF Status
  781. */
  782. QDF_STATUS
  783. ucfg_mlme_get_twt_responder(struct wlan_objmgr_psoc *psoc,
  784. bool *val);
  785. /**
  786. * ucfg_mlme_set_twt_responder() - Set twt responder
  787. * @psoc: pointer to psoc object
  788. * @val: value that needs to set to this config
  789. *
  790. * Return: QDF Status
  791. */
  792. QDF_STATUS
  793. ucfg_mlme_set_twt_responder(struct wlan_objmgr_psoc *psoc,
  794. bool val);
  795. /**
  796. * ucfg_mlme_get_bcast_twt() - Get bcast twt
  797. * @psoc: pointer to psoc object
  798. * @val: Pointer to the value which will be filled for the caller
  799. *
  800. * Return: QDF Status
  801. */
  802. QDF_STATUS
  803. ucfg_mlme_get_bcast_twt(struct wlan_objmgr_psoc *psoc,
  804. bool *val);
  805. /**
  806. * ucfg_mlme_set_bcast_twt() - Set bcast twt
  807. * @psoc: pointer to psoc object
  808. * @val: value that needs to set to this config
  809. *
  810. * Return: QDF Status
  811. */
  812. QDF_STATUS
  813. ucfg_mlme_set_bcast_twt(struct wlan_objmgr_psoc *psoc,
  814. bool val);
  815. /**
  816. * ucfg_mlme_get_twt_congestion_timeout() - Get twt congestion timeout
  817. * @psoc: pointer to psoc object
  818. * @val: Pointer to the value which will be filled for the caller
  819. *
  820. * Return: QDF Status
  821. */
  822. QDF_STATUS
  823. ucfg_mlme_get_twt_congestion_timeout(struct wlan_objmgr_psoc *psoc,
  824. uint32_t *val);
  825. /**
  826. * ucfg_mlme_set_twt_congestion_timeout() - Set twt congestion timeout
  827. * @psoc: pointer to psoc object
  828. * @val: value that needs to set to this config
  829. *
  830. * Return: QDF Status
  831. */
  832. QDF_STATUS
  833. ucfg_mlme_set_twt_congestion_timeout(struct wlan_objmgr_psoc *psoc,
  834. uint32_t val);
  835. /**
  836. * ucfg_mlme_get_enable_twt() - Get global twt config support
  837. * @psoc: pointer to psoc object
  838. * @val: Pointer to the value which will be filled for the caller
  839. *
  840. * Return: QDF Status
  841. */
  842. QDF_STATUS
  843. ucfg_mlme_get_enable_twt(struct wlan_objmgr_psoc *psoc,
  844. bool *val);
  845. /**
  846. * ucfg_mlme_set_enable_twt() - Set global twt config support
  847. * @psoc: pointer to psoc object
  848. * @val: value that needs to set to this config
  849. *
  850. * Return: QDF Status
  851. */
  852. QDF_STATUS
  853. ucfg_mlme_set_enable_twt(struct wlan_objmgr_psoc *psoc,
  854. bool val);
  855. /**
  856. * ucfg_mlme_get_dot11p_mode() - Get the setting about 802.11p mode
  857. * @psoc: pointer to psoc object
  858. * @out_mode: Pointer to the mode which will be filled for the caller
  859. *
  860. * Return: QDF Status
  861. */
  862. QDF_STATUS
  863. ucfg_mlme_get_dot11p_mode(struct wlan_objmgr_psoc *psoc,
  864. enum dot11p_mode *out_mode);
  865. /**
  866. * ucfg_mlme_get_go_cts2self_for_sta() - Stop NOA and start using cts2self
  867. * @psoc: pointer to psoc object
  868. * @val: Pointer to the value which will be filled for the caller
  869. *
  870. * Return: QDF Status
  871. */
  872. QDF_STATUS
  873. ucfg_mlme_get_go_cts2self_for_sta(struct wlan_objmgr_psoc *psoc,
  874. bool *val);
  875. /**
  876. * ucfg_mlme_get_force_rsne_override() - Force rsnie override from user
  877. * @psoc: pointer to psoc object
  878. * @val: Pointer to the value which will be filled for the caller
  879. *
  880. * Return: QDF Status
  881. */
  882. QDF_STATUS
  883. ucfg_mlme_get_force_rsne_override(struct wlan_objmgr_psoc *psoc,
  884. bool *val);
  885. /**
  886. * ucfg_mlme_get_qcn_ie_support() - QCN IE support or not
  887. * @psoc: pointer to psoc object
  888. * @val: Pointer to the value which will be filled for the caller
  889. *
  890. * Return: QDF Status
  891. */
  892. QDF_STATUS
  893. ucfg_mlme_get_qcn_ie_support(struct wlan_objmgr_psoc *psoc,
  894. bool *val);
  895. /**
  896. * ucfg_mlme_get_tgt_gtx_usr_cfg() - Get the target gtx user config
  897. * @psoc: pointer to psoc object
  898. * @val: Pointer to the value which will be filled for the caller
  899. *
  900. * Return: QDF Status
  901. */
  902. QDF_STATUS
  903. ucfg_mlme_get_tgt_gtx_usr_cfg(struct wlan_objmgr_psoc *psoc,
  904. uint32_t *val);
  905. /**
  906. * ucfg_mlme_is_override_ht20_40_24g() - use channel bonding in 2.4 GHz or not
  907. * @psoc: pointer to psoc object
  908. * @val: Pointer to the value which will be filled for the caller
  909. *
  910. * Return: QDF Status
  911. */
  912. QDF_STATUS
  913. ucfg_mlme_is_override_ht20_40_24g(struct wlan_objmgr_psoc *psoc, bool *val);
  914. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  915. /**
  916. * ucfg_mlme_get_roaming_offload() - Get roaming offload setting
  917. * @psoc: pointer to psoc object
  918. * @val: Pointer to enable/disable roaming offload
  919. *
  920. * Return: QDF Status
  921. */
  922. QDF_STATUS
  923. ucfg_mlme_get_roaming_offload(struct wlan_objmgr_psoc *psoc,
  924. bool *val);
  925. /**
  926. * ucfg_mlme_set_roaming_offload() - Enable/disable roaming offload
  927. * @psoc: pointer to psoc object
  928. * @val: enable/disable roaming offload
  929. *
  930. * Return: QDF Status
  931. */
  932. QDF_STATUS
  933. ucfg_mlme_set_roaming_offload(struct wlan_objmgr_psoc *psoc,
  934. bool val);
  935. #endif
  936. /**
  937. * ucfg_mlme_get_first_scan_bucket_threshold() - Get first scan bucket thre
  938. * @psoc: pointer to psoc object
  939. * @val: first scan bucket threshold
  940. *
  941. * Return: QDF Status
  942. */
  943. QDF_STATUS
  944. ucfg_mlme_get_first_scan_bucket_threshold(struct wlan_objmgr_psoc *psoc,
  945. uint8_t *val);
  946. /**
  947. * ucfg_mlme_is_mawc_enabled() - MAWC enabled or not
  948. * @psoc: pointer to psoc object
  949. * @val: Pointer to the value which will be filled for the caller
  950. *
  951. * Return: QDF Status
  952. */
  953. QDF_STATUS
  954. ucfg_mlme_is_mawc_enabled(struct wlan_objmgr_psoc *psoc, bool *val);
  955. /**
  956. * ucfg_mlme_set_mawc_enabled() - Set MAWC enable or disable
  957. * @psoc: pointer to psoc object
  958. * @val: enable or disable MAWC
  959. *
  960. * Return: QDF Status
  961. */
  962. QDF_STATUS
  963. ucfg_mlme_set_mawc_enabled(struct wlan_objmgr_psoc *psoc, bool val);
  964. /**
  965. * ucfg_mlme_is_fast_transition_enabled() - Fast transition enable or not
  966. * @psoc: pointer to psoc object
  967. * @val: Pointer to the value which will be filled for the caller
  968. *
  969. * Return: QDF Status
  970. */
  971. QDF_STATUS
  972. ucfg_mlme_is_fast_transition_enabled(struct wlan_objmgr_psoc *psoc,
  973. bool *val);
  974. /**
  975. * ucfg_mlme_set_fast_transition_enabled() - Set fast transition enable
  976. * @psoc: pointer to psoc object
  977. * @val: Fast transition enable or disable
  978. *
  979. * Return: QDF Status
  980. */
  981. QDF_STATUS
  982. ucfg_mlme_set_fast_transition_enabled(struct wlan_objmgr_psoc *psoc,
  983. bool val);
  984. /**
  985. * ucfg_mlme_is_roam_scan_offload_enabled() - Roam scan offload enable or not
  986. * @psoc: pointer to psoc object
  987. * @val: Pointer to the value which will be filled for the caller
  988. *
  989. * Return: QDF Status
  990. */
  991. QDF_STATUS
  992. ucfg_mlme_is_roam_scan_offload_enabled(struct wlan_objmgr_psoc *psoc,
  993. bool *val);
  994. /**
  995. * ucfg_mlme_set_roam_scan_offload_enabled() - Set roam scan offload enable
  996. * @psoc: pointer to psoc object
  997. * @val: Roam scan offload enable or disable
  998. *
  999. * Return: QDF Status
  1000. */
  1001. QDF_STATUS
  1002. ucfg_mlme_set_roam_scan_offload_enabled(struct wlan_objmgr_psoc *psoc,
  1003. bool val);
  1004. /**
  1005. * ucfg_mlme_get_neighbor_scan_max_chan_time() - Get neighbor scan max
  1006. * channel time
  1007. * @psoc: pointer to psoc object
  1008. * @val: Pointer to the value which will be filled for the caller
  1009. *
  1010. * Return: QDF Status
  1011. */
  1012. QDF_STATUS
  1013. ucfg_mlme_get_neighbor_scan_max_chan_time(struct wlan_objmgr_psoc *psoc,
  1014. uint16_t *val);
  1015. /**
  1016. * ucfg_mlme_get_neighbor_scan_min_chan_time() - Get neighbor scan min
  1017. * channel time
  1018. * @psoc: pointer to psoc object
  1019. * @val: Pointer to the value which will be filled for the caller
  1020. *
  1021. * Return: QDF Status
  1022. */
  1023. QDF_STATUS
  1024. ucfg_mlme_get_neighbor_scan_min_chan_time(struct wlan_objmgr_psoc *psoc,
  1025. uint16_t *val);
  1026. /**
  1027. * ucfg_mlme_get_delay_before_vdev_stop() - Get the delay before vdev stop
  1028. * @psoc: pointer to psoc object
  1029. * @val: Pointer to the value which will be filled for the caller
  1030. *
  1031. * Return: QDF Status
  1032. */
  1033. QDF_STATUS
  1034. ucfg_mlme_get_delay_before_vdev_stop(struct wlan_objmgr_psoc *psoc,
  1035. uint8_t *val);
  1036. /**
  1037. * ucfg_mlme_get_roam_bmiss_final_bcnt() - Get roam bmiss first count
  1038. * @psoc: pointer to psoc object
  1039. * @val: Pointer to the value which will be filled for the caller
  1040. *
  1041. * Return: QDF Status
  1042. */
  1043. QDF_STATUS
  1044. ucfg_mlme_get_roam_bmiss_final_bcnt(struct wlan_objmgr_psoc *psoc,
  1045. uint8_t *val);
  1046. /**
  1047. * ucfg_mlme_get_roam_bmiss_first_bcnt() - Get roam bmiss final count
  1048. * @psoc: pointer to psoc object
  1049. * @val: Pointer to the value which will be filled for the caller
  1050. *
  1051. * Return: QDF Status
  1052. */
  1053. QDF_STATUS
  1054. ucfg_mlme_get_roam_bmiss_first_bcnt(struct wlan_objmgr_psoc *psoc,
  1055. uint8_t *val);
  1056. /**
  1057. * ucfg_mlme_is_lfr_enabled() - LFR enable or not
  1058. * @psoc: pointer to psoc object
  1059. * @val: Pointer to the value which will be filled for the caller
  1060. *
  1061. * Return: QDF Status
  1062. */
  1063. QDF_STATUS
  1064. ucfg_mlme_is_lfr_enabled(struct wlan_objmgr_psoc *psoc, bool *val);
  1065. /**
  1066. * ucfg_mlme_set_lfr_enabled() - Enable or disable LFR
  1067. * @psoc: pointer to psoc object
  1068. * @val: Enable or disable LFR
  1069. *
  1070. * Return: QDF Status
  1071. */
  1072. QDF_STATUS
  1073. ucfg_mlme_set_lfr_enabled(struct wlan_objmgr_psoc *psoc, bool val);
  1074. /**
  1075. * ucfg_mlme_is_roam_prefer_5ghz() - prefer 5ghz or not
  1076. * @psoc: pointer to psoc object
  1077. * @val: Pointer to the value which will be filled for the caller
  1078. *
  1079. * Return: QDF Status
  1080. */
  1081. QDF_STATUS
  1082. ucfg_mlme_is_roam_prefer_5ghz(struct wlan_objmgr_psoc *psoc, bool *val);
  1083. /**
  1084. * ucfg_mlme_set_roam_intra_band() - Set roam intra modes
  1085. * @psoc: pointer to psoc object
  1086. * @val: roam intra modes or not
  1087. *
  1088. * Return: QDF Status
  1089. */
  1090. QDF_STATUS
  1091. ucfg_mlme_set_roam_intra_band(struct wlan_objmgr_psoc *psoc, bool val);
  1092. /**
  1093. * ucfg_mlme_get_home_away_time() - Get home away time
  1094. * @psoc: pointer to psoc object
  1095. * @val: Pointer to the value which will be filled for the caller
  1096. *
  1097. * Return: QDF Status
  1098. */
  1099. QDF_STATUS
  1100. ucfg_mlme_get_home_away_time(struct wlan_objmgr_psoc *psoc, uint16_t *val);
  1101. /**
  1102. * ucfg_mlme_set_fast_roam_in_concurrency_enabled() - Enable fast roam in
  1103. * concurrency
  1104. * @psoc: pointer to psoc object
  1105. * @val: Enable or disable fast roam in concurrency
  1106. *
  1107. * Return: QDF Status
  1108. */
  1109. QDF_STATUS
  1110. ucfg_mlme_set_fast_roam_in_concurrency_enabled(struct wlan_objmgr_psoc *psoc,
  1111. bool val);
  1112. /**
  1113. * ucfg_mlme_get_ps_data_inactivity_timeout() - Get data inactivity timeout
  1114. * @psoc: pointer to psoc object
  1115. * @inactivity_timeout: buffer to hold value
  1116. *
  1117. * Return: QDF Status
  1118. */
  1119. QDF_STATUS
  1120. ucfg_mlme_get_ps_data_inactivity_timeout(struct wlan_objmgr_psoc *psoc,
  1121. uint32_t *inactivity_timeout);
  1122. /**
  1123. * ucfg_mlme_set_ps_data_inactivity_timeout() - Set data inactivity timeout
  1124. * @psoc: pointer to psoc object
  1125. * @inactivity_timeout: value to be set
  1126. *
  1127. * Return: QDF Status
  1128. */
  1129. QDF_STATUS
  1130. ucfg_mlme_set_ps_data_inactivity_timeout(struct wlan_objmgr_psoc *psoc,
  1131. uint32_t inactivity_timeout);
  1132. /**
  1133. * ucfg_mlme_set_sap_listen_interval() - Set the Sap listen interval
  1134. * @psoc: pointer to psoc object
  1135. * @value: Value that needs to be set from the caller
  1136. *
  1137. * Inline UCFG API to be used by HDD/OSIF callers
  1138. *
  1139. * Return: QDF Status
  1140. */
  1141. static inline
  1142. QDF_STATUS ucfg_mlme_set_sap_listen_interval(struct wlan_objmgr_psoc *psoc,
  1143. int value)
  1144. {
  1145. return wlan_mlme_set_sap_listen_interval(psoc, value);
  1146. }
  1147. /**
  1148. * ucfg_mlme_set_assoc_sta_limit() - Set the assoc sta limit
  1149. * @psoc: pointer to psoc object
  1150. * @value: Value that needs to be set from the caller
  1151. *
  1152. * Inline UCFG API to be used by HDD/OSIF callers
  1153. *
  1154. * Return: QDF Status
  1155. */
  1156. static inline
  1157. QDF_STATUS ucfg_mlme_set_assoc_sta_limit(struct wlan_objmgr_psoc *psoc,
  1158. int value)
  1159. {
  1160. return wlan_mlme_set_assoc_sta_limit(psoc, value);
  1161. }
  1162. /**
  1163. * ucfg_mlme_set_rmc_action_period_freq() - Set the rmc action period frequency
  1164. * @psoc: pointer to psoc object
  1165. * @value: Value that needs to be set from the caller
  1166. *
  1167. * Inline UCFG API to be used by HDD/OSIF callers
  1168. *
  1169. * Return: QDF Status
  1170. */
  1171. static inline
  1172. QDF_STATUS ucfg_mlme_set_rmc_action_period_freq(struct wlan_objmgr_psoc *psoc,
  1173. int value)
  1174. {
  1175. return wlan_mlme_set_rmc_action_period_freq(psoc, value);
  1176. }
  1177. /**
  1178. * ucfg_mlme_get_sap_get_peer_info() - get the sap get peer info
  1179. * @psoc: pointer to psoc object
  1180. * @value: Value that needs to be set from the caller
  1181. *
  1182. * Inline UCFG API to be used by HDD/OSIF callers
  1183. *
  1184. * Return: QDF Status
  1185. */
  1186. static inline
  1187. QDF_STATUS ucfg_mlme_get_sap_get_peer_info(struct wlan_objmgr_psoc *psoc,
  1188. bool *value)
  1189. {
  1190. return wlan_mlme_get_sap_get_peer_info(psoc, value);
  1191. }
  1192. /**
  1193. * ucfg_mlme_get_sap_allow_all_channels() - get the sap allow all channels
  1194. * @psoc: pointer to psoc object
  1195. * @value: Value that needs to be set from the caller
  1196. *
  1197. * Inline UCFG API to be used by HDD/OSIF callers
  1198. *
  1199. * Return: QDF Status
  1200. */
  1201. static inline
  1202. QDF_STATUS ucfg_mlme_get_sap_allow_all_channels(struct wlan_objmgr_psoc *psoc,
  1203. bool *value)
  1204. {
  1205. return wlan_mlme_get_sap_allow_all_channels(psoc, value);
  1206. }
  1207. /**
  1208. * ucfg_mlme_get_sap_max_peers() - get the sap max peers
  1209. * @psoc: pointer to psoc object
  1210. * @value: Value that needs to be set from the caller
  1211. *
  1212. * Inline UCFG API to be used by HDD/OSIF callers
  1213. *
  1214. * Return: QDF Status
  1215. */
  1216. static inline
  1217. QDF_STATUS ucfg_mlme_get_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  1218. int *value)
  1219. {
  1220. return wlan_mlme_get_sap_max_peers(psoc, value);
  1221. }
  1222. /**
  1223. * ucfg_mlme_set_sap_max_peers() - Set the sap max peers
  1224. * @psoc: pointer to psoc object
  1225. * @value: Value that needs to be set from the caller
  1226. *
  1227. * Inline UCFG API to be used by HDD/OSIF callers
  1228. *
  1229. * Return: QDF Status
  1230. */
  1231. static inline
  1232. QDF_STATUS ucfg_mlme_set_sap_max_peers(struct wlan_objmgr_psoc *psoc, int value)
  1233. {
  1234. return wlan_mlme_set_sap_max_peers(psoc, value);
  1235. }
  1236. /**
  1237. * ucfg_mlme_get_sap_max_offload_peers() - get the sap max offload peers
  1238. * @psoc: pointer to psoc object
  1239. * @value: Value that needs to be set from the caller
  1240. *
  1241. * Inline UCFG API to be used by HDD/OSIF callers
  1242. *
  1243. * Return: QDF Status
  1244. */
  1245. static inline
  1246. QDF_STATUS ucfg_mlme_get_sap_max_offload_peers(struct wlan_objmgr_psoc *psoc,
  1247. int *value)
  1248. {
  1249. return wlan_mlme_get_sap_max_offload_peers(psoc, value);
  1250. }
  1251. /**
  1252. * ucfg_mlme_get_sap_max_offload_reorder_buffs() - get the sap max offload
  1253. * reorder buffs
  1254. * @psoc: pointer to psoc object
  1255. * @value: Value that needs to be set from the caller
  1256. *
  1257. * Inline UCFG API to be used by HDD/OSIF callers
  1258. *
  1259. * Return: QDF Status
  1260. */
  1261. static inline
  1262. QDF_STATUS ucfg_mlme_get_sap_max_offload_reorder_buffs(struct wlan_objmgr_psoc
  1263. *psoc, int *value)
  1264. {
  1265. return wlan_mlme_get_sap_max_offload_reorder_buffs(psoc, value);
  1266. }
  1267. /**
  1268. * ucfg_mlme_get_sap_chn_switch_bcn_count() - get the sap channel
  1269. * switch beacon count
  1270. * @psoc: pointer to psoc object
  1271. * @value: Value that needs to be set from the caller
  1272. *
  1273. * Inline UCFG API to be used by HDD/OSIF callers
  1274. *
  1275. * Return: QDF Status
  1276. */
  1277. static inline
  1278. QDF_STATUS ucfg_mlme_get_sap_chn_switch_bcn_count(struct wlan_objmgr_psoc *psoc,
  1279. int *value)
  1280. {
  1281. return wlan_mlme_get_sap_chn_switch_bcn_count(psoc, value);
  1282. }
  1283. /**
  1284. * ucfg_mlme_get_sap_channel_switch_mode() - get the sap channel switch mode
  1285. * @psoc: pointer to psoc object
  1286. * @value: Value that needs to be set from the caller
  1287. *
  1288. * Inline UCFG API to be used by HDD/OSIF callers
  1289. *
  1290. * Return: QDF Status
  1291. */
  1292. static inline
  1293. QDF_STATUS ucfg_mlme_get_sap_channel_switch_mode(struct wlan_objmgr_psoc *psoc,
  1294. bool *value)
  1295. {
  1296. return wlan_mlme_get_sap_chn_switch_mode(psoc, value);
  1297. }
  1298. /**
  1299. * ucfg_mlme_get_sap_internal_restart() - get sap internal restart value
  1300. * @psoc: pointer to psoc object
  1301. * @value: Value that needs to be set from the caller
  1302. *
  1303. * Inline UCFG API to be used by HDD/OSIF callers
  1304. *
  1305. * Return: QDF Status
  1306. */
  1307. static inline
  1308. QDF_STATUS ucfg_mlme_get_sap_internal_restart(struct wlan_objmgr_psoc *psoc,
  1309. bool *value)
  1310. {
  1311. return wlan_mlme_get_sap_internal_restart(psoc, value);
  1312. }
  1313. /**
  1314. * ucfg_mlme_get_sap_max_modulated_dtim() - get sap max modulated dtim
  1315. * @psoc: pointer to psoc object
  1316. * @value: Value that needs to be set from the caller
  1317. *
  1318. * Inline UCFG API to be used by HDD/OSIF callers
  1319. *
  1320. * Return: QDF Status
  1321. */
  1322. static inline
  1323. QDF_STATUS ucfg_mlme_get_sap_max_modulated_dtim(struct wlan_objmgr_psoc *psoc,
  1324. uint8_t *value)
  1325. {
  1326. return wlan_mlme_get_sap_max_modulated_dtim(psoc, value);
  1327. }
  1328. /**
  1329. * ucfg_mlme_get_pref_chan_location() - get sap pref chan location
  1330. * @psoc: pointer to psoc object
  1331. * @value: Value that needs to be set from the caller
  1332. *
  1333. * Inline UCFG API to be used by HDD/OSIF callers
  1334. *
  1335. * Return: QDF Status
  1336. */
  1337. static inline
  1338. QDF_STATUS ucfg_mlme_get_pref_chan_location(struct wlan_objmgr_psoc *psoc,
  1339. uint8_t *value)
  1340. {
  1341. return wlan_mlme_get_sap_chan_pref_location(psoc, value);
  1342. }
  1343. /**
  1344. * ucfg_mlme_get_sap_country_priority() - get sap country code priority
  1345. * @psoc: pointer to psoc object
  1346. * @value: Value that needs to be set from the caller
  1347. *
  1348. * Inline UCFG API to be used by HDD/OSIF callers
  1349. *
  1350. * Return: QDF Status
  1351. */
  1352. static inline
  1353. QDF_STATUS ucfg_mlme_get_sap_country_priority(struct wlan_objmgr_psoc *psoc,
  1354. bool *value)
  1355. {
  1356. return wlan_mlme_get_sap_country_priority(psoc, value);
  1357. }
  1358. /**
  1359. * ucfg_mlme_get_sap_reduces_beacon_interval() - get the sap reduces beacon
  1360. * interval
  1361. * @psoc: pointer to psoc object
  1362. * @value: Value that needs to be set from the caller
  1363. *
  1364. * Inline UCFG API to be used by HDD/OSIF callers
  1365. *
  1366. * Return: QDF Status
  1367. */
  1368. static inline
  1369. QDF_STATUS ucfg_mlme_get_sap_reduces_beacon_interval(struct wlan_objmgr_psoc
  1370. *psoc, int *value)
  1371. {
  1372. return wlan_mlme_get_sap_reduced_beacon_interval(psoc, value);
  1373. }
  1374. /**
  1375. * ucfg_mlme_get_sap_chan_switch_rate_enabled() - get the sap channel
  1376. * switch rate enabled.
  1377. * @psoc: pointer to psoc object
  1378. * @value: Value that needs to be set from the caller
  1379. *
  1380. * Inline UCFG API to be used by HDD/OSIF callers
  1381. *
  1382. * Return: QDF Status
  1383. */
  1384. static inline
  1385. QDF_STATUS ucfg_mlme_get_sap_chan_switch_rate_enabled(struct wlan_objmgr_psoc
  1386. *psoc, bool *value)
  1387. {
  1388. return wlan_mlme_get_sap_chan_switch_rate_enabled(psoc, value);
  1389. }
  1390. /**
  1391. * ucfg_mlme_get_sap_force_11n_for_11ac() - get the sap 11n for 11ac
  1392. *
  1393. * @psoc: pointer to psoc object
  1394. * @value: Value that needs to be set from the caller
  1395. *
  1396. * Inline UCFG API to be used by HDD/OSIF callers
  1397. *
  1398. * Return: QDF Status
  1399. */
  1400. static inline
  1401. QDF_STATUS ucfg_mlme_get_sap_force_11n_for_11ac(struct wlan_objmgr_psoc
  1402. *psoc, bool *value)
  1403. {
  1404. return wlan_mlme_get_sap_force_11n_for_11ac(psoc, value);
  1405. }
  1406. /**
  1407. * ucfg_mlme_get_go_force_11n_for_11ac() - get the GO 11n for 11ac
  1408. *
  1409. * @psoc: pointer to psoc object
  1410. * @value: Value that needs to be set from the caller
  1411. *
  1412. * Inline UCFG API to be used by HDD/OSIF callers
  1413. *
  1414. * Return: QDF Status
  1415. */
  1416. static inline
  1417. QDF_STATUS ucfg_mlme_get_go_force_11n_for_11ac(struct wlan_objmgr_psoc
  1418. *psoc, bool *value)
  1419. {
  1420. return wlan_mlme_get_go_force_11n_for_11ac(psoc, value);
  1421. }
  1422. /**
  1423. * ucfg_mlme_get_oce_sta_enabled_info() - Get OCE feature enable/disable
  1424. * info for STA
  1425. *
  1426. * @psoc: pointer to psoc object
  1427. * @value: pointer to the value which will be filled for the caller
  1428. *
  1429. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1430. * OCE STA feature enable value
  1431. *
  1432. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1433. */
  1434. static inline
  1435. QDF_STATUS ucfg_mlme_get_oce_sta_enabled_info(struct wlan_objmgr_psoc *psoc,
  1436. bool *value)
  1437. {
  1438. return wlan_mlme_get_oce_sta_enabled_info(psoc, value);
  1439. }
  1440. /**
  1441. * ucfg_mlme_get_oce_sap_enabled_info() - Get OCE feature enable/disable
  1442. * info for SAP
  1443. *
  1444. * @psoc: pointer to psoc object
  1445. * @value: pointer to the value which will be filled for the caller
  1446. *
  1447. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1448. * OCE SAP feature enable value
  1449. *
  1450. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1451. */
  1452. static inline
  1453. QDF_STATUS ucfg_mlme_get_oce_sap_enabled_info(struct wlan_objmgr_psoc *psoc,
  1454. bool *value)
  1455. {
  1456. return wlan_mlme_get_oce_sap_enabled_info(psoc, value);
  1457. }
  1458. /**
  1459. * ucfg_mlme_get_ap_protection_mode() - Get ap protection mode info
  1460. * @psoc: pointer to psoc object
  1461. * @value: pointer to the value which will be filled for the caller
  1462. *
  1463. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1464. * ap protection mode value
  1465. *
  1466. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1467. */
  1468. static inline
  1469. QDF_STATUS ucfg_mlme_get_ap_protection_mode(struct wlan_objmgr_psoc *psoc,
  1470. uint16_t *value)
  1471. {
  1472. return wlan_mlme_get_ap_protection_mode(psoc, value);
  1473. }
  1474. /**
  1475. * ucfg_mlme_is_ap_obss_prot_enabled() - Get ap obss protection enable/disable
  1476. * @psoc: pointer to psoc object
  1477. * @value: pointer to the value which will be filled for the caller
  1478. *
  1479. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1480. * obss protection enable value
  1481. *
  1482. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1483. */
  1484. static inline
  1485. QDF_STATUS ucfg_mlme_is_ap_obss_prot_enabled(struct wlan_objmgr_psoc *psoc,
  1486. bool *value)
  1487. {
  1488. return wlan_mlme_is_ap_obss_prot_enabled(psoc, value);
  1489. }
  1490. /**
  1491. * ucfg_mlme_get_rts_threshold() - Get the rts threshold config
  1492. * @psoc: pointer to psoc object
  1493. * @value: pointer to the value which will be filled for the caller
  1494. *
  1495. * Inline UCFG API to be used by HDD/OSIF callers
  1496. *
  1497. * Return: QDF Status
  1498. */
  1499. static inline
  1500. QDF_STATUS ucfg_mlme_get_rts_threshold(struct wlan_objmgr_psoc *psoc,
  1501. uint32_t *value)
  1502. {
  1503. return wlan_mlme_get_rts_threshold(psoc, value);
  1504. }
  1505. /**
  1506. * ucfg_mlme_set_rts_threshold() - Set the rts threshold config
  1507. * @psoc: pointer to psoc object
  1508. * @value: pointer to the value which will be filled for the caller
  1509. *
  1510. * Inline UCFG API to be used by HDD/OSIF callers
  1511. *
  1512. * Return: QDF Status
  1513. */
  1514. static inline
  1515. QDF_STATUS ucfg_mlme_set_rts_threshold(struct wlan_objmgr_psoc *psoc,
  1516. uint32_t value)
  1517. {
  1518. return wlan_mlme_set_rts_threshold(psoc, value);
  1519. }
  1520. /**
  1521. * ucfg_mlme_get_frag_threshold() - Get the fragmentation threshold
  1522. * config
  1523. * @psoc: pointer to psoc object
  1524. * @value: Value that needs to be set from the caller
  1525. *
  1526. * Inline UCFG API to be used by HDD/OSIF callers
  1527. *
  1528. * Return: QDF Status
  1529. */
  1530. static inline
  1531. QDF_STATUS ucfg_mlme_get_frag_threshold(struct wlan_objmgr_psoc *psoc,
  1532. uint32_t *value)
  1533. {
  1534. return wlan_mlme_get_frag_threshold(psoc, value);
  1535. }
  1536. /**
  1537. * ucfg_mlme_set_frag_threshold() - set the frag threshold config
  1538. * @psoc: pointer to psoc object
  1539. * @value: pointer to the value which will be filled for the caller
  1540. *
  1541. * Inline UCFG API to be used by HDD/OSIF callers
  1542. *
  1543. * Return: QDF Status
  1544. */
  1545. static inline
  1546. QDF_STATUS ucfg_mlme_set_frag_threshold(struct wlan_objmgr_psoc *psoc,
  1547. uint32_t value)
  1548. {
  1549. return wlan_mlme_set_frag_threshold(psoc, value);
  1550. }
  1551. /**
  1552. * ucfg_mlme_get_fils_enabled_info() - Get fils enable/disable info
  1553. *
  1554. * @psoc: pointer to psoc object
  1555. * @value: pointer to the value which will be filled for the caller
  1556. *
  1557. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1558. * fils enable value
  1559. *
  1560. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1561. */
  1562. static inline
  1563. QDF_STATUS ucfg_mlme_get_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  1564. bool *value)
  1565. {
  1566. return wlan_mlme_get_fils_enabled_info(psoc, value);
  1567. }
  1568. /**
  1569. * ucfg_mlme_set_fils_enabled_info() - Set fils enable info
  1570. *
  1571. * @psoc: pointer to psoc object
  1572. * @value: value that needs to be set from the caller
  1573. *
  1574. * Inline UCFG API to be used by HDD/OSIF callers to set the
  1575. * fils enable value
  1576. *
  1577. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1578. */
  1579. static inline
  1580. QDF_STATUS ucfg_mlme_set_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  1581. bool value)
  1582. {
  1583. return wlan_mlme_set_fils_enabled_info(psoc, value);
  1584. }
  1585. /**
  1586. * ucfg_mlme_set_enable_bcast_probe_rsp() - Set enable bcast probe resp info
  1587. * @psoc: pointer to psoc object
  1588. * @value: value that needs to be set from the caller
  1589. *
  1590. * Inline UCFG API to be used by HDD/OSIF callers to set the
  1591. * enable bcast probe resp info
  1592. *
  1593. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1594. */
  1595. static inline
  1596. QDF_STATUS ucfg_mlme_set_enable_bcast_probe_rsp(struct wlan_objmgr_psoc *psoc,
  1597. bool value)
  1598. {
  1599. return wlan_mlme_set_enable_bcast_probe_rsp(psoc, value);
  1600. }
  1601. /**
  1602. * ucfg_mlme_set_vht_ch_width() - set the vht supported channel width cfg
  1603. * @psoc: psoc context
  1604. * @value: data to be set
  1605. *
  1606. * Inline UCFG API to be used by HDD/OSIF callers
  1607. *
  1608. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1609. */
  1610. static inline
  1611. QDF_STATUS ucfg_mlme_set_vht_ch_width(struct wlan_objmgr_psoc *psoc,
  1612. uint8_t value)
  1613. {
  1614. return wlan_mlme_cfg_set_vht_chan_width(psoc, value);
  1615. }
  1616. /**
  1617. * ucfg_mlme_cfg_get_vht_chan_width() - gets vht supported channel width into
  1618. * cfg item
  1619. * @psoc: psoc context
  1620. * @value: data to be set
  1621. *
  1622. * Inline UCFG API to be used by HDD/OSIF callers
  1623. *
  1624. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1625. */
  1626. static inline
  1627. QDF_STATUS ucfg_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1628. uint8_t *value)
  1629. {
  1630. return wlan_mlme_cfg_get_vht_chan_width(psoc, value);
  1631. }
  1632. /**
  1633. * ucfg_mlme_cfg_set_vht_ldpc_coding_cap() - sets vht ldpc coding cap into
  1634. * cfg item
  1635. * @psoc: psoc context
  1636. * @value: data to be set
  1637. *
  1638. * Inline UCFG API to be used by HDD/OSIF callers
  1639. *
  1640. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1641. */
  1642. static inline QDF_STATUS
  1643. ucfg_mlme_cfg_set_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1644. bool value)
  1645. {
  1646. return wlan_mlme_cfg_set_vht_ldpc_coding_cap(psoc, value);
  1647. }
  1648. /**
  1649. * ucfg_mlme_cfg_get_short_gi_160_mhz() - Get SHORT GI 160MHZ from cfg item
  1650. * @psoc: psoc context
  1651. * @value: data to be set
  1652. *
  1653. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1654. * ignore_peer_ht_opmode flag value
  1655. *
  1656. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1657. */
  1658. static inline QDF_STATUS
  1659. ucfg_mlme_cfg_get_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc,
  1660. bool *value)
  1661. {
  1662. return wlan_mlme_cfg_get_short_gi_160_mhz(psoc, value);
  1663. }
  1664. /**
  1665. * ucfg_mlme_cfg_set_short_gi_160_mhz() - sets basic set SHORT GI 160MHZ into
  1666. * cfg item
  1667. * @psoc: psoc context
  1668. * @value: data to be set
  1669. *
  1670. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1671. * ignore_peer_ht_opmode flag value
  1672. *
  1673. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1674. */
  1675. static inline QDF_STATUS
  1676. ucfg_mlme_cfg_set_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc,
  1677. bool value)
  1678. {
  1679. return wlan_mlme_cfg_set_short_gi_160_mhz(psoc, value);
  1680. }
  1681. /**
  1682. * ucfg_mlme_cfg_get_vht_tx_stbc() - gets vht tx stbc from
  1683. * cfg item
  1684. * @psoc: psoc context
  1685. * @value: pointer to get required data
  1686. *
  1687. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1688. * ignore_peer_ht_opmode flag value
  1689. *
  1690. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1691. */
  1692. static inline QDF_STATUS
  1693. ucfg_mlme_cfg_get_vht_tx_stbc(struct wlan_objmgr_psoc *psoc,
  1694. bool *value)
  1695. {
  1696. return wlan_mlme_cfg_get_vht_tx_stbc(psoc, value);
  1697. }
  1698. /**
  1699. * ucfg_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1700. * cfg item
  1701. * @psoc: psoc context
  1702. * @value: pointer to get required data
  1703. *
  1704. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1705. * ignore_peer_ht_opmode flag value
  1706. *
  1707. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1708. */
  1709. static inline QDF_STATUS
  1710. ucfg_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc,
  1711. bool *value)
  1712. {
  1713. return wlan_mlme_cfg_get_vht_rx_stbc(psoc, value);
  1714. }
  1715. /**
  1716. * ucfg_mlme_cfg_set_vht_tx_bfee_ant_supp() - sets vht Beamformee antenna
  1717. * support cap into cfg item
  1718. * @psoc: psoc context
  1719. * @value: data to be set
  1720. *
  1721. * Inline UCFG API to be used by HDD/OSIF callers
  1722. *
  1723. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1724. */
  1725. static inline QDF_STATUS
  1726. ucfg_mlme_cfg_set_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1727. uint8_t value)
  1728. {
  1729. return wlan_mlme_cfg_set_vht_tx_bfee_ant_supp(psoc, value);
  1730. }
  1731. /**
  1732. * ucfg_mlme_cfg_get_vht_tx_bfee_ant_supp() - gets vht Beamformee antenna
  1733. * support cap into cfg item
  1734. * @psoc: psoc context
  1735. * @value: data to be set
  1736. *
  1737. * Inline UCFG API to be used by HDD/OSIF callers
  1738. *
  1739. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1740. */
  1741. static inline QDF_STATUS
  1742. ucfg_mlme_cfg_get_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1743. uint8_t *value)
  1744. {
  1745. return wlan_mlme_cfg_get_vht_tx_bfee_ant_supp(psoc, value);
  1746. }
  1747. /**
  1748. * ucfg_mlme_cfg_get_vht_rx_mcs_map() - gets vht rx mcs map from
  1749. * cfg item
  1750. * @psoc: psoc context
  1751. * @value: pointer to get required data
  1752. *
  1753. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1754. * ignore_peer_ht_opmode flag value
  1755. *
  1756. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1757. */
  1758. static inline QDF_STATUS
  1759. ucfg_mlme_cfg_get_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1760. uint32_t *value)
  1761. {
  1762. return wlan_mlme_cfg_get_vht_rx_mcs_map(psoc, value);
  1763. }
  1764. /**
  1765. * ucfg_mlme_cfg_set_vht_rx_mcs_map() - sets rx mcs map into
  1766. * cfg item
  1767. * @psoc: psoc context
  1768. * @value: data to be set
  1769. *
  1770. * Inline UCFG API to be used by HDD/OSIF callers
  1771. *
  1772. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1773. */
  1774. static inline QDF_STATUS
  1775. ucfg_mlme_cfg_set_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1776. uint32_t value)
  1777. {
  1778. return wlan_mlme_cfg_set_vht_rx_mcs_map(psoc, value);
  1779. }
  1780. /**
  1781. * ucfg_mlme_cfg_get_vht_tx_mcs_map() - gets vht tx mcs map from
  1782. * cfg item
  1783. * @psoc: psoc context
  1784. * @value: pointer to get required data
  1785. *
  1786. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1787. * ignore_peer_ht_opmode flag value
  1788. *
  1789. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1790. */
  1791. static inline QDF_STATUS
  1792. ucfg_mlme_cfg_get_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1793. uint32_t *value)
  1794. {
  1795. return wlan_mlme_cfg_get_vht_tx_mcs_map(psoc, value);
  1796. }
  1797. /**
  1798. * ucfg_mlme_cfg_set_vht_tx_mcs_map() - sets tx mcs map into
  1799. * cfg item
  1800. * @psoc: psoc context
  1801. * @value: data to be set
  1802. *
  1803. * Inline UCFG API to be used by HDD/OSIF callers
  1804. *
  1805. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1806. */
  1807. static inline QDF_STATUS
  1808. ucfg_mlme_cfg_set_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1809. uint32_t value)
  1810. {
  1811. return wlan_mlme_cfg_set_vht_tx_mcs_map(psoc, value);
  1812. }
  1813. /**
  1814. * ucfg_mlme_cfg_set_vht_rx_supp_data_rate() - sets rx supported data
  1815. * rate into cfg item
  1816. * @psoc: psoc context
  1817. * @value: data to be set
  1818. *
  1819. * Inline UCFG API to be used by HDD/OSIF callers
  1820. *
  1821. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1822. */
  1823. static inline QDF_STATUS
  1824. ucfg_mlme_cfg_set_vht_rx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1825. uint32_t value)
  1826. {
  1827. return wlan_mlme_cfg_set_vht_rx_supp_data_rate(psoc, value);
  1828. }
  1829. /**
  1830. * ucfg_mlme_cfg_set_vht_tx_supp_data_rate() - sets tx supported data rate into
  1831. * cfg item
  1832. * @psoc: psoc context
  1833. * @value: data to be set
  1834. *
  1835. * Inline UCFG API to be used by HDD/OSIF callers
  1836. *
  1837. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1838. */
  1839. static inline QDF_STATUS
  1840. ucfg_mlme_cfg_set_vht_tx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1841. uint32_t value)
  1842. {
  1843. return wlan_mlme_cfg_set_vht_tx_supp_data_rate(psoc, value);
  1844. }
  1845. /**
  1846. * ucfg_mlme_cfg_get_vht_basic_mcs_set() - gets basic mcs set from
  1847. * cfg item
  1848. * @psoc: psoc context
  1849. * @value: data to be set
  1850. *
  1851. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1852. * ignore_peer_ht_opmode flag value
  1853. *
  1854. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1855. */
  1856. static inline QDF_STATUS
  1857. ucfg_mlme_cfg_get_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1858. uint32_t *value)
  1859. {
  1860. return wlan_mlme_cfg_get_vht_basic_mcs_set(psoc, value);
  1861. }
  1862. /**
  1863. * ucfg_mlme_cfg_set_vht_basic_mcs_set() - sets basic mcs set into
  1864. * cfg item
  1865. * @psoc: psoc context
  1866. * @value: data to be set
  1867. *
  1868. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1869. * ignore_peer_ht_opmode flag value
  1870. *
  1871. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1872. */
  1873. static inline QDF_STATUS
  1874. ucfg_mlme_cfg_set_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1875. uint32_t value)
  1876. {
  1877. return wlan_mlme_cfg_set_vht_basic_mcs_set(psoc, value);
  1878. }
  1879. /**
  1880. * ucfg_mlme_get_vht_enable_tx_bf() - gets enable TXBF for 20MHZ
  1881. * for 11ac
  1882. * @psoc: psoc context
  1883. * @value: data to be set
  1884. *
  1885. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1886. * ignore_peer_ht_opmode flag value
  1887. *
  1888. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1889. */
  1890. static inline QDF_STATUS
  1891. ucfg_mlme_get_vht_enable_tx_bf(struct wlan_objmgr_psoc *psoc, bool *value)
  1892. {
  1893. return wlan_mlme_get_vht_enable_tx_bf(psoc, value);
  1894. }
  1895. /**
  1896. * ucfg_mlme_get_vht_tx_su_beamformer() - gets enable tx_su_beamformer
  1897. * for 11ac
  1898. * @psoc: psoc context
  1899. * @value: data to be set
  1900. *
  1901. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1902. * ignore_peer_ht_opmode flag value
  1903. *
  1904. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1905. */
  1906. static inline QDF_STATUS
  1907. ucfg_mlme_get_vht_tx_su_beamformer(struct wlan_objmgr_psoc *psoc, bool *value)
  1908. {
  1909. return wlan_mlme_get_vht_tx_su_beamformer(psoc, value);
  1910. }
  1911. /**
  1912. * ucfg_mlme_get_vht_channel_width() - gets Channel width capability
  1913. * for 11ac
  1914. * @psoc: psoc context
  1915. * @value: data to be set
  1916. *
  1917. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1918. * ignore_peer_ht_opmode flag value
  1919. *
  1920. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1921. */
  1922. static inline QDF_STATUS
  1923. ucfg_mlme_get_vht_channel_width(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  1924. {
  1925. return wlan_mlme_get_vht_channel_width(psoc, value);
  1926. }
  1927. /**
  1928. * ucfg_mlme_get_vht_rx_mcs_8_9() - VHT Rx MCS capability for 1x1 mode
  1929. * for 11ac
  1930. * @psoc: psoc context
  1931. * @value: data to be set
  1932. *
  1933. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1934. * ignore_peer_ht_opmode flag value
  1935. *
  1936. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1937. */
  1938. static inline QDF_STATUS
  1939. ucfg_mlme_get_vht_rx_mcs_8_9(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  1940. {
  1941. return wlan_mlme_get_vht_rx_mcs_8_9(psoc, value);
  1942. }
  1943. /**
  1944. * ucfg_mlme_get_vht_tx_mcs_8_9() - VHT Tx MCS capability for 1x1 mode
  1945. * for 11ac
  1946. * @psoc: psoc context
  1947. * @value: data to be set
  1948. *
  1949. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1950. * ignore_peer_ht_opmode flag value
  1951. *
  1952. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1953. */
  1954. static inline QDF_STATUS
  1955. ucfg_mlme_get_vht_tx_mcs_8_9(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  1956. {
  1957. return wlan_mlme_get_vht_tx_mcs_8_9(psoc, value);
  1958. }
  1959. /**
  1960. * ucfg_mlme_get_vht_rx_mcs_2x2() - VHT Rx MCS capability for 2x2 mode
  1961. * for 11ac
  1962. * @psoc: psoc context
  1963. * @value: data to be set
  1964. *
  1965. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1966. * ignore_peer_ht_opmode flag value
  1967. *
  1968. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1969. */
  1970. static inline QDF_STATUS
  1971. ucfg_mlme_get_vht_rx_mcs_2x2(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  1972. {
  1973. return wlan_mlme_get_vht_rx_mcs_2x2(psoc, value);
  1974. }
  1975. /**
  1976. * ucfg_mlme_get_vht_tx_mcs_2x2() - VHT Tx MCS capability for 2x2 mode
  1977. * for 11ac
  1978. * @psoc: psoc context
  1979. * @value: data to be set
  1980. *
  1981. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1982. * ignore_peer_ht_opmode flag value
  1983. *
  1984. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1985. */
  1986. static inline QDF_STATUS
  1987. ucfg_mlme_get_vht_tx_mcs_2x2(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  1988. {
  1989. return wlan_mlme_get_vht_tx_mcs_2x2(psoc, value);
  1990. }
  1991. /**
  1992. * ucfg_mlme_get_ini_vdev_config() - get the ini capability of vdev
  1993. * @vdev: pointer to the vdev obj
  1994. *
  1995. * This API will get the ini config of the vdev related to
  1996. * the nss, chains params
  1997. *
  1998. * Return: pointer to the nss, chain param ini cfg structure
  1999. */
  2000. static inline struct wlan_mlme_nss_chains *
  2001. ucfg_mlme_get_ini_vdev_config(struct wlan_objmgr_vdev *vdev)
  2002. {
  2003. return mlme_get_ini_vdev_config(vdev);
  2004. }
  2005. /**
  2006. * ucfg_mlme_get_dynamic_vdev_config() - get the dynamic capability of vdev
  2007. * @vdev: pointer to the vdev obj
  2008. *
  2009. * This API will get the dynamic config of the vdev related to nss,
  2010. * chains params
  2011. *
  2012. * Return: pointer to the nss, chain param dynamic cfg structure
  2013. */
  2014. static inline struct wlan_mlme_nss_chains *
  2015. ucfg_mlme_get_dynamic_vdev_config(struct wlan_objmgr_vdev *vdev)
  2016. {
  2017. return mlme_get_dynamic_vdev_config(vdev);
  2018. }
  2019. /**
  2020. * ucfg_mlme_get_vht20_mcs9() - Enables VHT MCS9 in 20M BW operation
  2021. * @psoc: psoc context
  2022. * @value: data to be set
  2023. *
  2024. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2025. * ignore_peer_ht_opmode flag value
  2026. *
  2027. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2028. */
  2029. static inline QDF_STATUS
  2030. ucfg_mlme_get_vht20_mcs9(struct wlan_objmgr_psoc *psoc, bool *value)
  2031. {
  2032. return wlan_mlme_get_vht20_mcs9(psoc, value);
  2033. }
  2034. /**
  2035. * ucfg_mlme_get_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  2036. * @psoc: psoc context
  2037. * @value: data to be set
  2038. *
  2039. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2040. * ignore_peer_ht_opmode flag value
  2041. *
  2042. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2043. */
  2044. static inline QDF_STATUS
  2045. ucfg_mlme_get_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool *value)
  2046. {
  2047. return wlan_mlme_get_vht_enable2x2(psoc, value);
  2048. }
  2049. /**
  2050. * ucfg_mlme_set_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  2051. * @psoc: psoc context
  2052. * @value: data to be set
  2053. *
  2054. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2055. * ignore_peer_ht_opmode flag value
  2056. *
  2057. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2058. */
  2059. static inline QDF_STATUS
  2060. ucfg_mlme_set_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool value)
  2061. {
  2062. return wlan_mlme_set_vht_enable2x2(psoc, value);
  2063. }
  2064. /**
  2065. * ucfg_mlme_get_vht_enable_paid() - Enables/disables paid feature
  2066. * @psoc: psoc context
  2067. * @value: data to be set
  2068. *
  2069. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2070. * ignore_peer_ht_opmode flag value
  2071. *
  2072. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2073. */
  2074. static inline QDF_STATUS
  2075. ucfg_mlme_get_vht_enable_paid(struct wlan_objmgr_psoc *psoc, bool *value)
  2076. {
  2077. return wlan_mlme_get_vht_enable_paid(psoc, value);
  2078. }
  2079. /**
  2080. * ucfg_mlme_get_vht_enable_gid() - Enables/disables gid feature
  2081. * @psoc: psoc context
  2082. * @value: data to be set
  2083. *
  2084. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2085. * ignore_peer_ht_opmode flag value
  2086. *
  2087. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2088. */
  2089. static inline QDF_STATUS
  2090. ucfg_mlme_get_vht_enable_gid(struct wlan_objmgr_psoc *psoc, bool *value)
  2091. {
  2092. return wlan_mlme_get_vht_enable_gid(psoc, value);
  2093. }
  2094. /**
  2095. * ucfg_mlme_get_vht_for_24ghz() - Enables/disables vht for 24ghz
  2096. * @psoc: psoc context
  2097. * @value: data to be set
  2098. *
  2099. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2100. * ignore_peer_ht_opmode flag value
  2101. *
  2102. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2103. */
  2104. static inline QDF_STATUS
  2105. ucfg_mlme_get_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value)
  2106. {
  2107. return wlan_mlme_get_vht_for_24ghz(psoc, value);
  2108. }
  2109. /**
  2110. * ucfg_mlme_get_vendor_vht_for_24ghz() - Enables/disables vendor vht for 24ghz
  2111. * @psoc: psoc context
  2112. * @value: data to be set
  2113. *
  2114. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2115. * ignore_peer_ht_opmode flag value
  2116. *
  2117. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2118. */
  2119. static inline QDF_STATUS
  2120. ucfg_mlme_get_vendor_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value)
  2121. {
  2122. return wlan_mlme_get_vendor_vht_for_24ghz(psoc, value);
  2123. }
  2124. /**
  2125. * ucfg_mlme_update_vht_cap() - Update vht capabilities
  2126. * @psoc: psoc context
  2127. * @value: data to be set
  2128. *
  2129. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2130. * ignore_peer_ht_opmode flag value
  2131. *
  2132. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2133. */
  2134. static inline QDF_STATUS
  2135. ucfg_mlme_update_vht_cap(struct wlan_objmgr_psoc *psoc,
  2136. struct wma_tgt_vht_cap *cfg)
  2137. {
  2138. return mlme_update_vht_cap(psoc, cfg);
  2139. }
  2140. /**
  2141. * ucfg_mlme_update_nss_vht_cap() -Update the number of spatial
  2142. * streams supported for vht
  2143. * @psoc: psoc context
  2144. * @value: data to be set
  2145. *
  2146. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2147. * ignore_peer_ht_opmode flag value
  2148. *
  2149. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2150. */
  2151. static inline QDF_STATUS
  2152. ucfg_mlme_update_nss_vht_cap(struct wlan_objmgr_psoc *psoc)
  2153. {
  2154. return mlme_update_nss_vht_cap(psoc);
  2155. }
  2156. /**
  2157. * ucfg_mlme_get_opr_rate_set() - Get operational rate set
  2158. * @psoc: pointer to psoc object
  2159. * @buf: buffer to get rates set
  2160. * @len: length of the buffer
  2161. * Return: QDF Status
  2162. */
  2163. QDF_STATUS
  2164. ucfg_mlme_get_opr_rate_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2165. qdf_size_t *len);
  2166. /**
  2167. * ucfg_mlme_get_ext_opr_rate_set() - Get operational rate set
  2168. * @psoc: pointer to psoc object
  2169. * @buf: buffer to get rates set
  2170. * @len: length of the buffer
  2171. * Return: QDF Status
  2172. */
  2173. QDF_STATUS
  2174. ucfg_mlme_get_ext_opr_rate_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2175. qdf_size_t *len);
  2176. /**
  2177. * ucfg_mlme_get_supported_mcs_set() - Get Supported MCS set
  2178. * @psoc: pointer to psoc object
  2179. * @buf: caller buffer to copy mcs set info
  2180. * @len: length of the buffer
  2181. * Return: QDF Status
  2182. */
  2183. QDF_STATUS
  2184. ucfg_mlme_get_supported_mcs_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2185. qdf_size_t *len);
  2186. /**
  2187. * ucfg_mlme_set_supported_mcs_set() - Get Supported MCS set
  2188. * @psoc: pointer to psoc object
  2189. * @buf: caller buffer having mcs set info
  2190. * @len: length of the buffer
  2191. * Return: QDF Status
  2192. */
  2193. QDF_STATUS
  2194. ucfg_mlme_set_supported_mcs_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2195. qdf_size_t len);
  2196. /**
  2197. * ucfg_mlme_get_current_mcs_set() - Get current MCS set
  2198. * @psoc: pointer to psoc object
  2199. * @buf: caller buffer to copy mcs set info
  2200. * @len: length of the buffer
  2201. * Return: QDF Status
  2202. */
  2203. QDF_STATUS
  2204. ucfg_mlme_get_current_mcs_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2205. qdf_size_t *len);
  2206. /**
  2207. * ucfg_mlme_get_wmm_dir_ac_vi() - Get TSPEC direction
  2208. * for VI
  2209. * @psoc: pointer to psoc object
  2210. * @value: Value that needs to be set from the caller
  2211. *
  2212. * Inline UCFG API to be used by HDD/OSIF callers
  2213. *
  2214. * Return: QDF Status
  2215. */
  2216. static inline QDF_STATUS
  2217. ucfg_mlme_get_wmm_dir_ac_vi(struct wlan_objmgr_psoc *psoc,
  2218. uint8_t *value)
  2219. {
  2220. return wlan_mlme_get_wmm_dir_ac_vi(psoc, value);
  2221. }
  2222. /**
  2223. * ucfg_mlme_get_wmm_nom_msdu_size_ac_vi() - Get normal
  2224. * MSDU size for VI
  2225. * @psoc: pointer to psoc object
  2226. * @value: Value that needs to be set from the caller
  2227. *
  2228. * Inline UCFG API to be used by HDD/OSIF callers
  2229. *
  2230. * Return: QDF Status
  2231. */
  2232. static inline QDF_STATUS
  2233. ucfg_mlme_get_wmm_nom_msdu_size_ac_vi(struct wlan_objmgr_psoc *psoc,
  2234. uint16_t *value)
  2235. {
  2236. return wlan_mlme_get_wmm_nom_msdu_size_ac_vi(psoc, value);
  2237. }
  2238. /**
  2239. * ucfg_mlme_get_wmm_mean_data_rate_ac_vi() - mean data
  2240. * rate for VI
  2241. * @psoc: pointer to psoc object
  2242. * @value: Value that needs to be set from the caller
  2243. *
  2244. * Inline UCFG API to be used by HDD/OSIF callers
  2245. *
  2246. * Return: QDF Status
  2247. */
  2248. static inline QDF_STATUS
  2249. ucfg_mlme_get_wmm_mean_data_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  2250. uint32_t *value)
  2251. {
  2252. return wlan_mlme_get_wmm_mean_data_rate_ac_vi(psoc, value);
  2253. }
  2254. /**
  2255. * ucfg_mlme_get_wmm_min_phy_rate_ac_vi() - min PHY
  2256. * rate for VI
  2257. * @psoc: pointer to psoc object
  2258. * @value: Value that needs to be set from the caller
  2259. *
  2260. * Inline UCFG API to be used by HDD/OSIF callers
  2261. *
  2262. * Return: QDF Status
  2263. */
  2264. static inline QDF_STATUS
  2265. ucfg_mlme_get_wmm_min_phy_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  2266. uint32_t *value)
  2267. {
  2268. return wlan_mlme_get_wmm_min_phy_rate_ac_vi(psoc, value);
  2269. }
  2270. /**
  2271. * ucfg_mlme_get_wmm_sba_ac_vi() - surplus bandwidth
  2272. * allowance for VI
  2273. * @psoc: pointer to psoc object
  2274. * @value: Value that needs to be set from the caller
  2275. *
  2276. * Inline UCFG API to be used by HDD/OSIF callers
  2277. *
  2278. * Return: QDF Status
  2279. */
  2280. static inline QDF_STATUS
  2281. ucfg_mlme_get_wmm_sba_ac_vi(struct wlan_objmgr_psoc *psoc, uint16_t *value)
  2282. {
  2283. return wlan_mlme_get_wmm_sba_ac_vi(psoc, value);
  2284. }
  2285. /**
  2286. * ucfg_mlme_get_wmm_uapsd_vi_srv_intv() - Get Uapsd service
  2287. * interval for video
  2288. * @psoc: pointer to psoc object
  2289. * @value: pointer to the value which will be filled for the caller
  2290. *
  2291. * Inline UCFG API to be used by HDD/OSIF callers
  2292. *
  2293. * Return: QDF Status
  2294. */
  2295. static inline QDF_STATUS
  2296. ucfg_mlme_get_wmm_uapsd_vi_srv_intv(struct wlan_objmgr_psoc *psoc,
  2297. uint32_t *value)
  2298. {
  2299. return wlan_mlme_get_wmm_uapsd_vi_srv_intv(psoc, value);
  2300. }
  2301. /**
  2302. * ucfg_mlme_get_wmm_uapsd_vi_sus_intv() - Get Uapsd suspension
  2303. * interval for video
  2304. * @psoc: pointer to psoc object
  2305. * @value: Value that needs to be set from the caller
  2306. *
  2307. * Inline UCFG API to be used by HDD/OSIF callers
  2308. *
  2309. * Return: QDF Status
  2310. */
  2311. static inline QDF_STATUS
  2312. ucfg_mlme_get_wmm_uapsd_vi_sus_intv(struct wlan_objmgr_psoc *psoc,
  2313. uint32_t *value)
  2314. {
  2315. return wlan_mlme_get_wmm_uapsd_vi_sus_intv(psoc, value);
  2316. }
  2317. /**
  2318. * ucfg_mlme_get_wmm_dir_ac_be() - Get TSPEC direction
  2319. * for BE
  2320. * @psoc: pointer to psoc object
  2321. * @value: Value that needs to be set from the caller
  2322. *
  2323. * Inline UCFG API to be used by HDD/OSIF callers
  2324. *
  2325. * Return: QDF Status
  2326. */
  2327. static inline QDF_STATUS
  2328. ucfg_mlme_get_wmm_dir_ac_be(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2329. {
  2330. return wlan_mlme_get_wmm_dir_ac_be(psoc, value);
  2331. }
  2332. /**
  2333. * ucfg_mlme_get_wmm_nom_msdu_size_ac_be() - Get normal
  2334. * MSDU size for BE
  2335. * @psoc: pointer to psoc object
  2336. * @value: Value that needs to be set from the caller
  2337. *
  2338. * Inline UCFG API to be used by HDD/OSIF callers
  2339. *
  2340. * Return: QDF Status
  2341. */
  2342. static inline QDF_STATUS
  2343. ucfg_mlme_get_wmm_nom_msdu_size_ac_be(struct wlan_objmgr_psoc *psoc,
  2344. uint16_t *value)
  2345. {
  2346. return wlan_mlme_get_wmm_nom_msdu_size_ac_be(psoc, value);
  2347. }
  2348. /**
  2349. * ucfg_mlme_get_wmm_mean_data_rate_ac_be() - mean data
  2350. * rate for BE
  2351. * @psoc: pointer to psoc object
  2352. * @value: Value that needs to be set from the caller
  2353. *
  2354. * Inline UCFG API to be used by HDD/OSIF callers
  2355. *
  2356. * Return: QDF Status
  2357. */
  2358. static inline QDF_STATUS
  2359. ucfg_mlme_get_wmm_mean_data_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  2360. uint32_t *value)
  2361. {
  2362. return wlan_mlme_get_wmm_mean_data_rate_ac_be(psoc, value);
  2363. }
  2364. /**
  2365. * ucfg_mlme_get_wmm_min_phy_rate_ac_be() - min PHY
  2366. * rate for BE
  2367. * @psoc: pointer to psoc object
  2368. * @value: Value that needs to be set from the caller
  2369. *
  2370. * Inline UCFG API to be used by HDD/OSIF callers
  2371. *
  2372. * Return: QDF Status
  2373. */
  2374. static inline QDF_STATUS
  2375. ucfg_mlme_get_wmm_min_phy_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  2376. uint32_t *value)
  2377. {
  2378. return wlan_mlme_get_wmm_min_phy_rate_ac_be(psoc, value);
  2379. }
  2380. /**
  2381. * ucfg_mlme_get_wmm_sba_ac_be() - surplus bandwidth
  2382. * allowance for BE
  2383. * @psoc: pointer to psoc object
  2384. * @value: Value that needs to be set from the caller
  2385. *
  2386. * Inline UCFG API to be used by HDD/OSIF callers
  2387. *
  2388. * Return: QDF Status
  2389. */
  2390. static inline QDF_STATUS
  2391. ucfg_mlme_get_wmm_sba_ac_be(struct wlan_objmgr_psoc *psoc, uint16_t *value)
  2392. {
  2393. return wlan_mlme_get_wmm_sba_ac_be(psoc, value);
  2394. }
  2395. /**
  2396. * ucfg_mlme_get_wmm_uapsd_be_srv_intv() - Get Uapsd service
  2397. * interval for BE
  2398. * @psoc: pointer to psoc object
  2399. * @value: pointer to the value which will be filled for the caller
  2400. *
  2401. * Inline UCFG API to be used by HDD/OSIF callers
  2402. *
  2403. * Return: QDF Status
  2404. */
  2405. static inline QDF_STATUS
  2406. ucfg_mlme_get_wmm_uapsd_be_srv_intv(struct wlan_objmgr_psoc *psoc,
  2407. uint32_t *value)
  2408. {
  2409. return wlan_mlme_get_wmm_uapsd_be_srv_intv(psoc, value);
  2410. }
  2411. /**
  2412. * ucfg_mlme_get_wmm_uapsd_be_sus_intv() - Get Uapsd suspension
  2413. * interval for BE
  2414. * @psoc: pointer to psoc object
  2415. * @value: Value that needs to be set from the caller
  2416. *
  2417. * Inline UCFG API to be used by HDD/OSIF callers
  2418. *
  2419. * Return: QDF Status
  2420. */
  2421. static inline QDF_STATUS
  2422. ucfg_mlme_get_wmm_uapsd_be_sus_intv(struct wlan_objmgr_psoc *psoc,
  2423. uint32_t *value)
  2424. {
  2425. return wlan_mlme_get_wmm_uapsd_be_sus_intv(psoc, value);
  2426. }
  2427. /**
  2428. * ucfg_mlme_get_wmm_dir_ac_bk() - Get TSPEC direction
  2429. * for BK
  2430. * @psoc: pointer to psoc object
  2431. * @value: Value that needs to be set from the caller
  2432. *
  2433. * Inline UCFG API to be used by HDD/OSIF callers
  2434. *
  2435. * Return: QDF Status
  2436. */
  2437. static inline QDF_STATUS
  2438. ucfg_mlme_get_wmm_dir_ac_bk(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2439. {
  2440. return wlan_mlme_get_wmm_dir_ac_bk(psoc, value);
  2441. }
  2442. /**
  2443. * ucfg_mlme_get_wmm_nom_msdu_size_ac_be() - Get normal
  2444. * MSDU size for BE
  2445. * @psoc: pointer to psoc object
  2446. * @value: Value that needs to be set from the caller
  2447. *
  2448. * Inline UCFG API to be used by HDD/OSIF callers
  2449. *
  2450. * Return: QDF Status
  2451. */
  2452. static inline QDF_STATUS
  2453. ucfg_mlme_get_wmm_nom_msdu_size_ac_bk(struct wlan_objmgr_psoc *psoc,
  2454. uint16_t *value)
  2455. {
  2456. return wlan_mlme_get_wmm_nom_msdu_size_ac_bk(psoc, value);
  2457. }
  2458. /**
  2459. * ucfg_mlme_get_wmm_mean_data_rate_ac_bk() - mean data
  2460. * rate for BK
  2461. * @psoc: pointer to psoc object
  2462. * @value: Value that needs to be set from the caller
  2463. *
  2464. * Inline UCFG API to be used by HDD/OSIF callers
  2465. *
  2466. * Return: QDF Status
  2467. */
  2468. static inline QDF_STATUS
  2469. ucfg_mlme_get_wmm_mean_data_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  2470. uint32_t *value)
  2471. {
  2472. return wlan_mlme_get_wmm_mean_data_rate_ac_bk(psoc, value);
  2473. }
  2474. /**
  2475. * ucfg_mlme_get_wmm_min_phy_rate_ac_bk() - min PHY
  2476. * rate for BE
  2477. * @psoc: pointer to psoc object
  2478. * @value: Value that needs to be set from the caller
  2479. *
  2480. * Inline UCFG API to be used by HDD/OSIF callers
  2481. *
  2482. * Return: QDF Status
  2483. */
  2484. static inline QDF_STATUS
  2485. ucfg_mlme_get_wmm_min_phy_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  2486. uint32_t *value)
  2487. {
  2488. return wlan_mlme_get_wmm_min_phy_rate_ac_bk(psoc, value);
  2489. }
  2490. /**
  2491. * ucfg_mlme_get_wmm_sba_ac_bk() - surplus bandwidth
  2492. * allowance for BE
  2493. * @psoc: pointer to psoc object
  2494. * @value: Value that needs to be set from the caller
  2495. *
  2496. * Inline UCFG API to be used by HDD/OSIF callers
  2497. *
  2498. * Return: QDF Status
  2499. */
  2500. static inline QDF_STATUS
  2501. ucfg_mlme_get_wmm_sba_ac_bk(struct wlan_objmgr_psoc *psoc, uint16_t *value)
  2502. {
  2503. return wlan_mlme_get_wmm_sba_ac_bk(psoc, value);
  2504. }
  2505. /**
  2506. * ucfg_mlme_get_wmm_uapsd_bk_srv_intv() - Get Uapsd service
  2507. * interval for BK
  2508. * @psoc: pointer to psoc object
  2509. * @value: pointer to the value which will be filled for the caller
  2510. *
  2511. * Inline UCFG API to be used by HDD/OSIF callers
  2512. *
  2513. * Return: QDF Status
  2514. */
  2515. static inline QDF_STATUS
  2516. ucfg_mlme_get_wmm_uapsd_bk_srv_intv(struct wlan_objmgr_psoc *psoc,
  2517. uint32_t *value)
  2518. {
  2519. return wlan_mlme_get_wmm_uapsd_bk_srv_intv(psoc, value);
  2520. }
  2521. /**
  2522. * ucfg_mlme_get_wmm_uapsd_bk_sus_intv() - Get Uapsd suspension
  2523. * interval for BK
  2524. * @psoc: pointer to psoc object
  2525. * @value: Value that needs to be set from the caller
  2526. *
  2527. * Inline UCFG API to be used by HDD/OSIF callers
  2528. *
  2529. * Return: QDF Status
  2530. */
  2531. static inline QDF_STATUS
  2532. ucfg_mlme_get_wmm_uapsd_bk_sus_intv(struct wlan_objmgr_psoc *psoc,
  2533. uint32_t *value)
  2534. {
  2535. return wlan_mlme_get_wmm_uapsd_bk_sus_intv(psoc, value);
  2536. }
  2537. /**
  2538. * ucfg_mlme_get_wmm_mode() - Enable WMM feature
  2539. * @psoc: pointer to psoc object
  2540. * @value: Value that needs to be set from the caller
  2541. *
  2542. * Inline UCFG API to be used by HDD/OSIF callers
  2543. *
  2544. * Return: QDF Status
  2545. */
  2546. static inline QDF_STATUS
  2547. ucfg_mlme_get_wmm_mode(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2548. {
  2549. return wlan_mlme_get_wmm_mode(psoc, value);
  2550. }
  2551. #ifdef WLAN_FEATURE_11AX
  2552. /**
  2553. * ucfg_mlme_update_tgt_he_cap() - Update tgt he cap in mlme component
  2554. *
  2555. * @psoc: pointer to psoc object
  2556. * @cfg: pointer to config params from target
  2557. *
  2558. * Inline UCFG API to be used by HDD/OSIF callers to update
  2559. * he caps in mlme.
  2560. *
  2561. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2562. */
  2563. static inline
  2564. QDF_STATUS ucfg_mlme_update_tgt_he_cap(struct wlan_objmgr_psoc *psoc,
  2565. struct wma_tgt_cfg *cfg)
  2566. {
  2567. return mlme_update_tgt_he_caps_in_cfg(psoc, cfg);
  2568. }
  2569. /**
  2570. * ucfg_mlme_cfg_get_he_ul_mumimo() - Get the HE Ul Mumio
  2571. * @psoc: pointer to psoc object
  2572. * @value: Value that needs to be set from the caller
  2573. *
  2574. * Return: QDF Status
  2575. */
  2576. static inline
  2577. QDF_STATUS ucfg_mlme_cfg_get_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  2578. uint32_t *value)
  2579. {
  2580. return wlan_mlme_cfg_get_he_ul_mumimo(psoc, value);
  2581. }
  2582. /**
  2583. * ucfg_mlme_cfg_set_he_ul_mumimo() - Set the HE Ul Mumio
  2584. * @psoc: pointer to psoc object
  2585. * @value: Value that needs to be set from the caller
  2586. *
  2587. * Return: QDF Status
  2588. */
  2589. static inline
  2590. QDF_STATUS ucfg_mlme_cfg_set_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  2591. uint32_t value)
  2592. {
  2593. return wlan_mlme_cfg_set_he_ul_mumimo(psoc, value);
  2594. }
  2595. /**
  2596. * ucfg_mlme_cfg_get_enable_ul_mimo() - Get the HE Ul mimo
  2597. * @psoc: pointer to psoc object
  2598. * @value: Value that needs to be set from the caller
  2599. *
  2600. * Return: QDF Status
  2601. */
  2602. static inline
  2603. QDF_STATUS ucfg_mlme_cfg_get_enable_ul_mimo(struct wlan_objmgr_psoc *psoc,
  2604. uint8_t *value)
  2605. {
  2606. return wlan_mlme_cfg_get_enable_ul_mimo(psoc, value);
  2607. }
  2608. /**
  2609. * ucfg_mlme_cfg_get_enable_ul_ofdm() - Get enable ul ofdm
  2610. * @psoc: pointer to psoc object
  2611. * @value: Value that needs to be set from the caller
  2612. *
  2613. * Return: QDF Status
  2614. */
  2615. static inline
  2616. QDF_STATUS ucfg_mlme_cfg_get_enable_ul_ofdm(struct wlan_objmgr_psoc *psoc,
  2617. uint8_t *value)
  2618. {
  2619. return wlan_mlme_cfg_get_enable_ul_ofdm(psoc, value);
  2620. }
  2621. #endif
  2622. /**
  2623. * ucfg_mlme_get_80211e_is_enabled() - Enable 802.11e feature
  2624. * @psoc: pointer to psoc object
  2625. * @value: Value that needs to be set from the caller
  2626. *
  2627. * Inline UCFG API to be used by HDD/OSIF callers
  2628. *
  2629. * Return: QDF Status
  2630. */
  2631. static inline QDF_STATUS
  2632. ucfg_mlme_get_80211e_is_enabled(struct wlan_objmgr_psoc *psoc, bool *value)
  2633. {
  2634. return wlan_mlme_get_80211e_is_enabled(psoc, value);
  2635. }
  2636. /**
  2637. * ucfg_mlme_get_wmm_uapsd_mask() - setup U-APSD mask for ACs
  2638. * @psoc: pointer to psoc object
  2639. * @value: Value that needs to be set from the caller
  2640. *
  2641. * Inline UCFG API to be used by HDD/OSIF callers
  2642. *
  2643. * Return: QDF Status
  2644. */
  2645. static inline QDF_STATUS
  2646. ucfg_mlme_get_wmm_uapsd_mask(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2647. {
  2648. return wlan_mlme_get_wmm_uapsd_mask(psoc, value);
  2649. }
  2650. /**
  2651. * ucfg_mlme_get_implicit_qos_is_enabled() - Enable implicit QOS
  2652. * @psoc: pointer to psoc object
  2653. * @value: Value that needs to be set from the caller
  2654. *
  2655. * Inline UCFG API to be used by HDD/OSIF callers
  2656. *
  2657. * Return: QDF Status
  2658. */
  2659. static inline QDF_STATUS
  2660. ucfg_mlme_get_implicit_qos_is_enabled(struct wlan_objmgr_psoc *psoc,
  2661. bool *value)
  2662. {
  2663. return wlan_mlme_get_implicit_qos_is_enabled(psoc, value);
  2664. }
  2665. #ifdef FEATURE_WLAN_ESE
  2666. /**
  2667. * ucfg_mlme_get_inactivity_interval() - Infra Inactivity Interval
  2668. * @psoc: pointer to psoc object
  2669. * @value: Value that needs to be get from the caller
  2670. *
  2671. * Inline UCFG API to be used by HDD/OSIF callers
  2672. *
  2673. * Return: None
  2674. */
  2675. static inline void
  2676. ucfg_mlme_get_inactivity_interval(struct wlan_objmgr_psoc *psoc,
  2677. uint32_t *value)
  2678. {
  2679. wlan_mlme_get_inactivity_interval(psoc, value);
  2680. }
  2681. /**
  2682. * ucfg_mlme_is_ese_enabled() - ese feature enable or not
  2683. * @psoc: pointer to psoc object
  2684. * @val: Pointer to the value which will be filled for the caller
  2685. *
  2686. * Return: QDF Status
  2687. */
  2688. QDF_STATUS
  2689. ucfg_mlme_is_ese_enabled(struct wlan_objmgr_psoc *psoc, bool *val);
  2690. #endif /* FEATURE_WLAN_ESE */
  2691. /**
  2692. * ucfg_mlme_get_is_ts_burst_size_enable() - Get TS burst size flag
  2693. * @psoc: pointer to psoc object
  2694. * @value: Value that needs to be get from the caller
  2695. *
  2696. * Inline UCFG API to be used by HDD/OSIF callers
  2697. *
  2698. * Return: None
  2699. */
  2700. static inline void
  2701. ucfg_mlme_get_is_ts_burst_size_enable(struct wlan_objmgr_psoc *psoc,
  2702. bool *value)
  2703. {
  2704. wlan_mlme_get_is_ts_burst_size_enable(psoc, value);
  2705. }
  2706. /**
  2707. * ucfg_mlme_get_ts_info_ack_policy() - Get TS ack policy
  2708. * @psoc: pointer to psoc object
  2709. * @value: Value that needs to be get from the caller
  2710. *
  2711. * Inline UCFG API to be used by HDD/OSIF callers
  2712. *
  2713. * Return: None
  2714. */
  2715. static inline void
  2716. ucfg_mlme_get_ts_info_ack_policy(struct wlan_objmgr_psoc *psoc,
  2717. enum mlme_ts_info_ack_policy *value)
  2718. {
  2719. wlan_mlme_get_ts_info_ack_policy(psoc, value);
  2720. }
  2721. /**
  2722. * ucfg_mlme_get_ts_acm_value_for_ac() - Get ACM value for AC
  2723. * @psoc: pointer to psoc object
  2724. * @value: Value that needs to be get from the caller
  2725. *
  2726. *
  2727. * Inline UCFG API to be used by HDD/OSIF callers
  2728. *
  2729. * Return: QDF Status
  2730. */
  2731. static inline QDF_STATUS
  2732. ucfg_mlme_get_ts_acm_value_for_ac(struct wlan_objmgr_psoc *psoc, bool *value)
  2733. {
  2734. return wlan_mlme_get_ts_acm_value_for_ac(psoc, value);
  2735. }
  2736. /*
  2737. * ucfg_mlme_is_sap_uapsd_enabled() - SAP UAPSD enabled status.
  2738. * @psoc: pointer to psoc object
  2739. * @value: sap uapsd enabled flag value requested from the caller
  2740. *
  2741. * Inline UCFG API to be used by HDD/OSIF callers
  2742. *
  2743. * Return: QDF Status
  2744. */
  2745. static inline QDF_STATUS
  2746. ucfg_mlme_is_sap_uapsd_enabled(struct wlan_objmgr_psoc *psoc, bool *value)
  2747. {
  2748. return wlan_mlme_is_sap_uapsd_enabled(psoc, value);
  2749. }
  2750. /*
  2751. * ucfg_mlme_set_sap_uapsd_flag() - SAP UAPSD enabled status.
  2752. * @psoc: pointer to psoc object
  2753. * @value: Value that needs to be set from the caller
  2754. *
  2755. * Inline UCFG API to be used by HDD/OSIF callers
  2756. *
  2757. * Return: QDF Status
  2758. */
  2759. static inline QDF_STATUS
  2760. ucfg_mlme_set_sap_uapsd_flag(struct wlan_objmgr_psoc *psoc, bool value)
  2761. {
  2762. return wlan_mlme_set_sap_uapsd_flag(psoc, value);
  2763. }
  2764. #endif /* _WLAN_MLME_UCFG_API_H_ */