123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204 |
- /*
- * Copyright (c) 2016 The Linux Foundation. All rights reserved.
- *
- * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
- *
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /*
- * This file was originally distributed by Qualcomm Atheros, Inc.
- * under proprietary terms before Copyright ownership was assigned
- * to the Linux Foundation.
- */
- #include "athdefs.h"
- #include "osapi_linux.h"
- #include "a_types.h"
- #include "a_debug.h"
- #include "ol_if_athvar.h"
- #include "ol_defines.h"
- #include "wmi.h"
- #include "wmi_unified_priv.h"
- #include "wma_api.h"
- #include "wmi_unified_param.h"
- /**
- * wmi_unified_vdev_create_send() - send VDEV create command to fw
- * @wmi_handle: wmi handle
- * @param: pointer to hold vdev create parameter
- * @macaddr: vdev mac address
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
- uint8_t macaddr[IEEE80211_ADDR_LEN],
- struct vdev_create_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_vdev_create_cmd)
- return wmi_handle->ops->send_vdev_create_cmd(wmi_handle,
- macaddr, param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_vdev_delete_send() - send VDEV delete command to fw
- * @wmi_handle: wmi handle
- * @if_id: vdev id
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
- uint8_t if_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_vdev_delete_cmd)
- return wmi_handle->ops->send_vdev_delete_cmd(wmi_handle,
- if_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_vdev_stop_send() - send vdev stop command to fw
- * @wmi: wmi handle
- * @vdev_id: vdev id
- *
- * Return: 0 for success or erro code
- */
- QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
- uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_vdev_stop_cmd)
- return wmi_handle->ops->send_vdev_stop_cmd(wmi_handle,
- vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_vdev_down_send() - send vdev down command to fw
- * @wmi: wmi handle
- * @vdev_id: vdev id
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl, uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_vdev_down_cmd)
- return wmi_handle->ops->send_vdev_down_cmd(wmi_handle, vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_peer_flush_tids_send() - flush peer tids packets in fw
- * @wmi: wmi handle
- * @peer_addr: peer mac address
- * @param: pointer to hold peer flush tid parameter
- *
- * Return: 0 for sucess or error code
- */
- QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
- uint8_t peer_addr[IEEE80211_ADDR_LEN],
- struct peer_flush_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_peer_flush_tids_cmd)
- return wmi_handle->ops->send_peer_flush_tids_cmd(wmi_handle,
- peer_addr, param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_peer_delete_send() - send PEER delete command to fw
- * @wmi: wmi handle
- * @peer_addr: peer mac addr
- * @vdev_id: vdev id
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
- uint8_t
- peer_addr[IEEE80211_ADDR_LEN],
- uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_peer_delete_cmd)
- return wmi_handle->ops->send_peer_delete_cmd(wmi_handle,
- peer_addr, vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_set_peer_param() - set peer parameter in fw
- * @wmi_ctx: wmi handle
- * @peer_addr: peer mac address
- * @param : pointer to hold peer set parameter
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
- uint8_t peer_addr[IEEE80211_ADDR_LEN],
- struct peer_set_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_peer_param_cmd)
- return wmi_handle->ops->send_peer_param_cmd(wmi_handle,
- peer_addr, param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_vdev_up_send() - send vdev up command in fw
- * @wmi: wmi handle
- * @bssid: bssid
- * @vdev_up_params: pointer to hold vdev up parameter
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
- uint8_t bssid[IEEE80211_ADDR_LEN],
- struct vdev_up_params *params)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_vdev_up_cmd)
- return wmi_handle->ops->send_vdev_up_cmd(wmi_handle, bssid,
- params);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_peer_create_send() - send peer create command to fw
- * @wmi: wmi handle
- * @peer_addr: peer mac address
- * @peer_type: peer type
- * @vdev_id: vdev id
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
- struct peer_create_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_peer_create_cmd)
- return wmi_handle->ops->send_peer_create_cmd(wmi_handle, param);
- return QDF_STATUS_E_FAILURE;
- }
- #ifdef FEATURE_GREEN_AP
- /**
- * wmi_unified_green_ap_ps_send() - enable green ap powersave command
- * @wmi_handle: wmi handle
- * @value: value
- * @mac_id: mac id to have radio context
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
- uint32_t value, uint8_t mac_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_green_ap_ps_cmd)
- return wmi_handle->ops->send_green_ap_ps_cmd(wmi_handle, value,
- mac_id);
- return QDF_STATUS_E_FAILURE;
- }
- #else
- QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
- uint32_t value, uint8_t mac_id)
- {
- return 0;
- }
- #endif /* FEATURE_GREEN_AP */
- /**
- * wmi_unified_pdev_utf_cmd() - send utf command to fw
- * @wmi_handle: wmi handle
- * @param: pointer to pdev_utf_params
- * @mac_id: mac id to have radio context
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS
- wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
- struct pdev_utf_params *param,
- uint8_t mac_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_pdev_utf_cmd)
- return wmi_handle->ops->send_pdev_utf_cmd(wmi_handle, param,
- mac_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_pdev_set_param() - set pdev parameters
- * @wmi_handle: wmi handle
- * @param: pointer to pdev parameter
- * @mac_id: radio context
- *
- * Return: 0 on success, errno on failure
- */
- QDF_STATUS
- wmi_unified_pdev_param_send(void *wmi_hdl,
- struct pdev_params *param,
- uint8_t mac_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_pdev_param_cmd)
- return wmi_handle->ops->send_pdev_param_cmd(wmi_handle, param,
- mac_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_suspend_send() - WMI suspend function
- * @param wmi_handle : handle to WMI.
- * @param param : pointer to hold suspend parameter
- * @mac_id: radio context
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
- struct suspend_params *param,
- uint8_t mac_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_suspend_cmd)
- return wmi_handle->ops->send_suspend_cmd(wmi_handle, param,
- mac_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_resume_send - WMI resume function
- * @param wmi_handle : handle to WMI.
- * @mac_id: radio context
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
- uint8_t mac_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_resume_cmd)
- return wmi_handle->ops->send_resume_cmd(wmi_handle,
- mac_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_wow_enable_send() - WMI wow enable function
- * @param wmi_handle : handle to WMI.
- * @param param : pointer to hold wow enable parameter
- * @mac_id: radio context
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
- struct wow_cmd_params *param,
- uint8_t mac_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_wow_enable_cmd)
- return wmi_handle->ops->send_wow_enable_cmd(wmi_handle, param,
- mac_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_ap_ps_cmd_send() - set ap powersave parameters
- * @wma_ctx: wma context
- * @peer_addr: peer mac address
- * @param: pointer to ap_ps parameter structure
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
- uint8_t *peer_addr,
- struct ap_ps_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_ap_ps_param_cmd)
- return wmi_handle->ops->send_set_ap_ps_param_cmd(wmi_handle,
- peer_addr,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_sta_ps_cmd_send() - set sta powersave parameters
- * @wma_ctx: wma context
- * @peer_addr: peer mac address
- * @param: pointer to sta_ps parameter structure
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
- struct sta_ps_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_sta_ps_param_cmd)
- return wmi_handle->ops->send_set_sta_ps_param_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_crash_inject() - inject fw crash
- * @wma_handle: wma handle
- * @param: ponirt to crash inject paramter structure
- *
- * Return: 0 for success or return error
- */
- QDF_STATUS wmi_crash_inject(void *wmi_hdl,
- struct crash_inject *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_crash_inject_cmd)
- return wmi_handle->ops->send_crash_inject_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_dbglog_cmd_send() - set debug log level
- * @param wmi_handle : handle to WMI.
- * @param param : pointer to hold dbglog level parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS
- wmi_unified_dbglog_cmd_send(void *wmi_hdl,
- struct dbglog_params *dbglog_param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_dbglog_cmd)
- return wmi_handle->ops->send_dbglog_cmd(wmi_handle,
- dbglog_param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_vdev_set_param_send() - WMI vdev set parameter function
- * @param wmi_handle : handle to WMI.
- * @param macaddr : MAC address
- * @param param : pointer to hold vdev set parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
- struct vdev_set_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_vdev_set_param_cmd)
- return wmi_handle->ops->send_vdev_set_param_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_stats_request_send() - WMI request stats function
- * @param wmi_handle : handle to WMI.
- * @param macaddr : MAC address
- * @param param : pointer to hold stats request parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
- uint8_t macaddr[IEEE80211_ADDR_LEN],
- struct stats_request_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_stats_request_cmd)
- return wmi_handle->ops->send_stats_request_cmd(wmi_handle,
- macaddr, param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_stats_request_send() - WMI request stats function
- * @param wmi_handle : handle to WMI.
- * @param macaddr : MAC address
- * @param param : pointer to hold stats request parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
- uint8_t macaddr[IEEE80211_ADDR_LEN],
- struct packet_enable_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_packet_log_enable_cmd)
- return wmi_handle->ops->send_packet_log_enable_cmd(wmi_handle,
- macaddr, param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_beacon_send_cmd() - WMI beacon send function
- * @param wmi_handle : handle to WMI.
- * @param macaddr : MAC address
- * @param param : pointer to hold beacon send cmd parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
- struct beacon_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_beacon_send_cmd)
- return wmi_handle->ops->send_beacon_send_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_peer_assoc_send() - WMI peer assoc function
- * @param wmi_handle : handle to WMI.
- * @param macaddr : MAC address
- * @param param : pointer to peer assoc parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
- struct peer_assoc_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_peer_assoc_cmd)
- return wmi_handle->ops->send_peer_assoc_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_scan_start_cmd_send() - WMI scan start function
- * @param wmi_handle : handle to WMI.
- * @param macaddr : MAC address
- * @param param : pointer to hold scan start cmd parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
- struct scan_start_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_scan_start_cmd)
- return wmi_handle->ops->send_scan_start_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_scan_stop_cmd_send() - WMI scan start function
- * @param wmi_handle : handle to WMI.
- * @param macaddr : MAC address
- * @param param : pointer to hold scan start cmd parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
- struct scan_stop_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_scan_stop_cmd)
- return wmi_handle->ops->send_scan_stop_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_scan_chan_list_cmd_send() - WMI scan channel list function
- * @param wmi_handle : handle to WMI.
- * @param macaddr : MAC address
- * @param param : pointer to hold scan channel list parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
- struct scan_chan_list_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_scan_chan_list_cmd)
- return wmi_handle->ops->send_scan_chan_list_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_mgmt_unified_cmd_send() - management cmd over wmi layer
- * @wmi_hdl : handle to WMI.
- * @param : pointer to hold mgmt cmd parameter
- *
- * Return: 0 on success and -ve on failure.
- */
- QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
- struct wmi_mgmt_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_mgmt_cmd)
- return wmi_handle->ops->send_mgmt_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_modem_power_state() - set modem power state to fw
- * @wmi_hdl: wmi handle
- * @param_value: parameter value
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
- uint32_t param_value)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_modem_power_state_cmd)
- return wmi_handle->ops->send_modem_power_state_cmd(wmi_handle,
- param_value);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_sta_ps_mode() - set sta powersave params in fw
- * @wmi_hdl: wmi handle
- * @vdev_id: vdev id
- * @val: value
- *
- * Return: 0 for success or error code.
- */
- QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
- uint32_t vdev_id, uint8_t val)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_sta_ps_mode_cmd)
- return wmi_handle->ops->send_set_sta_ps_mode_cmd(wmi_handle,
- vdev_id, val);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_set_mimops() - set MIMO powersave
- * @wmi_hdl: wmi handle
- * @vdev_id: vdev id
- * @value: value
- *
- * Return: QDF_STATUS_SUCCESS for success or error code.
- */
- QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_mimops_cmd)
- return wmi_handle->ops->send_set_mimops_cmd(wmi_handle,
- vdev_id, value);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_set_smps_params() - set smps params
- * @wmi_hdl: wmi handle
- * @vdev_id: vdev id
- * @value: value
- *
- * Return: QDF_STATUS_SUCCESS for success or error code.
- */
- QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
- int value)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_smps_params_cmd)
- return wmi_handle->ops->send_set_smps_params_cmd(wmi_handle,
- vdev_id, value);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_set_p2pgo_oppps_req() - send p2p go opp power save request to fw
- * @wmi_hdl: wmi handle
- * @opps: p2p opp power save parameters
- *
- * Return: none
- */
- QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
- struct p2p_ps_params *oppps)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_p2pgo_oppps_req_cmd)
- return wmi_handle->ops->send_set_p2pgo_oppps_req_cmd(wmi_handle,
- oppps);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_p2pgo_noa_req_cmd() - send p2p go noa request to fw
- * @wmi_hdl: wmi handle
- * @noa: p2p power save parameters
- *
- * Return: none
- */
- QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
- struct p2p_ps_params *noa)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_p2pgo_noa_req_cmd)
- return wmi_handle->ops->send_set_p2pgo_noa_req_cmd(wmi_handle,
- noa);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_get_temperature() - get pdev temperature req
- * @wmi_hdl: wmi handle
- *
- * Return: QDF_STATUS_SUCCESS for success or error code.
- */
- QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_get_temperature_cmd)
- return wmi_handle->ops->send_get_temperature_cmd(wmi_handle);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_sta_uapsd_auto_trig_cmd() - set uapsd auto trigger command
- * @wmi_hdl: wmi handle
- * @end_set_sta_ps_mode_cmd: cmd paramter strcture
- *
- * This function sets the trigger
- * uapsd params such as service interval, delay interval
- * and suspend interval which will be used by the firmware
- * to send trigger frames periodically when there is no
- * traffic on the transmit side.
- *
- * Return: 0 for success or error code.
- */
- QDF_STATUS
- wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
- struct sta_uapsd_trig_params *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_sta_uapsd_auto_trig_cmd)
- return wmi_handle->ops->send_set_sta_uapsd_auto_trig_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_ocb_start_timing_advert() - start sending the timing advertisement
- * frames on a channel
- * @wmi_handle: pointer to the wmi handle
- * @timing_advert: pointer to the timing advertisement struct
- *
- * Return: 0 on succes
- */
- QDF_STATUS wmi_unified_ocb_start_timing_advert(void *wmi_hdl,
- struct ocb_timing_advert_param *timing_advert)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_ocb_start_timing_advert_cmd)
- return wmi_handle->ops->send_ocb_start_timing_advert_cmd(wmi_handle,
- timing_advert);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_ocb_stop_timing_advert() - stop sending the timing advertisement
- * frames on a channel
- * @wmi_handle: pointer to the wmi handle
- * @timing_advert: pointer to the timing advertisement struct
- *
- * Return: 0 on succes
- */
- QDF_STATUS wmi_unified_ocb_stop_timing_advert(void *wmi_hdl,
- struct ocb_timing_advert_param *timing_advert)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_ocb_stop_timing_advert_cmd)
- return wmi_handle->ops->send_ocb_stop_timing_advert_cmd(wmi_handle,
- timing_advert);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_ocb_set_utc_time_cmd() - get ocb tsf timer val
- * @wmi_handle: pointer to the wmi handle
- * @vdev_id: vdev id
- *
- * Return: 0 on succes
- */
- QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(void *wmi_hdl,
- struct ocb_utc_param *utc)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_ocb_set_utc_time_cmd)
- return wmi_handle->ops->send_ocb_set_utc_time_cmd(wmi_handle,
- utc);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_ocb_get_tsf_timer() - get ocb tsf timer val
- * @wmi_handle: pointer to the wmi handle
- * @vdev_id: vdev id
- *
- * Return: 0 on succes
- */
- QDF_STATUS wmi_unified_ocb_get_tsf_timer(void *wmi_hdl,
- uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_ocb_get_tsf_timer_cmd)
- return wmi_handle->ops->send_ocb_get_tsf_timer_cmd(wmi_handle,
- vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_dcc_get_stats_cmd() - get the DCC channel stats
- * @wmi_handle: pointer to the wmi handle
- * @get_stats_param: pointer to the dcc stats
- *
- * Return: 0 on succes
- */
- QDF_STATUS wmi_unified_dcc_get_stats_cmd(void *wmi_hdl,
- struct dcc_get_stats_param *get_stats_param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_dcc_get_stats_cmd)
- return wmi_handle->ops->send_dcc_get_stats_cmd(wmi_handle,
- get_stats_param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_dcc_clear_stats() - command to clear the DCC stats
- * @wmi_handle: pointer to the wmi handle
- * @clear_stats_param: parameters to the command
- *
- * Return: 0 on succes
- */
- QDF_STATUS wmi_unified_dcc_clear_stats(void *wmi_hdl,
- uint32_t vdev_id, uint32_t dcc_stats_bitmap)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_dcc_clear_stats_cmd)
- return wmi_handle->ops->send_dcc_clear_stats_cmd(wmi_handle,
- vdev_id, dcc_stats_bitmap);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_dcc_update_ndl() - command to update the NDL data
- * @wmi_handle: pointer to the wmi handle
- * @update_ndl_param: pointer to the request parameters
- *
- * Return: 0 on success
- */
- QDF_STATUS wmi_unified_dcc_update_ndl(void *wmi_hdl,
- struct dcc_update_ndl_param *update_ndl_param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_dcc_update_ndl_cmd)
- return wmi_handle->ops->send_dcc_update_ndl_cmd(wmi_handle,
- update_ndl_param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_ocb_set_config() - send the OCB config to the FW
- * @wmi_handle: pointer to the wmi handle
- * @config: the OCB configuration
- *
- * Return: 0 on success
- */
- QDF_STATUS wmi_unified_ocb_set_config(void *wmi_hdl,
- struct ocb_config_param *config, uint32_t *ch_mhz)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_ocb_set_config_cmd)
- return wmi_handle->ops->send_ocb_set_config_cmd(wmi_handle,
- config, ch_mhz);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd() - control mcc scheduler
- * @wmi_handle: wmi handle
- * @mcc_adaptive_scheduler: enable/disable
- *
- * This function enable/disable mcc adaptive scheduler in fw.
- *
- * Return: QDF_STATUS_SUCCESS for sucess or error code
- */
- QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
- void *wmi_hdl, uint32_t mcc_adaptive_scheduler)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_enable_disable_mcc_adaptive_scheduler_cmd)
- return wmi_handle->ops->send_set_enable_disable_mcc_adaptive_scheduler_cmd(wmi_handle,
- mcc_adaptive_scheduler);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_mcc_channel_time_latency_cmd() - set MCC channel time latency
- * @wmi: wmi handle
- * @mcc_channel: mcc channel
- * @mcc_channel_time_latency: MCC channel time latency.
- *
- * Currently used to set time latency for an MCC vdev/adapter using operating
- * channel of it and channel number. The info is provided run time using
- * iwpriv command: iwpriv <wlan0 | p2p0> setMccLatency <latency in ms>.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd(void *wmi_hdl,
- uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_mcc_channel_time_latency_cmd)
- return wmi_handle->ops->send_set_mcc_channel_time_latency_cmd(wmi_handle,
- mcc_channel_freq,
- mcc_channel_time_latency);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_mcc_channel_time_quota_cmd() - set MCC channel time quota
- * @wmi: wmi handle
- * @adapter_1_chan_number: adapter 1 channel number
- * @adapter_1_quota: adapter 1 quota
- * @adapter_2_chan_number: adapter 2 channel number
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd(void *wmi_hdl,
- uint32_t adapter_1_chan_freq,
- uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_mcc_channel_time_quota_cmd)
- return wmi_handle->ops->send_set_mcc_channel_time_quota_cmd(wmi_handle,
- adapter_1_chan_freq,
- adapter_1_quota,
- adapter_2_chan_freq);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_thermal_mgmt_cmd() - set thermal mgmt command to fw
- * @wmi_handle: Pointer to wmi handle
- * @thermal_info: Thermal command information
- *
- * This function sends the thermal management command
- * to the firmware
- *
- * Return: QDF_STATUS_SUCCESS for success otherwise failure
- */
- QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
- struct thermal_cmd_params *thermal_info)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_thermal_mgmt_cmd)
- return wmi_handle->ops->send_set_thermal_mgmt_cmd(wmi_handle,
- thermal_info);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_lro_config_cmd() - process the LRO config command
- * @wmi: Pointer to wmi handle
- * @wmi_lro_cmd: Pointer to LRO configuration parameters
- *
- * This function sends down the LRO configuration parameters to
- * the firmware to enable LRO, sets the TCP flags and sets the
- * seed values for the toeplitz hash generation
- *
- * Return: QDF_STATUS_SUCCESS for success otherwise failure
- */
- QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
- struct wmi_lro_config_cmd_t *wmi_lro_cmd)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_lro_config_cmd)
- return wmi_handle->ops->send_lro_config_cmd(wmi_handle,
- wmi_lro_cmd);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_bcn_buf_ll_cmd() - prepare and send beacon buffer to fw for LL
- * @wmi_hdl: wmi handle
- * @param: bcn ll cmd parameter
- *
- * Return: QDF_STATUS_SUCCESS for success otherwise failure
- */
- QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
- wmi_bcn_send_from_host_cmd_fixed_param *param)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_bcn_buf_ll_cmd)
- return wmi_handle->ops->send_bcn_buf_ll_cmd(wmi_handle,
- param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_sta_sa_query_param_cmd() - set sta sa query parameters
- * @wmi_hdl: wmi handle
- * @vdev_id: vdev id
- * @max_retries: max retries
- * @retry_interval: retry interval
- * This function sets sta query related parameters in fw.
- *
- * Return: QDF_STATUS_SUCCESS for success otherwise failure
- */
- QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
- uint8_t vdev_id, uint32_t max_retries,
- uint32_t retry_interval)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_sta_sa_query_param_cmd)
- return wmi_handle->ops->send_set_sta_sa_query_param_cmd(wmi_handle,
- vdev_id, max_retries,
- retry_interval);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_sta_keep_alive_cmd() - set sta keep alive parameters
- * @wmi_hdl: wmi handle
- * @params: sta keep alive parameter
- *
- * This function sets keep alive related parameters in fw.
- *
- * Return: none
- */
- QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
- struct sta_params *params)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_sta_keep_alive_cmd)
- return wmi_handle->ops->send_set_sta_keep_alive_cmd(wmi_handle,
- params);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_vdev_set_gtx_cfg_cmd() - set GTX params
- * @wmi_hdl: wmi handle
- * @if_id: vdev id
- * @gtx_info: GTX config params
- *
- * This function set GTX related params in firmware.
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
- struct wmi_gtx_config *gtx_info)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_vdev_set_gtx_cfg_cmd)
- return wmi_handle->ops->send_vdev_set_gtx_cfg_cmd(wmi_handle,
- if_id, gtx_info);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_update_edca_param() - update EDCA params
- * @wmi_hdl: wmi handle
- * @edca_params: edca parameters
- *
- * This function updates EDCA parameters to the target
- *
- * Return: CDF Status
- */
- QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
- uint8_t vdev_id,
- wmi_wmm_vparams gwmm_param[WMI_MAX_NUM_AC])
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_update_edca_param_cmd)
- return wmi_handle->ops->send_process_update_edca_param_cmd(wmi_handle,
- vdev_id, gwmm_param);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_probe_rsp_tmpl_send_cmd() - send probe response template to fw
- * @wmi_hdl: wmi handle
- * @vdev_id: vdev id
- * @probe_rsp_info: probe response info
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
- uint8_t vdev_id,
- struct wmi_probe_resp_params *probe_rsp_info,
- uint8_t *frm)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_probe_rsp_tmpl_send_cmd)
- return wmi_handle->ops->send_probe_rsp_tmpl_send_cmd(wmi_handle,
- vdev_id, probe_rsp_info,
- frm);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_p2p_go_set_beacon_ie_cmd() - set beacon IE for p2p go
- * @wma_handle: wma handle
- * @vdev_id: vdev id
- * @p2p_ie: p2p IE
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
- A_UINT32 vdev_id, uint8_t *p2p_ie)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_p2p_go_set_beacon_ie_cmd)
- return wmi_handle->ops->send_p2p_go_set_beacon_ie_cmd(wmi_handle,
- vdev_id, p2p_ie);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_gateway_params_cmd() - set gateway parameters
- * @wmi_hdl: wmi handle
- * @req: gateway parameter update request structure
- *
- * This function reads the incoming @req and fill in the destination
- * WMI structure and sends down the gateway configs down to the firmware
- *
- * Return: QDF_STATUS
- */
- QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
- struct gateway_update_req_param *req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_gateway_params_cmd)
- return wmi_handle->ops->send_set_gateway_params_cmd(wmi_handle,
- req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_rssi_monitoring_cmd() - set rssi monitoring
- * @wmi_hdl: wmi handle
- * @req: rssi monitoring request structure
- *
- * This function reads the incoming @req and fill in the destination
- * WMI structure and send down the rssi monitoring configs down to the firmware
- *
- * Return: 0 on success; error number otherwise
- */
- QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
- struct rssi_monitor_param *req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_pno_start_cmd)
- return wmi_handle->ops->send_set_rssi_monitoring_cmd(wmi_handle,
- req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_scan_probe_setoui_cmd() - set scan probe OUI
- * @wmi_hdl: wmi handle
- * @psetoui: OUI parameters
- *
- * set scan probe OUI parameters in firmware
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
- struct scan_mac_oui *psetoui)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_scan_probe_setoui_cmd)
- return wmi_handle->ops->send_scan_probe_setoui_cmd(wmi_handle,
- psetoui);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_reset_passpoint_network_list_cmd() - reset passpoint network list
- * @wmi_hdl: wmi handle
- * @req: passpoint network request structure
- *
- * This function sends down WMI command with network id set to wildcard id.
- * firmware shall clear all the config entries
- *
- * Return: QDF_STATUS enumeration
- */
- QDF_STATUS wmi_unified_reset_passpoint_network_list_cmd(void *wmi_hdl,
- struct wifi_passpoint_req_param *req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_reset_passpoint_network_list_cmd)
- return wmi_handle->ops->send_reset_passpoint_network_list_cmd(wmi_handle,
- req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_passpoint_network_list_cmd() - set passpoint network list
- * @wmi_hdl: wmi handle
- * @req: passpoint network request structure
- *
- * This function reads the incoming @req and fill in the destination
- * WMI structure and send down the passpoint configs down to the firmware
- *
- * Return: QDF_STATUS enumeration
- */
- QDF_STATUS wmi_unified_set_passpoint_network_list_cmd(void *wmi_hdl,
- struct wifi_passpoint_req_param *req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_passpoint_network_list_cmd)
- return wmi_handle->ops->send_set_passpoint_network_list_cmd(wmi_handle,
- req);
- return QDF_STATUS_E_FAILURE;
- }
- /** wmi_unified_set_epno_network_list_cmd() - set epno network list
- * @wmi_hdl: wmi handle
- * @req: epno config params request structure
- *
- * This function reads the incoming epno config request structure
- * and constructs the WMI message to the firmware.
- *
- * Returns: 0 on success, error number otherwise
- */
- QDF_STATUS wmi_unified_set_epno_network_list_cmd(void *wmi_hdl,
- struct wifi_enhanched_pno_params *req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_epno_network_list_cmd)
- return wmi_handle->ops->send_set_epno_network_list_cmd(wmi_handle,
- req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_roam_scan_offload_mode_cmd() - set roam scan parameters
- * @wmi_hdl: wmi handle
- * @scan_cmd_fp: scan related parameters
- * @roam_req: roam related parameters
- *
- * This function reads the incoming @roam_req and fill in the destination
- * WMI structure and send down the roam scan configs down to the firmware
- *
- * Return: QDF_STATUS enumeration
- */
- QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
- wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
- struct roam_offload_scan_params *roam_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_roam_scan_offload_mode_cmd)
- return wmi_handle->ops->send_roam_scan_offload_mode_cmd(
- wmi_handle, scan_cmd_fp, roam_req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_roam_scan_offload_rssi_thresh_cmd() - set roam scan rssi
- * parameters
- * @wmi_hdl: wmi handle
- * @roam_req: roam rssi related parameters
- *
- * This function reads the incoming @roam_req and fill in the destination
- * WMI structure and send down the roam scan rssi configs down to the firmware
- *
- * Return: QDF_STATUS enumeration
- */
- QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
- struct roam_offload_scan_rssi_params
- *roam_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_roam_scan_offload_rssi_thresh_cmd)
- return wmi_handle->ops->send_roam_scan_offload_rssi_thresh_cmd(
- wmi_handle, roam_req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_roam_scan_filter_cmd() - send roam scan whitelist,
- * blacklist and preferred list
- * @wmi_hdl: wmi handle
- * @roam_req: roam scan lists related parameters
- *
- * This function reads the incoming @roam_req and fill in the destination
- * WMI structure and send down the different roam scan lists down to the fw
- *
- * Return: QDF_STATUS enumeration
- */
- QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
- struct roam_scan_filter_params *roam_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_roam_scan_filter_cmd)
- return wmi_handle->ops->send_roam_scan_filter_cmd(
- wmi_handle, roam_req);
- return QDF_STATUS_E_FAILURE;
- }
- /** wmi_unified_ipa_offload_control_cmd() - ipa offload control parameter
- * @wmi_hdl: wmi handle
- * @ipa_offload: ipa offload control parameter
- *
- * Returns: 0 on success, error number otherwise
- */
- QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
- struct ipa_offload_control_params *ipa_offload)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_ipa_offload_control_cmd)
- return wmi_handle->ops->send_ipa_offload_control_cmd(wmi_handle,
- ipa_offload);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_extscan_get_capabilities_cmd() - extscan get capabilities
- * @wmi_hdl: wmi handle
- * @pgetcapab: get capabilities params
- *
- * This function send request to fw to get extscan capabilities.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_extscan_get_capabilities_cmd(void *wmi_hdl,
- struct extscan_capabilities_params *pgetcapab)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_extscan_get_capabilities_cmd)
- return wmi_handle->ops->send_extscan_get_capabilities_cmd(wmi_handle,
- pgetcapab);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_extscan_get_cached_results_cmd() - extscan get cached results
- * @wmi_hdl: wmi handle
- * @pcached_results: cached results parameters
- *
- * This function send request to fw to get cached results.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_extscan_get_cached_results_cmd(void *wmi_hdl,
- struct extscan_cached_result_params *pcached_results)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_extscan_get_cached_results_cmd)
- return wmi_handle->ops->send_extscan_get_cached_results_cmd(wmi_handle,
- pcached_results);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_extscan_stop_change_monitor_cmd() - send stop change monitor cmd
- * @wmi_hdl: wmi handle
- * @reset_req: Reset change request params
- *
- * This function sends stop change monitor request to fw.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_extscan_stop_change_monitor_cmd(void *wmi_hdl,
- struct extscan_capabilities_reset_params *reset_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_extscan_stop_change_monitor_cmd)
- return wmi_handle->ops->send_extscan_stop_change_monitor_cmd(wmi_handle,
- reset_req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_extscan_start_change_monitor_cmd() - start change monitor cmd
- * @wmi_hdl: wmi handle
- * @psigchange: change monitor request params
- *
- * This function sends start change monitor request to fw.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_extscan_start_change_monitor_cmd(void *wmi_hdl,
- struct extscan_set_sig_changereq_params *
- psigchange)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_extscan_start_change_monitor_cmd)
- return wmi_handle->ops->send_extscan_start_change_monitor_cmd(wmi_handle,
- psigchange);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_extscan_stop_hotlist_monitor_cmd() - stop hotlist monitor
- * @wmi_hdl: wmi handle
- * @photlist_reset: hotlist reset params
- *
- * This function configures hotlist monitor to stop in fw.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_extscan_stop_hotlist_monitor_cmd(void *wmi_hdl,
- struct extscan_bssid_hotlist_reset_params *photlist_reset)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_extscan_stop_hotlist_monitor_cmd)
- return wmi_handle->ops->send_extscan_stop_hotlist_monitor_cmd(wmi_handle,
- photlist_reset);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_stop_extscan_cmd() - stop extscan command to fw.
- * @wmi_hdl: wmi handle
- * @pstopcmd: stop scan command request params
- *
- * This function sends stop extscan request to fw.
- *
- * Return: CDF Status.
- */
- QDF_STATUS wmi_unified_stop_extscan_cmd(void *wmi_hdl,
- struct extscan_stop_req_params *pstopcmd)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_stop_extscan_cmd)
- return wmi_handle->ops->send_stop_extscan_cmd(wmi_handle,
- pstopcmd);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_start_extscan_cmd() - start extscan command to fw.
- * @wmi_hdl: wmi handle
- * @pstart: scan command request params
- *
- * This function sends start extscan request to fw.
- *
- * Return: CDF Status.
- */
- QDF_STATUS wmi_unified_start_extscan_cmd(void *wmi_hdl,
- struct wifi_scan_cmd_req_params *pstart)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_start_extscan_cmd)
- return wmi_handle->ops->send_start_extscan_cmd(wmi_handle,
- pstart);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_plm_stop_cmd() - plm stop request
- * @wmi_hdl: wmi handle
- * @plm: plm request parameters
- *
- * This function request FW to stop PLM.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
- const struct plm_req_params *plm)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_plm_stop_cmd)
- return wmi_handle->ops->send_plm_stop_cmd(wmi_handle,
- plm);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_plm_start_cmd() - plm start request
- * @wmi_hdl: wmi handle
- * @plm: plm request parameters
- *
- * This function request FW to start PLM.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
- const struct plm_req_params *plm,
- uint32_t *gchannel_list)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_plm_start_cmd)
- return wmi_handle->ops->send_plm_start_cmd(wmi_handle,
- plm, gchannel_list);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * send_pno_stop_cmd() - PNO stop request
- * @wmi_hdl: wmi handle
- * @vdev_id: vdev id
- *
- * This function request FW to stop ongoing PNO operation.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_pno_stop_cmd)
- return wmi_handle->ops->send_pno_stop_cmd(wmi_handle,
- vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_pno_start_cmd() - PNO start request
- * @wmi_hdl: wmi handle
- * @pno: PNO request
- * @gchannel_freq_list: channel frequency list
- *
- * This function request FW to start PNO request.
- * Request: CDF status
- */
- QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
- struct pno_scan_req_params *pno,
- uint32_t *gchannel_freq_list)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_pno_start_cmd)
- return wmi_handle->ops->send_pno_start_cmd(wmi_handle,
- pno, gchannel_freq_list);
- return QDF_STATUS_E_FAILURE;
- }
- /* wmi_unified_set_ric_req_cmd() - set ric request element
- * @wmi_hdl: wmi handle
- * @msg: message
- * @is_add_ts: is addts required
- *
- * This function sets ric request element for 11r roaming.
- *
- * Return: none
- */
- QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
- uint8_t is_add_ts)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_ric_req_cmd)
- return wmi_handle->ops->send_set_ric_req_cmd(wmi_handle, msg,
- is_add_ts);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_ll_stats_clear_cmd() - clear link layer stats
- * @wmi_hdl: wmi handle
- * @clear_req: ll stats clear request command params
- * @addr: mac address
- *
- * Return: QDF_STATUS_SUCCESS for success or error code
- */
- QDF_STATUS wmi_unified_process_ll_stats_clear_cmd(void *wmi_hdl,
- const struct ll_stats_clear_params *clear_req,
- uint8_t addr[IEEE80211_ADDR_LEN])
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_ll_stats_clear_cmd)
- return wmi_handle->ops->send_process_ll_stats_clear_cmd(wmi_handle,
- clear_req, addr);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_ll_stats_get_cmd() - link layer stats get request
- * @wmi_hdl:wmi handle
- * @get_req:ll stats get request command params
- *
- * Return: QDF_STATUS_SUCCESS for success or error code
- */
- QDF_STATUS wmi_unified_process_ll_stats_get_cmd(void *wmi_hdl,
- const struct ll_stats_get_params *get_req,
- uint8_t addr[IEEE80211_ADDR_LEN])
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_ll_stats_get_cmd)
- return wmi_handle->ops->send_process_ll_stats_get_cmd(wmi_handle,
- get_req, addr);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_get_stats_cmd() - get stats request
- * @wmi_hdl: wma handle
- * @get_stats_param: stats params
- * @addr: mac address
- *
- * Return: none
- */
- QDF_STATUS wmi_unified_get_stats_cmd(void *wmi_hdl,
- struct pe_stats_req *get_stats_param,
- uint8_t addr[IEEE80211_ADDR_LEN])
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_get_stats_cmd)
- return wmi_handle->ops->send_get_stats_cmd(wmi_handle,
- get_stats_param, addr);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_ll_stats_set_cmd() - link layer stats set request
- * @wmi_handle: wmi handle
- * @set_req: ll stats set request command params
- *
- * Return: QDF_STATUS_SUCCESS for success or error code
- */
- QDF_STATUS wmi_unified_process_ll_stats_set_cmd(void *wmi_hdl,
- const struct ll_stats_set_params *set_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_ll_stats_set_cmd)
- return wmi_handle->ops->send_process_ll_stats_set_cmd(wmi_handle,
- set_req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_snr_request_cmd() - send request to fw to get RSSI stats
- * @wmi_handle: wmi handle
- * @rssi_req: get RSSI request
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_snr_request_cmd)
- return wmi_handle->ops->send_snr_request_cmd(wmi_handle);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_snr_cmd() - get RSSI from fw
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_snr_cmd)
- return wmi_handle->ops->send_snr_cmd(wmi_handle,
- vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_link_status_req_cmd() - process link status request from UMAC
- * @wmi_handle: wmi handle
- * @link_status: get link params
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
- struct link_status_params *link_status)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_link_status_req_cmd)
- return wmi_handle->ops->send_link_status_req_cmd(wmi_handle,
- link_status);
- return QDF_STATUS_E_FAILURE;
- }
- #ifdef FEATURE_WLAN_LPHB
- /**
- * wmi_unified_lphb_config_hbenable_cmd() - enable command of LPHB configuration requests
- * @wmi_handle: wmi handle
- * @lphb_conf_req: configuration info
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_lphb_config_hbenable_cmd(void *wmi_hdl,
- wmi_hb_set_enable_cmd_fixed_param *params)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_lphb_config_hbenable_cmd)
- return wmi_handle->ops->send_lphb_config_hbenable_cmd(wmi_handle,
- params);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_lphb_config_tcp_params_cmd() - set tcp params of LPHB configuration requests
- * @wmi_handle: wmi handle
- * @lphb_conf_req: lphb config request
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_lphb_config_tcp_params_cmd(void *wmi_hdl,
- wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_lphb_config_tcp_params_cmd)
- return wmi_handle->ops->send_lphb_config_tcp_params_cmd(wmi_handle,
- lphb_conf_req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_lphb_config_tcp_pkt_filter_cmd() - configure tcp packet filter command of LPHB
- * @wmi_handle: wmi handle
- * @lphb_conf_req: lphb config request
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_lphb_config_tcp_pkt_filter_cmd(void *wmi_hdl,
- wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_lphb_config_tcp_pkt_filter_cmd)
- return wmi_handle->ops->send_lphb_config_tcp_pkt_filter_cmd(wmi_handle,
- g_hb_tcp_filter_fp);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_lphb_config_udp_params_cmd() - configure udp param command of LPHB
- * @wmi_handle: wmi handle
- * @lphb_conf_req: lphb config request
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_lphb_config_udp_params_cmd(void *wmi_hdl,
- wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_lphb_config_udp_params_cmd)
- return wmi_handle->ops->send_lphb_config_udp_params_cmd(wmi_handle,
- lphb_conf_req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_lphb_config_udp_pkt_filter_cmd() - configure udp pkt filter command of LPHB
- * @wmi_handle: wmi handle
- * @lphb_conf_req: lphb config request
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_lphb_config_udp_pkt_filter_cmd(void *wmi_hdl,
- wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_lphb_config_udp_pkt_filter_cmd)
- return wmi_handle->ops->send_lphb_config_udp_pkt_filter_cmd(wmi_handle,
- lphb_conf_req);
- return QDF_STATUS_E_FAILURE;
- }
- #endif /* FEATURE_WLAN_LPHB */
- /**
- * wmi_unified_process_dhcp_ind() - process dhcp indication from SME
- * @wmi_handle: wmi handle
- * @ta_dhcp_ind: DHCP indication parameter
- *
- * Return: CDF Status
- */
- QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
- wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_dhcp_ind_cmd)
- return wmi_handle->ops->send_process_dhcp_ind_cmd(wmi_handle,
- ta_dhcp_ind);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_get_link_speed_cmd() -send command to get linkspeed
- * @wmi_handle: wmi handle
- * @pLinkSpeed: link speed info
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
- wmi_mac_addr peer_macaddr)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_get_link_speed_cmd)
- return wmi_handle->ops->send_get_link_speed_cmd(wmi_handle,
- peer_macaddr);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_egap_conf_params_cmd() - send wmi cmd of egap configuration params
- * @wmi_handle: wmi handler
- * @egap_params: pointer to egap_params
- *
- * Return: 0 for success, otherwise appropriate error code
- */
- QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
- wmi_ap_ps_egap_param_cmd_fixed_param *egap_params)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_egap_conf_params_cmd)
- return wmi_handle->ops->send_egap_conf_params_cmd(wmi_handle,
- egap_params);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_fw_profiling_data_cmd() - send FW profiling cmd to WLAN FW
- * @wmi_handl: wmi handle
- * @cmd: Profiling command index
- * @value1: parameter1 value
- * @value2: parameter2 value
- *
- * Return: 0 for success else error code
- */
- QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
- uint32_t cmd, uint32_t value1, uint32_t value2)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_fw_profiling_cmd)
- return wmi_handle->ops->send_fw_profiling_cmd(wmi_handle,
- cmd, value1, value2);
- return QDF_STATUS_E_FAILURE;
- }
- #ifdef FEATURE_WLAN_RA_FILTERING
- /**
- * wmi_unified_wow_sta_ra_filter_cmd() - set RA filter pattern in fw
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_wow_sta_ra_filter_cmd(void *wmi_hdl,
- uint8_t vdev_id, uint8_t default_pattern,
- uint16_t rate_limit_interval)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_wow_sta_ra_filter_cmd)
- return wmi_handle->ops->send_wow_sta_ra_filter_cmd(wmi_handle,
- vdev_id, default_pattern, default_pattern);
- return QDF_STATUS_E_FAILURE;
- }
- #endif /* FEATURE_WLAN_RA_FILTERING */
- /**
- * wmi_unified_nat_keepalive_en_cmd() - enable NAT keepalive filter
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_nat_keepalive_en_cmd)
- return wmi_handle->ops->send_nat_keepalive_en_cmd(wmi_handle,
- vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_csa_offload_enable() - send CSA offload enable command
- * @wmi_hdl: wmi handle
- * @vdev_id: vdev id
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_csa_offload_enable_cmd)
- return wmi_handle->ops->send_csa_offload_enable_cmd(wmi_handle,
- vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_start_oem_data_cmd() - start OEM data request to target
- * @wmi_handle: wmi handle
- * @startOemDataReq: start request params
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
- uint8_t data_len,
- uint8_t *data)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_start_oem_data_cmd)
- return wmi_handle->ops->send_start_oem_data_cmd(wmi_handle,
- data_len, data);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_dfs_phyerr_filter_offload_en_cmd() - enable dfs phyerr filter
- * @wmi_handle: wmi handle
- * @dfs_phyerr_filter_offload: is dfs phyerr filter offload
- *
- * Send WMI_DFS_PHYERR_FILTER_ENA_CMDID or
- * WMI_DFS_PHYERR_FILTER_DIS_CMDID command
- * to firmware based on phyerr filtering
- * offload status.
- *
- * Return: 1 success, 0 failure
- */
- QDF_STATUS
- wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
- bool dfs_phyerr_filter_offload)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_dfs_phyerr_filter_offload_en_cmd)
- return wmi_handle->ops->send_dfs_phyerr_filter_offload_en_cmd(wmi_handle,
- dfs_phyerr_filter_offload);
- return QDF_STATUS_E_FAILURE;
- }
- #if !defined(REMOVE_PKT_LOG)
- /**
- * wmi_unified_pktlog_wmi_send_cmd() - send pktlog enable/disable command to target
- * @wmi_handle: wmi handle
- * @pktlog_event: pktlog event
- * @cmd_id: pktlog cmd id
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
- WMI_PKTLOG_EVENT pktlog_event,
- WMI_CMD_ID cmd_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_pktlog_wmi_send_cmd)
- return wmi_handle->ops->send_pktlog_wmi_send_cmd(wmi_handle,
- pktlog_event, pktlog_event);
- return QDF_STATUS_E_FAILURE;
- }
- #endif /* REMOVE_PKT_LOG */
- /**
- * wmi_unified_add_wow_wakeup_event_cmd() - Configures wow wakeup events.
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- * @bitmap: Event bitmap
- * @enable: enable/disable
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_add_wow_wakeup_event_cmd(void *wmi_hdl,
- uint32_t vdev_id,
- uint32_t bitmap,
- bool enable)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_add_wow_wakeup_event_cmd)
- return wmi_handle->ops->send_add_wow_wakeup_event_cmd(wmi_handle,
- vdev_id, vdev_id, vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_wow_patterns_to_fw_cmd() - Sends WOW patterns to FW.
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- * @ptrn_id: pattern id
- * @ptrn: pattern
- * @ptrn_len: pattern length
- * @ptrn_offset: pattern offset
- * @mask: mask
- * @mask_len: mask length
- * @user: true for user configured pattern and false for default pattern
- * @default_patterns: default patterns
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_wow_patterns_to_fw_cmd(void *wmi_hdl,
- uint8_t vdev_id, uint8_t ptrn_id,
- const uint8_t *ptrn, uint8_t ptrn_len,
- uint8_t ptrn_offset, const uint8_t *mask,
- uint8_t mask_len, bool user,
- uint8_t default_patterns)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_wow_patterns_to_fw_cmd)
- return wmi_handle->ops->send_wow_patterns_to_fw_cmd(wmi_handle,
- vdev_id, ptrn_id, ptrn,
- ptrn_len, ptrn_offset, mask,
- mask_len, user, default_patterns);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_wow_delete_pattern_cmd() - delete wow pattern in target
- * @wmi_handle: wmi handle
- * @ptrn_id: pattern id
- * @vdev_id: vdev id
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
- uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_wow_delete_pattern_cmd)
- return wmi_handle->ops->send_wow_delete_pattern_cmd(wmi_handle,
- ptrn_id, vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_host_wakeup_ind_to_fw_cmd() - send wakeup ind to fw
- * @wmi_handle: wmi handle
- *
- * Sends host wakeup indication to FW. On receiving this indication,
- * FW will come out of WOW.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_host_wakeup_ind_to_fw_cmd)
- return wmi_handle->ops->send_host_wakeup_ind_to_fw_cmd(wmi_handle);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_del_ts_cmd() - send DELTS request to fw
- * @wmi_handle: wmi handle
- * @msg: delts params
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
- uint8_t ac)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_del_ts_cmd)
- return wmi_handle->ops->send_del_ts_cmd(wmi_handle,
- vdev_id, ac);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_aggr_qos_cmd() - send aggr qos request to fw
- * @wmi_handle: handle to wmi
- * @aggr_qos_rsp_msg - combined struct for all ADD_TS requests.
- *
- * A function to handle WMI_AGGR_QOS_REQ. This will send out
- * ADD_TS requestes to firmware in loop for all the ACs with
- * active flow.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
- struct aggr_add_ts_param *aggr_qos_rsp_msg)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_aggr_qos_cmd)
- return wmi_handle->ops->send_aggr_qos_cmd(wmi_handle,
- aggr_qos_rsp_msg);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_add_ts_cmd() - send ADDTS request to fw
- * @wmi_handle: wmi handle
- * @msg: ADDTS params
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
- struct add_ts_param *msg)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_add_ts_cmd)
- return wmi_handle->ops->send_add_ts_cmd(wmi_handle,
- msg);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_enable_disable_packet_filter_cmd() - enable/disable packet filter in target
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- * @enable: Flag to enable/disable packet filter
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_enable_disable_packet_filter_cmd(void *wmi_hdl,
- uint8_t vdev_id, bool enable)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_enable_disable_packet_filter_cmd)
- return wmi_handle->ops->send_enable_disable_packet_filter_cmd(wmi_handle,
- vdev_id, vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_config_packet_filter_cmd() - configure packet filter in target
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- * @rcv_filter_param: Packet filter parameters
- * @filter_id: Filter id
- * @enable: Flag to add/delete packet filter configuration
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_config_packet_filter_cmd(void *wmi_hdl,
- uint8_t vdev_id, struct rcv_pkt_filter_config *rcv_filter_param,
- uint8_t filter_id, bool enable)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_config_packet_filter_cmd)
- return wmi_handle->ops->send_config_packet_filter_cmd(wmi_handle,
- vdev_id, rcv_filter_param,
- filter_id, enable);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_add_clear_mcbc_filter_cmd() - set mcast filter command to fw
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- * @multicastAddr: mcast address
- * @clearList: clear list flag
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_add_clear_mcbc_filter_cmd(void *wmi_hdl,
- uint8_t vdev_id,
- struct qdf_mac_addr multicast_addr,
- bool clearList)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_add_clear_mcbc_filter_cmd)
- return wmi_handle->ops->send_add_clear_mcbc_filter_cmd(wmi_handle,
- vdev_id, multicast_addr, clearList);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_send_gtk_offload_cmd() - send GTK offload command to fw
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- * @params: GTK offload parameters
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_send_gtk_offload_cmd(void *wmi_hdl, uint8_t vdev_id,
- struct gtk_offload_params *params,
- bool enable_offload,
- uint32_t gtk_offload_opcode)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_gtk_offload_cmd)
- return wmi_handle->ops->send_gtk_offload_cmd(wmi_handle,
- vdev_id, params,
- enable_offload, gtk_offload_opcode);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_gtk_offload_getinfo_cmd() - send GTK offload cmd to fw
- * @wmi_handle: wmi handle
- * @params: GTK offload params
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_process_gtk_offload_getinfo_cmd(void *wmi_hdl,
- uint8_t vdev_id,
- uint64_t offload_req_opcode)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_gtk_offload_getinfo_cmd)
- return wmi_handle->ops->send_process_gtk_offload_getinfo_cmd(wmi_handle,
- vdev_id,
- offload_req_opcode);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_add_periodic_tx_ptrn_cmd - add periodic tx ptrn
- * @wmi_handle: wmi handle
- * @pAddPeriodicTxPtrnParams: tx ptrn params
- *
- * Retrun: CDF status
- */
- QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
- struct periodic_tx_pattern *
- pAddPeriodicTxPtrnParams,
- uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_add_periodic_tx_ptrn_cmd)
- return wmi_handle->ops->send_process_add_periodic_tx_ptrn_cmd(wmi_handle,
- pAddPeriodicTxPtrnParams,
- vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_del_periodic_tx_ptrn_cmd - del periodic tx ptrn
- * @wmi_handle: wmi handle
- * @vdev_id: vdev id
- * @pattern_id: pattern id
- *
- * Retrun: CDF status
- */
- QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
- uint8_t vdev_id,
- uint8_t pattern_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_del_periodic_tx_ptrn_cmd)
- return wmi_handle->ops->send_process_del_periodic_tx_ptrn_cmd(wmi_handle,
- vdev_id,
- pattern_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_stats_ext_req_cmd() - request ext stats from fw
- * @wmi_handle: wmi handle
- * @preq: stats ext params
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
- struct stats_ext_params *preq)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_stats_ext_req_cmd)
- return wmi_handle->ops->send_stats_ext_req_cmd(wmi_handle,
- preq);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_enable_ext_wow_cmd() - enable ext wow in fw
- * @wmi_handle: wmi handle
- * @params: ext wow params
- *
- * Return:0 for success or error code
- */
- QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
- struct ext_wow_params *params)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_enable_ext_wow_cmd)
- return wmi_handle->ops->send_enable_ext_wow_cmd(wmi_handle,
- params);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_app_type2_params_in_fw_cmd() - set app type2 params in fw
- * @wmi_handle: wmi handle
- * @appType2Params: app type2 params
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
- struct app_type2_params *appType2Params)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_app_type2_params_in_fw_cmd)
- return wmi_handle->ops->send_set_app_type2_params_in_fw_cmd(wmi_handle,
- appType2Params);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_auto_shutdown_timer_cmd() - sets auto shutdown timer in firmware
- * @wmi_handle: wmi handle
- * @timer_val: auto shutdown timer value
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
- uint32_t timer_val)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_auto_shutdown_timer_cmd)
- return wmi_handle->ops->send_set_auto_shutdown_timer_cmd(wmi_handle,
- timer_val);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_nan_req_cmd() - to send nan request to target
- * @wmi_handle: wmi handle
- * @nan_req: request data which will be non-null
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
- struct nan_req_params *nan_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_nan_req_cmd)
- return wmi_handle->ops->send_nan_req_cmd(wmi_handle,
- nan_req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_dhcpserver_offload_cmd() - enable DHCP server offload
- * @wmi_handle: wmi handle
- * @pDhcpSrvOffloadInfo: DHCP server offload info
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
- struct dhcp_offload_info_params *pDhcpSrvOffloadInfo)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_dhcpserver_offload_cmd)
- return wmi_handle->ops->send_process_dhcpserver_offload_cmd(wmi_handle,
- pDhcpSrvOffloadInfo);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_ch_avoid_update_cmd() - handles channel avoid update request
- * @wmi_handle: wmi handle
- * @ch_avoid_update_req: channel avoid update params
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_ch_avoid_update_cmd)
- return wmi_handle->ops->send_process_ch_avoid_update_cmd(wmi_handle);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_send_regdomain_info_to_fw_cmd() - send regdomain info to fw
- * @wmi_handle: wmi handle
- * @reg_dmn: reg domain
- * @regdmn2G: 2G reg domain
- * @regdmn5G: 5G reg domain
- * @ctl2G: 2G test limit
- * @ctl5G: 5G test limit
- *
- * Return: none
- */
- QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
- uint32_t reg_dmn, uint16_t regdmn2G,
- uint16_t regdmn5G, int8_t ctl2G,
- int8_t ctl5G)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_regdomain_info_to_fw_cmd)
- return wmi_handle->ops->send_regdomain_info_to_fw_cmd(wmi_handle,
- reg_dmn, regdmn2G,
- regdmn5G, ctl2G,
- ctl5G);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_tdls_offchan_mode_cmd() - set tdls off channel mode
- * @wmi_handle: wmi handle
- * @chan_switch_params: Pointer to tdls channel switch parameter structure
- *
- * This function sets tdls off channel mode
- *
- * Return: 0 on success; Negative errno otherwise
- */
- QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
- struct tdls_channel_switch_params *chan_switch_params)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_tdls_offchan_mode_cmd)
- return wmi_handle->ops->send_set_tdls_offchan_mode_cmd(wmi_handle,
- chan_switch_params);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_update_fw_tdls_state_cmd() - send enable/disable tdls for a vdev
- * @wmi_handle: wmi handle
- * @pwmaTdlsparams: TDLS params
- *
- * Return: 0 for sucess or error code
- */
- QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
- void *tdls_param, uint8_t tdls_state)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_update_fw_tdls_state_cmd)
- return wmi_handle->ops->send_update_fw_tdls_state_cmd(wmi_handle,
- tdls_param, tdls_state);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_update_tdls_peer_state_cmd() - update TDLS peer state
- * @wmi_handle: wmi handle
- * @peerStateParams: TDLS peer state params
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
- struct tdls_peer_state_params *peerStateParams,
- uint32_t *ch_mhz)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_update_tdls_peer_state_cmd)
- return wmi_handle->ops->send_update_tdls_peer_state_cmd(wmi_handle,
- peerStateParams, ch_mhz);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_fw_mem_dump_cmd() - Function to request fw memory dump from
- * firmware
- * @wmi_handle: Pointer to wmi handle
- * @mem_dump_req: Pointer for mem_dump_req
- *
- * This function sends memory dump request to firmware
- *
- * Return: QDF_STATUS_SUCCESS for success otherwise failure
- *
- */
- QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
- struct fw_dump_req_param *mem_dump_req)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_fw_mem_dump_cmd)
- return wmi_handle->ops->send_process_fw_mem_dump_cmd(wmi_handle,
- mem_dump_req);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_process_set_ie_info_cmd() - Function to send IE info to firmware
- * @wmi_handle: Pointer to WMi handle
- * @ie_data: Pointer for ie data
- *
- * This function sends IE information to firmware
- *
- * Return: QDF_STATUS_SUCCESS for success otherwise failure
- *
- */
- QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
- struct vdev_ie_info_param *ie_info)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_set_ie_info_cmd)
- return wmi_handle->ops->send_process_set_ie_info_cmd(wmi_handle,
- ie_info);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_send_init_cmd() - wmi init command
- * @wmi_handle: pointer to wmi handle
- * @res_cfg: resource config
- * @num_mem_chunks: no of mem chunck
- * @mem_chunk: pointer to mem chunck structure
- *
- * This function sends IE information to firmware
- *
- * Return: QDF_STATUS_SUCCESS for success otherwise failure
- *
- */
- QDF_STATUS wmi_unified_send_init_cmd(void *wmi_hdl,
- wmi_resource_config *res_cfg,
- uint8_t num_mem_chunks, struct wmi_host_mem_chunk *mem_chunk,
- bool action)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_init_cmd)
- return wmi_handle->ops->send_init_cmd(wmi_handle,
- res_cfg, num_mem_chunks, mem_chunk, action);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_send_saved_init_cmd() - wmi init command
- * @wmi_handle: pointer to wmi handle
- *
- * This function sends IE information to firmware
- *
- * Return: QDF_STATUS_SUCCESS for success otherwise failure
- *
- */
- QDF_STATUS wmi_unified_send_saved_init_cmd(void *wmi_hdl)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_saved_init_cmd)
- return wmi_handle->ops->send_saved_init_cmd(wmi_handle);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_save_fw_version_cmd() - save fw version
- * @wmi_handle: pointer to wmi handle
- * @res_cfg: resource config
- * @num_mem_chunks: no of mem chunck
- * @mem_chunk: pointer to mem chunck structure
- *
- * This function sends IE information to firmware
- *
- * Return: QDF_STATUS_SUCCESS for success otherwise failure
- *
- */
- QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
- void *evt_buf)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->save_fw_version_cmd)
- return wmi_handle->ops->save_fw_version_cmd(wmi_handle,
- evt_buf);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * send_set_base_macaddr_indicate_cmd() - set base mac address in fw
- * @wmi_hdl: wmi handle
- * @custom_addr: base mac address
- *
- * Return: 0 for success or error code
- */
- QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
- uint8_t *custom_addr)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_base_macaddr_indicate_cmd)
- return wmi_handle->ops->send_set_base_macaddr_indicate_cmd(wmi_handle,
- custom_addr);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_log_supported_evt_cmd() - Enable/Disable FW diag/log events
- * @wmi_hdl: wmi handle
- * @event: Event received from FW
- * @len: Length of the event
- *
- * Enables the low frequency events and disables the high frequency
- * events. Bit 17 indicates if the event if low/high frequency.
- * 1 - high frequency, 0 - low frequency
- *
- * Return: 0 on successfully enabling/disabling the events
- */
- QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
- uint8_t *event,
- uint32_t len)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_log_supported_evt_cmd)
- return wmi_handle->ops->send_log_supported_evt_cmd(wmi_handle,
- event, len);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_enable_specific_fw_logs_cmd() - Start/Stop logging of diag log id
- * @wmi_hdl: wmi handle
- * @start_log: Start logging related parameters
- *
- * Send the command to the FW based on which specific logging of diag
- * event/log id can be started/stopped
- *
- * Return: None
- */
- QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
- struct wmi_wifi_start_log *start_log)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_enable_specific_fw_logs_cmd)
- return wmi_handle->ops->send_enable_specific_fw_logs_cmd(wmi_handle,
- start_log);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_flush_logs_to_fw_cmd() - Send log flush command to FW
- * @wmi_hdl: WMI handle
- *
- * This function is used to send the flush command to the FW,
- * that will flush the fw logs that are residue in the FW
- *
- * Return: None
- */
- QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_flush_logs_to_fw_cmd)
- return wmi_handle->ops->send_flush_logs_to_fw_cmd(wmi_handle);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_soc_set_pcl_cmd() - Send WMI_SOC_SET_PCL_CMDID to FW
- * @wmi_hdl: wmi handle
- * @msg: PCL structure containing the PCL and the number of channels
- *
- * WMI_SOC_SET_PCL_CMDID provides a Preferred Channel List (PCL) to the WLAN
- * firmware. The DBS Manager is the consumer of this information in the WLAN
- * firmware. The channel list will be used when a Virtual DEVice (VDEV) needs
- * to migrate to a new channel without host driver involvement. An example of
- * this behavior is Legacy Fast Roaming (LFR 3.0). Generally, the host will
- * manage the channel selection without firmware involvement.
- *
- * Return: Success if the cmd is sent successfully to the firmware
- */
- QDF_STATUS wmi_unified_soc_set_pcl_cmd(void *wmi_hdl,
- struct wmi_pcl_list *msg)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_soc_set_pcl_cmd)
- return wmi_handle->ops->send_soc_set_pcl_cmd(wmi_handle, msg);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_soc_set_hw_mode_cmd() - Send WMI_SOC_SET_HW_MODE_CMDID to FW
- * @wmi_hdl: wmi handle
- * @msg: Structure containing the following parameters
- *
- * - hw_mode_index: The HW_Mode field is a enumerated type that is selected
- * from the HW_Mode table, which is returned in the WMI_SERVICE_READY_EVENTID.
- *
- * Provides notification to the WLAN firmware that host driver is requesting a
- * HardWare (HW) Mode change. This command is needed to support iHelium in the
- * configurations that include the Dual Band Simultaneous (DBS) feature.
- *
- * Return: Success if the cmd is sent successfully to the firmware
- */
- QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
- uint32_t hw_mode_index)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_soc_set_hw_mode_cmd)
- return wmi_handle->ops->send_soc_set_hw_mode_cmd(wmi_handle,
- hw_mode_index);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_soc_set_dual_mac_config_cmd() - Set dual mac config to FW
- * @wmi_hdl: wmi handle
- * @msg: Dual MAC config parameters
- *
- * Configures WLAN firmware with the dual MAC features
- *
- * Return: QDF_STATUS. 0 on success.
- */
- QDF_STATUS wmi_unified_soc_set_dual_mac_config_cmd(void *wmi_hdl,
- struct wmi_dual_mac_config *msg)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_soc_set_dual_mac_config_cmd)
- return wmi_handle->ops->send_soc_set_dual_mac_config_cmd(wmi_handle,
- msg);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_enable_arp_ns_offload_cmd() - enable ARP NS offload
- * @wmi_hdl: wmi handle
- * @param: offload request
- * @arp_only: flag
- *
- * To configure ARP NS off load data to firmware
- * when target goes to wow mode.
- *
- * Return: CDF Status
- */
- QDF_STATUS wmi_unified_enable_arp_ns_offload_cmd(void *wmi_hdl,
- struct host_offload_req_param *param, bool arp_only,
- uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_enable_arp_ns_offload_cmd)
- return wmi_handle->ops->send_enable_arp_ns_offload_cmd(wmi_handle,
- param, arp_only,
- vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_led_flashing_cmd() - set led flashing in fw
- * @wmi_hdl: wmi handle
- * @flashing: flashing request
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
- struct flashing_req_params *flashing)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_led_flashing_cmd)
- return wmi_handle->ops->send_set_led_flashing_cmd(wmi_handle,
- flashing);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_app_type1_params_in_fw_cmd() - set app type1 params in fw
- * @wmi_hdl: wmi handle
- * @appType1Params: app type1 params
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
- struct app_type1_params *app_type1_params)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_app_type1_params_in_fw_cmd)
- return wmi_handle->ops->send_app_type1_params_in_fw_cmd(wmi_handle,
- app_type1_params);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_set_ssid_hotlist_cmd() - Handle an SSID hotlist set request
- * @wmi_hdl: wmi handle
- * @request: SSID hotlist set request
- *
- * Return: QDF_STATUS enumeration
- */
- QDF_STATUS
- wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
- struct ssid_hotlist_request_params *request)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_set_ssid_hotlist_cmd)
- return wmi_handle->ops->send_set_ssid_hotlist_cmd(wmi_handle,
- request);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_roam_synch_complete_cmd() - roam synch complete command to fw.
- * @wmi_hdl: wmi handle
- * @vdev_id: vdev id
- *
- * This function sends roam synch complete event to fw.
- *
- * Return: CDF STATUS
- */
- QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
- uint8_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_process_roam_synch_complete_cmd)
- return wmi_handle->ops->send_process_roam_synch_complete_cmd(wmi_handle,
- vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_unit_test_cmd() - send unit test command to fw.
- * @wmi_hdl: wmi handle
- * @wmi_utest: unit test command
- *
- * This function send unit test command to fw.
- *
- * Return: CDF STATUS
- */
- QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
- struct wmi_unit_test_cmd *wmi_utest)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_unit_test_cmd)
- return wmi_handle->ops->send_unit_test_cmd(wmi_handle,
- wmi_utest);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified__roam_invoke_cmd() - send roam invoke command to fw.
- * @wmi_hdl: wmi handle
- * @roaminvoke: roam invoke command
- *
- * Send roam invoke command to fw for fastreassoc.
- *
- * Return: none
- */
- QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
- struct wmi_roam_invoke_cmd *roaminvoke,
- uint32_t ch_hz)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_roam_invoke_cmd)
- return wmi_handle->ops->send_roam_invoke_cmd(wmi_handle,
- roaminvoke, ch_hz);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_roam_scan_offload_cmd() - set roam offload command
- * @wmi_hdl: wmi handle
- * @command: command
- * @vdev_id: vdev id
- *
- * This function set roam offload command to fw.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
- uint32_t command, uint32_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_roam_scan_offload_cmd)
- return wmi_handle->ops->send_roam_scan_offload_cmd(wmi_handle,
- command, vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_send_roam_scan_offload_ap_cmd() - set roam ap profile in fw
- * @wmi_hdl: wmi handle
- * @ap_profile_p: ap profile
- * @vdev_id: vdev id
- *
- * Send WMI_ROAM_AP_PROFILE to firmware
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
- wmi_ap_profile *ap_profile_p,
- uint32_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_roam_scan_offload_ap_profile_cmd)
- return wmi_handle->ops->send_roam_scan_offload_ap_profile_cmd(wmi_handle,
- ap_profile_p, vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_roam_scan_offload_scan_period() - set roam offload scan period
- * @wmi_handle: wmi handle
- * @scan_period: scan period
- * @scan_age: scan age
- * @vdev_id: vdev id
- *
- * Send WMI_ROAM_SCAN_PERIOD parameters to fw.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
- uint32_t scan_period,
- uint32_t scan_age,
- uint32_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_roam_scan_offload_scan_period_cmd)
- return wmi_handle->ops->send_roam_scan_offload_scan_period_cmd(wmi_handle,
- scan_period, scan_age, vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_roam_scan_offload_chan_list_cmd() - set roam offload channel list
- * @wmi_handle: wmi handle
- * @chan_count: channel count
- * @chan_list: channel list
- * @list_type: list type
- * @vdev_id: vdev id
- *
- * Set roam offload channel list.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
- uint8_t chan_count,
- uint8_t *chan_list,
- uint8_t list_type, uint32_t vdev_id)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_roam_scan_offload_chan_list_cmd)
- return wmi_handle->ops->send_roam_scan_offload_chan_list_cmd(wmi_handle,
- chan_count, chan_list,
- list_type, vdev_id);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_roam_scan_offload_rssi_change_cmd() - set roam offload RSSI th
- * @wmi_hdl: wmi handle
- * @rssi_change_thresh: RSSI Change threshold
- * @bcn_rssi_weight: beacon RSSI weight
- * @vdev_id: vdev id
- *
- * Send WMI_ROAM_SCAN_RSSI_CHANGE_THRESHOLD parameters to fw.
- *
- * Return: CDF status
- */
- QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
- uint32_t vdev_id,
- int32_t rssi_change_thresh,
- uint32_t bcn_rssi_weight,
- uint32_t hirssi_delay_btw_scans)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_roam_scan_offload_rssi_change_cmd)
- return wmi_handle->ops->send_roam_scan_offload_rssi_change_cmd(wmi_handle,
- vdev_id, rssi_change_thresh,
- bcn_rssi_weight, hirssi_delay_btw_scans);
- return QDF_STATUS_E_FAILURE;
- }
- /**
- * wmi_unified_get_buf_extscan_hotlist_cmd() - prepare hotlist command
- * @wmi_hdl: wmi handle
- * @photlist: hotlist command params
- * @buf_len: buffer length
- *
- * This function fills individual elements for hotlist request and
- * TLV for bssid entries
- *
- * Return: CDF Status.
- */
- QDF_STATUS wmi_unified_get_buf_extscan_hotlist_cmd(void *wmi_hdl,
- struct ext_scan_setbssi_hotlist_params *
- photlist, int *buf_len)
- {
- wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
- if (wmi_handle->ops->send_get_buf_extscan_hotlist_cmd)
- return wmi_handle->ops->send_get_buf_extscan_hotlist_cmd(wmi_handle,
- photlist, buf_len);
- return QDF_STATUS_E_FAILURE;
- }
|