wlan_mlme_ucfg_api.h 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108
  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_fine_time_meas_cap() - Get fine timing measurement capability
  737. * @psoc: pointer to psoc object
  738. * @fine_time_meas_cap: Pointer to the value which will be filled for the caller
  739. *
  740. * Return: QDF Status
  741. */
  742. QDF_STATUS
  743. ucfg_mlme_get_fine_time_meas_cap(struct wlan_objmgr_psoc *psoc,
  744. uint32_t *fine_time_meas_cap);
  745. /**
  746. * ucfg_mlme_set_fine_time_meas_cap() - Set fine timing measurement capability
  747. * @psoc: pointer to psoc object
  748. * @fine_time_meas_cap: Value to be set
  749. *
  750. * Return: QDF Status
  751. */
  752. QDF_STATUS
  753. ucfg_mlme_set_fine_time_meas_cap(struct wlan_objmgr_psoc *psoc,
  754. uint32_t fine_time_meas_cap);
  755. /**
  756. * ucfg_mlme_get_pmkid_modes() - Get PMKID modes
  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_pmkid_modes(struct wlan_objmgr_psoc *psoc,
  764. uint32_t *val);
  765. /**
  766. * ucfg_mlme_set_pmkid_modes() - Set PMKID modes
  767. * @psoc: pointer to psoc object
  768. * @val: Pointer to the value which will be filled for the caller
  769. *
  770. * Return: QDF Status
  771. */
  772. QDF_STATUS
  773. ucfg_mlme_set_pmkid_modes(struct wlan_objmgr_psoc *psoc,
  774. uint32_t val);
  775. /**
  776. * ucfg_mlme_get_twt_requestor() - Get twt requestor
  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_requestor(struct wlan_objmgr_psoc *psoc,
  784. bool *val);
  785. /**
  786. * ucfg_mlme_set_twt_requestor() - Set twt requestor
  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_requestor(struct wlan_objmgr_psoc *psoc,
  794. bool val);
  795. /**
  796. * ucfg_mlme_get_twt_responder() - Get twt responder
  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_twt_responder(struct wlan_objmgr_psoc *psoc,
  804. bool *val);
  805. /**
  806. * ucfg_mlme_set_twt_responder() - Set twt responder
  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_twt_responder(struct wlan_objmgr_psoc *psoc,
  814. bool val);
  815. /**
  816. * ucfg_mlme_get_bcast_twt() - Get bcast twt
  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_bcast_twt(struct wlan_objmgr_psoc *psoc,
  824. bool *val);
  825. /**
  826. * ucfg_mlme_set_bcast_twt() - Set bcast twt
  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_bcast_twt(struct wlan_objmgr_psoc *psoc,
  834. bool val);
  835. /**
  836. * ucfg_mlme_get_twt_congestion_timeout() - Get twt congestion timeout
  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_twt_congestion_timeout(struct wlan_objmgr_psoc *psoc,
  844. uint32_t *val);
  845. /**
  846. * ucfg_mlme_set_twt_congestion_timeout() - Set twt congestion timeout
  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_twt_congestion_timeout(struct wlan_objmgr_psoc *psoc,
  854. uint32_t val);
  855. /**
  856. * ucfg_mlme_get_enable_twt() - Get global twt config support
  857. * @psoc: pointer to psoc object
  858. * @val: Pointer to the value which will be filled for the caller
  859. *
  860. * Return: QDF Status
  861. */
  862. QDF_STATUS
  863. ucfg_mlme_get_enable_twt(struct wlan_objmgr_psoc *psoc,
  864. bool *val);
  865. /**
  866. * ucfg_mlme_set_enable_twt() - Set global twt config support
  867. * @psoc: pointer to psoc object
  868. * @val: value that needs to set to this config
  869. *
  870. * Return: QDF Status
  871. */
  872. QDF_STATUS
  873. ucfg_mlme_set_enable_twt(struct wlan_objmgr_psoc *psoc,
  874. bool val);
  875. /**
  876. * ucfg_mlme_get_dot11p_mode() - Get the setting about 802.11p mode
  877. * @psoc: pointer to psoc object
  878. * @out_mode: Pointer to the mode which will be filled for the caller
  879. *
  880. * Return: QDF Status
  881. */
  882. QDF_STATUS
  883. ucfg_mlme_get_dot11p_mode(struct wlan_objmgr_psoc *psoc,
  884. enum dot11p_mode *out_mode);
  885. /**
  886. * ucfg_mlme_get_go_cts2self_for_sta() - Stop NOA and start using cts2self
  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_go_cts2self_for_sta(struct wlan_objmgr_psoc *psoc,
  894. bool *val);
  895. /**
  896. * ucfg_mlme_get_force_rsne_override() - Force rsnie override from user
  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_force_rsne_override(struct wlan_objmgr_psoc *psoc,
  904. bool *val);
  905. /**
  906. * ucfg_mlme_get_qcn_ie_support() - QCN IE support 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_get_qcn_ie_support(struct wlan_objmgr_psoc *psoc,
  914. bool *val);
  915. /**
  916. * ucfg_mlme_get_tgt_gtx_usr_cfg() - Get the target gtx user config
  917. * @psoc: pointer to psoc object
  918. * @val: Pointer to the value which will be filled for the caller
  919. *
  920. * Return: QDF Status
  921. */
  922. QDF_STATUS
  923. ucfg_mlme_get_tgt_gtx_usr_cfg(struct wlan_objmgr_psoc *psoc,
  924. uint32_t *val);
  925. /**
  926. * ucfg_mlme_is_override_ht20_40_24g() - use channel bonding in 2.4 GHz or not
  927. * @psoc: pointer to psoc object
  928. * @val: Pointer to the value which will be filled for the caller
  929. *
  930. * Return: QDF Status
  931. */
  932. QDF_STATUS
  933. ucfg_mlme_is_override_ht20_40_24g(struct wlan_objmgr_psoc *psoc, bool *val);
  934. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  935. /**
  936. * ucfg_mlme_get_roaming_offload() - Get roaming offload setting
  937. * @psoc: pointer to psoc object
  938. * @val: Pointer to enable/disable roaming offload
  939. *
  940. * Return: QDF Status
  941. */
  942. QDF_STATUS
  943. ucfg_mlme_get_roaming_offload(struct wlan_objmgr_psoc *psoc,
  944. bool *val);
  945. /**
  946. * ucfg_mlme_set_roaming_offload() - Enable/disable roaming offload
  947. * @psoc: pointer to psoc object
  948. * @val: enable/disable roaming offload
  949. *
  950. * Return: QDF Status
  951. */
  952. QDF_STATUS
  953. ucfg_mlme_set_roaming_offload(struct wlan_objmgr_psoc *psoc,
  954. bool val);
  955. #endif
  956. /**
  957. * ucfg_mlme_get_first_scan_bucket_threshold() - Get first scan bucket thre
  958. * @psoc: pointer to psoc object
  959. * @val: first scan bucket threshold
  960. *
  961. * Return: QDF Status
  962. */
  963. QDF_STATUS
  964. ucfg_mlme_get_first_scan_bucket_threshold(struct wlan_objmgr_psoc *psoc,
  965. uint8_t *val);
  966. /**
  967. * ucfg_mlme_is_mawc_enabled() - MAWC enabled or not
  968. * @psoc: pointer to psoc object
  969. * @val: Pointer to the value which will be filled for the caller
  970. *
  971. * Return: QDF Status
  972. */
  973. QDF_STATUS
  974. ucfg_mlme_is_mawc_enabled(struct wlan_objmgr_psoc *psoc, bool *val);
  975. /**
  976. * ucfg_mlme_set_mawc_enabled() - Set MAWC enable or disable
  977. * @psoc: pointer to psoc object
  978. * @val: enable or disable MAWC
  979. *
  980. * Return: QDF Status
  981. */
  982. QDF_STATUS
  983. ucfg_mlme_set_mawc_enabled(struct wlan_objmgr_psoc *psoc, bool val);
  984. /**
  985. * ucfg_mlme_is_fast_transition_enabled() - Fast transition 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_fast_transition_enabled(struct wlan_objmgr_psoc *psoc,
  993. bool *val);
  994. /**
  995. * ucfg_mlme_set_fast_transition_enabled() - Set fast transition enable
  996. * @psoc: pointer to psoc object
  997. * @val: Fast transition enable or disable
  998. *
  999. * Return: QDF Status
  1000. */
  1001. QDF_STATUS
  1002. ucfg_mlme_set_fast_transition_enabled(struct wlan_objmgr_psoc *psoc,
  1003. bool val);
  1004. /**
  1005. * ucfg_mlme_is_roam_scan_offload_enabled() - Roam scan offload enable or not
  1006. * @psoc: pointer to psoc object
  1007. * @val: Pointer to the value which will be filled for the caller
  1008. *
  1009. * Return: QDF Status
  1010. */
  1011. QDF_STATUS
  1012. ucfg_mlme_is_roam_scan_offload_enabled(struct wlan_objmgr_psoc *psoc,
  1013. bool *val);
  1014. /**
  1015. * ucfg_mlme_set_roam_scan_offload_enabled() - Set roam scan offload enable
  1016. * @psoc: pointer to psoc object
  1017. * @val: Roam scan offload enable or disable
  1018. *
  1019. * Return: QDF Status
  1020. */
  1021. QDF_STATUS
  1022. ucfg_mlme_set_roam_scan_offload_enabled(struct wlan_objmgr_psoc *psoc,
  1023. bool val);
  1024. /**
  1025. * ucfg_mlme_get_neighbor_scan_max_chan_time() - Get neighbor scan max
  1026. * channel time
  1027. * @psoc: pointer to psoc object
  1028. * @val: Pointer to the value which will be filled for the caller
  1029. *
  1030. * Return: QDF Status
  1031. */
  1032. QDF_STATUS
  1033. ucfg_mlme_get_neighbor_scan_max_chan_time(struct wlan_objmgr_psoc *psoc,
  1034. uint16_t *val);
  1035. /**
  1036. * ucfg_mlme_get_neighbor_scan_min_chan_time() - Get neighbor scan min
  1037. * channel time
  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_neighbor_scan_min_chan_time(struct wlan_objmgr_psoc *psoc,
  1045. uint16_t *val);
  1046. /**
  1047. * ucfg_mlme_get_delay_before_vdev_stop() - Get the delay before vdev stop
  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_delay_before_vdev_stop(struct wlan_objmgr_psoc *psoc,
  1055. uint8_t *val);
  1056. /**
  1057. * ucfg_mlme_get_roam_bmiss_final_bcnt() - Get roam bmiss first count
  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_get_roam_bmiss_final_bcnt(struct wlan_objmgr_psoc *psoc,
  1065. uint8_t *val);
  1066. /**
  1067. * ucfg_mlme_get_roam_bmiss_first_bcnt() - Get roam bmiss final count
  1068. * @psoc: pointer to psoc object
  1069. * @val: Pointer to the value which will be filled for the caller
  1070. *
  1071. * Return: QDF Status
  1072. */
  1073. QDF_STATUS
  1074. ucfg_mlme_get_roam_bmiss_first_bcnt(struct wlan_objmgr_psoc *psoc,
  1075. uint8_t *val);
  1076. /**
  1077. * ucfg_mlme_is_lfr_enabled() - LFR enable or not
  1078. * @psoc: pointer to psoc object
  1079. * @val: Pointer to the value which will be filled for the caller
  1080. *
  1081. * Return: QDF Status
  1082. */
  1083. QDF_STATUS
  1084. ucfg_mlme_is_lfr_enabled(struct wlan_objmgr_psoc *psoc, bool *val);
  1085. /**
  1086. * ucfg_mlme_set_lfr_enabled() - Enable or disable LFR
  1087. * @psoc: pointer to psoc object
  1088. * @val: Enable or disable LFR
  1089. *
  1090. * Return: QDF Status
  1091. */
  1092. QDF_STATUS
  1093. ucfg_mlme_set_lfr_enabled(struct wlan_objmgr_psoc *psoc, bool val);
  1094. /**
  1095. * ucfg_mlme_is_roam_prefer_5ghz() - prefer 5ghz or not
  1096. * @psoc: pointer to psoc object
  1097. * @val: Pointer to the value which will be filled for the caller
  1098. *
  1099. * Return: QDF Status
  1100. */
  1101. QDF_STATUS
  1102. ucfg_mlme_is_roam_prefer_5ghz(struct wlan_objmgr_psoc *psoc, bool *val);
  1103. /**
  1104. * ucfg_mlme_set_roam_intra_band() - Set roam intra modes
  1105. * @psoc: pointer to psoc object
  1106. * @val: roam intra modes or not
  1107. *
  1108. * Return: QDF Status
  1109. */
  1110. QDF_STATUS
  1111. ucfg_mlme_set_roam_intra_band(struct wlan_objmgr_psoc *psoc, bool val);
  1112. /**
  1113. * ucfg_mlme_get_home_away_time() - Get home away time
  1114. * @psoc: pointer to psoc object
  1115. * @val: Pointer to the value which will be filled for the caller
  1116. *
  1117. * Return: QDF Status
  1118. */
  1119. QDF_STATUS
  1120. ucfg_mlme_get_home_away_time(struct wlan_objmgr_psoc *psoc, uint16_t *val);
  1121. /**
  1122. * ucfg_mlme_set_fast_roam_in_concurrency_enabled() - Enable fast roam in
  1123. * concurrency
  1124. * @psoc: pointer to psoc object
  1125. * @val: Enable or disable fast roam in concurrency
  1126. *
  1127. * Return: QDF Status
  1128. */
  1129. QDF_STATUS
  1130. ucfg_mlme_set_fast_roam_in_concurrency_enabled(struct wlan_objmgr_psoc *psoc,
  1131. bool val);
  1132. /**
  1133. * ucfg_mlme_get_wmi_wq_watchdog_timeout() - Get timeout for wmi watchdog bite
  1134. * @psoc: pointer to psoc object
  1135. * @wmi_wq_watchdog_timeout: buffer to hold value
  1136. *
  1137. * Return: QDF Status
  1138. */
  1139. QDF_STATUS
  1140. ucfg_mlme_get_wmi_wq_watchdog_timeout(struct wlan_objmgr_psoc *psoc,
  1141. uint32_t *wmi_wq_watchdog_timeout);
  1142. /**
  1143. * ucfg_mlme_set_wmi_wq_watchdog_timeout() - Set timeout for wmi watchdog bite
  1144. * @psoc: pointer to psoc object
  1145. * @wmi_wq_watchdog_timeout: value to be set
  1146. *
  1147. * Return: QDF Status
  1148. */
  1149. QDF_STATUS
  1150. ucfg_mlme_set_wmi_wq_watchdog_timeout(struct wlan_objmgr_psoc *psoc,
  1151. uint32_t wmi_wq_watchdog_timeout);
  1152. /**
  1153. * ucfg_mlme_get_ps_data_inactivity_timeout() - Get data inactivity timeout
  1154. * @psoc: pointer to psoc object
  1155. * @inactivity_timeout: buffer to hold value
  1156. *
  1157. * Return: QDF Status
  1158. */
  1159. QDF_STATUS
  1160. ucfg_mlme_get_ps_data_inactivity_timeout(struct wlan_objmgr_psoc *psoc,
  1161. uint32_t *inactivity_timeout);
  1162. /**
  1163. * ucfg_mlme_set_ps_data_inactivity_timeout() - Set data inactivity timeout
  1164. * @psoc: pointer to psoc object
  1165. * @inactivity_timeout: value to be set
  1166. *
  1167. * Return: QDF Status
  1168. */
  1169. QDF_STATUS
  1170. ucfg_mlme_set_ps_data_inactivity_timeout(struct wlan_objmgr_psoc *psoc,
  1171. uint32_t inactivity_timeout);
  1172. /**
  1173. * ucfg_mlme_set_sap_listen_interval() - Set the Sap listen interval
  1174. * @psoc: pointer to psoc object
  1175. * @value: Value that needs to be set from the caller
  1176. *
  1177. * Inline UCFG API to be used by HDD/OSIF callers
  1178. *
  1179. * Return: QDF Status
  1180. */
  1181. static inline
  1182. QDF_STATUS ucfg_mlme_set_sap_listen_interval(struct wlan_objmgr_psoc *psoc,
  1183. int value)
  1184. {
  1185. return wlan_mlme_set_sap_listen_interval(psoc, value);
  1186. }
  1187. /**
  1188. * ucfg_mlme_set_assoc_sta_limit() - Set the assoc sta limit
  1189. * @psoc: pointer to psoc object
  1190. * @value: Value that needs to be set from the caller
  1191. *
  1192. * Inline UCFG API to be used by HDD/OSIF callers
  1193. *
  1194. * Return: QDF Status
  1195. */
  1196. static inline
  1197. QDF_STATUS ucfg_mlme_set_assoc_sta_limit(struct wlan_objmgr_psoc *psoc,
  1198. int value)
  1199. {
  1200. return wlan_mlme_set_assoc_sta_limit(psoc, value);
  1201. }
  1202. /**
  1203. * ucfg_mlme_set_rmc_action_period_freq() - Set the rmc action period frequency
  1204. * @psoc: pointer to psoc object
  1205. * @value: Value that needs to be set from the caller
  1206. *
  1207. * Inline UCFG API to be used by HDD/OSIF callers
  1208. *
  1209. * Return: QDF Status
  1210. */
  1211. static inline
  1212. QDF_STATUS ucfg_mlme_set_rmc_action_period_freq(struct wlan_objmgr_psoc *psoc,
  1213. int value)
  1214. {
  1215. return wlan_mlme_set_rmc_action_period_freq(psoc, value);
  1216. }
  1217. /**
  1218. * ucfg_mlme_get_sap_get_peer_info() - get the sap get peer info
  1219. * @psoc: pointer to psoc object
  1220. * @value: Value that needs to be set from the caller
  1221. *
  1222. * Inline UCFG API to be used by HDD/OSIF callers
  1223. *
  1224. * Return: QDF Status
  1225. */
  1226. static inline
  1227. QDF_STATUS ucfg_mlme_get_sap_get_peer_info(struct wlan_objmgr_psoc *psoc,
  1228. bool *value)
  1229. {
  1230. return wlan_mlme_get_sap_get_peer_info(psoc, value);
  1231. }
  1232. /**
  1233. * ucfg_mlme_get_sap_allow_all_channels() - get the sap allow all channels
  1234. * @psoc: pointer to psoc object
  1235. * @value: Value that needs to be set from the caller
  1236. *
  1237. * Inline UCFG API to be used by HDD/OSIF callers
  1238. *
  1239. * Return: QDF Status
  1240. */
  1241. static inline
  1242. QDF_STATUS ucfg_mlme_get_sap_allow_all_channels(struct wlan_objmgr_psoc *psoc,
  1243. bool *value)
  1244. {
  1245. return wlan_mlme_get_sap_allow_all_channels(psoc, value);
  1246. }
  1247. /**
  1248. * ucfg_mlme_get_sap_max_peers() - get the sap max peers
  1249. * @psoc: pointer to psoc object
  1250. * @value: Value that needs to be set from the caller
  1251. *
  1252. * Inline UCFG API to be used by HDD/OSIF callers
  1253. *
  1254. * Return: QDF Status
  1255. */
  1256. static inline
  1257. QDF_STATUS ucfg_mlme_get_sap_max_peers(struct wlan_objmgr_psoc *psoc,
  1258. int *value)
  1259. {
  1260. return wlan_mlme_get_sap_max_peers(psoc, value);
  1261. }
  1262. /**
  1263. * ucfg_mlme_set_sap_max_peers() - Set the sap max peers
  1264. * @psoc: pointer to psoc object
  1265. * @value: Value that needs to be set from the caller
  1266. *
  1267. * Inline UCFG API to be used by HDD/OSIF callers
  1268. *
  1269. * Return: QDF Status
  1270. */
  1271. static inline
  1272. QDF_STATUS ucfg_mlme_set_sap_max_peers(struct wlan_objmgr_psoc *psoc, int value)
  1273. {
  1274. return wlan_mlme_set_sap_max_peers(psoc, value);
  1275. }
  1276. /**
  1277. * ucfg_mlme_get_sap_max_offload_peers() - get the sap max offload peers
  1278. * @psoc: pointer to psoc object
  1279. * @value: Value that needs to be set from the caller
  1280. *
  1281. * Inline UCFG API to be used by HDD/OSIF callers
  1282. *
  1283. * Return: QDF Status
  1284. */
  1285. static inline
  1286. QDF_STATUS ucfg_mlme_get_sap_max_offload_peers(struct wlan_objmgr_psoc *psoc,
  1287. int *value)
  1288. {
  1289. return wlan_mlme_get_sap_max_offload_peers(psoc, value);
  1290. }
  1291. /**
  1292. * ucfg_mlme_get_sap_max_offload_reorder_buffs() - get the sap max offload
  1293. * reorder buffs
  1294. * @psoc: pointer to psoc object
  1295. * @value: Value that needs to be set from the caller
  1296. *
  1297. * Inline UCFG API to be used by HDD/OSIF callers
  1298. *
  1299. * Return: QDF Status
  1300. */
  1301. static inline
  1302. QDF_STATUS ucfg_mlme_get_sap_max_offload_reorder_buffs(struct wlan_objmgr_psoc
  1303. *psoc, int *value)
  1304. {
  1305. return wlan_mlme_get_sap_max_offload_reorder_buffs(psoc, value);
  1306. }
  1307. /**
  1308. * ucfg_mlme_get_sap_chn_switch_bcn_count() - get the sap channel
  1309. * switch beacon count
  1310. * @psoc: pointer to psoc object
  1311. * @value: Value that needs to be set from the caller
  1312. *
  1313. * Inline UCFG API to be used by HDD/OSIF callers
  1314. *
  1315. * Return: QDF Status
  1316. */
  1317. static inline
  1318. QDF_STATUS ucfg_mlme_get_sap_chn_switch_bcn_count(struct wlan_objmgr_psoc *psoc,
  1319. int *value)
  1320. {
  1321. return wlan_mlme_get_sap_chn_switch_bcn_count(psoc, value);
  1322. }
  1323. /**
  1324. * ucfg_mlme_get_sap_channel_switch_mode() - get the sap channel switch mode
  1325. * @psoc: pointer to psoc object
  1326. * @value: Value that needs to be set from the caller
  1327. *
  1328. * Inline UCFG API to be used by HDD/OSIF callers
  1329. *
  1330. * Return: QDF Status
  1331. */
  1332. static inline
  1333. QDF_STATUS ucfg_mlme_get_sap_channel_switch_mode(struct wlan_objmgr_psoc *psoc,
  1334. bool *value)
  1335. {
  1336. return wlan_mlme_get_sap_chn_switch_mode(psoc, value);
  1337. }
  1338. /**
  1339. * ucfg_mlme_get_sap_internal_restart() - get sap internal restart value
  1340. * @psoc: pointer to psoc object
  1341. * @value: Value that needs to be set from the caller
  1342. *
  1343. * Inline UCFG API to be used by HDD/OSIF callers
  1344. *
  1345. * Return: QDF Status
  1346. */
  1347. static inline
  1348. QDF_STATUS ucfg_mlme_get_sap_internal_restart(struct wlan_objmgr_psoc *psoc,
  1349. bool *value)
  1350. {
  1351. return wlan_mlme_get_sap_internal_restart(psoc, value);
  1352. }
  1353. /**
  1354. * ucfg_mlme_get_sap_max_modulated_dtim() - get sap max modulated dtim
  1355. * @psoc: pointer to psoc object
  1356. * @value: Value that needs to be set from the caller
  1357. *
  1358. * Inline UCFG API to be used by HDD/OSIF callers
  1359. *
  1360. * Return: QDF Status
  1361. */
  1362. static inline
  1363. QDF_STATUS ucfg_mlme_get_sap_max_modulated_dtim(struct wlan_objmgr_psoc *psoc,
  1364. uint8_t *value)
  1365. {
  1366. return wlan_mlme_get_sap_max_modulated_dtim(psoc, value);
  1367. }
  1368. /**
  1369. * ucfg_mlme_get_pref_chan_location() - get sap pref chan location
  1370. * @psoc: pointer to psoc object
  1371. * @value: Value that needs to be set from the caller
  1372. *
  1373. * Inline UCFG API to be used by HDD/OSIF callers
  1374. *
  1375. * Return: QDF Status
  1376. */
  1377. static inline
  1378. QDF_STATUS ucfg_mlme_get_pref_chan_location(struct wlan_objmgr_psoc *psoc,
  1379. uint8_t *value)
  1380. {
  1381. return wlan_mlme_get_sap_chan_pref_location(psoc, value);
  1382. }
  1383. /**
  1384. * ucfg_mlme_get_sap_country_priority() - get sap country code priority
  1385. * @psoc: pointer to psoc object
  1386. * @value: Value that needs to be set from the caller
  1387. *
  1388. * Inline UCFG API to be used by HDD/OSIF callers
  1389. *
  1390. * Return: QDF Status
  1391. */
  1392. static inline
  1393. QDF_STATUS ucfg_mlme_get_sap_country_priority(struct wlan_objmgr_psoc *psoc,
  1394. bool *value)
  1395. {
  1396. return wlan_mlme_get_sap_country_priority(psoc, value);
  1397. }
  1398. /**
  1399. * ucfg_mlme_get_sap_reduces_beacon_interval() - get the sap reduces beacon
  1400. * interval
  1401. * @psoc: pointer to psoc object
  1402. * @value: Value that needs to be set from the caller
  1403. *
  1404. * Inline UCFG API to be used by HDD/OSIF callers
  1405. *
  1406. * Return: QDF Status
  1407. */
  1408. static inline
  1409. QDF_STATUS ucfg_mlme_get_sap_reduces_beacon_interval(struct wlan_objmgr_psoc
  1410. *psoc, int *value)
  1411. {
  1412. return wlan_mlme_get_sap_reduced_beacon_interval(psoc, value);
  1413. }
  1414. /**
  1415. * ucfg_mlme_get_sap_chan_switch_rate_enabled() - get the sap channel
  1416. * switch rate enabled.
  1417. * @psoc: pointer to psoc object
  1418. * @value: Value that needs to be set from the caller
  1419. *
  1420. * Inline UCFG API to be used by HDD/OSIF callers
  1421. *
  1422. * Return: QDF Status
  1423. */
  1424. static inline
  1425. QDF_STATUS ucfg_mlme_get_sap_chan_switch_rate_enabled(struct wlan_objmgr_psoc
  1426. *psoc, bool *value)
  1427. {
  1428. return wlan_mlme_get_sap_chan_switch_rate_enabled(psoc, value);
  1429. }
  1430. /**
  1431. * ucfg_mlme_get_sap_force_11n_for_11ac() - get the sap 11n for 11ac
  1432. *
  1433. * @psoc: pointer to psoc object
  1434. * @value: Value that needs to be set from the caller
  1435. *
  1436. * Inline UCFG API to be used by HDD/OSIF callers
  1437. *
  1438. * Return: QDF Status
  1439. */
  1440. static inline
  1441. QDF_STATUS ucfg_mlme_get_sap_force_11n_for_11ac(struct wlan_objmgr_psoc
  1442. *psoc, bool *value)
  1443. {
  1444. return wlan_mlme_get_sap_force_11n_for_11ac(psoc, value);
  1445. }
  1446. /**
  1447. * ucfg_mlme_get_go_force_11n_for_11ac() - get the GO 11n for 11ac
  1448. *
  1449. * @psoc: pointer to psoc object
  1450. * @value: Value that needs to be set from the caller
  1451. *
  1452. * Inline UCFG API to be used by HDD/OSIF callers
  1453. *
  1454. * Return: QDF Status
  1455. */
  1456. static inline
  1457. QDF_STATUS ucfg_mlme_get_go_force_11n_for_11ac(struct wlan_objmgr_psoc
  1458. *psoc, bool *value)
  1459. {
  1460. return wlan_mlme_get_go_force_11n_for_11ac(psoc, value);
  1461. }
  1462. /**
  1463. * ucfg_mlme_get_oce_sta_enabled_info() - Get OCE feature enable/disable
  1464. * info for STA
  1465. *
  1466. * @psoc: pointer to psoc object
  1467. * @value: pointer to the value which will be filled for the caller
  1468. *
  1469. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1470. * OCE STA feature enable value
  1471. *
  1472. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1473. */
  1474. static inline
  1475. QDF_STATUS ucfg_mlme_get_oce_sta_enabled_info(struct wlan_objmgr_psoc *psoc,
  1476. bool *value)
  1477. {
  1478. return wlan_mlme_get_oce_sta_enabled_info(psoc, value);
  1479. }
  1480. /**
  1481. * ucfg_mlme_get_oce_sap_enabled_info() - Get OCE feature enable/disable
  1482. * info for SAP
  1483. *
  1484. * @psoc: pointer to psoc object
  1485. * @value: pointer to the value which will be filled for the caller
  1486. *
  1487. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1488. * OCE SAP feature enable value
  1489. *
  1490. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1491. */
  1492. static inline
  1493. QDF_STATUS ucfg_mlme_get_oce_sap_enabled_info(struct wlan_objmgr_psoc *psoc,
  1494. bool *value)
  1495. {
  1496. return wlan_mlme_get_oce_sap_enabled_info(psoc, value);
  1497. }
  1498. /**
  1499. * ucfg_mlme_get_ap_protection_mode() - Get ap protection mode info
  1500. * @psoc: pointer to psoc object
  1501. * @value: pointer to the value which will be filled for the caller
  1502. *
  1503. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1504. * ap protection mode value
  1505. *
  1506. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1507. */
  1508. static inline
  1509. QDF_STATUS ucfg_mlme_get_ap_protection_mode(struct wlan_objmgr_psoc *psoc,
  1510. uint16_t *value)
  1511. {
  1512. return wlan_mlme_get_ap_protection_mode(psoc, value);
  1513. }
  1514. /**
  1515. * ucfg_mlme_is_ap_obss_prot_enabled() - Get ap obss protection enable/disable
  1516. * @psoc: pointer to psoc object
  1517. * @value: pointer to the value which will be filled for the caller
  1518. *
  1519. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1520. * obss protection enable value
  1521. *
  1522. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1523. */
  1524. static inline
  1525. QDF_STATUS ucfg_mlme_is_ap_obss_prot_enabled(struct wlan_objmgr_psoc *psoc,
  1526. bool *value)
  1527. {
  1528. return wlan_mlme_is_ap_obss_prot_enabled(psoc, value);
  1529. }
  1530. /**
  1531. * ucfg_mlme_get_rts_threshold() - Get the rts threshold config
  1532. * @psoc: pointer to psoc object
  1533. * @value: pointer to the value which will be filled for the caller
  1534. *
  1535. * Inline UCFG API to be used by HDD/OSIF callers
  1536. *
  1537. * Return: QDF Status
  1538. */
  1539. static inline
  1540. QDF_STATUS ucfg_mlme_get_rts_threshold(struct wlan_objmgr_psoc *psoc,
  1541. uint32_t *value)
  1542. {
  1543. return wlan_mlme_get_rts_threshold(psoc, value);
  1544. }
  1545. /**
  1546. * ucfg_mlme_set_rts_threshold() - Set the rts threshold config
  1547. * @psoc: pointer to psoc object
  1548. * @value: pointer to the value which will be filled for the caller
  1549. *
  1550. * Inline UCFG API to be used by HDD/OSIF callers
  1551. *
  1552. * Return: QDF Status
  1553. */
  1554. static inline
  1555. QDF_STATUS ucfg_mlme_set_rts_threshold(struct wlan_objmgr_psoc *psoc,
  1556. uint32_t value)
  1557. {
  1558. return wlan_mlme_set_rts_threshold(psoc, value);
  1559. }
  1560. /**
  1561. * ucfg_mlme_get_frag_threshold() - Get the fragmentation threshold
  1562. * config
  1563. * @psoc: pointer to psoc object
  1564. * @value: Value that needs to be set from the caller
  1565. *
  1566. * Inline UCFG API to be used by HDD/OSIF callers
  1567. *
  1568. * Return: QDF Status
  1569. */
  1570. static inline
  1571. QDF_STATUS ucfg_mlme_get_frag_threshold(struct wlan_objmgr_psoc *psoc,
  1572. uint32_t *value)
  1573. {
  1574. return wlan_mlme_get_frag_threshold(psoc, value);
  1575. }
  1576. /**
  1577. * ucfg_mlme_set_frag_threshold() - set the frag threshold config
  1578. * @psoc: pointer to psoc object
  1579. * @value: pointer to the value which will be filled for the caller
  1580. *
  1581. * Inline UCFG API to be used by HDD/OSIF callers
  1582. *
  1583. * Return: QDF Status
  1584. */
  1585. static inline
  1586. QDF_STATUS ucfg_mlme_set_frag_threshold(struct wlan_objmgr_psoc *psoc,
  1587. uint32_t value)
  1588. {
  1589. return wlan_mlme_set_frag_threshold(psoc, value);
  1590. }
  1591. /**
  1592. * ucfg_mlme_get_fils_enabled_info() - Get fils enable/disable info
  1593. *
  1594. * @psoc: pointer to psoc object
  1595. * @value: pointer to the value which will be filled for the caller
  1596. *
  1597. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1598. * fils enable value
  1599. *
  1600. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1601. */
  1602. static inline
  1603. QDF_STATUS ucfg_mlme_get_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  1604. bool *value)
  1605. {
  1606. return wlan_mlme_get_fils_enabled_info(psoc, value);
  1607. }
  1608. /**
  1609. * ucfg_mlme_set_fils_enabled_info() - Set fils enable info
  1610. *
  1611. * @psoc: pointer to psoc object
  1612. * @value: value that needs to be set from the caller
  1613. *
  1614. * Inline UCFG API to be used by HDD/OSIF callers to set the
  1615. * fils enable value
  1616. *
  1617. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1618. */
  1619. static inline
  1620. QDF_STATUS ucfg_mlme_set_fils_enabled_info(struct wlan_objmgr_psoc *psoc,
  1621. bool value)
  1622. {
  1623. return wlan_mlme_set_fils_enabled_info(psoc, value);
  1624. }
  1625. /**
  1626. * ucfg_mlme_set_enable_bcast_probe_rsp() - Set enable bcast probe resp info
  1627. * @psoc: pointer to psoc object
  1628. * @value: value that needs to be set from the caller
  1629. *
  1630. * Inline UCFG API to be used by HDD/OSIF callers to set the
  1631. * enable bcast probe resp info
  1632. *
  1633. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1634. */
  1635. static inline
  1636. QDF_STATUS ucfg_mlme_set_enable_bcast_probe_rsp(struct wlan_objmgr_psoc *psoc,
  1637. bool value)
  1638. {
  1639. return wlan_mlme_set_enable_bcast_probe_rsp(psoc, value);
  1640. }
  1641. /**
  1642. * ucfg_mlme_set_vht_ch_width() - set the vht supported channel width cfg
  1643. * @psoc: psoc context
  1644. * @value: data to be set
  1645. *
  1646. * Inline UCFG API to be used by HDD/OSIF callers
  1647. *
  1648. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1649. */
  1650. static inline
  1651. QDF_STATUS ucfg_mlme_set_vht_ch_width(struct wlan_objmgr_psoc *psoc,
  1652. uint8_t value)
  1653. {
  1654. return wlan_mlme_cfg_set_vht_chan_width(psoc, value);
  1655. }
  1656. /**
  1657. * ucfg_mlme_cfg_get_vht_chan_width() - gets vht supported channel width into
  1658. * cfg item
  1659. * @psoc: psoc context
  1660. * @value: data to be set
  1661. *
  1662. * Inline UCFG API to be used by HDD/OSIF callers
  1663. *
  1664. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1665. */
  1666. static inline
  1667. QDF_STATUS ucfg_mlme_cfg_get_vht_chan_width(struct wlan_objmgr_psoc *psoc,
  1668. uint8_t *value)
  1669. {
  1670. return wlan_mlme_cfg_get_vht_chan_width(psoc, value);
  1671. }
  1672. /**
  1673. * ucfg_mlme_cfg_set_vht_ldpc_coding_cap() - sets vht ldpc coding cap into
  1674. * cfg item
  1675. * @psoc: psoc context
  1676. * @value: data to be set
  1677. *
  1678. * Inline UCFG API to be used by HDD/OSIF callers
  1679. *
  1680. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1681. */
  1682. static inline QDF_STATUS
  1683. ucfg_mlme_cfg_set_vht_ldpc_coding_cap(struct wlan_objmgr_psoc *psoc,
  1684. bool value)
  1685. {
  1686. return wlan_mlme_cfg_set_vht_ldpc_coding_cap(psoc, value);
  1687. }
  1688. /**
  1689. * ucfg_mlme_cfg_get_short_gi_160_mhz() - Get SHORT GI 160MHZ from cfg item
  1690. * @psoc: psoc context
  1691. * @value: data to be set
  1692. *
  1693. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1694. * ignore_peer_ht_opmode flag value
  1695. *
  1696. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1697. */
  1698. static inline QDF_STATUS
  1699. ucfg_mlme_cfg_get_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc,
  1700. bool *value)
  1701. {
  1702. return wlan_mlme_cfg_get_short_gi_160_mhz(psoc, value);
  1703. }
  1704. /**
  1705. * ucfg_mlme_cfg_set_short_gi_160_mhz() - sets basic set SHORT GI 160MHZ into
  1706. * cfg item
  1707. * @psoc: psoc context
  1708. * @value: data to be set
  1709. *
  1710. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1711. * ignore_peer_ht_opmode flag value
  1712. *
  1713. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1714. */
  1715. static inline QDF_STATUS
  1716. ucfg_mlme_cfg_set_short_gi_160_mhz(struct wlan_objmgr_psoc *psoc,
  1717. bool value)
  1718. {
  1719. return wlan_mlme_cfg_set_short_gi_160_mhz(psoc, value);
  1720. }
  1721. /**
  1722. * ucfg_mlme_cfg_get_vht_tx_stbc() - gets vht tx stbc from
  1723. * cfg item
  1724. * @psoc: psoc context
  1725. * @value: pointer to get required data
  1726. *
  1727. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1728. * ignore_peer_ht_opmode flag value
  1729. *
  1730. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1731. */
  1732. static inline QDF_STATUS
  1733. ucfg_mlme_cfg_get_vht_tx_stbc(struct wlan_objmgr_psoc *psoc,
  1734. bool *value)
  1735. {
  1736. return wlan_mlme_cfg_get_vht_tx_stbc(psoc, value);
  1737. }
  1738. /**
  1739. * ucfg_mlme_cfg_get_vht_rx_stbc() - gets vht rx stbc from
  1740. * cfg item
  1741. * @psoc: psoc context
  1742. * @value: pointer to get required data
  1743. *
  1744. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1745. * ignore_peer_ht_opmode flag value
  1746. *
  1747. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1748. */
  1749. static inline QDF_STATUS
  1750. ucfg_mlme_cfg_get_vht_rx_stbc(struct wlan_objmgr_psoc *psoc,
  1751. bool *value)
  1752. {
  1753. return wlan_mlme_cfg_get_vht_rx_stbc(psoc, value);
  1754. }
  1755. /**
  1756. * ucfg_mlme_cfg_set_vht_tx_bfee_ant_supp() - sets vht Beamformee antenna
  1757. * support cap into cfg item
  1758. * @psoc: psoc context
  1759. * @value: data to be set
  1760. *
  1761. * Inline UCFG API to be used by HDD/OSIF callers
  1762. *
  1763. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1764. */
  1765. static inline QDF_STATUS
  1766. ucfg_mlme_cfg_set_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1767. uint8_t value)
  1768. {
  1769. return wlan_mlme_cfg_set_vht_tx_bfee_ant_supp(psoc, value);
  1770. }
  1771. /**
  1772. * ucfg_mlme_cfg_get_vht_tx_bfee_ant_supp() - gets vht Beamformee antenna
  1773. * support cap into cfg item
  1774. * @psoc: psoc context
  1775. * @value: data to be set
  1776. *
  1777. * Inline UCFG API to be used by HDD/OSIF callers
  1778. *
  1779. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1780. */
  1781. static inline QDF_STATUS
  1782. ucfg_mlme_cfg_get_vht_tx_bfee_ant_supp(struct wlan_objmgr_psoc *psoc,
  1783. uint8_t *value)
  1784. {
  1785. return wlan_mlme_cfg_get_vht_tx_bfee_ant_supp(psoc, value);
  1786. }
  1787. /**
  1788. * ucfg_mlme_cfg_get_vht_rx_mcs_map() - gets vht rx mcs map from
  1789. * cfg item
  1790. * @psoc: psoc context
  1791. * @value: pointer to get required data
  1792. *
  1793. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1794. * ignore_peer_ht_opmode flag value
  1795. *
  1796. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1797. */
  1798. static inline QDF_STATUS
  1799. ucfg_mlme_cfg_get_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1800. uint32_t *value)
  1801. {
  1802. return wlan_mlme_cfg_get_vht_rx_mcs_map(psoc, value);
  1803. }
  1804. /**
  1805. * ucfg_mlme_cfg_set_vht_rx_mcs_map() - sets rx mcs map into
  1806. * cfg item
  1807. * @psoc: psoc context
  1808. * @value: data to be set
  1809. *
  1810. * Inline UCFG API to be used by HDD/OSIF callers
  1811. *
  1812. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1813. */
  1814. static inline QDF_STATUS
  1815. ucfg_mlme_cfg_set_vht_rx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1816. uint32_t value)
  1817. {
  1818. return wlan_mlme_cfg_set_vht_rx_mcs_map(psoc, value);
  1819. }
  1820. /**
  1821. * ucfg_mlme_cfg_get_vht_tx_mcs_map() - gets vht tx mcs map from
  1822. * cfg item
  1823. * @psoc: psoc context
  1824. * @value: pointer to get required data
  1825. *
  1826. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1827. * ignore_peer_ht_opmode flag value
  1828. *
  1829. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1830. */
  1831. static inline QDF_STATUS
  1832. ucfg_mlme_cfg_get_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1833. uint32_t *value)
  1834. {
  1835. return wlan_mlme_cfg_get_vht_tx_mcs_map(psoc, value);
  1836. }
  1837. /**
  1838. * ucfg_mlme_cfg_set_vht_tx_mcs_map() - sets tx mcs map into
  1839. * cfg item
  1840. * @psoc: psoc context
  1841. * @value: data to be set
  1842. *
  1843. * Inline UCFG API to be used by HDD/OSIF callers
  1844. *
  1845. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1846. */
  1847. static inline QDF_STATUS
  1848. ucfg_mlme_cfg_set_vht_tx_mcs_map(struct wlan_objmgr_psoc *psoc,
  1849. uint32_t value)
  1850. {
  1851. return wlan_mlme_cfg_set_vht_tx_mcs_map(psoc, value);
  1852. }
  1853. /**
  1854. * ucfg_mlme_cfg_set_vht_rx_supp_data_rate() - sets rx supported data
  1855. * rate into cfg item
  1856. * @psoc: psoc context
  1857. * @value: data to be set
  1858. *
  1859. * Inline UCFG API to be used by HDD/OSIF callers
  1860. *
  1861. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1862. */
  1863. static inline QDF_STATUS
  1864. ucfg_mlme_cfg_set_vht_rx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1865. uint32_t value)
  1866. {
  1867. return wlan_mlme_cfg_set_vht_rx_supp_data_rate(psoc, value);
  1868. }
  1869. /**
  1870. * ucfg_mlme_cfg_set_vht_tx_supp_data_rate() - sets tx supported data rate into
  1871. * cfg item
  1872. * @psoc: psoc context
  1873. * @value: data to be set
  1874. *
  1875. * Inline UCFG API to be used by HDD/OSIF callers
  1876. *
  1877. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1878. */
  1879. static inline QDF_STATUS
  1880. ucfg_mlme_cfg_set_vht_tx_supp_data_rate(struct wlan_objmgr_psoc *psoc,
  1881. uint32_t value)
  1882. {
  1883. return wlan_mlme_cfg_set_vht_tx_supp_data_rate(psoc, value);
  1884. }
  1885. /**
  1886. * ucfg_mlme_cfg_get_vht_basic_mcs_set() - gets basic mcs set from
  1887. * cfg item
  1888. * @psoc: psoc context
  1889. * @value: data to be set
  1890. *
  1891. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1892. * ignore_peer_ht_opmode flag value
  1893. *
  1894. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1895. */
  1896. static inline QDF_STATUS
  1897. ucfg_mlme_cfg_get_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1898. uint32_t *value)
  1899. {
  1900. return wlan_mlme_cfg_get_vht_basic_mcs_set(psoc, value);
  1901. }
  1902. /**
  1903. * ucfg_mlme_cfg_set_vht_basic_mcs_set() - sets basic mcs set into
  1904. * cfg item
  1905. * @psoc: psoc context
  1906. * @value: data to be set
  1907. *
  1908. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1909. * ignore_peer_ht_opmode flag value
  1910. *
  1911. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1912. */
  1913. static inline QDF_STATUS
  1914. ucfg_mlme_cfg_set_vht_basic_mcs_set(struct wlan_objmgr_psoc *psoc,
  1915. uint32_t value)
  1916. {
  1917. return wlan_mlme_cfg_set_vht_basic_mcs_set(psoc, value);
  1918. }
  1919. /**
  1920. * ucfg_mlme_get_vht_enable_tx_bf() - gets enable TXBF for 20MHZ
  1921. * for 11ac
  1922. * @psoc: psoc context
  1923. * @value: data to be set
  1924. *
  1925. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1926. * ignore_peer_ht_opmode flag value
  1927. *
  1928. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1929. */
  1930. static inline QDF_STATUS
  1931. ucfg_mlme_get_vht_enable_tx_bf(struct wlan_objmgr_psoc *psoc, bool *value)
  1932. {
  1933. return wlan_mlme_get_vht_enable_tx_bf(psoc, value);
  1934. }
  1935. /**
  1936. * ucfg_mlme_get_vht_tx_su_beamformer() - gets enable tx_su_beamformer
  1937. * for 11ac
  1938. * @psoc: psoc context
  1939. * @value: data to be set
  1940. *
  1941. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1942. * ignore_peer_ht_opmode flag value
  1943. *
  1944. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1945. */
  1946. static inline QDF_STATUS
  1947. ucfg_mlme_get_vht_tx_su_beamformer(struct wlan_objmgr_psoc *psoc, bool *value)
  1948. {
  1949. return wlan_mlme_get_vht_tx_su_beamformer(psoc, value);
  1950. }
  1951. /**
  1952. * ucfg_mlme_get_vht_channel_width() - gets Channel width capability
  1953. * for 11ac
  1954. * @psoc: psoc context
  1955. * @value: data to be set
  1956. *
  1957. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1958. * ignore_peer_ht_opmode flag value
  1959. *
  1960. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1961. */
  1962. static inline QDF_STATUS
  1963. ucfg_mlme_get_vht_channel_width(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  1964. {
  1965. return wlan_mlme_get_vht_channel_width(psoc, value);
  1966. }
  1967. /**
  1968. * ucfg_mlme_get_vht_rx_mcs_8_9() - VHT Rx MCS capability for 1x1 mode
  1969. * for 11ac
  1970. * @psoc: psoc context
  1971. * @value: data to be set
  1972. *
  1973. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1974. * ignore_peer_ht_opmode flag value
  1975. *
  1976. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1977. */
  1978. static inline QDF_STATUS
  1979. ucfg_mlme_get_vht_rx_mcs_8_9(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  1980. {
  1981. return wlan_mlme_get_vht_rx_mcs_8_9(psoc, value);
  1982. }
  1983. /**
  1984. * ucfg_mlme_get_vht_tx_mcs_8_9() - VHT Tx MCS capability for 1x1 mode
  1985. * for 11ac
  1986. * @psoc: psoc context
  1987. * @value: data to be set
  1988. *
  1989. * Inline UCFG API to be used by HDD/OSIF callers to get the
  1990. * ignore_peer_ht_opmode flag value
  1991. *
  1992. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  1993. */
  1994. static inline QDF_STATUS
  1995. ucfg_mlme_get_vht_tx_mcs_8_9(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  1996. {
  1997. return wlan_mlme_get_vht_tx_mcs_8_9(psoc, value);
  1998. }
  1999. /**
  2000. * ucfg_mlme_get_vht_rx_mcs_2x2() - VHT Rx MCS capability for 2x2 mode
  2001. * for 11ac
  2002. * @psoc: psoc context
  2003. * @value: data to be set
  2004. *
  2005. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2006. * ignore_peer_ht_opmode flag value
  2007. *
  2008. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2009. */
  2010. static inline QDF_STATUS
  2011. ucfg_mlme_get_vht_rx_mcs_2x2(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2012. {
  2013. return wlan_mlme_get_vht_rx_mcs_2x2(psoc, value);
  2014. }
  2015. /**
  2016. * ucfg_mlme_get_vht_tx_mcs_2x2() - VHT Tx MCS capability for 2x2 mode
  2017. * for 11ac
  2018. * @psoc: psoc context
  2019. * @value: data to be set
  2020. *
  2021. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2022. * ignore_peer_ht_opmode flag value
  2023. *
  2024. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2025. */
  2026. static inline QDF_STATUS
  2027. ucfg_mlme_get_vht_tx_mcs_2x2(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2028. {
  2029. return wlan_mlme_get_vht_tx_mcs_2x2(psoc, value);
  2030. }
  2031. /**
  2032. * ucfg_mlme_get_ini_vdev_config() - get the ini capability of vdev
  2033. * @vdev: pointer to the vdev obj
  2034. *
  2035. * This API will get the ini config of the vdev related to
  2036. * the nss, chains params
  2037. *
  2038. * Return: pointer to the nss, chain param ini cfg structure
  2039. */
  2040. static inline struct wlan_mlme_nss_chains *
  2041. ucfg_mlme_get_ini_vdev_config(struct wlan_objmgr_vdev *vdev)
  2042. {
  2043. return mlme_get_ini_vdev_config(vdev);
  2044. }
  2045. /**
  2046. * ucfg_mlme_get_dynamic_vdev_config() - get the dynamic capability of vdev
  2047. * @vdev: pointer to the vdev obj
  2048. *
  2049. * This API will get the dynamic config of the vdev related to nss,
  2050. * chains params
  2051. *
  2052. * Return: pointer to the nss, chain param dynamic cfg structure
  2053. */
  2054. static inline struct wlan_mlme_nss_chains *
  2055. ucfg_mlme_get_dynamic_vdev_config(struct wlan_objmgr_vdev *vdev)
  2056. {
  2057. return mlme_get_dynamic_vdev_config(vdev);
  2058. }
  2059. /**
  2060. * ucfg_mlme_get_vht20_mcs9() - Enables VHT MCS9 in 20M BW operation
  2061. * @psoc: psoc context
  2062. * @value: data to be set
  2063. *
  2064. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2065. * ignore_peer_ht_opmode flag value
  2066. *
  2067. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2068. */
  2069. static inline QDF_STATUS
  2070. ucfg_mlme_get_vht20_mcs9(struct wlan_objmgr_psoc *psoc, bool *value)
  2071. {
  2072. return wlan_mlme_get_vht20_mcs9(psoc, value);
  2073. }
  2074. /**
  2075. * ucfg_mlme_get_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  2076. * @psoc: psoc context
  2077. * @value: data to be set
  2078. *
  2079. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2080. * ignore_peer_ht_opmode flag value
  2081. *
  2082. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2083. */
  2084. static inline QDF_STATUS
  2085. ucfg_mlme_get_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool *value)
  2086. {
  2087. return wlan_mlme_get_vht_enable2x2(psoc, value);
  2088. }
  2089. /**
  2090. * ucfg_mlme_set_vht_enable2x2() - Enables/disables VHT Tx/Rx MCS values for 2x2
  2091. * @psoc: psoc context
  2092. * @value: data to be set
  2093. *
  2094. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2095. * ignore_peer_ht_opmode flag value
  2096. *
  2097. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2098. */
  2099. static inline QDF_STATUS
  2100. ucfg_mlme_set_vht_enable2x2(struct wlan_objmgr_psoc *psoc, bool value)
  2101. {
  2102. return wlan_mlme_set_vht_enable2x2(psoc, value);
  2103. }
  2104. /**
  2105. * ucfg_mlme_get_vht_enable_paid() - Enables/disables paid feature
  2106. * @psoc: psoc context
  2107. * @value: data to be set
  2108. *
  2109. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2110. * ignore_peer_ht_opmode flag value
  2111. *
  2112. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2113. */
  2114. static inline QDF_STATUS
  2115. ucfg_mlme_get_vht_enable_paid(struct wlan_objmgr_psoc *psoc, bool *value)
  2116. {
  2117. return wlan_mlme_get_vht_enable_paid(psoc, value);
  2118. }
  2119. /**
  2120. * ucfg_mlme_get_vht_enable_gid() - Enables/disables gid feature
  2121. * @psoc: psoc context
  2122. * @value: data to be set
  2123. *
  2124. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2125. * ignore_peer_ht_opmode flag value
  2126. *
  2127. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2128. */
  2129. static inline QDF_STATUS
  2130. ucfg_mlme_get_vht_enable_gid(struct wlan_objmgr_psoc *psoc, bool *value)
  2131. {
  2132. return wlan_mlme_get_vht_enable_gid(psoc, value);
  2133. }
  2134. /**
  2135. * ucfg_mlme_get_vht_for_24ghz() - Enables/disables vht for 24ghz
  2136. * @psoc: psoc context
  2137. * @value: data to be set
  2138. *
  2139. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2140. * ignore_peer_ht_opmode flag value
  2141. *
  2142. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2143. */
  2144. static inline QDF_STATUS
  2145. ucfg_mlme_get_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value)
  2146. {
  2147. return wlan_mlme_get_vht_for_24ghz(psoc, value);
  2148. }
  2149. /**
  2150. * ucfg_mlme_get_vendor_vht_for_24ghz() - Enables/disables vendor vht for 24ghz
  2151. * @psoc: psoc context
  2152. * @value: data to be set
  2153. *
  2154. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2155. * ignore_peer_ht_opmode flag value
  2156. *
  2157. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2158. */
  2159. static inline QDF_STATUS
  2160. ucfg_mlme_get_vendor_vht_for_24ghz(struct wlan_objmgr_psoc *psoc, bool *value)
  2161. {
  2162. return wlan_mlme_get_vendor_vht_for_24ghz(psoc, value);
  2163. }
  2164. /**
  2165. * ucfg_mlme_update_vht_cap() - Update vht capabilities
  2166. * @psoc: psoc context
  2167. * @value: data to be set
  2168. *
  2169. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2170. * ignore_peer_ht_opmode flag value
  2171. *
  2172. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2173. */
  2174. static inline QDF_STATUS
  2175. ucfg_mlme_update_vht_cap(struct wlan_objmgr_psoc *psoc,
  2176. struct wma_tgt_vht_cap *cfg)
  2177. {
  2178. return mlme_update_vht_cap(psoc, cfg);
  2179. }
  2180. /**
  2181. * ucfg_mlme_update_nss_vht_cap() -Update the number of spatial
  2182. * streams supported for vht
  2183. * @psoc: psoc context
  2184. * @value: data to be set
  2185. *
  2186. * Inline UCFG API to be used by HDD/OSIF callers to get the
  2187. * ignore_peer_ht_opmode flag value
  2188. *
  2189. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2190. */
  2191. static inline QDF_STATUS
  2192. ucfg_mlme_update_nss_vht_cap(struct wlan_objmgr_psoc *psoc)
  2193. {
  2194. return mlme_update_nss_vht_cap(psoc);
  2195. }
  2196. /**
  2197. * ucfg_mlme_is_11h_enabled() - Get 11h flag
  2198. * @psoc: pointer to psoc object
  2199. * @value: Value that needs to be set from the caller
  2200. *
  2201. * Inline UCFG API to be used by HDD/OSIF callers
  2202. *
  2203. * Return: QDF Status
  2204. */
  2205. static inline QDF_STATUS
  2206. ucfg_mlme_is_11h_enabled(struct wlan_objmgr_psoc *psoc, bool *value)
  2207. {
  2208. return wlan_mlme_is_11h_enabled(psoc, value);
  2209. }
  2210. /**
  2211. * ucfg_mlme_set_11h_enabled() - Set 11h flag
  2212. * @psoc: pointer to psoc object
  2213. * @value: Value that needs to be set from the caller
  2214. *
  2215. * Inline UCFG API to be used by HDD/OSIF callers
  2216. *
  2217. * Return: QDF Status
  2218. */
  2219. static inline QDF_STATUS
  2220. ucfg_mlme_set_11h_enabled(struct wlan_objmgr_psoc *psoc, bool value)
  2221. {
  2222. return wlan_mlme_set_11h_enabled(psoc, value);
  2223. }
  2224. /**
  2225. * ucfg_mlme_is_11d_enabled() - Get 11d flag
  2226. * @psoc: pointer to psoc object
  2227. * @value: Value that needs to be set from the caller
  2228. *
  2229. * Inline UCFG API to be used by HDD/OSIF callers
  2230. *
  2231. * Return: QDF Status
  2232. */
  2233. static inline QDF_STATUS
  2234. ucfg_mlme_is_11d_enabled(struct wlan_objmgr_psoc *psoc, bool *value)
  2235. {
  2236. return wlan_mlme_is_11d_enabled(psoc, value);
  2237. }
  2238. /**
  2239. * ucfg_mlme_set_11d_enabled() - Set 11d flag
  2240. * @psoc: pointer to psoc object
  2241. * @value: Value that needs to be set from the caller
  2242. *
  2243. * Inline UCFG API to be used by HDD/OSIF callers
  2244. *
  2245. * Return: QDF Status
  2246. */
  2247. static inline QDF_STATUS
  2248. ucfg_mlme_set_11d_enabled(struct wlan_objmgr_psoc *psoc, bool value)
  2249. {
  2250. return wlan_mlme_set_11d_enabled(psoc, value);
  2251. }
  2252. /**
  2253. * ucfg_mlme_get_opr_rate_set() - Get operational rate set
  2254. * @psoc: pointer to psoc object
  2255. * @buf: buffer to get rates set
  2256. * @len: length of the buffer
  2257. * Return: QDF Status
  2258. */
  2259. QDF_STATUS
  2260. ucfg_mlme_get_opr_rate_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2261. qdf_size_t *len);
  2262. /**
  2263. * ucfg_mlme_get_ext_opr_rate_set() - Get operational rate set
  2264. * @psoc: pointer to psoc object
  2265. * @buf: buffer to get rates set
  2266. * @len: length of the buffer
  2267. * Return: QDF Status
  2268. */
  2269. QDF_STATUS
  2270. ucfg_mlme_get_ext_opr_rate_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2271. qdf_size_t *len);
  2272. /**
  2273. * ucfg_mlme_get_supported_mcs_set() - Get Supported MCS set
  2274. * @psoc: pointer to psoc object
  2275. * @buf: caller buffer to copy mcs set info
  2276. * @len: length of the buffer
  2277. * Return: QDF Status
  2278. */
  2279. QDF_STATUS
  2280. ucfg_mlme_get_supported_mcs_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2281. qdf_size_t *len);
  2282. /**
  2283. * ucfg_mlme_set_supported_mcs_set() - Get Supported MCS set
  2284. * @psoc: pointer to psoc object
  2285. * @buf: caller buffer having mcs set info
  2286. * @len: length of the buffer
  2287. * Return: QDF Status
  2288. */
  2289. QDF_STATUS
  2290. ucfg_mlme_set_supported_mcs_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2291. qdf_size_t len);
  2292. /**
  2293. * ucfg_mlme_get_current_mcs_set() - Get current MCS set
  2294. * @psoc: pointer to psoc object
  2295. * @buf: caller buffer to copy mcs set info
  2296. * @len: length of the buffer
  2297. * Return: QDF Status
  2298. */
  2299. QDF_STATUS
  2300. ucfg_mlme_get_current_mcs_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
  2301. qdf_size_t *len);
  2302. /**
  2303. * ucfg_mlme_get_sta_keepalive_method() - Get sta_keepalive_method
  2304. * @psoc: pointer to psoc object
  2305. * @val: Value to pass to the caller
  2306. *
  2307. * Return: QDF Status
  2308. */
  2309. QDF_STATUS
  2310. ucfg_mlme_get_sta_keepalive_method(struct wlan_objmgr_psoc *psoc,
  2311. enum station_keepalive_method *val);
  2312. /**
  2313. * ucfg_mlme_get_wmm_dir_ac_vi() - Get TSPEC direction
  2314. * for VI
  2315. * @psoc: pointer to psoc object
  2316. * @value: Value that needs to be set from the caller
  2317. *
  2318. * Inline UCFG API to be used by HDD/OSIF callers
  2319. *
  2320. * Return: QDF Status
  2321. */
  2322. static inline QDF_STATUS
  2323. ucfg_mlme_get_wmm_dir_ac_vi(struct wlan_objmgr_psoc *psoc,
  2324. uint8_t *value)
  2325. {
  2326. return wlan_mlme_get_wmm_dir_ac_vi(psoc, value);
  2327. }
  2328. /**
  2329. * ucfg_mlme_get_wmm_nom_msdu_size_ac_vi() - Get normal
  2330. * MSDU size for VI
  2331. * @psoc: pointer to psoc object
  2332. * @value: Value that needs to be set from the caller
  2333. *
  2334. * Inline UCFG API to be used by HDD/OSIF callers
  2335. *
  2336. * Return: QDF Status
  2337. */
  2338. static inline QDF_STATUS
  2339. ucfg_mlme_get_wmm_nom_msdu_size_ac_vi(struct wlan_objmgr_psoc *psoc,
  2340. uint16_t *value)
  2341. {
  2342. return wlan_mlme_get_wmm_nom_msdu_size_ac_vi(psoc, value);
  2343. }
  2344. /**
  2345. * ucfg_mlme_get_wmm_mean_data_rate_ac_vi() - mean data
  2346. * rate for VI
  2347. * @psoc: pointer to psoc object
  2348. * @value: Value that needs to be set from the caller
  2349. *
  2350. * Inline UCFG API to be used by HDD/OSIF callers
  2351. *
  2352. * Return: QDF Status
  2353. */
  2354. static inline QDF_STATUS
  2355. ucfg_mlme_get_wmm_mean_data_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  2356. uint32_t *value)
  2357. {
  2358. return wlan_mlme_get_wmm_mean_data_rate_ac_vi(psoc, value);
  2359. }
  2360. /**
  2361. * ucfg_mlme_get_wmm_min_phy_rate_ac_vi() - min PHY
  2362. * rate for VI
  2363. * @psoc: pointer to psoc object
  2364. * @value: Value that needs to be set from the caller
  2365. *
  2366. * Inline UCFG API to be used by HDD/OSIF callers
  2367. *
  2368. * Return: QDF Status
  2369. */
  2370. static inline QDF_STATUS
  2371. ucfg_mlme_get_wmm_min_phy_rate_ac_vi(struct wlan_objmgr_psoc *psoc,
  2372. uint32_t *value)
  2373. {
  2374. return wlan_mlme_get_wmm_min_phy_rate_ac_vi(psoc, value);
  2375. }
  2376. /**
  2377. * ucfg_mlme_get_wmm_sba_ac_vi() - surplus bandwidth
  2378. * allowance for VI
  2379. * @psoc: pointer to psoc object
  2380. * @value: Value that needs to be set from the caller
  2381. *
  2382. * Inline UCFG API to be used by HDD/OSIF callers
  2383. *
  2384. * Return: QDF Status
  2385. */
  2386. static inline QDF_STATUS
  2387. ucfg_mlme_get_wmm_sba_ac_vi(struct wlan_objmgr_psoc *psoc, uint16_t *value)
  2388. {
  2389. return wlan_mlme_get_wmm_sba_ac_vi(psoc, value);
  2390. }
  2391. /**
  2392. * ucfg_mlme_get_wmm_uapsd_vi_srv_intv() - Get Uapsd service
  2393. * interval for video
  2394. * @psoc: pointer to psoc object
  2395. * @value: pointer to the value which will be filled for the caller
  2396. *
  2397. * Inline UCFG API to be used by HDD/OSIF callers
  2398. *
  2399. * Return: QDF Status
  2400. */
  2401. static inline QDF_STATUS
  2402. ucfg_mlme_get_wmm_uapsd_vi_srv_intv(struct wlan_objmgr_psoc *psoc,
  2403. uint32_t *value)
  2404. {
  2405. return wlan_mlme_get_wmm_uapsd_vi_srv_intv(psoc, value);
  2406. }
  2407. /**
  2408. * ucfg_mlme_get_wmm_uapsd_vi_sus_intv() - Get Uapsd suspension
  2409. * interval for video
  2410. * @psoc: pointer to psoc object
  2411. * @value: Value that needs to be set from the caller
  2412. *
  2413. * Inline UCFG API to be used by HDD/OSIF callers
  2414. *
  2415. * Return: QDF Status
  2416. */
  2417. static inline QDF_STATUS
  2418. ucfg_mlme_get_wmm_uapsd_vi_sus_intv(struct wlan_objmgr_psoc *psoc,
  2419. uint32_t *value)
  2420. {
  2421. return wlan_mlme_get_wmm_uapsd_vi_sus_intv(psoc, value);
  2422. }
  2423. /**
  2424. * ucfg_mlme_get_wmm_dir_ac_be() - Get TSPEC direction
  2425. * for BE
  2426. * @psoc: pointer to psoc object
  2427. * @value: Value that needs to be set from the caller
  2428. *
  2429. * Inline UCFG API to be used by HDD/OSIF callers
  2430. *
  2431. * Return: QDF Status
  2432. */
  2433. static inline QDF_STATUS
  2434. ucfg_mlme_get_wmm_dir_ac_be(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2435. {
  2436. return wlan_mlme_get_wmm_dir_ac_be(psoc, value);
  2437. }
  2438. /**
  2439. * ucfg_mlme_get_wmm_nom_msdu_size_ac_be() - Get normal
  2440. * MSDU size for BE
  2441. * @psoc: pointer to psoc object
  2442. * @value: Value that needs to be set from the caller
  2443. *
  2444. * Inline UCFG API to be used by HDD/OSIF callers
  2445. *
  2446. * Return: QDF Status
  2447. */
  2448. static inline QDF_STATUS
  2449. ucfg_mlme_get_wmm_nom_msdu_size_ac_be(struct wlan_objmgr_psoc *psoc,
  2450. uint16_t *value)
  2451. {
  2452. return wlan_mlme_get_wmm_nom_msdu_size_ac_be(psoc, value);
  2453. }
  2454. /**
  2455. * ucfg_mlme_get_wmm_mean_data_rate_ac_be() - mean data
  2456. * rate for BE
  2457. * @psoc: pointer to psoc object
  2458. * @value: Value that needs to be set from the caller
  2459. *
  2460. * Inline UCFG API to be used by HDD/OSIF callers
  2461. *
  2462. * Return: QDF Status
  2463. */
  2464. static inline QDF_STATUS
  2465. ucfg_mlme_get_wmm_mean_data_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  2466. uint32_t *value)
  2467. {
  2468. return wlan_mlme_get_wmm_mean_data_rate_ac_be(psoc, value);
  2469. }
  2470. /**
  2471. * ucfg_mlme_get_wmm_min_phy_rate_ac_be() - min PHY
  2472. * rate for BE
  2473. * @psoc: pointer to psoc object
  2474. * @value: Value that needs to be set from the caller
  2475. *
  2476. * Inline UCFG API to be used by HDD/OSIF callers
  2477. *
  2478. * Return: QDF Status
  2479. */
  2480. static inline QDF_STATUS
  2481. ucfg_mlme_get_wmm_min_phy_rate_ac_be(struct wlan_objmgr_psoc *psoc,
  2482. uint32_t *value)
  2483. {
  2484. return wlan_mlme_get_wmm_min_phy_rate_ac_be(psoc, value);
  2485. }
  2486. /**
  2487. * ucfg_mlme_get_wmm_sba_ac_be() - surplus bandwidth
  2488. * allowance for BE
  2489. * @psoc: pointer to psoc object
  2490. * @value: Value that needs to be set from the caller
  2491. *
  2492. * Inline UCFG API to be used by HDD/OSIF callers
  2493. *
  2494. * Return: QDF Status
  2495. */
  2496. static inline QDF_STATUS
  2497. ucfg_mlme_get_wmm_sba_ac_be(struct wlan_objmgr_psoc *psoc, uint16_t *value)
  2498. {
  2499. return wlan_mlme_get_wmm_sba_ac_be(psoc, value);
  2500. }
  2501. /**
  2502. * ucfg_mlme_get_wmm_uapsd_be_srv_intv() - Get Uapsd service
  2503. * interval for BE
  2504. * @psoc: pointer to psoc object
  2505. * @value: pointer to the value which will be filled for the caller
  2506. *
  2507. * Inline UCFG API to be used by HDD/OSIF callers
  2508. *
  2509. * Return: QDF Status
  2510. */
  2511. static inline QDF_STATUS
  2512. ucfg_mlme_get_wmm_uapsd_be_srv_intv(struct wlan_objmgr_psoc *psoc,
  2513. uint32_t *value)
  2514. {
  2515. return wlan_mlme_get_wmm_uapsd_be_srv_intv(psoc, value);
  2516. }
  2517. /**
  2518. * ucfg_mlme_get_wmm_uapsd_be_sus_intv() - Get Uapsd suspension
  2519. * interval for BE
  2520. * @psoc: pointer to psoc object
  2521. * @value: Value that needs to be set from the caller
  2522. *
  2523. * Inline UCFG API to be used by HDD/OSIF callers
  2524. *
  2525. * Return: QDF Status
  2526. */
  2527. static inline QDF_STATUS
  2528. ucfg_mlme_get_wmm_uapsd_be_sus_intv(struct wlan_objmgr_psoc *psoc,
  2529. uint32_t *value)
  2530. {
  2531. return wlan_mlme_get_wmm_uapsd_be_sus_intv(psoc, value);
  2532. }
  2533. /**
  2534. * ucfg_mlme_get_wmm_dir_ac_bk() - Get TSPEC direction
  2535. * for BK
  2536. * @psoc: pointer to psoc object
  2537. * @value: Value that needs to be set from the caller
  2538. *
  2539. * Inline UCFG API to be used by HDD/OSIF callers
  2540. *
  2541. * Return: QDF Status
  2542. */
  2543. static inline QDF_STATUS
  2544. ucfg_mlme_get_wmm_dir_ac_bk(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2545. {
  2546. return wlan_mlme_get_wmm_dir_ac_bk(psoc, value);
  2547. }
  2548. /**
  2549. * ucfg_mlme_get_wmm_nom_msdu_size_ac_be() - Get normal
  2550. * MSDU size for BE
  2551. * @psoc: pointer to psoc object
  2552. * @value: Value that needs to be set from the caller
  2553. *
  2554. * Inline UCFG API to be used by HDD/OSIF callers
  2555. *
  2556. * Return: QDF Status
  2557. */
  2558. static inline QDF_STATUS
  2559. ucfg_mlme_get_wmm_nom_msdu_size_ac_bk(struct wlan_objmgr_psoc *psoc,
  2560. uint16_t *value)
  2561. {
  2562. return wlan_mlme_get_wmm_nom_msdu_size_ac_bk(psoc, value);
  2563. }
  2564. /**
  2565. * ucfg_mlme_get_wmm_mean_data_rate_ac_bk() - mean data
  2566. * rate for BK
  2567. * @psoc: pointer to psoc object
  2568. * @value: Value that needs to be set from the caller
  2569. *
  2570. * Inline UCFG API to be used by HDD/OSIF callers
  2571. *
  2572. * Return: QDF Status
  2573. */
  2574. static inline QDF_STATUS
  2575. ucfg_mlme_get_wmm_mean_data_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  2576. uint32_t *value)
  2577. {
  2578. return wlan_mlme_get_wmm_mean_data_rate_ac_bk(psoc, value);
  2579. }
  2580. /**
  2581. * ucfg_mlme_get_wmm_min_phy_rate_ac_bk() - min PHY
  2582. * rate for BE
  2583. * @psoc: pointer to psoc object
  2584. * @value: Value that needs to be set from the caller
  2585. *
  2586. * Inline UCFG API to be used by HDD/OSIF callers
  2587. *
  2588. * Return: QDF Status
  2589. */
  2590. static inline QDF_STATUS
  2591. ucfg_mlme_get_wmm_min_phy_rate_ac_bk(struct wlan_objmgr_psoc *psoc,
  2592. uint32_t *value)
  2593. {
  2594. return wlan_mlme_get_wmm_min_phy_rate_ac_bk(psoc, value);
  2595. }
  2596. /**
  2597. * ucfg_mlme_get_wmm_sba_ac_bk() - surplus bandwidth
  2598. * allowance for BE
  2599. * @psoc: pointer to psoc object
  2600. * @value: Value that needs to be set from the caller
  2601. *
  2602. * Inline UCFG API to be used by HDD/OSIF callers
  2603. *
  2604. * Return: QDF Status
  2605. */
  2606. static inline QDF_STATUS
  2607. ucfg_mlme_get_wmm_sba_ac_bk(struct wlan_objmgr_psoc *psoc, uint16_t *value)
  2608. {
  2609. return wlan_mlme_get_wmm_sba_ac_bk(psoc, value);
  2610. }
  2611. /**
  2612. * ucfg_mlme_get_wmm_uapsd_bk_srv_intv() - Get Uapsd service
  2613. * interval for BK
  2614. * @psoc: pointer to psoc object
  2615. * @value: pointer to the value which will be filled for the caller
  2616. *
  2617. * Inline UCFG API to be used by HDD/OSIF callers
  2618. *
  2619. * Return: QDF Status
  2620. */
  2621. static inline QDF_STATUS
  2622. ucfg_mlme_get_wmm_uapsd_bk_srv_intv(struct wlan_objmgr_psoc *psoc,
  2623. uint32_t *value)
  2624. {
  2625. return wlan_mlme_get_wmm_uapsd_bk_srv_intv(psoc, value);
  2626. }
  2627. /**
  2628. * ucfg_mlme_get_wmm_uapsd_bk_sus_intv() - Get Uapsd suspension
  2629. * interval for BK
  2630. * @psoc: pointer to psoc object
  2631. * @value: Value that needs to be set from the caller
  2632. *
  2633. * Inline UCFG API to be used by HDD/OSIF callers
  2634. *
  2635. * Return: QDF Status
  2636. */
  2637. static inline QDF_STATUS
  2638. ucfg_mlme_get_wmm_uapsd_bk_sus_intv(struct wlan_objmgr_psoc *psoc,
  2639. uint32_t *value)
  2640. {
  2641. return wlan_mlme_get_wmm_uapsd_bk_sus_intv(psoc, value);
  2642. }
  2643. /**
  2644. * ucfg_mlme_get_wmm_mode() - Enable WMM feature
  2645. * @psoc: pointer to psoc object
  2646. * @value: Value that needs to be set from the caller
  2647. *
  2648. * Inline UCFG API to be used by HDD/OSIF callers
  2649. *
  2650. * Return: QDF Status
  2651. */
  2652. static inline QDF_STATUS
  2653. ucfg_mlme_get_wmm_mode(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2654. {
  2655. return wlan_mlme_get_wmm_mode(psoc, value);
  2656. }
  2657. #ifdef WLAN_FEATURE_11AX
  2658. /**
  2659. * ucfg_mlme_update_tgt_he_cap() - Update tgt he cap in mlme component
  2660. *
  2661. * @psoc: pointer to psoc object
  2662. * @cfg: pointer to config params from target
  2663. *
  2664. * Inline UCFG API to be used by HDD/OSIF callers to update
  2665. * he caps in mlme.
  2666. *
  2667. * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
  2668. */
  2669. static inline
  2670. QDF_STATUS ucfg_mlme_update_tgt_he_cap(struct wlan_objmgr_psoc *psoc,
  2671. struct wma_tgt_cfg *cfg)
  2672. {
  2673. return mlme_update_tgt_he_caps_in_cfg(psoc, cfg);
  2674. }
  2675. /**
  2676. * ucfg_mlme_cfg_get_he_ul_mumimo() - Get the HE Ul Mumio
  2677. * @psoc: pointer to psoc object
  2678. * @value: Value that needs to be set from the caller
  2679. *
  2680. * Return: QDF Status
  2681. */
  2682. static inline
  2683. QDF_STATUS ucfg_mlme_cfg_get_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  2684. uint32_t *value)
  2685. {
  2686. return wlan_mlme_cfg_get_he_ul_mumimo(psoc, value);
  2687. }
  2688. /**
  2689. * ucfg_mlme_cfg_set_he_ul_mumimo() - Set the HE Ul Mumio
  2690. * @psoc: pointer to psoc object
  2691. * @value: Value that needs to be set from the caller
  2692. *
  2693. * Return: QDF Status
  2694. */
  2695. static inline
  2696. QDF_STATUS ucfg_mlme_cfg_set_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
  2697. uint32_t value)
  2698. {
  2699. return wlan_mlme_cfg_set_he_ul_mumimo(psoc, value);
  2700. }
  2701. /**
  2702. * ucfg_mlme_cfg_get_enable_ul_mimo() - Get the HE Ul mimo
  2703. * @psoc: pointer to psoc object
  2704. * @value: Value that needs to be set from the caller
  2705. *
  2706. * Return: QDF Status
  2707. */
  2708. static inline
  2709. QDF_STATUS ucfg_mlme_cfg_get_enable_ul_mimo(struct wlan_objmgr_psoc *psoc,
  2710. uint8_t *value)
  2711. {
  2712. return wlan_mlme_cfg_get_enable_ul_mimo(psoc, value);
  2713. }
  2714. /**
  2715. * ucfg_mlme_cfg_get_enable_ul_ofdm() - Get enable ul ofdm
  2716. * @psoc: pointer to psoc object
  2717. * @value: Value that needs to be set from the caller
  2718. *
  2719. * Return: QDF Status
  2720. */
  2721. static inline
  2722. QDF_STATUS ucfg_mlme_cfg_get_enable_ul_ofdm(struct wlan_objmgr_psoc *psoc,
  2723. uint8_t *value)
  2724. {
  2725. return wlan_mlme_cfg_get_enable_ul_ofdm(psoc, value);
  2726. }
  2727. #endif
  2728. /**
  2729. * ucfg_mlme_get_80211e_is_enabled() - Enable 802.11e feature
  2730. * @psoc: pointer to psoc object
  2731. * @value: Value that needs to be set from the caller
  2732. *
  2733. * Inline UCFG API to be used by HDD/OSIF callers
  2734. *
  2735. * Return: QDF Status
  2736. */
  2737. static inline QDF_STATUS
  2738. ucfg_mlme_get_80211e_is_enabled(struct wlan_objmgr_psoc *psoc, bool *value)
  2739. {
  2740. return wlan_mlme_get_80211e_is_enabled(psoc, value);
  2741. }
  2742. /**
  2743. * ucfg_mlme_get_wmm_uapsd_mask() - setup U-APSD mask for ACs
  2744. * @psoc: pointer to psoc object
  2745. * @value: Value that needs to be set from the caller
  2746. *
  2747. * Inline UCFG API to be used by HDD/OSIF callers
  2748. *
  2749. * Return: QDF Status
  2750. */
  2751. static inline QDF_STATUS
  2752. ucfg_mlme_get_wmm_uapsd_mask(struct wlan_objmgr_psoc *psoc, uint8_t *value)
  2753. {
  2754. return wlan_mlme_get_wmm_uapsd_mask(psoc, value);
  2755. }
  2756. /**
  2757. * ucfg_mlme_get_implicit_qos_is_enabled() - Enable implicit QOS
  2758. * @psoc: pointer to psoc object
  2759. * @value: Value that needs to be set from the caller
  2760. *
  2761. * Inline UCFG API to be used by HDD/OSIF callers
  2762. *
  2763. * Return: QDF Status
  2764. */
  2765. static inline QDF_STATUS
  2766. ucfg_mlme_get_implicit_qos_is_enabled(struct wlan_objmgr_psoc *psoc,
  2767. bool *value)
  2768. {
  2769. return wlan_mlme_get_implicit_qos_is_enabled(psoc, value);
  2770. }
  2771. #ifdef FEATURE_WLAN_ESE
  2772. /**
  2773. * ucfg_mlme_get_inactivity_interval() - Infra Inactivity Interval
  2774. * @psoc: pointer to psoc object
  2775. * @value: Value that needs to be get from the caller
  2776. *
  2777. * Inline UCFG API to be used by HDD/OSIF callers
  2778. *
  2779. * Return: None
  2780. */
  2781. static inline void
  2782. ucfg_mlme_get_inactivity_interval(struct wlan_objmgr_psoc *psoc,
  2783. uint32_t *value)
  2784. {
  2785. wlan_mlme_get_inactivity_interval(psoc, value);
  2786. }
  2787. /**
  2788. * ucfg_mlme_is_ese_enabled() - ese feature enable or not
  2789. * @psoc: pointer to psoc object
  2790. * @val: Pointer to the value which will be filled for the caller
  2791. *
  2792. * Return: QDF Status
  2793. */
  2794. QDF_STATUS
  2795. ucfg_mlme_is_ese_enabled(struct wlan_objmgr_psoc *psoc, bool *val);
  2796. #endif /* FEATURE_WLAN_ESE */
  2797. /**
  2798. * ucfg_mlme_get_is_ts_burst_size_enable() - Get TS burst size flag
  2799. * @psoc: pointer to psoc object
  2800. * @value: Value that needs to be get from the caller
  2801. *
  2802. * Inline UCFG API to be used by HDD/OSIF callers
  2803. *
  2804. * Return: None
  2805. */
  2806. static inline void
  2807. ucfg_mlme_get_is_ts_burst_size_enable(struct wlan_objmgr_psoc *psoc,
  2808. bool *value)
  2809. {
  2810. wlan_mlme_get_is_ts_burst_size_enable(psoc, value);
  2811. }
  2812. /**
  2813. * ucfg_mlme_get_ts_info_ack_policy() - Get TS ack policy
  2814. * @psoc: pointer to psoc object
  2815. * @value: Value that needs to be get from the caller
  2816. *
  2817. * Inline UCFG API to be used by HDD/OSIF callers
  2818. *
  2819. * Return: None
  2820. */
  2821. static inline void
  2822. ucfg_mlme_get_ts_info_ack_policy(struct wlan_objmgr_psoc *psoc,
  2823. enum mlme_ts_info_ack_policy *value)
  2824. {
  2825. wlan_mlme_get_ts_info_ack_policy(psoc, value);
  2826. }
  2827. /**
  2828. * ucfg_mlme_get_ts_acm_value_for_ac() - Get ACM value for AC
  2829. * @psoc: pointer to psoc object
  2830. * @value: Value that needs to be get from the caller
  2831. *
  2832. *
  2833. * Inline UCFG API to be used by HDD/OSIF callers
  2834. *
  2835. * Return: QDF Status
  2836. */
  2837. static inline QDF_STATUS
  2838. ucfg_mlme_get_ts_acm_value_for_ac(struct wlan_objmgr_psoc *psoc, bool *value)
  2839. {
  2840. return wlan_mlme_get_ts_acm_value_for_ac(psoc, value);
  2841. }
  2842. /*
  2843. * ucfg_mlme_is_sap_uapsd_enabled() - SAP UAPSD enabled status.
  2844. * @psoc: pointer to psoc object
  2845. * @value: sap uapsd enabled flag value requested from the caller
  2846. *
  2847. * Inline UCFG API to be used by HDD/OSIF callers
  2848. *
  2849. * Return: QDF Status
  2850. */
  2851. static inline QDF_STATUS
  2852. ucfg_mlme_is_sap_uapsd_enabled(struct wlan_objmgr_psoc *psoc, bool *value)
  2853. {
  2854. return wlan_mlme_is_sap_uapsd_enabled(psoc, value);
  2855. }
  2856. /*
  2857. * ucfg_mlme_set_sap_uapsd_flag() - SAP UAPSD enabled status.
  2858. * @psoc: pointer to psoc object
  2859. * @value: Value that needs to be set from the caller
  2860. *
  2861. * Inline UCFG API to be used by HDD/OSIF callers
  2862. *
  2863. * Return: QDF Status
  2864. */
  2865. static inline QDF_STATUS
  2866. ucfg_mlme_set_sap_uapsd_flag(struct wlan_objmgr_psoc *psoc, bool value)
  2867. {
  2868. return wlan_mlme_set_sap_uapsd_flag(psoc, value);
  2869. }
  2870. /**
  2871. * ucfg_mlme_get_enable_deauth_to_disassoc_map() - Enable deauth_to_disassoc_map
  2872. * @psoc: pointer to psoc object
  2873. * @value: Value that needs to be set from the caller
  2874. *
  2875. * UCFG API to be used by HDD/OSIF callers
  2876. *
  2877. * Return: QDF Status
  2878. */
  2879. QDF_STATUS
  2880. ucfg_mlme_get_enable_deauth_to_disassoc_map(struct wlan_objmgr_psoc *psoc,
  2881. bool *value);
  2882. /**
  2883. * ucfg_mlme_get_ap_random_bssid_enable() - Enable random bssid
  2884. * @psoc: pointer to psoc object
  2885. * @value: Value that needs to be set from the caller
  2886. *
  2887. * UCFG API to be used by HDD/OSIF callers
  2888. *
  2889. * Return: QDF Status
  2890. */
  2891. QDF_STATUS
  2892. ucfg_mlme_get_ap_random_bssid_enable(struct wlan_objmgr_psoc *psoc,
  2893. bool *value);
  2894. #endif /* _WLAN_MLME_UCFG_API_H_ */