wmi_unified_param.h 324 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044
  1. /*
  2. * Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for
  6. * any purpose with or without fee is hereby granted, provided that the
  7. * above copyright notice and this permission notice appear in all
  8. * copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  11. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  12. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  13. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  14. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  15. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  17. * PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. /*
  20. * This file contains the API definitions for the Unified Wireless Module
  21. * Interface (WMI).
  22. */
  23. #ifndef _WMI_UNIFIED_PARAM_H_
  24. #define _WMI_UNIFIED_PARAM_H_
  25. #include <wlan_scan_public_structs.h>
  26. #ifdef FEATURE_WLAN_TDLS
  27. #include <wlan_tdls_public_structs.h>
  28. #endif
  29. #ifdef WLAN_CONV_SPECTRAL_ENABLE
  30. #include <wlan_spectral_public_structs.h>
  31. #endif /* WLAN_CONV_SPECTRAL_ENABLE */
  32. #include "wifi_pos_public_struct.h"
  33. #include <wlan_vdev_mgr_tgt_if_tx_defs.h>
  34. #include <wlan_vdev_mgr_tgt_if_rx_defs.h>
  35. #include <reg_services_public_struct.h>
  36. #ifndef ENABLE_HOST_TO_TARGET_CONVERSION
  37. #include <wmi_unified.h>
  38. #endif
  39. #include <wlan_objmgr_vdev_obj.h>
  40. #define MAC_MAX_KEY_LENGTH 32
  41. #define MAC_PN_LENGTH 8
  42. #define MAX_MAC_HEADER_LEN 32
  43. #define MIN_MAC_HEADER_LEN 24
  44. #define QOS_CONTROL_LEN 2
  45. #define WMI_MAC_MAX_SSID_LENGTH 32
  46. #ifndef CONFIG_HL_SUPPORT
  47. #define mgmt_tx_dl_frm_len 64
  48. #else
  49. #define mgmt_tx_dl_frm_len 1532
  50. #endif
  51. #define WMI_SMPS_MASK_LOWER_16BITS 0xFF
  52. #define WMI_SMPS_MASK_UPPER_3BITS 0x7
  53. #define WMI_SMPS_PARAM_VALUE_S 29
  54. #define WMI_UNIT_TEST_MAX_NUM_ARGS 100
  55. /* The size of the utc time in bytes. */
  56. #define WMI_SIZE_UTC_TIME (10)
  57. /* The size of the utc time error in bytes. */
  58. #define WMI_SIZE_UTC_TIME_ERROR (5)
  59. #ifdef WLAN_MCC_MIN_CHANNEL_QUOTA
  60. #define WMI_MCC_MIN_CHANNEL_QUOTA WLAN_MCC_MIN_CHANNEL_QUOTA
  61. #define WMI_MCC_MAX_CHANNEL_QUOTA (100 - WLAN_MCC_MIN_CHANNEL_QUOTA)
  62. #else
  63. #define WMI_MCC_MIN_CHANNEL_QUOTA 20
  64. #define WMI_MCC_MAX_CHANNEL_QUOTA 80
  65. #endif
  66. #define WMI_MCC_MIN_NON_ZERO_CHANNEL_LATENCY 30
  67. #ifdef WMI_AP_SUPPORT
  68. #define WMI_BEACON_TX_BUFFER_SIZE (2500)
  69. #else
  70. #define WMI_BEACON_TX_BUFFER_SIZE (512)
  71. #endif
  72. #define WMI_WIFI_SCANNING_MAC_OUI_LENGTH 3
  73. #define WMI_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS 64
  74. #define WMI_RSSI_THOLD_DEFAULT -300
  75. #define WMI_NLO_FREQ_THRESH 1000
  76. #define WMI_SEC_TO_MSEC(sec) (sec * 1000)
  77. #define WMI_MSEC_TO_USEC(msec) (msec * 1000)
  78. #define WMI_ETH_LEN 64
  79. #define WMI_QOS_NUM_TSPEC_MAX 2
  80. #define WMI_IPV4_ADDR_LEN 4
  81. #define WMI_KEEP_ALIVE_NULL_PKT 1
  82. #define WMI_KEEP_ALIVE_UNSOLICIT_ARP_RSP 2
  83. #define WMI_KEEP_ALIVE_MGMT_FRAME 5
  84. #define WMI_MAC_MAX_KEY_LENGTH 32
  85. #define WMI_KRK_KEY_LEN 16
  86. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  87. #define WMI_BTK_KEY_LEN 32
  88. #define WMI_ROAM_R0KH_ID_MAX_LEN 48
  89. #endif
  90. #define WMI_NOISE_FLOOR_DBM_DEFAULT (-96)
  91. #define WMI_EXTSCAN_MAX_HOTLIST_SSIDS 8
  92. #define WMI_ROAM_MAX_CHANNELS 80
  93. #ifdef FEATURE_WLAN_EXTSCAN
  94. #define WMI_MAX_EXTSCAN_MSG_SIZE 1536
  95. #define WMI_EXTSCAN_REST_TIME 100
  96. #define WMI_EXTSCAN_MAX_SCAN_TIME 50000
  97. #define WMI_EXTSCAN_BURST_DURATION 150
  98. #endif
  99. #define WMI_SCAN_NPROBES_DEFAULT (2)
  100. #define WMI_SEC_TO_MSEC(sec) (sec * 1000) /* sec to msec */
  101. #define WMI_MSEC_TO_USEC(msec) (msec * 1000) /* msec to usec */
  102. #define WMI_NLO_FREQ_THRESH 1000 /* in MHz */
  103. #define WMI_SVC_MSG_MAX_SIZE 1536
  104. #define MAX_UTF_EVENT_LENGTH 2048
  105. #define MAX_WMI_UTF_LEN 252
  106. #define MAX_WMI_QVIT_LEN 252
  107. #define THERMAL_LEVELS 4
  108. #define WMI_HOST_BCN_FLT_MAX_SUPPORTED_IES 256
  109. #define WMI_HOST_BCN_FLT_MAX_ELEMS_IE_LIST \
  110. (WMI_HOST_BCN_FLT_MAX_SUPPORTED_IES/32)
  111. #define LTEU_MAX_BINS 10
  112. #define ATF_ACTIVED_MAX_CLIENTS 50
  113. #define ATF_ACTIVED_MAX_ATFGROUPS 16
  114. #define CTL_5G_SIZE 1536
  115. #define CTL_2G_SIZE 684
  116. #define MAX_CTL_SIZE (CTL_5G_SIZE > CTL_2G_SIZE ? CTL_5G_SIZE : CTL_2G_SIZE)
  117. #define MAX_PWTAB_SIZE 3392
  118. #define IEEE80211_MICBUF_SIZE (8+8)
  119. #define IEEE80211_TID_SIZE 17
  120. #define WME_NUM_AC 4
  121. #define SMART_ANT_MODE_SERIAL 0
  122. #define SMART_ANT_MODE_PARALLEL 1
  123. #define IEEE80211_WEP_NKID 4 /* number of key ids */
  124. #define WPI_IV_LEN 16
  125. #define WMI_SCAN_MAX_NUM_BSSID 10
  126. #define MAX_CHANS 1023
  127. #define TARGET_OEM_CONFIGURE_LCI 0x0A
  128. #define RTT_LCI_ALTITUDE_MASK 0x3FFFFFFF
  129. #define TARGET_OEM_CONFIGURE_LCR 0x09
  130. #define RTT_TIMEOUT_MS 180
  131. #define MAX_SUPPORTED_RATES 128
  132. #define WMI_HOST_MAX_BUFFER_SIZE 1712
  133. #define WMI_HAL_MAX_SANTENNA 4
  134. #define WMI_HOST_PDEV_VI_PRIORITY_BIT (1<<2)
  135. #define WMI_HOST_PDEV_BEACON_PRIORITY_BIT (1<<4)
  136. #define WMI_HOST_PDEV_MGMT_PRIORITY_BIT (1<<5)
  137. #define WMI_MAX_CMDS 1024
  138. #define FIPS_ALIGN 4
  139. #define FIPS_ALIGNTO(__addr, __to) \
  140. ((((unsigned long int)(__addr)) + (__to) - 1) & ~((__to) - 1))
  141. #define FIPS_IS_ALIGNED(__addr, __to) \
  142. (!(((unsigned long int)(__addr)) & ((__to)-1)))
  143. #define WMI_HOST_MAX_SERIAL_ANTENNA 2
  144. #define WMI_SMART_ANT_MAX_RATE_SERIES 2
  145. #define WMI_HOST_F_MS(_v, _f) \
  146. (((_v) & (_f)) >> (_f##_S))
  147. #define WMI_HOST_F_RMW(_var, _v, _f) \
  148. do { \
  149. (_var) &= ~(_f); \
  150. (_var) |= (((_v) << (_f##_S)) & (_f)); \
  151. } while (0)
  152. /* vdev capabilities bit mask */
  153. #define WMI_HOST_VDEV_BEACON_SUPPORT 0x1
  154. #define WMI_HOST_VDEV_WDS_LRN_ENABLED 0x2
  155. #define WMI_HOST_VDEV_VOW_ENABLED 0x4
  156. #define WMI_HOST_VDEV_IS_BEACON_SUPPORTED(param) \
  157. ((param) & WMI_HOST_VDEV_BEACON_SUPPORT)
  158. #define WMI_HOST_VDEV_IS_WDS_LRN_ENABLED(param) \
  159. ((param) & WMI_HOST_VDEV_WDS_LRN_ENABLED)
  160. #define WMI_HOST_VDEV_IS_VOW_ENABLED(param) \
  161. ((param) & WMI_HOST_VDEV_VOW_ENABLED)
  162. /* TXBF capabilities masks */
  163. #define WMI_HOST_TXBF_CONF_SU_TX_BFEE_S 0
  164. #define WMI_HOST_TXBF_CONF_SU_TX_BFEE_M 0x1
  165. #define WMI_HOST_TXBF_CONF_SU_TX_BFEE \
  166. (WMI_HOST_TXBF_CONF_SU_TX_BFEE_M << WMI_HOST_TXBF_CONF_SU_TX_BFEE_S)
  167. #define WMI_HOST_TXBF_CONF_SU_TX_BFEE_GET(x) \
  168. WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_SU_TX_BFEE)
  169. #define WMI_HOST_TXBF_CONF_SU_TX_BFEE_SET(x, z) \
  170. WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_SU_TX_BFEE)
  171. #define WMI_HOST_TXBF_CONF_MU_TX_BFEE_S 1
  172. #define WMI_HOST_TXBF_CONF_MU_TX_BFEE_M 0x1
  173. #define WMI_HOST_TXBF_CONF_MU_TX_BFEE \
  174. (WMI_HOST_TXBF_CONF_MU_TX_BFEE_M << WMI_HOST_TXBF_CONF_MU_TX_BFEE_S)
  175. #define WMI_HOST_TXBF_CONF_MU_TX_BFEE_GET(x) \
  176. WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_MU_TX_BFEE)
  177. #define WMI_HOST_TXBF_CONF_MU_TX_BFEE_SET(x, z) \
  178. WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_MU_TX_BFEE)
  179. #define WMI_HOST_TXBF_CONF_SU_TX_BFER_S 2
  180. #define WMI_HOST_TXBF_CONF_SU_TX_BFER_M 0x1
  181. #define WMI_HOST_TXBF_CONF_SU_TX_BFER \
  182. (WMI_HOST_TXBF_CONF_SU_TX_BFER_M << WMI_HOST_TXBF_CONF_SU_TX_BFER_S)
  183. #define WMI_HOST_TXBF_CONF_SU_TX_BFER_GET(x) \
  184. WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_SU_TX_BFER)
  185. #define WMI_HOST_TXBF_CONF_SU_TX_BFER_SET(x, z) \
  186. WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_SU_TX_BFER)
  187. #define WMI_HOST_TXBF_CONF_MU_TX_BFER_S 3
  188. #define WMI_HOST_TXBF_CONF_MU_TX_BFER_M 0x1
  189. #define WMI_HOST_TXBF_CONF_MU_TX_BFER \
  190. (WMI_HOST_TXBF_CONF_MU_TX_BFER_M << WMI_HOST_TXBF_CONF_MU_TX_BFER_S)
  191. #define WMI_HOST_TXBF_CONF_MU_TX_BFER_GET(x) \
  192. WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_MU_TX_BFER)
  193. #define WMI_HOST_TXBF_CONF_MU_TX_BFER_SET(x, z) \
  194. WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_MU_TX_BFER)
  195. #define WMI_HOST_TXBF_CONF_STS_CAP_S 4
  196. #define WMI_HOST_TXBF_CONF_STS_CAP_M 0x7
  197. #define WMI_HOST_TXBF_CONF_STS_CAP \
  198. (WMI_HOST_TXBF_CONF_STS_CAP_M << WMI_HOST_TXBF_CONF_STS_CAP_S)
  199. #define WMI_HOST_TXBF_CONF_STS_CAP_GET(x) \
  200. WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_STS_CAP);
  201. #define WMI_HOST_TXBF_CONF_STS_CAP_SET(x, z) \
  202. WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_STS_CAP)
  203. #define WMI_HOST_TXBF_CONF_IMPLICIT_BF_S 7
  204. #define WMI_HOST_TXBF_CONF_IMPLICIT_BF_M 0x1
  205. #define WMI_HOST_TXBF_CONF_IMPLICIT_BF \
  206. (WMI_HOST_TXBF_CONF_IMPLICIT_BF_M << WMI_HOST_TXBF_CONF_IMPLICIT_BF_S)
  207. #define WMI_HOST_TXBF_CONF_IMPLICIT_BF_GET(x) \
  208. WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_IMPLICIT_BF)
  209. #define WMI_HOST_TXBF_CONF_IMPLICIT_BF_SET(x, z) \
  210. WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_IMPLICIT_BF)
  211. #define WMI_HOST_TXBF_CONF_BF_SND_DIM_S 8
  212. #define WMI_HOST_TXBF_CONF_BF_SND_DIM_M 0x7
  213. #define WMI_HOST_TXBF_CONF_BF_SND_DIM \
  214. (WMI_HOST_TXBF_CONF_BF_SND_DIM_M << WMI_HOST_TXBF_CONF_BF_SND_DIM_S)
  215. #define WMI_HOST_TXBF_CONF_BF_SND_DIM_GET(x) \
  216. WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_BF_SND_DIM)
  217. #define WMI_HOST_TXBF_CONF_BF_SND_DIM_SET(x, z) \
  218. WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_BF_SND_DIM)
  219. /* The following WMI_HOST_HEOPS_BSSCOLOR_XXX macros correspond to the
  220. * WMI_HEOPS_COLOR_XXX macros in the FW wmi_unified.h */
  221. #ifdef SUPPORT_11AX_D3
  222. #define WMI_HOST_HEOPS_BSSCOLOR_S 24
  223. #else
  224. #define WMI_HOST_HEOPS_BSSCOLOR_S 0
  225. #endif
  226. #define WMI_HOST_HEOPS_BSSCOLOR_M 0x3f
  227. #define WMI_HOST_HEOPS_BSSCOLOR \
  228. (WMI_HOST_HEOPS_BSSCOLOR_M << WMI_HOST_HEOPS_BSSCOLOR_S)
  229. #define WMI_HOST_HEOPS_BSSCOLOR_GET(x) \
  230. WMI_HOST_F_MS(x, WMI_HOST_HEOPS_BSSCOLOR)
  231. #define WMI_HOST_HEOPS_BSSCOLOR_SET(x, z) \
  232. WMI_HOST_F_RMW(x, z, WMI_HOST_HEOPS_BSSCOLOR)
  233. /* The following WMI_HOST_HEOPS_BSSCOLOR_DISABLE_XXX macros correspond to the
  234. * WMI_HEOPS_BSSCOLORDISABLE_XXX macros in the FW wmi_unified.h */
  235. #ifdef SUPPORT_11AX_D3
  236. #define WMI_HOST_HEOPS_BSSCOLOR_DISABLE_S 31
  237. #else
  238. #define WMI_HOST_HEOPS_BSSCOLOR_DISABLE_S 30
  239. #endif
  240. #define WMI_HOST_HEOPS_BSSCOLOR_DISABLE_M 0x1
  241. #define WMI_HOST_HEOPS_BSSCOLOR_DISABLE \
  242. (WMI_HOST_HEOPS_BSSCOLOR_DISABLE_M << WMI_HOST_HEOPS_BSSCOLOR_DISABLE_S)
  243. #define WMI_HOST_HEOPS_BSSCOLOR_DISABLE_GET(x) \
  244. WMI_HOST_F_MS(x, WMI_HOST_HEOPS_BSSCOLOR_DISABLE)
  245. #define WMI_HOST_HEOPS_BSSCOLOR_DISABLE_SET(x, z) \
  246. WMI_HOST_F_RMW(x, z, WMI_HOST_HEOPS_BSSCOLOR_DISABLE)
  247. /* HE BF capabilities mask */
  248. #define WMI_HOST_HE_BF_CONF_SU_BFEE_S 0
  249. #define WMI_HOST_HE_BF_CONF_SU_BFEE_M 0x1
  250. #define WMI_HOST_HE_BF_CONF_SU_BFEE \
  251. (WMI_HOST_HE_BF_CONF_SU_BFEE_M << WMI_HOST_HE_BF_CONF_SU_BFEE_S)
  252. #define WMI_HOST_HE_BF_CONF_SU_BFEE_GET(x) \
  253. WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_SU_BFEE)
  254. #define WMI_HOST_HE_BF_CONF_SU_BFEE_SET(x, z) \
  255. WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_SU_BFEE)
  256. #define WMI_HOST_HE_BF_CONF_SU_BFER_S 1
  257. #define WMI_HOST_HE_BF_CONF_SU_BFER_M 0x1
  258. #define WMI_HOST_HE_BF_CONF_SU_BFER \
  259. (WMI_HOST_HE_BF_CONF_SU_BFER_M << WMI_HOST_HE_BF_CONF_SU_BFER_S)
  260. #define WMI_HOST_HE_BF_CONF_SU_BFER_GET(x) \
  261. WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_SU_BFER)
  262. #define WMI_HOST_HE_BF_CONF_SU_BFER_SET(x, z) \
  263. WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_SU_BFER)
  264. #define WMI_HOST_HE_BF_CONF_MU_BFEE_S 2
  265. #define WMI_HOST_HE_BF_CONF_MU_BFEE_M 0x1
  266. #define WMI_HOST_HE_BF_CONF_MU_BFEE \
  267. (WMI_HOST_HE_BF_CONF_MU_BFEE_M << WMI_HOST_HE_BF_CONF_MU_BFEE_S)
  268. #define WMI_HOST_HE_BF_CONF_MU_BFEE_GET(x) \
  269. WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_MU_BFEE)
  270. #define WMI_HOST_HE_BF_CONF_MU_BFEE_SET(x, z) \
  271. WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_MU_BFEE)
  272. #define WMI_HOST_HE_BF_CONF_MU_BFER_S 3
  273. #define WMI_HOST_HE_BF_CONF_MU_BFER_M 0x1
  274. #define WMI_HOST_HE_BF_CONF_MU_BFER \
  275. (WMI_HOST_HE_BF_CONF_MU_BFER_M << WMI_HOST_HE_BF_CONF_MU_BFER_S)
  276. #define WMI_HOST_HE_BF_CONF_MU_BFER_GET(x) \
  277. WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_MU_BFER)
  278. #define WMI_HOST_HE_BF_CONF_MU_BFER_SET(x, z) \
  279. WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_MU_BFER)
  280. #define WMI_HOST_HE_BF_CONF_DL_OFDMA_S 4
  281. #define WMI_HOST_HE_BF_CONF_DL_OFDMA_M 0x1
  282. #define WMI_HOST_HE_BF_CONF_DL_OFDMA \
  283. (WMI_HOST_HE_BF_CONF_DL_OFDMA_M << WMI_HOST_HE_BF_CONF_DL_OFDMA_S)
  284. #define WMI_HOST_HE_BF_CONF_DL_OFDMA_GET(x) \
  285. WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_DL_OFDMA)
  286. #define WMI_HOST_HE_BF_CONF_DL_OFDMA_SET(x, z) \
  287. WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_DL_OFDMA)
  288. #define WMI_HOST_HE_BF_CONF_UL_OFDMA_S 5
  289. #define WMI_HOST_HE_BF_CONF_UL_OFDMA_M 0x1
  290. #define WMI_HOST_HE_BF_CONF_UL_OFDMA \
  291. (WMI_HOST_HE_BF_CONF_UL_OFDMA_M << WMI_HOST_HE_BF_CONF_UL_OFDMA_S)
  292. #define WMI_HOST_HE_BF_CONF_UL_OFDMA_GET(x) \
  293. WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_UL_OFDMA)
  294. #define WMI_HOST_HE_BF_CONF_UL_OFDMA_SET(x, z) \
  295. WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_UL_OFDMA)
  296. #define WMI_HOST_HE_BF_CONF_UL_MUMIMO_S 6
  297. #define WMI_HOST_HE_BF_CONF_UL_MUMIMO_M 0x1
  298. #define WMI_HOST_HE_BF_CONF_UL_MUMIMO \
  299. (WMI_HOST_HE_BF_CONF_UL_MUMIMO_M << WMI_HOST_HE_BF_CONF_UL_MUMIMO_S)
  300. #define WMI_HOST_HE_BF_CONF_UL_MUMIMO_GET(x) \
  301. WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_UL_MUMIMO)
  302. #define WMI_HOST_HE_BF_CONF_UL_MUMIMO_SET(x, z) \
  303. WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_UL_MUMIMO)
  304. /* HE or VHT Sounding */
  305. #define WMI_HOST_HE_VHT_SOUNDING_MODE_S 0
  306. #define WMI_HOST_HE_VHT_SOUNDING_MODE_M 0x1
  307. #define WMI_HOST_HE_VHT_SOUNDING_MODE \
  308. (WMI_HOST_HE_VHT_SOUNDING_MODE_M << WMI_HOST_HE_VHT_SOUNDING_MODE_S)
  309. #define WMI_HOST_HE_VHT_SOUNDING_MODE_GET(x) \
  310. WMI_HOST_F_MS(x, WMI_HOST_HE_VHT_SOUNDING_MODE)
  311. #define WMI_HOST_HE_VHT_SOUNDING_MODE_SET(x, z) \
  312. WMI_HOST_F_RMW(x, z, WMI_HOST_HE_VHT_SOUNDING_MODE)
  313. /* SU or MU Sounding */
  314. #define WMI_HOST_SU_MU_SOUNDING_MODE_S 2
  315. #define WMI_HOST_SU_MU_SOUNDING_MODE_M 0x1
  316. #define WMI_HOST_SU_MU_SOUNDING_MODE \
  317. (WMI_HOST_SU_MU_SOUNDING_MODE_M << \
  318. WMI_HOST_SU_MU_SOUNDING_MODE_S)
  319. #define WMI_HOST_SU_MU_SOUNDING_MODE_GET(x) \
  320. WMI_HOST_F_MS(x, WMI_HOST_SU_MU_SOUNDING_MODE)
  321. #define WMI_HOST_SU_MU_SOUNDING_MODE_SET(x, z) \
  322. WMI_HOST_F_RMW(x, z, WMI_HOST_SU_MU_SOUNDING_MODE)
  323. /* Trig or Non-Trig Sounding */
  324. #define WMI_HOST_TRIG_NONTRIG_SOUNDING_MODE_S 3
  325. #define WMI_HOST_TRIG_NONTRIG_SOUNDING_MODE_M 0x1
  326. #define WMI_HOST_TRIG_NONTRIG_SOUNDING_MODE \
  327. (WMI_HOST_TRIG_NONTRIG_SOUNDING_MODE_M << \
  328. WMI_HOST_TRIG_NONTRIG_SOUNDING_MODE_S)
  329. #define WMI_HOST_TRIG_NONTRIG_SOUNDING_MODE_GET(x) \
  330. WMI_HOST_F_MS(x, WMI_HOST_TRIG_NONTRIG_SOUNDING_MODE)
  331. #define WMI_HOST_HE_VHT_SU_MU_SOUNDING_MODE_SET(x, z) \
  332. WMI_HOST_F_RMW(x, z, WMI_HOST_TRIG_NONTRIG_SOUNDING_MODE)
  333. #ifdef WLAN_FEATURE_11BE
  334. /* EHT BF capabilities mask */
  335. #define WMI_HOST_EHT_CONF_SU_BFEE_S 0
  336. #define WMI_HOST_EHT_CONF_SU_BFEE_M 0x1
  337. #define WMI_HOST_EHT_CONF_SU_BFEE \
  338. (WMI_HOST_EHT_CONF_SU_BFEE_M << WMI_HOST_EHT_CONF_SU_BFEE_S)
  339. #define WMI_HOST_EHT_CONF_SU_BFEE_GET(x) \
  340. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_SU_BFEE)
  341. #define WMI_HOST_EHT_CONF_SU_BFEE_SET(x, z) \
  342. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_SU_BFEE)
  343. #define WMI_HOST_EHT_CONF_SU_BFER_S 1
  344. #define WMI_HOST_EHT_CONF_SU_BFER_M 0x1
  345. #define WMI_HOST_EHT_CONF_SU_BFER \
  346. (WMI_HOST_EHT_CONF_SU_BFER_M << WMI_HOST_EHT_CONF_SU_BFER_S)
  347. #define WMI_HOST_EHT_CONF_SU_BFER_GET(x) \
  348. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_SU_BFER)
  349. #define WMI_HOST_EHT_CONF_SU_BFER_SET(x, z) \
  350. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_SU_BFER)
  351. #define WMI_HOST_EHT_CONF_MU_BFEE_S 2
  352. #define WMI_HOST_EHT_CONF_MU_BFEE_M 0x1
  353. #define WMI_HOST_EHT_CONF_MU_BFEE \
  354. (WMI_HOST_EHT_CONF_MU_BFEE_M << WMI_HOST_EHT_CONF_MU_BFEE_S)
  355. #define WMI_HOST_EHT_CONF_MU_BFEE_GET(x) \
  356. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_MU_BFEE)
  357. #define WMI_HOST_EHT_CONF_MU_BFEE_SET(x, z) \
  358. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_MU_BFEE)
  359. #define WMI_HOST_EHT_CONF_MU_BFER_S 3
  360. #define WMI_HOST_EHT_CONF_MU_BFER_M 0x1
  361. #define WMI_HOST_EHT_CONF_MU_BFER \
  362. (WMI_HOST_EHT_CONF_MU_BFER_M << WMI_HOST_EHT_CONF_MU_BFER_S)
  363. #define WMI_HOST_EHT_CONF_MU_BFER_GET(x) \
  364. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_MU_BFER)
  365. #define WMI_HOST_EHT_CONF_MU_BFER_SET(x, z) \
  366. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_MU_BFER)
  367. #define WMI_HOST_EHT_CONF_DL_OFDMA_S 4
  368. #define WMI_HOST_EHT_CONF_DL_OFDMA_M 0x1
  369. #define WMI_HOST_EHT_CONF_DL_OFDMA \
  370. (WMI_HOST_EHT_CONF_DL_OFDMA_M << WMI_HOST_EHT_CONF_DL_OFDMA_S)
  371. #define WMI_HOST_EHT_CONF_DL_OFDMA_GET(x) \
  372. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_DL_OFDMA)
  373. #define WMI_HOST_EHT_CONF_DL_OFDMA_SET(x, z) \
  374. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_DL_OFDMA)
  375. #define WMI_HOST_EHT_CONF_UL_OFDMA_S 5
  376. #define WMI_HOST_EHT_CONF_UL_OFDMA_M 0x1
  377. #define WMI_HOST_EHT_CONF_UL_OFDMA \
  378. (WMI_HOST_EHT_CONF_UL_OFDMA_M << WMI_HOST_EHT_CONF_UL_OFDMA_S)
  379. #define WMI_HOST_EHT_CONF_UL_OFDMA_GET(x) \
  380. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_UL_OFDMA)
  381. #define WMI_HOST_EHT_CONF_UL_OFDMA_SET(x, z) \
  382. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_UL_OFDMA)
  383. #define WMI_HOST_EHT_CONF_UL_MUMIMO_S 6
  384. #define WMI_HOST_EHT_CONF_UL_MUMIMO_M 0x1
  385. #define WMI_HOST_EHT_CONF_UL_MUMIMO \
  386. (WMI_HOST_EHT_CONF_UL_MUMIMO_M << WMI_HOST_EHT_CONF_UL_MUMIMO_S)
  387. #define WMI_HOST_EHT_CONF_UL_MUMIMO_GET(x) \
  388. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_UL_MUMIMO)
  389. #define WMI_HOST_EHT_CONF_UL_MUMIMO_SET(x, z) \
  390. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_UL_MUMIMO)
  391. #define WMI_HOST_EHT_CONF_DL_OFDMA_TXBF_S 7
  392. #define WMI_HOST_EHT_CONF_DL_OFDMA_TXBF_M 0x1
  393. #define WMI_HOST_EHT_CONF_DL_OFDMA_TXBF \
  394. (WMI_HOST_EHT_CONF_DL_OFDMA_TXBF_M << \
  395. WMI_HOST_EHT_CONF_DL_OFDMA_TXBF_S)
  396. #define WMI_HOST_EHT_CONF_DL_OFDMA_TXBF_GET(x) \
  397. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_DL_OFDMA_TXBF)
  398. #define WMI_HOST_EHT_CONF_DL_OFDMA_TXBF_SET(x, z) \
  399. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_DL_OFDMA_TXBF)
  400. #define WMI_HOST_EHT_CONF_DL_OFDMA_MUMIMO_S 8
  401. #define WMI_HOST_EHT_CONF_DL_OFDMA_MUMIMO_M 0x1
  402. #define WMI_HOST_EHT_CONF_DL_OFDMA_MUMIMO \
  403. (WMI_HOST_EHT_CONF_DL_OFDMA_MUMIMO_M << \
  404. WMI_HOST_EHT_CONF_DL_OFDMA_MUMIMO_S)
  405. #define WMI_HOST_EHT_CONF_DL_OFDMA_MUMIMO_GET(x) \
  406. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_DL_OFDMA_MUMIMO)
  407. #define WMI_HOST_EHT_CONF_DL_OFDMA_MUMIMO_SET(x, z) \
  408. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_DL_OFDMA_MUMIMO)
  409. #define WMI_HOST_EHT_CONF_UL_OFDMA_MUMIMO_S 9
  410. #define WMI_HOST_EHT_CONF_UL_OFDMA_MUMIMO_M 0x1
  411. #define WMI_HOST_EHT_CONF_UL_OFDMA_MUMIMO \
  412. (WMI_HOST_EHT_CONF_UL_OFDMA_MUMIMO_M << \
  413. WMI_HOST_EHT_CONF_UL_OFDMA_MUMIMO_S)
  414. #define WMI_HOST_EHT_CONF_UL_OFDMA_MUMIMO_GET(x) \
  415. WMI_HOST_F_MS(x, WMI_HOST_EHT_CONF_UL_OFDMA_MUMIMO)
  416. #define WMI_HOST_EHT_CONF_UL_OFDMA_MUMIMO_SET(x, z) \
  417. WMI_HOST_F_RMW(x, z, WMI_HOST_EHT_CONF_UL_OFDMA_MUMIMO)
  418. /* Firmware uses most significant 4 bits to differentiate */
  419. /* some of vdev params between HE and EHT */
  420. #define WMI_HOST_VDEV_PARAM_EHT_MODE 0x10000000
  421. #endif
  422. #define WMI_HOST_TPC_RATE_MAX 160
  423. #define WMI_HOST_TPC_TX_NUM_CHAIN 4
  424. #define WMI_HOST_RXG_CAL_CHAN_MAX 8
  425. #define WMI_HOST_MAX_NUM_CHAINS 8
  426. #define WMI_MAX_NUM_OF_RATE_THRESH 4
  427. #define WMI_HOST_PDEV_MAX_VDEVS 17
  428. /* for QC98XX only */
  429. /*6 modes (A, HT20, HT40, VHT20, VHT40, VHT80) * 3 reg dommains
  430. */
  431. #define WMI_HOST_NUM_CTLS_5G 18
  432. /*6 modes (B, G, HT20, HT40, VHT20, VHT40) * 3 reg domains */
  433. #define WMI_HOST_NUM_CTLS_2G 18
  434. #define WMI_HOST_NUM_BAND_EDGES_5G 8
  435. #define WMI_HOST_NUM_BAND_EDGES_2G 4
  436. /*Beelinier 5G*/
  437. #define WMI_HOST_NUM_CTLS_5G_11A 9
  438. #define WMI_HOST_NUM_BAND_EDGES_5G_11A 25
  439. #define WMI_HOST_NUM_CTLS_5G_HT20 24
  440. #define WMI_HOST_NUM_BAND_EDGES_5G_HT20 25
  441. #define WMI_HOST_NUM_CTLS_5G_HT40 18
  442. #define WMI_HOST_NUM_BAND_EDGES_5G_HT40 12
  443. #define WMI_HOST_NUM_CTLS_5G_HT80 18
  444. #define WMI_HOST_NUM_BAND_EDGES_5G_HT80 6
  445. #define WMI_HOST_NUM_CTLS_5G_HT160 9
  446. #define WMI_HOST_NUM_BAND_EDGES_5G_HT160 2
  447. /* Beeliner 2G */
  448. #define WMI_HOST_NUM_CTLS_2G_11B 6
  449. #define WMI_HOST_NUM_BAND_EDGES_2G_11B 9
  450. #define WMI_HOST_NUM_CTLS_2G_20MHZ 30
  451. #define WMI_HOST_NUM_BAND_EDGES_2G_20MHZ 11
  452. #define WMI_HOST_NUM_CTLS_2G_40MHZ 18
  453. #define WMI_HOST_NUM_BAND_EDGES_2G_40MHZ 6
  454. /* for QC98XX only */
  455. #define WMI_HOST_TX_NUM_CHAIN 0x3
  456. #define WMI_HOST_TPC_REGINDEX_MAX 4
  457. #define WMI_HOST_ARRAY_GAIN_NUM_STREAMS 2
  458. /* AST Index for flow override */
  459. #define WMI_CONFIG_MSDU_AST_INDEX_0 0x0
  460. #define WMI_CONFIG_MSDU_AST_INDEX_1 0x1
  461. #define WMI_CONFIG_MSDU_AST_INDEX_2 0x2
  462. #define WMI_CONFIG_MSDU_AST_INDEX_3 0x3
  463. #define WMI_MAX_AOA_PHASE_DELTA 31
  464. #define WMI_MAX_CHAINS_PHASE 2
  465. #define EGID_INFO_SIZE 4
  466. #include "qdf_atomic.h"
  467. #ifdef BIG_ENDIAN_HOST
  468. /* This API is used in copying in elements to WMI message,
  469. since WMI message uses multilpes of 4 bytes, This API
  470. converts length into multiples of 4 bytes, and performs copy
  471. */
  472. #define WMI_HOST_IF_MSG_COPY_CHAR_ARRAY(destp, srcp, len) do { \
  473. int j; \
  474. u_int32_t *src, *dest; \
  475. src = (u_int32_t *)srcp; \
  476. dest = (u_int32_t *)destp; \
  477. for (j = 0; j < roundup(len, sizeof(u_int32_t))/4; j++) { \
  478. *(dest+j) = qdf_le32_to_cpu(*(src+j)); \
  479. } \
  480. } while (0)
  481. #else
  482. #define WMI_HOST_IF_MSG_COPY_CHAR_ARRAY(destp, srcp, len) OS_MEMCPY(destp,\
  483. srcp, len)
  484. #endif
  485. /** macro to convert MAC address from WMI word format to char array */
  486. #define WMI_HOST_MAC_ADDR_TO_CHAR_ARRAY(pwmi_mac_addr, c_macaddr) do { \
  487. (c_macaddr)[0] = ((pwmi_mac_addr)->mac_addr31to0) & 0xff; \
  488. (c_macaddr)[1] = (((pwmi_mac_addr)->mac_addr31to0) >> 8) & 0xff; \
  489. (c_macaddr)[2] = (((pwmi_mac_addr)->mac_addr31to0) >> 16) & 0xff; \
  490. (c_macaddr)[3] = (((pwmi_mac_addr)->mac_addr31to0) >> 24) & 0xff; \
  491. (c_macaddr)[4] = ((pwmi_mac_addr)->mac_addr47to32) & 0xff; \
  492. (c_macaddr)[5] = (((pwmi_mac_addr)->mac_addr47to32) >> 8) & 0xff; \
  493. } while (0)
  494. #define TARGET_INIT_STATUS_SUCCESS 0x0
  495. #define TARGET_INIT_STATUS_GEN_FAILED 0x1
  496. #define TARGET_GET_INIT_STATUS_REASON(status) ((status) & 0xffff)
  497. #define TARGET_GET_INIT_STATUS_MODULE_ID(status) (((status) >> 16) & 0xffff)
  498. #define MAX_ASSOC_IE_LENGTH 1024
  499. /*
  500. * The WLAN_MAX_AC macro cannot be changed without breaking
  501. * WMI compatibility.
  502. * The maximum value of access category
  503. */
  504. #define WMI_HOST_WLAN_MAX_AC 4
  505. typedef uint32_t TARGET_INIT_STATUS;
  506. /*
  507. * Opaque handle of wmi structure
  508. */
  509. struct wmi_unified;
  510. typedef struct wmi_unified *wmi_unified_t;
  511. typedef void *ol_scn_t;
  512. /**
  513. * typedef wmi_unified_event_handler - WMI event handler
  514. * @scn_handle: handle
  515. * @event_buf: event buffer
  516. * @len: length of the event buffer
  517. *
  518. * Return: 0 if the event was handled, negative errno otherwise
  519. */
  520. typedef int (*wmi_unified_event_handler)(ol_scn_t scn_handle,
  521. uint8_t *event_buf, uint32_t len);
  522. /*
  523. * @WMI_HOST_WLAN_PHY_MODE: Host based enum ID for corresponding in
  524. * WLAN_PHY_MODE. This should be consistent with WLAN_PHY_MODE always to avoid
  525. * breaking the WMI
  526. */
  527. typedef enum {
  528. WMI_HOST_MODE_11A = 0, /* 11a Mode */
  529. WMI_HOST_MODE_11G = 1, /* 11b/g Mode */
  530. WMI_HOST_MODE_11B = 2, /* 11b Mode */
  531. WMI_HOST_MODE_11GONLY = 3, /* 11g only Mode */
  532. WMI_HOST_MODE_11NA_HT20 = 4, /* 11a HT20 mode */
  533. WMI_HOST_MODE_11NG_HT20 = 5, /* 11g HT20 mode */
  534. WMI_HOST_MODE_11NA_HT40 = 6, /* 11a HT40 mode */
  535. WMI_HOST_MODE_11NG_HT40 = 7, /* 11g HT40 mode */
  536. WMI_HOST_MODE_11AC_VHT20 = 8,
  537. WMI_HOST_MODE_11AC_VHT40 = 9,
  538. WMI_HOST_MODE_11AC_VHT80 = 10,
  539. WMI_HOST_MODE_11AC_VHT20_2G = 11,
  540. WMI_HOST_MODE_11AC_VHT40_2G = 12,
  541. WMI_HOST_MODE_11AC_VHT80_2G = 13,
  542. WMI_HOST_MODE_11AC_VHT80_80 = 14,
  543. WMI_HOST_MODE_11AC_VHT160 = 15,
  544. WMI_HOST_MODE_11AX_HE20 = 16,
  545. WMI_HOST_MODE_11AX_HE40 = 17,
  546. WMI_HOST_MODE_11AX_HE80 = 18,
  547. WMI_HOST_MODE_11AX_HE80_80 = 19,
  548. WMI_HOST_MODE_11AX_HE160 = 20,
  549. WMI_HOST_MODE_11AX_HE20_2G = 21,
  550. WMI_HOST_MODE_11AX_HE40_2G = 22,
  551. WMI_HOST_MODE_11AX_HE80_2G = 23,
  552. #ifdef WLAN_FEATURE_11BE
  553. WMI_HOST_MODE_11BE_EHT20 = 24,
  554. WMI_HOST_MODE_11BE_EHT40 = 25,
  555. WMI_HOST_MODE_11BE_EHT80 = 26,
  556. WMI_HOST_MODE_11BE_EHT160 = 28,
  557. WMI_HOST_MODE_11BE_EHT320 = 30,
  558. WMI_HOST_MODE_11BE_EHT20_2G = 31,
  559. WMI_HOST_MODE_11BE_EHT40_2G = 32,
  560. #endif
  561. WMI_HOST_MODE_UNKNOWN,
  562. WMI_HOST_MODE_MAX = WMI_HOST_MODE_UNKNOWN,
  563. } WMI_HOST_WLAN_PHY_MODE;
  564. /*
  565. * Needs to be removed and use channel_param based
  566. * on how it is processed
  567. */
  568. typedef struct {
  569. /** primary 20 MHz channel frequency in mhz */
  570. uint32_t mhz;
  571. /** Center frequency 1 in MHz*/
  572. uint32_t band_center_freq1;
  573. /** Center frequency 2 in MHz - valid only for 11acvht 80plus80 mode*/
  574. uint32_t band_center_freq2;
  575. /** channel info described below */
  576. uint32_t info;
  577. /** contains min power, max power, reg power and reg class id. */
  578. uint32_t reg_info_1;
  579. /** contains antennamax */
  580. uint32_t reg_info_2;
  581. } wmi_host_channel;
  582. /**
  583. * enum WMI_HOST_WLAN_BAND_CAPABILITY: Band capability (2.4 GHz, 5 GHz). Maps to
  584. * WLAN_BAND_CAPABILITY used in firmware header file(s).
  585. * @WMI_HOST_WLAN_2G_CAPABILITY: 2.4 GHz capable
  586. * @WMI_HOST_WLAN_5G_CAPABILITY: 5 GHz capable
  587. */
  588. typedef enum {
  589. WMI_HOST_WLAN_2G_CAPABILITY = 0x1,
  590. WMI_HOST_WLAN_5G_CAPABILITY = 0x2,
  591. } WMI_HOST_WLAN_BAND_CAPABILITY;
  592. /**
  593. * enum wmi_host_channel_width: Channel operating width. Maps to
  594. * wmi_channel_width used in firmware header file(s).
  595. * @WMI_HOST_CHAN_WIDTH_20: 20 MHz channel operating width
  596. * @WMI_HOST_CHAN_WIDTH_40: 40 MHz channel operating width
  597. * @WMI_HOST_CHAN_WIDTH_80: 80 MHz channel operating width
  598. * @WMI_HOST_CHAN_WIDTH_160: 160 MHz channel operating width
  599. * @WMI_HOST_CHAN_WIDTH_80P80: 80+80 MHz channel operating width
  600. * @WMI_HOST_CHAN_WIDTH_5: 5 MHz channel operating width
  601. * @WMI_HOST_CHAN_WIDTH_10: 10 MHz channel operating width
  602. * @WMI_HOST_CHAN_WIDTH_165: 165 MHz channel operating width
  603. * @WMI_HOST_CHAN_WIDTH_160P160: 160 MHz + 160 MHz channel operating width
  604. * @WMI_HOST_CHAN_WIDTH_320: 320 MHz channel operating width
  605. */
  606. typedef enum {
  607. WMI_HOST_CHAN_WIDTH_20 = 0,
  608. WMI_HOST_CHAN_WIDTH_40 = 1,
  609. WMI_HOST_CHAN_WIDTH_80 = 2,
  610. WMI_HOST_CHAN_WIDTH_160 = 3,
  611. WMI_HOST_CHAN_WIDTH_80P80 = 4,
  612. WMI_HOST_CHAN_WIDTH_5 = 5,
  613. WMI_HOST_CHAN_WIDTH_10 = 6,
  614. WMI_HOST_CHAN_WIDTH_165 = 7,
  615. WMI_HOST_CHAN_WIDTH_160P160 = 8,
  616. WMI_HOST_CHAN_WIDTH_320 = 9,
  617. } wmi_host_channel_width;
  618. #define ATH_EXPONENT_TO_VALUE(v) ((1<<v)-1)
  619. #define ATH_TXOP_TO_US(v) (v<<5)
  620. /* WME stream classes */
  621. #define WMI_HOST_AC_BE 0 /* best effort */
  622. #define WMI_HOST_AC_BK 1 /* background */
  623. #define WMI_HOST_AC_VI 2 /* video */
  624. #define WMI_HOST_AC_VO 3 /* voice */
  625. #define WMI_TID_TO_AC(_tid) (\
  626. (((_tid) == 0) || ((_tid) == 3)) ? WMI_HOST_AC_BE : \
  627. (((_tid) == 1) || ((_tid) == 2)) ? WMI_HOST_AC_BK : \
  628. (((_tid) == 4) || ((_tid) == 5)) ? WMI_HOST_AC_VI : \
  629. WMI_HOST_AC_VO)
  630. /**
  631. * struct channel_param - Channel parameters with all
  632. * info required by target.
  633. * @chan_id: channel id
  634. * @pwr: channel power
  635. * @mhz: channel frequency
  636. * @half_rate: is half rate
  637. * @quarter_rate: is quarter rate
  638. * @dfs_set: is dfs channel
  639. * @dfs_set_cfreq2: is secondary freq dfs channel
  640. * @is_chan_passive: is this passive channel
  641. * @allow_ht: HT allowed in chan
  642. * @allow_vht: VHT allowed on chan
  643. * @set_agile: is agile mode
  644. * @allow_he: HE allowed on chan
  645. * @psc_channel: 6 ghz preferred scan chan
  646. * @nan_disabled: is NAN disabled on @mhz
  647. * @allow_eht: EHT allowed on chan
  648. * @phy_mode: phymode (vht80 or ht40 or ...)
  649. * @cfreq1: centre frequency on primary
  650. * @cfreq2: centre frequency on secondary
  651. * @maxpower: max power for channel
  652. * @minpower: min power for channel
  653. * @maxregpower: Max regulatory power
  654. * @antennamax: Max antenna
  655. * @reg_class_id: Regulatory class id.
  656. * @max_bw_supported: max BW supported
  657. */
  658. struct channel_param {
  659. uint8_t chan_id;
  660. uint8_t pwr;
  661. uint32_t mhz;
  662. uint32_t half_rate:1,
  663. quarter_rate:1,
  664. dfs_set:1,
  665. dfs_set_cfreq2:1,
  666. is_chan_passive:1,
  667. allow_ht:1,
  668. allow_vht:1,
  669. set_agile:1,
  670. allow_he:1,
  671. psc_channel:1,
  672. nan_disabled:1,
  673. allow_eht:1;
  674. uint32_t phy_mode;
  675. uint32_t cfreq1;
  676. uint32_t cfreq2;
  677. int8_t maxpower;
  678. int8_t minpower;
  679. int8_t maxregpower;
  680. uint8_t antennamax;
  681. uint8_t reg_class_id;
  682. wmi_host_channel_width max_bw_supported;
  683. };
  684. #ifdef FEATURE_OEM_DATA
  685. /**
  686. * struct oem_data - oem data to be sent to firmware
  687. * @vdev_id: Unique identifier assigned to the vdev
  688. * @data_len: len of data
  689. * @pdev_id: pdev id to identify the pdev
  690. * @pdev_vdev_flag: 0 when vdev is valid, 1 when pdev is valid
  691. * @is_host_pdev_id: 1 for host pdev id, 0 otherwise
  692. * @data: the pointer to the buffer containing data
  693. * @file_name_len: Length of file name
  694. * @file_name: Pointer to the buffer containing file name
  695. */
  696. struct oem_data {
  697. uint8_t vdev_id;
  698. size_t data_len;
  699. uint8_t pdev_id;
  700. bool pdev_vdev_flag;
  701. bool is_host_pdev_id;
  702. uint8_t *data;
  703. uint32_t file_name_len;
  704. uint8_t *file_name;
  705. };
  706. #endif
  707. #ifdef MULTI_CLIENT_LL_SUPPORT
  708. /**
  709. * struct latency_level_data - latency data received in the event from the FW
  710. * @vdev_id: The latency level for specified vdev_id
  711. * @latency_level: latency level honoured by FW
  712. */
  713. struct latency_level_data {
  714. uint8_t vdev_id;
  715. uint32_t latency_level;
  716. };
  717. #endif
  718. /**
  719. * enum nss_chains_band_info - Band info for dynamic nss, chains change feature
  720. * @NSS_CHAINS_BAND_2GHZ: 2.4Ghz band
  721. * @NSS_CHAINS_BAND_5GHZ: 5Ghz band
  722. * @NSS_CHAINS_BAND_MAX: Max bands supported
  723. */
  724. enum nss_chains_band_info {
  725. NSS_CHAINS_BAND_2GHZ = 0,
  726. NSS_CHAINS_BAND_5GHZ,
  727. NSS_CHAINS_BAND_MAX,
  728. };
  729. /**
  730. * struct vdev_nss_chains - vdev config of nss, and chains
  731. * @num_tx_chains: tx chains of vdev config
  732. * @num_rx_chains: rx chains of vdev config
  733. * @tx_nss: tx nss of vdev config
  734. * @rx_nss: rx nss of vdev config
  735. * @num_tx_chains_11b: number of tx chains in 11b mode
  736. * @num_tx_chains_11g: number of tx chains in 11g mode
  737. * @num_tx_chains_11a: number of tx chains in 11a mode
  738. * @disable_rx_mrc: disable 2 rx chains, in rx nss 1 mode
  739. * @disable_tx_mrc: disable 2 tx chains, in tx nss 1 mode
  740. */
  741. struct vdev_nss_chains {
  742. uint32_t num_tx_chains[NSS_CHAINS_BAND_MAX];
  743. uint32_t num_rx_chains[NSS_CHAINS_BAND_MAX];
  744. uint32_t tx_nss[NSS_CHAINS_BAND_MAX];
  745. uint32_t rx_nss[NSS_CHAINS_BAND_MAX];
  746. uint32_t num_tx_chains_11b;
  747. uint32_t num_tx_chains_11g;
  748. uint32_t num_tx_chains_11a;
  749. bool disable_rx_mrc[NSS_CHAINS_BAND_MAX];
  750. bool disable_tx_mrc[NSS_CHAINS_BAND_MAX];
  751. };
  752. /**
  753. * struct peer_delete_params - peer delete cmd parameter
  754. * @vdev_id: vdev id
  755. */
  756. struct peer_delete_params {
  757. uint8_t vdev_id;
  758. };
  759. /**
  760. * struct peer_set_params - peer set cmd parameter
  761. * @param_id: parameter id
  762. * @param_value: parameter value
  763. * @vdev_id: vdev id
  764. */
  765. struct peer_set_params {
  766. uint32_t param_id;
  767. uint32_t param_value;
  768. uint32_t vdev_id;
  769. };
  770. /**
  771. * struct peer_create_params - peer create cmd parameter
  772. * @peer_addr: peer mac addr
  773. * @peer_type: peer type
  774. * @vdev_id: vdev id
  775. * @mlo_enabled: Indicates MLO is enabled
  776. * @mlo_bridge_peer: Indicates bridge peer
  777. */
  778. struct peer_create_params {
  779. const uint8_t *peer_addr;
  780. uint32_t peer_type;
  781. uint32_t vdev_id;
  782. #ifdef WLAN_FEATURE_11BE_MLO
  783. bool mlo_enabled;
  784. bool mlo_bridge_peer;
  785. #endif
  786. };
  787. #ifdef WLAN_SUPPORT_PPEDS
  788. /**
  789. * struct peer_ppe_ds_param - Per peer PPE Direct Switch parameter
  790. * @peer_macaddr: PPE mac address
  791. * @ppe_routing_enabled: Master flag for PPE routing
  792. * @use_ppe: Use PPE command for the peer entry
  793. * @service_code: Service code
  794. * @priority_valid: If PRI to TID conversion is enabled
  795. * @src_info: Source info/PPE port of the interface
  796. * @vdev_id: VAP ID
  797. */
  798. struct peer_ppe_ds_param {
  799. uint8_t peer_macaddr[QDF_MAC_ADDR_SIZE];
  800. bool ppe_routing_enabled;
  801. bool use_ppe;
  802. uint16_t service_code;
  803. uint16_t src_info;
  804. uint8_t priority_valid;
  805. uint8_t vdev_id;
  806. };
  807. #endif
  808. /**
  809. * struct peer_remove_params - peer remove cmd parameter
  810. * @bssid: bss id
  811. * @vdev_id: vdev id
  812. * @roam_synch_in_progress: flag to indicate if roaming is in progress
  813. */
  814. struct peer_remove_params {
  815. uint8_t *bssid;
  816. uint8_t vdev_id;
  817. bool roam_synch_in_progress;
  818. };
  819. /*
  820. * Stats ID enums defined in host
  821. */
  822. typedef enum {
  823. WMI_HOST_REQUEST_PEER_STAT = 0x01,
  824. WMI_HOST_REQUEST_AP_STAT = 0x02,
  825. WMI_HOST_REQUEST_PDEV_STAT = 0x04,
  826. WMI_HOST_REQUEST_VDEV_STAT = 0x08,
  827. WMI_HOST_REQUEST_BCNFLT_STAT = 0x10,
  828. WMI_HOST_REQUEST_VDEV_RATE_STAT = 0x20,
  829. WMI_HOST_REQUEST_INST_STAT = 0x40,
  830. WMI_HOST_REQUEST_PEER_EXTD_STAT = 0x80,
  831. WMI_HOST_REQUEST_VDEV_EXTD_STAT = 0x100,
  832. WMI_HOST_REQUEST_NAC_RSSI = 0x200,
  833. WMI_HOST_REQUEST_BCN_STAT = 0x800,
  834. WMI_HOST_REQUEST_BCN_STAT_RESET = 0x1000,
  835. WMI_HOST_REQUEST_PEER_RETRY_STAT = 0x2000,
  836. WMI_HOST_REQUEST_PEER_ADV_STATS = 0x4000,
  837. WMI_HOST_REQUEST_PMF_BCN_PROTECT_STAT = 0x8000,
  838. WMI_HOST_REQUEST_VDEV_PRB_FILS_STAT = 0x10000,
  839. WMI_HOST_REQUEST_PDEV_EXTD_STAT = 0x20000,
  840. WMI_HOST_REQUEST_PDEV_TELEMETRY_STAT = 0x40000,
  841. } wmi_host_stats_id;
  842. typedef struct {
  843. uint16_t cfg_retry_count;
  844. uint16_t retry_count;
  845. } wmi_host_inst_rssi_args;
  846. /**
  847. * struct stats_request_params - stats_request cmd parameter
  848. * @stats_id: Bit mask of all the STATS request are specified with values from wmi_host_stats_id
  849. * @vdev_id: vdev id
  850. * @pdev_id: pdev_id
  851. * @rssi_args: Instantaneous rssi stats args
  852. * @is_qmi_send_support: support to send by qmi or not
  853. */
  854. struct stats_request_params {
  855. uint32_t stats_id;
  856. uint8_t vdev_id;
  857. uint8_t pdev_id;
  858. wmi_host_inst_rssi_args rssi_args;
  859. bool is_qmi_send_support;
  860. };
  861. /**
  862. * struct bss_chan_info_request_params - BSS chan info params
  863. * @param: parameter value
  864. */
  865. struct bss_chan_info_request_params {
  866. uint32_t param;
  867. };
  868. /**
  869. * struct wow_cmd_params - wow cmd parameter
  870. * @enable: wow enable or disable flag
  871. * @can_suspend_link: flag to indicate if link can be suspended
  872. * @pause_iface_config: interface config
  873. * @flags:
  874. */
  875. struct wow_cmd_params {
  876. bool enable;
  877. bool can_suspend_link;
  878. uint8_t pause_iface_config;
  879. uint32_t flags;
  880. };
  881. /**
  882. * struct wow_add_wakeup_params - wow wakeup parameter
  883. * @type: param type
  884. */
  885. struct wow_add_wakeup_params {
  886. uint32_t type;
  887. };
  888. /**
  889. * struct wow_add_wakeup_pattern_params - Add WoW pattern params
  890. * @pattern_bytes: pointer to pattern bytes
  891. * @mask_bytes: pointer to mask bytes
  892. * @pattern_len: pattern length
  893. * @pattern_id: pattern id
  894. */
  895. struct wow_add_wakeup_pattern_params {
  896. uint8_t *pattern_bytes;
  897. uint8_t *mask_bytes;
  898. uint32_t pattern_len;
  899. uint32_t pattern_id;
  900. };
  901. /**
  902. * struct wow_remove_wakeup_pattern_params - WoW remove pattern param
  903. * @pattern_bytes: pointer to pattern bytes
  904. * @mask_bytes: Mask bytes
  905. * @pattern_id: pattern identifier
  906. */
  907. struct wow_remove_wakeup_pattern_params {
  908. uint32_t *pattern_bytes;
  909. uint32_t *mask_bytes;
  910. uint32_t pattern_id;
  911. };
  912. /**
  913. * struct packet_enable_params - packet enable cmd parameter
  914. * @vdev_id: vdev id
  915. * @enable: flag to indicate if parameter can be enabled or disabled
  916. */
  917. struct packet_enable_params {
  918. uint8_t vdev_id;
  919. bool enable;
  920. };
  921. /**
  922. * struct suspend_params - suspend cmd parameter
  923. * @disable_target_intr: disable target interrupt
  924. */
  925. struct suspend_params {
  926. uint8_t disable_target_intr;
  927. };
  928. /**
  929. * struct pdev_params - pdev set cmd parameter
  930. * @param_id: parameter id
  931. * @param_value: parameter value
  932. * @is_host_pdev_id: indicate whether pdev_id is host pdev_id or not
  933. */
  934. struct pdev_params {
  935. uint32_t param_id;
  936. uint32_t param_value;
  937. bool is_host_pdev_id;
  938. };
  939. /**
  940. * struct bcn_prb_template_params - beacon probe template parameter
  941. * @vdev_id: vdev id
  942. * @buf_len: Template length
  943. * @caps: capabilities field
  944. * @erp: ERP field
  945. */
  946. struct bcn_prb_template_params {
  947. uint8_t vdev_id;
  948. int buf_len;
  949. uint16_t caps;
  950. uint8_t erp;
  951. };
  952. #define WMI_MAX_SUPPORTED_RATES 128
  953. /**
  954. * struct target_rate_set - Rate set bitmap
  955. * @num_rates: number of rates in rates bitmap
  956. * @rates: rates (each 8bit value) packed into a 32 bit word.
  957. * the rates are filled from least significant byte to most
  958. * significant byte.
  959. */
  960. typedef struct {
  961. uint32_t num_rates;
  962. uint32_t rates[(WMI_MAX_SUPPORTED_RATES / 4) + 1];
  963. } target_rate_set;
  964. #define WMI_HOST_MAX_NUM_SS 8
  965. #define WMI_HOST_MAX_HECAP_PHY_SIZE 3
  966. #define WMI_HOST_MAX_HECAP_MAC_SIZE 2
  967. #define WMI_HOST_HECAP_MAC_WORD1 0
  968. #define WMI_HOST_HECAP_MAC_WORD2 1
  969. #define WMI_HOST_MAX_HE_RATE_SET 3
  970. #define WMI_HOST_HE_INVALID_MCSNSSMAP (0xFFFF)
  971. #define WMI_HOST_HE_TXRX_MCS_NSS_IDX_80 0
  972. #define WMI_HOST_HE_TXRX_MCS_NSS_IDX_160 1
  973. #define WMI_HOST_HE_TXRX_MCS_NSS_IDX_80_80 2
  974. #ifdef WLAN_FEATURE_11BE
  975. #define WMI_HOST_MAX_EHTCAP_PHY_SIZE 3
  976. #define WMI_HOST_MAX_EHTCAP_MAC_SIZE 1
  977. #define WMI_HOST_EHTCAP_MAC_WORD1 0
  978. #define WMI_HOST_EHTCAP_MAC_WORD2 1
  979. #define WMI_HOST_MAX_EHT_RATE_SET 4
  980. #define WMI_HOST_EHT_INVALID_MCSNSSMAP (0xFFFF)
  981. #define WMI_HOST_EHT_TXRX_MCS_NSS_IDX_80 0
  982. #define WMI_HOST_EHT_TXRX_MCS_NSS_IDX_160 1
  983. #define WMI_HOST_EHT_TXRX_MCS_NSS_IDX_320 2
  984. #endif
  985. /**
  986. * struct wmi_host_ppe_threshold -PPE threshold
  987. * @numss_m1: NSS - 1
  988. * @ru_bit_mask: RU bit mask indicating the supported RU's
  989. * @ppet16_ppet8_ru3_ru0: ppet8 and ppet16 for max num ss
  990. */
  991. struct wmi_host_ppe_threshold {
  992. uint32_t numss_m1;
  993. uint32_t ru_bit_mask;
  994. uint32_t ppet16_ppet8_ru3_ru0[WMI_HOST_MAX_NUM_SS];
  995. };
  996. /**
  997. * struct wmi_host_mac_addr - host mac addr 2 word representation of MAC addr
  998. * @mac_addr31to0: upper 4 bytes of MAC address
  999. * @mac_addr47to32: lower 2 bytes of MAC address
  1000. */
  1001. typedef struct {
  1002. uint32_t mac_addr31to0;
  1003. uint32_t mac_addr47to32;
  1004. } wmi_host_mac_addr;
  1005. #ifdef WLAN_FEATURE_11BE
  1006. #ifdef WMI_AP_SUPPORT
  1007. /**
  1008. * struct wlan_host_preferred_links - Preferred link info.
  1009. * @num_pref_links: non-zero values indicate that preferred link order
  1010. * is present.
  1011. * @preffered_link_order: Preferred links in order.
  1012. * @timeout: timeout values for all the access categories.
  1013. * @tlt_characterization_params: Bitmask to select Tx-Link Tuple from ordered
  1014. * list.
  1015. * Bit 0-15 : Each bit maps to the corresponding Link ID
  1016. * Bit 16-31: Reserved
  1017. * @link_control_flags: Link control flags.
  1018. * Bit 0: TLT enable/disable
  1019. * Bit 1: Preferred Link enable/disable
  1020. * Bit 2-31: Reserved
  1021. */
  1022. struct wlan_host_preferred_links {
  1023. uint8_t num_pref_links;
  1024. uint8_t preffered_link_order[MAX_PREFERRED_LINKS];
  1025. uint32_t timeout[WMI_HOST_WLAN_MAX_AC];
  1026. uint32_t tlt_characterization_params;
  1027. uint32_t link_control_flags;
  1028. };
  1029. #endif
  1030. /**
  1031. * struct wlan_host_t2lm_of_tids - TID-to-link mapping info
  1032. * @direction: 0 - Downlink, 1 - uplink 2 - Both uplink and downlink
  1033. * @default_link_mapping: value 1 indicates the default T2LM, where all the TIDs
  1034. * are mapped to all the links.
  1035. * value 0 indicates the preferred T2LM mapping
  1036. * @t2lm_provisioned_links: Indicates TID to link mapping of all the TIDS.
  1037. */
  1038. struct wlan_host_t2lm_of_tids {
  1039. enum wlan_t2lm_direction direction;
  1040. bool default_link_mapping;
  1041. uint16_t t2lm_provisioned_links[T2LM_MAX_NUM_TIDS];
  1042. };
  1043. /**
  1044. * struct wmi_host_tid_to_link_map_params - TID-to-link mapping params
  1045. * @pdev_id: Pdev id
  1046. * @peer_macaddr: link peer macaddr
  1047. * @num_dir: number of directions for which T2LM info is available
  1048. * @t2lm_info: TID-to-link mapping info for the given directions
  1049. * @preferred_links: Preferred link info.
  1050. */
  1051. struct wmi_host_tid_to_link_map_params {
  1052. uint8_t pdev_id;
  1053. uint8_t peer_macaddr[QDF_MAC_ADDR_SIZE];
  1054. uint8_t num_dir;
  1055. struct wlan_host_t2lm_of_tids t2lm_info[WLAN_T2LM_MAX_DIRECTION];
  1056. #ifdef WMI_AP_SUPPORT
  1057. struct wlan_host_preferred_links preferred_links;
  1058. #endif
  1059. };
  1060. /**
  1061. * struct wmi_host_tid_to_link_map_ap_params - TID-to-link mapping params
  1062. * @pdev_id: Pdev id
  1063. * @vdev_id: Vdev id
  1064. * @num_t2lm_info: Number of t2lm IEs
  1065. * @hw_link_id: HW link id
  1066. * @disabled_link_bitmap: Disabled link bitmap info
  1067. * @info: TID-to-link mapping IE info
  1068. */
  1069. struct wmi_host_tid_to_link_map_ap_params {
  1070. uint8_t pdev_id;
  1071. uint8_t vdev_id;
  1072. uint8_t num_t2lm_info;
  1073. uint16_t hw_link_id;
  1074. uint16_t disabled_link_bitmap;
  1075. struct wlan_t2lm_info info[WLAN_MAX_T2LM_IE];
  1076. };
  1077. /**
  1078. * struct wmi_host_tid_to_link_map_resp - TID-to-link mapping response
  1079. * @vdev_id: Vdev id
  1080. * @status: Target status for t2lm ie info
  1081. * @mapping_switch_tsf: Mapping switch time in tsf for probe response frames
  1082. */
  1083. struct wmi_host_tid_to_link_map_resp {
  1084. uint8_t vdev_id;
  1085. enum wlan_t2lm_status status;
  1086. uint8_t mapping_switch_tsf;
  1087. };
  1088. /**
  1089. * struct wmi_host_link_state_params - MLO link state params
  1090. * @vdev_id: Vdev id
  1091. * @mld_mac: mld mac address
  1092. */
  1093. struct wmi_host_link_state_params {
  1094. uint8_t vdev_id;
  1095. uint8_t mld_mac[QDF_MAC_ADDR_SIZE];
  1096. };
  1097. #endif /* WLAN_FEATURE_11BE */
  1098. #ifdef WLAN_FEATURE_11BE_MLO
  1099. /**
  1100. * struct peer_assoc_mlo_params - MLO assoc params
  1101. * @mlo_enabled: indicate is MLO enabled
  1102. * @mlo_assoc_link: indicate is the link used to initialize the association
  1103. * of mlo connection
  1104. * @mlo_primary_umac: indicate is the link on primary UMAC, WIN only flag
  1105. * @mlo_logical_link_index_valid: indicate if the logial link index in is valid
  1106. * @mlo_peer_id_valid: indicate if the mlo peer id is valid
  1107. * @mlo_force_link_inactive: force the peer inactive
  1108. * @emlsr_support: indicate if eMLSR supported
  1109. * @emlmr_support: indicate if eMLMR supported
  1110. * @msd_cap_support: indicate if MSD supported
  1111. * @nstr_bitmap_present: indicate if NSTR bitmap is present
  1112. * @nstr_bitmap_size: Indicates size of NSTR bitmap,
  1113. * as per the 802.11be specification
  1114. * @mlo_bridge_peer: indicate if it is bridge peer
  1115. * @link_switch_in_progress: Flag to indicate FW MLO peer assoc params are sent
  1116. * for the peer due to link switch
  1117. * @unused: spare bits
  1118. * @mld_mac: MLD mac address
  1119. * @logical_link_index: Unique index for links of the mlo. Starts with Zero
  1120. * @ml_peer_id: ML peer id if generated by host. Otherwise invalid peer id
  1121. * @ieee_link_id: peer link ID
  1122. * @emlsr_pad_delay_us: eMLSR Padding Delay from peer in us
  1123. * @emlsr_trans_delay_us: eMLSR Transition Delay from peer in us
  1124. * @emlmr_delay_us: eMLMR Delay from peer in us
  1125. * @trans_timeout_us: EML Transition Timeout in us
  1126. * @medium_sync_duration: medium sync duration in us
  1127. * @medium_sync_ofdm_ed_thresh: medium sync ofdm threshold in us
  1128. * @medium_sync_max_txop_num: Max number of TXOPs
  1129. * @max_num_simultaneous_links: Max number of simultaneous links as per
  1130. * MLD Capability for ML peer
  1131. * @nstr_indication_bitmap: NSTR indication bitmap
  1132. * @vdev_id: ID of the vdev object
  1133. * @bssid: AP link address
  1134. * @chan: Wlan channel information
  1135. * @mac_addr: Self mac addresses
  1136. */
  1137. struct peer_assoc_mlo_params {
  1138. uint32_t mlo_enabled:1,
  1139. mlo_assoc_link:1,
  1140. mlo_primary_umac:1,
  1141. mlo_logical_link_index_valid:1,
  1142. mlo_peer_id_valid:1,
  1143. mlo_force_link_inactive:1,
  1144. emlsr_support:1,
  1145. emlmr_support:1,
  1146. msd_cap_support:1,
  1147. nstr_bitmap_present:1,
  1148. nstr_bitmap_size:1,
  1149. mlo_bridge_peer:1,
  1150. link_switch_in_progress:1,
  1151. unused:19;
  1152. uint8_t mld_mac[QDF_MAC_ADDR_SIZE];
  1153. uint32_t logical_link_index;
  1154. uint32_t ml_peer_id;
  1155. uint32_t ieee_link_id;
  1156. uint16_t emlsr_pad_delay_us;
  1157. uint16_t emlsr_trans_delay_us;
  1158. uint16_t emlmr_delay_us;
  1159. uint32_t trans_timeout_us;
  1160. uint16_t medium_sync_duration;
  1161. uint16_t medium_sync_ofdm_ed_thresh;
  1162. uint16_t medium_sync_max_txop_num;
  1163. uint16_t max_num_simultaneous_links;
  1164. uint32_t nstr_indication_bitmap;
  1165. uint32_t vdev_id;
  1166. struct qdf_mac_addr bssid;
  1167. struct wlan_channel chan;
  1168. struct qdf_mac_addr mac_addr;
  1169. };
  1170. /**
  1171. * struct ml_partner_info - partner link info
  1172. * @vdev_id: vdev id
  1173. * @hw_mld_link_id: unique hw link id across SoCs
  1174. * @mlo_enabled: indicate is MLO enabled
  1175. * @mlo_assoc_link: indicate is the link used to initialize the association
  1176. * of mlo connection
  1177. * @mlo_primary_umac: indicate is the link on primary UMAC, WIN only flag
  1178. * @mlo_logical_link_index_valid: indicate if the logial link index in is valid
  1179. * @mlo_peer_id_valid: indicate if the mlo peer id is valid
  1180. * @mlo_force_link_inactive: force the peer inactive
  1181. * @emlsr_support: indicate if eMLSR supported
  1182. * @emlmr_support: indicate if eMLMR supported
  1183. * @msd_cap_support: indicate if MSD supported
  1184. * @mlo_bridge_peer: indicate if peer is bridge peer
  1185. * @unused: spare bits
  1186. * @logical_link_index: Unique index for links of the mlo. Starts with Zero
  1187. * @link_id: AP Link Id
  1188. * @bssid: AP link address
  1189. * @chan: Wlan channel information
  1190. * @mac_addr: Self mac addresses
  1191. */
  1192. struct ml_partner_info {
  1193. uint32_t vdev_id;
  1194. uint32_t hw_mld_link_id;
  1195. uint32_t mlo_enabled:1,
  1196. mlo_assoc_link:1,
  1197. mlo_primary_umac:1,
  1198. mlo_logical_link_index_valid:1,
  1199. mlo_peer_id_valid:1,
  1200. mlo_force_link_inactive:1,
  1201. emlsr_support:1,
  1202. emlmr_support:1,
  1203. msd_cap_support:1,
  1204. mlo_bridge_peer:1,
  1205. unused:22;
  1206. uint32_t logical_link_index;
  1207. uint32_t link_id;
  1208. struct qdf_mac_addr bssid;
  1209. struct wlan_channel chan;
  1210. struct qdf_mac_addr mac_addr;
  1211. };
  1212. /**
  1213. * struct peer_assoc_ml_partner_links - ML partner links
  1214. * @num_links: Number of links
  1215. * @partner_info: Partner link info
  1216. */
  1217. struct peer_assoc_ml_partner_links {
  1218. uint8_t num_links;
  1219. struct ml_partner_info partner_info[WLAN_UMAC_MLO_MAX_VDEVS];
  1220. };
  1221. #endif
  1222. /**
  1223. * struct peer_assoc_params - peer assoc cmd parameter
  1224. * @vdev_id: vdev id
  1225. * @peer_new_assoc: peer association type
  1226. * @peer_associd: peer association id
  1227. * @peer_caps: peer capabalities
  1228. * @peer_listen_intval: peer listen interval
  1229. * @peer_ht_caps: HT capabalities
  1230. * @peer_max_mpdu: 0 : 8k , 1 : 16k, 2 : 32k, 3 : 64k
  1231. * @peer_mpdu_density: 3 : 0~7 : 2^(11nAMPDUdensity -4)
  1232. * @peer_rate_caps: peer rate capabalities
  1233. * @peer_nss: peer nss
  1234. * @peer_vht_caps: peer VHT capabilities
  1235. * @peer_phymode: peer phymode
  1236. * @peer_ht_info: peer HT info
  1237. * @peer_legacy_rates: peer legacy rates
  1238. * @peer_ht_rates: peer ht rates
  1239. * @rx_max_rate: max rx rates
  1240. * @rx_mcs_set: rx mcs
  1241. * @tx_max_rate: max tx rates
  1242. * @tx_mcs_set: tx mcs
  1243. * @vht_capable: VHT capabalities
  1244. * @min_data_rate: Peer minimum rate
  1245. * @tx_max_mcs_nss: max tx MCS and NSS
  1246. * @peer_bw_rxnss_override: Peer BW RX NSS overridden or not.
  1247. * @is_pmf_enabled: PMF enabled
  1248. * @is_wme_set: WME enabled
  1249. * @qos_flag: QoS Flags
  1250. * @apsd_flag: APSD flags
  1251. * @ht_flag: HT flags
  1252. * @bw_40: 40 capabale
  1253. * @bw_80: 80 capabale
  1254. * @bw_160: 160 capabale
  1255. * @bw_320: 320 capabale
  1256. * @stbc_flag: STBC flag
  1257. * @ldpc_flag: LDPC flag
  1258. * @static_mimops_flag: statis MIMO PS flags
  1259. * @dynamic_mimops_flag: Dynamic MIMO PS flags
  1260. * @spatial_mux_flag: spatial MUX flags
  1261. * @vht_flag: VHT flags
  1262. * @vht_ng_flag: VHT on 11N/G flags
  1263. * @need_ptk_4_way: Needs 4 way handshake
  1264. * @need_gtk_2_way: Needs 2 way GTK
  1265. * @auth_flag: Is peer authenticated
  1266. * @safe_mode_enabled: Safe enabled for this peer
  1267. * @amsdu_disable: AMSDU disable
  1268. * @peer_mac: Peer mac address
  1269. * @he_flag: HE flags
  1270. * @eht_flag: EHT flags
  1271. * @twt_requester: TWT Requester Support bit in Extended Capabilities element
  1272. * @twt_responder: TWT Responder Support bit in Extended Capabilities element
  1273. * @peer_he_cap_macinfo: Peer HE Cap MAC info
  1274. * @peer_he_ops: Peer HE operation info
  1275. * @peer_he_cap_phyinfo: Peer HE Cap PHY info
  1276. * @peer_he_cap_info_internal: Peer HE internal PHY capability info
  1277. * @peer_he_caps_6ghz: Peer HE 6GHz Band Capabilities info
  1278. * @peer_he_mcs_count: Peer HE MCS TX/RX MAP count
  1279. * @peer_he_rx_mcs_set: Peer HE RX MCS MAP
  1280. * @peer_he_tx_mcs_set: Peer HE TX MCS MAP
  1281. * @peer_eht_cap_macinfo: Peer EHT Cap MAC info
  1282. * @peer_eht_ops: Peer EHT operation info
  1283. * @peer_eht_cap_phyinfo: Peer EHT Cap PHY info
  1284. * @peer_eht_mcs_count: Peer EHT MCS TX/RX MAP count
  1285. * @peer_eht_rx_mcs_set: Peer EHT RX MCS MAP
  1286. * @peer_eht_tx_mcs_set: Peer EHT TX MCS MAP
  1287. * @peer_eht_ppet: Peer EHT PPET info
  1288. * @puncture_bitmap: 11be static puncture bitmap
  1289. * @peer_ppet: Peer HE PPET info
  1290. * @peer_bsscolor_rept_info:
  1291. * @peer_bss_max_idle_option: Peer BSS Max Idle option update
  1292. * @akm: AKM info
  1293. * @mlo_params: MLO assoc params
  1294. * @ml_links: MLO partner links
  1295. * @qcn_node_flag: if node is QCN node
  1296. * @mesh_node_flag: if node is 4 addr node
  1297. * @is_assoc_vdev: true if assoc vdev
  1298. * @peer_dms_capable: is peer DMS capable
  1299. * @reserved: spare bits
  1300. * @t2lm_params: TID-to-link mapping params
  1301. */
  1302. struct peer_assoc_params {
  1303. uint32_t vdev_id;
  1304. uint32_t peer_new_assoc;
  1305. uint32_t peer_associd;
  1306. uint32_t peer_caps;
  1307. uint32_t peer_listen_intval;
  1308. uint32_t peer_ht_caps;
  1309. uint32_t peer_max_mpdu;
  1310. uint32_t peer_mpdu_density;
  1311. uint32_t peer_rate_caps;
  1312. uint32_t peer_nss;
  1313. uint32_t peer_vht_caps;
  1314. uint32_t peer_phymode;
  1315. uint32_t peer_ht_info[2];
  1316. target_rate_set peer_legacy_rates;
  1317. target_rate_set peer_ht_rates;
  1318. uint32_t rx_max_rate;
  1319. uint32_t rx_mcs_set;
  1320. uint32_t tx_max_rate;
  1321. uint32_t tx_mcs_set;
  1322. uint8_t vht_capable;
  1323. uint8_t min_data_rate;
  1324. uint32_t peer_bw_rxnss_override;
  1325. uint32_t tx_max_mcs_nss;
  1326. uint32_t is_pmf_enabled:1,
  1327. is_wme_set:1,
  1328. qos_flag:1,
  1329. apsd_flag:1,
  1330. ht_flag:1,
  1331. bw_40:1,
  1332. bw_80:1,
  1333. bw_160:1,
  1334. #ifdef WLAN_FEATURE_11BE
  1335. bw_320:1,
  1336. #endif
  1337. stbc_flag:1,
  1338. ldpc_flag:1,
  1339. static_mimops_flag:1,
  1340. dynamic_mimops_flag:1,
  1341. spatial_mux_flag:1,
  1342. vht_flag:1,
  1343. vht_ng_flag:1,
  1344. need_ptk_4_way:1,
  1345. need_gtk_2_way:1,
  1346. auth_flag:1,
  1347. safe_mode_enabled:1,
  1348. amsdu_disable:1,
  1349. p2p_capable_sta:1,
  1350. inter_bss_peer:1;
  1351. /* Use common structure */
  1352. uint8_t peer_mac[QDF_MAC_ADDR_SIZE];
  1353. bool he_flag;
  1354. #ifdef WLAN_FEATURE_11BE
  1355. bool eht_flag;
  1356. #endif
  1357. bool twt_requester;
  1358. bool twt_responder;
  1359. uint32_t peer_he_cap_macinfo[WMI_HOST_MAX_HECAP_MAC_SIZE];
  1360. uint32_t peer_he_ops;
  1361. uint32_t peer_he_cap_phyinfo[WMI_HOST_MAX_HECAP_PHY_SIZE];
  1362. uint32_t peer_he_cap_info_internal;
  1363. uint32_t peer_he_caps_6ghz;
  1364. uint32_t peer_he_mcs_count;
  1365. uint32_t peer_he_rx_mcs_set[WMI_HOST_MAX_HE_RATE_SET];
  1366. uint32_t peer_he_tx_mcs_set[WMI_HOST_MAX_HE_RATE_SET];
  1367. #ifdef WLAN_FEATURE_11BE
  1368. uint32_t peer_eht_cap_macinfo[WMI_HOST_MAX_EHTCAP_MAC_SIZE];
  1369. uint32_t peer_eht_ops;
  1370. uint32_t peer_eht_cap_phyinfo[WMI_HOST_MAX_EHTCAP_PHY_SIZE];
  1371. uint32_t peer_eht_mcs_count;
  1372. uint32_t peer_eht_rx_mcs_set[WMI_HOST_MAX_EHT_RATE_SET];
  1373. uint32_t peer_eht_tx_mcs_set[WMI_HOST_MAX_EHT_RATE_SET];
  1374. struct wmi_host_ppe_threshold peer_eht_ppet;
  1375. uint16_t puncture_bitmap;
  1376. #endif
  1377. struct wmi_host_ppe_threshold peer_ppet;
  1378. u_int8_t peer_bsscolor_rept_info;
  1379. uint32_t peer_bss_max_idle_option;
  1380. uint16_t akm;
  1381. #ifdef WLAN_FEATURE_11BE_MLO
  1382. struct peer_assoc_mlo_params mlo_params;
  1383. struct peer_assoc_ml_partner_links ml_links;
  1384. bool qcn_node_flag;
  1385. bool mesh_node_flag;
  1386. bool is_assoc_vdev;
  1387. #endif
  1388. uint8_t peer_dms_capable:1,
  1389. reserved:7;
  1390. #ifdef WLAN_FEATURE_11BE
  1391. struct wmi_host_tid_to_link_map_params t2lm_params;
  1392. #endif
  1393. };
  1394. /**
  1395. * struct ap_ps_params - ap ps cmd parameter
  1396. * @vdev_id: vdev id
  1397. * @param: ap ps parameter
  1398. * @value: ap ps parameter value
  1399. */
  1400. struct ap_ps_params {
  1401. uint32_t vdev_id;
  1402. uint32_t param;
  1403. uint32_t value;
  1404. };
  1405. #define WMI_HOST_SCAN_CHAN_FREQ_SHIFT 0
  1406. #define WMI_HOST_SCAN_CHAN_FREQ_MASK 0xffff
  1407. #define WMI_HOST_SCAN_CHAN_MODE_SHIFT 16
  1408. #define WMI_HOST_SCAN_CHAN_MODE_MASK 0xff
  1409. #define WMI_HOST_MAX_CHANS_PER_WMI_CMD 58
  1410. /**
  1411. * struct scan_chan_list_params - scan channel list cmd parameter
  1412. * @pdev_id: pdev_id
  1413. * @num_chan: no of scan channels
  1414. * @nallchans: nall chans
  1415. * @append: append to existing chan list
  1416. * @max_bw_support_present: max BW support present
  1417. * @ch_param: pointer to channel_paramw
  1418. */
  1419. struct scan_chan_list_params {
  1420. uint32_t pdev_id;
  1421. uint16_t nallchans;
  1422. bool append;
  1423. bool max_bw_support_present;
  1424. struct channel_param ch_param[1];
  1425. };
  1426. #ifdef QCA_SUPPORT_AGILE_DFS
  1427. /**
  1428. * struct vdev_adfs_ch_cfg_params - Agile dfs channel set request params
  1429. * @vdev_id: Vdev identifier
  1430. * @ocac_mode: Off Channel CAC mode, see WMI_ADFS_OCAC_MODE
  1431. * @min_duration_ms: Minimum Off channel CAC duration
  1432. * @max_duration_ms: Maximum Off channel CAC duration
  1433. * @chan_freq: channel number of precac channel
  1434. * @chan_width: Precac Channel width
  1435. * @center_freq1: Agile preCAC channel frequency in MHz for 20/40/80/160
  1436. * and left center frequency(5690MHz) for restricted 80p80.
  1437. * @center_freq2: Second segment Agile frequency in Mhz, if applicable. 0 for
  1438. * 20/40/80/160 and right center frequency(5775MHz) for
  1439. * restricted 80p80.
  1440. */
  1441. struct vdev_adfs_ch_cfg_params {
  1442. uint32_t vdev_id;
  1443. uint32_t ocac_mode;
  1444. uint32_t min_duration_ms;
  1445. uint32_t max_duration_ms;
  1446. uint32_t chan_freq;
  1447. uint32_t chan_width;
  1448. uint32_t center_freq1;
  1449. uint32_t center_freq2;
  1450. };
  1451. /**
  1452. * struct vdev_adfs_abort_params - Agile dfs ocac abort command to stop precac.
  1453. * @vdev_id: Vdev identifier
  1454. */
  1455. struct vdev_adfs_abort_params {
  1456. uint32_t vdev_id;
  1457. };
  1458. #endif
  1459. /**
  1460. * struct fw_hang_params - fw hang command parameters
  1461. * @type: 0:unused 1: ASSERT, 2:not respond detect command, 3:simulate ep-full
  1462. * @delay_time_ms: 0xffffffff means the simulate will delay for random time (0 ~0xffffffff ms)
  1463. */
  1464. struct fw_hang_params {
  1465. uint32_t type;
  1466. uint32_t delay_time_ms;
  1467. };
  1468. /**
  1469. * struct pdev_utf_params - pdev utf command parameters
  1470. * @utf_payload:
  1471. * @len:
  1472. * @is_ar900b: is it 900b target
  1473. */
  1474. struct pdev_utf_params {
  1475. uint8_t *utf_payload;
  1476. uint32_t len;
  1477. bool is_ar900b;
  1478. };
  1479. /*Adding this due to dependency on wmi_unified.h
  1480. */
  1481. typedef struct {
  1482. uint32_t len;
  1483. uint32_t msgref;
  1484. uint32_t segmentInfo;
  1485. } QVIT_SEG_HDR_INFO_STRUCT;
  1486. /**
  1487. * struct crash_inject - crash inject command parameters
  1488. * @type: crash inject type
  1489. * @delay_time_ms: time in milliseconds for FW to delay the crash
  1490. */
  1491. struct crash_inject {
  1492. uint32_t type;
  1493. uint32_t delay_time_ms;
  1494. };
  1495. /**
  1496. * struct dbglog_params - fw deboglog command parameters
  1497. * @param: command parameter
  1498. * @val: parameter value
  1499. * @module_id_bitmap: fixed length module id bitmap
  1500. * @bitmap_len: module id bitmap length
  1501. * @cfgvalid: cfgvalid
  1502. */
  1503. struct dbglog_params {
  1504. uint32_t param;
  1505. uint32_t val;
  1506. uint32_t *module_id_bitmap;
  1507. uint32_t bitmap_len;
  1508. uint32_t cfgvalid[3];
  1509. };
  1510. /**
  1511. * struct seg_hdr_info - header info
  1512. * @len: length
  1513. * @msgref: message reference
  1514. * @segmentInfo: segment info
  1515. * @pad: padding
  1516. */
  1517. struct seg_hdr_info {
  1518. uint32_t len;
  1519. uint32_t msgref;
  1520. uint32_t segmentInfo;
  1521. uint32_t pad;
  1522. };
  1523. /**
  1524. * struct tx_send_params - TX parameters
  1525. * @pwr: Tx frame transmission power
  1526. * @mcs_mask: Modulation and coding index mask for transmission
  1527. * bit 0 -> CCK 1 Mbps rate is allowed
  1528. * bit 1 -> CCK 2 Mbps rate is allowed
  1529. * bit 2 -> CCK 5.5 Mbps rate is allowed
  1530. * bit 3 -> CCK 11 Mbps rate is allowed
  1531. * bit 4 -> OFDM BPSK modulation, 1/2 coding rate is allowed
  1532. * bit 5 -> OFDM BPSK modulation, 3/4 coding rate is allowed
  1533. * bit 6 -> OFDM QPSK modulation, 1/2 coding rate is allowed
  1534. * bit 7 -> OFDM QPSK modulation, 3/4 coding rate is allowed
  1535. * bit 8 -> OFDM 16-QAM modulation, 1/2 coding rate is allowed
  1536. * bit 9 -> OFDM 16-QAM modulation, 3/4 coding rate is allowed
  1537. * bit 10 -> OFDM 64-QAM modulation, 2/3 coding rate is allowed
  1538. * bit 11 -> OFDM 64-QAM modulation, 3/4 coding rate is allowed
  1539. * @nss_mask: Spatial streams permitted
  1540. * bit 0: if set, Nss = 1 (non-MIMO) is permitted
  1541. * bit 1: if set, Nss = 2 (2x2 MIMO) is permitted
  1542. * bit 2: if set, Nss = 3 (3x3 MIMO) is permitted
  1543. * bit 3: if set, Nss = 4 (4x4 MIMO) is permitted
  1544. * bit 4: if set, Nss = 5 (5x5 MIMO) is permitted
  1545. * bit 5: if set, Nss = 6 (6x6 MIMO) is permitted
  1546. * bit 6: if set, Nss = 7 (7x7 MIMO) is permitted
  1547. * bit 7: if set, Nss = 8 (8x8 MIMO) is permitted
  1548. * If no bits are set, target will choose what NSS type to use
  1549. * @retry_limit: Maximum number of retries before ACK
  1550. * @chain_mask: Chains to be used for transmission
  1551. * @bw_mask: Bandwidth to be used for transmission
  1552. * bit 0 -> 5MHz
  1553. * bit 1 -> 10MHz
  1554. * bit 2 -> 20MHz
  1555. * bit 3 -> 40MHz
  1556. * bit 4 -> 80MHz
  1557. * bit 5 -> 160MHz
  1558. * bit 6 -> 80_80MHz
  1559. * @preamble_type: Preamble types for transmission
  1560. * bit 0: if set, OFDM
  1561. * bit 1: if set, CCK
  1562. * bit 2: if set, HT
  1563. * bit 3: if set, VHT
  1564. * bit 4: if set, HE
  1565. * @frame_type: Data or Management frame
  1566. * Data:1 Mgmt:0
  1567. * @cfr_enable: flag to enable CFR capture
  1568. * 0:disable 1:enable
  1569. * @en_beamforming: flag to enable tx beamforming
  1570. * 0:disable 1:enable
  1571. * @retry_limit_ext: 3 bits of extended retry limit.
  1572. * Combined with 4 bits "retry_limit"
  1573. * to create 7 bits hw retry count.
  1574. * Maximum 127 retries for specific frames.
  1575. * @reserved: Spare bits
  1576. */
  1577. struct tx_send_params {
  1578. uint32_t pwr:8,
  1579. mcs_mask:12,
  1580. nss_mask:8,
  1581. retry_limit:4;
  1582. uint32_t chain_mask:8,
  1583. bw_mask:7,
  1584. preamble_type:5,
  1585. frame_type:1,
  1586. cfr_enable:1,
  1587. en_beamforming:1,
  1588. retry_limit_ext:3,
  1589. reserved:6;
  1590. };
  1591. /**
  1592. * struct wmi_mgmt_params - wmi mgmt cmd parameters
  1593. * @tx_frame: management tx frame
  1594. * @frm_len: frame length
  1595. * @vdev_id: vdev id
  1596. * @tx_type: type of management frame (determines what callback to use)
  1597. * @chanfreq: channel frequency
  1598. * @desc_id: descriptor id relyaed back by target
  1599. * @pdata: frame data
  1600. * @macaddr: macaddr of peer
  1601. * @qdf_ctx: qdf context for qdf_nbuf_map
  1602. * @tx_param: TX send parameters
  1603. * @tx_params_valid: Flag that indicates if TX params are valid
  1604. * @use_6mbps: specify whether management frame to transmit should
  1605. * @tx_flags: additional configuration flags for mgmt frames
  1606. * use 6 Mbps rather than 1 Mbps min rate(for 5GHz band or P2P)
  1607. * @peer_rssi: peer RSSI value
  1608. * @mlo_link_agnostic: if true, can send on any active link
  1609. */
  1610. struct wmi_mgmt_params {
  1611. void *tx_frame;
  1612. uint16_t frm_len;
  1613. uint8_t vdev_id;
  1614. uint8_t tx_type;
  1615. uint16_t chanfreq;
  1616. uint16_t desc_id;
  1617. void *pdata;
  1618. uint8_t *macaddr;
  1619. void *qdf_ctx;
  1620. struct tx_send_params tx_param;
  1621. bool tx_params_valid;
  1622. uint8_t use_6mbps;
  1623. uint32_t tx_flags;
  1624. int8_t peer_rssi;
  1625. uint8_t mlo_link_agnostic;
  1626. };
  1627. /**
  1628. * struct wmi_offchan_data_tx_params - wmi offchan data tx cmd parameters
  1629. * @tx_frame: management tx frame
  1630. * @frm_len: frame length
  1631. * @vdev_id: vdev id
  1632. * @tx_params_valid: Flag that indicates if TX params are valid
  1633. * @chanfreq: channel frequency
  1634. * @desc_id: descriptor id relyaed back by target
  1635. * @pdata: frame data
  1636. * @macaddr: macaddr of peer
  1637. * @qdf_ctx: qdf context for qdf_nbuf_map
  1638. * @tx_param: TX send parameters
  1639. */
  1640. struct wmi_offchan_data_tx_params {
  1641. void *tx_frame;
  1642. uint16_t frm_len;
  1643. uint8_t vdev_id;
  1644. bool tx_params_valid;
  1645. uint16_t chanfreq;
  1646. uint16_t desc_id;
  1647. void *pdata;
  1648. uint8_t *macaddr;
  1649. void *qdf_ctx;
  1650. struct tx_send_params tx_param;
  1651. };
  1652. /**
  1653. * struct sta_uapsd_params - uapsd auto trig params
  1654. * @wmm_ac: WMM access category from 0 to 3
  1655. * @user_priority: User priority to use in trigger frames
  1656. * @service_interval: service interval
  1657. * @suspend_interval: suspend interval
  1658. * @delay_interval: delay interval
  1659. */
  1660. struct sta_uapsd_params {
  1661. uint32_t wmm_ac;
  1662. uint32_t user_priority;
  1663. uint32_t service_interval;
  1664. uint32_t suspend_interval;
  1665. uint32_t delay_interval;
  1666. };
  1667. /**
  1668. * struct sta_uapsd_trig_params - uapsd trigger parameter
  1669. * @vdevid: vdev id
  1670. * @peer_addr: peer address
  1671. * @num_ac: no of access category
  1672. * @auto_triggerparam: trigger parameters
  1673. */
  1674. struct sta_uapsd_trig_params {
  1675. uint32_t vdevid;
  1676. uint8_t peer_addr[QDF_MAC_ADDR_SIZE];
  1677. uint32_t num_ac;
  1678. struct sta_uapsd_params *auto_triggerparam;
  1679. };
  1680. #define WMI_NUM_AC (4)
  1681. #define WMI_MAX_NUM_AC 4
  1682. enum wmi_peer_rate_report_cond_phy_type {
  1683. WMI_PEER_RATE_REPORT_COND_11B = 0,
  1684. WMI_PEER_RATE_REPORT_COND_11A_G,
  1685. WMI_PEER_RATE_REPORT_COND_11N,
  1686. WMI_PEER_RATE_REPORT_COND_11AC,
  1687. WMI_PEER_RATE_REPORT_COND_MAX_NUM
  1688. };
  1689. /**
  1690. * struct report_rate_delta - peer specific parameters
  1691. * @percent: percentage
  1692. * @delta_min: rate min delta
  1693. */
  1694. struct report_rate_delta {
  1695. uint32_t percent; /* in unit of 12.5% */
  1696. uint32_t delta_min; /* in unit of Mbps */
  1697. };
  1698. /**
  1699. * struct report_rate_per_phy - per phy report parameters
  1700. * @cond_flags: condition flag val
  1701. * @delta: rate delta
  1702. * @report_rate_threshold: rate threshold
  1703. */
  1704. struct report_rate_per_phy {
  1705. /*
  1706. * PEER_RATE_REPORT_COND_FLAG_DELTA,
  1707. * PEER_RATE_REPORT_COND_FLAG_THRESHOLD
  1708. * Any of these two conditions or both of
  1709. * them can be set.
  1710. */
  1711. uint32_t cond_flags;
  1712. struct report_rate_delta delta;
  1713. /*
  1714. * In unit of Mbps. There are at most 4 thresholds
  1715. * If the threshold count is less than 4, set zero to
  1716. * the one following the last threshold
  1717. */
  1718. uint32_t report_rate_threshold[WMI_MAX_NUM_OF_RATE_THRESH];
  1719. };
  1720. /**
  1721. * struct wmi_peer_rate_report_params - peer rate report parameters
  1722. * @rate_report_enable: enable rate report param
  1723. * @backoff_time: backoff time in unit of msecond
  1724. * @timer_period: timer in unit of msecond
  1725. * @report_per_phy: report per wmi_peer_rate_report_cond_phy_type
  1726. */
  1727. struct wmi_peer_rate_report_params {
  1728. uint32_t rate_report_enable;
  1729. uint32_t backoff_time;
  1730. uint32_t timer_period;
  1731. struct report_rate_per_phy report_per_phy[
  1732. WMI_PEER_RATE_REPORT_COND_MAX_NUM];
  1733. };
  1734. /**
  1735. * enum thermal_mgmt_action_code - thermal mgmt action code
  1736. * @THERMAL_MGMT_ACTION_DEFAULT: target chooses what action to take, based
  1737. * on its default thermal management policy.
  1738. * @THERMAL_MGMT_ACTION_HALT_TRAFFIC: If the temperature rises above
  1739. * configured upper thresh degreeC, the target will halt tx.
  1740. * @THERMAL_MGMT_ACTION_NOTIFY_HOST: the target will notify the host
  1741. * if the temperature either rises above configured upper thresh degreeC or
  1742. * falls below lower thresh degreeC.
  1743. * @THERMAL_MGMT_ACTION_CHAINSCALING: The target will switch tx chain
  1744. * mask from multi chains to single chain if the temperature rises
  1745. * above upper thresh degreeC.
  1746. * The target will switch tx chainmask back to multi chains if the
  1747. * temperature drops below upper_thresh_degreeC.
  1748. */
  1749. enum thermal_mgmt_action_code {
  1750. THERMAL_MGMT_ACTION_DEFAULT,
  1751. THERMAL_MGMT_ACTION_HALT_TRAFFIC,
  1752. THERMAL_MGMT_ACTION_NOTIFY_HOST,
  1753. THERMAL_MGMT_ACTION_CHAINSCALING,
  1754. };
  1755. /**
  1756. * struct thermal_cmd_params - thermal command parameters
  1757. * @min_temp: minimum temperature
  1758. * @max_temp: maximum temperature
  1759. * @thermal_enable: thermal enable
  1760. * @thermal_action: thermal action code
  1761. */
  1762. struct thermal_cmd_params {
  1763. uint16_t min_temp;
  1764. uint16_t max_temp;
  1765. uint8_t thermal_enable;
  1766. enum thermal_mgmt_action_code thermal_action;
  1767. };
  1768. #define WMI_LRO_IPV4_SEED_ARR_SZ 5
  1769. #define WMI_LRO_IPV6_SEED_ARR_SZ 11
  1770. /**
  1771. * struct wmi_lro_config_cmd_t - set LRO init parameters
  1772. * @lro_enable: indicates whether lro is enabled
  1773. * @tcp_flag: If the TCP flags from the packet do not match
  1774. * the values in this field after masking with TCP flags mask
  1775. * below, packet is not LRO eligible
  1776. * @tcp_flag_mask: field for comparing the TCP values provided
  1777. * above with the TCP flags field in the received packet
  1778. * @toeplitz_hash_ipv4: contains seed needed to compute the flow id
  1779. * 5-tuple toeplitz hash for ipv4 packets
  1780. * @toeplitz_hash_ipv6: contains seed needed to compute the flow id
  1781. * 5-tuple toeplitz hash for ipv6 packets
  1782. * @pdev_id: radio on which lro hash is configured
  1783. */
  1784. struct wmi_lro_config_cmd_t {
  1785. uint32_t lro_enable;
  1786. uint32_t tcp_flag:9,
  1787. tcp_flag_mask:9;
  1788. uint32_t toeplitz_hash_ipv4[WMI_LRO_IPV4_SEED_ARR_SZ];
  1789. uint32_t toeplitz_hash_ipv6[WMI_LRO_IPV6_SEED_ARR_SZ];
  1790. uint32_t pdev_id;
  1791. };
  1792. #ifdef WLAN_FEATURE_11BE_MLO
  1793. /**
  1794. * struct mlo_prb_resp_tmpl_ml_info - Impacted link critical update information
  1795. * @hw_link_id: Unique hw link id across SoCs
  1796. * CU vdev map for the Critical update category-1 (Inclusion of CU IES)
  1797. * @cu_vdev_map_cat1_lo: bits 31:0 to represent vdev ids 0 to 31
  1798. * @cu_vdev_map_cat1_hi: bits 63:32 to represent vdev ids 32 to 63
  1799. * CU vdev map for the Critical update category-2 (modification of CU IES)
  1800. * @cu_vdev_map_cat2_lo: bits 31:0 to represent vdev ids 0 to 31
  1801. * @cu_vdev_map_cat2_hi: bits 63:32 to represent vdev ids 32 to 63
  1802. */
  1803. struct mlo_prb_resp_tmpl_ml_info {
  1804. uint32_t hw_link_id;
  1805. uint32_t cu_vdev_map_cat1_lo;
  1806. uint32_t cu_vdev_map_cat1_hi;
  1807. uint32_t cu_vdev_map_cat2_lo;
  1808. uint32_t cu_vdev_map_cat2_hi;
  1809. };
  1810. #endif
  1811. /**
  1812. * struct wmi_probe_resp_params - send probe response parameters
  1813. * @prb_rsp_template_frm: pointer to template probe response template
  1814. * @prb_rsp_template_len: length of probe response template
  1815. * @cu_ml_info: Impacted link critical update information
  1816. */
  1817. struct wmi_probe_resp_params {
  1818. uint8_t *prb_rsp_template_frm;
  1819. uint32_t prb_rsp_template_len;
  1820. #ifdef WLAN_FEATURE_11BE_MLO
  1821. struct mlo_prb_resp_tmpl_ml_info cu_ml_info;
  1822. #endif
  1823. };
  1824. /* struct set_key_params: structure containing
  1825. * installation key parameters
  1826. * @vdev_id: vdev id
  1827. * @key_len: key length
  1828. * @key_idx: key index
  1829. * @group_key_idx: group key index for VLAN
  1830. * @peer_mac: peer mac address
  1831. * @key_flags: key flags, 0:pairwise key, 1:group key, 2:static key
  1832. * @key_cipher: key cipher based on security mode
  1833. * @key_txmic_len: tx mic length
  1834. * @key_rxmic_len: rx mic length
  1835. * @key_tsc_counter: key tx sc counter
  1836. * @key_rsc_counter: key rx sc counter
  1837. * @rx_iv: receive IV, applicable only in case of WAPI
  1838. * @tx_iv: transmit IV, applicable only in case of WAPI
  1839. * @key_data: key data
  1840. */
  1841. struct set_key_params {
  1842. uint8_t vdev_id;
  1843. uint16_t key_len;
  1844. uint32_t key_idx;
  1845. uint32_t group_key_idx;
  1846. uint8_t peer_mac[QDF_MAC_ADDR_SIZE];
  1847. uint32_t key_flags;
  1848. uint32_t key_cipher;
  1849. uint32_t key_txmic_len;
  1850. uint32_t key_rxmic_len;
  1851. uint64_t key_tsc_counter;
  1852. uint64_t key_rsc_counter;
  1853. #if defined(ATH_SUPPORT_WAPI) || defined(FEATURE_WLAN_WAPI)
  1854. uint8_t rx_iv[16];
  1855. uint8_t tx_iv[16];
  1856. #endif
  1857. uint8_t key_data[WMI_MAC_MAX_KEY_LENGTH];
  1858. };
  1859. /**
  1860. * struct scan_mac_oui - oui parameters
  1861. * @oui: oui parameters
  1862. * @vdev_id: interface id
  1863. * @enb_probe_req_sno_randomization: control probe req sequence no randomization
  1864. * @ie_allowlist: probe req IE allowlist attrs
  1865. */
  1866. struct scan_mac_oui {
  1867. uint8_t oui[WMI_WIFI_SCANNING_MAC_OUI_LENGTH];
  1868. uint32_t vdev_id;
  1869. bool enb_probe_req_sno_randomization;
  1870. struct probe_req_allowlist_attr ie_allowlist;
  1871. };
  1872. #define WMI_PASSPOINT_REALM_LEN 256
  1873. #define WMI_PASSPOINT_ROAMING_CONSORTIUM_ID_NUM 16
  1874. #define WMI_PASSPOINT_PLMN_LEN 3
  1875. /**
  1876. * struct wifi_passpoint_network_param - passpoint network block
  1877. * @id: identifier of this network block
  1878. * @realm: null terminated UTF8 encoded realm, 0 if unspecified
  1879. * @plmn: mcc/mnc combination as per rules, 0s if unspecified
  1880. * @roaming_consortium_ids: roaming consortium ids to match, 0s if unspecified
  1881. */
  1882. struct wifi_passpoint_network_param {
  1883. uint32_t id;
  1884. uint8_t realm[WMI_PASSPOINT_REALM_LEN];
  1885. uint8_t plmn[WMI_PASSPOINT_PLMN_LEN];
  1886. int64_t roaming_consortium_ids[
  1887. WMI_PASSPOINT_ROAMING_CONSORTIUM_ID_NUM];
  1888. };
  1889. /**
  1890. * struct wifi_passpoint_req_param - passpoint request
  1891. * @request_id: request identifier
  1892. * @vdev_id: vdev that is the target of the request
  1893. * @num_networks: number of valid entries in @networks
  1894. * @networks: passpoint networks
  1895. */
  1896. struct wifi_passpoint_req_param {
  1897. uint32_t request_id;
  1898. uint32_t vdev_id;
  1899. uint32_t num_networks;
  1900. struct wifi_passpoint_network_param networks[];
  1901. };
  1902. /* struct mobility_domain_info - structure containing
  1903. * mobility domain info
  1904. * @mdie_present: mobility domain present or not
  1905. * @mobility_domain: mobility domain
  1906. */
  1907. struct mobility_domain_info {
  1908. uint8_t mdie_present;
  1909. uint16_t mobility_domain;
  1910. };
  1911. /**
  1912. * struct wifi_epno_network_params - enhanced pno network block
  1913. * @ssid: ssid
  1914. * @rssi_threshold: threshold for considering this SSID as found, required
  1915. * granularity for this threshold is 4dBm to 8dBm
  1916. * @flags: WIFI_PNO_FLAG_XXX
  1917. * @auth_bit_field: auth bit field for matching WPA IE
  1918. */
  1919. struct wifi_epno_network_params {
  1920. struct wlan_ssid ssid;
  1921. int8_t rssi_threshold;
  1922. uint8_t flags;
  1923. uint8_t auth_bit_field;
  1924. };
  1925. /**
  1926. * struct wifi_enhanced_pno_params - enhanced pno network params
  1927. * @request_id: request id number
  1928. * @vdev_id: vdev id
  1929. * @min_5ghz_rssi: minimum 5GHz RSSI for a BSSID to be considered
  1930. * @min_24ghz_rssi: minimum 2.4GHz RSSI for a BSSID to be considered
  1931. * @initial_score_max: maximum score that a network can have before bonuses
  1932. * @current_connection_bonus: only report when there is a network's score this
  1933. * much higher than the current connection
  1934. * @same_network_bonus: score bonus for all n/w with the same network flag
  1935. * @secure_bonus: score bonus for networks that are not open
  1936. * @band_5ghz_bonus: 5GHz RSSI score bonus (applied to all 5GHz networks)
  1937. * @num_networks: number of ssids
  1938. * @networks: EPNO networks
  1939. */
  1940. struct wifi_enhanced_pno_params {
  1941. uint32_t request_id;
  1942. uint32_t vdev_id;
  1943. uint32_t min_5ghz_rssi;
  1944. uint32_t min_24ghz_rssi;
  1945. uint32_t initial_score_max;
  1946. uint32_t current_connection_bonus;
  1947. uint32_t same_network_bonus;
  1948. uint32_t secure_bonus;
  1949. uint32_t band_5ghz_bonus;
  1950. uint32_t num_networks;
  1951. struct wifi_epno_network_params networks[];
  1952. };
  1953. enum {
  1954. WMI_AP_RX_DATA_OFFLOAD = 0x00,
  1955. WMI_STA_RX_DATA_OFFLOAD = 0x01,
  1956. };
  1957. /**
  1958. * enum wmi_extscan_configuration_flags - extscan config flags
  1959. * @WMI_EXTSCAN_LP_EXTENDED_BATCHING: extended batching
  1960. */
  1961. enum wmi_extscan_configuration_flags {
  1962. WMI_EXTSCAN_LP_EXTENDED_BATCHING = 0x00000001,
  1963. };
  1964. /**
  1965. * enum wmi_extscan_report_events_type - extscan report events type
  1966. * @WMI_EXTSCAN_REPORT_EVENTS_BUFFER_FULL: report only when scan history is full
  1967. * @WMI_EXTSCAN_REPORT_EVENTS_EACH_SCAN: report a scan completion event after
  1968. * each scan
  1969. * @WMI_EXTSCAN_REPORT_EVENTS_FULL_RESULTS: forward scan results
  1970. * (beacons/probe responses + IEs)
  1971. * in real time to HAL, in addition to completion events.
  1972. * Note: To keep backward compatibility,
  1973. * fire completion events regardless of REPORT_EVENTS_EACH_SCAN.
  1974. * @WMI_EXTSCAN_REPORT_EVENTS_NO_BATCH: controls batching,
  1975. * 0 => batching, 1 => no batching
  1976. */
  1977. enum wmi_extscan_report_events_type {
  1978. WMI_EXTSCAN_REPORT_EVENTS_BUFFER_FULL = 0x00,
  1979. WMI_EXTSCAN_REPORT_EVENTS_EACH_SCAN = 0x01,
  1980. WMI_EXTSCAN_REPORT_EVENTS_FULL_RESULTS = 0x02,
  1981. WMI_EXTSCAN_REPORT_EVENTS_NO_BATCH = 0x04,
  1982. };
  1983. /**
  1984. * struct extscan_capabilities_params - ext scan capabilities
  1985. * @request_id: request_id
  1986. * @vdev_id: vdev id
  1987. */
  1988. struct extscan_capabilities_params {
  1989. uint32_t request_id;
  1990. uint8_t vdev_id;
  1991. };
  1992. /**
  1993. * struct extscan_capabilities_reset_params - ext scan capabilities reset
  1994. * parameter
  1995. * @request_id: request_id
  1996. * @vdev_id: vdev id
  1997. */
  1998. struct extscan_capabilities_reset_params {
  1999. uint32_t request_id;
  2000. uint8_t vdev_id;
  2001. };
  2002. /**
  2003. * struct extscan_bssid_hotlist_reset_params - ext scan hotlist reset parameter
  2004. * @request_id: request_id
  2005. * @vdev_id: vdev id
  2006. */
  2007. struct extscan_bssid_hotlist_reset_params {
  2008. uint32_t request_id;
  2009. uint8_t vdev_id;
  2010. };
  2011. /**
  2012. * struct extscan_stop_req_params - ext scan stop parameter
  2013. * @request_id: request_id
  2014. * @vdev_id: vdev id
  2015. */
  2016. struct extscan_stop_req_params {
  2017. uint32_t request_id;
  2018. uint8_t vdev_id;
  2019. };
  2020. /**
  2021. * struct ap_threshold_params - ap threshold parameter
  2022. * @bssid: mac address
  2023. * @low: low threshold
  2024. * @high: high threshold
  2025. */
  2026. struct ap_threshold_params {
  2027. struct qdf_mac_addr bssid;
  2028. int32_t low;
  2029. int32_t high;
  2030. };
  2031. /**
  2032. * struct extscan_set_sig_changereq_params - ext scan channel parameter
  2033. * @request_id: request_id
  2034. * @vdev_id: vdev id
  2035. * @rssi_sample_size: Number of samples for averaging RSSI
  2036. * @lostap_sample_size: Number of missed samples to confirm AP loss
  2037. * @min_breaching: Number of APs breaching threshold required for firmware
  2038. * @num_ap: no of scanned ap
  2039. * @ap: ap threshold parameter
  2040. */
  2041. struct extscan_set_sig_changereq_params {
  2042. uint32_t request_id;
  2043. uint8_t vdev_id;
  2044. uint32_t rssi_sample_size;
  2045. uint32_t lostap_sample_size;
  2046. uint32_t min_breaching;
  2047. uint32_t num_ap;
  2048. struct ap_threshold_params ap[WMI_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS];
  2049. };
  2050. /**
  2051. * struct extscan_cached_result_params - ext scan cached parameter
  2052. * @request_id: request_id
  2053. * @vdev_id: vdev id
  2054. * @flush: cached results flush
  2055. */
  2056. struct extscan_cached_result_params {
  2057. uint32_t request_id;
  2058. uint8_t vdev_id;
  2059. bool flush;
  2060. };
  2061. #define WMI_WLAN_EXTSCAN_MAX_CHANNELS 36
  2062. #define WMI_WLAN_EXTSCAN_MAX_BUCKETS 16
  2063. #define WMI_WLAN_EXTSCAN_MAX_HOTLIST_APS 128
  2064. #define WMI_WLAN_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS 64
  2065. #define WMI_EXTSCAN_MAX_HOTLIST_SSIDS 8
  2066. /**
  2067. * struct wifi_scan_channelspec_params - wifi scan channel parameter
  2068. * @channel: Frequency in MHz
  2069. * @dwell_time_ms: dwell time in milliseconds
  2070. * @passive: passive scan
  2071. * @channel_class: channel class
  2072. */
  2073. struct wifi_scan_channelspec_params {
  2074. uint32_t channel;
  2075. uint32_t dwell_time_ms;
  2076. bool passive;
  2077. uint8_t channel_class;
  2078. };
  2079. /**
  2080. * enum wmi_wifi_band - wifi band
  2081. * @WMI_WIFI_BAND_UNSPECIFIED: unspecified band
  2082. * @WMI_WIFI_BAND_BG: 2.4 GHz
  2083. * @WMI_WIFI_BAND_A: 5 GHz without DFS
  2084. * @WMI_WIFI_BAND_ABG: 2.4 GHz + 5 GHz; no DFS
  2085. * @WMI_WIFI_BAND_A_DFS_ONLY: 5 GHz DFS only
  2086. * @WMI_WIFI_BAND_A_WITH_DFS: 5 GHz with DFS
  2087. * @WMI_WIFI_BAND_ABG_WITH_DFS: 2.4 GHz + 5 GHz with DFS
  2088. * @WMI_WIFI_BAND_MAX: max range
  2089. */
  2090. enum wmi_wifi_band {
  2091. WMI_WIFI_BAND_UNSPECIFIED,
  2092. WMI_WIFI_BAND_BG = 1,
  2093. WMI_WIFI_BAND_A = 2,
  2094. WMI_WIFI_BAND_ABG = 3,
  2095. WMI_WIFI_BAND_A_DFS_ONLY = 4,
  2096. /* 5 is reserved */
  2097. WMI_WIFI_BAND_A_WITH_DFS = 6,
  2098. WMI_WIFI_BAND_ABG_WITH_DFS = 7,
  2099. /* Keep it last */
  2100. WMI_WIFI_BAND_MAX
  2101. };
  2102. /**
  2103. * struct wifi_scan_bucket_params - wifi scan bucket spec
  2104. * @bucket: bucket identifier
  2105. * @band: wifi band
  2106. * @period: Desired period, in millisecond; if this is too
  2107. * low, the firmware should choose to generate results as fast as
  2108. * it can instead of failing the command byte
  2109. * for exponential backoff bucket this is the min_period
  2110. * @report_events: 0 => normal reporting (reporting rssi history
  2111. * only, when rssi history buffer is % full)
  2112. * 1 => same as 0 + report a scan completion event after scanning
  2113. * this bucket
  2114. * 2 => same as 1 + forward scan results
  2115. * (beacons/probe responses + IEs) in real time to HAL
  2116. * @max_period: if max_period is non zero or different than period,
  2117. * then this bucket is an exponential backoff bucket and
  2118. * the scan period will grow exponentially as per formula:
  2119. * actual_period(N) = period ^ (N/(step_count+1)) to a
  2120. * maximum period of max_period
  2121. * @exponent: for exponential back off bucket: multiplier:
  2122. * new_period = old_period * exponent
  2123. * @step_count: for exponential back off bucket, number of scans performed
  2124. * at a given period and until the exponent is applied
  2125. * @num_channels: channels to scan; these may include DFS channels
  2126. * Note that a given channel may appear in multiple buckets
  2127. * @min_dwell_time_active: per bucket minimum active dwell time
  2128. * @max_dwell_time_active: per bucket maximum active dwell time
  2129. * @min_dwell_time_passive: per bucket minimum passive dwell time
  2130. * @max_dwell_time_passive: per bucket maximum passive dwell time
  2131. * @channels: Channel list
  2132. */
  2133. struct wifi_scan_bucket_params {
  2134. uint8_t bucket;
  2135. enum wmi_wifi_band band;
  2136. uint32_t period;
  2137. uint32_t report_events;
  2138. uint32_t max_period;
  2139. uint32_t exponent;
  2140. uint32_t step_count;
  2141. uint32_t num_channels;
  2142. uint32_t min_dwell_time_active;
  2143. uint32_t max_dwell_time_active;
  2144. uint32_t min_dwell_time_passive;
  2145. uint32_t max_dwell_time_passive;
  2146. struct wifi_scan_channelspec_params
  2147. channels[WMI_WLAN_EXTSCAN_MAX_CHANNELS];
  2148. };
  2149. /**
  2150. * struct wifi_scan_cmd_req_params - wifi scan command request params
  2151. * @base_period: base timer period
  2152. * @max_ap_per_scan: max ap per scan
  2153. * @report_threshold_percent: report threshold
  2154. * in %, when buffer is this much full, wake up host
  2155. * @report_threshold_num_scans: report threshold number of scans
  2156. * in number of scans, wake up host after these many scans
  2157. * @request_id: request id
  2158. * @vdev_id: vdev that is the target of the request
  2159. * @num_buckets: number of buckets
  2160. * @min_dwell_time_active: per bucket minimum active dwell time
  2161. * @max_dwell_time_active: per bucket maximum active dwell time
  2162. * @min_dwell_time_passive: per bucket minimum passive dwell time
  2163. * @max_dwell_time_passive: per bucket maximum passive dwell time
  2164. * @configuration_flags: configuration flags
  2165. * @extscan_adaptive_dwell_mode: adaptive dwelltime mode for extscan
  2166. * @buckets: buckets array
  2167. */
  2168. struct wifi_scan_cmd_req_params {
  2169. uint32_t base_period;
  2170. uint32_t max_ap_per_scan;
  2171. uint32_t report_threshold_percent;
  2172. uint32_t report_threshold_num_scans;
  2173. uint32_t request_id;
  2174. uint8_t vdev_id;
  2175. uint32_t num_buckets;
  2176. uint32_t min_dwell_time_active;
  2177. uint32_t max_dwell_time_active;
  2178. uint32_t min_dwell_time_passive;
  2179. uint32_t max_dwell_time_passive;
  2180. uint32_t configuration_flags;
  2181. enum scan_dwelltime_adaptive_mode extscan_adaptive_dwell_mode;
  2182. struct wifi_scan_bucket_params buckets[WMI_WLAN_EXTSCAN_MAX_BUCKETS];
  2183. };
  2184. /**
  2185. * struct mac_ts_info_tfc - mac ts info parameters
  2186. * @burstSizeDefn: burst size
  2187. * @reserved: reserved
  2188. * @ackPolicy: ack policy
  2189. * @userPrio: user priority
  2190. * @psb: psb
  2191. * @aggregation: aggregation
  2192. * @accessPolicy: access policy
  2193. * @direction: direction
  2194. * @tsid: direction
  2195. * @trafficType: traffic type
  2196. */
  2197. struct mac_ts_info_tfc {
  2198. #ifndef ANI_LITTLE_BIT_ENDIAN
  2199. uint8_t burstSizeDefn:1;
  2200. uint8_t reserved:7;
  2201. #else
  2202. uint8_t reserved:7;
  2203. uint8_t burstSizeDefn:1;
  2204. #endif
  2205. #ifndef ANI_LITTLE_BIT_ENDIAN
  2206. uint16_t ackPolicy:2;
  2207. uint16_t userPrio:3;
  2208. uint16_t psb:1;
  2209. uint16_t aggregation:1;
  2210. uint16_t accessPolicy:2;
  2211. uint16_t direction:2;
  2212. uint16_t tsid:4;
  2213. uint16_t trafficType:1;
  2214. #else
  2215. uint16_t trafficType:1;
  2216. uint16_t tsid:4;
  2217. uint16_t direction:2;
  2218. uint16_t accessPolicy:2;
  2219. uint16_t aggregation:1;
  2220. uint16_t psb:1;
  2221. uint16_t userPrio:3;
  2222. uint16_t ackPolicy:2;
  2223. #endif
  2224. } qdf_packed;
  2225. /**
  2226. * struct mac_ts_info_sch - mac ts info schedule parameters
  2227. * @rsvd: reserved
  2228. * @schedule: schedule bit
  2229. */
  2230. struct mac_ts_info_sch {
  2231. #ifndef ANI_LITTLE_BIT_ENDIAN
  2232. uint8_t rsvd:7;
  2233. uint8_t schedule:1;
  2234. #else
  2235. uint8_t schedule:1;
  2236. uint8_t rsvd:7;
  2237. #endif
  2238. } qdf_packed;
  2239. /**
  2240. * struct mac_ts_info - mac ts info schedule parameters
  2241. * @traffic: mac tfc parameter
  2242. * @schedule: mac schedule parameters
  2243. */
  2244. struct mac_ts_info {
  2245. struct mac_ts_info_tfc traffic;
  2246. struct mac_ts_info_sch schedule;
  2247. } qdf_packed;
  2248. /**
  2249. * struct mac_tspec_ie - mac ts spec
  2250. * @type: type
  2251. * @length: length
  2252. * @tsinfo: tsinfo
  2253. * @nomMsduSz: nomMsduSz
  2254. * @maxMsduSz: maxMsduSz
  2255. * @minSvcInterval: minSvcInterval
  2256. * @maxSvcInterval: maxSvcInterval
  2257. * @inactInterval: inactInterval
  2258. * @suspendInterval: suspendInterval
  2259. * @svcStartTime: svcStartTime
  2260. * @minDataRate: minDataRate
  2261. * @meanDataRate: meanDataRate
  2262. * @peakDataRate: peakDataRate
  2263. * @maxBurstSz: maxBurstSz
  2264. * @delayBound: delayBound
  2265. * @minPhyRate: minPhyRate
  2266. * @surplusBw: surplusBw
  2267. * @mediumTime: mediumTime
  2268. */
  2269. struct mac_tspec_ie {
  2270. uint8_t type;
  2271. uint8_t length;
  2272. struct mac_ts_info tsinfo;
  2273. uint16_t nomMsduSz;
  2274. uint16_t maxMsduSz;
  2275. uint32_t minSvcInterval;
  2276. uint32_t maxSvcInterval;
  2277. uint32_t inactInterval;
  2278. uint32_t suspendInterval;
  2279. uint32_t svcStartTime;
  2280. uint32_t minDataRate;
  2281. uint32_t meanDataRate;
  2282. uint32_t peakDataRate;
  2283. uint32_t maxBurstSz;
  2284. uint32_t delayBound;
  2285. uint32_t minPhyRate;
  2286. uint16_t surplusBw;
  2287. uint16_t mediumTime;
  2288. } qdf_packed;
  2289. /**
  2290. * struct add_ts_param - ADDTS related parameters
  2291. * @vdev_id: vdev id
  2292. * @tspec_idx: TSPEC handle uniquely identifying a TSPEC for a STA in a BSS
  2293. * @tspec: tspec value
  2294. * @status: QDF status
  2295. * @pe_session_id: protocol engine session id
  2296. * @tsm_interval: TSM interval period passed from UMAC to WMI
  2297. * @set_ric_params: Should RIC parameters be set?
  2298. */
  2299. struct add_ts_param {
  2300. uint8_t vdev_id;
  2301. uint16_t tspec_idx;
  2302. struct mac_tspec_ie tspec;
  2303. QDF_STATUS status;
  2304. uint8_t pe_session_id;
  2305. #ifdef FEATURE_WLAN_ESE
  2306. uint16_t tsm_interval;
  2307. #endif /* FEATURE_WLAN_ESE */
  2308. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  2309. bool set_ric_params;
  2310. #endif /* WLAN_FEATURE_ROAM_OFFLOAD */
  2311. };
  2312. /**
  2313. * struct delts_req_info - DELTS request parameter
  2314. * @tsinfo: ts info
  2315. * @tspec: ts spec
  2316. * @wmeTspecPresent: wme ts spec flag
  2317. * @wsmTspecPresent: wsm ts spec flag
  2318. * @lleTspecPresent: lle ts spec flag
  2319. */
  2320. struct delts_req_info {
  2321. struct mac_ts_info tsinfo;
  2322. struct mac_tspec_ie tspec;
  2323. uint8_t wmeTspecPresent:1;
  2324. uint8_t wsmTspecPresent:1;
  2325. uint8_t lleTspecPresent:1;
  2326. };
  2327. /**
  2328. * struct del_ts_params - DELTS related parameters
  2329. * @tspecIdx: TSPEC identifier uniquely identifying a TSPEC for a STA in a BSS
  2330. * @bssId: BSSID
  2331. * @sessionId: session id
  2332. * @userPrio: user priority
  2333. * @delTsInfo: DELTS info
  2334. * @setRICparams: RIC parameters
  2335. */
  2336. struct del_ts_params {
  2337. uint16_t tspecIdx;
  2338. uint8_t bssId[QDF_MAC_ADDR_SIZE];
  2339. uint8_t sessionId;
  2340. uint8_t userPrio;
  2341. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  2342. struct delts_req_info delTsInfo;
  2343. uint8_t setRICparams;
  2344. #endif /* WLAN_FEATURE_ROAM_OFFLOAD */
  2345. };
  2346. /**
  2347. * struct ll_stats_clear_params - ll stats clear parameter
  2348. * @req_id: request id
  2349. * @vdev_id: vdev id
  2350. * @stats_clear_mask: stats clear mask
  2351. * @stop_req: stop request
  2352. * @peer_macaddr: MAC address of the peer for which stats are to be cleared
  2353. */
  2354. struct ll_stats_clear_params {
  2355. uint32_t req_id;
  2356. uint8_t vdev_id;
  2357. uint32_t stats_clear_mask;
  2358. uint8_t stop_req;
  2359. struct qdf_mac_addr peer_macaddr;
  2360. };
  2361. /**
  2362. * struct ll_stats_set_params - ll stats get parameter
  2363. * @req_id: request id
  2364. * @mpdu_size_threshold: mpdu size threshold
  2365. * @aggressive_statistics_gathering: aggressive_statistics_gathering
  2366. */
  2367. struct ll_stats_set_params {
  2368. uint32_t req_id;
  2369. uint32_t mpdu_size_threshold;
  2370. uint32_t aggressive_statistics_gathering;
  2371. };
  2372. /**
  2373. * struct ll_stats_get_params - ll stats parameter
  2374. * @req_id: request id
  2375. * @vdev_id: vdev id
  2376. * @param_id_mask: param is mask
  2377. * @peer_macaddr: MAC address of the peer for which stats are desired
  2378. * @is_mlo_req: is the request for mlo vdev
  2379. * @vdev_id_bitmap: vdev_id_bitmap of all the connected mlo vdevs
  2380. * @mld_macaddr: MLD MAC address
  2381. */
  2382. struct ll_stats_get_params {
  2383. uint32_t req_id;
  2384. uint8_t vdev_id;
  2385. uint32_t param_id_mask;
  2386. struct qdf_mac_addr peer_macaddr;
  2387. #ifdef WLAN_FEATURE_11BE_MLO
  2388. bool is_mlo_req;
  2389. uint32_t vdev_id_bitmap;
  2390. struct qdf_mac_addr mld_macaddr;
  2391. #endif
  2392. };
  2393. /**
  2394. * struct link_status_params - link stats parameter
  2395. * @vdev_id: ID of the vdev for which link status is desired
  2396. */
  2397. struct link_status_params {
  2398. uint8_t vdev_id;
  2399. };
  2400. /**
  2401. * struct dhcp_stop_ind_params - DHCP Stop indication message
  2402. * @msgtype: message type is same as the request type
  2403. * @msglen: length of the entire request
  2404. * @device_mode: Mode of the device(ex:STA, AP)
  2405. * @adapter_macaddr: MAC address of the adapter
  2406. * @peer_macaddr: MAC address of the connected peer
  2407. */
  2408. struct dhcp_stop_ind_params {
  2409. uint16_t msgtype;
  2410. uint16_t msglen;
  2411. uint8_t device_mode;
  2412. struct qdf_mac_addr adapter_macaddr;
  2413. struct qdf_mac_addr peer_macaddr;
  2414. };
  2415. #define WMI_MAX_FILTER_TEST_DATA_LEN 8
  2416. #define WMI_MAX_NUM_MULTICAST_ADDRESS 240
  2417. #define WMI_MAX_NUM_FILTERS 20
  2418. #define WMI_MAX_NUM_TESTS_PER_FILTER 10
  2419. /**
  2420. * enum packet_filter_type - packet filter type
  2421. * @WMI_RCV_FILTER_TYPE_INVALID: invalid type
  2422. * @WMI_RCV_FILTER_TYPE_FILTER_PKT: filter packet type
  2423. * @WMI_RCV_FILTER_TYPE_BUFFER_PKT: buffer packet type
  2424. * @WMI_RCV_FILTER_TYPE_MAX_ENUM_SIZE: max enum size
  2425. */
  2426. enum packet_filter_type {
  2427. WMI_RCV_FILTER_TYPE_INVALID,
  2428. WMI_RCV_FILTER_TYPE_FILTER_PKT,
  2429. WMI_RCV_FILTER_TYPE_BUFFER_PKT,
  2430. WMI_RCV_FILTER_TYPE_MAX_ENUM_SIZE
  2431. };
  2432. /**
  2433. * enum packet_protocol_type - packet protocol type
  2434. * @WMI_FILTER_HDR_TYPE_INVALID: invalid type
  2435. * @WMI_FILTER_HDR_TYPE_MAC: mac type
  2436. * @WMI_FILTER_HDR_TYPE_ARP: trp type
  2437. * @WMI_FILTER_HDR_TYPE_IPV4: ipv4 type
  2438. * @WMI_FILTER_HDR_TYPE_IPV6: ipv6 type
  2439. * @WMI_FILTER_HDR_TYPE_UDP: udp type
  2440. * @WMI_FILTER_HDR_TYPE_MAX: max type
  2441. */
  2442. enum packet_protocol_type {
  2443. WMI_FILTER_HDR_TYPE_INVALID,
  2444. WMI_FILTER_HDR_TYPE_MAC,
  2445. WMI_FILTER_HDR_TYPE_ARP,
  2446. WMI_FILTER_HDR_TYPE_IPV4,
  2447. WMI_FILTER_HDR_TYPE_IPV6,
  2448. WMI_FILTER_HDR_TYPE_UDP,
  2449. WMI_FILTER_HDR_TYPE_MAX
  2450. };
  2451. /**
  2452. * enum packet_filter_comp_type - packet filter comparison type
  2453. * @WMI_FILTER_CMP_TYPE_INVALID: invalid type
  2454. * @WMI_FILTER_CMP_TYPE_EQUAL: type equal
  2455. * @WMI_FILTER_CMP_TYPE_MASK_EQUAL: mask equal
  2456. * @WMI_FILTER_CMP_TYPE_NOT_EQUAL: type not equal
  2457. * @WMI_FILTER_CMP_TYPE_MASK_NOT_EQUAL: mask not equal
  2458. * @WMI_FILTER_CMP_TYPE_MAX: max type
  2459. */
  2460. enum packet_filter_comp_type {
  2461. WMI_FILTER_CMP_TYPE_INVALID,
  2462. WMI_FILTER_CMP_TYPE_EQUAL,
  2463. WMI_FILTER_CMP_TYPE_MASK_EQUAL,
  2464. WMI_FILTER_CMP_TYPE_NOT_EQUAL,
  2465. WMI_FILTER_CMP_TYPE_MASK_NOT_EQUAL,
  2466. WMI_FILTER_CMP_TYPE_MAX
  2467. };
  2468. /**
  2469. * struct rcv_pkt_filter_params - receive packet filter parameters
  2470. * @protocolLayer: protocol layer
  2471. * @cmpFlag: comparison flag
  2472. * @dataLength: data length
  2473. * @dataOffset: data offset
  2474. * @reserved: resserved
  2475. * @compareData: compare data
  2476. * @dataMask: data mask
  2477. */
  2478. struct rcv_pkt_filter_params {
  2479. enum packet_protocol_type protocolLayer;
  2480. enum packet_filter_comp_type cmpFlag;
  2481. uint16_t dataLength;
  2482. uint8_t dataOffset;
  2483. uint8_t reserved;
  2484. uint8_t compareData[WMI_MAX_FILTER_TEST_DATA_LEN];
  2485. uint8_t dataMask[WMI_MAX_FILTER_TEST_DATA_LEN];
  2486. };
  2487. /**
  2488. * struct rcv_pkt_filter_config - receive packet filter info
  2489. * @filterId: filter id
  2490. * @filterType: filter type
  2491. * @numFieldParams: no of fields
  2492. * @coalesceTime: reserved parameter
  2493. * @self_macaddr: self mac address
  2494. * @bssid: Bssid of the connected AP
  2495. * @paramsData: data parameter
  2496. */
  2497. struct rcv_pkt_filter_config {
  2498. uint8_t filterId;
  2499. enum packet_filter_type filterType;
  2500. uint32_t numFieldParams;
  2501. uint32_t coalesceTime;
  2502. struct qdf_mac_addr self_macaddr;
  2503. struct qdf_mac_addr bssid;
  2504. struct rcv_pkt_filter_params paramsData[WMI_MAX_NUM_TESTS_PER_FILTER];
  2505. };
  2506. /**
  2507. * struct cfg_action_frm_tb_ppdu_param - action frm in TB PPDU cfg
  2508. * @cfg: enable/disable
  2509. * @frm_len: length of the frame
  2510. * @data: data pointer
  2511. */
  2512. struct cfg_action_frm_tb_ppdu_param {
  2513. uint32_t cfg;
  2514. uint32_t frm_len;
  2515. uint8_t *data;
  2516. };
  2517. #define WMI_MAX_NUM_FW_SEGMENTS 4
  2518. /**
  2519. * struct fw_dump_seg_req_param - individual segment details
  2520. * @seg_id: segment id.
  2521. * @seg_start_addr_lo: lower address of the segment.
  2522. * @seg_start_addr_hi: higher address of the segment.
  2523. * @seg_length: length of the segment.
  2524. * @dst_addr_lo: lower address of the destination buffer.
  2525. * @dst_addr_hi: higher address of the destination buffer.
  2526. *
  2527. * This structure carries the information to firmware about the
  2528. * individual segments. This structure is part of firmware memory
  2529. * dump request.
  2530. */
  2531. struct fw_dump_seg_req_param {
  2532. uint8_t seg_id;
  2533. uint32_t seg_start_addr_lo;
  2534. uint32_t seg_start_addr_hi;
  2535. uint32_t seg_length;
  2536. uint32_t dst_addr_lo;
  2537. uint32_t dst_addr_hi;
  2538. };
  2539. /**
  2540. * struct fw_dump_req_param - firmware memory dump request details.
  2541. * @request_id: request id.
  2542. * @num_seg: requested number of segments.
  2543. * @segment: individual segment information.
  2544. *
  2545. * This structure carries information about the firmware
  2546. * memory dump request.
  2547. */
  2548. struct fw_dump_req_param {
  2549. uint32_t request_id;
  2550. uint32_t num_seg;
  2551. struct fw_dump_seg_req_param segment[WMI_MAX_NUM_FW_SEGMENTS];
  2552. };
  2553. /**
  2554. * struct dhcp_offload_info_params - dhcp offload parameters
  2555. * @vdev_id: request data length
  2556. * @dhcp_offload_enabled: dhcp offload enabled
  2557. * @dhcp_client_num: dhcp client no
  2558. * @dhcp_srv_addr: dhcp server ip
  2559. */
  2560. struct dhcp_offload_info_params {
  2561. uint32_t vdev_id;
  2562. bool dhcp_offload_enabled;
  2563. uint32_t dhcp_client_num;
  2564. uint32_t dhcp_srv_addr;
  2565. };
  2566. /**
  2567. * struct app_type2_params - app type2parameter
  2568. * @vdev_id: vdev id
  2569. * @rc4_key: rc4 key
  2570. * @rc4_key_len: rc4 key length
  2571. * @ip_id: NC id
  2572. * @ip_device_ip: NC IP address
  2573. * @ip_server_ip: Push server IP address
  2574. * @tcp_src_port: NC TCP port
  2575. * @tcp_dst_port: Push server TCP port
  2576. * @tcp_seq: tcp sequence
  2577. * @tcp_ack_seq: tcp ack sequence
  2578. * @keepalive_init: Initial ping interval
  2579. * @keepalive_min: Minimum ping interval
  2580. * @keepalive_max: Maximum ping interval
  2581. * @keepalive_inc: Increment of ping interval
  2582. * @gateway_mac: gateway mac address
  2583. * @tcp_tx_timeout_val: tcp tx timeout value
  2584. * @tcp_rx_timeout_val: tcp rx timeout value
  2585. */
  2586. struct app_type2_params {
  2587. uint8_t vdev_id;
  2588. uint8_t rc4_key[16];
  2589. uint32_t rc4_key_len;
  2590. /** ip header parameter */
  2591. uint32_t ip_id;
  2592. uint32_t ip_device_ip;
  2593. uint32_t ip_server_ip;
  2594. /** tcp header parameter */
  2595. uint16_t tcp_src_port;
  2596. uint16_t tcp_dst_port;
  2597. uint32_t tcp_seq;
  2598. uint32_t tcp_ack_seq;
  2599. uint32_t keepalive_init;
  2600. uint32_t keepalive_min;
  2601. uint32_t keepalive_max;
  2602. uint32_t keepalive_inc;
  2603. struct qdf_mac_addr gateway_mac;
  2604. uint32_t tcp_tx_timeout_val;
  2605. uint32_t tcp_rx_timeout_val;
  2606. };
  2607. /**
  2608. * struct app_type1_params - app type1 parameter
  2609. * @vdev_id: vdev id
  2610. * @wakee_mac_addr: mac address
  2611. * @identification_id: identification id
  2612. * @password: password
  2613. * @id_length: id length
  2614. * @pass_length: password length
  2615. */
  2616. struct app_type1_params {
  2617. uint8_t vdev_id;
  2618. struct qdf_mac_addr wakee_mac_addr;
  2619. uint8_t identification_id[8];
  2620. uint8_t password[16];
  2621. uint32_t id_length;
  2622. uint32_t pass_length;
  2623. };
  2624. /**
  2625. * enum wmi_ext_wow_type - wow type
  2626. * @WMI_EXT_WOW_TYPE_APP_TYPE1: only enable wakeup for app type1
  2627. * @WMI_EXT_WOW_TYPE_APP_TYPE2: only enable wakeup for app type2
  2628. * @WMI_EXT_WOW_TYPE_APP_TYPE1_2: enable wakeup for app type1&2
  2629. */
  2630. enum wmi_ext_wow_type {
  2631. WMI_EXT_WOW_TYPE_APP_TYPE1,
  2632. WMI_EXT_WOW_TYPE_APP_TYPE2,
  2633. WMI_EXT_WOW_TYPE_APP_TYPE1_2,
  2634. };
  2635. /**
  2636. * struct ext_wow_params - ext wow parameters
  2637. * @vdev_id: vdev id
  2638. * @type: wow type
  2639. * @wakeup_pin_num: wake up gpio no
  2640. */
  2641. struct ext_wow_params {
  2642. uint8_t vdev_id;
  2643. enum wmi_ext_wow_type type;
  2644. uint32_t wakeup_pin_num;
  2645. };
  2646. /**
  2647. * struct stats_ext_params - ext stats request
  2648. * @vdev_id: vdev id
  2649. * @request_data_len: request data length
  2650. * @vdev_id_bitmap: mlo connected vdev id bitmap
  2651. * @request_data: request data
  2652. */
  2653. struct stats_ext_params {
  2654. uint32_t vdev_id;
  2655. uint32_t request_data_len;
  2656. uint32_t vdev_id_bitmap;
  2657. uint8_t request_data[];
  2658. };
  2659. #define WMI_GTK_OFFLOAD_KEK_BYTES 64
  2660. #define WMI_GTK_OFFLOAD_KCK_BYTES 16
  2661. #define WMI_GTK_OFFLOAD_ENABLE 0
  2662. #define WMI_GTK_OFFLOAD_DISABLE 1
  2663. #define MAX_MEM_CHUNKS 32
  2664. /*
  2665. * struct wmi_host_mem_chunk - host memory chunk structure
  2666. * @vaddr: Pointer to virtual address
  2667. * @paddr: Physical address
  2668. * @memctx: qdf memory context for mapped address.
  2669. * @len: length of chunk
  2670. * @req_id: request id from target
  2671. *
  2672. * Note: kernel-doc doesn't parse the memctx definition so this definition
  2673. * currently doesn't use a kernel-doc comment marker
  2674. */
  2675. struct wmi_host_mem_chunk {
  2676. uint32_t *vaddr;
  2677. qdf_dma_addr_t paddr;
  2678. qdf_dma_mem_context(memctx);
  2679. uint32_t len;
  2680. uint32_t req_id;
  2681. };
  2682. /**
  2683. * struct wmi_wifi_start_log - Structure to store the params sent to start/
  2684. * stop logging
  2685. * @ring_id: Attribute which indicates the type of logging like per packet
  2686. * statistics, connectivity etc.
  2687. * @verbose_level: Verbose level which can be 0,1,2,3
  2688. * @flag: Flag field for future use
  2689. */
  2690. struct wmi_wifi_start_log {
  2691. uint32_t ring_id;
  2692. uint32_t verbose_level;
  2693. uint32_t flag;
  2694. };
  2695. /**
  2696. * struct wmi_pcl_list - Format of PCL
  2697. * @pcl_list: List of preferred channels
  2698. * @weight_list: Weights of the PCL
  2699. * @pcl_len: Number of channels in the PCL
  2700. */
  2701. struct wmi_pcl_list {
  2702. uint8_t pcl_list[NUM_CHANNELS];
  2703. uint8_t weight_list[NUM_CHANNELS];
  2704. uint32_t pcl_len;
  2705. };
  2706. /**
  2707. * struct wmi_hw_mode_params - HW mode params
  2708. * @mac0_tx_ss: MAC0 Tx spatial stream
  2709. * @mac0_rx_ss: MAC0 Rx spatial stream
  2710. * @mac1_tx_ss: MAC1 Tx spatial stream
  2711. * @mac1_rx_ss: MAC1 Rx spatial stream
  2712. * @mac0_bw: MAC0 bandwidth
  2713. * @mac1_bw: MAC1 bandwidth
  2714. * @dbs_cap: DBS capabality
  2715. * @agile_dfs_cap: Agile DFS capabality
  2716. */
  2717. struct wmi_hw_mode_params {
  2718. uint8_t mac0_tx_ss;
  2719. uint8_t mac0_rx_ss;
  2720. uint8_t mac1_tx_ss;
  2721. uint8_t mac1_rx_ss;
  2722. uint8_t mac0_bw;
  2723. uint8_t mac1_bw;
  2724. uint8_t dbs_cap;
  2725. uint8_t agile_dfs_cap;
  2726. };
  2727. /**
  2728. * struct wmi_unit_test_cmd - unit test command parameters
  2729. * @vdev_id: vdev id
  2730. * @module_id: module id
  2731. * @num_args: number of arguments
  2732. * @diag_token: dialog token, which identifies the transaction.
  2733. * this number is generated by wifitool and may be used to
  2734. * identify the transaction in the event path
  2735. * @args: arguments
  2736. */
  2737. struct wmi_unit_test_cmd {
  2738. uint32_t vdev_id;
  2739. uint32_t module_id;
  2740. uint32_t num_args;
  2741. uint32_t diag_token;
  2742. uint32_t args[WMI_UNIT_TEST_MAX_NUM_ARGS];
  2743. };
  2744. /**
  2745. * struct extscan_bssid_hotlist_set_params - set hotlist request
  2746. * @request_id: request_id
  2747. * @vdev_id: vdev id
  2748. * @lost_ap_sample_size: number of samples to confirm AP loss
  2749. * @num_ap: Number of hotlist APs
  2750. * @ap: hotlist APs
  2751. */
  2752. struct extscan_bssid_hotlist_set_params {
  2753. uint32_t request_id;
  2754. uint8_t vdev_id;
  2755. uint32_t lost_ap_sample_size;
  2756. uint32_t num_ap;
  2757. struct ap_threshold_params ap[WMI_WLAN_EXTSCAN_MAX_HOTLIST_APS];
  2758. };
  2759. /**
  2760. * struct host_mem_req - Host memory request paramseters request by target
  2761. * @req_id: Request id to identify the request.
  2762. * @unit_size: Size of single unit requested.
  2763. * @num_unit_info: Memory chunk info
  2764. * @num_units: number of units requested.
  2765. * @tgt_num_units: number of units request by target.
  2766. */
  2767. typedef struct {
  2768. uint32_t req_id;
  2769. uint32_t unit_size;
  2770. uint32_t num_unit_info;
  2771. uint32_t num_units;
  2772. uint32_t tgt_num_units;
  2773. } host_mem_req;
  2774. #define WMI_HOST_DSCP_MAP_MAX (64)
  2775. /**
  2776. * struct wmi_host_ext_resource_config - Extended resource config
  2777. * @host_platform_config: Host platform configuration.
  2778. * @fw_feature_bitmap: FW feature requested bitmap. Uses the
  2779. * WMI_HOST_FW_FEATURES_* macros. The features in
  2780. * question are enabled by setting the feature's
  2781. * bit to 1, or disabled by setting the feature's
  2782. * bit to 0.
  2783. * @wlan_priority_gpio: WLAN priority GPIO number. The target uses a
  2784. * GPIO pin to indicate when it is transmitting
  2785. * high-priority traffic (e.g. beacon,
  2786. * management, or AC_VI) or low-priority traffic
  2787. * (e.g. AC_BE, AC_BK). The HW uses this WLAN
  2788. * GPIO pin to determine whether to abort WLAN
  2789. * tx in favor of BT activity. Which GPIO is
  2790. * used for this WLAN tx traffic priority
  2791. * specification varies between platforms, so
  2792. * the host needs to indicate to the target
  2793. * which GPIO to use.
  2794. * @coex_version: COEX version. Host will notify target which coex
  2795. * algorithm has to be enabled based on HW, FW
  2796. * capability and device tree config. Till now the
  2797. * coex algorithms were target specific. Now the same
  2798. * target can choose between multiple coex algorithms
  2799. * depending on device tree config on host. For
  2800. * backward compatibility, version support will have
  2801. * option 0 and will rely on FW compile time flags to
  2802. * decide the coex version between VERSION_1, VERSION_2
  2803. * and VERSION_3. Version info is mandatory from
  2804. * VERSION_4 onwards for any new coex algorithms.
  2805. * 0 = no version support
  2806. * 1 = COEX_VERSION1 (3 wire coex)
  2807. * 2 = COEX_VERSION_2 (2.5 wire coex)
  2808. * 3 = COEX_VERSION_3 (2.5 wire coex+duty cycle)
  2809. * 4 = COEX_VERSION_4 (4 wire coex)
  2810. * @coex_gpio_pin_1:
  2811. * @coex_gpio_pin_2:
  2812. * @coex_gpio_pin_3:
  2813. * There are multiple coex implementations on FW to support different
  2814. * hardwares. Since the coex algos are mutually exclusive, host will
  2815. * use below fields to send GPIO info to FW and these GPIO pins will
  2816. * have different usages depending on the feature enabled. This is to
  2817. * avoid adding multiple GPIO fields here for different features.
  2818. *
  2819. * COEX VERSION_4 (4 wire coex) :
  2820. * 4 wire coex feature uses 1 common input request line from BT/ZB/
  2821. * Thread which interrupts the WLAN target processor directly, 1 input
  2822. * priority line from BT and ZB each, 1 output line to grant access to
  2823. * requesting IOT subsystem. WLAN uses the input priority line to
  2824. * identify the requesting IOT subsystem. Request is granted based on
  2825. * IOT interface priority and WLAN traffic. GPIO pin usage is as below:
  2826. * coex_gpio_pin_1 = BT PRIORITY INPUT GPIO
  2827. * coex_gpio_pin_2 = ZIGBEE PRIORITY INPUT GPIO
  2828. * coex_gpio_pin_3 = GRANT OUTPUT GPIO
  2829. * when a BT active interrupt is raised, WLAN reads
  2830. * BT and ZB priority input GPIO pins to compare against the coex
  2831. * priority table and accordingly sets the grant output GPIO to give
  2832. * access to requesting IOT subsystem.
  2833. */
  2834. typedef struct {
  2835. uint32_t host_platform_config;
  2836. #define WMI_HOST_FW_FEATURE_LTEU_SUPPORT 0x0001
  2837. #define WMI_HOST_FW_FEATURE_COEX_GPIO_SUPPORT 0x0002
  2838. #define WMI_HOST_FW_FEATURE_AUX_RADIO_SPECTRAL_INTF 0x0004
  2839. #define WMI_HOST_FW_FEATURE_AUX_RADIO_CHAN_LOAD_INTF 0x0008
  2840. #define WMI_HOST_FW_FEATURE_BSS_CHANNEL_INFO_64 0x0010
  2841. #define WMI_HOST_FW_FEATURE_PEER_STATS 0x0020
  2842. #define WMI_HOST_FW_FEATURE_VDEV_STATS 0x0040
  2843. #define WMI_HOST_FW_FEATURE_VOW_FEATURES 0x00004000
  2844. #define WMI_HOST_FW_FEATURE_VOW_STATS 0x00008000
  2845. uint32_t fw_feature_bitmap;
  2846. uint32_t wlan_priority_gpio;
  2847. uint32_t coex_version;
  2848. uint32_t coex_gpio_pin_1;
  2849. uint32_t coex_gpio_pin_2;
  2850. uint32_t coex_gpio_pin_3;
  2851. /* add new members here */
  2852. } wmi_host_ext_resource_config;
  2853. /**
  2854. * struct set_fwtest_params - FW test params
  2855. * @arg: FW param id
  2856. * @value: value
  2857. */
  2858. struct set_fwtest_params {
  2859. uint32_t arg;
  2860. uint32_t value;
  2861. };
  2862. /**
  2863. * enum wfa_test_cmds - WFA test config command
  2864. * @WFA_CONFIG_RXNE: configure an override for the RSNXE Used
  2865. * @WFA_CONFIG_CSA: configure the driver to ignore CSA
  2866. * @WFA_CONFIG_OCV: configure OCI
  2867. * @WFA_CONFIG_SA_QUERY: configure driver/firmware to ignore SAquery timeout
  2868. * @WFA_FILS_DISCV_FRAMES: FD frames TX enable disable config
  2869. * @WFA_IGNORE_H2E_RSNXE: configure driver/firmware to ignore H2E_RSNXE in case
  2870. * of 6g connection
  2871. */
  2872. enum wfa_test_cmds {
  2873. WFA_CONFIG_RXNE,
  2874. WFA_CONFIG_CSA,
  2875. WFA_CONFIG_OCV,
  2876. WFA_CONFIG_SA_QUERY,
  2877. WFA_FILS_DISCV_FRAMES,
  2878. WFA_IGNORE_H2E_RSNXE,
  2879. };
  2880. /**
  2881. * enum wmi_host_wfa_config_ocv_frmtype - OCI override frame type
  2882. * @WMI_HOST_WFA_CONFIG_OCV_FRMTYPE_SAQUERY_REQ: SA Query Request frame
  2883. * @WMI_HOST_WFA_CONFIG_OCV_FRMTYPE_SAQUERY_RSP: SA Query Response frame
  2884. * @WMI_HOST_WFA_CONFIG_OCV_FRMTYPE_FT_REASSOC_REQ: FT Reassociation Req frm
  2885. * @WMI_HOST_WFA_CONFIG_OCV_FRMTYPE_FILS_REASSOC_REQ: FILS Reassoc Req frm
  2886. */
  2887. enum wmi_host_wfa_config_ocv_frmtype {
  2888. WMI_HOST_WFA_CONFIG_OCV_FRMTYPE_SAQUERY_REQ = 0x00000001,
  2889. WMI_HOST_WFA_CONFIG_OCV_FRMTYPE_SAQUERY_RSP = 0x00000002,
  2890. WMI_HOST_WFA_CONFIG_OCV_FRMTYPE_FT_REASSOC_REQ = 0x00000004,
  2891. WMI_HOST_WFA_CONFIG_OCV_FRMTYPE_FILS_REASSOC_REQ = 0x00000008,
  2892. };
  2893. /**
  2894. * struct ocv_wfatest_params - ocv WFA test params
  2895. * @frame_type: frame type req for OCV config
  2896. * @freq: frequency to set
  2897. */
  2898. struct ocv_wfatest_params {
  2899. uint8_t frame_type;
  2900. uint32_t freq;
  2901. };
  2902. /**
  2903. * struct set_wfatest_params - WFA test params
  2904. * @vdev_id: vdev id
  2905. * @value: wfa test config value
  2906. * @cmd: WFA test command
  2907. * @ocv_param: pointer to ocv params
  2908. */
  2909. struct set_wfatest_params {
  2910. uint8_t vdev_id;
  2911. uint32_t value;
  2912. enum wfa_test_cmds cmd;
  2913. struct ocv_wfatest_params *ocv_param;
  2914. };
  2915. /*
  2916. * msduq_update_params - MSDUQ update param structure
  2917. * @tid_num: TID number
  2918. * @msduq_update_mask: update bit mask
  2919. * @qdepth_thresh_value: threshold value for the queue depth
  2920. */
  2921. #define QDEPTH_THRESH_MAX_UPDATES 1
  2922. typedef struct {
  2923. uint32_t tid_num;
  2924. uint32_t msduq_update_mask;
  2925. uint32_t qdepth_thresh_value;
  2926. } msduq_update_params;
  2927. /**
  2928. * struct set_qdepth_thresh_params - MSDU Queue Depth Threshold Params
  2929. * @vdev_id: vdev id
  2930. * @pdev_id: pdev id
  2931. * @mac_addr: MAC address
  2932. * @num_of_msduq_updates: holds the number of tid updates
  2933. * @update_params:tid updates
  2934. */
  2935. struct set_qdepth_thresh_params {
  2936. uint32_t pdev_id;
  2937. uint32_t vdev_id;
  2938. uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
  2939. uint32_t num_of_msduq_updates;
  2940. msduq_update_params update_params[QDEPTH_THRESH_MAX_UPDATES];
  2941. };
  2942. /**
  2943. * struct peer_chan_width_switch_info - Peer channel width capability params
  2944. * @mac_addr: MAC address of peer
  2945. * @chan_width: Max supported channel width of peer
  2946. * (enum ieee80211_cwm_width)
  2947. * @puncture_bitmap: Puncture bitmap of peer
  2948. */
  2949. struct peer_chan_width_switch_info {
  2950. uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
  2951. uint32_t chan_width;
  2952. uint16_t puncture_bitmap;
  2953. };
  2954. /**
  2955. * struct set_bridge_mac_addr_params - set bridge MAC addr params
  2956. * @bridge_addr: Pointer to bridge macaddr
  2957. */
  2958. struct set_bridge_mac_addr_params {
  2959. uint8_t *bridge_addr;
  2960. };
  2961. /**
  2962. * struct peer_del_all_wds_entries_params - WDS peer entries del params
  2963. * @wds_macaddr: Pointer to destination macaddr
  2964. * @peer_macaddr: Pointer to peer mac addr
  2965. * @flags: flags
  2966. */
  2967. struct peer_del_all_wds_entries_params {
  2968. uint8_t *wds_macaddr;
  2969. uint8_t *peer_macaddr;
  2970. uint32_t flags;
  2971. };
  2972. /**
  2973. * struct set_ps_mode_params - PS mode params
  2974. * @vdev_id: vdev id
  2975. * @psmode: PS mode
  2976. */
  2977. struct set_ps_mode_params {
  2978. uint8_t vdev_id;
  2979. uint8_t psmode;
  2980. };
  2981. /**
  2982. * struct tt_level_config - Set Thermal throttlling config
  2983. * @tmplwm: Temperature low water mark
  2984. * @tmphwm: Temperature high water mark
  2985. * @dcoffpercent: dc off percentage
  2986. * @priority: priority
  2987. */
  2988. typedef struct {
  2989. uint32_t tmplwm;
  2990. uint32_t tmphwm;
  2991. uint32_t dcoffpercent;
  2992. uint32_t priority;
  2993. } tt_level_config;
  2994. /**
  2995. * struct thermal_mitigation_params - Thermal mitigation params
  2996. * @pdev_id: pdev identifier
  2997. * @enable: Enable/Disable Thermal mitigation
  2998. * @dc: DC
  2999. * @dc_per_event: DC per event
  3000. * @num_thermal_conf: Number of thermal configurations to be sent
  3001. * @client_id: Thermal client id either apps or wpps
  3002. * @priority: Priority of apps/wpps
  3003. * @levelconf: TT level config params
  3004. */
  3005. struct thermal_mitigation_params {
  3006. uint32_t pdev_id;
  3007. uint32_t enable;
  3008. uint32_t dc;
  3009. uint32_t dc_per_event;
  3010. uint8_t num_thermal_conf;
  3011. uint8_t client_id;
  3012. uint8_t priority;
  3013. tt_level_config levelconf[THERMAL_LEVELS];
  3014. };
  3015. /**
  3016. * struct smart_ant_enable_tx_feedback_params - SA tx feedback params
  3017. * @enable: Enable TX feedback for SA
  3018. */
  3019. struct smart_ant_enable_tx_feedback_params {
  3020. int enable;
  3021. };
  3022. /**
  3023. * struct vdev_spectral_configure_params - SPectral config params
  3024. * @vdev_id: VDEV id
  3025. * @count: count
  3026. * @period: period
  3027. * @fft_recap: FFT recapture enable/disable
  3028. * @spectral_pri: Spectral priority
  3029. * @fft_size: FFT size
  3030. * @gc_enable: GC enable
  3031. * @restart_enable: restart enabled
  3032. * @noise_floor_ref: Noise floor reference
  3033. * @init_delay: Init delays
  3034. * @nb_tone_thr: NB tone threshold
  3035. * @str_bin_thr: STR BIN threshold
  3036. * @wb_rpt_mode: WB BIN threshold
  3037. * @rssi_rpt_mode: RSSI report mode
  3038. * @rssi_thr: RSSI threshold
  3039. * @pwr_format: Power format
  3040. * @rpt_mode: Report mode
  3041. * @bin_scale: BIN scale
  3042. * @dbm_adj: DBM adjust
  3043. * @chn_mask: chain mask
  3044. * @mode: Mode
  3045. * @center_freq1: Center frequency 1
  3046. * @center_freq2: Center frequency 2
  3047. * @chan_freq: Primary channel frequency
  3048. * @chan_width: Channel width
  3049. */
  3050. struct vdev_spectral_configure_params {
  3051. uint8_t vdev_id;
  3052. uint16_t count;
  3053. uint16_t period;
  3054. uint16_t fft_recap;
  3055. uint16_t spectral_pri;
  3056. uint16_t fft_size;
  3057. uint16_t gc_enable;
  3058. uint16_t restart_enable;
  3059. uint16_t noise_floor_ref;
  3060. uint16_t init_delay;
  3061. uint16_t nb_tone_thr;
  3062. uint16_t str_bin_thr;
  3063. uint16_t wb_rpt_mode;
  3064. uint16_t rssi_rpt_mode;
  3065. uint16_t rssi_thr;
  3066. uint16_t pwr_format;
  3067. uint16_t rpt_mode;
  3068. uint16_t bin_scale;
  3069. uint16_t dbm_adj;
  3070. uint16_t chn_mask;
  3071. uint16_t mode;
  3072. uint16_t center_freq1;
  3073. uint16_t center_freq2;
  3074. uint16_t chan_freq;
  3075. uint16_t chan_width;
  3076. };
  3077. /**
  3078. * struct vdev_spectral_enable_params - Spectral enabled params
  3079. * @vdev_id: VDEV id
  3080. * @active_valid: Active valid
  3081. * @active: active
  3082. * @enabled_valid: Enabled valid
  3083. * @enabled: enabled
  3084. * @mode: Mode
  3085. */
  3086. struct vdev_spectral_enable_params {
  3087. uint8_t vdev_id;
  3088. uint8_t active_valid;
  3089. uint8_t active;
  3090. uint8_t enabled_valid;
  3091. uint8_t enabled;
  3092. uint8_t mode;
  3093. };
  3094. #ifdef WLAN_CONV_SPECTRAL_ENABLE
  3095. /**
  3096. * struct spectral_fft_bin_markers_160_165mhz - Stores the start index
  3097. * and length of FFT bins in 165 MHz/Restricted 80p80 or 160 MHz
  3098. * mode in targets with a single Spectral detector
  3099. * @is_valid: Indicates whether this structure holds valid data
  3100. * @start_pri80: Starting index of FFT bins corresponding to primary 80 MHz
  3101. * in 165 MHz/Restricted 80p80 or 160 MHz mode
  3102. * @num_pri80: Number of FFT bins corresponding to primary 80 MHz
  3103. * in 165 MHz/Restricted 80p80 or 160 MHz mode
  3104. * @start_5mhz: Starting index of FFT bins corresponding to extra 5 MHz
  3105. * in 165 MHz/Restricted 80p80 mode
  3106. * @num_5mhz: Number of FFT bins corresponding to extra 5 MHz
  3107. * in 165 MHz/Restricted 80p80 mode
  3108. * @start_sec80: Starting index of FFT bins corresponding to secondary 80 MHz
  3109. * in 165 MHz/Restricted 80p80 or 160 MHz mode
  3110. * @num_sec80: Number of FFT bins corresponding to secondary 80 MHz
  3111. * in 165 MHz/Restricted 80p80 or 160 MHz mode
  3112. */
  3113. struct spectral_fft_bin_markers_160_165mhz {
  3114. bool is_valid;
  3115. uint16_t start_pri80;
  3116. uint16_t num_pri80;
  3117. uint16_t start_5mhz;
  3118. uint16_t num_5mhz;
  3119. uint16_t start_sec80;
  3120. uint16_t num_sec80;
  3121. };
  3122. /**
  3123. * struct spectral_startscan_resp_params - Params from the event send by
  3124. * FW as a response to the scan start command
  3125. * @pdev_id: Pdev id
  3126. * @smode: Spectral scan mode
  3127. * @num_fft_bin_index: Number of TLVs with FFT bin start and end indices
  3128. * @num_det_info: Number of detector info TLVs
  3129. */
  3130. struct spectral_startscan_resp_params {
  3131. uint32_t pdev_id;
  3132. enum spectral_scan_mode smode;
  3133. uint8_t num_fft_bin_index;
  3134. uint8_t num_det_info;
  3135. };
  3136. /**
  3137. * struct spectral_session_chan_info - Spectral scan session channel information
  3138. * @operating_pri20_freq: frequency of primary 20MHz channel (in MHz)
  3139. * @operating_cfreq1: center frequency 1 of operating channel (in MHz)
  3140. * @operating_cfreq2: center frequency 2 of operating channel (in MHz).
  3141. * For contiguous channels, @operating_cfreq1 should be represent the center of
  3142. * the entire span and @operating_cfreq2 should be 0, whereas for non-contiguous
  3143. * channels, @operating_cfreq1 should represent the center of primary segment
  3144. * and @@operating_cfreq2 should represent the center of secondary segment.
  3145. * @operating_bw: operating bandwidth enumeration
  3146. * @operating_puncture_20mhz_bitmap: Puncture bitmap of operating channel.
  3147. * Each bit indicates one 20 MHz punctured channel
  3148. * @sscan_cfreq1: center frequency 1 (in MHz) of the channel in which spectral
  3149. * scan is done
  3150. * @sscan_cfreq2: center frequency 2 (in MHz) of the channel in which spectral
  3151. * scan is done. For contiguous channels, @sscan_cfreq1 should be represent the
  3152. * center of the entire span and @sscan_cfreq2 should be 0, whereas for
  3153. * non-contiguous channels, @sscan_cfreq1 should represent the center of primary
  3154. * segment and @sscan_cfreq2 should represent the center of secondary segment.
  3155. * @sscan_bw: bandwidth of the channel in which spectral scan is done
  3156. * @sscan_puncture_20mhz_bitmap: Puncture bitmap of channel in which spectral
  3157. * scan is done. Each bit indicates one 20 MHz punctured channel.
  3158. */
  3159. struct spectral_session_chan_info {
  3160. qdf_freq_t operating_pri20_freq;
  3161. qdf_freq_t operating_cfreq1;
  3162. qdf_freq_t operating_cfreq2;
  3163. enum phy_ch_width operating_bw;
  3164. uint16_t operating_puncture_20mhz_bitmap;
  3165. qdf_freq_t sscan_cfreq1;
  3166. qdf_freq_t sscan_cfreq2;
  3167. enum phy_ch_width sscan_bw;
  3168. uint16_t sscan_puncture_20mhz_bitmap;
  3169. };
  3170. /**
  3171. * struct spectral_session_det_info - Detector info for a spectral scan session
  3172. * @det_id: detector ID
  3173. * @start_freq: start frequency (in MHz) of this detector
  3174. * @end_freq: end frequency (in MHz) of this detector
  3175. */
  3176. struct spectral_session_det_info {
  3177. uint8_t det_id;
  3178. qdf_freq_t start_freq;
  3179. qdf_freq_t end_freq;
  3180. };
  3181. /**
  3182. * struct spectral_capabilities_event_params - parameters related to Spectral
  3183. * capabilities event
  3184. * @num_sscan_bw_caps: Number of spectral_scan_bw_capabilities TLVs
  3185. * @num_fft_size_caps: Number of spectral_fft_size_capabilities TLVs
  3186. */
  3187. struct spectral_capabilities_event_params {
  3188. uint8_t num_sscan_bw_caps;
  3189. uint8_t num_fft_size_caps;
  3190. };
  3191. /**
  3192. * struct spectral_scan_bw_capabilities - Spectral scan bandwidth caps
  3193. * that are extracted from Spectral capabilities WMI event
  3194. * @pdev_id: pdev ID
  3195. * @smode: Spectral scan mode
  3196. * @operating_bw: Operating bandwidth
  3197. * @supported_bws: Supported sscan bandwidths bitmap for given @pdev_id,
  3198. * @operating_bw, and @smode
  3199. */
  3200. struct spectral_scan_bw_capabilities {
  3201. uint8_t pdev_id;
  3202. enum spectral_scan_mode smode;
  3203. enum phy_ch_width operating_bw;
  3204. uint32_t supported_bws;
  3205. };
  3206. /**
  3207. * struct spectral_fft_size_capabilities - Spectral scan FFT size caps
  3208. * that are extracted from Spectral capabilities WMI event
  3209. * @pdev_id: pdev ID
  3210. * @sscan_bw: Spectral scan bandwidth
  3211. * @supports_fft_sizes: Supported FFT sizes bitmap for given @pdev_id and
  3212. * @sscan_bw
  3213. */
  3214. struct spectral_fft_size_capabilities {
  3215. uint8_t pdev_id;
  3216. enum phy_ch_width sscan_bw;
  3217. uint32_t supports_fft_sizes;
  3218. };
  3219. #endif
  3220. /**
  3221. * struct pdev_set_regdomain_params - PDEV set reg domain params
  3222. * @currentRDinuse: Current Reg domain
  3223. * @currentRD2G: Current Reg domain 2G
  3224. * @currentRD5G: Current Reg domain 5G
  3225. * @ctl_2G: CTL 2G
  3226. * @ctl_5G: CTL 5G
  3227. * @dfsDomain: DFS domain
  3228. * @pdev_id: pdev_id
  3229. */
  3230. struct pdev_set_regdomain_params {
  3231. uint16_t currentRDinuse;
  3232. uint16_t currentRD2G;
  3233. uint16_t currentRD5G;
  3234. uint32_t ctl_2G;
  3235. uint32_t ctl_5G;
  3236. uint8_t dfsDomain;
  3237. uint32_t pdev_id;
  3238. };
  3239. /**
  3240. * struct set_beacon_filter_params - Set beacon filter params
  3241. * @vdev_id: VDEV id
  3242. * @ie: Pointer to IE fields
  3243. */
  3244. struct set_beacon_filter_params {
  3245. uint8_t vdev_id;
  3246. uint32_t *ie;
  3247. };
  3248. /**
  3249. * struct remove_beacon_filter_params - Remove beacon filter params
  3250. * @vdev_id: VDEV id
  3251. */
  3252. struct remove_beacon_filter_params {
  3253. uint8_t vdev_id;
  3254. };
  3255. /**
  3256. * struct mgmt_params - Mgmt params
  3257. * @vdev_id: vdev id
  3258. * @buf_len: length of frame buffer
  3259. * @wbuf: frame buffer
  3260. */
  3261. struct mgmt_params {
  3262. int vdev_id;
  3263. uint32_t buf_len;
  3264. qdf_nbuf_t wbuf;
  3265. };
  3266. /**
  3267. * struct addba_clearresponse_params - Addba clear response params
  3268. * @vdev_id: VDEV id
  3269. */
  3270. struct addba_clearresponse_params {
  3271. uint8_t vdev_id;
  3272. };
  3273. /**
  3274. * struct addba_send_params - ADDBA send params
  3275. * @vdev_id: vdev id
  3276. * @tidno: TID
  3277. * @buffersize: buffer size
  3278. */
  3279. struct addba_send_params {
  3280. uint8_t vdev_id;
  3281. uint8_t tidno;
  3282. uint16_t buffersize;
  3283. };
  3284. /**
  3285. * struct delba_send_params - DELBA send params
  3286. * @vdev_id: vdev id
  3287. * @tidno: TID
  3288. * @initiator: initiator
  3289. * @reasoncode: reason code
  3290. */
  3291. struct delba_send_params {
  3292. uint8_t vdev_id;
  3293. uint8_t tidno;
  3294. uint8_t initiator;
  3295. uint16_t reasoncode;
  3296. };
  3297. /**
  3298. * struct addba_setresponse_params - Set ADDBA response params
  3299. * @vdev_id: vdev id
  3300. * @tidno: TID
  3301. * @statuscode: status code in response
  3302. */
  3303. struct addba_setresponse_params {
  3304. uint8_t vdev_id;
  3305. uint8_t tidno;
  3306. uint16_t statuscode;
  3307. };
  3308. /**
  3309. * struct singleamsdu_params - Single AMSDU params
  3310. * @vdev_id: vdev is
  3311. * @tidno: TID
  3312. */
  3313. struct singleamsdu_params {
  3314. uint8_t vdev_id;
  3315. uint8_t tidno;
  3316. };
  3317. /**
  3318. * struct mu_scan_params - MU scan params
  3319. * @id: id
  3320. * @type: type
  3321. * @duration: Duration
  3322. * @lteu_tx_power: LTEU tx power
  3323. * @rssi_thr_bssid:
  3324. * @rssi_thr_sta:
  3325. * @rssi_thr_sc:
  3326. * @plmn_id:
  3327. * @alpha_num_bssid: alpha for num active bssid calculation
  3328. */
  3329. struct mu_scan_params {
  3330. uint8_t id;
  3331. uint8_t type;
  3332. uint32_t duration;
  3333. uint32_t lteu_tx_power;
  3334. uint32_t rssi_thr_bssid;
  3335. uint32_t rssi_thr_sta;
  3336. uint32_t rssi_thr_sc;
  3337. uint32_t plmn_id;
  3338. uint32_t alpha_num_bssid;
  3339. };
  3340. /**
  3341. * struct lteu_config_params - LTEU config params
  3342. * @lteu_gpio_start: start MU/AP scan after GPIO toggle
  3343. * @lteu_num_bins: no. of elements in the following arrays
  3344. * @use_actual_nf: whether to use the actual NF obtained or a hardcoded one
  3345. * @lteu_weight: weights for MU algo
  3346. * @lteu_thresh: thresholds for MU algo
  3347. * @lteu_gamma: gamma's for MU algo
  3348. * @lteu_scan_timeout: timeout in ms to gpio toggle
  3349. * @alpha_num_bssid: alpha for num active bssid calculation
  3350. * @wifi_tx_power: Wifi Tx power
  3351. * @allow_err_packets: allow error packets
  3352. */
  3353. struct lteu_config_params {
  3354. uint8_t lteu_gpio_start;
  3355. uint8_t lteu_num_bins;
  3356. uint8_t use_actual_nf;
  3357. uint32_t lteu_weight[LTEU_MAX_BINS];
  3358. uint32_t lteu_thresh[LTEU_MAX_BINS];
  3359. uint32_t lteu_gamma[LTEU_MAX_BINS];
  3360. uint32_t lteu_scan_timeout;
  3361. uint32_t alpha_num_bssid;
  3362. uint32_t wifi_tx_power;
  3363. uint32_t allow_err_packets;
  3364. };
  3365. struct wmi_macaddr_t {
  3366. /** upper 4 bytes of MAC address */
  3367. uint32_t mac_addr31to0;
  3368. /** lower 2 bytes of MAC address */
  3369. uint32_t mac_addr47to32;
  3370. };
  3371. /**
  3372. * struct wlan_profile_params - WLAN profile params
  3373. * @param_id: param id
  3374. * @profile_id: profile id
  3375. * @enable: enable
  3376. */
  3377. struct wlan_profile_params {
  3378. uint32_t param_id;
  3379. uint32_t profile_id;
  3380. uint32_t enable;
  3381. };
  3382. /**
  3383. * struct wmi_host_wme_vparams - WME params
  3384. * @acm: ACM paramete
  3385. * @aifs: AIFSN parameters
  3386. * @cwmin: cwmin in exponential form
  3387. * @cwmax: cwmax in exponential form
  3388. * @txoplimit: txopLimit
  3389. * @mu_edca_timer: MU EDCA timer
  3390. * @noackpolicy: No-Ack Policy: 0=ack, 1=no-ack
  3391. */
  3392. struct wmi_host_wme_vparams {
  3393. u_int32_t acm;
  3394. u_int32_t aifs;
  3395. u_int32_t cwmin;
  3396. u_int32_t cwmax;
  3397. union {
  3398. u_int32_t txoplimit;
  3399. u_int32_t mu_edca_timer;
  3400. };
  3401. u_int32_t noackpolicy;
  3402. };
  3403. /**
  3404. * struct ratepwr_table_params - Rate power table params
  3405. * @ratepwr_tbl: pointer to rate power table
  3406. * @ratepwr_len: rate power table len
  3407. */
  3408. struct ratepwr_table_params {
  3409. uint8_t *ratepwr_tbl;
  3410. uint16_t ratepwr_len;
  3411. };
  3412. /**
  3413. * struct ratepwr_chainmsk_params - Rate power chainmask params
  3414. * @ratepwr_chain_tbl: pointer to ratepwr chain table
  3415. * @num_rate: number of rate in table
  3416. * @pream_type: preamble type
  3417. * @ops: ops
  3418. */
  3419. struct ratepwr_chainmsk_params {
  3420. uint32_t *ratepwr_chain_tbl;
  3421. uint16_t num_rate;
  3422. uint8_t pream_type;
  3423. uint8_t ops;
  3424. };
  3425. struct macaddr_params {
  3426. uint8_t *macaddr;
  3427. };
  3428. /**
  3429. * struct acparams_params - acparams config structure
  3430. * @ac: AC to configure
  3431. * @use_rts: Use rts for this AC
  3432. * @aggrsize_scaling: Aggregate size scaling for the AC
  3433. * @min_kbps: min kbps req
  3434. */
  3435. struct acparams_params {
  3436. uint8_t ac;
  3437. uint8_t use_rts;
  3438. uint8_t aggrsize_scaling;
  3439. uint32_t min_kbps;
  3440. };
  3441. /**
  3442. * struct vap_dscp_tid_map_params - DSCP tid map params
  3443. * @vdev_id: vdev id
  3444. * @dscp_to_tid_map: pointer to array of tid to dscp map table
  3445. */
  3446. struct vap_dscp_tid_map_params {
  3447. uint8_t vdev_id;
  3448. uint32_t *dscp_to_tid_map;
  3449. };
  3450. /**
  3451. * struct proxy_ast_reserve_params - Proxy AST reserve params
  3452. * @macaddr: macaddr for proxy ast entry
  3453. */
  3454. struct proxy_ast_reserve_params {
  3455. uint8_t *macaddr;
  3456. };
  3457. /**
  3458. * struct fips_params - FIPS params config
  3459. * @key: pointer to key
  3460. * @key_len: length of key
  3461. * @data: pointer data buf
  3462. * @data_len: length of data buf
  3463. * @mode: mode
  3464. * @op: operation
  3465. * @pdev_id: pdev_id for identifying the MAC
  3466. */
  3467. struct fips_params {
  3468. uint8_t *key;
  3469. uint32_t key_len;
  3470. uint8_t *data;
  3471. uint32_t data_len;
  3472. uint32_t mode;
  3473. uint32_t op;
  3474. uint32_t pdev_id;
  3475. };
  3476. #ifdef WLAN_FEATURE_FIPS_BER_CCMGCM
  3477. #define MAX_KEY_LEN_FIPS_EXTEND 64
  3478. #define MAX_NONCEIV_LEN_FIPS_EXTEND 16
  3479. /**
  3480. * struct fips_extend_cmd_params - FIPS extend params config for first frag
  3481. * @fips_cmd: 1 - Encrypt, 2 - Decrypt
  3482. * @key_cipher: 0 - CCM, 1 - GCM
  3483. * @key_len: length of key
  3484. * @key: key_data
  3485. * @nonce_iv_len: length of nonce or iv
  3486. * @nonce_iv: nonce_iv
  3487. * @tag_len: length of tag/mic
  3488. * @aad_len: length of aad
  3489. * @payload_len: length of payload
  3490. */
  3491. struct fips_extend_cmd_params {
  3492. u_int32_t fips_cmd;
  3493. u_int32_t key_cipher;
  3494. u_int32_t key_len;
  3495. u_int8_t key[MAX_KEY_LEN_FIPS_EXTEND];
  3496. u_int32_t nonce_iv_len;
  3497. u_int8_t nonce_iv[MAX_NONCEIV_LEN_FIPS_EXTEND];
  3498. u_int32_t tag_len;
  3499. u_int32_t aad_len;
  3500. u_int32_t payload_len;
  3501. };
  3502. /**
  3503. * struct fips_extend_params - FIPS extend params config
  3504. * @pdev_id: pdev_id for identifying the MAC
  3505. * @cookie: cookie value
  3506. * @frag_idx: fragment index
  3507. * @more_bit: more bit
  3508. * @data_len: length of data buf
  3509. * @cmd_params: cmd_params set for first fragment
  3510. * @data: pointer data buf
  3511. */
  3512. struct fips_extend_params {
  3513. uint32_t pdev_id;
  3514. u_int32_t cookie;
  3515. u_int32_t frag_idx;
  3516. u_int32_t more_bit;
  3517. u_int32_t data_len;
  3518. struct fips_extend_cmd_params cmd_params;
  3519. u_int32_t *data;
  3520. };
  3521. /**
  3522. * struct fips_mode_set_params - FIPS mode enable param
  3523. * @pdev_id: pdev_id for identifying the MAC
  3524. * @mode: value to disable or enable fips extend mode
  3525. */
  3526. struct fips_mode_set_params {
  3527. uint32_t pdev_id;
  3528. uint32_t mode;
  3529. };
  3530. #endif
  3531. #ifdef WLAN_FEATURE_DISA_FIPS
  3532. /**
  3533. * struct disa_encrypt_decrypt_req_params - disa encrypt request
  3534. * @vdev_id: virtual device id
  3535. * @key_flag: This indicates firmware to encrypt/decrypt payload
  3536. * see ENCRYPT_DECRYPT_FLAG
  3537. * @key_idx: Index used in storing key
  3538. * @key_cipher: cipher used for encryption/decryption
  3539. * Eg: see WMI_CIPHER_AES_CCM for CCMP
  3540. * @key_len: length of key data
  3541. * @key_txmic_len: length of Tx MIC
  3542. * @key_rxmic_len: length of Rx MIC
  3543. * @key_data: Key
  3544. * @pn: packet number
  3545. * @mac_header: MAC header
  3546. * @data_len: length of data
  3547. * @data: pointer to payload
  3548. */
  3549. struct disa_encrypt_decrypt_req_params {
  3550. uint32_t vdev_id;
  3551. uint8_t key_flag;
  3552. uint32_t key_idx;
  3553. uint32_t key_cipher;
  3554. uint32_t key_len;
  3555. uint32_t key_txmic_len;
  3556. uint32_t key_rxmic_len;
  3557. uint8_t key_data[MAC_MAX_KEY_LENGTH];
  3558. uint8_t pn[MAC_PN_LENGTH];
  3559. uint8_t mac_header[MAX_MAC_HEADER_LEN];
  3560. uint32_t data_len;
  3561. uint8_t *data;
  3562. };
  3563. #endif
  3564. /**
  3565. * struct periodic_chan_stats_params - periodic channel stats req param
  3566. * @stats_period: stats period update
  3567. * @enable: enable/disable
  3568. * @pdev_id: pdev id
  3569. */
  3570. struct periodic_chan_stats_params {
  3571. uint32_t stats_period;
  3572. bool enable;
  3573. uint32_t pdev_id;
  3574. };
  3575. /**
  3576. * enum wmi_host_packet_power_rate_flags: packer power rate flags
  3577. * @WMI_HOST_FLAG_RTSENA: RTS enabled
  3578. * @WMI_HOST_FLAG_CTSENA: CTS enabled
  3579. * @WMI_HOST_FLAG_STBC: STBC is set
  3580. * @WMI_HOST_FLAG_LDPC: LDPC is set
  3581. * @WMI_HOST_FLAG_TXBF: Tx Bf enabled
  3582. * @WMI_HOST_FLAG_MU2: MU2 data
  3583. * @WMI_HOST_FLAG_MU3: MU3 data
  3584. * @WMI_HOST_FLAG_SERIES1: Rate series 1
  3585. * @WMI_HOST_FLAG_SGI: Short guard interval
  3586. */
  3587. enum wmi_host_packet_power_rate_flags {
  3588. WMI_HOST_FLAG_RTSENA = 0x0001,
  3589. WMI_HOST_FLAG_CTSENA = 0x0002,
  3590. WMI_HOST_FLAG_STBC = 0x0004,
  3591. WMI_HOST_FLAG_LDPC = 0x0008,
  3592. WMI_HOST_FLAG_TXBF = 0x0010,
  3593. WMI_HOST_FLAG_MU2 = 0x0020,
  3594. WMI_HOST_FLAG_MU3 = 0x0040,
  3595. WMI_HOST_FLAG_SERIES1 = 0x0080,
  3596. WMI_HOST_FLAG_SGI = 0x0100,
  3597. };
  3598. /**
  3599. * enum wmi_host_su_mu_ofdma_flags: packer power su mu ofdma flags
  3600. * @WMI_HOST_FLAG_SU: SU Data
  3601. * @WMI_HOST_FLAG_DL_MU_MIMO_AC: DL AC MU data
  3602. * @WMI_HOST_FLAG_DL_MU_MIMO_AX: DL AX MU data
  3603. * @WMI_HOST_FLAG_DL_OFDMA: DL OFDMA data
  3604. * @WMI_HOST_FLAG_UL_OFDMA: UL OFDMA data
  3605. * @WMI_HOST_FLAG_UL_MU_MIMO: UL MU data
  3606. */
  3607. enum wmi_host_su_mu_ofdma_flags {
  3608. WMI_HOST_FLAG_SU = 0x0001,
  3609. WMI_HOST_FLAG_DL_MU_MIMO_AC = 0x0002,
  3610. WMI_HOST_FLAG_DL_MU_MIMO_AX = 0x0003,
  3611. WMI_HOST_FLAG_DL_OFDMA = 0x0004,
  3612. WMI_HOST_FLAG_UL_OFDMA = 0x0005,
  3613. WMI_HOST_FLAG_UL_MU_MIMO = 0x0006,
  3614. };
  3615. /**
  3616. * enum wmi_host_preamble_type: preamble type
  3617. * @WMI_HOST_PREAMBLE_OFDM: ofdm rate
  3618. * @WMI_HOST_PREAMBLE_CCK: cck rate
  3619. * @WMI_HOST_PREAMBLE_HT: ht rate
  3620. * @WMI_HOST_PREAMBLE_VHT: vht rate
  3621. * @WMI_HOST_PREAMBLE_HE: 11ax he rate
  3622. */
  3623. enum wmi_host_preamble_type {
  3624. WMI_HOST_PREAMBLE_OFDM = 0,
  3625. WMI_HOST_PREAMBLE_CCK = 1,
  3626. WMI_HOST_PREAMBLE_HT = 2,
  3627. WMI_HOST_PREAMBLE_VHT = 3,
  3628. WMI_HOST_PREAMBLE_HE = 4,
  3629. };
  3630. /**
  3631. * enum wmi_ratemask_type: ratemask type
  3632. * @WMI_RATEMASK_TYPE_CCK: CCK rate mask type
  3633. * @WMI_RATEMASK_TYPE_HT: HT rate mask type
  3634. * @WMI_RATEMASK_TYPE_VHT: VHT rate mask type
  3635. * @WMI_RATEMASK_TYPE_HE: HE rate mask type
  3636. *
  3637. * This is used for 'type' in WMI_VDEV_RATEMASK_CMDID
  3638. */
  3639. enum wmi_ratemask_type {
  3640. WMI_RATEMASK_TYPE_CCK = 0,
  3641. WMI_RATEMASK_TYPE_HT = 1,
  3642. WMI_RATEMASK_TYPE_VHT = 2,
  3643. WMI_RATEMASK_TYPE_HE = 3,
  3644. };
  3645. /**
  3646. * enum peer_txq_flush_policy - Peer flush policy values
  3647. * @PEER_TXQ_FLUSH_POLICY_NONE: No policy configured for peer TID queues
  3648. * @PEER_TXQ_FLUSH_POLICY_TWT_SP_END: flush peer TID queues after SP end
  3649. * @PEER_TXQ_FLUSH_POLICY_INVALID: invalid policy
  3650. *
  3651. * This is mapped to 'flush_policy' in WMI_PEER_FLUSH_POLICY_CMDID
  3652. */
  3653. enum peer_txq_flush_policy {
  3654. PEER_TXQ_FLUSH_POLICY_NONE = 0,
  3655. PEER_TXQ_FLUSH_POLICY_TWT_SP_END = 1,
  3656. /*keep last */
  3657. PEER_TXQ_FLUSH_POLICY_INVALID,
  3658. };
  3659. /**
  3660. * struct peer_txq_flush_config_params: Peer TXQ flush configuration parameters
  3661. * @vdev_id: vdev id
  3662. * @peer: Peer mac address
  3663. * @tid_mask: TID queues of the peer being configured
  3664. * @policy: Policy to be applied
  3665. */
  3666. struct peer_txq_flush_config_params {
  3667. uint8_t vdev_id;
  3668. uint8_t peer[QDF_MAC_ADDR_SIZE];
  3669. uint32_t tid_mask;
  3670. enum peer_txq_flush_policy policy;
  3671. };
  3672. /**
  3673. * enum gpio_pull_type - GPIO PULL TYPE
  3674. * @WMI_HOST_GPIO_PULL_NONE: set gpio pull type to none
  3675. * @WMI_HOST_GPIO_PULL_UP: set gpio to pull up
  3676. * @WMI_HOST_GPIO_PULL_DOWN: set gpio to pull down
  3677. * @WMI_HOST_GPIO_PULL_MAX: invalid pull type
  3678. */
  3679. enum gpio_pull_type {
  3680. WMI_HOST_GPIO_PULL_NONE = 0,
  3681. WMI_HOST_GPIO_PULL_UP = 1,
  3682. WMI_HOST_GPIO_PULL_DOWN = 2,
  3683. WMI_HOST_GPIO_PULL_MAX,
  3684. };
  3685. /**
  3686. * enum gpio_interrupt_mode - GPIO INTERRUPT MODE
  3687. * @WMI_HOST_GPIO_INTMODE_DISABLE: disable interrupt mode
  3688. * @WMI_HOST_GPIO_INTMODE_RISING_EDGE: interrupt with rising edge trigger
  3689. * @WMI_HOST_GPIO_INTMODE_FALLING_EDGE: interrupt with falling edge trigger
  3690. * @WMI_HOST_GPIO_INTMODE_BOTH_EDGE: interrupt with both edge trigger
  3691. * @WMI_HOST_GPIO_INTMODE_LEVEL_LOW: interrupt with gpio level low trigger
  3692. * @WMI_HOST_GPIO_INTMODE_LEVEL_HIGH: interrupt with gpio level high trigger
  3693. * @WMI_HOST_GPIO_INTMODE_MAX: invalid interrupt mode
  3694. */
  3695. enum gpio_interrupt_mode {
  3696. WMI_HOST_GPIO_INTMODE_DISABLE = 0,
  3697. WMI_HOST_GPIO_INTMODE_RISING_EDGE = 1,
  3698. WMI_HOST_GPIO_INTMODE_FALLING_EDGE = 2,
  3699. WMI_HOST_GPIO_INTMODE_BOTH_EDGE = 3,
  3700. WMI_HOST_GPIO_INTMODE_LEVEL_LOW = 4,
  3701. WMI_HOST_GPIO_INTMODE_LEVEL_HIGH = 5,
  3702. WMI_HOST_GPIO_INTMODE_MAX,
  3703. };
  3704. /**
  3705. * enum gpio_direction - GPIO Direction
  3706. * @WMI_HOST_GPIO_INPUT: set gpio as input mode
  3707. * @WMI_HOST_GPIO_OUTPUT: set gpio as output mode
  3708. * @WMI_HOST_GPIO_DIR_MAX: invalid gpio direction
  3709. */
  3710. enum gpio_direction {
  3711. WMI_HOST_GPIO_INPUT = 0,
  3712. WMI_HOST_GPIO_OUTPUT = 1,
  3713. WMI_HOST_GPIO_DIR_MAX,
  3714. };
  3715. /**
  3716. * enum fw_gpio_direction - GPIO Direction
  3717. * @WMI_FW_GPIO_OUTPUT: set gpio as output mode
  3718. * @WMI_FW_GPIO_INPUT: set gpio as input mode
  3719. */
  3720. enum fw_gpio_direction {
  3721. WMI_FW_GPIO_OUTPUT = 0,
  3722. WMI_FW_GPIO_INPUT = 1,
  3723. };
  3724. /**
  3725. * enum gpio_value - GPIO Value
  3726. * @WMI_HOST_GPIO_LEVEL_LOW: set gpio output level low
  3727. * @WMI_HOST_GPIO_LEVEL_HIGH: set gpio output level high
  3728. * @WMI_HOST_GPIO_LEVEL_MAX: invalid gpio value
  3729. */
  3730. enum gpio_value {
  3731. WMI_HOST_GPIO_LEVEL_LOW = 0,
  3732. WMI_HOST_GPIO_LEVEL_HIGH = 1,
  3733. WMI_HOST_GPIO_LEVEL_MAX,
  3734. };
  3735. /**
  3736. * enum gpio_init_enable - GPIO init enable
  3737. * @WMI_HOST_GPIO_INIT_DISABLE: Disable INIT
  3738. * @WMI_HOST_GPIO_INIT_ENABLE: Enable INIT
  3739. * @WMI_HOST_GPIO_INIT_MAX: invalid gpio init_enable
  3740. */
  3741. enum gpio_init_enable {
  3742. WMI_HOST_GPIO_INIT_DISABLE = 0,
  3743. WMI_HOST_GPIO_INIT_ENABLE = 1,
  3744. WMI_HOST_GPIO_INIT_MAX,
  3745. };
  3746. /**
  3747. * enum gpio_drive - GPIO drive
  3748. * @WMI_HOST_GPIO_DRIVE_2MA: drive 2MA
  3749. * @WMI_HOST_GPIO_DRIVE_4MA: drive 4MA
  3750. * @WMI_HOST_GPIO_DRIVE_6MA: drive 6MA
  3751. * @WMI_HOST_GPIO_DRIVE_8MA: drive 8MA
  3752. * @WMI_HOST_GPIO_DRIVE_10MA: drive 10MA
  3753. * @WMI_HOST_GPIO_DRIVE_12MA: drive 12MA
  3754. * @WMI_HOST_GPIO_DRIVE_14MA: drive 14MA
  3755. * @WMI_HOST_GPIO_DRIVE_16MA: drive 16MA
  3756. * @WMI_HOST_GPIO_DRIVE_MAX: invalid gpio drive
  3757. */
  3758. enum gpio_drive {
  3759. WMI_HOST_GPIO_DRIVE_2MA = 0,
  3760. WMI_HOST_GPIO_DRIVE_4MA = 1,
  3761. WMI_HOST_GPIO_DRIVE_6MA = 2,
  3762. WMI_HOST_GPIO_DRIVE_8MA = 3,
  3763. WMI_HOST_GPIO_DRIVE_10MA = 4,
  3764. WMI_HOST_GPIO_DRIVE_12MA = 5,
  3765. WMI_HOST_GPIO_DRIVE_14MA = 6,
  3766. WMI_HOST_GPIO_DRIVE_16MA = 7,
  3767. WMI_HOST_GPIO_DRIVE_MAX,
  3768. };
  3769. /**
  3770. * enum gpio_mux_config - GPIO mux_config
  3771. * @WMI_HOST_GPIO_MUX_DEFAULT: Default mux value
  3772. * @WMI_HOST_GPIO_MUX_MAX: maximum allowed gpio mux_config
  3773. */
  3774. enum gpio_mux_config {
  3775. WMI_HOST_GPIO_MUX_DEFAULT = 0,
  3776. WMI_HOST_GPIO_MUX_MAX = 15,
  3777. };
  3778. /**
  3779. * struct wmi_host_gpio_input_event - GPIO input event structure
  3780. * @gpio_num: GPIO number which changed state
  3781. */
  3782. typedef struct {
  3783. uint32_t gpio_num; /* GPIO number which changed state */
  3784. } wmi_host_gpio_input_event;
  3785. /**
  3786. * struct gpio_config_params - GPIO config params
  3787. * @pin_num: GPIO number to config
  3788. * @pin_dir: gpio direction, 1-input/0-output
  3789. * @pin_pull_type: pull type define in gpio_pull_type
  3790. * @pin_intr_mode: interrupt mode define in gpio_interrupt_mode
  3791. * @mux_config_val:
  3792. * @drive:
  3793. * @init_enable:
  3794. */
  3795. struct gpio_config_params {
  3796. uint32_t pin_num;
  3797. enum gpio_direction pin_dir;
  3798. enum gpio_pull_type pin_pull_type;
  3799. enum gpio_interrupt_mode pin_intr_mode;
  3800. enum gpio_mux_config mux_config_val;
  3801. enum gpio_drive drive;
  3802. enum gpio_init_enable init_enable;
  3803. };
  3804. /**
  3805. * struct gpio_output_params - GPIO output params
  3806. * @pin_num: GPIO number to configure
  3807. * @pin_set: 1 mean gpio output high level, 0 mean gpio output low level
  3808. */
  3809. struct gpio_output_params {
  3810. uint32_t pin_num;
  3811. enum gpio_value pin_set;
  3812. };
  3813. /* flags bit 0: to configure wlan priority bitmap */
  3814. #define WMI_HOST_BTCOEX_PARAM_FLAGS_WLAN_PRIORITY_BITMAP_BIT (1<<0)
  3815. /* flags bit 1: to configure both period and wlan duration */
  3816. #define WMI_HOST_BTCOEX_PARAM_FLAGS_DUTY_CYCLE_BIT (1<<1)
  3817. struct btcoex_cfg_params {
  3818. /* WLAN priority bitmask for different frame types */
  3819. uint32_t btcoex_wlan_priority_bitmap;
  3820. /* This command is used to configure different btcoex params
  3821. * in different situations.The host sets the appropriate bit(s)
  3822. * in btcoex_param_flags to indicate which configuration parameters
  3823. * are valid within a particular BT coex config message, so that one
  3824. * BT configuration parameter can be configured without affecting
  3825. * other BT configuration parameters.E.g. if the host wants to
  3826. * configure only btcoex_wlan_priority_bitmap it sets only
  3827. * WMI_BTCOEX_PARAM_FLAGS_WLAN_PRIORITY_BITMAP_BIT in
  3828. * btcoex_param_flags so that firmware will not overwrite
  3829. * other params with default value passed in the command.
  3830. * Host can also set multiple bits in btcoex_param_flags
  3831. * to configure more than one param in single message.
  3832. */
  3833. uint32_t btcoex_param_flags;
  3834. /* period denotes the total time in milliseconds which WLAN and BT share
  3835. * configured percentage for transmission and reception.
  3836. */
  3837. uint32_t period;
  3838. /* wlan duration is the time in milliseconds given for wlan
  3839. * in above period.
  3840. */
  3841. uint32_t wlan_duration;
  3842. };
  3843. /**
  3844. * struct esl_egid_params - Contains the EGID information
  3845. * @egid_info: egid_info contains the 128-bit ESL EGID information
  3846. */
  3847. struct esl_egid_params {
  3848. uint32_t egid_info[EGID_INFO_SIZE];
  3849. };
  3850. #define WMI_HOST_COEX_CONFIG_BUF_MAX_LEN 32 /* 128 bytes */
  3851. /**
  3852. * struct coex_ver_cfg_t
  3853. * @coex_version: Version for 4 wire coex
  3854. * @length: Length of payload buffer based on version
  3855. * @config_buf: Payload Buffer
  3856. */
  3857. typedef struct {
  3858. /* VERSION_4 (4 wire coex) */
  3859. uint32_t coex_version;
  3860. /* No. of uint32_t elements in payload buffer. Will depend on the coex
  3861. * version
  3862. */
  3863. uint32_t length;
  3864. /* Payload buffer */
  3865. uint32_t config_buf[WMI_HOST_COEX_CONFIG_BUF_MAX_LEN];
  3866. } coex_ver_cfg_t;
  3867. #define WMI_HOST_RTT_REPORT_CFR 0
  3868. #define WMI_HOST_RTT_NO_REPORT_CFR 1
  3869. #define WMI_HOST_RTT_AGGREGATE_REPORT_NON_CFR 2
  3870. /**
  3871. * struct rtt_meas_req_test_params
  3872. * @peer: peer mac address
  3873. * @req_frame_type: RTT request frame type
  3874. * @req_bw: requested bandwidth
  3875. * @req_preamble: Preamble
  3876. * @req_num_req: num of requests
  3877. * @req_report_type: report type
  3878. * @num_measurements: number of measurements
  3879. * @asap_mode: priority
  3880. * @lci_requested: LCI requested
  3881. * @loc_civ_requested:
  3882. * @channel: channel param
  3883. * @req_id: requested id
  3884. */
  3885. struct rtt_meas_req_test_params {
  3886. uint8_t peer[QDF_MAC_ADDR_SIZE];
  3887. int req_frame_type;
  3888. int req_bw;
  3889. int req_preamble;
  3890. int req_num_req;
  3891. int req_report_type;
  3892. uint32_t num_measurements;
  3893. uint32_t asap_mode;
  3894. uint32_t lci_requested;
  3895. uint32_t loc_civ_requested;
  3896. struct channel_param channel;
  3897. uint8_t req_id;
  3898. };
  3899. /**
  3900. * struct peer_request_pn_param - PN request params
  3901. * @vdev_id: vdev id
  3902. * @keyix: key index
  3903. * @peer_macaddr: Peer mac address
  3904. * @key_type: key type
  3905. */
  3906. struct peer_request_pn_param {
  3907. uint32_t vdev_id;
  3908. uint8_t keyix;
  3909. uint8_t peer_macaddr[QDF_MAC_ADDR_SIZE];
  3910. uint32_t key_type;
  3911. };
  3912. /**
  3913. * struct peer_request_rxpn_param - Rx PN request params
  3914. * @vdev_id: vdev id
  3915. * @peer_macaddr: Peer mac address
  3916. * @keyix: key index
  3917. */
  3918. struct peer_request_rxpn_param {
  3919. uint32_t vdev_id;
  3920. uint8_t peer_macaddr[QDF_MAC_ADDR_SIZE];
  3921. uint16_t keyix;
  3922. };
  3923. /**
  3924. * struct rtt_meas_req_params - RTT measurement request params
  3925. * @req_id: Request id
  3926. * @vdev_id: vdev id
  3927. * @is_mode_na: 11NA
  3928. * @is_mode_ac: AC
  3929. * @is_bw_20: 20
  3930. * @is_bw_40: 40
  3931. * @is_bw_80: 80
  3932. * @sta_mac_addr: pointer to station mac address
  3933. * @spoof_mac_addr: pointer to spoof mac address
  3934. * @num_probe_rqst: number of probe request
  3935. * @channel: channel param
  3936. */
  3937. struct rtt_meas_req_params {
  3938. uint8_t req_id;
  3939. uint8_t vdev_id;
  3940. bool is_mode_na;
  3941. bool is_mode_ac;
  3942. bool is_bw_20;
  3943. bool is_bw_40;
  3944. bool is_bw_80;
  3945. uint8_t *sta_mac_addr;
  3946. uint8_t *spoof_mac_addr;
  3947. uint32_t num_probe_rqst;
  3948. struct channel_param channel;
  3949. };
  3950. /**
  3951. * struct lci_set_params - LCI params
  3952. * @lci_data: pointer to LCI data
  3953. * @latitude_unc: latitude
  3954. * @latitude_0_1: bits 0 to 1 of latitude
  3955. * @latitude_2_33: bits 2 to 33 of latitude
  3956. * @longitude_unc: longitude
  3957. * @longitude_0_1: bits 0 to 1 of longitude
  3958. * @longitude_2_33: bits 2 to 33 of longitude
  3959. * @altitude_type: altitude type
  3960. * @altitude_unc_0_3: altitude bits 0 - 3
  3961. * @altitude_unc_4_5: altitude bits 4 - 5
  3962. * @altitude: altitude
  3963. * @datum: dataum
  3964. * @reg_loc_agmt:
  3965. * @reg_loc_dse:
  3966. * @dep_sta:
  3967. * @version: version
  3968. * @colocated_bss:
  3969. * @msg_len: message length
  3970. */
  3971. struct lci_set_params {
  3972. void *lci_data;
  3973. uint8_t latitude_unc:6,
  3974. latitude_0_1:2;
  3975. uint32_t latitude_2_33;
  3976. uint8_t longitude_unc:6,
  3977. longitude_0_1:2;
  3978. uint32_t longitude_2_33;
  3979. uint8_t altitude_type:4,
  3980. altitude_unc_0_3:4;
  3981. uint32_t altitude_unc_4_5:2,
  3982. altitude:30;
  3983. uint8_t datum:3,
  3984. reg_loc_agmt:1,
  3985. reg_loc_dse:1,
  3986. dep_sta:1,
  3987. version:2;
  3988. uint8_t *colocated_bss;
  3989. int msg_len;
  3990. };
  3991. /**
  3992. * struct lcr_set_params - LCR params
  3993. * @lcr_data: pointer to lcr data
  3994. * @msg_len: message length
  3995. */
  3996. struct lcr_set_params {
  3997. void *lcr_data;
  3998. int msg_len;
  3999. };
  4000. /**
  4001. * struct rtt_keepalive_req_params - RTT keepalive params
  4002. * @macaddr: pointer to macaddress
  4003. * @req_id: Request id
  4004. * @vdev_id: vdev id
  4005. * @stop: start/stop
  4006. */
  4007. struct rtt_keepalive_req_params {
  4008. uint8_t *macaddr;
  4009. uint8_t req_id;
  4010. uint8_t vdev_id;
  4011. bool stop;
  4012. };
  4013. /**
  4014. * struct rx_reorder_queue_setup_params - Reorder queue setup params
  4015. * @peer_macaddr: Peer mac address
  4016. * @tid: TID
  4017. * @vdev_id: vdev id
  4018. * @hw_qdesc_paddr_lo: lower 32 bits of queue desc address
  4019. * @hw_qdesc_paddr_hi: upper 32 bits of queue desc address
  4020. * @queue_no: 16-bit number assigned by host for queue
  4021. * @ba_window_size_valid: BA window size validity flag
  4022. * @ba_window_size: BA window size
  4023. */
  4024. struct rx_reorder_queue_setup_params {
  4025. uint8_t *peer_macaddr;
  4026. uint16_t tid;
  4027. uint16_t vdev_id;
  4028. uint32_t hw_qdesc_paddr_lo;
  4029. uint32_t hw_qdesc_paddr_hi;
  4030. uint16_t queue_no;
  4031. uint8_t ba_window_size_valid;
  4032. uint16_t ba_window_size;
  4033. };
  4034. /**
  4035. * struct rx_reorder_queue_remove_params - Reorder queue setup params
  4036. * @peer_macaddr: Peer mac address
  4037. * @vdev_id: vdev id
  4038. * @peer_tid_bitmap: peer tid bitmap
  4039. */
  4040. struct rx_reorder_queue_remove_params {
  4041. uint8_t *peer_macaddr;
  4042. uint16_t vdev_id;
  4043. uint32_t peer_tid_bitmap;
  4044. };
  4045. /**
  4046. * struct wmi_host_stats_event - Stats event params
  4047. * @stats_id: stats id of type wmi_host_stats_event
  4048. * @num_pdev_stats: number of pdev stats event structures 0 or 1
  4049. * @num_pdev_ext_stats: number of pdev ext stats event structures
  4050. * @num_vdev_stats: number of vdev stats
  4051. * @num_peer_stats: number of peer stats event structures 0 or max peers
  4052. * @num_peer_extd_stats: number of peer extended stats event structures 0
  4053. * or max peers
  4054. * @num_bcnflt_stats: number of beacon filter stats
  4055. * @num_chan_stats: number of channel stats
  4056. * @pdev_id: device id for the radio
  4057. * @num_bcn_stats: number of beacon stats
  4058. * @num_rssi_stats: number of rssi stats
  4059. * @num_peer_adv_stats: number of peer adv stats
  4060. * @num_mib_stats: number of mib stats
  4061. * @num_mib_extd_stats: number of extended mib stats
  4062. * @num_peer_stats_info_ext: number of peer extended stats info
  4063. * @num_vdev_extd_stats: number of vdev extended stats info
  4064. * @last_event: specify if the current event is the last event
  4065. */
  4066. typedef struct {
  4067. wmi_host_stats_id stats_id;
  4068. uint32_t num_pdev_stats;
  4069. uint32_t num_pdev_ext_stats;
  4070. uint32_t num_vdev_stats;
  4071. uint32_t num_peer_stats;
  4072. uint32_t num_peer_extd_stats;
  4073. uint32_t num_bcnflt_stats;
  4074. uint32_t num_chan_stats;
  4075. uint32_t pdev_id;
  4076. uint32_t num_bcn_stats;
  4077. uint32_t num_rssi_stats;
  4078. uint32_t num_peer_adv_stats;
  4079. uint32_t num_mib_stats;
  4080. uint32_t num_mib_extd_stats;
  4081. uint32_t num_peer_stats_info_ext;
  4082. uint32_t num_vdev_extd_stats;
  4083. uint32_t last_event;
  4084. } wmi_host_stats_event;
  4085. /**
  4086. * struct wmi_host_peer_extd_stats - peer extd stats event structure
  4087. * @peer_macaddr: Peer mac address
  4088. * @inactive_time: inactive time in secs
  4089. * @peer_chain_rssi: peer rssi
  4090. * @rx_duration: RX duration
  4091. * @peer_tx_bytes: TX bytes
  4092. * @last_tx_rate_code: Tx rate code of last frame
  4093. * @last_tx_power: Tx power latest
  4094. * @atf_tokens_allocated: atf tokens allocated
  4095. * @atf_tokens_utilized: atf tokens utilized
  4096. * @num_mu_tx_denylisted: Denylisted MU Tx count
  4097. * @sgi_count: sgi count of the peer
  4098. * @rx_mc_bc_cnt: Total number of received multicast & broadcast data frames
  4099. * corresponding to this peer, 1 in the MSB of rx_mc_bc_cnt represents a
  4100. * valid data
  4101. * @rx_retry_cnt: Number of rx retries received from current station
  4102. */
  4103. typedef struct {
  4104. wmi_host_mac_addr peer_macaddr;
  4105. uint32_t inactive_time;
  4106. uint32_t peer_chain_rssi;
  4107. uint32_t rx_duration;
  4108. uint32_t peer_tx_bytes;
  4109. uint32_t last_tx_rate_code;
  4110. uint32_t last_tx_power;
  4111. uint32_t atf_tokens_allocated;
  4112. uint32_t atf_tokens_utilized;
  4113. uint32_t num_mu_tx_denylisted;
  4114. uint32_t sgi_count;
  4115. uint32_t rx_mc_bc_cnt;
  4116. uint32_t rx_retry_cnt;
  4117. } wmi_host_peer_extd_stats;
  4118. /**
  4119. * struct wmi_host_peer_adv_stats - peer adv stats event structure
  4120. * @peer_macaddr: mac address
  4121. * @fcs_count: fcs count
  4122. * @rx_count: rx count
  4123. * @rx_bytes: rx bytes
  4124. */
  4125. struct wmi_host_peer_adv_stats {
  4126. uint8_t peer_macaddr[QDF_MAC_ADDR_SIZE];
  4127. uint32_t fcs_count;
  4128. uint32_t rx_count;
  4129. uint64_t rx_bytes;
  4130. };
  4131. /**
  4132. * struct wmi_host_pdev_ext_stats - peer ext stats structure
  4133. * @rx_rssi_comb: RX rssi
  4134. * @rx_rssi_chain0: RX rssi chain 0
  4135. * @rx_rssi_chain1: RX rssi chain 1
  4136. * @rx_rssi_chain2: RX rssi chain 2
  4137. * @rx_rssi_chain3: RX rssi chain 3
  4138. * @rx_mcs: RX MCS array
  4139. * @tx_mcs: TX MCS array
  4140. * @ack_rssi: Ack rssi
  4141. * @my_rx_count: What portion of time, as measured by the MAC HW clock was
  4142. * occupied by receiving PPDUs addressed to one of the vdevs
  4143. * within this pdev.
  4144. * @rx_matched_11ax_msdu_cnt: number of Rx 11ax MSDUs with matching BSS color
  4145. * counter updated at EOP (end of packet)
  4146. * @rx_other_11ax_msdu_cnt: number of Rx 11ax MSDUs with other BSS color counter
  4147. * updated at EOP (end of packet)
  4148. * @pdev_id: pdev id
  4149. */
  4150. typedef struct {
  4151. uint32_t rx_rssi_comb;
  4152. uint32_t rx_rssi_chain0;
  4153. uint32_t rx_rssi_chain1;
  4154. uint32_t rx_rssi_chain2;
  4155. uint32_t rx_rssi_chain3;
  4156. uint32_t rx_mcs[10];
  4157. uint32_t tx_mcs[10];
  4158. uint32_t ack_rssi;
  4159. uint32_t my_rx_count;
  4160. uint32_t rx_matched_11ax_msdu_cnt;
  4161. uint32_t rx_other_11ax_msdu_cnt;
  4162. uint32_t pdev_id;
  4163. } wmi_host_pdev_ext_stats;
  4164. /**
  4165. * struct wmi_host_dbg_tx_stats - Debug stats
  4166. * @comp_queued: Num HTT cookies queued to dispatch list
  4167. * @comp_delivered: Num HTT cookies dispatched
  4168. * @msdu_enqued: Num MSDU queued to WAL
  4169. * @mpdu_enqued: Num MPDU queue to WAL
  4170. * @wmm_drop: Num MSDUs dropped by WMM limit
  4171. * @local_enqued: Num Local frames queued
  4172. * @local_freed: Num Local frames done
  4173. * @hw_queued: Num queued to HW
  4174. * @hw_reaped: Num PPDU reaped from HW
  4175. * @underrun: Num underruns
  4176. * @hw_paused: HW Paused.
  4177. * @tx_abort: Num PPDUs cleaned up in TX abort
  4178. * @mpdus_requed: Num MPDUs requed by SW
  4179. * @tx_ko: excessive retries
  4180. * @tx_xretry:
  4181. * @data_rc: data hw rate code
  4182. * @self_triggers: Scheduler self triggers
  4183. * @sw_retry_failure: frames dropped due to excessive sw retries
  4184. * @illgl_rate_phy_err: illegal rate phy errors
  4185. * @pdev_cont_xretry: wal pdev continuous xretry
  4186. * @pdev_tx_timeout: wal pdev continuous xretry
  4187. * @pdev_resets: wal pdev resets
  4188. * @stateless_tid_alloc_failure: frames dropped due to non-availability of
  4189. * stateless TIDs
  4190. * @phy_underrun: PhY/BB underrun
  4191. * @txop_ovf: MPDU is more than txop limit
  4192. * @seq_posted: Number of Sequences posted
  4193. * @seq_failed_queueing: Number of Sequences failed queueing
  4194. * @seq_completed: Number of Sequences completed
  4195. * @seq_restarted: Number of Sequences restarted
  4196. * @mu_seq_posted: Number of MU Sequences posted
  4197. * @mpdus_sw_flush: Num MPDUs flushed by SW, HWPAUSED, SW TXABORT
  4198. * (Reset,channel change)
  4199. * @mpdus_hw_filter: Num MPDUs filtered by HW, all filter condition
  4200. * (TTL expired)
  4201. * @mpdus_truncated: Num MPDUs truncated by PDG (TXOP, TBTT,
  4202. * PPDU_duration based on rate, dyn_bw)
  4203. * @mpdus_ack_failed: Num MPDUs that was tried but didn't receive ACK or BA
  4204. * @mpdus_expired: Num MPDUs that was dropped du to expiry.
  4205. * @mc_drop: Num mc drops
  4206. */
  4207. typedef struct {
  4208. int32_t comp_queued;
  4209. int32_t comp_delivered;
  4210. int32_t msdu_enqued;
  4211. int32_t mpdu_enqued;
  4212. int32_t wmm_drop;
  4213. int32_t local_enqued;
  4214. int32_t local_freed;
  4215. int32_t hw_queued;
  4216. int32_t hw_reaped;
  4217. int32_t underrun;
  4218. uint32_t hw_paused;
  4219. int32_t tx_abort;
  4220. int32_t mpdus_requed;
  4221. uint32_t tx_ko;
  4222. uint32_t tx_xretry;
  4223. uint32_t data_rc;
  4224. uint32_t self_triggers;
  4225. uint32_t sw_retry_failure;
  4226. uint32_t illgl_rate_phy_err;
  4227. uint32_t pdev_cont_xretry;
  4228. uint32_t pdev_tx_timeout;
  4229. uint32_t pdev_resets;
  4230. uint32_t stateless_tid_alloc_failure;
  4231. uint32_t phy_underrun;
  4232. uint32_t txop_ovf;
  4233. uint32_t seq_posted;
  4234. uint32_t seq_failed_queueing;
  4235. uint32_t seq_completed;
  4236. uint32_t seq_restarted;
  4237. uint32_t mu_seq_posted;
  4238. int32_t mpdus_sw_flush;
  4239. int32_t mpdus_hw_filter;
  4240. int32_t mpdus_truncated;
  4241. int32_t mpdus_ack_failed;
  4242. int32_t mpdus_expired;
  4243. uint32_t mc_drop;
  4244. } wmi_host_dbg_tx_stats;
  4245. /**
  4246. * struct wmi_host_dbg_rx_stats - RX Debug stats
  4247. * @mid_ppdu_route_change: Cnts any change in ring routing mid-ppdu
  4248. * @status_rcvd: Total number of statuses processed
  4249. * @r0_frags: Extra frags on rings 0
  4250. * @r1_frags: Extra frags on rings 1
  4251. * @r2_frags: Extra frags on rings 2
  4252. * @r3_frags: Extra frags on rings 3
  4253. * @htt_msdus: MSDUs delivered to HTT
  4254. * @htt_mpdus: MPDUs delivered to HTT
  4255. * @loc_msdus: MSDUs delivered to local stack
  4256. * @loc_mpdus: MPDUS delivered to local stack
  4257. * @oversize_amsdu: AMSDUs that have more MSDUs than the status ring size
  4258. * @phy_errs: Number of PHY errors
  4259. * @phy_err_drop: Number of PHY errors drops
  4260. * @mpdu_errs: Number of mpdu errors - FCS, MIC, ENC etc.
  4261. * @pdev_rx_timeout: Number of rx inactivity timeouts
  4262. * @rx_ovfl_errs: Number of rx overflow errors.
  4263. */
  4264. typedef struct {
  4265. int32_t mid_ppdu_route_change;
  4266. int32_t status_rcvd;
  4267. int32_t r0_frags;
  4268. int32_t r1_frags;
  4269. int32_t r2_frags;
  4270. int32_t r3_frags;
  4271. int32_t htt_msdus;
  4272. int32_t htt_mpdus;
  4273. int32_t loc_msdus;
  4274. int32_t loc_mpdus;
  4275. int32_t oversize_amsdu;
  4276. int32_t phy_errs;
  4277. int32_t phy_err_drop;
  4278. int32_t mpdu_errs;
  4279. uint32_t pdev_rx_timeout;
  4280. int32_t rx_ovfl_errs;
  4281. } wmi_host_dbg_rx_stats;
  4282. /** struct wmi_host_dbg_mem_stats - memory stats
  4283. * @iram_free_size: IRAM free size on target
  4284. * @dram_free_size: DRAM free size on target
  4285. * @sram_free_size: SRAM free size on target
  4286. */
  4287. typedef struct {
  4288. uint32_t iram_free_size;
  4289. uint32_t dram_free_size;
  4290. /* Only Non-TLV */
  4291. uint32_t sram_free_size;
  4292. } wmi_host_dbg_mem_stats;
  4293. typedef struct {
  4294. /* Only TLV */
  4295. int32_t dummy;/* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */
  4296. } wmi_host_dbg_peer_stats;
  4297. /**
  4298. * struct wmi_host_dbg_stats - host debug stats
  4299. * @tx: TX stats of type wmi_host_dbg_tx_stats
  4300. * @rx: RX stats of type wmi_host_dbg_rx_stats
  4301. * @mem: Memory stats of type wmi_host_dbg_mem_stats
  4302. * @peer: peer stats of type wmi_host_dbg_peer_stats
  4303. */
  4304. typedef struct {
  4305. wmi_host_dbg_tx_stats tx;
  4306. wmi_host_dbg_rx_stats rx;
  4307. wmi_host_dbg_mem_stats mem;
  4308. wmi_host_dbg_peer_stats peer;
  4309. } wmi_host_dbg_stats;
  4310. /**
  4311. * struct wmi_host_pdev_stats - PDEV stats
  4312. * @chan_nf: Channel noise floor
  4313. * @tx_frame_count: TX frame count
  4314. * @rx_frame_count: RX frame count
  4315. * @rx_clear_count: rx clear count
  4316. * @cycle_count: cycle count
  4317. * @phy_err_count: Phy error count
  4318. * @chan_tx_pwr: Channel Tx Power
  4319. * @pdev_stats: WAL dbg stats
  4320. * @ackRcvBad:
  4321. * @rtsBad:
  4322. * @rtsGood:
  4323. * @fcsBad:
  4324. * @noBeacons:
  4325. * @mib_int_count:
  4326. * @pdev_id: pdev id
  4327. */
  4328. typedef struct {
  4329. int32_t chan_nf;
  4330. uint32_t tx_frame_count;
  4331. uint32_t rx_frame_count;
  4332. uint32_t rx_clear_count;
  4333. uint32_t cycle_count;
  4334. uint32_t phy_err_count;
  4335. uint32_t chan_tx_pwr;
  4336. wmi_host_dbg_stats pdev_stats;
  4337. uint32_t ackRcvBad;
  4338. uint32_t rtsBad;
  4339. uint32_t rtsGood;
  4340. uint32_t fcsBad;
  4341. uint32_t noBeacons;
  4342. uint32_t mib_int_count;
  4343. uint32_t pdev_id;
  4344. } wmi_host_pdev_stats;
  4345. /**
  4346. * struct wmi_host_pmf_bcn_protect_stats - PMF bcn protect stats
  4347. * @igtk_mic_fail_cnt: MIC failure count of management packets using IGTK
  4348. * @igtk_replay_cnt: Replay detection count of management packets using IGTK
  4349. * @bcn_mic_fail_cnt: MIC failure count of beacon packets using BIGTK
  4350. * @bcn_replay_cnt: Replay detection count of beacon packets using BIGTK
  4351. */
  4352. typedef struct {
  4353. uint32_t igtk_mic_fail_cnt;
  4354. uint32_t igtk_replay_cnt;
  4355. uint32_t bcn_mic_fail_cnt;
  4356. uint32_t bcn_replay_cnt;
  4357. } wmi_host_pmf_bcn_protect_stats;
  4358. /**
  4359. * struct wmi_unit_test_event - Structure corresponding to WMI Unit test event
  4360. * @vdev_id: VDEV ID
  4361. * @module_id: MODULE ID
  4362. * @diag_token: Diag Token (the number that was generated in the unit-test cmd)
  4363. * @flag: flag has 2 bits 0x1 indicates status, and 0x2 indicates done-bit
  4364. * @payload_len: payload_len (blindly copied from payload_len field in WMI)
  4365. * @buffer_len: actual number of data bytes in the variable data size TLV
  4366. * buffer_len is likely to be the nearest multiple of 4 (from
  4367. * payload_len). both buffer_len and payload_len need to be
  4368. * passed to wifitool so that the driver can be agnostic
  4369. * regarding these differences.
  4370. * @buffer: data buffer
  4371. */
  4372. typedef struct {
  4373. uint32_t vdev_id;
  4374. uint32_t module_id;
  4375. uint32_t diag_token;
  4376. uint32_t flag;
  4377. uint32_t payload_len;
  4378. uint32_t buffer_len;
  4379. uint8_t buffer[1];
  4380. } wmi_unit_test_event;
  4381. /**
  4382. * struct wmi_host_snr_info - WMI host Signal to noise ration info
  4383. * @bcn_snr: beacon SNR
  4384. * @dat_snr: Data frames SNR
  4385. */
  4386. typedef struct {
  4387. int32_t bcn_snr;
  4388. int32_t dat_snr;
  4389. } wmi_host_snr_info;
  4390. #define WMI_HOST_MAX_TX_RATE_VALUES 10 /*Max Tx Rates */
  4391. #define WMI_HOST_MAX_RSSI_VALUES 10 /*Max Rssi values */
  4392. /* The WMI_HOST_MAX_CHAINS macro cannot be changed without breaking WMI
  4393. * compatibility.
  4394. * The maximum value of number of chains
  4395. */
  4396. #define WMI_HOST_MAX_CHAINS 8
  4397. /**
  4398. * struct wmi_host_vdev_stats - vdev stats structure
  4399. * @vdev_id: unique id identifying the VDEV, generated by the caller
  4400. * Rest all Only TLV
  4401. * @vdev_snr: wmi_host_snr_info
  4402. * @tx_frm_cnt: Total number of packets(per AC) that were successfully
  4403. * transmitted (with and without retries,
  4404. * including multi-cast, broadcast)
  4405. * @rx_frm_cnt: Total number of packets that were successfully received
  4406. * (after appropriate filter rules including multi-cast, broadcast)
  4407. * @multiple_retry_cnt: The number of MSDU packets and MMPDU frames per AC
  4408. * that the 802.11 station successfully transmitted after
  4409. * more than one retransmission attempt
  4410. * @fail_cnt: Total number packets(per AC) failed to transmit
  4411. * @rts_fail_cnt: Total number of RTS/CTS sequence failures for transmission
  4412. * of a packet
  4413. * @rts_succ_cnt: Total number of RTS/CTS sequence success for transmission
  4414. * of a packet
  4415. * @rx_err_cnt: The receive error count. HAL will provide the
  4416. * RxP FCS error global
  4417. * @rx_discard_cnt: The sum of the receive error count and
  4418. * dropped-receive-buffer error count (FCS error)
  4419. * @ack_fail_cnt: Total number packets failed transmit because of no
  4420. * ACK from the remote entity
  4421. * @tx_rate_history:History of last ten transmit rate, in units of 500 kbit/sec
  4422. * @bcn_rssi_history: History of last ten Beacon rssi of the connected Bss
  4423. */
  4424. typedef struct {
  4425. uint32_t vdev_id;
  4426. /* Rest all Only TLV */
  4427. wmi_host_snr_info vdev_snr;
  4428. uint32_t tx_frm_cnt[WMI_HOST_WLAN_MAX_AC];
  4429. uint32_t rx_frm_cnt;
  4430. uint32_t multiple_retry_cnt[WMI_HOST_WLAN_MAX_AC];
  4431. uint32_t fail_cnt[WMI_HOST_WLAN_MAX_AC];
  4432. uint32_t rts_fail_cnt;
  4433. uint32_t rts_succ_cnt;
  4434. uint32_t rx_err_cnt;
  4435. uint32_t rx_discard_cnt;
  4436. uint32_t ack_fail_cnt;
  4437. uint32_t tx_rate_history[WMI_HOST_MAX_TX_RATE_VALUES];
  4438. uint32_t bcn_rssi_history[WMI_HOST_MAX_RSSI_VALUES];
  4439. } wmi_host_vdev_stats;
  4440. /**
  4441. * struct wmi_host_bcn_stats - beacon stats structure
  4442. * @vdev_id: unique id identifying the VDEV, generated by the caller
  4443. * @tx_bcn_succ_cnt: Total number of beacon frame transmitted successfully
  4444. * @tx_bcn_outage_cnt: Total number of failed beacons
  4445. */
  4446. typedef struct {
  4447. uint32_t vdev_id;
  4448. uint32_t tx_bcn_succ_cnt;
  4449. uint32_t tx_bcn_outage_cnt;
  4450. } wmi_host_bcn_stats;
  4451. /**
  4452. * struct wmi_host_vdev_extd_stats - VDEV extended stats
  4453. * @vdev_id: unique id identifying the VDEV, generated by the caller
  4454. * @ppdu_aggr_cnt: No of Aggrs Queued to HW
  4455. * @ppdu_noack: No of PPDU's not Acked includes both aggr and nonaggr's
  4456. * @mpdu_queued: No of MPDU/Subframes's queued to HW in Aggregates
  4457. * @ppdu_nonaggr_cnt: No of NonAggr/MPDU/Subframes's queued to HW
  4458. * in Legacy NonAggregates
  4459. * @mpdu_sw_requed: No of MPDU/Subframes's SW requeued includes
  4460. * both Aggr and NonAggr
  4461. * @mpdu_suc_retry: No of MPDU/Subframes's transmitted Successfully
  4462. * after Single/mul HW retry
  4463. * @mpdu_suc_multitry: No of MPDU/Subframes's transmitted Success
  4464. * after Multiple HW retry
  4465. * @mpdu_fail_retry: No of MPDU/Subframes's failed transmission
  4466. * after Multiple HW retry
  4467. * @reserved: for future extensions set to 0x0
  4468. */
  4469. typedef struct {
  4470. uint32_t vdev_id;
  4471. uint32_t ppdu_aggr_cnt;
  4472. uint32_t ppdu_noack;
  4473. uint32_t mpdu_queued;
  4474. uint32_t ppdu_nonaggr_cnt;
  4475. uint32_t mpdu_sw_requed;
  4476. uint32_t mpdu_suc_retry;
  4477. uint32_t mpdu_suc_multitry;
  4478. uint32_t mpdu_fail_retry;
  4479. uint32_t reserved[13];
  4480. } wmi_host_vdev_extd_stats;
  4481. /**
  4482. * struct wmi_host_vdev_prb_fils_stats - VDEV probe response fils stats
  4483. * @vdev_id: unique id identifying the VDEV, generated by the caller
  4484. * @fd_succ_cnt: Total number of successfully transmitted Fils Discovery frames
  4485. * @fd_fail_cnt: Toatl number of Fils discovery failed count
  4486. * @unsolicited_prb_succ_cnt: Successful unsolicited probe response frames cnt
  4487. * @unsolicited_prb_fail_cnt: Failed unsolictied probe response frames cnt
  4488. * @is_mlo_vdev_active: is the mlo vdev currently active
  4489. * @vdev_tx_power: Tx power for vdev
  4490. */
  4491. struct wmi_host_vdev_prb_fils_stats {
  4492. uint32_t vdev_id;
  4493. uint32_t fd_succ_cnt;
  4494. uint32_t fd_fail_cnt;
  4495. uint32_t unsolicited_prb_succ_cnt;
  4496. uint32_t unsolicited_prb_fail_cnt;
  4497. bool is_mlo_vdev_active;
  4498. uint32_t vdev_tx_power;
  4499. };
  4500. /**
  4501. * struct wmi_host_vdev_nac_rssi_event - VDEV nac rssi stats
  4502. * @vdev_id: unique id identifying the VDEV, generated by the caller
  4503. * @last_rssi: rssi
  4504. * @avg_rssi: averge rssi
  4505. * @rssi_seq_num: rssi sequence number
  4506. */
  4507. struct wmi_host_vdev_nac_rssi_event {
  4508. uint32_t vdev_id;
  4509. uint32_t last_rssi;
  4510. uint32_t avg_rssi;
  4511. uint32_t rssi_seq_num;
  4512. };
  4513. /**
  4514. * struct wmi_host_peer_retry_stats - peer retry stats
  4515. * @peer_macaddr: peer macaddr
  4516. * @retry_counter_wraparnd_ind: wraparound counter indication
  4517. * @msdus_success: successfully transmitted msdus
  4518. * @msdus_retried: Retried msdus
  4519. * @msdus_mul_retried: msdus retried for more than once
  4520. * @msdus_failed: msdus failed
  4521. * @reserved: for future extensions
  4522. */
  4523. struct wmi_host_peer_retry_stats {
  4524. wmi_host_mac_addr peer_macaddr;
  4525. uint32_t retry_counter_wraparnd_ind;
  4526. uint32_t msdus_success;
  4527. uint32_t msdus_retried;
  4528. uint32_t msdus_mul_retried;
  4529. uint32_t msdus_failed;
  4530. uint32_t reserved[4];
  4531. };
  4532. /**
  4533. * struct wmi_host_per_chain_rssi_stats - VDEV nac rssi stats
  4534. * @vdev_id: unique id identifying the VDEV, generated by the caller
  4535. * @rssi_avg_beacon: per chain avg rssi for beacon
  4536. * @rssi_avg_data: per chain avg rssi for data
  4537. * @peer_macaddr: peer macaddr
  4538. */
  4539. struct wmi_host_per_chain_rssi_stats {
  4540. uint32_t vdev_id;
  4541. int32_t rssi_avg_beacon[WMI_HOST_MAX_CHAINS];
  4542. int32_t rssi_avg_data[WMI_HOST_MAX_CHAINS];
  4543. wmi_host_mac_addr peer_macaddr;
  4544. };
  4545. /**
  4546. * struct wmi_host_peer_stats - peer stats
  4547. * @peer_macaddr: peer MAC address
  4548. * @peer_rssi: rssi
  4549. * @peer_rssi_seq_num: rssi sequence number
  4550. * @peer_tx_rate: last tx data rate used for peer
  4551. * @peer_rx_rate: last rx data rate used for peer
  4552. * @currentper: Current PER
  4553. * @retries: Retries happened during transmission
  4554. * @txratecount: Maximum Aggregation Size
  4555. * @max4msframelen: Max4msframelen of tx rates used
  4556. * @totalsubframes: Total no of subframes
  4557. * @txbytes: No of bytes transmitted to the client
  4558. * @nobuffs: Packet Loss due to buffer overflows
  4559. * @excretries: Packet Loss due to excessive retries
  4560. * @peer_rssi_changed: how many times peer's RSSI changed by a
  4561. * non-negligible amount
  4562. */
  4563. typedef struct {
  4564. wmi_host_mac_addr peer_macaddr;
  4565. int8_t peer_rssi;
  4566. uint32_t peer_rssi_seq_num;
  4567. uint32_t peer_tx_rate;
  4568. uint32_t peer_rx_rate;
  4569. uint32_t currentper;
  4570. uint32_t retries;
  4571. uint32_t txratecount;
  4572. uint32_t max4msframelen;
  4573. uint32_t totalsubframes;
  4574. uint32_t txbytes;
  4575. uint32_t nobuffs[4];
  4576. uint32_t excretries[4];
  4577. uint32_t peer_rssi_changed;
  4578. } wmi_host_peer_stats;
  4579. typedef struct {
  4580. uint32_t dummy;
  4581. } wmi_host_bcnflt_stats;
  4582. /**
  4583. * struct wmi_host_chan_stats - WMI chan stats
  4584. * @chan_mhz: Primary channel freq of the channel for which stats are sent
  4585. * @sampling_period_us: Time spent on the channel
  4586. * @rx_clear_count: Aggregate duration over a sampling period for
  4587. * which channel activity was observed
  4588. * @tx_duration_us: Accumalation of the TX PPDU duration over a sampling period
  4589. * @rx_duration_us: Accumalation of the RX PPDU duration over a sampling period
  4590. */
  4591. typedef struct {
  4592. uint32_t chan_mhz;
  4593. uint32_t sampling_period_us;
  4594. uint32_t rx_clear_count;
  4595. uint32_t tx_duration_us;
  4596. uint32_t rx_duration_us;
  4597. } wmi_host_chan_stats;
  4598. #ifdef FEATURE_WLAN_TIME_SYNC_FTM
  4599. #define FTM_TIME_SYNC_QTIME_PAIR_MAX 32
  4600. /**
  4601. * struct ftm_time_sync_start_stop_params - Get wlan time sync ftm info
  4602. * @vdev_id: vdev id
  4603. * @timer_interval: periodicity to trigger wlan time sync strobe
  4604. * @num_reads: Number of times to trigger wlabn time sync strobe
  4605. * @qtime: ref Qtimer value
  4606. * @mac_time: ref Mac timer value
  4607. */
  4608. struct ftm_time_sync_start_stop_params {
  4609. uint32_t vdev_id;
  4610. uint32_t timer_interval;
  4611. uint32_t num_reads;
  4612. uint64_t qtime;
  4613. uint64_t mac_time;
  4614. };
  4615. /**
  4616. * struct wlan_time_sync_qtime_pair- Get wlan time sync qtime pair value
  4617. * @vdev_id: vdev id
  4618. * @qtime_initiator: qtimer value of initiator
  4619. * @qtime_target: qtimer value of target
  4620. */
  4621. struct wlan_time_sync_qtime_pair {
  4622. uint64_t qtime_initiator;
  4623. uint64_t qtime_target;
  4624. };
  4625. /**
  4626. * struct ftm_time_sync_offset- Get ftm time sync offset
  4627. * @vdev_id: vdev id
  4628. * @num_qtime: number of qtime values received
  4629. * @pairs: array of qtime pairs
  4630. */
  4631. struct ftm_time_sync_offset {
  4632. uint32_t vdev_id;
  4633. uint32_t num_qtime;
  4634. struct wlan_time_sync_qtime_pair pairs[FTM_TIME_SYNC_QTIME_PAIR_MAX];
  4635. };
  4636. #endif
  4637. /**
  4638. * struct wmi_host_tsf_event - Get tsf event info
  4639. * @vdev_id: vdev id
  4640. * @tsf: tsf
  4641. * @tsf_low: low 32bit of tsf
  4642. * @tsf_high: high 32 bit of tsf
  4643. * @qtimer_low: low 32 bits of qtimer
  4644. * @qtimer_high: high 32 bits of qtimer
  4645. * @tsf_id: TSF ID for the current vdev
  4646. * @tsf_id_valid: is TSF valid
  4647. * @mac_id: MAC identifier
  4648. * @mac_id_valid: is MAC id valid
  4649. * @wlan_global_tsf_low: low 32 bits of wlan global tsf
  4650. * @wlan_global_tsf_high: high 32 bits of wlan global tsf
  4651. * @tqm_timer_low:
  4652. * @tqm_timer_high:
  4653. * @use_tqm_timer:
  4654. */
  4655. struct wmi_host_tsf_event {
  4656. uint32_t vdev_id;
  4657. uint64_t tsf;
  4658. uint32_t tsf_low;
  4659. uint32_t tsf_high;
  4660. uint32_t qtimer_low;
  4661. uint32_t qtimer_high;
  4662. uint32_t tsf_id;
  4663. uint32_t tsf_id_valid;
  4664. uint32_t mac_id;
  4665. uint32_t mac_id_valid;
  4666. uint32_t wlan_global_tsf_low;
  4667. uint32_t wlan_global_tsf_high;
  4668. uint32_t tqm_timer_low;
  4669. uint32_t tqm_timer_high;
  4670. uint32_t use_tqm_timer;
  4671. };
  4672. /**
  4673. * struct wmi_host_pdev_telemetry_stats - pdev telemetry stats
  4674. * @avg_chan_lat_per_ac: average channel latency
  4675. * @estimated_air_time_per_ac: Percentage of air time available for each AC
  4676. * BIT[0-7] : AC_BE
  4677. * BIT[8-15] : AC_BK
  4678. * BIT[16-23] : AC_VI
  4679. * BIT[24-31] : AC_VO
  4680. */
  4681. struct wmi_host_pdev_telemetry_stats {
  4682. uint32_t avg_chan_lat_per_ac[WIFI_AC_MAX];
  4683. uint32_t estimated_air_time_per_ac;
  4684. };
  4685. #define WMI_EVENT_ID_INVALID 0
  4686. /*
  4687. * Host based ENUM IDs for events to abstract target enums for event_id
  4688. */
  4689. typedef enum {
  4690. wmi_service_ready_event_id = 0,
  4691. wmi_ready_event_id,
  4692. wmi_dbg_msg_event_id,
  4693. wmi_scan_event_id,
  4694. wmi_echo_event_id,
  4695. wmi_update_stats_event_id,
  4696. wmi_inst_rssi_stats_event_id,
  4697. wmi_vdev_start_resp_event_id,
  4698. wmi_vdev_standby_req_event_id,
  4699. wmi_vdev_resume_req_event_id,
  4700. wmi_vdev_stopped_event_id,
  4701. wmi_peer_sta_kickout_event_id,
  4702. wmi_host_swba_event_id,
  4703. wmi_tbttoffset_update_event_id,
  4704. wmi_mgmt_rx_event_id,
  4705. wmi_chan_info_event_id,
  4706. wmi_phyerr_event_id,
  4707. wmi_roam_event_id,
  4708. wmi_profile_match,
  4709. wmi_debug_print_event_id,
  4710. wmi_pdev_qvit_event_id,
  4711. wmi_wlan_profile_data_event_id,
  4712. wmi_rtt_meas_report_event_id,
  4713. wmi_tsf_meas_report_event_id,
  4714. wmi_rtt_error_report_event_id,
  4715. wmi_rtt_keepalive_event_id,
  4716. wmi_oem_cap_event_id,
  4717. wmi_oem_meas_report_event_id,
  4718. wmi_oem_report_event_id,
  4719. wmi_nan_event_id,
  4720. wmi_wow_wakeup_host_event_id,
  4721. wmi_gtk_offload_status_event_id,
  4722. wmi_gtk_rekey_fail_event_id,
  4723. wmi_dcs_interference_event_id,
  4724. wmi_pdev_tpc_config_event_id,
  4725. wmi_csa_handling_event_id,
  4726. wmi_gpio_input_event_id,
  4727. wmi_peer_ratecode_list_event_id,
  4728. wmi_generic_buffer_event_id,
  4729. wmi_mcast_buf_release_event_id,
  4730. wmi_mcast_list_ageout_event_id,
  4731. wmi_vdev_get_keepalive_event_id,
  4732. wmi_wds_peer_event_id,
  4733. wmi_peer_sta_ps_statechg_event_id,
  4734. wmi_pdev_fips_event_id,
  4735. wmi_tt_stats_event_id,
  4736. wmi_pdev_channel_hopping_event_id,
  4737. wmi_pdev_ani_cck_level_event_id,
  4738. wmi_pdev_ani_ofdm_level_event_id,
  4739. wmi_pdev_reserve_ast_entry_event_id,
  4740. wmi_pdev_nfcal_power_event_id,
  4741. wmi_pdev_tpc_event_id,
  4742. wmi_pdev_get_ast_info_event_id,
  4743. wmi_pdev_temperature_event_id,
  4744. wmi_pdev_nfcal_power_all_channels_event_id,
  4745. wmi_pdev_bss_chan_info_event_id,
  4746. wmi_mu_report_event_id,
  4747. wmi_pdev_utf_event_id,
  4748. wmi_pdev_dump_event_id,
  4749. wmi_tx_pause_event_id,
  4750. wmi_dfs_radar_event_id,
  4751. wmi_pdev_l1ss_track_event_id,
  4752. wmi_service_ready_ext_event_id,
  4753. wmi_vdev_install_key_complete_event_id,
  4754. wmi_vdev_mcc_bcn_intvl_change_req_event_id,
  4755. wmi_vdev_tsf_report_event_id,
  4756. wmi_peer_info_event_id,
  4757. wmi_peer_tx_fail_cnt_thr_event_id,
  4758. wmi_peer_estimated_linkspeed_event_id,
  4759. wmi_peer_state_event_id,
  4760. wmi_offload_bcn_tx_status_event_id,
  4761. wmi_offload_prob_resp_tx_status_event_id,
  4762. wmi_mgmt_tx_completion_event_id,
  4763. wmi_tx_delba_complete_event_id,
  4764. wmi_tx_addba_complete_event_id,
  4765. wmi_ba_rsp_ssn_event_id,
  4766. wmi_aggr_state_trig_event_id,
  4767. wmi_roam_synch_event_id,
  4768. wmi_roam_synch_frame_event_id,
  4769. wmi_p2p_disc_event_id,
  4770. wmi_p2p_noa_event_id,
  4771. wmi_p2p_lo_stop_event_id,
  4772. wmi_vdev_add_macaddr_rx_filter_event_id,
  4773. wmi_pdev_resume_event_id,
  4774. wmi_d0_wow_disable_ack_event_id,
  4775. wmi_wow_initial_wakeup_event_id,
  4776. wmi_stats_ext_event_id,
  4777. wmi_iface_link_stats_event_id,
  4778. wmi_peer_link_stats_event_id,
  4779. wmi_radio_link_stats_link,
  4780. wmi_update_fw_mem_dump_event_id,
  4781. wmi_diag_event_id_log_supported_event_id,
  4782. wmi_nlo_match_event_id,
  4783. wmi_nlo_scan_complete_event_id,
  4784. wmi_apfind_event_id,
  4785. wmi_passpoint_match_event_id,
  4786. wmi_chatter_pc_query_event_id,
  4787. wmi_pdev_ftm_intg_event_id,
  4788. wmi_wlan_freq_avoid_event_id,
  4789. wmi_thermal_mgmt_event_id,
  4790. wmi_diag_container_event_id,
  4791. wmi_host_auto_shutdown_event_id,
  4792. wmi_update_whal_mib_stats_event_id,
  4793. wmi_update_vdev_rate_stats_event_id,
  4794. wmi_diag_event_id,
  4795. wmi_unit_test_event_id,
  4796. wmi_ocb_set_sched_event_id,
  4797. wmi_dbg_mesg_flush_complete_event_id,
  4798. wmi_rssi_breach_event_id,
  4799. wmi_uploadh_event_id,
  4800. wmi_captureh_event_id,
  4801. wmi_rfkill_state_change_event_id,
  4802. wmi_tdls_peer_event_id,
  4803. wmi_batch_scan_enabled_event_id,
  4804. wmi_batch_scan_result_event_id,
  4805. wmi_lpi_result_event_id,
  4806. wmi_lpi_status_event_id,
  4807. wmi_lpi_handoff_event_id,
  4808. wmi_extscan_start_stop_event_id,
  4809. wmi_extscan_operation_event_id,
  4810. wmi_extscan_table_usage_event_id,
  4811. wmi_extscan_cached_results_event_id,
  4812. wmi_extscan_wlan_change_results_event_id,
  4813. wmi_extscan_hotlist_match_event_id,
  4814. wmi_extscan_capabilities_event_id,
  4815. wmi_extscan_hotlist_ssid_match_event_id,
  4816. wmi_mdns_stats_event_id,
  4817. wmi_sap_ofl_add_sta_event_id,
  4818. wmi_sap_ofl_del_sta_event_id,
  4819. wmi_ocb_set_config_resp_event_id,
  4820. wmi_ocb_get_tsf_timer_resp_event_id,
  4821. wmi_dcc_get_stats_resp_event_id,
  4822. wmi_dcc_update_ndl_resp_event_id,
  4823. wmi_dcc_stats_event_id,
  4824. wmi_soc_set_hw_mode_resp_event_id,
  4825. wmi_soc_hw_mode_transition_event_id,
  4826. wmi_soc_set_dual_mac_config_resp_event_id,
  4827. wmi_tx_data_traffic_ctrl_event_id,
  4828. wmi_peer_tx_mu_txmit_count_event_id,
  4829. wmi_peer_gid_userpos_list_event_id,
  4830. wmi_pdev_check_cal_version_event_id,
  4831. wmi_atf_peer_stats_event_id,
  4832. wmi_peer_delete_response_event_id,
  4833. wmi_peer_delete_all_response_event_id,
  4834. wmi_pdev_csa_switch_count_status_event_id,
  4835. wmi_reg_chan_list_cc_event_id,
  4836. wmi_reg_chan_list_cc_ext_event_id,
  4837. #ifdef CONFIG_AFC_SUPPORT
  4838. wmi_afc_event_id,
  4839. #endif
  4840. wmi_offchan_data_tx_completion_event,
  4841. wmi_dfs_cac_complete_id,
  4842. wmi_dfs_radar_detection_event_id,
  4843. wmi_ext_tbttoffset_update_event_id,
  4844. wmi_11d_new_country_event_id,
  4845. wmi_get_arp_stats_req_id,
  4846. wmi_service_available_event_id,
  4847. wmi_update_rcpi_event_id,
  4848. wmi_pdev_wds_entry_list_event_id,
  4849. wmi_ndp_initiator_rsp_event_id,
  4850. wmi_ndp_indication_event_id,
  4851. wmi_ndp_confirm_event_id,
  4852. wmi_ndp_responder_rsp_event_id,
  4853. wmi_ndp_end_indication_event_id,
  4854. wmi_ndp_end_rsp_event_id,
  4855. wmi_nan_dmesg_event_id,
  4856. wmi_ndl_schedule_update_event_id,
  4857. wmi_ndp_event_id,
  4858. wmi_oem_response_event_id,
  4859. wmi_peer_stats_info_event_id,
  4860. wmi_pdev_chip_power_stats_event_id,
  4861. wmi_ap_ps_egap_info_event_id,
  4862. wmi_peer_assoc_conf_event_id,
  4863. wmi_vdev_delete_resp_event_id,
  4864. wmi_apf_capability_info_event_id,
  4865. wmi_vdev_encrypt_decrypt_data_rsp_event_id,
  4866. wmi_report_rx_aggr_failure_event_id,
  4867. wmi_pdev_chip_pwr_save_failure_detect_event_id,
  4868. wmi_peer_antdiv_info_event_id,
  4869. wmi_pdev_set_hw_mode_rsp_event_id,
  4870. wmi_pdev_hw_mode_transition_event_id,
  4871. wmi_pdev_set_mac_config_resp_event_id,
  4872. wmi_coex_bt_activity_event_id,
  4873. wmi_mgmt_tx_bundle_completion_event_id,
  4874. wmi_radio_tx_power_level_stats_event_id,
  4875. wmi_report_stats_event_id,
  4876. wmi_dma_buf_release_event_id,
  4877. wmi_sap_obss_detection_report_event_id,
  4878. wmi_obss_color_collision_report_event_id,
  4879. wmi_host_swfda_event_id,
  4880. wmi_sar_get_limits_event_id,
  4881. wmi_pdev_div_rssi_antid_event_id,
  4882. #if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
  4883. wmi_host_dfs_status_check_event_id,
  4884. #endif
  4885. #ifdef WLAN_SUPPORT_TWT
  4886. wmi_twt_enable_complete_event_id,
  4887. wmi_twt_disable_complete_event_id,
  4888. wmi_twt_add_dialog_complete_event_id,
  4889. wmi_twt_del_dialog_complete_event_id,
  4890. wmi_twt_pause_dialog_complete_event_id,
  4891. wmi_twt_resume_dialog_complete_event_id,
  4892. wmi_twt_nudge_dialog_complete_event_id,
  4893. wmi_twt_session_stats_event_id,
  4894. wmi_twt_notify_event_id,
  4895. wmi_twt_ack_complete_event_id,
  4896. #endif
  4897. wmi_apf_get_vdev_work_memory_resp_event_id,
  4898. wmi_roam_scan_stats_event_id,
  4899. wmi_vdev_ocac_complete_event_id,
  4900. #ifdef OL_ATH_SMART_LOGGING
  4901. wmi_debug_fatal_condition_eventid,
  4902. #endif /* OL_ATH_SMART_LOGGING */
  4903. wmi_wlan_sar2_result_event_id,
  4904. wmi_esp_estimate_event_id,
  4905. wmi_pdev_ctl_failsafe_check_event_id,
  4906. wmi_vdev_bcn_reception_stats_event_id,
  4907. wmi_roam_denylist_event_id,
  4908. wmi_wlm_stats_event_id,
  4909. wmi_peer_cfr_capture_event_id,
  4910. wmi_pdev_cold_boot_cal_event_id,
  4911. wmi_vdev_get_mws_coex_state_eventid,
  4912. wmi_vdev_get_mws_coex_dpwb_state_eventid,
  4913. wmi_vdev_get_mws_coex_tdm_state_eventid,
  4914. wmi_vdev_get_mws_coex_idrx_state_eventid,
  4915. wmi_vdev_get_mws_coex_antenna_sharing_state_eventid,
  4916. #ifdef WLAN_FEATURE_INTEROP_ISSUES_AP
  4917. wmi_pdev_interop_issues_ap_event_id,
  4918. #endif
  4919. wmi_coex_report_antenna_isolation_event_id,
  4920. wmi_chan_rf_characterization_info_event_id,
  4921. wmi_roam_auth_offload_event_id,
  4922. wmi_service_ready_ext2_event_id,
  4923. wmi_get_elna_bypass_event_id,
  4924. wmi_motion_det_host_eventid,
  4925. wmi_motion_det_base_line_host_eventid,
  4926. wmi_get_ani_level_event_id,
  4927. wmi_peer_tx_pn_response_event_id,
  4928. wmi_roam_stats_event_id,
  4929. wmi_oem_data_event_id,
  4930. wmi_mgmt_offload_data_event_id,
  4931. wmi_pdev_multi_vdev_restart_response_event_id,
  4932. wmi_roam_pmkid_request_event_id,
  4933. #ifdef FEATURE_WLAN_TIME_SYNC_FTM
  4934. wmi_wlan_time_sync_ftm_start_stop_event_id,
  4935. wmi_wlan_time_sync_q_initiator_target_offset_eventid,
  4936. #endif
  4937. wmi_roam_scan_chan_list_id,
  4938. wmi_muedca_params_config_eventid,
  4939. wmi_pdev_sscan_fw_param_eventid,
  4940. wmi_roam_cap_report_event_id,
  4941. wmi_vdev_bcn_latency_event_id,
  4942. wmi_vdev_disconnect_event_id,
  4943. wmi_peer_create_conf_event_id,
  4944. wmi_pdev_cp_fwstats_eventid,
  4945. wmi_pdev_halphy_fwstats_eventid,
  4946. wmi_vdev_send_big_data_p2_eventid,
  4947. wmi_pdev_get_dpd_status_event_id,
  4948. #ifdef WLAN_FEATURE_PKT_CAPTURE_V2
  4949. wmi_vdev_smart_monitor_event_id,
  4950. #endif
  4951. wmi_pdev_get_halphy_cal_status_event_id,
  4952. wmi_pdev_set_halphy_cal_event_id,
  4953. wmi_pdev_aoa_phasedelta_event_id,
  4954. #ifdef WLAN_MGMT_RX_REO_SUPPORT
  4955. wmi_mgmt_rx_fw_consumed_eventid,
  4956. #endif
  4957. #ifdef WLAN_FEATURE_11BE_MLO
  4958. wmi_mlo_setup_complete_event_id,
  4959. wmi_mlo_teardown_complete_event_id,
  4960. wmi_mlo_link_set_active_resp_eventid,
  4961. wmi_mlo_link_removal_eventid,
  4962. wmi_mlo_link_disable_request_eventid,
  4963. #ifdef WLAN_FEATURE_11BE_MLO_ADV_FEATURE
  4964. wmi_mlo_link_switch_request_eventid,
  4965. #endif
  4966. #endif
  4967. wmi_pdev_fips_extend_event_id,
  4968. wmi_roam_frame_event_id,
  4969. #ifdef WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE
  4970. wmi_vdev_update_mac_addr_conf_eventid,
  4971. #endif
  4972. #ifdef WLAN_FEATURE_11BE_MLO
  4973. wmi_vdev_quiet_offload_eventid,
  4974. #endif
  4975. #ifdef WLAN_FEATURE_MCC_QUOTA
  4976. wmi_resmgr_chan_time_quota_changed_eventid,
  4977. #endif
  4978. wmi_peer_rx_pn_response_event_id,
  4979. wmi_extract_pktlog_decode_info_eventid,
  4980. #ifdef QCA_RSSI_DB2DBM
  4981. wmi_pdev_rssi_dbm_conversion_params_info_eventid,
  4982. #endif
  4983. #ifdef MULTI_CLIENT_LL_SUPPORT
  4984. wmi_vdev_latency_event_id,
  4985. #endif
  4986. #if defined(WIFI_POS_CONVERGED) && defined(WLAN_FEATURE_RTT_11AZ_SUPPORT)
  4987. wmi_rtt_pasn_peer_create_req_eventid,
  4988. wmi_rtt_pasn_peer_delete_eventid,
  4989. #endif
  4990. #ifdef WLAN_VENDOR_HANDOFF_CONTROL
  4991. wmi_get_roam_vendor_control_param_event_id,
  4992. #endif
  4993. #ifdef WLAN_FEATURE_DBAM_CONFIG
  4994. wmi_coex_dbam_complete_event_id,
  4995. #endif
  4996. wmi_spectral_capabilities_eventid,
  4997. #ifdef WLAN_FEATURE_COAP
  4998. wmi_wow_coap_buf_info_eventid,
  4999. #endif
  5000. #ifdef HEALTH_MON_SUPPORT
  5001. wmi_extract_health_mon_init_done_info_eventid,
  5002. #endif /* HEALTH_MON_SUPPORT */
  5003. #ifdef WLAN_FEATURE_11BE_MLO
  5004. wmi_mlo_ap_vdev_tid_to_link_map_eventid,
  5005. #endif
  5006. #ifdef WLAN_SUPPORT_GAP_LL_PS_MODE
  5007. wmi_xgap_enable_complete_eventid,
  5008. #endif
  5009. wmi_pdev_set_tgtr2p_table_eventid,
  5010. #ifdef QCA_MANUAL_TRIGGERED_ULOFDMA
  5011. wmi_manual_ul_ofdma_trig_feedback_eventid,
  5012. wmi_manual_ul_ofdma_trig_rx_peer_userinfo_eventid,
  5013. #endif
  5014. #ifdef QCA_STANDALONE_SOUNDING_TRIGGER
  5015. wmi_vdev_standalone_sound_complete_eventid,
  5016. #endif
  5017. wmi_csa_ie_received_event_id,
  5018. #ifdef WLAN_FEATURE_11BE_MLO
  5019. wmi_mlo_link_state_info_eventid,
  5020. #endif
  5021. #if defined(WLAN_FEATURE_ROAM_OFFLOAD) && defined(WLAN_FEATURE_11BE_MLO)
  5022. wmi_roam_synch_key_event_id,
  5023. #endif
  5024. #ifdef QCA_SUPPORT_PRIMARY_LINK_MIGRATE
  5025. wmi_peer_ptqm_migration_response_eventid,
  5026. #endif
  5027. wmi_pdev_set_rf_path_resp_eventid,
  5028. #ifdef WLAN_RCC_ENHANCED_AOA_SUPPORT
  5029. wmi_pdev_enhanced_aoa_phasedelta_eventid,
  5030. #endif
  5031. wmi_events_max,
  5032. } wmi_conv_event_id;
  5033. #define WMI_UNAVAILABLE_PARAM 0
  5034. #ifdef ENABLE_HOST_TO_TARGET_CONVERSION
  5035. #define PDEV_PARAM(host_param, target_param) wmi_ ## host_param
  5036. #else
  5037. #define PDEV_PARAM(host_param, target_param) wmi_ ## host_param = WMI_ ## target_param
  5038. #endif
  5039. /* Host based ENUM IDs for PDEV params to abstract target enums */
  5040. typedef enum {
  5041. PDEV_PARAM(pdev_param_rx_chain_mask, PDEV_PARAM_RX_CHAIN_MASK),
  5042. PDEV_PARAM(pdev_param_txpower_limit2g, PDEV_PARAM_TXPOWER_LIMIT2G),
  5043. PDEV_PARAM(pdev_param_txpower_limit5g, PDEV_PARAM_TXPOWER_LIMIT5G),
  5044. PDEV_PARAM(pdev_param_txpower_scale, PDEV_PARAM_TXPOWER_SCALE),
  5045. PDEV_PARAM(pdev_param_beacon_gen_mode, PDEV_PARAM_BEACON_GEN_MODE),
  5046. PDEV_PARAM(pdev_param_beacon_tx_mode, PDEV_PARAM_BEACON_TX_MODE),
  5047. PDEV_PARAM(pdev_param_resmgr_offchan_mode,
  5048. PDEV_PARAM_RESMGR_OFFCHAN_MODE),
  5049. PDEV_PARAM(pdev_param_protection_mode, PDEV_PARAM_PROTECTION_MODE),
  5050. PDEV_PARAM(pdev_param_dynamic_bw, PDEV_PARAM_DYNAMIC_BW),
  5051. PDEV_PARAM(pdev_param_non_agg_sw_retry_th,
  5052. PDEV_PARAM_NON_AGG_SW_RETRY_TH),
  5053. PDEV_PARAM(pdev_param_agg_sw_retry_th, PDEV_PARAM_AGG_SW_RETRY_TH),
  5054. PDEV_PARAM(pdev_param_sta_kickout_th, PDEV_PARAM_STA_KICKOUT_TH),
  5055. PDEV_PARAM(pdev_param_ac_aggrsize_scaling,
  5056. PDEV_PARAM_AC_AGGRSIZE_SCALING),
  5057. PDEV_PARAM(pdev_param_ltr_enable, PDEV_PARAM_LTR_ENABLE),
  5058. PDEV_PARAM(pdev_param_ltr_ac_latency_be, PDEV_PARAM_LTR_AC_LATENCY_BE),
  5059. PDEV_PARAM(pdev_param_ltr_ac_latency_bk, PDEV_PARAM_LTR_AC_LATENCY_BK),
  5060. PDEV_PARAM(pdev_param_tx_chain_mask, PDEV_PARAM_TX_CHAIN_MASK),
  5061. PDEV_PARAM(pdev_param_ltr_ac_latency_vi, PDEV_PARAM_LTR_AC_LATENCY_VI),
  5062. PDEV_PARAM(pdev_param_ltr_ac_latency_vo, PDEV_PARAM_LTR_AC_LATENCY_VO),
  5063. PDEV_PARAM(pdev_param_ltr_ac_latency_timeout,
  5064. PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT),
  5065. PDEV_PARAM(pdev_param_ltr_sleep_override,
  5066. PDEV_PARAM_LTR_SLEEP_OVERRIDE),
  5067. PDEV_PARAM(pdev_param_ltr_rx_override, PDEV_PARAM_LTR_RX_OVERRIDE),
  5068. PDEV_PARAM(pdev_param_ltr_tx_activity_timeout,
  5069. PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT),
  5070. PDEV_PARAM(pdev_param_l1ss_enable, PDEV_PARAM_L1SS_ENABLE),
  5071. PDEV_PARAM(pdev_param_dsleep_enable, PDEV_PARAM_DSLEEP_ENABLE),
  5072. PDEV_PARAM(pdev_param_pcielp_txbuf_flush,
  5073. PDEV_PARAM_PCIELP_TXBUF_FLUSH),
  5074. PDEV_PARAM(pdev_param_pcielp_txbuf_watermark,
  5075. PDEV_PARAM_PCIELP_TXBUF_WATERMARK),
  5076. PDEV_PARAM(pdev_param_pcielp_txbuf_tmo_en,
  5077. PDEV_PARAM_PCIELP_TXBUF_TMO_EN),
  5078. PDEV_PARAM(pdev_param_pcielp_txbuf_tmo_value,
  5079. PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE),
  5080. PDEV_PARAM(pdev_param_pdev_stats_update_period,
  5081. PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD),
  5082. PDEV_PARAM(pdev_param_vdev_stats_update_period,
  5083. PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD),
  5084. PDEV_PARAM(pdev_param_peer_stats_update_period,
  5085. PDEV_PARAM_PEER_STATS_UPDATE_PERIOD),
  5086. PDEV_PARAM(pdev_param_bcnflt_stats_update_period,
  5087. PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD),
  5088. PDEV_PARAM(pdev_param_pmf_qos, PDEV_PARAM_PMF_QOS),
  5089. PDEV_PARAM(pdev_param_arp_ac_override, PDEV_PARAM_ARP_AC_OVERRIDE),
  5090. PDEV_PARAM(pdev_param_dcs, PDEV_PARAM_DCS),
  5091. PDEV_PARAM(pdev_param_ani_enable, PDEV_PARAM_ANI_ENABLE),
  5092. PDEV_PARAM(pdev_param_ani_poll_period, PDEV_PARAM_ANI_POLL_PERIOD),
  5093. PDEV_PARAM(pdev_param_ani_listen_period, PDEV_PARAM_ANI_LISTEN_PERIOD),
  5094. PDEV_PARAM(pdev_param_ani_ofdm_level, PDEV_PARAM_ANI_OFDM_LEVEL),
  5095. PDEV_PARAM(pdev_param_ani_cck_level, PDEV_PARAM_ANI_CCK_LEVEL),
  5096. PDEV_PARAM(pdev_param_dyntxchain, PDEV_PARAM_DYNTXCHAIN),
  5097. PDEV_PARAM(pdev_param_proxy_sta, PDEV_PARAM_PROXY_STA),
  5098. PDEV_PARAM(pdev_param_idle_ps_config, PDEV_PARAM_IDLE_PS_CONFIG),
  5099. PDEV_PARAM(pdev_param_power_gating_sleep,
  5100. PDEV_PARAM_POWER_GATING_SLEEP),
  5101. PDEV_PARAM(pdev_param_rfkill_enable, PDEV_PARAM_RFKILL_ENABLE),
  5102. PDEV_PARAM(pdev_param_burst_dur, PDEV_PARAM_BURST_DUR),
  5103. PDEV_PARAM(pdev_param_burst_enable, PDEV_PARAM_BURST_ENABLE),
  5104. PDEV_PARAM(pdev_param_hw_rfkill_config, PDEV_PARAM_HW_RFKILL_CONFIG),
  5105. PDEV_PARAM(pdev_param_low_power_rf_enable,
  5106. PDEV_PARAM_LOW_POWER_RF_ENABLE),
  5107. PDEV_PARAM(pdev_param_l1ss_track, PDEV_PARAM_L1SS_TRACK),
  5108. PDEV_PARAM(pdev_param_hyst_en, PDEV_PARAM_HYST_EN),
  5109. PDEV_PARAM(pdev_param_power_collapse_enable,
  5110. PDEV_PARAM_POWER_COLLAPSE_ENABLE),
  5111. PDEV_PARAM(pdev_param_led_sys_state, PDEV_PARAM_LED_SYS_STATE),
  5112. PDEV_PARAM(pdev_param_led_enable, PDEV_PARAM_LED_ENABLE),
  5113. PDEV_PARAM(pdev_param_audio_over_wlan_latency,
  5114. PDEV_PARAM_AUDIO_OVER_WLAN_LATENCY),
  5115. PDEV_PARAM(pdev_param_audio_over_wlan_enable,
  5116. PDEV_PARAM_AUDIO_OVER_WLAN_ENABLE),
  5117. PDEV_PARAM(pdev_param_whal_mib_stats_update_enable,
  5118. PDEV_PARAM_WHAL_MIB_STATS_UPDATE_ENABLE),
  5119. PDEV_PARAM(pdev_param_vdev_rate_stats_update_period,
  5120. PDEV_PARAM_VDEV_RATE_STATS_UPDATE_PERIOD),
  5121. PDEV_PARAM(pdev_param_cts_cbw, PDEV_PARAM_CTS_CBW),
  5122. PDEV_PARAM(pdev_param_wnts_config, PDEV_PARAM_WNTS_CONFIG),
  5123. PDEV_PARAM(pdev_param_adaptive_early_rx_enable,
  5124. PDEV_PARAM_ADAPTIVE_EARLY_RX_ENABLE),
  5125. PDEV_PARAM(pdev_param_adaptive_early_rx_min_sleep_slop,
  5126. PDEV_PARAM_ADAPTIVE_EARLY_RX_MIN_SLEEP_SLOP),
  5127. PDEV_PARAM(pdev_param_adaptive_early_rx_inc_dec_step,
  5128. PDEV_PARAM_ADAPTIVE_EARLY_RX_INC_DEC_STEP),
  5129. PDEV_PARAM(pdev_param_early_rx_fix_sleep_slop,
  5130. PDEV_PARAM_EARLY_RX_FIX_SLEEP_SLOP),
  5131. PDEV_PARAM(pdev_param_bmiss_based_adaptive_bto_enable,
  5132. PDEV_PARAM_BMISS_BASED_ADAPTIVE_BTO_ENABLE),
  5133. PDEV_PARAM(pdev_param_bmiss_bto_min_bcn_timeout,
  5134. PDEV_PARAM_BMISS_BTO_MIN_BCN_TIMEOUT),
  5135. PDEV_PARAM(pdev_param_bmiss_bto_inc_dec_step,
  5136. PDEV_PARAM_BMISS_BTO_INC_DEC_STEP),
  5137. PDEV_PARAM(pdev_param_bto_fix_bcn_timeout,
  5138. PDEV_PARAM_BTO_FIX_BCN_TIMEOUT),
  5139. PDEV_PARAM(pdev_param_ce_based_adaptive_bto_enable,
  5140. PDEV_PARAM_CE_BASED_ADAPTIVE_BTO_ENABLE),
  5141. PDEV_PARAM(pdev_param_ce_bto_combo_ce_value,
  5142. PDEV_PARAM_CE_BTO_COMBO_CE_VALUE),
  5143. PDEV_PARAM(pdev_param_tx_chain_mask_2g, PDEV_PARAM_TX_CHAIN_MASK_2G),
  5144. PDEV_PARAM(pdev_param_rx_chain_mask_2g, PDEV_PARAM_RX_CHAIN_MASK_2G),
  5145. PDEV_PARAM(pdev_param_tx_chain_mask_5g, PDEV_PARAM_TX_CHAIN_MASK_5G),
  5146. PDEV_PARAM(pdev_param_rx_chain_mask_5g, PDEV_PARAM_RX_CHAIN_MASK_5G),
  5147. PDEV_PARAM(pdev_param_tx_chain_mask_cck, PDEV_PARAM_TX_CHAIN_MASK_CCK),
  5148. PDEV_PARAM(pdev_param_tx_chain_mask_1ss, PDEV_PARAM_TX_CHAIN_MASK_1SS),
  5149. PDEV_PARAM(pdev_param_cts2self_for_p2p_go_config,
  5150. PDEV_PARAM_CTS2SELF_FOR_P2P_GO_CONFIG),
  5151. PDEV_PARAM(pdev_param_txpower_decr_db, PDEV_PARAM_TXPOWER_DECR_DB),
  5152. PDEV_PARAM(pdev_param_aggr_burst, PDEV_PARAM_AGGR_BURST),
  5153. PDEV_PARAM(pdev_param_rx_decap_mode, PDEV_PARAM_RX_DECAP_MODE),
  5154. PDEV_PARAM(pdev_param_fast_channel_reset,
  5155. PDEV_PARAM_FAST_CHANNEL_RESET),
  5156. PDEV_PARAM(pdev_param_smart_antenna_default_antenna,
  5157. PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA),
  5158. PDEV_PARAM(pdev_param_antenna_gain, PDEV_PARAM_ANTENNA_GAIN),
  5159. PDEV_PARAM(pdev_param_rx_filter, PDEV_PARAM_RX_FILTER),
  5160. PDEV_PARAM(pdev_set_mcast_to_ucast_tid, PDEV_SET_MCAST_TO_UCAST_TID),
  5161. PDEV_PARAM(pdev_param_proxy_sta_mode, PDEV_PARAM_PROXY_STA_MODE),
  5162. PDEV_PARAM(pdev_param_set_mcast2ucast_mode,
  5163. PDEV_PARAM_SET_MCAST2UCAST_MODE),
  5164. PDEV_PARAM(pdev_param_set_mcast2ucast_buffer,
  5165. PDEV_PARAM_SET_MCAST2UCAST_BUFFER),
  5166. PDEV_PARAM(pdev_param_remove_mcast2ucast_buffer,
  5167. PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER),
  5168. PDEV_PARAM(pdev_peer_sta_ps_statechg_enable,
  5169. PDEV_PEER_STA_PS_STATECHG_ENABLE),
  5170. PDEV_PARAM(pdev_param_igmpmld_override, PDEV_PARAM_IGMPMLD_AC_OVERRIDE),
  5171. PDEV_PARAM(pdev_param_block_interbss, PDEV_PARAM_BLOCK_INTERBSS),
  5172. PDEV_PARAM(pdev_param_set_disable_reset_cmdid,
  5173. PDEV_PARAM_SET_DISABLE_RESET_CMDID),
  5174. PDEV_PARAM(pdev_param_set_msdu_ttl_cmdid,
  5175. PDEV_PARAM_SET_MSDU_TTL_CMDID),
  5176. PDEV_PARAM(pdev_param_set_ppdu_duration_cmdid,
  5177. PDEV_PARAM_SET_PPDU_DURATION_CMDID),
  5178. PDEV_PARAM(pdev_param_txbf_sound_period_cmdid,
  5179. PDEV_PARAM_TXBF_SOUND_PERIOD_CMDID),
  5180. PDEV_PARAM(pdev_param_set_promisc_mode_cmdid,
  5181. PDEV_PARAM_SET_PROMISC_MODE_CMDID),
  5182. PDEV_PARAM(pdev_param_set_burst_mode_cmdid,
  5183. PDEV_PARAM_SET_BURST_MODE_CMDID),
  5184. PDEV_PARAM(pdev_param_en_stats, PDEV_PARAM_EN_STATS),
  5185. PDEV_PARAM(pdev_param_mu_group_policy, PDEV_PARAM_MU_GROUP_POLICY),
  5186. PDEV_PARAM(pdev_param_noise_detection, PDEV_PARAM_NOISE_DETECTION),
  5187. PDEV_PARAM(pdev_param_noise_threshold, PDEV_PARAM_NOISE_THRESHOLD),
  5188. PDEV_PARAM(pdev_param_dpd_enable, PDEV_PARAM_DPD_ENABLE),
  5189. PDEV_PARAM(pdev_param_set_mcast_bcast_echo,
  5190. PDEV_PARAM_SET_MCAST_BCAST_ECHO),
  5191. PDEV_PARAM(pdev_param_atf_strict_sch, PDEV_PARAM_ATF_STRICT_SCH),
  5192. PDEV_PARAM(pdev_param_atf_sched_duration,
  5193. PDEV_PARAM_ATF_SCHED_DURATION),
  5194. PDEV_PARAM(pdev_param_ant_plzn, PDEV_PARAM_ANT_PLZN),
  5195. PDEV_PARAM(pdev_param_mgmt_retry_limit, PDEV_PARAM_MGMT_RETRY_LIMIT),
  5196. PDEV_PARAM(pdev_param_sensitivity_level, PDEV_PARAM_SENSITIVITY_LEVEL),
  5197. PDEV_PARAM(pdev_param_signed_txpower_2g, PDEV_PARAM_SIGNED_TXPOWER_2G),
  5198. PDEV_PARAM(pdev_param_signed_txpower_5g, PDEV_PARAM_SIGNED_TXPOWER_5G),
  5199. PDEV_PARAM(pdev_param_enable_per_tid_amsdu,
  5200. PDEV_PARAM_ENABLE_PER_TID_AMSDU),
  5201. PDEV_PARAM(pdev_param_enable_per_tid_ampdu,
  5202. PDEV_PARAM_ENABLE_PER_TID_AMPDU),
  5203. PDEV_PARAM(pdev_param_cca_threshold, PDEV_PARAM_CCA_THRESHOLD),
  5204. PDEV_PARAM(pdev_param_rts_fixed_rate, PDEV_PARAM_RTS_FIXED_RATE),
  5205. PDEV_PARAM(pdev_param_pdev_reset, PDEV_PARAM_PDEV_RESET),
  5206. PDEV_PARAM(pdev_param_wapi_mbssid_offset,
  5207. PDEV_PARAM_WAPI_MBSSID_OFFSET),
  5208. PDEV_PARAM(pdev_param_arp_srcaddr, PDEV_PARAM_ARP_DBG_SRCADDR),
  5209. PDEV_PARAM(pdev_param_arp_dstaddr, PDEV_PARAM_ARP_DBG_DSTADDR),
  5210. PDEV_PARAM(pdev_param_atf_obss_noise_sch,
  5211. PDEV_PARAM_ATF_OBSS_NOISE_SCH),
  5212. PDEV_PARAM(pdev_param_atf_obss_noise_scaling_factor,
  5213. PDEV_PARAM_ATF_OBSS_NOISE_SCALING_FACTOR),
  5214. PDEV_PARAM(pdev_param_cust_txpower_scale,
  5215. PDEV_PARAM_CUST_TXPOWER_SCALE),
  5216. PDEV_PARAM(pdev_param_atf_dynamic_enable,
  5217. PDEV_PARAM_ATF_DYNAMIC_ENABLE),
  5218. PDEV_PARAM(pdev_param_ctrl_retry_limit, PDEV_PARAM_CTRL_RETRY_LIMIT),
  5219. PDEV_PARAM(pdev_param_propagation_delay, PDEV_PARAM_PROPAGATION_DELAY),
  5220. PDEV_PARAM(pdev_param_ena_ant_div, PDEV_PARAM_ENA_ANT_DIV),
  5221. PDEV_PARAM(pdev_param_force_chain_ant, PDEV_PARAM_FORCE_CHAIN_ANT),
  5222. PDEV_PARAM(pdev_param_ant_div_selftest, PDEV_PARAM_ANT_DIV_SELFTEST),
  5223. PDEV_PARAM(pdev_param_ant_div_selftest_intvl,
  5224. PDEV_PARAM_ANT_DIV_SELFTEST_INTVL),
  5225. PDEV_PARAM(pdev_param_stats_observation_period,
  5226. PDEV_PARAM_STATS_OBSERVATION_PERIOD),
  5227. PDEV_PARAM(pdev_param_tx_ppdu_delay_bin_size_ms,
  5228. PDEV_PARAM_TX_PPDU_DELAY_BIN_SIZE_MS),
  5229. PDEV_PARAM(pdev_param_tx_ppdu_delay_array_len,
  5230. PDEV_PARAM_TX_PPDU_DELAY_ARRAY_LEN),
  5231. PDEV_PARAM(pdev_param_tx_mpdu_aggr_array_len,
  5232. PDEV_PARAM_TX_MPDU_AGGR_ARRAY_LEN),
  5233. PDEV_PARAM(pdev_param_rx_mpdu_aggr_array_len,
  5234. PDEV_PARAM_RX_MPDU_AGGR_ARRAY_LEN),
  5235. PDEV_PARAM(pdev_param_tx_sch_delay, PDEV_PARAM_TX_SCH_DELAY),
  5236. PDEV_PARAM(pdev_param_enable_rts_sifs_bursting,
  5237. PDEV_PARAM_ENABLE_RTS_SIFS_BURSTING),
  5238. PDEV_PARAM(pdev_param_max_mpdus_in_ampdu,
  5239. PDEV_PARAM_MAX_MPDUS_IN_AMPDU),
  5240. PDEV_PARAM(pdev_param_peer_stats_info_enable,
  5241. PDEV_PARAM_PEER_STATS_INFO_ENABLE),
  5242. PDEV_PARAM(pdev_param_fast_pwr_transition,
  5243. PDEV_PARAM_FAST_PWR_TRANSITION),
  5244. PDEV_PARAM(pdev_param_radio_chan_stats_enable,
  5245. PDEV_PARAM_RADIO_CHAN_STATS_ENABLE),
  5246. PDEV_PARAM(pdev_param_radio_diagnosis_enable,
  5247. PDEV_PARAM_RADIO_DIAGNOSIS_ENABLE),
  5248. PDEV_PARAM(pdev_param_mesh_mcast_enable, PDEV_PARAM_MESH_MCAST_ENABLE),
  5249. PDEV_PARAM(pdev_param_smart_chainmask_scheme,
  5250. PDEV_PARAM_SMART_CHAINMASK_SCHEME),
  5251. PDEV_PARAM(pdev_param_alternative_chainmask_scheme,
  5252. PDEV_PARAM_ALTERNATIVE_CHAINMASK_SCHEME),
  5253. PDEV_PARAM(pdev_param_ant_div_usrcfg, PDEV_PARAM_ANT_DIV_USRCFG),
  5254. PDEV_PARAM(pdev_param_packet_power_save_level,
  5255. PDEV_PARAM_PACKET_POWER_SAVE_LEVEL),
  5256. PDEV_PARAM(pdev_param_set_iot_pattern, PDEV_PARAM_SET_IOT_PATTERN),
  5257. PDEV_PARAM(pdev_param_tx_ack_timeout, PDEV_PARAM_ACK_TIMEOUT),
  5258. PDEV_PARAM(pdev_param_abg_mode_tx_chain_num,
  5259. PDEV_PARAM_ABG_MODE_TX_CHAIN_NUM),
  5260. PDEV_PARAM(pdev_param_enable_cck_txfir_override,
  5261. PDEV_PARAM_ENABLE_CCK_TXFIR_OVERRIDE),
  5262. PDEV_PARAM(pdev_param_dtim_synth, PDEV_PARAM_DTIM_SYNTH),
  5263. PDEV_PARAM(pdev_auto_detect_power_failure,
  5264. PDEV_AUTO_DETECT_POWER_FAILURE),
  5265. PDEV_PARAM(pdev_update_wdcvs_algo, PDEV_UPDATE_WDCVS_ALGO),
  5266. PDEV_PARAM(pdev_param_data_stall_detect_enable,
  5267. PDEV_PARAM_DATA_STALL_DETECT_ENABLE),
  5268. PDEV_PARAM(pdev_param_gcmp_support_enable,
  5269. PDEV_PARAM_GCMP_SUPPORT_ENABLE),
  5270. PDEV_PARAM(pdev_param_1ch_dtim_optimized_chain_selection,
  5271. PDEV_PARAM_1CH_DTIM_OPTIMIZED_CHAIN_SELECTION),
  5272. PDEV_PARAM(pdev_param_cck_tx_enable, PDEV_PARAM_CCK_TX_ENABLE),
  5273. PDEV_PARAM(pdev_param_antenna_gain_half_db,
  5274. PDEV_PARAM_ANTENNA_GAIN_HALF_DB),
  5275. PDEV_PARAM(pdev_param_secondary_retry_enable,
  5276. PDEV_PARAM_SECONDARY_RETRY_ENABLE),
  5277. PDEV_PARAM(pdev_param_ul_ppdu_duration,
  5278. PDEV_PARAM_SET_UL_PPDU_DURATION),
  5279. PDEV_PARAM(pdev_param_ul_trig_int, PDEV_PARAM_SET_UL_BSR_TRIG_INTERVAL),
  5280. PDEV_PARAM(pdev_param_equal_ru_allocation_enable,
  5281. PDEV_PARAM_EQUAL_RU_ALLOCATION_ENABLE),
  5282. PDEV_PARAM(pdev_param_mwscoex_4g_allow_quick_ftdm,
  5283. PDEV_PARAM_MWSCOEX_4G_ALLOW_QUICK_FTDM),
  5284. PDEV_PARAM(pdev_param_mwscoex_set_5gnr_pwr_limit,
  5285. PDEV_PARAM_MWSCOEX_SET_5GNR_PWR_LIMIT),
  5286. PDEV_PARAM(pdev_param_set_cong_ctrl_max_msdus,
  5287. PDEV_PARAM_SET_CONG_CTRL_MAX_MSDUS),
  5288. PDEV_PARAM(pdev_param_esp_indication_period,
  5289. PDEV_PARAM_ESP_INDICATION_PERIOD),
  5290. PDEV_PARAM(pdev_param_per_peer_prd_cfr_enable,
  5291. PDEV_PARAM_PER_PEER_PERIODIC_CFR_ENABLE),
  5292. PDEV_PARAM(pdev_param_periodic_cfr_base_timer,
  5293. PDEV_PARAM_PERIODIC_CFR_BASE_TIMER),
  5294. PDEV_PARAM(pdev_param_enable_optimized_periodic_cfr_timer,
  5295. PDEV_PARAM_ENABLE_OPTIMIZED_PERIODIC_CFR_TIMER),
  5296. PDEV_PARAM(pdev_param_esp_ba_window, PDEV_PARAM_ESP_BA_WINDOW),
  5297. PDEV_PARAM(pdev_param_esp_airtime_fraction,
  5298. PDEV_PARAM_ESP_AIRTIME_FRACTION),
  5299. PDEV_PARAM(pdev_param_esp_ppdu_duration, PDEV_PARAM_ESP_PPDU_DURATION),
  5300. PDEV_PARAM(pdev_param_use_nol, PDEV_PARAM_USE_NOL),
  5301. PDEV_PARAM(pdev_param_ru26_allowed, PDEV_PARAM_UL_RU26_ALLOWED),
  5302. PDEV_PARAM(pdev_param_sub_channel_marking,
  5303. PDEV_PARAM_SUB_CHANNEL_MARKING),
  5304. PDEV_PARAM(pdev_param_set_mgmt_ttl, PDEV_PARAM_SET_MGMT_TTL),
  5305. PDEV_PARAM(pdev_param_set_prb_rsp_ttl, PDEV_PARAM_SET_PROBE_RESP_TTL),
  5306. PDEV_PARAM(pdev_param_set_tbtt_ctrl, PDEV_PARAM_SET_TBTT_CTRL),
  5307. PDEV_PARAM(pdev_param_nav_override_config,
  5308. PDEV_PARAM_NAV_OVERRIDE_CONFIG),
  5309. PDEV_PARAM(pdev_param_set_mu_ppdu_duration,
  5310. PDEV_PARAM_SET_MU_PPDU_DURATION),
  5311. PDEV_PARAM(pdev_param_set_test_cmd_ul_trigger_type_enable,
  5312. PDEV_PARAM_SET_TEST_CMD_UL_TRIGGER_TYPE_ENABLE),
  5313. PDEV_PARAM(pdev_param_set_test_cmd_ul_trigger_lsig_len,
  5314. PDEV_PARAM_SET_TEST_CMD_UL_TRIGGER_LSIG_LEN),
  5315. PDEV_PARAM(pdev_param_set_test_cmd_ul_trigger_fixed_rate,
  5316. PDEV_PARAM_SET_TEST_CMD_UL_TRIGGER_FIXED_RATE),
  5317. PDEV_PARAM(pdev_param_set_test_cmd_ul_mac_padding,
  5318. PDEV_PARAM_SET_TEST_CMD_UL_MAC_PADDING),
  5319. PDEV_PARAM(pdev_param_set_test_cmd_ul_bsr_fc_duration,
  5320. PDEV_PARAM_SET_TEST_CMD_UL_BSR_FC_DURATION),
  5321. PDEV_PARAM(pdev_param_set_test_cmd_twt_sched_config,
  5322. PDEV_PARAM_SET_TEST_CMD_TWT_SCHED_CONFIG),
  5323. PDEV_PARAM(pdev_param_set_cmd_obss_pd_threshold,
  5324. PDEV_PARAM_SET_CMD_OBSS_PD_THRESHOLD),
  5325. PDEV_PARAM(pdev_param_enable_non_wlan_coex_from_boot,
  5326. PDEV_PARAM_ENABLE_NON_WLAN_COEX_FROM_BOOT),
  5327. PDEV_PARAM(pdev_param_set_cmd_obss_pd_per_ac,
  5328. PDEV_PARAM_SET_CMD_OBSS_PD_PER_AC),
  5329. PDEV_PARAM(pdev_param_enable_fw_dynamic_he_edca,
  5330. PDEV_PARAM_ENABLE_FW_DYNAMIC_HE_EDCA),
  5331. PDEV_PARAM(pdev_param_default_6ghz_rate, PDEV_PARAM_DEFAULT_6GHZ_RATE),
  5332. PDEV_PARAM(pdev_param_mwscoex_pcc_chavd_delay,
  5333. PDEV_PARAM_MWSCOEX_PCC_CHAVD_DELAY),
  5334. PDEV_PARAM(pdev_param_mwscoex_scc_chavd_delay,
  5335. PDEV_PARAM_MWSCOEX_SCC_CHAVD_DELAY),
  5336. PDEV_PARAM(pdev_param_set_dfs_chan_ageout_time,
  5337. PDEV_PARAM_SET_DFS_CHAN_AGEOUT_TIME),
  5338. PDEV_PARAM(pdev_param_set_sap_xlna_bypass,
  5339. PDEV_PARAM_SET_SAP_XLNA_BYPASS),
  5340. PDEV_PARAM(pdev_param_enable_srp, PDEV_PARAM_ENABLE_SRP),
  5341. PDEV_PARAM(pdev_param_enable_sr_prohibit,
  5342. PDEV_PARAM_ENABLE_SR_PROHIBIT),
  5343. PDEV_PARAM(pdev_param_enable_mbssid_ctrl_frame,
  5344. PDEV_PARAM_ENABLE_MBSSID_CTRL_FRAME),
  5345. PDEV_PARAM(pdev_param_pream_punct_bw, PDEV_PARAM_SET_PREAM_PUNCT_BW),
  5346. PDEV_PARAM(pdev_param_sr_trigger_margin, PDEV_PARAM_SR_TRIGGER_MARGIN),
  5347. PDEV_PARAM(pdev_param_pcie_hw_ilp, PDEV_PARAM_PCIE_HW_ILP),
  5348. PDEV_PARAM(pdev_param_set_txtd_start_timestamp,
  5349. PDEV_PARAM_SET_TXTD_START_TIMESTAMP),
  5350. PDEV_PARAM(pdev_param_set_mesh_params, PDEV_PARAM_SET_MESH_PARAMS),
  5351. PDEV_PARAM(pdev_param_low_latency_mode,
  5352. PDEV_PARAM_LOW_LATENCY_SCHED_MODE),
  5353. PDEV_PARAM(pdev_param_mpd_userpd_ssr, PDEV_PARAM_MPD_USERPD_SSR),
  5354. PDEV_PARAM(pdev_param_disable_hw_assist, PDEV_PARAM_DISABLE_HW_ASSIST),
  5355. PDEV_PARAM(pdev_param_scan_radio_tx_on_dfs,
  5356. PDEV_PARAM_SCAN_RADIO_TX_ON_DFS),
  5357. PDEV_PARAM(pdev_param_obss_min_duration_check_for_sr,
  5358. PDEV_PARAM_OBSS_MIN_DURATION_CHECK_FOR_SR),
  5359. PDEV_PARAM(pdev_param_truncate_sr, PDEV_PARAM_TRUNCATE_SR),
  5360. PDEV_PARAM(pdev_param_ctrl_frame_obss_pd_threshold,
  5361. PDEV_PARAM_CTRL_FRAME_OBSS_PD_THRESHOLD),
  5362. PDEV_PARAM(pdev_param_twt_ac_config, PDEV_PARAM_TWT_AC_CONFIG),
  5363. PDEV_PARAM(pdev_param_pdev_stats_tx_xretry_ext,
  5364. PDEV_PARAM_PDEV_STATS_TX_XRETRY_EXT),
  5365. PDEV_PARAM(pdev_param_rate_upper_cap, PDEV_PARAM_RATE_UPPER_CAP),
  5366. PDEV_PARAM(pdev_param_rate_retry_mcs_drop,
  5367. PDEV_PARAM_SET_RATE_DROP_DOWN_RETRY_THRESH),
  5368. PDEV_PARAM(pdev_param_mcs_probe_intvl,
  5369. PDEV_PARAM_MIN_MAX_MCS_PROBE_INTERVAL),
  5370. PDEV_PARAM(pdev_param_nss_probe_intvl,
  5371. PDEV_PARAM_MIN_MAX_NSS_PROBE_INTERVAL),
  5372. PDEV_PARAM(pdev_param_en_probe_all_bw, PDEV_PARAM_EN_PROBE_ALL_BW),
  5373. PDEV_PARAM(pdev_param_en_update_scram_seed,
  5374. PDEV_PARAM_EN_UPDATE_SCRAM_SEED),
  5375. PDEV_PARAM(pdev_param_sa_parallel_mode_gpio_drive_cfg,
  5376. PDEV_PARAM_SA_PARALLEL_MODE_GPIO_DRIVE_CFG),
  5377. PDEV_PARAM(pdev_param_disable_lpi_ant_optimization,
  5378. PDEV_PARAM_DISABLE_LPI_ANT_OPTIMIZATION),
  5379. PDEV_PARAM(pdev_param_txpower_reason_sar,
  5380. PDEV_PARAM_TXPOWER_REASON_SAR),
  5381. PDEV_PARAM(pdev_param_igmpmld_tid, PDEV_PARAM_IGMPMLD_AC_OVERRIDE),
  5382. PDEV_PARAM(pdev_param_cal_period, UNAVAILABLE_PARAM),
  5383. PDEV_PARAM(pdev_param_rx_batchmode, UNAVAILABLE_PARAM),
  5384. PDEV_PARAM(pdev_param_packet_aggr_delay, UNAVAILABLE_PARAM),
  5385. PDEV_PARAM(pdev_param_atf_ssid_group_policy, UNAVAILABLE_PARAM),
  5386. PDEV_PARAM(pdev_param_enable_btcoex, UNAVAILABLE_PARAM),
  5387. PDEV_PARAM(pdev_param_atf_peer_stats, UNAVAILABLE_PARAM),
  5388. PDEV_PARAM(pdev_param_btcoex_cfg, UNAVAILABLE_PARAM),
  5389. PDEV_PARAM(pdev_param_soft_tx_chain_mask, PDEV_PARAM_TX_CHAIN_MASK),
  5390. PDEV_PARAM(pdev_param_enable_peer_retry_stats, UNAVAILABLE_PARAM),
  5391. PDEV_PARAM(pdev_param_scan_blanking_mode,
  5392. PDEV_PARAM_SET_SCAN_BLANKING_MODE),
  5393. PDEV_PARAM(pdev_param_set_disabled_sched_modes,
  5394. PDEV_PARAM_SET_DISABLED_SCHED_MODES),
  5395. PDEV_PARAM(pdev_param_set_conc_low_latency_mode,
  5396. PDEV_PARAM_SET_CONC_LOW_LATENCY_MODE),
  5397. PDEV_PARAM(pdev_param_rtt_11az_rsid_range,
  5398. PDEV_PARAM_RTT_11AZ_RSID_RANGE),
  5399. PDEV_PARAM(pdev_param_pcie_config, PDEV_PARAM_PCIE_CONFIG),
  5400. PDEV_PARAM(pdev_param_probe_resp_retry_limit,
  5401. PDEV_PARAM_PROBE_RESP_RETRY_LIMIT),
  5402. PDEV_PARAM(pdev_param_cts_timeout, PDEV_PARAM_CTS_TIMEOUT),
  5403. PDEV_PARAM(pdev_param_slot_time, PDEV_PARAM_SLOT_TIME),
  5404. PDEV_PARAM(pdev_param_atf_vo_dedicated_time,
  5405. PDEV_PARAM_ATF_VO_DEDICATED_TIME),
  5406. PDEV_PARAM(pdev_param_atf_vi_dedicated_time,
  5407. PDEV_PARAM_ATF_VI_DEDICATED_TIME),
  5408. pdev_param_max,
  5409. } wmi_conv_pdev_params_id;
  5410. #ifdef ENABLE_HOST_TO_TARGET_CONVERSION
  5411. #define VDEV_PARAM(host_param, target_param) wmi_ ## host_param
  5412. #else
  5413. #define VDEV_PARAM(host_param, target_param) wmi_ ## host_param = WMI_ ## target_param
  5414. #endif
  5415. /* Host based ENUM IDs for VDEV params to abstract target enums */
  5416. typedef enum {
  5417. VDEV_PARAM(vdev_param_rts_threshold, VDEV_PARAM_RTS_THRESHOLD),
  5418. VDEV_PARAM(vdev_param_fragmentation_threshold,
  5419. VDEV_PARAM_FRAGMENTATION_THRESHOLD),
  5420. VDEV_PARAM(vdev_param_beacon_interval, VDEV_PARAM_BEACON_INTERVAL),
  5421. VDEV_PARAM(vdev_param_listen_interval, VDEV_PARAM_LISTEN_INTERVAL),
  5422. VDEV_PARAM(vdev_param_multicast_rate, VDEV_PARAM_MULTICAST_RATE),
  5423. VDEV_PARAM(vdev_param_mgmt_tx_rate, VDEV_PARAM_MGMT_TX_RATE),
  5424. VDEV_PARAM(vdev_param_slot_time, VDEV_PARAM_SLOT_TIME),
  5425. VDEV_PARAM(vdev_param_preamble, VDEV_PARAM_PREAMBLE),
  5426. VDEV_PARAM(vdev_param_swba_time, VDEV_PARAM_SWBA_TIME),
  5427. VDEV_PARAM(vdev_stats_update_period, VDEV_STATS_UPDATE_PERIOD),
  5428. VDEV_PARAM(vdev_pwrsave_ageout_time, VDEV_PWRSAVE_AGEOUT_TIME),
  5429. VDEV_PARAM(vdev_param_dtim_period, VDEV_PARAM_DTIM_PERIOD),
  5430. VDEV_PARAM(vdev_oc_scheduler_air_time_limit,
  5431. VDEV_OC_SCHEDULER_AIR_TIME_LIMIT),
  5432. VDEV_PARAM(vdev_param_wds, VDEV_PARAM_WDS),
  5433. VDEV_PARAM(vdev_param_atim_window, VDEV_PARAM_ATIM_WINDOW),
  5434. VDEV_PARAM(vdev_param_bmiss_count_max, VDEV_PARAM_BMISS_COUNT_MAX),
  5435. VDEV_PARAM(vdev_param_bmiss_first_bcnt, VDEV_PARAM_BMISS_FIRST_BCNT),
  5436. VDEV_PARAM(vdev_param_bmiss_final_bcnt, VDEV_PARAM_BMISS_FINAL_BCNT),
  5437. VDEV_PARAM(vdev_param_feature_wmm, VDEV_PARAM_FEATURE_WMM),
  5438. VDEV_PARAM(vdev_param_chwidth, VDEV_PARAM_CHWIDTH),
  5439. VDEV_PARAM(vdev_param_chextoffset, VDEV_PARAM_CHEXTOFFSET),
  5440. VDEV_PARAM(vdev_param_disable_htprotection,
  5441. VDEV_PARAM_DISABLE_HTPROTECTION),
  5442. VDEV_PARAM(vdev_param_sta_quickkickout, VDEV_PARAM_STA_QUICKKICKOUT),
  5443. VDEV_PARAM(vdev_param_mgmt_rate, VDEV_PARAM_MGMT_RATE),
  5444. VDEV_PARAM(vdev_param_protection_mode, VDEV_PARAM_PROTECTION_MODE),
  5445. VDEV_PARAM(vdev_param_fixed_rate, VDEV_PARAM_FIXED_RATE),
  5446. VDEV_PARAM(vdev_param_sgi, VDEV_PARAM_SGI),
  5447. VDEV_PARAM(vdev_param_ldpc, VDEV_PARAM_LDPC),
  5448. VDEV_PARAM(vdev_param_tx_stbc, VDEV_PARAM_TX_STBC),
  5449. VDEV_PARAM(vdev_param_rx_stbc, VDEV_PARAM_RX_STBC),
  5450. VDEV_PARAM(vdev_param_intra_bss_fwd, VDEV_PARAM_INTRA_BSS_FWD),
  5451. VDEV_PARAM(vdev_param_def_keyid, VDEV_PARAM_DEF_KEYID),
  5452. VDEV_PARAM(vdev_param_nss, VDEV_PARAM_NSS),
  5453. VDEV_PARAM(vdev_param_bcast_data_rate, VDEV_PARAM_BCAST_DATA_RATE),
  5454. VDEV_PARAM(vdev_param_mcast_data_rate, VDEV_PARAM_MCAST_DATA_RATE),
  5455. VDEV_PARAM(vdev_param_mcast_indicate, VDEV_PARAM_MCAST_INDICATE),
  5456. VDEV_PARAM(vdev_param_dhcp_indicate, VDEV_PARAM_DHCP_INDICATE),
  5457. VDEV_PARAM(vdev_param_unknown_dest_indicate,
  5458. VDEV_PARAM_UNKNOWN_DEST_INDICATE),
  5459. VDEV_PARAM(vdev_param_ap_keepalive_min_idle_inactive_time_secs,
  5460. VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS),
  5461. VDEV_PARAM(vdev_param_ap_keepalive_max_idle_inactive_time_secs,
  5462. VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS),
  5463. VDEV_PARAM(vdev_param_ap_keepalive_max_unresponsive_time_secs,
  5464. VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS),
  5465. VDEV_PARAM(vdev_param_ap_enable_nawds, VDEV_PARAM_AP_ENABLE_NAWDS),
  5466. VDEV_PARAM(vdev_param_enable_rtscts, VDEV_PARAM_ENABLE_RTSCTS),
  5467. VDEV_PARAM(vdev_param_txbf, VDEV_PARAM_TXBF),
  5468. VDEV_PARAM(vdev_param_packet_powersave, VDEV_PARAM_PACKET_POWERSAVE),
  5469. VDEV_PARAM(vdev_param_drop_unencry, VDEV_PARAM_DROP_UNENCRY),
  5470. VDEV_PARAM(vdev_param_tx_encap_type, VDEV_PARAM_TX_ENCAP_TYPE),
  5471. VDEV_PARAM(vdev_param_ap_detect_out_of_sync_sleeping_sta_time_secs,
  5472. VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS),
  5473. VDEV_PARAM(vdev_param_early_rx_adjust_enable,
  5474. VDEV_PARAM_EARLY_RX_ADJUST_ENABLE),
  5475. VDEV_PARAM(vdev_param_early_rx_tgt_bmiss_num,
  5476. VDEV_PARAM_EARLY_RX_TGT_BMISS_NUM),
  5477. VDEV_PARAM(vdev_param_early_rx_bmiss_sample_cycle,
  5478. VDEV_PARAM_EARLY_RX_BMISS_SAMPLE_CYCLE),
  5479. VDEV_PARAM(vdev_param_early_rx_slop_step,
  5480. VDEV_PARAM_EARLY_RX_SLOP_STEP),
  5481. VDEV_PARAM(vdev_param_early_rx_init_slop,
  5482. VDEV_PARAM_EARLY_RX_INIT_SLOP),
  5483. VDEV_PARAM(vdev_param_early_rx_adjust_pause,
  5484. VDEV_PARAM_EARLY_RX_ADJUST_PAUSE),
  5485. VDEV_PARAM(vdev_param_tx_pwrlimit, VDEV_PARAM_TX_PWRLIMIT),
  5486. VDEV_PARAM(vdev_param_snr_num_for_cal, VDEV_PARAM_SNR_NUM_FOR_CAL),
  5487. VDEV_PARAM(vdev_param_roam_fw_offload, VDEV_PARAM_ROAM_FW_OFFLOAD),
  5488. VDEV_PARAM(vdev_param_enable_rmc, VDEV_PARAM_ENABLE_RMC),
  5489. VDEV_PARAM(vdev_param_ibss_max_bcn_lost_ms,
  5490. VDEV_PARAM_IBSS_MAX_BCN_LOST_MS),
  5491. VDEV_PARAM(vdev_param_max_rate, VDEV_PARAM_MAX_RATE),
  5492. VDEV_PARAM(vdev_param_early_rx_drift_sample,
  5493. VDEV_PARAM_EARLY_RX_DRIFT_SAMPLE),
  5494. VDEV_PARAM(vdev_param_set_ibss_tx_fail_cnt_thr,
  5495. VDEV_PARAM_SET_IBSS_TX_FAIL_CNT_THR),
  5496. VDEV_PARAM(vdev_param_ebt_resync_timeout,
  5497. VDEV_PARAM_EBT_RESYNC_TIMEOUT),
  5498. VDEV_PARAM(vdev_param_aggr_trig_event_enable,
  5499. VDEV_PARAM_AGGR_TRIG_EVENT_ENABLE),
  5500. VDEV_PARAM(vdev_param_is_ibss_power_save_allowed,
  5501. VDEV_PARAM_IS_IBSS_POWER_SAVE_ALLOWED),
  5502. VDEV_PARAM(vdev_param_is_power_collapse_allowed,
  5503. VDEV_PARAM_IS_POWER_COLLAPSE_ALLOWED),
  5504. VDEV_PARAM(vdev_param_is_awake_on_txrx_enabled,
  5505. VDEV_PARAM_IS_AWAKE_ON_TXRX_ENABLED),
  5506. VDEV_PARAM(vdev_param_inactivity_cnt, VDEV_PARAM_INACTIVITY_CNT),
  5507. VDEV_PARAM(vdev_param_txsp_end_inactivity_time_ms,
  5508. VDEV_PARAM_TXSP_END_INACTIVITY_TIME_MS),
  5509. VDEV_PARAM(vdev_param_dtim_policy, VDEV_PARAM_DTIM_POLICY),
  5510. VDEV_PARAM(vdev_param_ibss_ps_warmup_time_secs,
  5511. VDEV_PARAM_IBSS_PS_WARMUP_TIME_SECS),
  5512. VDEV_PARAM(vdev_param_ibss_ps_1rx_chain_in_atim_window_enable,
  5513. VDEV_PARAM_IBSS_PS_1RX_CHAIN_IN_ATIM_WINDOW_ENABLE),
  5514. VDEV_PARAM(vdev_param_rx_leak_window, VDEV_PARAM_RX_LEAK_WINDOW),
  5515. VDEV_PARAM(vdev_param_stats_avg_factor, VDEV_PARAM_STATS_AVG_FACTOR),
  5516. VDEV_PARAM(vdev_param_disconnect_th, VDEV_PARAM_DISCONNECT_TH),
  5517. VDEV_PARAM(vdev_param_rtscts_rate, VDEV_PARAM_RTSCTS_RATE),
  5518. VDEV_PARAM(vdev_param_mcc_rtscts_protection_enable,
  5519. VDEV_PARAM_MCC_RTSCTS_PROTECTION_ENABLE),
  5520. VDEV_PARAM(vdev_param_mcc_broadcast_probe_enable,
  5521. VDEV_PARAM_MCC_BROADCAST_PROBE_ENABLE),
  5522. VDEV_PARAM(vdev_param_txpower_scale, VDEV_PARAM_TXPOWER_SCALE),
  5523. VDEV_PARAM(vdev_param_txpower_scale_decr_db,
  5524. VDEV_PARAM_TXPOWER_SCALE_DECR_DB),
  5525. VDEV_PARAM(vdev_param_mcast2ucast_set, VDEV_PARAM_MCAST2UCAST_SET),
  5526. VDEV_PARAM(vdev_param_rc_num_retries, VDEV_PARAM_RC_NUM_RETRIES),
  5527. VDEV_PARAM(vdev_param_cabq_maxdur, VDEV_PARAM_CABQ_MAXDUR),
  5528. VDEV_PARAM(vdev_param_mfptest_set, VDEV_PARAM_MFPTEST_SET),
  5529. VDEV_PARAM(vdev_param_rts_fixed_rate, VDEV_PARAM_RTS_FIXED_RATE),
  5530. VDEV_PARAM(vdev_param_vht_sgimask, VDEV_PARAM_VHT_SGIMASK),
  5531. VDEV_PARAM(vdev_param_vht80_ratemask, VDEV_PARAM_VHT80_RATEMASK),
  5532. VDEV_PARAM(vdev_param_proxy_sta, VDEV_PARAM_PROXY_STA),
  5533. VDEV_PARAM(vdev_param_virtual_cell_mode, VDEV_PARAM_VIRTUAL_CELL_MODE),
  5534. VDEV_PARAM(vdev_param_rx_decap_type, VDEV_PARAM_RX_DECAP_TYPE),
  5535. VDEV_PARAM(vdev_param_bw_nss_ratemask, VDEV_PARAM_BW_NSS_RATEMASK),
  5536. VDEV_PARAM(vdev_param_sensor_ap, VDEV_PARAM_SENSOR_AP),
  5537. VDEV_PARAM(vdev_param_beacon_rate, VDEV_PARAM_BEACON_RATE),
  5538. VDEV_PARAM(vdev_param_dtim_enable_cts, VDEV_PARAM_DTIM_ENABLE_CTS),
  5539. VDEV_PARAM(vdev_param_sta_kickout, VDEV_PARAM_STA_KICKOUT),
  5540. VDEV_PARAM(vdev_param_capabilities, VDEV_PARAM_CAPABILITIES),
  5541. VDEV_PARAM(vdev_param_tsf_increment, VDEV_PARAM_TSF_INCREMENT),
  5542. VDEV_PARAM(vdev_param_ampdu_subframe_size_per_ac,
  5543. UNAVAILABLE_PARAM),
  5544. VDEV_PARAM(vdev_param_rx_filter, VDEV_PARAM_RX_FILTER),
  5545. VDEV_PARAM(vdev_param_mgmt_tx_power, VDEV_PARAM_MGMT_TX_POWER),
  5546. VDEV_PARAM(vdev_param_non_agg_sw_retry_th,
  5547. VDEV_PARAM_NON_AGG_SW_RETRY_TH),
  5548. VDEV_PARAM(vdev_param_agg_sw_retry_th, VDEV_PARAM_AGG_SW_RETRY_TH),
  5549. VDEV_PARAM(vdev_param_disable_dyn_bw_rts,
  5550. VDEV_PARAM_DISABLE_DYN_BW_RTS),
  5551. VDEV_PARAM(vdev_param_set_traffic_config,
  5552. VDEV_PARAM_VDEV_TRAFFIC_CONFIG),
  5553. VDEV_PARAM(vdev_param_atf_ssid_sched_policy,
  5554. VDEV_PARAM_ATF_SSID_SCHED_POLICY),
  5555. VDEV_PARAM(vdev_param_he_dcm_enable, VDEV_PARAM_HE_DCM),
  5556. VDEV_PARAM(vdev_param_he_range_ext_enable, VDEV_PARAM_HE_RANGE_EXT),
  5557. VDEV_PARAM(vdev_param_he_range_ext, VDEV_PARAM_HE_RANGE_EXT),
  5558. VDEV_PARAM(vdev_param_enable_bcast_probe_response,
  5559. VDEV_PARAM_ENABLE_BCAST_PROBE_RESPONSE),
  5560. VDEV_PARAM(vdev_param_fils_max_channel_guard_time,
  5561. VDEV_PARAM_FILS_MAX_CHANNEL_GUARD_TIME),
  5562. VDEV_PARAM(vdev_param_disable_noa_p2p_go,
  5563. VDEV_PARAM_DISABLE_NOA_P2P_GO),
  5564. VDEV_PARAM(vdev_param_per_band_mgmt_tx_rate,
  5565. VDEV_PARAM_PER_BAND_MGMT_TX_RATE),
  5566. VDEV_PARAM(vdev_param_11ax_txbf, VDEV_PARAM_11AX_TXBF),
  5567. VDEV_PARAM(vdev_param_smps_intolerant, VDEV_PARAM_SMPS_INTOLERANT),
  5568. VDEV_PARAM(vdev_param_probe_delay, VDEV_PARAM_PROBE_DELAY),
  5569. VDEV_PARAM(vdev_param_repeat_probe_time, VDEV_PARAM_REPEAT_PROBE_TIME),
  5570. VDEV_PARAM(vdev_param_set_he_ltf, VDEV_PARAM_HE_LTF),
  5571. VDEV_PARAM(vdev_param_abg_mode_tx_chain_num,
  5572. VDEV_PARAM_ABG_MODE_TX_CHAIN_NUM),
  5573. VDEV_PARAM(vdev_param_enable_multi_group_key,
  5574. VDEV_PARAM_ENABLE_MULTI_GROUP_KEY),
  5575. VDEV_PARAM(vdev_param_max_group_keys, VDEV_PARAM_NUM_GROUP_KEYS),
  5576. VDEV_PARAM(vdev_param_enable_disable_oce_features,
  5577. VDEV_PARAM_ENABLE_DISABLE_OCE_FEATURES),
  5578. VDEV_PARAM(vdev_param_enable_disable_nan_config_features,
  5579. VDEV_PARAM_ENABLE_DISABLE_NAN_CONFIG_FEATURES),
  5580. VDEV_PARAM(vdev_param_rate_dropdown_bmap,
  5581. VDEV_PARAM_RATE_DROPDOWN_BMAP),
  5582. VDEV_PARAM(vdev_param_moddtim_cnt, VDEV_PARAM_MODDTIM_CNT),
  5583. VDEV_PARAM(vdev_param_max_li_of_moddtim, VDEV_PARAM_MAX_LI_OF_MODDTIM),
  5584. VDEV_PARAM(vdev_param_dyndtim_cnt, VDEV_PARAM_DYNDTIM_CNT),
  5585. VDEV_PARAM(vdev_param_enable_disable_rtt_responder_role,
  5586. VDEV_PARAM_ENABLE_DISABLE_RTT_RESPONDER_ROLE),
  5587. VDEV_PARAM(vdev_param_set_ba_mode, VDEV_PARAM_BA_MODE),
  5588. VDEV_PARAM(vdev_param_forced_moddtim_enable,
  5589. VDEV_PARAM_FORCED_MODDTIM_ENABLE),
  5590. VDEV_PARAM(vdev_param_autorate_misc_cfg, VDEV_PARAM_AUTORATE_MISC_CFG),
  5591. VDEV_PARAM(vdev_param_enable_disable_rtt_initiator_random_mac,
  5592. VDEV_PARAM_ENABLE_DISABLE_RTT_INITIATOR_RANDOM_MAC),
  5593. VDEV_PARAM(vdev_param_tx_retries_before_rts_per_ac,
  5594. VDEV_PARAM_TX_RETRIES_BEFORE_RTS_PER_AC),
  5595. VDEV_PARAM(vdev_param_amsdu_aggregation_size_optimization,
  5596. VDEV_PARAM_AMSDU_AGGREGATION_SIZE_OPTIMIZATION),
  5597. VDEV_PARAM(vdev_param_rawmode_open_war, VDEV_PARAM_RAW_IS_ENCRYPTED),
  5598. VDEV_PARAM(vdev_param_gtx_enable, VDEV_PARAM_GTX_ENABLE),
  5599. VDEV_PARAM(vdev_param_disable_cabq, VDEV_PARAM_DISABLE_CABQ),
  5600. VDEV_PARAM(vdev_param_set_he_sounding_mode,
  5601. VDEV_PARAM_SET_HE_SOUNDING_MODE),
  5602. VDEV_PARAM(vdev_param_ul_fixed_rate, VDEV_PARAM_UL_FIXED_RATE),
  5603. VDEV_PARAM(vdev_param_ul_shortgi, VDEV_PARAM_UL_GI),
  5604. VDEV_PARAM(vdev_param_ul_ldpc, VDEV_PARAM_UL_LDPC),
  5605. VDEV_PARAM(vdev_param_ul_nss, VDEV_PARAM_UL_NSS),
  5606. VDEV_PARAM(vdev_param_ul_stbc, VDEV_PARAM_UL_STBC),
  5607. VDEV_PARAM(vdev_param_ul_he_ltf, VDEV_PARAM_UL_HE_LTF),
  5608. VDEV_PARAM(vdev_param_ul_ppdu_bw, VDEV_PARAM_UL_PPDU_BW),
  5609. VDEV_PARAM(vdev_param_mu_edca_fw_update_en,
  5610. VDEV_PARAM_MU_EDCA_FW_UPDATE_EN),
  5611. VDEV_PARAM(vdev_param_update_obss_ru_tolerance_time,
  5612. VDEV_PARAM_UPDATE_OBSS_RU_TOLERANCE_TIME),
  5613. VDEV_PARAM(vdev_param_max_mtu_size, VDEV_PARAM_MAX_MTU_SIZE),
  5614. VDEV_PARAM(vdev_param_nth_beacon_to_host,
  5615. VDEV_PARAM_NTH_BEACON_TO_HOST),
  5616. VDEV_PARAM(vdev_param_packet_capture_mode,
  5617. VDEV_PARAM_PACKET_CAPTURE_MODE),
  5618. VDEV_PARAM(vdev_param_mcast_rc_stale_period,
  5619. VDEV_PARAM_MCAST_RC_STALE_PERIOD),
  5620. VDEV_PARAM(vdev_param_msdu_flow_override_config,
  5621. VDEV_PARAM_MSDU_FLOW_OVERRIDE_CONFIG),
  5622. VDEV_PARAM(vdev_param_enable_null_for_leaky_ap,
  5623. VDEV_PARAM_ENABLE_NULL_FOR_LEAKY_AP),
  5624. VDEV_PARAM(vdev_param_ndp_inactivity_timeout,
  5625. VDEV_PARAM_NDP_INACTIVITY_TIMEOUT),
  5626. VDEV_PARAM(vdev_param_enable_mcast_rc, VDEV_PARAM_ENABLE_MCAST_RC),
  5627. VDEV_PARAM(vdev_param_enable_disable_rtt_initiator_role,
  5628. VDEV_PARAM_ENABLE_DISABLE_RTT_INITIATOR_ROLE),
  5629. VDEV_PARAM(vdev_param_ndp_keepalive_timeout,
  5630. VDEV_PARAM_NDP_KEEPALIVE_TIMEOUT),
  5631. VDEV_PARAM(vdev_param_allow_nan_initial_discovery_of_mp0_cluster,
  5632. VDEV_PARAM_ALLOW_NAN_INITIAL_DISCOVERY_OF_MP0_CLUSTER),
  5633. VDEV_PARAM(vdev_param_enable_disable_roam_reason_vsie,
  5634. VDEV_PARAM_ENABLE_DISABLE_ROAM_REASON_VSIE),
  5635. VDEV_PARAM(vdev_param_set_cmd_obss_pd_threshold,
  5636. VDEV_PARAM_SET_CMD_OBSS_PD_THRESHOLD),
  5637. VDEV_PARAM(vdev_param_set_cmd_obss_pd_per_ac,
  5638. VDEV_PARAM_SET_CMD_OBSS_PD_PER_AC),
  5639. VDEV_PARAM(vdev_param_rsn_capability, VDEV_PARAM_RSN_CAPABILITY),
  5640. VDEV_PARAM(vdev_param_enable_srp, VDEV_PARAM_ENABLE_SRP),
  5641. VDEV_PARAM(vdev_param_roam_11kv_ctrl, VDEV_PARAM_ROAM_11KV_CTRL),
  5642. VDEV_PARAM(vdev_param_nan_config_features,
  5643. UNAVAILABLE_PARAM),
  5644. VDEV_PARAM(vdev_param_sho_config, VDEV_PARAM_SHO_CONFIG),
  5645. VDEV_PARAM(vdev_param_non_data_he_range_ext,
  5646. VDEV_PARAM_NON_DATA_HE_RANGE_EXT),
  5647. VDEV_PARAM(vdev_param_prohibit_data_mgmt,
  5648. VDEV_PARAM_PROHIBIT_DATA_MGMT),
  5649. VDEV_PARAM(vdev_param_wmm_txop_enable, VDEV_PARAM_WMM_TXOP_ENABLE),
  5650. VDEV_PARAM(vdev_param_force_dtim_cnt, VDEV_PARAM_FORCE_DTIM_CNT),
  5651. VDEV_PARAM(vdev_param_smart_monitor_config,
  5652. VDEV_PARAM_SMART_MONITOR_CONFIG),
  5653. VDEV_PARAM(vdev_param_max_li_of_moddtim_ms,
  5654. VDEV_PARAM_MAX_LI_OF_MODDTIM_MS),
  5655. VDEV_PARAM(vdev_param_11az_security_config,
  5656. VDEV_PARAM_11AZ_SECURITY_CONFIG),
  5657. VDEV_PARAM(vdev_param_set_normal_latency_flags_config,
  5658. VDEV_PARAM_NORMAL_LATENCY_FLAGS_CONFIGURATION),
  5659. VDEV_PARAM(vdev_param_set_xr_latency_flags_config,
  5660. VDEV_PARAM_XR_LATENCY_FLAGS_CONFIGURATION),
  5661. VDEV_PARAM(vdev_param_set_low_latency_flags_config,
  5662. VDEV_PARAM_LOW_LATENCY_FLAGS_CONFIGURATION),
  5663. VDEV_PARAM(vdev_param_set_ultra_low_latency_flags_config,
  5664. VDEV_PARAM_ULTRA_LOW_LATENCY_FLAGS_CONFIGURATION),
  5665. VDEV_PARAM(vdev_param_set_normal_latency_ul_dl_config,
  5666. VDEV_PARAM_NORMAL_LATENCY_UL_DL_CONFIGURATION),
  5667. VDEV_PARAM(vdev_param_set_xr_latency_ul_dl_config,
  5668. VDEV_PARAM_XR_LATENCY_UL_DL_CONFIGURATION),
  5669. VDEV_PARAM(vdev_param_set_low_latency_ul_dl_config,
  5670. VDEV_PARAM_LOW_LATENCY_UL_DL_CONFIGURATION),
  5671. VDEV_PARAM(vdev_param_set_ultra_low_latency_ul_dl_config,
  5672. VDEV_PARAM_ULTRA_LOW_LATENCY_UL_DL_CONFIGURATION),
  5673. VDEV_PARAM(vdev_param_set_default_ll_config,
  5674. VDEV_PARAM_DEFAULT_LATENCY_LEVEL_CONFIGURATION),
  5675. VDEV_PARAM(vdev_param_set_multi_client_ll_feature_config,
  5676. VDEV_PARAM_MULTI_CLIENT_LL_FEATURE_CONFIGURATION),
  5677. VDEV_PARAM(vdev_param_vdev_traffic_config,
  5678. VDEV_PARAM_VDEV_TRAFFIC_CONFIG),
  5679. VDEV_PARAM(vdev_param_final_bmiss_time_sec,
  5680. VDEV_PARAM_FINAL_BMISS_TIME_SEC),
  5681. VDEV_PARAM(vdev_param_final_bmiss_time_wow_sec,
  5682. VDEV_PARAM_FINAL_BMISS_TIME_WOW_SEC),
  5683. VDEV_PARAM(vdev_param_disable_lpi_ant_optimization,
  5684. VDEV_PARAM_DISABLE_LPI_ANT_OPTIMIZATION),
  5685. VDEV_PARAM(vdev_param_prototype, VDEV_PARAM_PROTOTYPE),
  5686. VDEV_PARAM(vdev_param_he_bss_color, VDEV_PARAM_BSS_COLOR),
  5687. VDEV_PARAM(vdev_param_set_hemu_mode, VDEV_PARAM_SET_HEMU_MODE),
  5688. VDEV_PARAM(vdev_param_set_heop, VDEV_PARAM_HEOPS_0_31),
  5689. VDEV_PARAM(vdev_param_obsspd, VDEV_PARAM_OBSSPD),
  5690. VDEV_PARAM(vdev_param_set_eht_mu_mode, VDEV_PARAM_SET_EHT_MU_MODE),
  5691. VDEV_PARAM(vdev_param_set_eht_ltf, VDEV_PARAM_EHT_LTF),
  5692. VDEV_PARAM(vdev_param_set_ul_eht_ltf, VDEV_PARAM_UL_EHT_LTF),
  5693. VDEV_PARAM(vdev_param_set_eht_dcm, VDEV_PARAM_EHT_DCM),
  5694. VDEV_PARAM(vdev_param_set_eht_range_ext, VDEV_PARAM_EHT_RANGE_EXT),
  5695. VDEV_PARAM(vdev_param_set_non_data_eht_range_ext,
  5696. VDEV_PARAM_NON_DATA_EHT_RANGE_EXT),
  5697. VDEV_PARAM(vdev_param_fixed_puncture_pattern,
  5698. VDEV_PARAM_FIXED_PUNCTURE_PATTERN),
  5699. VDEV_PARAM(vdev_param_set_ehtop, VDEV_PARAM_EHTOPS_0_31),
  5700. VDEV_PARAM(vdev_param_set_eht_puncturing_mode,
  5701. VDEV_PARAM_SET_EHT_PUNCTURING_MODE),
  5702. VDEV_PARAM(vdev_param_mcast_steer, VDEV_PARAM_MCAST_STEERING),
  5703. VDEV_PARAM(vdev_param_set_profile, VDEV_PARAM_SET_PROFILE),
  5704. VDEV_PARAM(vdev_param_vdev_stats_id_update,
  5705. VDEV_PARAM_VDEV_STATS_ID_UPDATE),
  5706. VDEV_PARAM(vdev_param_skip_roam_eapol_4way_handshake,
  5707. VDEV_PARAM_SKIP_ROAM_EAPOL_4WAY_HANDSHAKE),
  5708. VDEV_PARAM(vdev_param_skip_sae_roam_4way_handshake,
  5709. VDEV_PARAM_SKIP_SAE_ROAM_4WAY_HANDSHAKE),
  5710. VDEV_PARAM(vdev_param_tx_power, UNAVAILABLE_PARAM),
  5711. VDEV_PARAM(vdev_param_amsdu_subframe_size_per_ac,
  5712. UNAVAILABLE_PARAM),
  5713. VDEV_PARAM(vdev_param_6ghz_params, VDEV_PARAM_6GHZ_PARAMS),
  5714. VDEV_PARAM(vdev_host_swba_interval, VDEV_HOST_SWBA_INTERVAL),
  5715. VDEV_PARAM(vdev_param_meru_vc, UNAVAILABLE_PARAM),
  5716. VDEV_PARAM(vdev_param_sifs_trigger_rate, UNAVAILABLE_PARAM),
  5717. VDEV_PARAM(vdev_param_ap_keepalive_max_idle_inactive_secs,
  5718. VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS),
  5719. VDEV_PARAM(vdev_param_set_extra_eht_ltf, VDEV_PARAM_EXTRA_EHT_LTF),
  5720. VDEV_PARAM(vdev_param_set_disabled_modes,
  5721. VDEV_PARAM_SET_DISABLED_SCHED_MODES),
  5722. VDEV_PARAM(vdev_param_set_sap_ps_with_twt,
  5723. VDEV_PARAM_SET_SAP_PS_WITH_TWT),
  5724. VDEV_PARAM(vdev_param_chwidth_with_notify,
  5725. VDEV_PARAM_CHWIDTH_WITH_NOTIFY),
  5726. VDEV_PARAM(vdev_param_rtt_11az_tb_max_session_expiry,
  5727. VDEV_PARAM_RTT_11AZ_TB_MAX_SESSION_EXPIRY),
  5728. VDEV_PARAM(vdev_param_wifi_standard_version,
  5729. VDEV_PARAM_WIFI_STANDARD_VERSION),
  5730. VDEV_PARAM(vdev_param_rtt_11az_ntb_max_time_bw_meas,
  5731. VDEV_PARAM_RTT_11AZ_NTB_MAX_TIME_BW_MEAS),
  5732. VDEV_PARAM(vdev_param_rtt_11az_ntb_min_time_bw_meas,
  5733. VDEV_PARAM_RTT_11AZ_NTB_MIN_TIME_BW_MEAS),
  5734. VDEV_PARAM(vdev_param_disable_2g_twt,
  5735. VDEV_PARAM_DISABLE_2G_TWT),
  5736. vdev_param_max,
  5737. } wmi_conv_vdev_param_id;
  5738. /* Host based ENUM IDs for service bits to abstract target enums */
  5739. typedef enum {
  5740. wmi_service_beacon_offload = 0,
  5741. wmi_service_scan_offload,
  5742. wmi_service_roam_offload,
  5743. wmi_service_bcn_miss_offload,
  5744. wmi_service_sta_pwrsave,
  5745. wmi_service_sta_advanced_pwrsave,
  5746. wmi_service_ap_uapsd,
  5747. wmi_service_ap_dfs,
  5748. wmi_service_11ac,
  5749. wmi_service_blockack,
  5750. wmi_service_phyerr,
  5751. wmi_service_bcn_filter,
  5752. wmi_service_rtt,
  5753. wmi_service_ratectrl,
  5754. wmi_service_wow,
  5755. wmi_service_ratectrl_cache,
  5756. wmi_service_iram_tids,
  5757. wmi_service_burst,
  5758. wmi_service_smart_antenna_sw_support,
  5759. wmi_service_gtk_offload,
  5760. wmi_service_scan_sch,
  5761. wmi_service_csa_offload,
  5762. wmi_service_chatter,
  5763. wmi_service_coex_freqavoid,
  5764. wmi_service_packet_power_save,
  5765. wmi_service_force_fw_hang,
  5766. wmi_service_smart_antenna_hw_support,
  5767. wmi_service_gpio,
  5768. wmi_sta_uapsd_basic_auto_trig,
  5769. wmi_sta_uapsd_var_auto_trig,
  5770. wmi_service_sta_keep_alive,
  5771. wmi_service_tx_encap,
  5772. wmi_service_ap_ps_detect_out_of_sync,
  5773. wmi_service_early_rx,
  5774. wmi_service_enhanced_proxy_sta,
  5775. wmi_service_tt,
  5776. wmi_service_atf,
  5777. wmi_service_peer_caching,
  5778. wmi_service_coex_gpio,
  5779. wmi_service_aux_spectral_intf,
  5780. wmi_service_aux_chan_load_intf,
  5781. wmi_service_bss_channel_info_64,
  5782. wmi_service_ext_res_cfg_support,
  5783. wmi_service_mesh,
  5784. wmi_service_restrt_chnl_support,
  5785. wmi_service_roam_scan_offload,
  5786. wmi_service_arpns_offload,
  5787. wmi_service_nlo,
  5788. wmi_service_sta_dtim_ps_modulated_dtim,
  5789. wmi_service_sta_smps,
  5790. wmi_service_fwtest,
  5791. wmi_service_sta_wmmac,
  5792. wmi_service_tdls,
  5793. wmi_service_mcc_bcn_interval_change,
  5794. wmi_service_adaptive_ocs,
  5795. wmi_service_ba_ssn_support,
  5796. wmi_service_filter_ipsec_natkeepalive,
  5797. wmi_service_wlan_hb,
  5798. wmi_service_lte_ant_share_support,
  5799. wmi_service_batch_scan,
  5800. wmi_service_qpower,
  5801. wmi_service_plmreq,
  5802. wmi_service_thermal_mgmt,
  5803. wmi_service_rmc,
  5804. wmi_service_mhf_offload,
  5805. wmi_service_coex_sar,
  5806. wmi_service_bcn_txrate_override,
  5807. wmi_service_nan,
  5808. wmi_service_l1ss_stat,
  5809. wmi_service_estimate_linkspeed,
  5810. wmi_service_obss_scan,
  5811. wmi_service_tdls_offchan,
  5812. wmi_service_tdls_uapsd_buffer_sta,
  5813. wmi_service_tdls_uapsd_sleep_sta,
  5814. wmi_service_ibss_pwrsave,
  5815. wmi_service_lpass,
  5816. wmi_service_extscan,
  5817. wmi_service_d0wow,
  5818. wmi_service_hsoffload,
  5819. wmi_service_roam_ho_offload,
  5820. wmi_service_rx_full_reorder,
  5821. wmi_service_dhcp_offload,
  5822. wmi_service_sta_rx_ipa_offload_support,
  5823. wmi_service_mdns_offload,
  5824. wmi_service_sap_auth_offload,
  5825. wmi_service_dual_band_simultaneous_support,
  5826. wmi_service_ocb,
  5827. wmi_service_ap_arpns_offload,
  5828. wmi_service_per_band_chainmask_support,
  5829. wmi_service_packet_filter_offload,
  5830. wmi_service_mgmt_tx_htt,
  5831. wmi_service_mgmt_tx_wmi,
  5832. wmi_service_ext_msg,
  5833. wmi_service_mawc,
  5834. wmi_service_peer_stats,
  5835. wmi_service_mesh_11s,
  5836. wmi_service_periodic_chan_stat_support,
  5837. wmi_service_tx_mode_push_only,
  5838. wmi_service_tx_mode_push_pull,
  5839. wmi_service_tx_mode_dynamic,
  5840. wmi_service_check_cal_version,
  5841. wmi_service_btcoex_duty_cycle,
  5842. wmi_service_4_wire_coex_support,
  5843. wmi_service_multiple_vdev_restart,
  5844. wmi_service_peer_assoc_conf,
  5845. wmi_service_egap,
  5846. wmi_service_sta_pmf_offload,
  5847. wmi_service_unified_wow_capability,
  5848. wmi_service_enterprise_mesh,
  5849. wmi_service_apf_offload,
  5850. wmi_service_sync_delete_cmds,
  5851. wmi_service_ratectrl_limit_max_min_rates,
  5852. wmi_service_nan_data,
  5853. wmi_service_nan_rtt,
  5854. wmi_service_11ax,
  5855. wmi_service_deprecated_replace,
  5856. wmi_service_tdls_conn_tracker_in_host_mode,
  5857. wmi_service_enhanced_mcast_filter,
  5858. wmi_service_half_rate_quarter_rate_support,
  5859. wmi_service_vdev_rx_filter,
  5860. wmi_service_p2p_listen_offload_support,
  5861. wmi_service_mark_first_wakeup_packet,
  5862. wmi_service_multiple_mcast_filter_set,
  5863. wmi_service_host_managed_rx_reorder,
  5864. wmi_service_flash_rdwr_support,
  5865. wmi_service_wlan_stats_report,
  5866. wmi_service_tx_msdu_id_new_partition_support,
  5867. wmi_service_dfs_phyerr_offload,
  5868. wmi_service_rcpi_support,
  5869. wmi_service_fw_mem_dump_support,
  5870. wmi_service_peer_stats_info,
  5871. wmi_service_regulatory_db,
  5872. wmi_service_11d_offload,
  5873. wmi_service_hw_data_filtering,
  5874. wmi_service_pkt_routing,
  5875. wmi_service_offchan_tx_wmi,
  5876. wmi_service_chan_load_info,
  5877. wmi_service_extended_nss_support,
  5878. wmi_service_ack_timeout,
  5879. wmi_service_widebw_scan,
  5880. wmi_service_bcn_offload_start_stop_support,
  5881. wmi_service_offchan_data_tid_support,
  5882. wmi_service_support_dma,
  5883. wmi_service_8ss_tx_bfee,
  5884. wmi_service_fils_support,
  5885. wmi_service_mawc_support,
  5886. wmi_service_wow_wakeup_by_timer_pattern,
  5887. wmi_service_11k_neighbour_report_support,
  5888. wmi_service_ap_obss_detection_offload,
  5889. wmi_service_bss_color_offload,
  5890. wmi_service_gmac_offload_support,
  5891. wmi_service_host_dfs_check_support,
  5892. wmi_service_dual_beacon_on_single_mac_scc_support,
  5893. wmi_service_dual_beacon_on_single_mac_mcc_support,
  5894. wmi_service_twt_requestor,
  5895. wmi_service_twt_responder,
  5896. wmi_service_listen_interval_offload_support,
  5897. #ifdef OL_ATH_SMART_LOGGING
  5898. wmi_service_smart_logging_support,
  5899. #endif
  5900. wmi_service_infra_mbssid,
  5901. wmi_service_esp_support,
  5902. wmi_service_obss_spatial_reuse,
  5903. wmi_service_per_vdev_chain_support,
  5904. wmi_service_new_htt_msg_format,
  5905. wmi_service_peer_unmap_cnf_support,
  5906. wmi_service_beacon_reception_stats,
  5907. wmi_service_vdev_latency_config,
  5908. wmi_service_nan_dbs_support,
  5909. wmi_service_ndi_dbs_support,
  5910. wmi_service_nan_sap_support,
  5911. wmi_service_ndi_sap_support,
  5912. wmi_service_nan_disable_support,
  5913. wmi_service_sta_plus_sta_support,
  5914. wmi_service_hw_db2dbm_support,
  5915. wmi_service_wlm_stats_support,
  5916. wmi_service_ul_ru26_allowed,
  5917. wmi_service_cfr_capture_support,
  5918. wmi_service_bcast_twt_support,
  5919. wmi_service_wpa3_ft_sae_support,
  5920. wmi_service_wpa3_ft_suite_b_support,
  5921. wmi_service_ft_fils,
  5922. wmi_service_adaptive_11r_support,
  5923. wmi_service_data_stall_recovery_support,
  5924. wmi_service_tx_compl_tsf64,
  5925. wmi_service_vdev_delete_all_peer,
  5926. wmi_service_three_way_coex_config_legacy,
  5927. wmi_service_rx_fse_support,
  5928. wmi_service_dynamic_hw_mode,
  5929. wmi_service_sae_roam_support,
  5930. wmi_service_owe_roam_support,
  5931. wmi_service_ext2_msg,
  5932. wmi_service_6ghz_support,
  5933. wmi_service_bw_165mhz_support,
  5934. wmi_service_bw_restricted_80p80_support,
  5935. wmi_service_packet_capture_support,
  5936. wmi_service_nan_vdev,
  5937. wmi_service_multiple_vdev_restart_ext,
  5938. wmi_service_peer_delete_no_peer_flush_tids_cmd,
  5939. wmi_service_time_sync_ftm,
  5940. wmi_service_nss_ratio_to_host_support,
  5941. wmi_roam_scan_chan_list_to_host_support,
  5942. wmi_beacon_protection_support,
  5943. wmi_service_sta_nan_ndi_four_port,
  5944. wmi_service_host_scan_stop_vdev_all,
  5945. wmi_service_ema_ap_support,
  5946. wmi_support_extend_address,
  5947. wmi_service_srg_srp_spatial_reuse_support,
  5948. wmi_service_suiteb_roam_support,
  5949. wmi_service_no_interband_mcc_support,
  5950. wmi_service_dual_sta_roam_support,
  5951. wmi_service_peer_create_conf,
  5952. wmi_service_configure_roam_trigger_param_support,
  5953. wmi_service_5dot9_ghz_support,
  5954. wmi_service_cfr_ta_ra_as_fp_support,
  5955. wmi_service_cfr_capture_count_support,
  5956. wmi_service_ocv_support,
  5957. wmi_service_ll_stats_per_chan_rx_tx_time,
  5958. wmi_service_thermal_multi_client_support,
  5959. wmi_service_mbss_param_in_vdev_start_support,
  5960. wmi_service_fse_cmem_alloc_support,
  5961. #ifdef FEATURE_CLUB_LL_STATS_AND_GET_STATION
  5962. wmi_service_get_station_in_ll_stats_req,
  5963. #endif
  5964. wmi_service_scan_conf_per_ch_support,
  5965. wmi_service_csa_beacon_template,
  5966. wmi_service_twt_bcast_req_support,
  5967. wmi_service_twt_bcast_resp_support,
  5968. wmi_service_spectral_scan_disabled,
  5969. #ifdef WLAN_SUPPORT_TWT
  5970. wmi_service_twt_nudge,
  5971. wmi_service_all_twt,
  5972. wmi_service_twt_statistics,
  5973. wmi_service_restricted_twt,
  5974. #endif
  5975. wmi_service_wapi_concurrency_supported,
  5976. wmi_service_sap_connected_d3_wow,
  5977. wmi_service_go_connected_d3_wow,
  5978. wmi_service_ext_tpc_reg_support,
  5979. wmi_service_ndi_txbf_support,
  5980. wmi_service_reg_cc_ext_event_support,
  5981. wmi_service_bang_radar_320_support,
  5982. wmi_service_eirp_preferred_support,
  5983. #if defined(CONFIG_BAND_6GHZ)
  5984. wmi_service_lower_6g_edge_ch_supp,
  5985. wmi_service_disable_upper_6g_edge_ch_supp,
  5986. #ifdef CONFIG_AFC_SUPPORT
  5987. wmi_service_afc_support,
  5988. #endif
  5989. #endif
  5990. wmi_service_dcs_awgn_int_support,
  5991. #ifdef WLAN_FEATURE_IGMP_OFFLOAD
  5992. wmi_service_igmp_offload_support,
  5993. #endif
  5994. #ifdef WLAN_FEATURE_11BE
  5995. wmi_service_11be,
  5996. #endif
  5997. #ifdef WLAN_FEATURE_11AX
  5998. #ifdef FEATURE_WLAN_TDLS
  5999. wmi_service_tdls_ax_support,
  6000. #endif
  6001. #endif
  6002. #ifdef WLAN_FEATURE_11BE_MLO
  6003. #ifdef FEATURE_WLAN_TDLS
  6004. wmi_service_tdls_mlo_support,
  6005. #endif
  6006. #endif
  6007. #ifdef WLAN_FEATURE_BIG_DATA_STATS
  6008. wmi_service_big_data_support,
  6009. #endif
  6010. wmi_service_sae_eapol_offload_support,
  6011. wmi_service_ampdu_tx_buf_size_256_support,
  6012. wmi_service_halphy_cal_enable_disable_support,
  6013. wmi_service_halphy_cal_status,
  6014. wmi_service_rtt_ap_initiator_staggered_mode_supported,
  6015. wmi_service_rtt_ap_initiator_bursted_mode_supported,
  6016. wmi_service_ema_multiple_group_supported,
  6017. wmi_service_large_beacon_supported,
  6018. wmi_service_aoa_for_rcc_supported,
  6019. #ifdef WLAN_FEATURE_P2P_P2P_STA
  6020. wmi_service_p2p_p2p_cc_support,
  6021. #endif
  6022. #ifdef THERMAL_STATS_SUPPORT
  6023. wmi_service_thermal_stats_temp_range_supported,
  6024. #endif
  6025. wmi_service_hw_mode_policy_offload_support,
  6026. wmi_service_mgmt_rx_reo_supported,
  6027. wmi_service_phy_dma_byte_swap_support,
  6028. wmi_service_spectral_session_info_support,
  6029. wmi_service_umac_hang_recovery_support,
  6030. wmi_service_mu_snif,
  6031. #ifdef WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE
  6032. wmi_service_dynamic_update_vdev_macaddr_support,
  6033. #endif
  6034. wmi_service_probe_all_bw_support,
  6035. wmi_service_pno_scan_conf_per_ch_support,
  6036. #ifdef QCA_UNDECODED_METADATA_SUPPORT
  6037. wmi_service_fp_phy_err_filter_support,
  6038. #endif
  6039. #ifdef WLAN_FEATURE_11BE_MLO
  6040. wmi_service_mlo_sta_nan_ndi_support,
  6041. #endif
  6042. wmi_service_pdev_rate_config_support,
  6043. wmi_service_multi_peer_group_cmd_support,
  6044. #ifdef WLAN_FEATURE_11BE
  6045. wmi_service_radar_found_chan_freq_eq_center_freq,
  6046. #endif
  6047. wmi_service_pn_replay_check_support,
  6048. #ifdef QCA_RSSI_DB2DBM
  6049. wmi_service_pdev_rssi_dbm_conv_event_support,
  6050. #endif
  6051. #ifdef WIFI_POS_CONVERGED
  6052. wmi_service_rtt_11az_mac_phy_sec_support,
  6053. wmi_service_rtt_11az_mac_sec_support,
  6054. wmi_service_rtt_11az_ntb_support,
  6055. wmi_service_rtt_11az_tb_support,
  6056. wmi_service_rtt_11az_tb_rsta_support,
  6057. #endif
  6058. wmi_service_pktlog_decode_info_support,
  6059. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  6060. wmi_service_roam_stats_per_candidate_frame_info,
  6061. #endif
  6062. #ifdef MULTI_CLIENT_LL_SUPPORT
  6063. wmi_service_configure_multi_client_ll_support,
  6064. #endif
  6065. #ifdef WLAN_VENDOR_HANDOFF_CONTROL
  6066. wmi_service_configure_vendor_handoff_control_support,
  6067. #endif
  6068. #ifdef FEATURE_WLAN_TDLS
  6069. #ifdef WLAN_FEATURE_11AX
  6070. wmi_service_tdls_6g_support,
  6071. #endif
  6072. wmi_service_tdls_wideband_support,
  6073. wmi_service_tdls_concurrency_support,
  6074. #endif
  6075. wmi_service_is_my_mgmt_frame,
  6076. wmi_service_linkspeed_roam_trigger_support,
  6077. #ifdef FEATURE_SET
  6078. wmi_service_feature_set_event_support,
  6079. #endif
  6080. #ifdef WLAN_PDEV_VDEV_SEND_MULTI_PARAM
  6081. wmi_service_combined_set_param_support,
  6082. #endif
  6083. #ifdef WLAN_FEATURE_SR
  6084. wmi_service_obss_per_packet_sr_support,
  6085. #endif
  6086. wmi_service_wpa3_sha384_roam_support,
  6087. wmi_service_multiple_vdev_restart_bmap,
  6088. wmi_service_v1a_v1b_supported,
  6089. wmi_service_self_mld_roam_between_dbs_and_hbs,
  6090. wmi_service_cfr_capture_pdev_id_soc,
  6091. #ifdef QCA_MANUAL_TRIGGERED_ULOFDMA
  6092. wmi_service_manual_ulofdma_trigger_support,
  6093. #endif
  6094. wmi_service_pre_rx_timeout,
  6095. #ifdef QCA_STANDALONE_SOUNDING_TRIGGER
  6096. wmi_service_standalone_sound,
  6097. #endif
  6098. wmi_service_cca_busy_info_for_each_20mhz,
  6099. wmi_service_vdev_param_chwidth_with_notify_support,
  6100. #ifdef WLAN_FEATURE_11BE_MLO
  6101. wmi_service_mlo_tsf_sync,
  6102. wmi_service_n_link_mlo_support,
  6103. wmi_service_per_link_stats_support,
  6104. #endif
  6105. wmi_service_aux_mac_support,
  6106. #ifdef WLAN_ATF_INCREASED_STA
  6107. wmi_service_atf_max_client_512_support,
  6108. #endif
  6109. wmi_service_fisa_dynamic_msdu_aggr_size_support,
  6110. wmi_service_radar_flags_support,
  6111. wmi_services_max,
  6112. } wmi_conv_service_ids;
  6113. #define WMI_SERVICE_UNAVAILABLE 0xFFFF
  6114. /**
  6115. * enum WMI_DBG_PARAM - Debug params
  6116. * @WMI_DBGLOG_LOG_LEVEL: Set the loglevel
  6117. * @WMI_DBGLOG_VAP_ENABLE: Enable VAP level debug
  6118. * @WMI_DBGLOG_VAP_DISABLE: Disable VAP level debug
  6119. * @WMI_DBGLOG_MODULE_ENABLE: Enable MODULE level debug
  6120. * @WMI_DBGLOG_MODULE_DISABLE: Disable MODULE level debug
  6121. * @WMI_DBGLOG_MOD_LOG_LEVEL: Enable MODULE level debug
  6122. * @WMI_DBGLOG_TYPE: set type of the debug output
  6123. * @WMI_DBGLOG_REPORT_ENABLE: Enable Disable debug
  6124. * @WMI_DBGLOG_MOD_WOW_LOG_LEVEL: set the WOW MODULE debug loglevel
  6125. */
  6126. typedef enum {
  6127. WMI_DBGLOG_LOG_LEVEL = 0x1,
  6128. WMI_DBGLOG_VAP_ENABLE,
  6129. WMI_DBGLOG_VAP_DISABLE,
  6130. WMI_DBGLOG_MODULE_ENABLE,
  6131. WMI_DBGLOG_MODULE_DISABLE,
  6132. WMI_DBGLOG_MOD_LOG_LEVEL,
  6133. WMI_DBGLOG_TYPE,
  6134. WMI_DBGLOG_REPORT_ENABLE,
  6135. WMI_DBGLOG_MOD_WOW_LOG_LEVEL
  6136. } WMI_DBG_PARAM;
  6137. /**
  6138. * struct wmi_host_fw_ver - FW version in non-tlv target
  6139. * @sw_version: Version info
  6140. * @sw_version_1: Second dword of version
  6141. */
  6142. struct wmi_host_fw_ver {
  6143. uint32_t sw_version;
  6144. uint32_t sw_version_1;
  6145. };
  6146. /**
  6147. * struct wmi_host_fw_abi_ver - FW version in non-tlv target
  6148. * @sw_version: Version info
  6149. * @abi_version: ABI version
  6150. */
  6151. struct wmi_host_fw_abi_ver {
  6152. uint32_t sw_version;
  6153. uint32_t abi_version;
  6154. };
  6155. /**
  6156. * enum WMI_HOST_WIFI_STANDARD - Supported wifi standard
  6157. * @WMI_HOST_WIFI_STANDARD_4: Wifi standard 4
  6158. * @WMI_HOST_WIFI_STANDARD_5:Wifi standard 5
  6159. * @WMI_HOST_WIFI_STANDARD_6: Wifi standard 6
  6160. * @WMI_HOST_WIFI_STANDARD_6E: Wifi standard 6E
  6161. * @WMI_HOST_WIFI_STANDARD_7: Wifi standard 7
  6162. */
  6163. typedef enum {
  6164. WMI_HOST_WIFI_STANDARD_4 = 0,
  6165. WMI_HOST_WIFI_STANDARD_5 = 1,
  6166. WMI_HOST_WIFI_STANDARD_6 = 2,
  6167. WMI_HOST_WIFI_STANDARD_6E = 3,
  6168. WMI_HOST_WIFI_STANDARD_7 = 4,
  6169. } WMI_HOST_WIFI_STANDARD;
  6170. #ifdef FEATURE_SET
  6171. /**
  6172. * enum WMI_HOST_BAND_CONCURRENCY - Enum to represent supported concurrency
  6173. * @WMI_HOST_BAND_CONCURRENCY_NONE: No concurrency is supported
  6174. * @WMI_HOST_BAND_CONCURRENCY_DBS: DBS is supported
  6175. * @WMI_HOST_BAND_CONCURRENCY_DBS_SBS: DBS and SBS are supported
  6176. */
  6177. typedef enum {
  6178. WMI_HOST_BAND_CONCURRENCY_NONE = 0,
  6179. WMI_HOST_BAND_CONCURRENCY_DBS = 1,
  6180. WMI_HOST_BAND_CONCURRENCY_DBS_SBS = 2,
  6181. } WMI_HOST_BAND_CONCURRENCY;
  6182. /**
  6183. * enum WMI_HOST_VENDOR1_REQ1_VERSION - Vendor 1 requirement 1 version
  6184. * @WMI_HOST_VENDOR1_REQ1_VERSION_3_00: Major version 3, minor version 00
  6185. * @WMI_HOST_VENDOR1_REQ1_VERSION_3_01: Major version 3, minor version 01
  6186. * @WMI_HOST_VENDOR1_REQ1_VERSION_3_20: Major version 3, minor version 20
  6187. * @WMI_HOST_VENDOR1_REQ1_VERSION_3_30: Major version 3, minor version 30
  6188. * @WMI_HOST_VENDOR1_REQ1_VERSION_3_40: Major version 3, minor version 40
  6189. * @WMI_HOST_VENDOR1_REQ1_VERSION_4_00: Major version 4, minor version 00
  6190. */
  6191. typedef enum {
  6192. WMI_HOST_VENDOR1_REQ1_VERSION_3_00 = 0,
  6193. WMI_HOST_VENDOR1_REQ1_VERSION_3_01 = 1,
  6194. WMI_HOST_VENDOR1_REQ1_VERSION_3_20 = 2,
  6195. WMI_HOST_VENDOR1_REQ1_VERSION_3_30 = 3,
  6196. WMI_HOST_VENDOR1_REQ1_VERSION_3_40 = 4,
  6197. WMI_HOST_VENDOR1_REQ1_VERSION_4_00 = 5,
  6198. } WMI_HOST_VENDOR1_REQ1_VERSION;
  6199. /**
  6200. * enum WMI_HOST_VENDOR1_REQ2_VERSION - Vendor 1 requirement 2 version
  6201. * @WMI_HOST_VENDOR1_REQ2_VERSION_3_00: Major version 3, minor version 00
  6202. * @WMI_HOST_VENDOR1_REQ2_VERSION_3_01: Major version 3, minor version 01
  6203. * @WMI_HOST_VENDOR1_REQ2_VERSION_3_20: Major version 3, minor version 20
  6204. * @WMI_HOST_VENDOR1_REQ2_VERSION_3_50: Major version 3, minor version 50
  6205. */
  6206. typedef enum {
  6207. WMI_HOST_VENDOR1_REQ2_VERSION_3_00 = 0,
  6208. WMI_HOST_VENDOR1_REQ2_VERSION_3_01 = 1,
  6209. WMI_HOST_VENDOR1_REQ2_VERSION_3_20 = 2,
  6210. WMI_HOST_VENDOR1_REQ2_VERSION_3_50 = 3,
  6211. } WMI_HOST_VENDOR1_REQ2_VERSION;
  6212. /**
  6213. * enum WMI_HOST_NUM_ANTENNAS - Number of antennas
  6214. * @WMI_HOST_SISO: When 1x1 is supported
  6215. * @WMI_HOST_MIMO_2X2: When 2x2 MIMO is supported
  6216. */
  6217. typedef enum {
  6218. WMI_HOST_SISO = 1,
  6219. WMI_HOST_MIMO_2X2 = 2,
  6220. } WMI_HOST_NUM_ANTENNAS;
  6221. /**
  6222. * struct target_feature_set - Feature set structure
  6223. * @wifi_standard: Wifi standard
  6224. * @concurrency_support: Indicates supported concurrencies
  6225. * @pno_in_unassoc_state: Indicates PNO support in un assoc state
  6226. * @pno_in_assoc_state: Indicates PNO support in assoc state
  6227. * @enable_twt: Enable TWT
  6228. * @enable_twt_requester: Enable TWT requester
  6229. * @enable_twt_broadcast: Enable TWT broadcast
  6230. * @enable_twt_flexible: Enable flexible TWT
  6231. * @enable_wifi_optimizer: indicates wifi optimizer is enabled or disabled
  6232. * @enable_rfc835: indicates rfc835 is enabled or disabled
  6233. * @sap_5g_supported: Indicates SAP 5g is supported or not
  6234. * @sap_6g_supported: Indicates SAP 6g is supported or not
  6235. * @band_capability: Band capability bit map
  6236. * @sap_max_num_clients: Max clients supported by SAP
  6237. * @set_country_code_hal_supported: Indicates country code hal supported or not
  6238. * @get_valid_channel_supported: Indicates get valid channel supported or not
  6239. * @supported_dot11mode: Indicates supported dot11 mode
  6240. * @sap_wpa3_support: Indicates wpa3 support for SAP
  6241. * @vendor_req_1_version: Indicates vendor1 req1 version
  6242. * @roaming_high_cu_roam_trigger: Roaming high CPU trigger enabled or disabled
  6243. * @roaming_emergency_trigger: Roaming emergency trigger enabled or disabled
  6244. * @roaming_btm_trihgger: Roaming btm trigger enabled or disabled
  6245. * @roaming_idle_trigger: Roaming idle trigger enabled or disabled
  6246. * @roaming_wtc_trigger: Roaming wtc trigger enabled or disabled
  6247. * @roaming_btcoex_trigger: Roaming btcoex trigger enabled or disabled
  6248. * @roaming_btw_wpa_wpa2: Roaming btw wpa wpa2 enabled or disabled
  6249. * @roaming_manage_chan_list_api: Roaming manage chan list api enabled or
  6250. * disabled
  6251. * @roaming_adaptive_11r: Roaming adaptive 11r enabled or disabled
  6252. * @roaming_ctrl_api_get_set: Roaming ctrl api get set enabled or disabled
  6253. * @roaming_ctrl_api_reassoc: Roaming ctrl api reassoc enabled or disabled
  6254. * @roaming_ctrl_get_cu: Roaming ctrl get cu enabled or disabled
  6255. * @vendor_req_2_version: Vendor requirement version 2
  6256. * @assurance_disconnect_reason_api: Assurance disconnect API supported or not
  6257. * @frame_pcap_log_mgmt: Frame pcap logging mgmt supported or not
  6258. * @frame_pcap_log_ctrl: Frame pcap logging ctrl supported or not
  6259. * @frame_pcap_log_data: Frame pcap logging data supported or not
  6260. * @security_wpa3_sae_h2e: Security wpa3 sae h2e supported or not
  6261. * @security_wpa3_sae_ft: Security wpa3 sae ft supported or not
  6262. * @security_wpa3_enterp_suitb: Security wpa3 enterprise suitb supported or not
  6263. * @security_wpa3_enterp_suitb_192bit: Security wpa3 enterprise suitb 192bit
  6264. * supported or not
  6265. * @security_fills_sha_256: Security fills sha 256 supported or not
  6266. * @security_fills_sha_384: Security fills sha 384 supported or not
  6267. * @security_fills_sha_256_FT: Security fills sha 256 FT supported or not
  6268. * @security_fills_sha_384_FT: Security fills sha 384 FT supported or not
  6269. * @security_enhanced_open: Security enhanced open supported or not
  6270. * @enable_nan: enable NAN
  6271. * @enable_tdls: Enable tdls
  6272. * @enable_p2p_6e: Enable p2p 6e
  6273. * @enable_tdls_offchannel: Enable tdls offchannel
  6274. * @enable_tdls_capability_enhance: Enable tdls capability enhance
  6275. * @max_tdls_peers: Max tdls peers
  6276. * @sta_dual_p2p_support: Indicates sta+p2p+p2p support
  6277. * @peer_bigdata_getbssinfo_support: Indicates bigdata getbssinfo support
  6278. * @peer_bigdata_assocreject_info_support: Indicates bigdata assoc reject
  6279. * info support
  6280. * @peer_getstainfo_support: Indicates getstainfo support
  6281. * @feature_set_version: Indicates feature set version info
  6282. * @num_antennas: Indicates number of antennas supported
  6283. * @sta_dump_support: Indicates sta dump info support
  6284. */
  6285. struct target_feature_set {
  6286. WMI_HOST_WIFI_STANDARD wifi_standard;
  6287. WMI_HOST_BAND_CONCURRENCY concurrency_support;
  6288. bool pno_in_unassoc_state;
  6289. bool pno_in_assoc_state;
  6290. bool enable_twt;
  6291. bool enable_twt_requester;
  6292. bool enable_twt_broadcast;
  6293. bool enable_twt_flexible;
  6294. bool enable_wifi_optimizer;
  6295. bool enable_rfc835;
  6296. bool sap_5g_supported;
  6297. bool sap_6g_supported;
  6298. uint32_t band_capability;
  6299. uint8_t sap_max_num_clients;
  6300. bool set_country_code_hal_supported;
  6301. bool get_valid_channel_supported;
  6302. uint8_t supported_dot11mode;
  6303. bool sap_wpa3_support;
  6304. WMI_HOST_VENDOR1_REQ1_VERSION vendor_req_1_version;
  6305. bool roaming_high_cu_roam_trigger;
  6306. bool roaming_emergency_trigger;
  6307. bool roaming_btm_trihgger;
  6308. bool roaming_idle_trigger;
  6309. bool roaming_wtc_trigger;
  6310. bool roaming_btcoex_trigger;
  6311. bool roaming_btw_wpa_wpa2;
  6312. bool roaming_manage_chan_list_api;
  6313. bool roaming_adaptive_11r;
  6314. bool roaming_ctrl_api_get_set;
  6315. bool roaming_ctrl_api_reassoc;
  6316. bool roaming_ctrl_get_cu;
  6317. WMI_HOST_VENDOR1_REQ2_VERSION vendor_req_2_version;
  6318. bool assurance_disconnect_reason_api;
  6319. bool frame_pcap_log_mgmt;
  6320. bool frame_pcap_log_ctrl;
  6321. bool frame_pcap_log_data;
  6322. bool security_wpa3_sae_h2e;
  6323. bool security_wpa3_sae_ft;
  6324. bool security_wpa3_enterp_suitb;
  6325. bool security_wpa3_enterp_suitb_192bit;
  6326. bool security_fills_sha_256;
  6327. bool security_fills_sha_384;
  6328. bool security_fills_sha_256_FT;
  6329. bool security_fills_sha_384_FT;
  6330. bool security_enhanced_open;
  6331. bool enable_nan;
  6332. bool enable_tdls;
  6333. bool enable_p2p_6e;
  6334. bool enable_tdls_offchannel;
  6335. bool enable_tdls_capability_enhance;
  6336. uint8_t max_tdls_peers;
  6337. bool sta_dual_p2p_support;
  6338. bool peer_bigdata_getbssinfo_support;
  6339. bool peer_bigdata_assocreject_info_support;
  6340. bool peer_getstainfo_support;
  6341. uint16_t feature_set_version;
  6342. WMI_HOST_NUM_ANTENNAS num_antennas;
  6343. bool sta_dump_support;
  6344. };
  6345. #endif
  6346. /**
  6347. * struct target_resource_config - Resource config sent from host to target
  6348. * abstracted out to include union of both configs
  6349. * @num_vdevs: Number vdevs configured
  6350. * @num_peers: Number of peers
  6351. * @num_active_peers: Number of active peers for peer cache
  6352. * @num_offload_peers: Number of offload peers
  6353. * @num_offload_reorder_buffs: number of offload reorder buffs
  6354. * @num_peer_keys: number of peer keys
  6355. * @num_tids: number of tids
  6356. * @ast_skid_limit: AST skid limit
  6357. * @tx_chain_mask: TX chain mask
  6358. * @rx_chain_mask: RX chain mask
  6359. * @rx_timeout_pri: RX reorder timeout per AC
  6360. * @rx_decap_mode: RX decap mode
  6361. * @scan_max_pending_req: Scan mac pending req
  6362. * @bmiss_offload_max_vdev: Beacom miss offload max vdevs
  6363. * @roam_offload_max_vdev: Roam offload max vdevs
  6364. * @roam_offload_max_ap_profiles: roam offload max ap profiles
  6365. * @num_mcast_groups: num mcast groups
  6366. * @num_mcast_table_elems: number of macst table elems
  6367. * @mcast2ucast_mode: mcast enhance mode
  6368. * @tx_dbg_log_size: DBG log buf size
  6369. * @num_wds_entries: number of WDS entries
  6370. * @dma_burst_size: DMA burst size.
  6371. * @mac_aggr_delim: Mac aggr delim
  6372. * @rx_skip_defrag_timeout_dup_detection_check: Defrag dup check in host?
  6373. * @vow_config: vow configuration
  6374. * @gtk_offload_max_vdev: Max vdevs for GTK offload
  6375. * @num_msdu_desc: Number of msdu desc
  6376. * @max_frag_entries: Max frag entries
  6377. * @scheduler_params:
  6378. * @agile_capability: Target Agile Capability
  6379. * End common
  6380. * @enable_pci_gen: To enable pci gen switch
  6381. * @max_peer_ext_stats: Max peer EXT stats
  6382. * @smart_ant_cap: Smart antenna capabilities
  6383. * @BK_Minfree: BIN configuration for BK traffic
  6384. * @BE_Minfree: BIN configuration for BE traffic
  6385. * @VI_Minfree: BIN configuration for VI traffic
  6386. * @VO_Minfree: BIN configuration for VO traffic
  6387. * @rx_batchmode: RX batch mode
  6388. * @tt_support: Thermal throttling support
  6389. * @atf_config: ATF config
  6390. * @mgmt_comp_evt_bundle_support: bundle support required for mgmt complete evt
  6391. * @tx_msdu_new_partition_id_support: new partiition id support for tx msdu
  6392. * @new_htt_msg_format:
  6393. * @peer_unmap_conf_support: peer unmap conf support in fw
  6394. * @pktcapture_support:
  6395. * @iphdr_pad_config: ipheader pad config
  6396. * @qwrap_config: Qwrap configuration
  6397. * @alloc_frag_desc_for_data_pkt: Frag desc for data
  6398. * Added in MCL
  6399. * @num_tdls_vdevs:
  6400. * @num_tdls_conn_table_entries:
  6401. * @beacon_tx_offload_max_vdev:
  6402. * @num_multicast_filter_entries:
  6403. * @num_wow_filters:
  6404. * @num_keep_alive_pattern:
  6405. * @keep_alive_pattern_size:
  6406. * @max_tdls_concurrent_sleep_sta:
  6407. * @max_tdls_concurrent_buffer_sta:
  6408. * @wmi_send_separate:
  6409. * @num_ocb_vdevs:
  6410. * @num_ocb_channels:
  6411. * @num_ocb_schedules:
  6412. * @num_packet_filters: maximum number of packet filter rules to support
  6413. * @num_max_sta_vdevs: maximum number of concurrent station vdevs to support
  6414. * @num_ns_ext_tuples_cfg:
  6415. * @apf_instruction_size:
  6416. * @max_bssid_rx_filters:
  6417. * @use_pdev_id:
  6418. * @max_num_dbs_scan_duty_cycle: max dbs can duty cycle value
  6419. * @cce_disable: disable cce component
  6420. * @peer_map_unmap_v2: peer_map_unmap_version: configure peer map/unmap version
  6421. * @peer_map_unmap_version:
  6422. * @twt_ap_pdev_count: Number of MAC on which AP TWT feature is supported
  6423. * @twt_ap_sta_count: Max no of STA with which TWT sessions can be formed
  6424. * by the AP
  6425. * @max_bssid_indicator: max number of MBSS VAPs
  6426. * @eapol_minrate_set:
  6427. * @eapol_minrate_ac_set:
  6428. * @tstamp64_en:
  6429. * @three_way_coex_config_legacy_en: enable three way coex legacy feature
  6430. * @max_num_group_keys: max number of group keys supported for VLAN
  6431. * @re_ul_resp: enable 11ax UL response feature (UL-OFDMA) for repeater
  6432. * @ipa_disable: disable IPA feature
  6433. * @ast_1_valid_mask_enable: mask to enable ast index 1
  6434. * @ast_2_valid_mask_enable: mask to enable ast index 2
  6435. * @ast_3_valid_mask_enable: mask to enable ast index 3
  6436. * @ast_0_flow_mask_enable: mask to enable flow support for ast index 0
  6437. * @ast_1_flow_mask_enable: mask to enable flow support for ast index 1
  6438. * @ast_2_flow_mask_enable: mask to enable flow support for ast index 2
  6439. * @ast_3_flow_mask_enable: mask to enable flow support for ast index 3
  6440. * @ast_tid_high_mask_enable: enable tid valid mask for high priority flow
  6441. * @ast_tid_low_mask_enable: enable tid valid mask for low priority flow
  6442. * @nan_separate_iface_support: Separate iface creation for NAN
  6443. * @time_sync_ftm: enable ftm based time sync
  6444. * @is_reg_cc_ext_event_supported: Flag to indicate if reg_cc_ext is supported
  6445. * @is_host_dfs_320mhz_bangradar_supported: Flag to indicate dfs 320 supported
  6446. * @max_rnr_neighbours: Max supported RNR neighbors in multisoc APs
  6447. * @ema_max_vap_cnt: Number of maximum EMA tx-vaps at any instance of time
  6448. * @ema_max_profile_period: Maximum EMA profile periodicity on any pdev
  6449. * @max_ndp_sessions: Max ndp sessions support
  6450. * @max_ndi: max number of ndi host supports
  6451. * @carrier_vow_optimization: configure vow-optimization for carrier-usecase
  6452. * @is_sap_connected_d3wow_enabled: is sap d3wow with connected client supported
  6453. * @is_go_connected_d3wow_enabled: is go d3wow with connected client supported
  6454. * @sae_eapol_offload:
  6455. * @dynamic_pcie_gen_speed_change: is dynamic pcie gen speed change enabled
  6456. * @twt_ack_support_cap:
  6457. * @ema_init_config:
  6458. * @target_cap_flags:
  6459. * @is_6ghz_sp_pwrmode_supp_enabled: Indicates whether AP is capable of
  6460. * operating in SP Power mode in 6GHz.
  6461. * 0 - AP can operate in non-SP power mode.
  6462. * Eg: LPI mode
  6463. * 1 - AP can operate in all power modes,
  6464. * inclusive of SP power mode.
  6465. * @afc_timer_check_disable: Disables AFC Timer related checks in FW
  6466. * @afc_req_id_check_disable: Disables AFC Request ID check in FW
  6467. * @afc_indoor_support: AFC support indoor deployment
  6468. * @afc_outdoor_support: AFC support outdoor deployment
  6469. * @carrier_profile_config: Configuration for per-carrier profile
  6470. * @sawf:
  6471. * @reo_qdesc_shared_addr_table_enabled: Reo shared qref enhancement enabled
  6472. * @num_max_active_vdevs: max number of active virtual devices (VAPs) to
  6473. * support
  6474. * @num_max_mlo_link_per_ml_bss: number of max partner links of a ML BSS
  6475. * @notify_frame_support: capability to mark notify frames from host
  6476. * @dp_peer_meta_data_ver: datapath peer meta data version flag
  6477. * @tx_ilp_enable: capability to support TX ILP from host
  6478. * @rf_path: Indicates RF path 0 primary, 1 secondary
  6479. * @fw_ast_indication_disable: Disable AST indication
  6480. * @is_full_bw_nol_supported: Is full bandwidth needed to put to NOL
  6481. */
  6482. typedef struct {
  6483. uint32_t num_vdevs;
  6484. uint32_t num_peers;
  6485. uint32_t num_active_peers;
  6486. uint32_t num_offload_peers;
  6487. uint32_t num_offload_reorder_buffs;
  6488. uint32_t num_peer_keys;
  6489. uint32_t num_tids;
  6490. uint32_t ast_skid_limit;
  6491. uint32_t tx_chain_mask;
  6492. uint32_t rx_chain_mask;
  6493. uint32_t rx_timeout_pri[4];
  6494. uint32_t rx_decap_mode;
  6495. uint32_t scan_max_pending_req;
  6496. uint32_t bmiss_offload_max_vdev;
  6497. uint32_t roam_offload_max_vdev;
  6498. uint32_t roam_offload_max_ap_profiles;
  6499. uint32_t num_mcast_groups;
  6500. uint32_t num_mcast_table_elems;
  6501. uint32_t mcast2ucast_mode;
  6502. uint32_t tx_dbg_log_size;
  6503. uint32_t num_wds_entries;
  6504. uint32_t dma_burst_size;
  6505. uint32_t mac_aggr_delim;
  6506. uint32_t rx_skip_defrag_timeout_dup_detection_check;
  6507. uint32_t vow_config;
  6508. uint32_t gtk_offload_max_vdev;
  6509. uint32_t num_msdu_desc; /* Number of msdu desc */
  6510. uint32_t max_frag_entries;
  6511. uint32_t scheduler_params;
  6512. uint32_t agile_capability;
  6513. uint32_t enable_pci_gen;
  6514. /* End common */
  6515. /* Added for Beeliner */
  6516. uint32_t max_peer_ext_stats;
  6517. uint32_t smart_ant_cap;
  6518. uint32_t BK_Minfree;
  6519. uint32_t BE_Minfree;
  6520. uint32_t VI_Minfree;
  6521. uint32_t VO_Minfree;
  6522. uint32_t rx_batchmode;
  6523. uint32_t tt_support;
  6524. uint32_t atf_config:1,
  6525. mgmt_comp_evt_bundle_support:1,
  6526. tx_msdu_new_partition_id_support:1,
  6527. new_htt_msg_format:1,
  6528. peer_unmap_conf_support:1,
  6529. pktcapture_support:1;
  6530. uint32_t iphdr_pad_config;
  6531. uint32_t
  6532. qwrap_config:16,
  6533. alloc_frag_desc_for_data_pkt:16;
  6534. /* Added in MCL */
  6535. uint32_t num_tdls_vdevs;
  6536. uint32_t num_tdls_conn_table_entries;
  6537. uint32_t beacon_tx_offload_max_vdev;
  6538. uint32_t num_multicast_filter_entries;
  6539. uint32_t num_wow_filters;
  6540. uint32_t num_keep_alive_pattern;
  6541. uint32_t keep_alive_pattern_size;
  6542. uint32_t max_tdls_concurrent_sleep_sta;
  6543. uint32_t max_tdls_concurrent_buffer_sta;
  6544. uint32_t wmi_send_separate;
  6545. uint32_t num_ocb_vdevs;
  6546. uint32_t num_ocb_channels;
  6547. uint32_t num_ocb_schedules;
  6548. uint32_t num_packet_filters;
  6549. uint32_t num_max_sta_vdevs;
  6550. uint32_t num_ns_ext_tuples_cfg;
  6551. uint32_t apf_instruction_size;
  6552. uint32_t max_bssid_rx_filters;
  6553. uint32_t use_pdev_id;
  6554. uint32_t max_num_dbs_scan_duty_cycle;
  6555. bool cce_disable;
  6556. union {
  6557. bool peer_map_unmap_v2;
  6558. uint8_t peer_map_unmap_version;
  6559. };
  6560. uint32_t twt_ap_pdev_count;
  6561. uint32_t twt_ap_sta_count;
  6562. uint32_t max_bssid_indicator;
  6563. uint32_t eapol_minrate_set:1,
  6564. eapol_minrate_ac_set:2;
  6565. bool tstamp64_en;
  6566. bool three_way_coex_config_legacy_en;
  6567. uint32_t max_num_group_keys;
  6568. uint32_t re_ul_resp;
  6569. bool ipa_disable;
  6570. uint32_t ast_1_valid_mask_enable:1,
  6571. ast_2_valid_mask_enable:1,
  6572. ast_3_valid_mask_enable:1;
  6573. uint32_t ast_0_flow_mask_enable:4,
  6574. ast_1_flow_mask_enable:4,
  6575. ast_2_flow_mask_enable:4,
  6576. ast_3_flow_mask_enable:4,
  6577. ast_tid_high_mask_enable:8,
  6578. ast_tid_low_mask_enable:8;
  6579. bool nan_separate_iface_support;
  6580. bool time_sync_ftm;
  6581. bool is_reg_cc_ext_event_supported;
  6582. bool is_host_dfs_320mhz_bangradar_supported;
  6583. uint32_t max_rnr_neighbours;
  6584. uint32_t ema_max_vap_cnt;
  6585. uint32_t ema_max_profile_period;
  6586. uint32_t max_ndp_sessions;
  6587. uint32_t max_ndi;
  6588. bool carrier_vow_optimization;
  6589. uint32_t is_sap_connected_d3wow_enabled;
  6590. uint32_t is_go_connected_d3wow_enabled;
  6591. bool sae_eapol_offload;
  6592. bool dynamic_pcie_gen_speed_change;
  6593. bool twt_ack_support_cap;
  6594. uint32_t ema_init_config;
  6595. uint32_t target_cap_flags;
  6596. bool is_6ghz_sp_pwrmode_supp_enabled;
  6597. bool afc_timer_check_disable;
  6598. bool afc_req_id_check_disable;
  6599. bool afc_indoor_support;
  6600. bool afc_outdoor_support;
  6601. uint32_t carrier_profile_config;
  6602. bool sawf;
  6603. bool reo_qdesc_shared_addr_table_enabled;
  6604. uint32_t num_max_active_vdevs;
  6605. uint32_t num_max_mlo_link_per_ml_bss;
  6606. uint8_t notify_frame_support;
  6607. uint8_t dp_peer_meta_data_ver;
  6608. #ifdef DP_TX_PACKET_INSPECT_FOR_ILP
  6609. uint8_t tx_ilp_enable;
  6610. #endif
  6611. bool rf_path;
  6612. bool fw_ast_indication_disable;
  6613. bool is_full_bw_nol_supported;
  6614. } target_resource_config;
  6615. /**
  6616. * enum WMI_HOST_START_EVENT_PARAM - Enum replicated for host abstraction
  6617. * with FW
  6618. * @WMI_HOST_VDEV_START_RESP_EVENT: Event response of START CMD
  6619. * @WMI_HOST_VDEV_RESTART_RESP_EVENT: Event response of RESTART CMD
  6620. */
  6621. typedef enum {
  6622. /* Event response of START CMD */
  6623. WMI_HOST_VDEV_START_RESP_EVENT = 0,
  6624. /* Event response of RESTART CMD */
  6625. WMI_HOST_VDEV_RESTART_RESP_EVENT,
  6626. } WMI_HOST_START_EVENT_PARAM;
  6627. /**
  6628. * struct wmi_host_roam_event - host roam event param
  6629. * @vdev_id: vdev id
  6630. * @reason: roam reason
  6631. * @rssi: RSSI
  6632. */
  6633. typedef struct {
  6634. uint32_t vdev_id;
  6635. uint32_t reason;
  6636. uint32_t rssi;
  6637. } wmi_host_roam_event;
  6638. /**
  6639. * enum wmi_host_scan_event_type - Scan event type
  6640. * @WMI_HOST_SCAN_EVENT_STARTED:
  6641. * @WMI_HOST_SCAN_EVENT_COMPLETED:
  6642. * @WMI_HOST_SCAN_EVENT_BSS_CHANNEL:
  6643. * @WMI_HOST_SCAN_EVENT_FOREIGN_CHANNEL:
  6644. * @WMI_HOST_SCAN_EVENT_DEQUEUED:
  6645. * @WMI_HOST_SCAN_EVENT_PREEMPTED:
  6646. * @WMI_HOST_SCAN_EVENT_START_FAILED:
  6647. * @WMI_HOST_SCAN_EVENT_RESTARTED:
  6648. * @WMI_HOST_SCAN_EVENT_FOREIGN_CHANNEL_EXIT:
  6649. * @WMI_HOST_SCAN_EVENT_INVALID:
  6650. * @WMI_HOST_SCAN_EVENT_GPIO_TIMEOUT:
  6651. * @WMI_HOST_SCAN_EVENT_MAX:
  6652. */
  6653. enum wmi_host_scan_event_type {
  6654. WMI_HOST_SCAN_EVENT_STARTED = 0x1,
  6655. WMI_HOST_SCAN_EVENT_COMPLETED = 0x2,
  6656. WMI_HOST_SCAN_EVENT_BSS_CHANNEL = 0x4,
  6657. WMI_HOST_SCAN_EVENT_FOREIGN_CHANNEL = 0x8,
  6658. WMI_HOST_SCAN_EVENT_DEQUEUED = 0x10,
  6659. WMI_HOST_SCAN_EVENT_PREEMPTED = 0x20,
  6660. WMI_HOST_SCAN_EVENT_START_FAILED = 0x40,
  6661. WMI_HOST_SCAN_EVENT_RESTARTED = 0x80,
  6662. WMI_HOST_SCAN_EVENT_FOREIGN_CHANNEL_EXIT = 0x100,
  6663. WMI_HOST_SCAN_EVENT_INVALID = 0x200,
  6664. WMI_HOST_SCAN_EVENT_GPIO_TIMEOUT = 0x400,
  6665. WMI_HOST_SCAN_EVENT_MAX = 0x8000
  6666. };
  6667. /**
  6668. * enum wmi_host_scan_completion_reason - Scan completion event type
  6669. * @WMI_HOST_SCAN_REASON_NONE:
  6670. * @WMI_HOST_SCAN_REASON_COMPLETED:
  6671. * @WMI_HOST_SCAN_REASON_CANCELLED:
  6672. * @WMI_HOST_SCAN_REASON_PREEMPTED:
  6673. * @WMI_HOST_SCAN_REASON_TIMEDOUT:
  6674. * @WMI_HOST_SCAN_REASON_INTERNAL_FAILURE:
  6675. * @WMI_HOST_SCAN_REASON_MAX:
  6676. */
  6677. enum wmi_host_scan_completion_reason {
  6678. WMI_HOST_SCAN_REASON_NONE = 0xFF,
  6679. WMI_HOST_SCAN_REASON_COMPLETED = 0,
  6680. WMI_HOST_SCAN_REASON_CANCELLED = 1,
  6681. WMI_HOST_SCAN_REASON_PREEMPTED = 2,
  6682. WMI_HOST_SCAN_REASON_TIMEDOUT = 3,
  6683. WMI_HOST_SCAN_REASON_INTERNAL_FAILURE = 4,
  6684. WMI_HOST_SCAN_REASON_MAX,
  6685. };
  6686. /**
  6687. * struct wmi_host_scan_event - Scan event response from target
  6688. * @event: event type
  6689. * @reason: Reason for event
  6690. * @channel_freq: channel frequency
  6691. * @requestor: requestor id
  6692. * @scan_id: scan id
  6693. * @vdev_id: vdev id
  6694. */
  6695. typedef struct {
  6696. uint32_t event;
  6697. uint32_t reason;
  6698. uint32_t channel_freq;
  6699. uint32_t requestor;
  6700. uint32_t scan_id;
  6701. uint32_t vdev_id;
  6702. } wmi_host_scan_event;
  6703. /**
  6704. * struct wmi_host_pdev_reserve_ast_entry_event - Reserve AST entry
  6705. * @result: result
  6706. */
  6707. typedef struct {
  6708. uint32_t result;
  6709. } wmi_host_pdev_reserve_ast_entry_event;
  6710. /**
  6711. * struct wmi_host_mcast_ageout_entry - mcast aged-out entry
  6712. * @grp_addr: IPv4/6 mcast group addr
  6713. * @vdev_id: vdev id
  6714. */
  6715. typedef struct {
  6716. uint8_t grp_addr[16];
  6717. uint32_t vdev_id;
  6718. } wmi_host_mcast_ageout_entry;
  6719. /**
  6720. * struct wmi_host_mcast_list_ageout_event - List of mcast entry aged-out
  6721. * @num_entry: Number of mcast entries timed-out
  6722. * @entry: List of wmi_host_mcast_ageout_entry
  6723. */
  6724. typedef struct {
  6725. uint32_t num_entry;
  6726. wmi_host_mcast_ageout_entry entry[1];
  6727. } wmi_host_mcast_list_ageout_event;
  6728. /**
  6729. * enum wmi_host_pdev_tpc_event_offset: offsets of TPC events
  6730. * @WMI_HOST_TX_POWER_MAX: offset of max tx power
  6731. * @WMI_HOST_TX_POWER_MIN: offset of min tx power
  6732. * @WMI_HOST_TX_POWER_LEN: size of tpc values
  6733. */
  6734. enum wmi_host_pdev_tpc_event_offset {
  6735. WMI_HOST_TX_POWER_MAX,
  6736. WMI_HOST_TX_POWER_MIN,
  6737. WMI_HOST_TX_POWER_LEN,
  6738. };
  6739. /**
  6740. * struct wmi_host_pdev_generic_buffer_event
  6741. * @buf_type: Buffer type
  6742. * @frag_id: Frag id
  6743. * @more_frag: more frags pending
  6744. * @buf_len: buffer length
  6745. * @buf_info: variable length buffer
  6746. */
  6747. typedef struct {
  6748. uint32_t buf_type;
  6749. uint32_t frag_id;
  6750. uint32_t more_frag;
  6751. uint32_t buf_len;
  6752. uint32_t buf_info[1];
  6753. } wmi_host_pdev_generic_buffer_event;
  6754. /**
  6755. * enum WMI_HOST_BUFFER_TYPE - Enum for host buffer event
  6756. * @WMI_HOST_BUFFER_TYPE_RATEPWR_TABLE:
  6757. * @WMI_HOST_BUFFER_TYPE_CTL_TABLE:
  6758. */
  6759. enum WMI_HOST_BUFFER_TYPE {
  6760. WMI_HOST_BUFFER_TYPE_RATEPWR_TABLE,
  6761. WMI_HOST_BUFFER_TYPE_CTL_TABLE,
  6762. };
  6763. /**
  6764. * enum WMI_HOST_TPC_CONFIG_EVENT_FLAG - Enums for TPC event
  6765. * @WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_CDD:
  6766. * @WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_STBC:
  6767. * @WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_TXBF:
  6768. */
  6769. typedef enum {
  6770. WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_CDD = 0x1,
  6771. WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_STBC = 0x2,
  6772. WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_TXBF = 0x4,
  6773. } WMI_HOST_TPC_CONFIG_EVENT_FLAG;
  6774. /**
  6775. * enum WMI_HOST_MU_ALGO_TYPE - Medium Utilization evaluation algorithms
  6776. * These algorithms can be complementary rather than exclusive.
  6777. * @WMI_HOST_MU_BASIC_ALGO:
  6778. * @WMI_HOST_MU_PER_BSSID_ALGO:
  6779. * @WMI_HOST_MU_HIDDEN_NODE_ALGO:
  6780. */
  6781. typedef enum {
  6782. WMI_HOST_MU_BASIC_ALGO = 0x1,
  6783. WMI_HOST_MU_PER_BSSID_ALGO = 0x2,
  6784. WMI_HOST_MU_HIDDEN_NODE_ALGO = 0x4,
  6785. } WMI_HOST_MU_ALGO_TYPE;
  6786. /* max MU alg combinations supported by target */
  6787. #define WMI_HOST_MU_MAX_ALGO_TYPE 3
  6788. /**
  6789. * struct wmi_host_mu_db_entry
  6790. * @entry_type: 0=AP, 1=STA, 2=Small Cell(SC)
  6791. * @bssid_mac_addr: Transmitter MAC if entry is WiFi node. PLMNID if SC
  6792. * @tx_addr: Transmitter MAC if entry is WiFi node. PLMNID if SC
  6793. * @avg_duration_us: Avg. duration for which node was transmitting
  6794. * @avg_rssi: Avg. RSSI of all TX packets by node. Unit dBm
  6795. * @mu_percent: % medium utilization by node
  6796. */
  6797. typedef struct {
  6798. uint32_t entry_type;
  6799. wmi_host_mac_addr bssid_mac_addr;
  6800. wmi_host_mac_addr tx_addr;
  6801. uint32_t avg_duration_us;
  6802. uint32_t avg_rssi;
  6803. uint32_t mu_percent;
  6804. } wmi_host_mu_db_entry;
  6805. /**
  6806. * struct wmi_host_mu_report_event - WMI_MU_REPORT_EVENTID
  6807. * @mu_request_id: request id
  6808. * @status_reason: MU_STATUS_REASON
  6809. * @total_mu: MU_ALG_TYPE combinations
  6810. * @num_active_bssid: number of active bssid
  6811. * @hidden_node_mu : hidden node algo MU per bin
  6812. * @num_TA_entries : No. of entries found in MU db report
  6813. */
  6814. typedef struct {
  6815. uint32_t mu_request_id;
  6816. uint32_t status_reason;
  6817. uint32_t total_mu[WMI_HOST_MU_MAX_ALGO_TYPE];
  6818. uint32_t num_active_bssid;
  6819. uint32_t hidden_node_mu[LTEU_MAX_BINS];
  6820. uint32_t num_TA_entries;
  6821. } wmi_host_mu_report_event;
  6822. #define WMI_HOST_TIM_BITMAP_ARRAY_SIZE 17
  6823. /**
  6824. * struct wmi_host_p2p_noa_descriptor - NoA desc in SWBA event
  6825. * @type_count: Absence count
  6826. * @duration: NoA duration
  6827. * @interval: NoA interval
  6828. * @start_time: start time
  6829. */
  6830. typedef struct {
  6831. uint32_t type_count;
  6832. uint32_t duration;
  6833. uint32_t interval;
  6834. uint32_t start_time;
  6835. } wmi_host_p2p_noa_descriptor;
  6836. /* Maximum CCK, OFDM rates supported */
  6837. #define WMI_SA_MAX_CCK_OFDM_RATES 12
  6838. /* Maximum MCS rates supported; 4 rates in each dword */
  6839. /* Maximum MCS ratecodes with 11ax */
  6840. #define WMI_SA_MAX_MCS_RATES 96
  6841. /* Maximum ratecode per BW supported legacy, 20, 40, 80, 160 and 320 MHz */
  6842. #define WMI_SA_MAX_RATE_COUNTERS 6
  6843. /* Maximum rate series used for transmission */
  6844. #define SA_MAX_RATE_SERIES 2
  6845. #define SA_MAX_LEGACY_RATE_DWORDS 3
  6846. #define SA_MAX_HT_RATE_DWORDS 10
  6847. #define SA_BYTES_IN_DWORD 4
  6848. #define SA_MASK_BYTE 0xff
  6849. #define SA_MASK_BYTE3 0xff0000
  6850. /* Support 11ax 11bit ratecode */
  6851. #define SA_MASK_RCODE 0x7ff
  6852. #define SA_WORD_BITS_LEN 16
  6853. #define SA_WORDS_IN_DWORD 2
  6854. #define SA_MAX_LEGACY_RATE_WORDS 6
  6855. #define SA_MAX_HT_RATE_WORDS 48
  6856. #define SA_INVALID_PARAM_VALUE 0xffff
  6857. /* Mask to check PER threshold */
  6858. #define SA_MASK_PER_TH 0xff
  6859. /* Mask to check Minimum packets for Smart Antenna Training */
  6860. #define SA_MASK_MIN_PKTS 0xffff
  6861. /**
  6862. * struct wmi_sa_rate_cap - smart antenna rat capabilities
  6863. * @pdev_id: pdev_id
  6864. * @ratecode_legacy: Rate code array for CCK OFDM
  6865. * @ratecode_20: Rate code array for 20 MHz BW
  6866. * @ratecode_40: Rate code array for 40 MHz BW
  6867. * @ratecode_80: Rate code array for 80 MHz BW
  6868. * @ratecode_160: Rate code array for 160 MHz BW
  6869. * @ratecode_320: Rate code array for 320 MHz BW
  6870. * @ratecount: Max Rate count for each mode
  6871. */
  6872. typedef struct {
  6873. uint16_t ratecode_legacy[WMI_SA_MAX_CCK_OFDM_RATES];
  6874. uint16_t ratecode_20[WMI_SA_MAX_MCS_RATES];
  6875. uint16_t ratecode_40[WMI_SA_MAX_MCS_RATES];
  6876. uint16_t ratecode_80[WMI_SA_MAX_MCS_RATES];
  6877. uint16_t ratecode_160[WMI_SA_MAX_MCS_RATES];
  6878. uint16_t ratecode_320[WMI_SA_MAX_MCS_RATES];
  6879. uint8_t ratecount[WMI_SA_MAX_RATE_COUNTERS];
  6880. } wmi_sa_rate_cap;
  6881. /** Preamble types to be used with VDEV fixed rate configuration */
  6882. typedef enum {
  6883. WMI_HOST_RATE_PREAMBLE_OFDM,
  6884. WMI_HOST_RATE_PREAMBLE_CCK,
  6885. WMI_HOST_RATE_PREAMBLE_HT,
  6886. WMI_HOST_RATE_PREAMBLE_VHT,
  6887. WMI_HOST_RATE_PREAMBLE_HE,
  6888. #ifdef WLAN_FEATURE_11BE
  6889. WMI_HOST_RATE_PREAMBLE_EHT,
  6890. #endif
  6891. } WMI_HOST_RATE_PREAMBLE;
  6892. #define WMI_HOST_FIXED_RATE_NONE (0xff)
  6893. /** preablbe long */
  6894. #define WMI_HOST_VDEV_PREAMBLE_LONG 0x1
  6895. /** preablbe short */
  6896. #define WMI_HOST_VDEV_PREAMBLE_SHORT 0x2
  6897. /** found a better AP */
  6898. #define WMI_HOST_ROAM_REASON_BETTER_AP 0x1
  6899. /** beacon miss detected */
  6900. #define WMI_HOST_ROAM_REASON_BMISS 0x2
  6901. /** deauth/disassoc received */
  6902. #define WMI_HOST_ROAM_REASON_DEAUTH 0x2
  6903. /** connected AP's low rssi condition detected */
  6904. #define WMI_HOST_ROAM_REASON_LOW_RSSI 0x3
  6905. /** found another AP that matches SSID and Security profile in
  6906. * WMI_ROAM_AP_PROFILE, found during scan triggered upon FINAL_BMISS
  6907. */
  6908. #define WMI_HOST_ROAM_REASON_SUITABLE_AP 0x4
  6909. /** LFR3.0 roaming failed, indicate the disconnection to host */
  6910. #define WMI_HOST_ROAM_REASON_HO_FAILED 0x5
  6911. /** values for vdev_type */
  6912. #define WMI_HOST_VDEV_TYPE_AP 0x1
  6913. #define WMI_HOST_VDEV_TYPE_STA 0x2
  6914. #define WMI_HOST_VDEV_TYPE_IBSS 0x3
  6915. #define WMI_HOST_VDEV_TYPE_MONITOR 0x4
  6916. /** values for vdev_subtype */
  6917. #define WMI_HOST_VDEV_SUBTYPE_P2P_DEVICE 0x1
  6918. #define WMI_HOST_VDEV_SUBTYPE_P2P_CLIENT 0x2
  6919. #define WMI_HOST_VDEV_SUBTYPE_P2P_GO 0x3
  6920. #define WMI_HOST_VDEV_SUBTYPE_PROXY_STA 0x4
  6921. #define WMI_HOST_VDEV_SUBTYPE_MESH 0x5
  6922. #define WMI_HOST_MGMT_TID 17
  6923. /* Disable aging & learning */
  6924. #define WMI_HOST_WDS_FLAG_STATIC 0x1
  6925. #ifdef ENABLE_HOST_TO_TARGET_CONVERSION
  6926. #define PEER_PARAM(name) WMI_HOST_ ## name
  6927. #else
  6928. #define PEER_PARAM(name) WMI_HOST_ ## name = WMI_ ## name
  6929. #endif /* ENABLE_HOST_TO_TARGET_CONVERSION */
  6930. /*
  6931. * Peer param enum abstracted from target
  6932. * @WMI_HOST_PEER_MIMO_PS_STATE: mimo powersave state
  6933. * @WMI_HOST_PEER_AMPDU: enable/disable AMPDU . initial value (enabled)
  6934. * @WMI_HOST_PEER_AUTHORIZE: authorize/unauthorize peer.
  6935. * initial value is unauthorized (0)
  6936. * @WMI_HOST_PEER_CHWIDTH: Peer channel bandwidth
  6937. * @WMI_HOST_PEER_NSS: peer NSS
  6938. * @WMI_HOST_PEER_USE_4ADDR: USE 4 ADDR
  6939. * @WMI_HOST_PEER_EXT_STATS_ENABLE: Enable extended peer stats
  6940. * NON-TLV special
  6941. * @WMI_HOST_PEER_USE_FIXED_PWR: Use FIXED Pwr,
  6942. * @WMI_HOST_PEER_PARAM_FIXED_RATE: Set peer fixed rate
  6943. * @WMI_HOST_PEER_SET_MU_ALLOWLIST: Allowlist peer TIDs
  6944. * @WMI_HOST_PEER_MEMBERSHIP: set group membership status
  6945. * @WMI_HOST_PEER_USERPOS: User POS
  6946. * @WMI_HOST_PEER_CRIT_PROTO_HINT_ENABLED: Critical Protocol Hint enabled
  6947. * @WMI_HOST_PEER_TX_FAIL_CNT_THR: Tx Fail count threshold
  6948. * @WMI_HOST_PEER_SET_HW_RETRY_CTS2S: Set hardware retry CTS to self
  6949. * @WMI_HOST_PEER_IBSS_ATIM_WINDOW_LENGTH: IBSS ATIM window length
  6950. * @WMI_HOST_PEER_PHYMODE: Peer Phymode
  6951. * @WMI_HOST_PEER_SET_MAX_TX_RATE: Set MAX Tx rate
  6952. * @WMI_HOST_PEER_SET_DEFAULT_ROUTING: Set default Rx routing
  6953. * @WMI_HOST_PEER_SET_MIN_TX_RATE: Set Minimum T rate
  6954. * @WMI_HOST_PEER_NSS_VHT160: peer NSS for 160Mhz
  6955. * @WMI_HOST_PEER_NSS_VHT80_80: peer NSS for 80+80MHz
  6956. * @WMI_HOST_PEER_PARAM_SU_TXBF_SOUNDING_INTERVAL: Set SU sounding interval
  6957. * @WMI_HOST_PEER_PARAM_MU_TXBF_SOUNDING_INTERVAL: Set MU sounding interval
  6958. * @WMI_HOST_PEER_PARAM_TXBF_SOUNDING_ENABLE: Enable sounding interval set
  6959. * @WMI_HOST_PEER_PARAM_MU_ENABLE: Enable MU support
  6960. * @WMI_HOST_PEER_PARAM_OFDMA_ENABLE: Enable OFDMA support
  6961. * @WMI_HOST_PEER_PARAM_ENABLE_FT: Notify FT roam
  6962. * @WMI_HOST_PEER_CHWIDTH_PUNCTURE_20MHZ_BITMAP: Peer channel bandwidth and
  6963. * puncture bitmap
  6964. * @WMI_HOST_PEER_FT_ROAMING_PEER_UPDATE: Reset PN value on
  6965. * every roam event
  6966. */
  6967. enum {
  6968. PEER_PARAM(PEER_MIMO_PS_STATE),
  6969. PEER_PARAM(PEER_AMPDU),
  6970. PEER_PARAM(PEER_AUTHORIZE),
  6971. PEER_PARAM(PEER_CHWIDTH),
  6972. PEER_PARAM(PEER_NSS),
  6973. PEER_PARAM(PEER_USE_4ADDR),
  6974. #if defined(WMI_NON_TLV_SUPPORT) || defined(WMI_TLV_AND_NON_TLV_SUPPORT)
  6975. PEER_PARAM(PEER_EXT_STATS_ENABLE),
  6976. #endif
  6977. PEER_PARAM(PEER_USE_FIXED_PWR),
  6978. PEER_PARAM(PEER_PARAM_FIXED_RATE),
  6979. PEER_PARAM(PEER_SET_MU_ALLOWLIST),
  6980. PEER_PARAM(PEER_MEMBERSHIP),
  6981. PEER_PARAM(PEER_USERPOS),
  6982. PEER_PARAM(PEER_CRIT_PROTO_HINT_ENABLED),
  6983. PEER_PARAM(PEER_TX_FAIL_CNT_THR),
  6984. PEER_PARAM(PEER_SET_HW_RETRY_CTS2S),
  6985. PEER_PARAM(PEER_IBSS_ATIM_WINDOW_LENGTH),
  6986. PEER_PARAM(PEER_PHYMODE),
  6987. PEER_PARAM(PEER_SET_MAX_TX_RATE),
  6988. PEER_PARAM(PEER_SET_DEFAULT_ROUTING),
  6989. PEER_PARAM(PEER_SET_MIN_TX_RATE),
  6990. PEER_PARAM(PEER_NSS_VHT160),
  6991. PEER_PARAM(PEER_NSS_VHT80_80),
  6992. PEER_PARAM(PEER_PARAM_SU_TXBF_SOUNDING_INTERVAL),
  6993. PEER_PARAM(PEER_PARAM_MU_TXBF_SOUNDING_INTERVAL),
  6994. PEER_PARAM(PEER_PARAM_TXBF_SOUNDING_ENABLE),
  6995. PEER_PARAM(PEER_PARAM_MU_ENABLE),
  6996. PEER_PARAM(PEER_PARAM_OFDMA_ENABLE),
  6997. PEER_PARAM(PEER_PARAM_ENABLE_FT),
  6998. PEER_PARAM(PEER_CHWIDTH_PUNCTURE_20MHZ_BITMAP),
  6999. PEER_PARAM(PEER_FT_ROAMING_PEER_UPDATE),
  7000. };
  7001. #define WMI_HOST_PEER_MIMO_PS_NONE 0x0
  7002. #define WMI_HOST_PEER_MIMO_PS_STATIC 0x1
  7003. #define WMI_HOST_PEER_MIMO_PS_DYNAMIC 0x2
  7004. typedef enum {
  7005. HOST_PLATFORM_HIGH_PERF,
  7006. HOST_PLATFORM_LOW_PERF,
  7007. HOST_PLATFORM_LOW_PERF_NO_FETCH,
  7008. } HOST_PLATFORM_TYPE;
  7009. enum wmi_host_sta_ps_mode {
  7010. /** enable power save for the given STA VDEV */
  7011. WMI_HOST_STA_PS_MODE_DISABLED = 0,
  7012. /** disable power save for a given STA VDEV */
  7013. WMI_HOST_STA_PS_MODE_ENABLED = 1,
  7014. };
  7015. enum wmi_host_sta_powersave_param {
  7016. /**
  7017. * Controls how frames are retrievd from AP while STA is sleeping
  7018. *
  7019. * (see enum wmi_sta_ps_param_rx_wake_policy)
  7020. */
  7021. WMI_HOST_STA_PS_PARAM_RX_WAKE_POLICY = 0,
  7022. /**
  7023. * The STA will go active after this many TX
  7024. *
  7025. * (see enum wmi_sta_ps_param_tx_wake_threshold)
  7026. */
  7027. WMI_HOST_STA_PS_PARAM_TX_WAKE_THRESHOLD = 1,
  7028. /**
  7029. * Number of PS-Poll to send before STA wakes up
  7030. *
  7031. * (see enum wmi_sta_ps_param_pspoll_count)
  7032. *
  7033. */
  7034. WMI_HOST_STA_PS_PARAM_PSPOLL_COUNT = 2,
  7035. /**
  7036. * TX/RX inactivity time in msec before going to sleep.
  7037. *
  7038. * The power save SM will monitor tx/rx activity on the VDEV, if no
  7039. * activity for the specified msec of the parameter
  7040. * the Power save SM will go to sleep.
  7041. */
  7042. WMI_HOST_STA_PS_PARAM_INACTIVITY_TIME = 3,
  7043. /**
  7044. * Set uapsd configuration.
  7045. *
  7046. * (see enum wmi_sta_ps_param_uapsd)
  7047. */
  7048. WMI_HOST_STA_PS_PARAM_UAPSD = 4,
  7049. };
  7050. /* prefix used by scan requestor ids on the host
  7051. * replicated here form wmi_unified.h*/
  7052. #define WMI_HOST_P_SCAN_REQUESTOR_ID_PREFIX 0xA000
  7053. /* prefix used by scan request ids generated on the host */
  7054. /* host cycles through the lower 12 bits to generate ids */
  7055. #define WMI_HOST_P_SCAN_REQ_ID_PREFIX 0xA000
  7056. #define WMI_HOST_RC_DS_FLAG 0x01 /* Dual stream flag */
  7057. #define WMI_HOST_RC_CW40_FLAG 0x02 /* CW 40 */
  7058. #define WMI_HOST_RC_SGI_FLAG 0x04 /* Short Guard Interval */
  7059. #define WMI_HOST_RC_HT_FLAG 0x08 /* HT */
  7060. #define WMI_HOST_RC_RTSCTS_FLAG 0x10 /* RTS-CTS */
  7061. #define WMI_HOST_RC_TX_STBC_FLAG 0x20 /* TX STBC */
  7062. #define WMI_HOST_RC_RX_STBC_FLAG 0xC0 /* RX STBC ,2 bits */
  7063. #define WMI_HOST_RC_RX_STBC_FLAG_S 6 /* RX STBC ,2 bits */
  7064. #define WMI_HOST_RC_WEP_TKIP_FLAG 0x100 /* WEP/TKIP encryption */
  7065. #define WMI_HOST_RC_TS_FLAG 0x200 /* Three stream flag */
  7066. #define WMI_HOST_RC_UAPSD_FLAG 0x400 /* UAPSD Rate Control */
  7067. /** HT Capabilities*/
  7068. #define WMI_HOST_HT_CAP_ENABLED 0x0001 /* HT Enabled/ disabled */
  7069. /* Short Guard Interval with HT20 */
  7070. #define WMI_HOST_HT_CAP_HT20_SGI 0x0002
  7071. #define WMI_HOST_HT_CAP_DYNAMIC_SMPS 0x0004 /* Dynamic MIMO powersave */
  7072. #define WMI_HOST_HT_CAP_TX_STBC 0x0008 /* B3 TX STBC */
  7073. #define WMI_HOST_HT_CAP_TX_STBC_MASK_SHIFT 3
  7074. #define WMI_HOST_HT_CAP_RX_STBC 0x0030 /* B4-B5 RX STBC */
  7075. #define WMI_HOST_HT_CAP_RX_STBC_MASK_SHIFT 4
  7076. #define WMI_HOST_HT_CAP_LDPC 0x0040 /* LDPC supported */
  7077. #define WMI_HOST_HT_CAP_L_SIG_TXOP_PROT 0x0080 /* L-SIG TXOP Protection */
  7078. #define WMI_HOST_HT_CAP_MPDU_DENSITY 0x0700 /* MPDU Density */
  7079. #define WMI_HOST_HT_CAP_MPDU_DENSITY_MASK_SHIFT 8
  7080. #define WMI_HOST_HT_CAP_HT40_SGI 0x0800
  7081. #define WMI_HOST_HT_CAP_RX_LDPC 0x1000
  7082. #define WMI_HOST_HT_CAP_TX_LDPC 0x2000
  7083. #define WMI_HOST_HT_CAP_IBF_BFER 0x4000
  7084. /* These macros should be used when we wish to advertise STBC support for
  7085. * only 1SS or 2SS or 3SS. */
  7086. #define WMI_HOST_HT_CAP_RX_STBC_1SS 0x0010 /* B4-B5 RX STBC */
  7087. #define WMI_HOST_HT_CAP_RX_STBC_2SS 0x0020 /* B4-B5 RX STBC */
  7088. #define WMI_HOST_HT_CAP_RX_STBC_3SS 0x0030 /* B4-B5 RX STBC */
  7089. #define WMI_HOST_HT_CAP_DEFAULT_ALL (WMI_HOST_HT_CAP_ENABLED | \
  7090. WMI_HOST_HT_CAP_HT20_SGI | \
  7091. WMI_HOST_HT_CAP_HT40_SGI | \
  7092. WMI_HOST_HT_CAP_TX_STBC | \
  7093. WMI_HOST_HT_CAP_RX_STBC | \
  7094. WMI_HOST_HT_CAP_LDPC)
  7095. /* WMI_HOST_VHT_CAP_* these maps to ieee 802.11ac vht capability information
  7096. field. The fields not defined here are not supported, or reserved.
  7097. Do not change these masks and if you have to add new one follow the
  7098. bitmask as specified by 802.11ac draft.
  7099. */
  7100. #define WMI_HOST_VHT_CAP_MAX_MPDU_LEN_MASK 0x00000003
  7101. #define WMI_HOST_VHT_CAP_RX_LDPC 0x00000010
  7102. #define WMI_HOST_VHT_CAP_SGI_80MHZ 0x00000020
  7103. #define WMI_HOST_VHT_CAP_SGI_160MHZ 0x00000040
  7104. #define WMI_HOST_VHT_CAP_TX_STBC 0x00000080
  7105. #define WMI_HOST_VHT_CAP_RX_STBC_MASK 0x00000300
  7106. #define WMI_HOST_VHT_CAP_RX_STBC_MASK_SHIFT 8
  7107. #define WMI_HOST_VHT_CAP_SU_BFER 0x00000800
  7108. #define WMI_HOST_VHT_CAP_SU_BFEE 0x00001000
  7109. #define WMI_HOST_VHT_CAP_MAX_CS_ANT_MASK 0x0000E000
  7110. #define WMI_HOST_VHT_CAP_MAX_CS_ANT_MASK_SHIFT 13
  7111. #define WMI_HOST_VHT_CAP_MAX_SND_DIM_MASK 0x00070000
  7112. #define WMI_HOST_VHT_CAP_MAX_SND_DIM_MASK_SHIFT 16
  7113. #define WMI_HOST_VHT_CAP_MU_BFER 0x00080000
  7114. #define WMI_HOST_VHT_CAP_MU_BFEE 0x00100000
  7115. #define WMI_HOST_VHT_CAP_MAX_AMPDU_LEN_EXP 0x03800000
  7116. #define WMI_HOST_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIT 23
  7117. #define WMI_HOST_VHT_CAP_RX_FIXED_ANT 0x10000000
  7118. #define WMI_HOST_VHT_CAP_TX_FIXED_ANT 0x20000000
  7119. #define WMI_HOST_VHT_CAP_MAX_MPDU_LEN_11454 0x00000002
  7120. /* These macros should be used when we wish to advertise STBC support for
  7121. * only 1SS or 2SS or 3SS. */
  7122. #define WMI_HOST_VHT_CAP_RX_STBC_1SS 0x00000100
  7123. #define WMI_HOST_VHT_CAP_RX_STBC_2SS 0x00000200
  7124. #define WMI_HOST_VHT_CAP_RX_STBC_3SS 0x00000300
  7125. #define WMI_HOST_VHT_CAP_DEFAULT_ALL (WMI_HOST_VHT_CAP_MAX_MPDU_LEN_11454 | \
  7126. WMI_HOST_VHT_CAP_SGI_80MHZ | \
  7127. WMI_HOST_VHT_CAP_TX_STBC | \
  7128. WMI_HOST_VHT_CAP_RX_STBC_MASK | \
  7129. WMI_HOST_VHT_CAP_RX_LDPC | \
  7130. WMI_HOST_VHT_CAP_MAX_AMPDU_LEN_EXP | \
  7131. WMI_HOST_VHT_CAP_RX_FIXED_ANT | \
  7132. WMI_HOST_VHT_CAP_TX_FIXED_ANT)
  7133. /* Interested readers refer to Rx/Tx MCS Map definition as defined in
  7134. 802.11ac
  7135. */
  7136. #define WMI_HOST_VHT_MAX_MCS_4_SS_MASK(r, ss) ((3 & (r)) << (((ss) - 1) << 1))
  7137. #define WMI_HOST_VHT_MAX_SUPP_RATE_MASK 0x1fff0000
  7138. #define WMI_HOST_VHT_MAX_SUPP_RATE_MASK_SHIFT 16
  7139. /** U-APSD configuration of peer station from (re)assoc request and TSPECs */
  7140. enum wmi_host_ap_ps_param_uapsd {
  7141. WMI_HOST_AP_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
  7142. WMI_HOST_AP_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1),
  7143. WMI_HOST_AP_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2),
  7144. WMI_HOST_AP_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3),
  7145. WMI_HOST_AP_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4),
  7146. WMI_HOST_AP_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5),
  7147. WMI_HOST_AP_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6),
  7148. WMI_HOST_AP_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7),
  7149. };
  7150. /** U-APSD maximum service period of peer station */
  7151. enum wmi_host_ap_ps_peer_param_max_sp {
  7152. WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_UNLIMITED = 0,
  7153. WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_2 = 1,
  7154. WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_4 = 2,
  7155. WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_6 = 3,
  7156. /* keep last! */
  7157. MAX_HOST_WMI_AP_PS_PEER_PARAM_MAX_SP,
  7158. };
  7159. #define WMI_HOST_UAPSD_AC_TYPE_DELI 0
  7160. #define WMI_HOST_UAPSD_AC_TYPE_TRIG 1
  7161. #define WMI_HOST_UAPSD_AC_BIT_MASK(ac, type) \
  7162. ((type == WMI_HOST_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) :\
  7163. (1<<((ac<<1)+1)))
  7164. enum wmi_host_ap_ps_peer_param_wnm_sleep {
  7165. WMI_HOST_AP_PS_PEER_PARAM_WNM_SLEEP_ENABLE,
  7166. WMI_HOST_AP_PS_PEER_PARAM_WNM_SLEEP_DISABLE,
  7167. };
  7168. enum wmi_host_ap_ps_peer_param {
  7169. /** Set uapsd configuration for a given peer.
  7170. *
  7171. * This will include the delivery and trigger enabled state for every AC.
  7172. * The host MLME needs to set this based on AP capability and stations
  7173. * request Set in the association request received from the station.
  7174. *
  7175. * Lower 8 bits of the value specify the UAPSD configuration.
  7176. *
  7177. * (see enum wmi_ap_ps_param_uapsd)
  7178. * The default value is 0.
  7179. */
  7180. WMI_HOST_AP_PS_PEER_PARAM_UAPSD = 0,
  7181. /**
  7182. * Set the service period for a UAPSD capable station
  7183. *
  7184. * The service period from wme ie in the (re)assoc request frame.
  7185. *
  7186. * (see enum wmi_ap_ps_peer_param_max_sp)
  7187. */
  7188. WMI_HOST_AP_PS_PEER_PARAM_MAX_SP = 1,
  7189. /** Time in seconds for aging out buffered frames
  7190. * for STA in power save */
  7191. WMI_HOST_AP_PS_PEER_PARAM_AGEOUT_TIME = 2,
  7192. /** Specify frame types that are considered SIFS
  7193. * RESP trigger frame */
  7194. WMI_HOST_AP_PS_PEER_PARAM_SIFS_RESP_FRMTYPE = 3,
  7195. /** Specifies the trigger state of TID.
  7196. * Valid only for UAPSD frame type */
  7197. WMI_HOST_AP_PS_PEER_PARAM_SIFS_RESP_UAPSD = 4,
  7198. /** Specifies the WNM sleep state of a STA */
  7199. WMI_HOST_AP_PS_PEER_PARAM_WNM_SLEEP = 5,
  7200. };
  7201. #define WMI_HOST_RXERR_CRC 0x01 /* CRC error on frame */
  7202. #define WMI_HOST_RXERR_DECRYPT 0x08 /* non-Michael decrypt error */
  7203. #define WMI_HOST_RXERR_MIC 0x10 /* Michael MIC decrypt error */
  7204. #define WMI_HOST_RXERR_KEY_CACHE_MISS 0x20 /* No/incorrect key matter in h/w */
  7205. #define WMI_HOST_RXERR_PN 0x80 /* invalid PN in frame */
  7206. enum wmi_host_sta_ps_param_rx_wake_policy {
  7207. /* Wake up when ever there is an RX activity on the VDEV. In this mode
  7208. * the Power save SM(state machine) will come out of sleep by either
  7209. * sending null frame (or) a data frame (with PS==0) in response to TIM
  7210. * bit set in the received beacon frame from AP.
  7211. */
  7212. WMI_HOST_STA_PS_RX_WAKE_POLICY_WAKE = 0,
  7213. /* Here the power save state machine will not wakeup in response to TIM
  7214. * bit, instead it will send a PSPOLL (or) UASPD trigger based on UAPSD
  7215. * configuration setup by WMISET_PS_SET_UAPSD WMI command. When all
  7216. * access categories are delivery-enabled, the station will send a UAPSD
  7217. * trigger frame, otherwise it will send a PS-Poll.
  7218. */
  7219. WMI_HOST_STA_PS_RX_WAKE_POLICY_POLL_UAPSD = 1,
  7220. };
  7221. enum wmi_host_sta_ps_param_pspoll_count {
  7222. WMI_HOST_STA_PS_PSPOLL_COUNT_NO_MAX = 0,
  7223. /* Values greater than 0 indicate the maximum number of PS-Poll frames FW
  7224. * will send before waking up.
  7225. */
  7226. };
  7227. /** Number of tx frames/beacon that cause the power save SM to wake up.
  7228. *
  7229. * Value 1 causes the SM to wake up for every TX. Value 0 has a special
  7230. * meaning, It will cause the SM to never wake up. This is useful if you want
  7231. * to keep the system to sleep all the time for some kind of test mode . host
  7232. * can change this parameter any time. It will affect at the next tx frame.
  7233. */
  7234. enum wmi_host_sta_ps_param_tx_wake_threshold {
  7235. WMI_HOST_STA_PS_TX_WAKE_THRESHOLD_NEVER = 0,
  7236. WMI_HOST_STA_PS_TX_WAKE_THRESHOLD_ALWAYS = 1,
  7237. /* Values greater than one indicate that many TX attempts per beacon
  7238. * interval before the STA will wake up
  7239. */
  7240. };
  7241. /*
  7242. * Transmit power scale factor.
  7243. *
  7244. */
  7245. typedef enum {
  7246. WMI_HOST_TP_SCALE_MAX = 0, /* no scaling (default) */
  7247. WMI_HOST_TP_SCALE_50 = 1, /* 50% of max (-3 dBm) */
  7248. WMI_HOST_TP_SCALE_25 = 2, /* 25% of max (-6 dBm) */
  7249. WMI_HOST_TP_SCALE_12 = 3, /* 12% of max (-9 dBm) */
  7250. WMI_HOST_TP_SCALE_6 = 4, /* 6% of max (-12 dBm) */
  7251. WMI_HOST_TP_SCALE_MIN = 5, /* min, but still on */
  7252. WMI_HOST_TP_SCALE_SIZE = 6, /* max num of enum */
  7253. } WMI_HOST_TP_SCALE;
  7254. enum {
  7255. WMI_HOST_RATEPWR_TABLE_OPS_SET,
  7256. WMI_HOST_RATEPWR_TABLE_OPS_GET,
  7257. };
  7258. /* reserved up through 0xF */
  7259. /**
  7260. * struct _hp_dcs_mib_stats - WLAN IM stats from target to host
  7261. * Below statistics are sent from target to host periodically.
  7262. * These are collected at target as long as target is running
  7263. * and target chip is not in sleep.
  7264. * @listen_time:
  7265. * @reg_tx_frame_cnt:
  7266. * @reg_rx_frame_cnt:
  7267. * @reg_rxclr_cnt:
  7268. * @reg_cycle_cnt: delta cycle count
  7269. * @reg_rxclr_ext_cnt:
  7270. * @reg_ofdm_phyerr_cnt:
  7271. * @reg_cck_phyerr_cnt: CCK err count since last reset, read from register
  7272. */
  7273. typedef struct _hp_dcs_mib_stats {
  7274. int32_t listen_time;
  7275. uint32_t reg_tx_frame_cnt;
  7276. uint32_t reg_rx_frame_cnt;
  7277. uint32_t reg_rxclr_cnt;
  7278. uint32_t reg_cycle_cnt;
  7279. uint32_t reg_rxclr_ext_cnt;
  7280. uint32_t reg_ofdm_phyerr_cnt;
  7281. uint32_t reg_cck_phyerr_cnt;
  7282. } wmi_host_dcs_mib_stats_t;
  7283. /**
  7284. * struct _wmi_host_dcs_im_tgt_stats - DCS IM target stats
  7285. * @reg_tsf32: current running TSF from the TSF-1
  7286. * @last_ack_rssi: Known last frame rssi, in case of multiple stations, if
  7287. * and at different ranges, this would not guarantee that
  7288. * this is the least rssi.
  7289. * @tx_waste_time: Sum of all the failed durations in the last
  7290. * one second interval.
  7291. * @rx_time: count how many times the hal_rxerr_phy is marked, in this
  7292. * time period
  7293. * @phyerr_cnt:
  7294. * @mib_stats: wmi_host_dcs_mib_stats_t - collected mib stats as explained
  7295. * in mib structure
  7296. * @chan_nf: Channel noise floor (Units are in dBm)
  7297. * @my_bss_rx_cycle_count: BSS rx cycle count
  7298. * @reg_rxclr_ext40_cnt: extension channel 40Mhz rxclear count
  7299. * @reg_rxclr_ext80_cnt: extension channel 80Mhz rxclear count
  7300. */
  7301. typedef struct _wmi_host_dcs_im_tgt_stats {
  7302. uint32_t reg_tsf32;
  7303. uint32_t last_ack_rssi;
  7304. uint32_t tx_waste_time;
  7305. uint32_t rx_time;
  7306. uint32_t phyerr_cnt;
  7307. wmi_host_dcs_mib_stats_t mib_stats;
  7308. uint32_t chan_nf;
  7309. uint32_t my_bss_rx_cycle_count;
  7310. /* these fields are added here for backward compatibility instead of
  7311. * wmi_host_dcs_mib_stats_t
  7312. */
  7313. uint32_t reg_rxclr_ext40_cnt;
  7314. uint32_t reg_rxclr_ext80_cnt;
  7315. } wmi_host_dcs_im_tgt_stats_t;
  7316. #ifndef BIT
  7317. #define BIT(n) (1 << (n))
  7318. #endif
  7319. /*
  7320. * Enum for pktlog req
  7321. */
  7322. enum {
  7323. WMI_HOST_PKTLOG_EVENT_RX_BIT,
  7324. WMI_HOST_PKTLOG_EVENT_TX_BIT,
  7325. WMI_HOST_PKTLOG_EVENT_RCF_BIT,
  7326. WMI_HOST_PKTLOG_EVENT_RCU_BIT,
  7327. WMI_HOST_PKTLOG_EVENT_DBG_PRINT_BIT,
  7328. WMI_HOST_PKTLOG_EVENT_SMART_ANTENNA_BIT,
  7329. WMI_HOST_PKTLOG_EVENT_H_INFO_BIT,
  7330. WMI_HOST_PKTLOG_EVENT_STEERING_BIT,
  7331. WMI_HOST_PKTLOG_EVENT_TX_DATA_CAPTURE_BIT,
  7332. WMI_HOST_PKTLOG_EVENT_PHY_LOGGING_BIT,
  7333. WMI_HOST_PKTLOG_EVENT_CBF_BIT,
  7334. #ifdef BE_PKTLOG_SUPPORT
  7335. WMI_HOST_PKTLOG_EVENT_HYBRID_TX_BIT,
  7336. #endif
  7337. };
  7338. typedef enum {
  7339. WMI_HOST_PKTLOG_EVENT_RX = BIT(WMI_HOST_PKTLOG_EVENT_RX_BIT),
  7340. WMI_HOST_PKTLOG_EVENT_TX = BIT(WMI_HOST_PKTLOG_EVENT_TX_BIT),
  7341. WMI_HOST_PKTLOG_EVENT_RCF =
  7342. BIT(WMI_HOST_PKTLOG_EVENT_RCF_BIT), /* Rate Control Find */
  7343. WMI_HOST_PKTLOG_EVENT_RCU =
  7344. BIT(WMI_HOST_PKTLOG_EVENT_RCU_BIT), /* Rate Control Update */
  7345. WMI_HOST_PKTLOG_EVENT_DBG_PRINT =
  7346. BIT(WMI_HOST_PKTLOG_EVENT_DBG_PRINT_BIT), /* DEBUG prints */
  7347. /* To support Smart Antenna */
  7348. WMI_HOST_PKTLOG_EVENT_SMART_ANTENNA =
  7349. BIT(WMI_HOST_PKTLOG_EVENT_SMART_ANTENNA_BIT),
  7350. WMI_HOST_PKTLOG_EVENT_H_INFO =
  7351. BIT(WMI_HOST_PKTLOG_EVENT_H_INFO_BIT),
  7352. WMI_HOST_PKTLOG_EVENT_STEERING =
  7353. BIT(WMI_HOST_PKTLOG_EVENT_STEERING_BIT),
  7354. /* To support Tx data Capture */
  7355. WMI_HOST_PKTLOG_EVENT_TX_DATA_CAPTURE =
  7356. BIT(WMI_HOST_PKTLOG_EVENT_TX_DATA_CAPTURE_BIT),
  7357. /* To support PHY logging */
  7358. WMI_HOST_PKTLOG_EVENT_PHY_LOGGING =
  7359. BIT(WMI_HOST_PKTLOG_EVENT_PHY_LOGGING_BIT),
  7360. WMI_HOST_PKTLOG_EVENT_CBF =
  7361. BIT(WMI_HOST_PKTLOG_EVENT_CBF_BIT),
  7362. #ifdef BE_PKTLOG_SUPPORT
  7363. WMI_HOST_PKTLOG_EVENT_HYBRID_TX =
  7364. BIT(WMI_HOST_PKTLOG_EVENT_HYBRID_TX_BIT),
  7365. #endif
  7366. } WMI_HOST_PKTLOG_EVENT;
  7367. /*
  7368. * wmi_host_phyerr
  7369. *
  7370. */
  7371. #define WMI_HOST_PHY_ERROR_SPECTRAL_SCAN 0x26
  7372. #define WMI_HOST_PHY_ERROR_FALSE_RADAR_EXT 0x24
  7373. #define WMI_HOST_AR900B_DFS_PHYERR_MASK 0x4
  7374. #define WMI_HOST_AR900B_SPECTRAL_PHYERR_MASK 0x4000000
  7375. /**
  7376. * struct wmi_host_perchain_rssi_info - per chain RSSI info
  7377. * @rssi_pri20: RSSI on primary 20
  7378. * @rssi_sec20: RSSI on secomdary 20
  7379. * @rssi_sec40: RSSI secondary 40
  7380. * @rssi_sec80: RSSI secondary 80
  7381. */
  7382. typedef struct wmi_host_perchain_rssi_info {
  7383. int8_t rssi_pri20;
  7384. int8_t rssi_sec20;
  7385. int8_t rssi_sec40;
  7386. int8_t rssi_sec80;
  7387. } wmi_host_perchain_rssi_info_t;
  7388. /**
  7389. * struct _wmi_host_rf_info - RF measurement information
  7390. * @rssi_comb: RSSI Information
  7391. * @pc_rssi_info: For now, we know we are getting information
  7392. * for only 4 chains at max. For future extensions
  7393. * use a define
  7394. * @noise_floor: Noise floor information
  7395. */
  7396. typedef struct _wmi_host_rf_info {
  7397. int8_t rssi_comb;
  7398. wmi_host_perchain_rssi_info_t pc_rssi_info[4];
  7399. int16_t noise_floor[4];
  7400. } wmi_host_rf_info_t;
  7401. /**
  7402. * struct _wmi_host_chan_info
  7403. * @center_freq1: center frequency 1 in MHz
  7404. * @center_freq2: center frequency 2 in MHz -valid only for
  7405. * 11ACVHT 80PLUS80 mode
  7406. * @chan_width: channel width in MHz
  7407. */
  7408. typedef struct _wmi_host_chan_info {
  7409. u_int16_t center_freq1;
  7410. u_int16_t center_freq2;
  7411. u_int8_t chan_width;
  7412. } wmi_host_chan_info_t;
  7413. /**
  7414. * struct _wmi_host_phyerr
  7415. * @rf_info:
  7416. * @chan_info:
  7417. * @tsf64:
  7418. * @phy_err_code:
  7419. * @tsf_timestamp:
  7420. * @bufp:
  7421. * @buf_len:
  7422. * @phy_err_mask0:
  7423. * @phy_err_mask1:
  7424. * @pdev_id: pdev_id
  7425. */
  7426. typedef struct _wmi_host_phyerr {
  7427. wmi_host_rf_info_t rf_info;
  7428. wmi_host_chan_info_t chan_info;
  7429. uint64_t tsf64;
  7430. int32_t phy_err_code;
  7431. uint32_t tsf_timestamp;
  7432. uint8_t *bufp;
  7433. uint32_t buf_len;
  7434. uint32_t phy_err_mask0;
  7435. uint32_t phy_err_mask1;
  7436. uint32_t pdev_id;
  7437. } wmi_host_phyerr_t;
  7438. /**
  7439. * struct wmi_host_rtt_event_hdr
  7440. * @req_id: request id
  7441. * @status: status
  7442. * @meas_done: measurement done flag
  7443. * @meas_type: measurement type
  7444. * @report_type: report type
  7445. * @v3_status: v2 status
  7446. * @v3_finish:
  7447. * @v3_tm_start:
  7448. * @num_ap: number of AP
  7449. * @result: resuult
  7450. * @dest_mac: destination mac
  7451. */
  7452. typedef struct {
  7453. uint16_t req_id;
  7454. uint16_t status:1,
  7455. meas_done:1,
  7456. meas_type:3,
  7457. report_type:3,
  7458. v3_status:2,
  7459. v3_finish:1,
  7460. v3_tm_start:1,
  7461. num_ap:4;
  7462. uint16_t result;
  7463. uint8_t dest_mac[QDF_MAC_ADDR_SIZE];
  7464. } wmi_host_rtt_event_hdr;
  7465. /**
  7466. * struct wmi_host_rtt_meas_event - RTT measurement event
  7467. * @chain_mask:
  7468. * @bw:
  7469. * @rsvd:
  7470. * @txrxchain_mask: Bit:0-3:chain mask
  7471. * Bit 4-5: band width info
  7472. * 00 --Legacy 20, 01 --HT/VHT20
  7473. * 10 --HT/VHT40, 11 -- VHT80
  7474. * @tod: resolution of 0.1ns
  7475. * @toa: resolution of 0.1ns
  7476. * @t3:
  7477. * @t4:
  7478. * @rssi0:
  7479. * @rssi1:
  7480. * @rssi2:
  7481. * @rssi3:
  7482. */
  7483. typedef struct {
  7484. uint32_t chain_mask:3,
  7485. bw:2,
  7486. rsvd:27;
  7487. uint32_t txrxchain_mask;
  7488. uint64_t tod;
  7489. uint64_t toa;
  7490. uint64_t t3;
  7491. uint64_t t4;
  7492. uint32_t rssi0;
  7493. uint32_t rssi1;
  7494. uint32_t rssi2;
  7495. uint32_t rssi3;
  7496. } wmi_host_rtt_meas_event;
  7497. /*----RTT Report event definition ----*/
  7498. typedef enum {
  7499. /* rtt cmd header parsing error --terminate */
  7500. WMI_HOST_RTT_COMMAND_HEADER_ERROR = 0,
  7501. /* rtt body parsing error -- skip current STA REQ */
  7502. WMI_HOST_RTT_COMMAND_ERROR,
  7503. /* rtt no resource -- terminate */
  7504. WMI_HOST_RTT_MODULE_BUSY,
  7505. /* STA exceed the support limit -- only server the first n STA */
  7506. WMI_HOST_RTT_TOO_MANY_STA,
  7507. /* any allocate failure */
  7508. WMI_HOST_RTT_NO_RESOURCE,
  7509. /* can not find vdev with vdev ID - skip current STA REQ */
  7510. WMI_HOST_RTT_VDEV_ERROR,
  7511. /* Tx failure -- continiue and measure number */
  7512. WMI_HOST_RTT_TRANSIMISSION_ERROR,
  7513. /* wait for first TM timer expire-terminate current STA measurement */
  7514. WMI_HOST_RTT_TM_TIMER_EXPIRE,
  7515. /* we do not support RTT measurement with this type of frame */
  7516. WMI_HOST_RTT_FRAME_TYPE_NOSUPPORT,
  7517. /* whole RTT measurement timer expire-terminate
  7518. ** current STA measurement */
  7519. WMI_HOST_RTT_TIMER_EXPIRE,
  7520. /* channel switch failed */
  7521. WMI_HOST_RTT_CHAN_SWITCH_ERROR,
  7522. /* TMR trans error, this dest peer will be skipped */
  7523. WMI_HOST_RTT_TMR_TRANS_ERROR,
  7524. /* V3 only. If both CFR and Token mismatch, do not report */
  7525. WMI_HOST_RTT_NO_REPORT_BAD_CFR_TOKEN,
  7526. /* For First TM, if CFR is bad, then do not report */
  7527. WMI_HOST_RTT_NO_REPORT_FIRST_TM_BAD_CFR,
  7528. /* do not allow report type2 mix with type 0, 1 */
  7529. WMI_HOST_RTT_REPORT_TYPE2_MIX,
  7530. /* LCI Configuration OK. - Responder only */
  7531. WMI_HOST_RTT_LCI_CFG_OK,
  7532. /* LCR configuration OK. - Responder only */
  7533. WMI_HOST_RTT_LCR_CFG_OK,
  7534. /* Bad configuration LCI (or) LCR request - Responder only */
  7535. WMI_HOST_RTT_CFG_ERROR,
  7536. WMI_HOST_WMI_RTT_REJECT_MAX,
  7537. } WMI_HOST_RTT_ERROR_INDICATOR;
  7538. typedef struct {
  7539. wmi_host_rtt_event_hdr hdr;
  7540. WMI_HOST_RTT_ERROR_INDICATOR reject_reason;
  7541. } wmi_host_rtt_error_report_event;
  7542. #if defined(AR9888)
  7543. typedef enum {
  7544. WMI_HOST_PROF_CPU_IDLE,
  7545. WMI_HOST_PROF_PPDU_PROC,
  7546. WMI_HOST_PROF_PPDU_POST,
  7547. WMI_HOST_PROF_HTT_TX_INPUT,
  7548. WMI_HOST_PROF_MSDU_ENQ,
  7549. WMI_HOST_PROF_PPDU_POST_HAL,
  7550. WMI_HOST_PROF_COMPUTE_TX_TIME,
  7551. /* Add new ID's above this. */
  7552. WMI_HOST_PROF_MAX_ID,
  7553. } wmi_host_profile_id_t;
  7554. #endif
  7555. #define WMI_HOST_WLAN_PROFILE_MAX_HIST 3
  7556. #define WMI_HOST_WLAN_PROFILE_MAX_BIN_CNT 32
  7557. #if defined(AR9888)
  7558. #define WMI_HOST_MAX_PROFILE WMI_HOST_PROF_MAX_ID
  7559. #else
  7560. #define WMI_HOST_MAX_PROFILE WMI_HOST_WLAN_PROFILE_MAX_BIN_CNT
  7561. #endif
  7562. /**
  7563. * struct wmi_host_wlan_profile_t - Host profile param
  7564. * @id: profile id
  7565. * @cnt: Count
  7566. * @tot:
  7567. * @min: minimum
  7568. * @max: Mac
  7569. * @hist_intvl: history interval
  7570. * @hist: profile data history
  7571. */
  7572. typedef struct {
  7573. uint32_t id;
  7574. uint32_t cnt;
  7575. uint32_t tot;
  7576. uint32_t min;
  7577. uint32_t max;
  7578. uint32_t hist_intvl;
  7579. uint32_t hist[WMI_HOST_WLAN_PROFILE_MAX_HIST];
  7580. } wmi_host_wlan_profile_t;
  7581. /**
  7582. * struct wmi_host_wlan_profile_ctx_t - profile context
  7583. * @tot: time in us
  7584. * @tx_msdu_cnt: MSDU TX count
  7585. * @tx_mpdu_cnt: MPDU tx count
  7586. * @tx_ppdu_cnt: PPDU tx count
  7587. * @rx_msdu_cnt: MSDU RX count
  7588. * @rx_mpdu_cnt: MPDU RXcount
  7589. * @bin_count: Bin count
  7590. */
  7591. typedef struct {
  7592. uint32_t tot;
  7593. uint32_t tx_msdu_cnt;
  7594. uint32_t tx_mpdu_cnt;
  7595. uint32_t tx_ppdu_cnt;
  7596. uint32_t rx_msdu_cnt;
  7597. uint32_t rx_mpdu_cnt;
  7598. uint32_t bin_count;
  7599. } wmi_host_wlan_profile_ctx_t;
  7600. /**
  7601. * struct wmi_host_pdev_bss_chan_info_event
  7602. * @pdev_id: pdev_id
  7603. * @freq: Units in MHz
  7604. * @noise_floor: units are dBm
  7605. * @rx_clear_count_low:
  7606. * @rx_clear_count_high:
  7607. * @cycle_count_low:
  7608. * @cycle_count_high:
  7609. * @tx_cycle_count_low:
  7610. * @tx_cycle_count_high:
  7611. * @rx_cycle_count_low:
  7612. * @rx_cycle_count_high:
  7613. * @rx_bss_cycle_count_low:
  7614. * @rx_bss_cycle_count_high:
  7615. * @reserved:
  7616. */
  7617. typedef struct {
  7618. uint32_t pdev_id;
  7619. uint32_t freq;
  7620. uint32_t noise_floor;
  7621. uint32_t rx_clear_count_low;
  7622. uint32_t rx_clear_count_high;
  7623. uint32_t cycle_count_low;
  7624. uint32_t cycle_count_high;
  7625. uint32_t tx_cycle_count_low;
  7626. uint32_t tx_cycle_count_high;
  7627. uint32_t rx_cycle_count_low;
  7628. uint32_t rx_cycle_count_high;
  7629. uint32_t rx_bss_cycle_count_low;
  7630. uint32_t rx_bss_cycle_count_high;
  7631. uint32_t reserved;
  7632. } wmi_host_pdev_bss_chan_info_event;
  7633. /**
  7634. * struct wmi_host_pdev_ctl_failsafe_event
  7635. * @ctl_failsafe_status: Indicate if Failsafe value is imposed on CTL
  7636. */
  7637. struct wmi_host_pdev_ctl_failsafe_event {
  7638. uint32_t ctl_failsafe_status;
  7639. };
  7640. #define WMI_HOST_INST_STATS_INVALID_RSSI 0
  7641. /* Event definition and new structure addition to send event
  7642. * to host to block/unblock tx data traffic based on peer_ast_idx or vdev id
  7643. */
  7644. #define WMI_HOST_INVALID_PEER_AST_INDEX 0xffff
  7645. #define WMI_HOST_TX_DATA_TRAFFIC_CTRL_BLOCK 0x1
  7646. #define WMI_HOST_TX_DATA_TRAFFIC_CTRL_UNBLOCK 0x2
  7647. /**
  7648. * struct wmi_host_tx_data_traffic_ctrl_event
  7649. * @peer_ast_idx: For vdev based control, peer_ast_idx will be
  7650. * WMI_INVALID_PEER_AST_INDEX
  7651. * @vdev_id: only applies if peer_ast_idx == INVALID
  7652. * @ctrl_cmd: WMI_TX_DATA_TRAFFIC_CTRL_BLOCK or
  7653. * WMI_TX_DATA_TRAFFIC_CTRL_UNBLOCK
  7654. * @wmm_ac: Indicates AC to be blocked or unblocked
  7655. * Bits 4-31 : Reserved (Shall be zero)
  7656. * Bits 0-3 : WMM AC NO [ BE (1), BK (2), VI (3), VO (4)]
  7657. * Started numbering from 1 to preserve backward compatibility
  7658. */
  7659. typedef struct {
  7660. uint32_t peer_ast_idx;
  7661. uint32_t vdev_id;
  7662. uint32_t ctrl_cmd;
  7663. uint32_t wmm_ac;
  7664. } wmi_host_tx_data_traffic_ctrl_event;
  7665. /**
  7666. * struct wmi_host_ath_dcs_cw_int
  7667. * @channel: either number or freq in mhz
  7668. */
  7669. typedef struct {
  7670. uint32_t channel;
  7671. } wmi_host_ath_dcs_cw_int;
  7672. /**
  7673. * struct wmi_host_dcs_awgn_info:
  7674. * @channel_width : Channel width of interference
  7675. * @center_freq : Center frequency of primary channel
  7676. * @center_freq0 : Center frequency of segment 1
  7677. * @center_freq1 : Center frequency of segment 2
  7678. * @chan_bw_intf_bitmap: Per-20MHz interference bitmap
  7679. */
  7680. struct wmi_host_dcs_awgn_info {
  7681. wmi_host_channel_width channel_width;
  7682. uint32_t center_freq;
  7683. uint32_t center_freq0;
  7684. uint32_t center_freq1;
  7685. uint32_t chan_bw_intf_bitmap;
  7686. };
  7687. #define WMI_MAX_POWER_DBG_ARGS 8
  7688. /**
  7689. * struct wmi_power_dbg_params - power debug command parameter
  7690. * @pdev_id: subsystem identifier
  7691. * @module_id: parameter id
  7692. * @num_args: no of arguments
  7693. * @args: arguments
  7694. */
  7695. struct wmi_power_dbg_params {
  7696. uint32_t pdev_id;
  7697. uint32_t module_id;
  7698. uint32_t num_args;
  7699. uint32_t args[WMI_MAX_POWER_DBG_ARGS];
  7700. };
  7701. /**
  7702. * struct wmi_fw_dump_seg_req - individual segment details
  7703. * @seg_id: segment id.
  7704. * @seg_start_addr_lo: lower address of the segment.
  7705. * @seg_start_addr_hi: higher address of the segment.
  7706. * @seg_length: length of the segment.
  7707. * @dst_addr_lo: lower address of the destination buffer.
  7708. * @dst_addr_hi: higher address of the destination buffer.
  7709. *
  7710. * This structure carries the information to firmware about the
  7711. * individual segments. This structure is part of firmware memory
  7712. * dump request.
  7713. */
  7714. struct wmi_fw_dump_seg_req {
  7715. uint8_t seg_id;
  7716. uint32_t seg_start_addr_lo;
  7717. uint32_t seg_start_addr_hi;
  7718. uint32_t seg_length;
  7719. uint32_t dst_addr_lo;
  7720. uint32_t dst_addr_hi;
  7721. };
  7722. /**
  7723. * enum wmi_userspace_log_level - Log level at userspace
  7724. * @WMI_LOG_LEVEL_NO_COLLECTION: verbose_level 0 corresponds to no collection
  7725. * @WMI_LOG_LEVEL_NORMAL_COLLECT: verbose_level 1 correspond to normal log
  7726. * level with minimal user impact. This is the default value.
  7727. * @WMI_LOG_LEVEL_ISSUE_REPRO: verbose_level 2 are enabled when user is lazily
  7728. * trying to reproduce a problem, wifi performances and power can be impacted
  7729. * but device should not otherwise be significantly impacted
  7730. * @WMI_LOG_LEVEL_ACTIVE: verbose_level 3+ are used when trying to
  7731. * actively debug a problem
  7732. *
  7733. * Various log levels defined in the userspace for logging applications
  7734. */
  7735. enum wmi_userspace_log_level {
  7736. WMI_LOG_LEVEL_NO_COLLECTION,
  7737. WMI_LOG_LEVEL_NORMAL_COLLECT,
  7738. WMI_LOG_LEVEL_ISSUE_REPRO,
  7739. WMI_LOG_LEVEL_ACTIVE,
  7740. };
  7741. /**
  7742. * enum wmi_host_hw_mode_config_type - HW mode config type replicated from
  7743. * wmi_hw_mode_config_type in FW header
  7744. * @WMI_HOST_HW_MODE_SINGLE: Only one PHY is active.
  7745. * @WMI_HOST_HW_MODE_DBS: Both PHYs are active in different bands,
  7746. * one in 2G and another in 5G.
  7747. * @WMI_HOST_HW_MODE_SBS_PASSIVE: Both PHYs are in passive mode (only rx) in
  7748. * same band; no tx allowed.
  7749. * @WMI_HOST_HW_MODE_SBS: Both PHYs are active in the same band.
  7750. * Support for both PHYs within one band is planned
  7751. * for 5G only(as indicated in WMI_MAC_PHY_CAPABILITIES),
  7752. * but could be extended to other bands in the future.
  7753. * The separation of the band between the two PHYs needs
  7754. * to be communicated separately.
  7755. * @WMI_HOST_HW_MODE_DBS_SBS: 3 PHYs, with 2 on the same band doing SBS
  7756. * as in WMI_HW_MODE_SBS, and 3rd on the other band
  7757. * @WMI_HOST_HW_MODE_DBS_OR_SBS: Two PHY with one PHY capabale of both 2G and
  7758. * 5G. It can support SBS (5G + 5G) OR DBS (5G + 2G).
  7759. * @WMI_HOST_HW_MODE_DBS_2G_5G: Both PHYs are active in different bands.
  7760. * PhyA 2G and PhyB 5G
  7761. * @WMI_HOST_HW_MODE_2G_PHYB: Only one phy is active. 2G mode on PhyB.
  7762. * @WMI_HOST_HW_MODE_EMLSR: Both PHYs are active in listen mode in 1x1
  7763. * and Tx/Rx trigger on any PHY will switch
  7764. * from 1x1 to 2x2 on that Phy
  7765. * @WMI_HOST_HW_MODE_AUX_EMLSR_SINGLE: PHYA0 and AUX are active in listen mode
  7766. * in 1x1 and Tx/Rx trigger on any.
  7767. * PHY will switch from 1x1 to 2x2
  7768. * on that Phy.
  7769. * @WMI_HOST_HW_MODE_AUX_EMLSR_SPLIT: PHYA1 and AUX are active in listen mode
  7770. * in 1x1 and Tx/Rx trigger on any.
  7771. * PHY will switch from 1x1 to 2x2
  7772. * on that Phy.
  7773. * @WMI_HOST_HW_MODE_MAX: Max hw_mode_id. Used to indicate invalid mode.
  7774. * @WMI_HOST_HW_MODE_DETECT: Mode id used by host to choose mode from target
  7775. * supported modes.
  7776. */
  7777. enum wmi_host_hw_mode_config_type {
  7778. WMI_HOST_HW_MODE_SINGLE = 0,
  7779. WMI_HOST_HW_MODE_DBS = 1,
  7780. WMI_HOST_HW_MODE_SBS_PASSIVE = 2,
  7781. WMI_HOST_HW_MODE_SBS = 3,
  7782. WMI_HOST_HW_MODE_DBS_SBS = 4,
  7783. WMI_HOST_HW_MODE_DBS_OR_SBS = 5,
  7784. WMI_HOST_HW_MODE_DBS_2G_5G = 6,
  7785. WMI_HOST_HW_MODE_2G_PHYB = 7,
  7786. WMI_HOST_HW_MODE_EMLSR = 8,
  7787. WMI_HOST_HW_MODE_AUX_EMLSR_SINGLE = 9,
  7788. WMI_HOST_HW_MODE_AUX_EMLSR_SPLIT = 10,
  7789. WMI_HOST_HW_MODE_MAX,
  7790. WMI_HOST_HW_MODE_DETECT,
  7791. };
  7792. /**
  7793. * enum wmi_host_dynamic_hw_mode_config_type - Host defined enum for
  7794. * dynamic mode switch
  7795. * @WMI_HOST_DYNAMIC_HW_MODE_DISABLED: hw mode switch is disabled
  7796. * @WMI_HOST_DYNAMIC_HW_MODE_SLOW: hw mode switch with interface down/up
  7797. * @WMI_HOST_DYNAMIC_HW_MODE_FAST: hw mode switch without interface down/up
  7798. * @WMI_HOST_DYNAMIC_HW_MODE_MAX: Max value to indicate invalid mode
  7799. */
  7800. enum wmi_host_dynamic_hw_mode_config_type {
  7801. WMI_HOST_DYNAMIC_HW_MODE_DISABLED = 0,
  7802. WMI_HOST_DYNAMIC_HW_MODE_SLOW = 1,
  7803. WMI_HOST_DYNAMIC_HW_MODE_FAST = 2,
  7804. WMI_HOST_DYNAMIC_HW_MODE_MAX,
  7805. };
  7806. /*
  7807. * struct wmi_host_peer_txmu_cnt_event
  7808. * @tx_mu_transmitted - MU-MIMO tx count
  7809. */
  7810. typedef struct {
  7811. uint32_t tx_mu_transmitted;
  7812. } wmi_host_peer_txmu_cnt_event;
  7813. /**
  7814. * struct esp_estimation_event - esp airtime estimation event
  7815. * @ac_airtime_percentage: Estimated Airtime
  7816. * @pdev_id: PDEV_ID of Data
  7817. */
  7818. struct esp_estimation_event {
  7819. uint32_t ac_airtime_percentage;
  7820. uint32_t pdev_id;
  7821. };
  7822. /*
  7823. * struct wmi_peer_gid_userpos_list_event
  7824. * @usr_list - User list
  7825. */
  7826. #define GID_OVERLOAD_GROUP_COUNT 15
  7827. typedef struct {
  7828. uint32_t usr_list[GID_OVERLOAD_GROUP_COUNT];
  7829. } wmi_host_peer_gid_userpos_list_event;
  7830. /**
  7831. * enum rcpi_measurement_type - for identifying type of rcpi measurement
  7832. * @RCPI_MEASUREMENT_TYPE_AVG_MGMT: avg rcpi of mgmt frames
  7833. * @RCPI_MEASUREMENT_TYPE_AVG_DATA: avg rcpi of data frames
  7834. * @RCPI_MEASUREMENT_TYPE_LAST_MGMT: rcpi of last mgmt frame
  7835. * @RCPI_MEASUREMENT_TYPE_LAST_DATA: rcpi of last data frame
  7836. * @RCPI_MEASUREMENT_TYPE_INVALID: invalid rcpi measurement type
  7837. */
  7838. enum rcpi_measurement_type {
  7839. RCPI_MEASUREMENT_TYPE_AVG_MGMT = 0x1,
  7840. RCPI_MEASUREMENT_TYPE_AVG_DATA = 0x2,
  7841. RCPI_MEASUREMENT_TYPE_LAST_MGMT = 0x3,
  7842. RCPI_MEASUREMENT_TYPE_LAST_DATA = 0x4,
  7843. RCPI_MEASUREMENT_TYPE_INVALID = 0x5,
  7844. };
  7845. /**
  7846. * struct rcpi_req - RCPI req parameter
  7847. * @vdev_id: virtual device id
  7848. * @measurement_type: type of rcpi from enum wmi_rcpi_measurement_type
  7849. * @mac_addr: peer mac addr for which measurement is required
  7850. */
  7851. struct rcpi_req {
  7852. uint32_t vdev_id;
  7853. enum rcpi_measurement_type measurement_type;
  7854. uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
  7855. };
  7856. /**
  7857. * struct rcpi_res - RCPI response parameter
  7858. * @vdev_id: virtual device id
  7859. * @measurement_type: type of rcpi from enum wmi_rcpi_measurement_type
  7860. * @mac_addr: peer mac addr for which measurement is required
  7861. * @rcpi_value: value of RCPI computed by firmware
  7862. */
  7863. struct rcpi_res {
  7864. uint32_t vdev_id;
  7865. enum rcpi_measurement_type measurement_type;
  7866. uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
  7867. int32_t rcpi_value;
  7868. };
  7869. #define WMI_HOST_BOARD_MCN_STRING_MAX_SIZE 19
  7870. #define WMI_HOST_BOARD_MCN_STRING_BUF_SIZE \
  7871. (WMI_HOST_BOARD_MCN_STRING_MAX_SIZE+1) /* null-terminator */
  7872. /**
  7873. * enum WMI_HOST_CALIBRATION_STATUS - Host defined Enums for cal status
  7874. * @WMI_HOST_NO_FEATURE: The board was calibrated with a meta
  7875. * which did not have this feature
  7876. * @WMI_HOST_CALIBRATION_OK: The calibration status is OK
  7877. * @WMI_HOST_CALIBRATION_NOT_OK: The calibration status is NOT OK
  7878. */
  7879. enum WMI_HOST_CALIBRATION_STATUS {
  7880. WMI_HOST_NO_FEATURE = 0,
  7881. WMI_HOST_CALIBRATION_OK,
  7882. WMI_HOST_CALIBRATION_NOT_OK,
  7883. };
  7884. /**
  7885. * struct wmi_host_pdev_utf_event - Host defined struct to hold utf event data
  7886. * @data: Pointer to data
  7887. * @datalen: Data length
  7888. * @pdev_id: Pdev_id of data
  7889. *
  7890. */
  7891. struct wmi_host_pdev_utf_event {
  7892. uint8_t *data;
  7893. uint16_t datalen;
  7894. uint32_t pdev_id;
  7895. };
  7896. /**
  7897. * struct wmi_host_utf_seg_header_info - Host defined struct to map seg info in
  7898. * UTF event
  7899. * @len: segment length
  7900. * @msgref: message reference
  7901. * @segment_info: segment info
  7902. * @pdev_id: pdev_id
  7903. *
  7904. */
  7905. struct wmi_host_utf_seg_header_info {
  7906. uint32_t len;
  7907. uint32_t msgref;
  7908. uint32_t segment_info;
  7909. uint32_t pdev_id;
  7910. };
  7911. /**
  7912. * struct wmi_host_pdev_qvit_event - Host defined struct to hold qvit event data
  7913. * @data: Pointer to data
  7914. * @datalen: Data length
  7915. * @pdev_id: Pdev ID
  7916. */
  7917. struct wmi_host_pdev_qvit_event {
  7918. uint8_t *data;
  7919. uint16_t datalen;
  7920. uint32_t pdev_id;
  7921. };
  7922. /**
  7923. * enum wmi_peer_create_status - Peer Create response status
  7924. * @WMI_PEER_CREATE_SUCCESS: Peer creation successful at fw
  7925. * @WMI_PEER_EXISTS: Peer with same mac exists at fw
  7926. * @WMI_PEER_CREATE_FAILED: Peer creation failed at fw
  7927. */
  7928. enum wmi_peer_create_status {
  7929. WMI_PEER_CREATE_SUCCESS = 0,
  7930. WMI_PEER_EXISTS = 1,
  7931. WMI_PEER_CREATE_FAILED = 2,
  7932. };
  7933. /**
  7934. * struct wmi_host_dcs_interference_param - DCS interference param
  7935. * @interference_type: Type of DCS Interference
  7936. * @pdev_id: pdev id
  7937. */
  7938. struct wmi_host_dcs_interference_param {
  7939. uint32_t interference_type;
  7940. uint32_t pdev_id;
  7941. };
  7942. /**
  7943. * struct wmi_host_rf_characterization_event_param - rf characterization table
  7944. * @freq: center frequency of primary channel (in MHz)
  7945. * @chan_metric: primary channel-specific metric
  7946. * @bw: bandwidth of primary channel (in MHz)
  7947. */
  7948. struct wmi_host_rf_characterization_event_param {
  7949. uint16_t freq;
  7950. uint8_t chan_metric;
  7951. wmi_host_channel_width bw;
  7952. };
  7953. /*
  7954. * struct wmi_host_fips_event_param: FIPS event param
  7955. * @pdev_id: pdev id
  7956. * @error_status: Error status: 0 (no err), 1, or OPER_TIMEOUR
  7957. * @data_len: FIPS data length
  7958. * @data: pointer to data
  7959. */
  7960. struct wmi_host_fips_event_param {
  7961. uint32_t pdev_id;
  7962. uint32_t error_status;
  7963. uint32_t data_len;
  7964. uint32_t *data;
  7965. };
  7966. #ifdef WLAN_FEATURE_FIPS_BER_CCMGCM
  7967. /*
  7968. * struct wmi_host_fips_extend_event_param: FIPS extend event param
  7969. * @pdev_id: pdev id
  7970. * @fips_cookie: fips_cookie
  7971. * @cmd_frag_idx: cmd_frag_idx
  7972. * @more_bit: more_bit
  7973. * @error_status: Error status: 0 (no err), 1, or OPER_TIMEOUR
  7974. * @data_len: FIPS data length
  7975. * @data: pointer to data
  7976. */
  7977. struct wmi_host_fips_extend_event_param {
  7978. uint32_t pdev_id;
  7979. uint32_t fips_cookie;
  7980. uint32_t cmd_frag_idx;
  7981. uint32_t more_bit;
  7982. uint32_t error_status;
  7983. uint32_t data_len;
  7984. uint32_t *data;
  7985. };
  7986. #endif
  7987. #ifdef WLAN_FEATURE_DISA_FIPS
  7988. /**
  7989. * struct disa_encrypt_decrypt_resp_params - disa encrypt response
  7990. * @vdev_id: vdev id
  7991. * @status: status
  7992. * @data_len: data length
  7993. * @data: data pointer
  7994. */
  7995. struct disa_encrypt_decrypt_resp_params {
  7996. uint32_t vdev_id;
  7997. int32_t status;
  7998. uint32_t data_len;
  7999. uint8_t *data;
  8000. };
  8001. #endif
  8002. /**
  8003. * struct wmi_host_proxy_ast_reserve_param
  8004. * @pdev_id: pdev id
  8005. * @result: result
  8006. */
  8007. struct wmi_host_proxy_ast_reserve_param {
  8008. uint32_t pdev_id;
  8009. uint32_t result;
  8010. };
  8011. /**
  8012. * struct wmi_host_pdev_band_to_mac - freq range for mac
  8013. * @pdev_id: PDEV ID to identify mac
  8014. * @start_freq: start frequency value
  8015. * @end_freq: end frequency value
  8016. */
  8017. struct wmi_host_pdev_band_to_mac {
  8018. uint32_t pdev_id;
  8019. uint32_t start_freq;
  8020. uint32_t end_freq;
  8021. };
  8022. #define WMI_HOST_MAX_PDEV 3
  8023. #ifdef OL_ATH_SMART_LOGGING
  8024. #define WMI_HOST_SMART_LOG_SCENARIO_SET(flag, scenario) ((flag) |= (scenario))
  8025. #define WMI_HOST_SMART_LOG_SCENARIO_GET(flag, scenario) ((flag) & (scenario))
  8026. /**
  8027. * enum wmi_host_smart_log_scenario - Smart log scenarios to be enabled/disabled
  8028. * @WMI_HOST_SMART_LOG_ALL: All smart logging features.
  8029. * @WMI_HOST_SMART_LOG_CE_FULL_DETECT_BY_FW: CE with full detect by FW.
  8030. * @WMI_HOST_SMART_LOG_TX_RX_TIMEOUT: Tx/Rx timeout.
  8031. * @WMI_HOST_SMART_LOG_STA_KICKOUT: STA Kickout.
  8032. * @WMI_HOST_SMART_LOG_BCN_CMD_FAILURE: Beacon command failure.
  8033. * @WMI_HOST_SMART_LOG_P1_PING_FAILURE: P1 ping failure. Ping failure detection
  8034. * is done by host entities. So, host should be able to control the
  8035. * enable/disable of this feature. Yet, this is provided in case the
  8036. * corresponding FW specific debugs alone have to be enabled/disabled.
  8037. * @WMI_HOST_SMART_LOG_CONNECTION_FAILURE: Connection failure. Connection
  8038. * failure detection is done by host entities. So, host should be able to
  8039. * control the enable/disable of this feature. Yet, this is provided in case the
  8040. * corresponding FW specific debugs alone have to be enabled/disabled.
  8041. * @WMI_HOST_SMART_LOG_FW_INITIATED_PKT_LOG: FW Initiated packetlog.
  8042. * @WMI_HOST_SMART_LOG_EXTENSION_1: If WMI_HOST_SMART_LOG_EXTENSION_1 is set,
  8043. * then the 'log_case_ext_1' field in 'wmi_smart_logging' is used; else
  8044. * log_case_ext_1 is ignored.
  8045. */
  8046. enum wmi_host_smart_log_scenario {
  8047. WMI_HOST_SMART_LOG_ALL = 0x0,
  8048. WMI_HOST_SMART_LOG_CE_FULL_DETECT_BY_FW = 0x1,
  8049. WMI_HOST_SMART_LOG_TX_RX_TIMEOUT = 0x2,
  8050. WMI_HOST_SMART_LOG_STA_KICKOUT = 0x4,
  8051. WMI_HOST_SMART_LOG_BCN_CMD_FAILURE = 0x8,
  8052. WMI_HOST_SMART_LOG_P1_PING_FAILURE = 0x10,
  8053. WMI_HOST_SMART_LOG_CONNECTION_FAILURE = 0x20,
  8054. WMI_HOST_SMART_LOG_FW_INITIATED_PKT_LOG = 0x40,
  8055. /* New scenarios to be added here */
  8056. WMI_HOST_SMART_LOG_EXTENSION_1 = 0x80000000,
  8057. };
  8058. /**
  8059. * struct wmi_fatal_condition_event - Fatal condition event param
  8060. * @type: Type of event
  8061. * @subtype: Subtype of event
  8062. * @reserved0: obsolete
  8063. * @type_subtype_specific_data: Data specific to combination of type and
  8064. * subtype. This is held in a union with the original "reserved0" for backward
  8065. * compatibility with any code that might refer to it. The previously-reserved
  8066. * field now holds data under some conditions. The kind of data depends on the
  8067. * above "type" and "subtype" fields. The interpretation of the
  8068. * type_subtype_specific_data field based on different type + subtype values is
  8069. * shown below:
  8070. * 1. type == WMI_HOST_FATAL_CONDITION_PACKET_LOG_CONFIG + subtype
  8071. * == WMI_HOST_FATAL_SUBTYPE_PACKET_LOG_CONFIG_START ->
  8072. * type_subtype_specific_data = WMI_HOST_PKTLOG_EVENT
  8073. * For any type+subtype combinations not listed above, the recipient is expected
  8074. * to ignore the type_subtype_specific_data field.
  8075. */
  8076. struct wmi_fatal_condition_event {
  8077. uint32_t type;
  8078. uint32_t subtype;
  8079. union {
  8080. uint32_t reserved0;
  8081. uint32_t type_subtype_specific_data;
  8082. };
  8083. };
  8084. /*Currently the Max fatal events is 3 */
  8085. #define FATAL_EVENTS_MAX 3
  8086. /**
  8087. * struct wmi_debug_fatal_events - Fatal events list
  8088. * @num_events:Number of events
  8089. * @event: Each event data
  8090. */
  8091. struct wmi_debug_fatal_events {
  8092. uint32_t num_events;
  8093. struct wmi_fatal_condition_event event[FATAL_EVENTS_MAX];
  8094. };
  8095. /**
  8096. * enum wmi_host_fatal_condition_type - Values that 'type' can take in
  8097. * wmi_fatal_condition_event
  8098. * @WMI_HOST_FATAL_CONDITION_EVENT_COMPLETION: Fatal condition event completion
  8099. * @WMI_HOST_FATAL_CONDITION_CE_FAILURE: CE failure
  8100. * @WMI_HOST_FATAL_CONDITION_TIMEOUTS: Communication timeouts
  8101. * @WMI_HOST_FATAL_CONDITION_CONNECTION_ISSUE: Connection issue
  8102. * @WMI_HOST_FATAL_CONDITION_PACKET_LOG_CONFIG: Configuration for FW initiated
  8103. * packetlog
  8104. */
  8105. enum wmi_host_fatal_condition_type {
  8106. WMI_HOST_FATAL_CONDITION_EVENT_COMPLETION,
  8107. WMI_HOST_FATAL_CONDITION_CE_FAILURE,
  8108. WMI_HOST_FATAL_CONDITION_TIMEOUTS,
  8109. WMI_HOST_FATAL_CONDITION_CONNECTION_ISSUE,
  8110. WMI_HOST_FATAL_CONDITION_PACKET_LOG_CONFIG,
  8111. };
  8112. /**
  8113. * enum wmi_host_fatal_condition_subtype_timeouts - Possible subtypes for
  8114. * WMI_HOST_FATAL_CONDITION_TIMEOUTS
  8115. * @WMI_HOST_FATAL_SUBTYPE_TX_TIMEOUT: Tx timeout
  8116. * @WMI_HOST_FATAL_SUBTYPE_RX_TIMEOUT: Rx timeout
  8117. */
  8118. enum wmi_host_fatal_condition_subtype_timeouts {
  8119. WMI_HOST_FATAL_SUBTYPE_TX_TIMEOUT,
  8120. WMI_HOST_FATAL_SUBTYPE_RX_TIMEOUT,
  8121. };
  8122. /**
  8123. * enum wmi_host_fatal_condition_subtype_connection_issue - Possible subtypes
  8124. * for WMI_HOST_FATAL_CONDITION_CONNECTION_ISSUE
  8125. * @WMI_HOST_FATAL_SUBTYPE_STA_KICKOUT: STA Kickout
  8126. * @WMI_HOST_FATAL_SUBTYPE_P1_PING_FAILURE_START_DEBUG: Start debugging for P1
  8127. * ping failure
  8128. * @WMI_HOST_FATAL_SUBTYPE_P1_PING_FAILURE_STOP_DEBUG: Stop debugging for P1
  8129. * ping failure
  8130. * @WMI_HOST_FATAL_SUBTYPE_CONNECTION_FAILURE_START_DEBUG: Start debugging for
  8131. * connection failure
  8132. * @WMI_HOST_FATAL_SUBTYPE_CONNECTION_FAILURE_STOP_DEBUG: Stop debugging for
  8133. * connection failure
  8134. */
  8135. enum wmi_host_fatal_condition_subtype_connection_issue {
  8136. WMI_HOST_FATAL_SUBTYPE_STA_KICKOUT,
  8137. WMI_HOST_FATAL_SUBTYPE_P1_PING_FAILURE_START_DEBUG,
  8138. WMI_HOST_FATAL_SUBTYPE_P1_PING_FAILURE_STOP_DEBUG,
  8139. WMI_HOST_FATAL_SUBTYPE_CONNECTION_FAILURE_START_DEBUG,
  8140. WMI_HOST_FATAL_SUBTYPE_CONNECTION_FAILURE_STOP_DEBUG,
  8141. };
  8142. /**
  8143. * enum wmi_host_fatal_condition_subtype_packet_log_config - Possible subtypes
  8144. * for WMI_HOST_FATAL_CONDITION_PACKET_LOG_CONFIG
  8145. * @WMI_HOST_FATAL_SUBTYPE_PACKET_LOG_CONFIG_START: Start FW initiated packetlog
  8146. * @WMI_HOST_FATAL_SUBTYPE_PACKET_LOG_CONFIG_STOP: Stop FW initiated packetlog
  8147. */
  8148. enum wmi_host_fatal_condition_subtype_packet_log_config {
  8149. WMI_HOST_FATAL_SUBTYPE_PACKET_LOG_CONFIG_START,
  8150. WMI_HOST_FATAL_SUBTYPE_PACKET_LOG_CONFIG_STOP,
  8151. };
  8152. #endif /* OL_ATH_SMART_LOGGING */
  8153. #define GET_PN_MAX_LEN 16
  8154. #define GET_RX_PN_MAX_LEN 8
  8155. /**
  8156. * struct wmi_host_get_pn_event - PN event params
  8157. * @vdev_id: vdev id
  8158. * @mac_addr: Peer mac address
  8159. * @key_ix: Key index
  8160. * @key_type: key type
  8161. * @pn: pn value
  8162. */
  8163. struct wmi_host_get_pn_event {
  8164. uint32_t vdev_id;
  8165. uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
  8166. uint8_t key_ix;
  8167. uint32_t key_type;
  8168. uint8_t pn[GET_PN_MAX_LEN];
  8169. };
  8170. /**
  8171. * struct wmi_host_get_rxpn_event - Rx PN event params
  8172. * @vdev_id: vdev id
  8173. * @mac_addr: Peer mac address
  8174. * @keyix: key index
  8175. * @pn: pn value
  8176. */
  8177. struct wmi_host_get_rxpn_event {
  8178. uint32_t vdev_id;
  8179. uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
  8180. uint16_t keyix;
  8181. uint8_t pn[GET_RX_PN_MAX_LEN];
  8182. };
  8183. /**
  8184. * struct wmi_init_cmd_param - INIT command params
  8185. * @res_cfg: pointer to resource config
  8186. * @num_mem_chunks: number of memory chunks
  8187. * @mem_chunks: pointer to memory chunks
  8188. * @hw_mode_id: HW mode index chosen
  8189. * @num_band_to_mac: Number of band to mac setting
  8190. * @band_to_mac: band to mac setting
  8191. */
  8192. struct wmi_init_cmd_param {
  8193. target_resource_config *res_cfg;
  8194. uint8_t num_mem_chunks;
  8195. struct wmi_host_mem_chunk *mem_chunks;
  8196. uint32_t hw_mode_id;
  8197. uint32_t num_band_to_mac;
  8198. struct wmi_host_pdev_band_to_mac band_to_mac[WMI_HOST_MAX_PDEV];
  8199. };
  8200. /**
  8201. * struct pdev_csa_switch_count_status - CSA switch count status event param
  8202. * @pdev_id: Physical device identifier
  8203. * @current_switch_count: Current CSA switch count
  8204. * @num_vdevs: Number of vdevs that need restart
  8205. * @vdev_ids: Array containing the vdev ids that need restart
  8206. */
  8207. struct pdev_csa_switch_count_status {
  8208. uint32_t pdev_id;
  8209. uint32_t current_switch_count;
  8210. uint32_t num_vdevs;
  8211. uint32_t *vdev_ids;
  8212. };
  8213. /**
  8214. * enum wmi_host_active_apf_mode - FW_ACTIVE_APF_MODE, replicated from FW header
  8215. * @WMI_HOST_ACTIVE_APF_DISABLED: APF is disabled for all packets in active mode
  8216. * @WMI_HOST_ACTIVE_APF_ENABLED: APF is enabled for all packets in active mode
  8217. * @WMI_HOST_ACTIVE_APF_ADAPTIVE: APF is enabled for packets up to some
  8218. * threshold in active mode
  8219. */
  8220. enum wmi_host_active_apf_mode {
  8221. WMI_HOST_ACTIVE_APF_DISABLED = (1 << 1),
  8222. WMI_HOST_ACTIVE_APF_ENABLED = (1 << 2),
  8223. WMI_HOST_ACTIVE_APF_ADAPTIVE = (1 << 3)
  8224. };
  8225. /**
  8226. * struct coex_config_params - Coex config command params
  8227. * @vdev_id: Virtual AP device identifier
  8228. * @config_type: Configuration type - wmi_coex_config_type enum
  8229. * @config_arg1: Configuration argument based on config type
  8230. * @config_arg2: Configuration argument based on config type
  8231. * @config_arg3: Configuration argument based on config type
  8232. * @config_arg4: Configuration argument based on config type
  8233. * @config_arg5: Configuration argument based on config type
  8234. * @config_arg6: Configuration argument based on config type
  8235. */
  8236. struct coex_config_params {
  8237. uint32_t vdev_id;
  8238. uint32_t config_type;
  8239. uint32_t config_arg1;
  8240. uint32_t config_arg2;
  8241. uint32_t config_arg3;
  8242. uint32_t config_arg4;
  8243. uint32_t config_arg5;
  8244. uint32_t config_arg6;
  8245. };
  8246. #define WMI_HOST_PDEV_ID_SOC 0xFF
  8247. #define WMI_HOST_PDEV_ID_0 0
  8248. #define WMI_HOST_PDEV_ID_1 1
  8249. #define WMI_HOST_PDEV_ID_2 2
  8250. #define WMI_HOST_PDEV_ID_INVALID 0xFFFFFFFF
  8251. /**
  8252. * struct wmi_host_ready_ev_param - Data revieved in ready event
  8253. * @status: FW init status. Success or Failure.
  8254. * @num_dscp_table: Number of DSCP table supported in FW
  8255. * @num_extra_mac_addr: Extra mac address present in ready event. Used
  8256. * in DBDC mode to provide multiple mac per pdev.
  8257. * @num_total_peer: Total number of peers FW could allocate. Zero means
  8258. * FW could allocate num peers requested by host in init.
  8259. * Otherwise, host need update it max_peer to this value.
  8260. * @num_extra_peer: Number of extra peers created and used within FW. Host
  8261. * should expect peer_id can be num_total_peer + num_extra_peer
  8262. * but it can create only upto num_total_peer.
  8263. * @agile_capability: Boolean specification of whether the target supports
  8264. * agile DFS, by means of using one 80 MHz radio chain for
  8265. * radar detection, concurrently with using another radio
  8266. * chain for non-160 MHz regular operation.
  8267. * @max_ast_index: Max number of AST entries that FW could allocate.
  8268. * @pktlog_defs_checksum: checksum computed from the definitions of the enums
  8269. * and structs used within pktlog traces. This is sent
  8270. * from the FW as part of FW ready event and needs
  8271. * to be embedded in the pktlog buffer header as version.
  8272. * @num_max_active_vdevs: number of max active virtual devices (VAPs) to
  8273. * support
  8274. */
  8275. struct wmi_host_ready_ev_param {
  8276. uint32_t status;
  8277. uint32_t num_dscp_table;
  8278. uint32_t num_extra_mac_addr;
  8279. uint32_t num_total_peer;
  8280. uint32_t num_extra_peer;
  8281. bool agile_capability;
  8282. uint32_t max_ast_index;
  8283. uint32_t pktlog_defs_checksum;
  8284. uint32_t num_max_active_vdevs;
  8285. };
  8286. enum bcn_offload_control_param {
  8287. BCN_OFFLD_CTRL_TX_DISABLE = 0,
  8288. BCN_OFFLD_CTRL_TX_ENABLE,
  8289. BCN_OFFLD_CTRL_SWBA_DISABLE,
  8290. BCN_OFFLD_CTRL_SWBA_ENABLE,
  8291. };
  8292. #ifdef OBSS_PD
  8293. /**
  8294. * struct wmi_host_obss_spatial_reuse_set_param - OBSS_PD_SPATIAL Reuse
  8295. * structure
  8296. * @enable: Enable/Disable Spatial Reuse
  8297. * @obss_min: Minimum OBSS level to use
  8298. * @obss_max: Maximum OBSS level to use
  8299. * @vdev_id: Vdev id
  8300. */
  8301. struct wmi_host_obss_spatial_reuse_set_param {
  8302. uint32_t enable;
  8303. int32_t obss_min;
  8304. int32_t obss_max;
  8305. uint32_t vdev_id;
  8306. };
  8307. /**
  8308. * struct wmi_host_obss_spatial_reuse_set_def_thresh - default obsspd offsets
  8309. * @obss_min: Minimum OBSS level to use
  8310. * @obss_max: Maximum OBSS level to use
  8311. * @vdev_type: vdev_type should be one of WMI_VDEV_TYPE_STA or WMI_VDEV_TYPE_AP
  8312. */
  8313. struct wmi_host_obss_spatial_reuse_set_def_thresh {
  8314. int32_t obss_min;
  8315. int32_t obss_max;
  8316. uint32_t vdev_type;
  8317. };
  8318. #endif
  8319. /**
  8320. * struct wmi_host_injector_frame_params - Injector frame configuration params
  8321. * @vdev_id: vdev identifier of VAP
  8322. * @enable: Enable/disable flag for the frame
  8323. * @frame_type: Frame type to be enabled
  8324. * @frame_inject_period: Periodicity of injector frame transmission in msecs
  8325. * @frame_duration: Frame Duration field in usecs
  8326. * @frame_bw: Bandwidth of the injected frame
  8327. * @dstmac: Destination address to be used for the frame
  8328. */
  8329. struct wmi_host_injector_frame_params {
  8330. uint32_t vdev_id;
  8331. uint32_t enable;
  8332. uint32_t frame_type;
  8333. uint32_t frame_inject_period;
  8334. uint32_t frame_duration;
  8335. uint32_t frame_bw;
  8336. uint8_t dstmac[QDF_MAC_ADDR_SIZE];
  8337. };
  8338. /**
  8339. * struct wdsentry - WDS entry structure
  8340. * @peer_mac: peer mac
  8341. * @wds_mac: wds mac address
  8342. * @flags: flags
  8343. */
  8344. struct wdsentry {
  8345. u_int8_t peer_mac[QDF_MAC_ADDR_SIZE];
  8346. u_int8_t wds_mac[QDF_MAC_ADDR_SIZE];
  8347. uint32_t flags;
  8348. };
  8349. /**
  8350. * struct wmi_obss_detection_cfg_param - obss detection cfg
  8351. * @vdev_id: vdev id
  8352. * @obss_detect_period_ms: detection period in ms
  8353. * @obss_11b_ap_detect_mode: detect whether there is 11b ap/ibss
  8354. * @obss_11b_sta_detect_mode: detect whether there is 11b sta
  8355. * connected with other APs
  8356. * @obss_11g_ap_detect_mode: detect whether there is 11g AP
  8357. * @obss_11a_detect_mode: detect whether there is legacy 11a traffic
  8358. * @obss_ht_legacy_detect_mode: detect whether there is ap which is
  8359. * ht legacy mode
  8360. * @obss_ht_mixed_detect_mode: detect whether there is ap which is ht mixed mode
  8361. * @obss_ht_20mhz_detect_mode: detect whether there is ap which has 20M only
  8362. * station
  8363. */
  8364. struct wmi_obss_detection_cfg_param {
  8365. uint32_t vdev_id;
  8366. uint32_t obss_detect_period_ms;
  8367. uint32_t obss_11b_ap_detect_mode;
  8368. uint32_t obss_11b_sta_detect_mode;
  8369. uint32_t obss_11g_ap_detect_mode;
  8370. uint32_t obss_11a_detect_mode;
  8371. uint32_t obss_ht_legacy_detect_mode;
  8372. uint32_t obss_ht_mixed_detect_mode;
  8373. uint32_t obss_ht_20mhz_detect_mode;
  8374. };
  8375. /**
  8376. * enum wmi_obss_detection_reason - obss detection event reasons
  8377. * @OBSS_OFFLOAD_DETECTION_DISABLED: OBSS detection disabled
  8378. * @OBSS_OFFLOAD_DETECTION_PRESENT: OBSS present detection
  8379. * @OBSS_OFFLOAD_DETECTION_ABSENT: OBSS absent detection
  8380. *
  8381. * Defines different types of reasons for obss detection event from firmware.
  8382. */
  8383. enum wmi_obss_detection_reason {
  8384. OBSS_OFFLOAD_DETECTION_DISABLED = 0,
  8385. OBSS_OFFLOAD_DETECTION_PRESENT = 1,
  8386. OBSS_OFFLOAD_DETECTION_ABSENT = 2,
  8387. };
  8388. /**
  8389. * struct wmi_obss_detect_info - OBSS detection info from firmware
  8390. * @vdev_id: ID of the vdev to which this info belongs.
  8391. * @reason: Indicate if present or Absent detection,
  8392. * also if not supported offload for this vdev.
  8393. * @matched_detection_masks: Detection bit map.
  8394. * @matched_bssid_addr: MAC address valid for only if info is present detection.
  8395. */
  8396. struct wmi_obss_detect_info {
  8397. uint32_t vdev_id;
  8398. enum wmi_obss_detection_reason reason;
  8399. uint32_t matched_detection_masks;
  8400. uint8_t matched_bssid_addr[QDF_MAC_ADDR_SIZE];
  8401. };
  8402. #ifdef QCA_SUPPORT_CP_STATS
  8403. /**
  8404. * struct wmi_host_congestion_stats - host definition of congestion stats
  8405. * @vdev_id: ID of the vdev to which this info belongs.
  8406. * @congestion: This field holds the congestion percentage =
  8407. * (busy_time/total_time)*100
  8408. * for the interval from when the vdev was started to the current time
  8409. * (or the time at which the vdev was stopped).
  8410. */
  8411. struct wmi_host_congestion_stats {
  8412. uint32_t vdev_id;
  8413. uint32_t congestion;
  8414. };
  8415. #endif
  8416. #ifdef FEATURE_WLAN_APF
  8417. /**
  8418. * struct wmi_apf_write_memory_params - Android Packet Filter write memory
  8419. * params
  8420. * @vdev_id: VDEV on which APF memory is to be written
  8421. * @apf_version: APF version number
  8422. * @program_len: Length reserved for program in the APF work memory
  8423. * @addr_offset: Relative address in APF work memory to start writing
  8424. * @length: Size of the write
  8425. * @buf: Pointer to the buffer
  8426. */
  8427. struct wmi_apf_write_memory_params {
  8428. uint8_t vdev_id;
  8429. uint32_t apf_version;
  8430. uint32_t program_len;
  8431. uint32_t addr_offset;
  8432. uint32_t length;
  8433. uint8_t *buf;
  8434. };
  8435. /**
  8436. * struct wmi_apf_read_memory_params - Android Packet Filter read memory params
  8437. * @vdev_id: vdev id
  8438. * @addr_offset: Relative address in APF work memory to read from
  8439. * @length: Size of the memory fetch
  8440. */
  8441. struct wmi_apf_read_memory_params {
  8442. uint8_t vdev_id;
  8443. uint32_t addr_offset;
  8444. uint32_t length;
  8445. };
  8446. /**
  8447. * struct wmi_apf_read_memory_resp_event_params - Event containing read Android
  8448. * Packet Filter memory response
  8449. * @vdev_id: vdev id
  8450. * @offset: Read memory offset
  8451. * @length: Read memory length
  8452. * @more_data: Indicates more data to come
  8453. * @data: Pointer to the data
  8454. */
  8455. struct wmi_apf_read_memory_resp_event_params {
  8456. uint32_t vdev_id;
  8457. uint32_t offset;
  8458. uint32_t length;
  8459. bool more_data;
  8460. uint8_t *data;
  8461. };
  8462. #endif /* FEATURE_WLAN_APF */
  8463. /* vdev control flags (per bits) */
  8464. #define WMI_HOST_VDEV_FLAGS_NON_MBSSID_AP 0x00000001
  8465. #define WMI_HOST_VDEV_FLAGS_TRANSMIT_AP 0x00000002
  8466. #define WMI_HOST_VDEV_FLAGS_NON_TRANSMIT_AP 0x00000004
  8467. /* Begin of roam scan stats definitions */
  8468. #define WMI_ROAM_SCAN_STATS_MAX 5
  8469. #define WMI_ROAM_SCAN_STATS_CANDIDATES_MAX 4
  8470. #define WMI_ROAM_SCAN_STATS_CHANNELS_MAX 50
  8471. /**
  8472. * struct wmi_roam_scan_stats_req - Structure to hold roam scan stats request
  8473. * @vdev_id: interface id
  8474. */
  8475. struct wmi_roam_scan_stats_req {
  8476. uint32_t vdev_id;
  8477. };
  8478. /**
  8479. * struct wmi_roam_scan_cand - Roam scan candidates
  8480. * @score: score of AP
  8481. * @rssi: rssi of the AP
  8482. * @freq: center frequency
  8483. * @bssid: bssid of AP
  8484. */
  8485. struct wmi_roam_scan_cand {
  8486. uint32_t score;
  8487. uint32_t rssi;
  8488. uint32_t freq;
  8489. uint8_t bssid[QDF_MAC_ADDR_SIZE];
  8490. };
  8491. /**
  8492. * struct wmi_roam_scan_stats_params - Roam scan details
  8493. * @time_stamp: time at which this roam scan happened
  8494. * @client_id: id of client which triggered this scan
  8495. * @num_scan_chans: number of channels that were scanned as part of this scan
  8496. * @scan_freqs: frequencies of the channels that were scanned
  8497. * @is_roam_successful: whether a successful roaming happened after this scan
  8498. * @old_bssid: bssid to which STA is connected just before this scan
  8499. * @new_bssid: bssid to which STA is roamed to in case of successful roaming
  8500. * @num_roam_candidates: no.of roam candidates that are being reported
  8501. * @cand: roam scan candidate details
  8502. * @trigger_id: reason for triggering this roam or roam scan
  8503. * @trigger_value: threshold value related to trigger_id
  8504. */
  8505. struct wmi_roam_scan_stats_params {
  8506. uint64_t time_stamp;
  8507. uint32_t client_id;
  8508. uint32_t num_scan_chans;
  8509. uint32_t scan_freqs[WMI_ROAM_SCAN_STATS_CHANNELS_MAX];
  8510. uint32_t is_roam_successful;
  8511. /* Bssid to which STA is connected when the roam scan is triggered */
  8512. uint8_t old_bssid[QDF_MAC_ADDR_SIZE];
  8513. /*
  8514. * Bssid to which STA is connected after roaming. Will be valid only
  8515. * if is_roam_successful is true.
  8516. */
  8517. uint8_t new_bssid[QDF_MAC_ADDR_SIZE];
  8518. /* Number of roam candidates that are being reported in the stats */
  8519. uint32_t num_roam_candidates;
  8520. struct wmi_roam_scan_cand cand[WMI_ROAM_SCAN_STATS_CANDIDATES_MAX];
  8521. uint32_t trigger_id;
  8522. uint32_t trigger_value;
  8523. };
  8524. /**
  8525. * struct wmi_roam_scan_stats_res - Roam scan stats response from firmware
  8526. * @num_roam_scans: number of roam scans triggered
  8527. * @roam_scan: place holder to indicate the array of
  8528. * wmi_roam_scan_stats_params followed by this structure
  8529. */
  8530. struct wmi_roam_scan_stats_res {
  8531. uint32_t num_roam_scans;
  8532. struct wmi_roam_scan_stats_params roam_scan[0];
  8533. };
  8534. #define MAX_ROAM_CANDIDATE_AP 9
  8535. #define MAX_ROAM_SCAN_CHAN 38
  8536. #define MAX_ROAM_SCAN_STATS_TLV 5
  8537. #define WLAN_MAX_BTM_CANDIDATE 8
  8538. #define WLAN_ROAM_MAX_FRAME_INFO (MAX_ROAM_CANDIDATE_AP * 6)
  8539. /**
  8540. * struct wmi_btm_req_candidate_info - BTM request candidate info
  8541. * @candidate_bssid: Candidate bssid received in BTM request
  8542. * @timestamp: candidate_timestamp;
  8543. * @preference: candidate preference
  8544. */
  8545. struct wmi_btm_req_candidate_info {
  8546. struct qdf_mac_addr candidate_bssid;
  8547. uint32_t timestamp;
  8548. uint8_t preference;
  8549. };
  8550. /**
  8551. * struct wmi_roam_trigger_per_data - per roam trigger related information
  8552. * @rx_rate_thresh_percent: percentage of lower than rx rate threshold
  8553. * @tx_rate_thresh_percent: percentage of lower than tx rate threshold
  8554. */
  8555. struct wmi_roam_trigger_per_data {
  8556. uint8_t rx_rate_thresh_percent;
  8557. uint8_t tx_rate_thresh_percent;
  8558. };
  8559. /**
  8560. * struct wmi_roam_trigger_bmiss_data - bmiss roam trigger related information
  8561. * @final_bmiss_cnt: final beacon miss count
  8562. * @consecutive_bmiss_cnt: consecutive beacon miss count
  8563. * @qos_null_success: is Qos-Null tx Success: 0: success, 1:fail
  8564. */
  8565. struct wmi_roam_trigger_bmiss_data {
  8566. uint32_t final_bmiss_cnt;
  8567. uint32_t consecutive_bmiss_cnt;
  8568. uint8_t qos_null_success;
  8569. };
  8570. /**
  8571. * struct wmi_roam_trigger_low_rssi_data - low rssi roam trigger
  8572. * related information
  8573. * @current_rssi: Connected AP rssi in dBm
  8574. * @roam_rssi_threshold: rssi threshold value in dBm
  8575. * @rx_linkspeed_status: rx linkspeed status, 0:good linkspeed, 1:bad
  8576. */
  8577. struct wmi_roam_trigger_low_rssi_data {
  8578. uint8_t current_rssi;
  8579. uint8_t roam_rssi_threshold;
  8580. uint8_t rx_linkspeed_status;
  8581. };
  8582. /**
  8583. * struct wmi_roam_trigger_hi_rssi_data - high rssi roam trigger
  8584. * related information
  8585. * @current_rssi: Connected AP rssi in dBm
  8586. * @hirssi_threshold: roam high RSSI threshold
  8587. */
  8588. struct wmi_roam_trigger_hi_rssi_data {
  8589. uint8_t current_rssi;
  8590. uint8_t hirssi_threshold;
  8591. };
  8592. /**
  8593. * struct wmi_roam_trigger_congestion_data - congestion roam trigger
  8594. * related information
  8595. * @rx_tput: RX Throughput in bytes per second in dense env
  8596. * @tx_tput: TX Throughput in bytes per second in dense env
  8597. * @roamable_count: roamable AP count info in dense env
  8598. */
  8599. struct wmi_roam_trigger_congestion_data {
  8600. uint32_t rx_tput;
  8601. uint32_t tx_tput;
  8602. uint8_t roamable_count;
  8603. };
  8604. /**
  8605. * struct wmi_roam_trigger_user_data - user roam trigger related information
  8606. * @invoke_reason: defined in wlan_roam_invoke_reason
  8607. */
  8608. struct wmi_roam_trigger_user_data {
  8609. uint32_t invoke_reason;
  8610. };
  8611. /**
  8612. * struct wmi_roam_trigger_background_data - roam trigger related information
  8613. * @current_rssi: Connected AP rssi in dBm
  8614. * @data_rssi: data frame rssi in dBm
  8615. * @data_rssi_threshold: data rssi threshold in dBm
  8616. */
  8617. struct wmi_roam_trigger_background_data {
  8618. uint8_t current_rssi;
  8619. uint8_t data_rssi;
  8620. uint8_t data_rssi_threshold;
  8621. };
  8622. /**
  8623. * struct wmi_roam_btm_trigger_data - BTM roam trigger related information
  8624. * @timestamp: timestamp
  8625. * @btm_request_mode: BTM request mode - solicited/unsolicited
  8626. * @disassoc_timer: Number of TBTT before AP disassociates the STA in ms
  8627. * @validity_interval: Preferred candidate list validity interval in ms
  8628. * @candidate_list_count: Number of candidates in BTM request.
  8629. * @btm_resp_status: Status code of the BTM response.
  8630. * @btm_bss_termination_timeout: BTM BSS termination timeout value
  8631. * in milli seconds
  8632. * @btm_mbo_assoc_retry_timeout: BTM MBO assoc retry timeout value in
  8633. * milli seconds
  8634. * @token: BTM request dialog token
  8635. * @btm_cand: BTM request candidate information
  8636. */
  8637. struct wmi_roam_btm_trigger_data {
  8638. uint32_t timestamp;
  8639. uint32_t btm_request_mode;
  8640. uint32_t disassoc_timer;
  8641. uint32_t validity_interval;
  8642. uint32_t candidate_list_count;
  8643. uint32_t btm_resp_status;
  8644. uint32_t btm_bss_termination_timeout;
  8645. uint32_t btm_mbo_assoc_retry_timeout;
  8646. uint16_t token;
  8647. struct wmi_btm_req_candidate_info btm_cand[WLAN_MAX_BTM_CANDIDATE];
  8648. };
  8649. /**
  8650. * struct wmi_roam_cu_trigger_data - BSS Load roam trigger parameters
  8651. * @cu_load: Connected AP CU load percentage
  8652. */
  8653. struct wmi_roam_cu_trigger_data {
  8654. uint32_t cu_load;
  8655. /* TODO: Add threshold value */
  8656. };
  8657. /**
  8658. * struct wmi_roam_rssi_trigger_data - RSSI roam trigger related
  8659. * parameters
  8660. * @threshold: RSSI threshold value in dBm for LOW rssi roam trigger
  8661. */
  8662. struct wmi_roam_rssi_trigger_data {
  8663. uint32_t threshold;
  8664. };
  8665. /**
  8666. * struct wmi_roam_deauth_trigger_data - Deauth roaming trigger related
  8667. * parameters
  8668. * @type: 1- Deauthentication 2- Disassociation
  8669. * @reason: Status code of the Deauth/Disassoc received
  8670. */
  8671. struct wmi_roam_deauth_trigger_data {
  8672. uint32_t type;
  8673. uint32_t reason;
  8674. };
  8675. /**
  8676. * struct wmi_roam_trigger_periodic_data - periodic roam trigger
  8677. * related information
  8678. * @periodic_timer_ms: roam scan periodic, milliseconds
  8679. */
  8680. struct wmi_roam_trigger_periodic_data {
  8681. uint32_t periodic_timer_ms;
  8682. };
  8683. /**
  8684. * struct wmi_roam_trigger_tx_failures_data - tx failures roam trigger
  8685. * related information
  8686. * @kickout_threshold: consecutive tx failure threshold
  8687. * @kickout_reason: defined in wmi_peer_sta_kickout_reason
  8688. */
  8689. struct wmi_roam_trigger_tx_failures_data {
  8690. uint32_t kickout_threshold;
  8691. uint32_t kickout_reason;
  8692. };
  8693. /**
  8694. * struct wmi_roam_wtc_btm_trigger_data - wtc btm roaming trigger related
  8695. * parameters
  8696. * @roaming_mode: Roaming Mode
  8697. * @vsie_trigger_reason: Roam trigger reason present in btm request
  8698. * @sub_code: Sub code present in btm request
  8699. * @wtc_mode: WTC mode
  8700. * @wtc_scan_mode: WTC scan mode
  8701. * @wtc_rssi_th: Connected AP threshold
  8702. * @wtc_candi_rssi_th: Candidate AP threshold
  8703. * @wtc_candi_rssi_ext_present: Flag to notify that whether fw sends rssi
  8704. * threshold for 5g & 6g AP to host or not
  8705. * @wtc_candi_rssi_th_5g: 5g candidate AP rssi threshold
  8706. * @wtc_candi_rssi_th_6g: 6g candidate AP rssi threshold
  8707. * @duration: WTC duration
  8708. */
  8709. struct wmi_roam_wtc_btm_trigger_data {
  8710. uint32_t roaming_mode;
  8711. uint32_t vsie_trigger_reason;
  8712. uint32_t sub_code;
  8713. uint32_t wtc_mode;
  8714. uint32_t wtc_scan_mode;
  8715. uint32_t wtc_rssi_th;
  8716. uint32_t wtc_candi_rssi_th;
  8717. uint32_t wtc_candi_rssi_ext_present;
  8718. uint32_t wtc_candi_rssi_th_5g;
  8719. uint32_t wtc_candi_rssi_th_6g;
  8720. uint32_t duration;
  8721. };
  8722. /**
  8723. * struct wmi_roam_trigger_abort_reason - abort roam related information
  8724. * @abort_reason_code: detail in qca_wlan_roam_abort_reason
  8725. * @data_rssi: data rssi in dBm
  8726. * @data_rssi_threshold: data rssi threshold in dBm
  8727. * @rx_linkspeed_status: rx linkspeed status, 0:good linkspeed, 1:bad
  8728. */
  8729. struct wmi_roam_trigger_abort_reason {
  8730. uint32_t abort_reason_code;
  8731. uint8_t data_rssi;
  8732. uint8_t data_rssi_threshold;
  8733. uint8_t rx_linkspeed_status;
  8734. };
  8735. /**
  8736. * struct wmi_roam_candidate_info - Roam scan candidate APs related info
  8737. * @timestamp: Host timestamp in millisecs
  8738. * @type: 0 - Candidate AP; 1 - Current connected AP.
  8739. * @bssid: AP bssid.
  8740. * @freq: Channel frquency
  8741. * @cu_load: Channel utilization load of the AP.
  8742. * @cu_score: Channel Utilization score.
  8743. * @rssi: Candidate AP rssi
  8744. * @rssi_score: AP RSSI score
  8745. * @total_score: Total score of the candidate AP.
  8746. * @etp: Estimated throughput value of the AP in Mbps
  8747. * @dl_reason: Denylist reason
  8748. * @dl_source: Source of adding AP to DL
  8749. * @dl_timestamp:This timestamp indicates the time when AP added
  8750. * to denylist.
  8751. * @dl_original_timeout: Original timeout value in milli seconds
  8752. * when AP added to DL
  8753. */
  8754. struct wmi_roam_candidate_info {
  8755. uint32_t timestamp;
  8756. uint8_t type;
  8757. struct qdf_mac_addr bssid;
  8758. uint16_t freq;
  8759. uint32_t cu_load;
  8760. uint32_t cu_score;
  8761. uint32_t rssi;
  8762. uint32_t rssi_score;
  8763. uint32_t total_score;
  8764. uint32_t etp;
  8765. uint32_t dl_reason;
  8766. uint32_t dl_source;
  8767. uint32_t dl_timestamp;
  8768. uint32_t dl_original_timeout;
  8769. };
  8770. /**
  8771. * struct wmi_roam_scan_data - Roam scan event details
  8772. * @present: Flag to check if the roam scan tlv is present
  8773. * @is_btcoex_active: is bluetooth connection active
  8774. * @type: 0 - Partial roam scan; 1 - Full roam scan
  8775. * @num_ap: Number of candidate APs.
  8776. * @num_chan: Number of channels.
  8777. * @frame_info_count: Frame info TLV count
  8778. * @next_rssi_threshold: Next roam can trigger rssi threshold
  8779. * @chan_freq: List of frequencies scanned as part of roam scan
  8780. * @ap: List of candidate AP info
  8781. * @dwell_type: roam scan channel dwell type, enum in roam_scan_dwell_type
  8782. * @scan_complete_timestamp: timestamp of all channels scan completed
  8783. */
  8784. struct wmi_roam_scan_data {
  8785. bool present;
  8786. bool is_btcoex_active;
  8787. uint16_t type;
  8788. uint16_t num_ap;
  8789. uint16_t num_chan;
  8790. uint16_t frame_info_count;
  8791. uint32_t next_rssi_threshold;
  8792. uint16_t chan_freq[MAX_ROAM_SCAN_CHAN];
  8793. struct wmi_roam_candidate_info ap[MAX_ROAM_CANDIDATE_AP];
  8794. uint8_t dwell_type[MAX_ROAM_SCAN_CHAN];
  8795. uint32_t scan_complete_timestamp;
  8796. };
  8797. /**
  8798. * struct wmi_roam_result - Roam result related info.
  8799. * @present: Flag to check if the roam result tlv is present
  8800. * @timestamp: Host timestamp in millisecs
  8801. * @status: 0 - Roaming is success ; 1 - Roaming failed ;
  8802. * 2 - No roam
  8803. * @fail_reason: One of WMI_ROAM_FAIL_REASON_ID
  8804. * @fail_bssid: BSSID of the last attempted roam failed AP
  8805. */
  8806. struct wmi_roam_result {
  8807. bool present;
  8808. uint32_t timestamp;
  8809. uint32_t status;
  8810. uint32_t fail_reason;
  8811. struct qdf_mac_addr fail_bssid;
  8812. };
  8813. #define WLAN_11KV_TYPE_BTM_REQ 1
  8814. #define WLAN_11KV_TYPE_NEIGHBOR_RPT 2
  8815. /**
  8816. * struct wmi_neighbor_report_data - Neighbor report/BTM request related
  8817. * data.
  8818. * @present: Flag to check if the roam 11kv tlv is present
  8819. * @timestamp: Host timestamp in millisecs
  8820. * @req_type: 1 - BTM query ; 2 - 11K neighbor report request
  8821. * @req_time: Request timestamp in ms
  8822. * @resp_time: Response timestamp in ms
  8823. * @num_freq: Number of frequencies
  8824. * @freq: Channel frequency in Mhz
  8825. * @btm_query_token: BTM query dialog token.
  8826. * @btm_query_reason: BTM query reasons as defined in
  8827. * IEEE802.11v spec table 7-43x
  8828. * @req_token: Request token
  8829. * @resp_token: Response Token
  8830. * @num_rpt: Number of report element
  8831. */
  8832. struct wmi_neighbor_report_data {
  8833. bool present;
  8834. uint32_t timestamp;
  8835. uint8_t req_type;
  8836. uint32_t req_time;
  8837. uint32_t resp_time;
  8838. uint8_t num_freq;
  8839. uint32_t freq[MAX_ROAM_SCAN_CHAN];
  8840. uint16_t btm_query_token;
  8841. uint8_t btm_query_reason;
  8842. uint8_t req_token;
  8843. uint8_t resp_token;
  8844. uint8_t num_rpt;
  8845. };
  8846. /**
  8847. * struct wmi_roam_trigger_info() - Roam trigger related details
  8848. * @present: Flag to check if the roam_trigger_info tlv is present
  8849. * @common_roam: Flag to indicate common roam or special roam
  8850. * @trigger_reason: Roam trigger reason(enum WMI_ROAM_TRIGGER_REASON_ID)
  8851. * @trigger_sub_reason: Sub reason for roam trigger if multiple roam scans
  8852. * @current_rssi: Connected AP RSSI
  8853. * @timestamp: Host timestamp in millisecs when roam scan was triggered
  8854. * @per_trig_data: per roam trigger parameters
  8855. * @bmiss_trig_data: beacon miss roam trigger parameters.
  8856. * @low_rssi_trig_data: low rssi roam trigger parameters.
  8857. * @hi_rssi_trig_data: high rssi roam trigger parameters.
  8858. * @congestion_trig_data: congestion roam trigger parameters.
  8859. * @user_trig_data: user trigger roam parameters.
  8860. * @background_trig_data: background roam trigger parameters.
  8861. * @btm_trig_data: BTM roam trigger parameters.
  8862. * @cu_trig_data: BSS Load roam trigger parameters.
  8863. * @rssi_trig_data: RSSI trigger related info.
  8864. * @deauth_trig_data: Deauth roam trigger related info
  8865. * @periodic_trig_data: periodic roam trigger parameters.
  8866. * @tx_failures_trig_data: tx failures roam trigger parameters.
  8867. * @wtc_btm_trig_data: WTC BTM roam trigger related info
  8868. * @abort_reason: roam abort reason
  8869. * @scan_type: roam scan type
  8870. * @roam_status: roam result status
  8871. * @fail_reason: roam fail reason
  8872. */
  8873. struct wmi_roam_trigger_info {
  8874. bool present;
  8875. bool common_roam;
  8876. uint32_t trigger_reason;
  8877. uint32_t trigger_sub_reason;
  8878. uint32_t current_rssi;
  8879. uint32_t timestamp;
  8880. union {
  8881. struct wmi_roam_trigger_per_data per_trig_data;
  8882. struct wmi_roam_trigger_bmiss_data bmiss_trig_data;
  8883. struct wmi_roam_trigger_low_rssi_data low_rssi_trig_data;
  8884. struct wmi_roam_trigger_hi_rssi_data hi_rssi_trig_data;
  8885. struct wmi_roam_trigger_congestion_data congestion_trig_data;
  8886. struct wmi_roam_trigger_user_data user_trig_data;
  8887. struct wmi_roam_trigger_background_data background_trig_data;
  8888. struct wmi_roam_btm_trigger_data btm_trig_data;
  8889. struct wmi_roam_cu_trigger_data cu_trig_data;
  8890. struct wmi_roam_rssi_trigger_data rssi_trig_data;
  8891. struct wmi_roam_deauth_trigger_data deauth_trig_data;
  8892. struct wmi_roam_trigger_periodic_data periodic_trig_data;
  8893. struct wmi_roam_trigger_tx_failures_data tx_failures_trig_data;
  8894. struct wmi_roam_wtc_btm_trigger_data wtc_btm_trig_data;
  8895. };
  8896. struct wmi_roam_trigger_abort_reason abort_reason;
  8897. uint32_t scan_type;
  8898. uint32_t roam_status;
  8899. uint32_t fail_reason;
  8900. };
  8901. /* End of roam scan stats definitions */
  8902. /**
  8903. * enum wmi_obss_color_collision_evt_type - bss color collision event type
  8904. * @OBSS_COLOR_COLLISION_DETECTION_DISABLE: OBSS color detection disabled
  8905. * @OBSS_COLOR_COLLISION_DETECTION: OBSS color collision detection
  8906. * @OBSS_COLOR_FREE_SLOT_TIMER_EXPIRY: OBSS free slot detection with
  8907. * within expiry period
  8908. * @OBSS_COLOR_FREE_SLOT_AVAILABLE: OBSS free slot detection
  8909. *
  8910. * Defines different types of type for obss color collision event type.
  8911. */
  8912. enum wmi_obss_color_collision_evt_type {
  8913. OBSS_COLOR_COLLISION_DETECTION_DISABLE = 0,
  8914. OBSS_COLOR_COLLISION_DETECTION = 1,
  8915. OBSS_COLOR_FREE_SLOT_TIMER_EXPIRY = 2,
  8916. OBSS_COLOR_FREE_SLOT_AVAILABLE = 3,
  8917. };
  8918. /**
  8919. * struct wmi_obss_color_collision_cfg_param - obss color collision cfg
  8920. * @vdev_id: vdev id
  8921. * @flags: proposed for future use cases, currently not used.
  8922. * @evt_type: bss color collision event.
  8923. * @current_bss_color: current bss color.
  8924. * @detection_period_ms: scan interval for both AP and STA mode.
  8925. * @scan_period_ms: scan period for passive scan to detect collision.
  8926. * @free_slot_expiry_time_ms: FW to notify host at timer expiry after
  8927. * which Host will disable the bss color.
  8928. */
  8929. struct wmi_obss_color_collision_cfg_param {
  8930. uint32_t vdev_id;
  8931. uint32_t flags;
  8932. enum wmi_obss_color_collision_evt_type evt_type;
  8933. uint32_t current_bss_color;
  8934. uint32_t detection_period_ms;
  8935. uint32_t scan_period_ms;
  8936. uint32_t free_slot_expiry_time_ms;
  8937. };
  8938. /**
  8939. * struct wmi_obss_color_collision_info - bss color detection info from firmware
  8940. * @vdev_id: ID of the vdev to which this info belongs.
  8941. * @evt_type: bss color collision event.
  8942. * @obss_color_bitmap_bit0to31: Bit set indicating BSS color present.
  8943. * @obss_color_bitmap_bit32to63: Bit set indicating BSS color present.
  8944. */
  8945. struct wmi_obss_color_collision_info {
  8946. uint32_t vdev_id;
  8947. enum wmi_obss_color_collision_evt_type evt_type;
  8948. uint32_t obss_color_bitmap_bit0to31;
  8949. uint32_t obss_color_bitmap_bit32to63;
  8950. };
  8951. #ifdef WMI_AP_SUPPORT
  8952. /**
  8953. * struct vap_pcp_tid_map_params - PCP tid map params
  8954. * @vdev_id: vdev id
  8955. * @pcp_to_tid_map: pointer to array of pcp to tid map table
  8956. */
  8957. struct vap_pcp_tid_map_params {
  8958. uint32_t vdev_id;
  8959. uint32_t *pcp_to_tid_map;
  8960. };
  8961. /**
  8962. * struct vap_tidmap_prec_params - tidmap precedence params
  8963. * @vdev_id: vdev id
  8964. * @map_precedence: precedence of tid mapping
  8965. */
  8966. struct vap_tidmap_prec_params {
  8967. uint32_t vdev_id;
  8968. uint32_t map_precedence;
  8969. };
  8970. #endif
  8971. /**
  8972. * struct peer_vlan_config_param - peer vlan parameter
  8973. * @tx_cmd: Tx command
  8974. * @rx_cmd: Rx Command
  8975. * @tx_strip_insert: Strip or Insert vlan in Tx[0:Strip, 1: Insert]
  8976. * @tx_strip_insert_inner: Enable tx_strip_insert operation for inner vlan tag.
  8977. * @tx_strip_insert_outer: Enable tx_strip_insert operation for outer vlan tag.
  8978. * @rx_strip_c_tag: Strip c_tag
  8979. * @rx_strip_s_tag: Strip s_tag
  8980. * @rx_insert_c_tag: Insert c_tag
  8981. * @rx_insert_s_tag: Insert s_tag
  8982. * @insert_vlan_inner_tci: Vlan inner tci
  8983. * @insert_vlan_outer_tci: Vlan outer tci
  8984. * @vdev_id: vdev id corresponding to peer.
  8985. */
  8986. struct peer_vlan_config_param {
  8987. uint16_t tx_cmd:1;
  8988. uint16_t rx_cmd:1;
  8989. uint16_t tx_strip_insert:1;
  8990. uint16_t tx_strip_insert_inner:1;
  8991. uint16_t tx_strip_insert_outer:1;
  8992. uint16_t rx_strip_c_tag:1;
  8993. uint16_t rx_strip_s_tag:1;
  8994. uint16_t rx_insert_c_tag:1;
  8995. uint16_t rx_insert_s_tag:1;
  8996. uint16_t insert_vlan_inner_tci;
  8997. uint16_t insert_vlan_outer_tci;
  8998. uint8_t vdev_id;
  8999. };
  9000. /**
  9001. * struct wmi_cfr_peer_tx_event_param - CFR peer tx_event params
  9002. * @capture_method: CFR data capture method
  9003. * @vdev_id: ID of vdev to which this info belongs
  9004. * @peer_mac_addr: Peer MAC address. In AP mode, it is the address of connected
  9005. * peer for which CFR capture is needed. In STA mode, this is
  9006. * the address of AP it is connected to.
  9007. * @primary_20mhz_chan: Primary 20 MHz channel frequency in MHz
  9008. * @bandwidth: BW of measurement
  9009. * 0 - 20MHz, 1 - 40MHz, 2 - 80MHz, 3 - 160MHz, 4 - 80+80MHz
  9010. * @phy_mode: Phy mode of channel, type - WMI_HOST_WLAN_PHY_MODE
  9011. * @band_center_freq1: Center frequency 1 in MHz
  9012. * @band_center_freq2: Center frequency 2 in MHz
  9013. * @spatial_streams: Number of spatial streams
  9014. * @correlation_info_1: Address of data from wmi_dma_buf_release_entry [31:0]
  9015. * @correlation_info_2:
  9016. * Bits [3:0] - Address of data from wmi_dma_buf_release_entry [35:32]
  9017. * Bits [15:4] - Reserved
  9018. * Bits [31:16] - Hardware PPDU ID [15:0]
  9019. * @status:
  9020. * Bits [1:0] - TX status, if any. 0-OK, 1-XRETRY, 2-DROP, 3-FILTERED.
  9021. * Bits [30:2] - Reserved
  9022. * Bit [31] - Status of the CFR capture of the peer
  9023. * 1 - Successful, 0 - Unsuccessful.
  9024. * @timestamp_us: Timestamp in microseconds at which the CFR was captured
  9025. * in the hardware. The clock used for this timestamp is private
  9026. * to the target and not visible to the host. So, Host can
  9027. * interpret only the relative timestamp deltas from one message
  9028. * to the next, but can't interpret the absolute timestamp
  9029. * from a single message
  9030. * @counter: Count of the current CFR capture from FW.
  9031. * This is helpful to identify any drops in FW
  9032. * @chain_rssi: Per chain RSSI of the peer, for upto WMI_HOST_MAX_CHAINS.
  9033. * Each chain's entry reports the RSSI for different bandwidths.
  9034. * Bits [7:0] - Primary 20 MHz
  9035. * Bits [15:8] - Secondary 20 MHz of 40 MHz channel (if applicable)
  9036. * Bits [23:16] - Secondary 40 MHz of 80 MHz channel (if applicable)
  9037. * Bits [31:24] - Secondary 80 MHz of 160 MHz channel (if applicable)
  9038. * Each of these 8-bit RSSI reports is in dBm units. 0x80 means invalid.
  9039. * Unused bytes within used chain_rssi indices will be 0x80.
  9040. * Unused rssi_chain indices will be set to 0x80808080.
  9041. * @chain_phase: Per chain phase of peer for upto WMI_HOST_MAX_CHAINS.
  9042. * @cfo_measurement:
  9043. * @agc_gain:
  9044. * @rx_start_ts:
  9045. * @rx_ts_reset:
  9046. * @mcs_rate:
  9047. * @gi_type:
  9048. * @agc_gain_tbl_index:
  9049. */
  9050. typedef struct {
  9051. uint32_t capture_method;
  9052. uint32_t vdev_id;
  9053. struct qdf_mac_addr peer_mac_addr;
  9054. uint32_t primary_20mhz_chan;
  9055. uint32_t bandwidth;
  9056. uint32_t phy_mode;
  9057. uint32_t band_center_freq1;
  9058. uint32_t band_center_freq2;
  9059. uint32_t spatial_streams;
  9060. uint32_t correlation_info_1;
  9061. uint32_t correlation_info_2;
  9062. uint32_t status;
  9063. uint32_t timestamp_us;
  9064. uint32_t counter;
  9065. uint32_t chain_rssi[WMI_HOST_MAX_CHAINS];
  9066. uint16_t chain_phase[WMI_HOST_MAX_CHAINS];
  9067. int32_t cfo_measurement;
  9068. uint8_t agc_gain[WMI_HOST_MAX_CHAINS];
  9069. uint32_t rx_start_ts;
  9070. uint32_t rx_ts_reset;
  9071. uint32_t mcs_rate;
  9072. uint32_t gi_type;
  9073. uint8_t agc_gain_tbl_index[WMI_HOST_MAX_CHAINS];
  9074. } wmi_cfr_peer_tx_event_param;
  9075. /**
  9076. * struct wmi_cfr_phase_delta_param - AoA phase delta params
  9077. * @pdev_id: pdev id
  9078. * @freq: primary 20 MHz channel frequency in mhz
  9079. * @max_chains: indicates max chains for which AoA will be reported
  9080. * @chain_phase_mask: indicates the chains to which phase values are
  9081. * reported by target
  9082. * @phase_delta: phase delta associated with reported chain's each gain value
  9083. * @ibf_cal_val: IBF values to be added with phase delta of chains reported
  9084. */
  9085. struct wmi_cfr_phase_delta_param {
  9086. uint32_t pdev_id;
  9087. uint32_t freq;
  9088. uint32_t max_chains;
  9089. uint32_t chain_phase_mask;
  9090. uint32_t phase_delta[WMI_MAX_CHAINS_PHASE][WMI_MAX_AOA_PHASE_DELTA];
  9091. uint32_t ibf_cal_val[WMI_MAX_CHAINS_PHASE];
  9092. };
  9093. #ifdef WLAN_RCC_ENHANCED_AOA_SUPPORT
  9094. struct wmi_cfr_enh_phase_delta_param {
  9095. uint32_t pdev_id;
  9096. uint32_t freq;
  9097. uint32_t max_chains;
  9098. uint32_t data_for_chainmask;
  9099. uint32_t xbar_config;
  9100. uint32_t ibf_cal_val[WMI_HOST_MAX_NUM_CHAINS];
  9101. uint32_t array_size;
  9102. uint32_t *gain_stop_index_array;
  9103. uint32_t *enh_phase_delta_array;
  9104. };
  9105. #endif /* WLAN_RCC_ENHANCED_AOA_SUPPORT */
  9106. /**
  9107. * struct wmi_host_oem_indirect_data - Indirect OEM data
  9108. * @pdev_id: pdev id
  9109. * @len: length of data in bytes
  9110. * @addr: 36 bit address
  9111. */
  9112. struct wmi_host_oem_indirect_data {
  9113. uint32_t pdev_id;
  9114. uint32_t len;
  9115. uint64_t addr;
  9116. };
  9117. /**
  9118. * struct wmi_oem_response_param - OEM response info
  9119. * @num_data1: First data response length
  9120. * @num_data2: Second data response length
  9121. * @data_1: First data
  9122. * @data_2: Second data
  9123. * @indirect_data: Indirect data
  9124. */
  9125. struct wmi_oem_response_param {
  9126. uint32_t num_data1;
  9127. uint32_t num_data2;
  9128. uint8_t *data_1;
  9129. uint8_t *data_2;
  9130. struct wmi_host_oem_indirect_data indirect_data;
  9131. };
  9132. /**
  9133. * struct wifi_pos_pasn_peer_data - Wifi pos 11az ranging peer
  9134. * data. This structure is used to copy the peer related info from
  9135. * PASN events and pass it to wifi pos module
  9136. * @vdev_id: vdev id
  9137. * @num_peers: Total number of peers to be deleted
  9138. * @peer_info: PASN peer entry details
  9139. */
  9140. struct wifi_pos_pasn_peer_data {
  9141. uint8_t vdev_id;
  9142. uint8_t num_peers;
  9143. struct wlan_pasn_request peer_info[WLAN_MAX_11AZ_PEERS];
  9144. };
  9145. /**
  9146. * struct mws_coex_state - Modem Wireless Subsystem(MWS) coex info
  9147. * @vdev_id : vdev id
  9148. * @coex_scheme_bitmap: LTE-WLAN coexistence scheme bitmap
  9149. * Indicates the final schemes applied for the current Coex scenario.
  9150. * Bit 0 - TDM policy
  9151. * Bit 1 - Forced TDM policy
  9152. * Bit 2 - Dynamic Power Back-off policy
  9153. * Bit 3 - Channel Avoidance policy
  9154. * Bit 4 - Static Power Back-off policy.
  9155. * @active_conflict_count : active conflict count
  9156. * @potential_conflict_count: Potential conflict count
  9157. * @chavd_group0_bitmap: Indicates the WLAN channels to be avoided in
  9158. * b/w WLAN CH-1 and WLAN CH-14
  9159. * @chavd_group1_bitmap: Indicates the WLAN channels to be avoided in
  9160. * WLAN CH-36 and WLAN CH-64
  9161. * @chavd_group2_bitmap: Indicates the WLAN channels to be avoided in
  9162. * b/w WLAN CH-100 and WLAN CH-140
  9163. * @chavd_group3_bitmap: Indicates the WLAN channels to be avoided in
  9164. * b/w WLAN CH-149 and WLAN CH-165
  9165. */
  9166. struct mws_coex_state {
  9167. uint32_t vdev_id;
  9168. uint32_t coex_scheme_bitmap;
  9169. uint32_t active_conflict_count;
  9170. uint32_t potential_conflict_count;
  9171. uint32_t chavd_group0_bitmap;
  9172. uint32_t chavd_group1_bitmap;
  9173. uint32_t chavd_group2_bitmap;
  9174. uint32_t chavd_group3_bitmap;
  9175. };
  9176. /**
  9177. * struct mws_coex_dpwb_state - Modem Wireless Subsystem(MWS) coex DPWB info
  9178. * @vdev_id: vdev id
  9179. * @current_dpwb_state: Current state of the Dynamic Power Back-off SM
  9180. * @pnp1_value: Tx power to be applied in next Dynamic Power Back-off cycle
  9181. * @lte_dutycycle: Indicates the duty cycle of current LTE frame
  9182. * @sinr_wlan_on: LTE SINR value in dB, when WLAN is ON
  9183. * @sinr_wlan_off: LTE SINR value in dB, when WLAN is OFF
  9184. * @bler_count: LTE blocks with error for the current block err report.
  9185. * @block_count: Number of LTE blocks considered for bler count report.
  9186. * @wlan_rssi_level: WLAN RSSI level
  9187. * @wlan_rssi: WLAN RSSI value in dBm considered in DP backoff algo
  9188. * @is_tdm_running: Indicates whether any TDM policy triggered
  9189. */
  9190. struct mws_coex_dpwb_state {
  9191. uint32_t vdev_id;
  9192. int32_t current_dpwb_state;
  9193. int32_t pnp1_value;
  9194. uint32_t lte_dutycycle;
  9195. int32_t sinr_wlan_on;
  9196. int32_t sinr_wlan_off;
  9197. uint32_t bler_count;
  9198. uint32_t block_count;
  9199. uint32_t wlan_rssi_level;
  9200. int32_t wlan_rssi;
  9201. uint32_t is_tdm_running;
  9202. };
  9203. /**
  9204. * struct mws_coex_tdm_state - Modem Wireless Subsystem(MWS) coex TDM state info
  9205. * @vdev_id: vdev id
  9206. * @tdm_policy_bitmap: Time Division Multiplexing (TDM) LTE-Coex Policy type.
  9207. * @tdm_sf_bitmap: TDM LTE/WLAN sub-frame bitmap.
  9208. */
  9209. struct mws_coex_tdm_state {
  9210. uint32_t vdev_id;
  9211. uint32_t tdm_policy_bitmap;
  9212. uint32_t tdm_sf_bitmap;
  9213. };
  9214. /**
  9215. * struct mws_coex_idrx_state - Modem Wireless Subsystem(MWS) coex IDRX state
  9216. * @vdev_id: vdev id
  9217. * @sub0_techid: SUB0 LTE-coex tech.
  9218. * @sub0_policy: SUB0 mitigation policy.
  9219. * @sub0_is_link_critical: Set if SUB0 is in link critical state.
  9220. * @sub0_static_power: LTE SUB0 imposed static power applied
  9221. * to WLAN due to LTE-WLAN coex.
  9222. * @sub0_rssi: LTE SUB0 RSSI value in dBm.
  9223. * @sub1_techid: SUB1 LTE-coex tech.
  9224. * @sub1_policy: SUB1 mitigation policy.
  9225. * @sub1_is_link_critical: Set if SUB1 is in link critical state.
  9226. * @sub1_static_power: LTE SUB1 imposed static power applied
  9227. * to WLAN due to LTE-WLAN coex.
  9228. * @sub1_rssi: LTE SUB1 RSSI value in dBm.
  9229. */
  9230. struct mws_coex_idrx_state {
  9231. uint32_t vdev_id;
  9232. uint32_t sub0_techid;
  9233. uint32_t sub0_policy;
  9234. uint32_t sub0_is_link_critical;
  9235. int32_t sub0_static_power;
  9236. int32_t sub0_rssi;
  9237. uint32_t sub1_techid;
  9238. uint32_t sub1_policy;
  9239. uint32_t sub1_is_link_critical;
  9240. int32_t sub1_static_power;
  9241. int32_t sub1_rssi;
  9242. };
  9243. /**
  9244. * struct mws_antenna_sharing_info - MWS Antenna sharing Info
  9245. * @vdev_id: vdev id
  9246. * @coex_flags: BDF values of Coex flags
  9247. * @coex_config: BDF values of Coex Antenna sharing config
  9248. * @tx_chain_mask: Tx Chain mask value
  9249. * @rx_chain_mask: Rx Chain mask value
  9250. * @rx_nss: Currently active Rx Spatial streams
  9251. * @force_mrc: Forced MRC policy type
  9252. * @rssi_type: RSSI value considered for MRC
  9253. * @chain0_rssi: RSSI value measured at Chain-0 in dBm
  9254. * @chain1_rssi: RSSI value measured at Chain-1 in dBm
  9255. * @combined_rssi: RSSI value of two chains combined in dBm
  9256. * @imbalance: Absolute imbalance between two Rx chains in dB
  9257. * @mrc_threshold: RSSI threshold defined for the above imbalance value in dBm
  9258. * @grant_duration: Antenna grant duration to WLAN, in milliseconds
  9259. */
  9260. struct mws_antenna_sharing_info {
  9261. uint32_t vdev_id;
  9262. uint32_t coex_flags;
  9263. uint32_t coex_config;
  9264. uint32_t tx_chain_mask;
  9265. uint32_t rx_chain_mask;
  9266. uint32_t rx_nss;
  9267. uint32_t force_mrc;
  9268. uint32_t rssi_type;
  9269. int32_t chain0_rssi;
  9270. int32_t chain1_rssi;
  9271. int32_t combined_rssi;
  9272. uint32_t imbalance;
  9273. int32_t mrc_threshold;
  9274. uint32_t grant_duration;
  9275. };
  9276. #ifdef FEATURE_ANI_LEVEL_REQUEST
  9277. /* Maximum number of freqs for which ANI level can be requested */
  9278. #define MAX_NUM_FREQS_FOR_ANI_LEVEL 20
  9279. /* A valid ANI level lies between 0 to 9 */
  9280. #define MAX_ANI_LEVEL 9
  9281. struct wmi_host_ani_level_event {
  9282. uint32_t chan_freq;
  9283. uint32_t ani_level;
  9284. };
  9285. #endif /* FEATURE_ANI_LEVEL_REQUEST */
  9286. #define WMI_HOST_TBTT_OFFSET_INVALID 0xffffffff
  9287. #define MAX_SUPPORTED_NEIGHBORS 16
  9288. /* command type for WMI_PDEV_TBTT_OFFSET_SYNC_CMDID */
  9289. enum wmi_host_tbtt_offset_cmd_type {
  9290. WMI_HOST_PDEV_GET_TBTT_OFFSET,
  9291. WMI_HOST_PDEV_SET_TBTT_OFFSET,
  9292. };
  9293. /**
  9294. * struct wmi_raw_event_buffer - fw event buffers
  9295. * @evt_raw_buf: event raw buffer
  9296. * @evt_processed_buf: event processed buffer
  9297. */
  9298. struct wmi_raw_event_buffer {
  9299. void *evt_raw_buf;
  9300. void *evt_processed_buf;
  9301. };
  9302. /* dpd_status from WMI_PDEV_GET_DPD_STATUS_EVENTID */
  9303. enum wmi_host_dpd_status {
  9304. WMI_HOST_DPD_STATUS_FAIL = 0,
  9305. WMI_HOST_DPD_STATUS_PASS = 1,
  9306. WMI_HOST_DPD_STATUS_INVALID = 2,
  9307. };
  9308. /**
  9309. * struct wmi_host_pdev_get_dpd_status_event
  9310. * @pdev_id: pdev id
  9311. * @dpd_status: dpd status from FW - FAIL/PASS/INVALID
  9312. */
  9313. struct wmi_host_pdev_get_dpd_status_event {
  9314. uint32_t pdev_id;
  9315. enum wmi_host_dpd_status dpd_status;
  9316. };
  9317. struct wmi_host_pdev_get_halphy_cal_status_event {
  9318. uint32_t pdev_id;
  9319. uint32_t halphy_cal_adc_status:1,
  9320. halphy_cal_bwfilter_status:1,
  9321. halphy_cal_pdet_and_pal_status:1,
  9322. halphy_cal_rxdco_status:1,
  9323. halphy_cal_comb_txiq_rxiq_status:1,
  9324. halphy_cal_ibf_status:1,
  9325. halphy_cal_pa_droop_status:1,
  9326. halphy_cal_dac_status:1,
  9327. halphy_cal_ani_status:1,
  9328. halphy_cal_noise_floor_status:1;
  9329. };
  9330. /**
  9331. * enum wmi_host_set_halphy_cal_chan_sel - channel select values for
  9332. * set halphy cal
  9333. * @WMI_HOST_SET_HALPHY_CAL_HOME_CHANNEL: Home channel
  9334. * @WMI_HOST_SET_HALPHY_CAL_SCAN_CHANNEL: Scan channel
  9335. * @WMI_HOST_SET_HALPHY_CAL_BOTH_CHANNELS: Both (Home + Scan) channels
  9336. */
  9337. enum wmi_host_set_halphy_cal_chan_sel {
  9338. WMI_HOST_SET_HALPHY_CAL_HOME_CHANNEL = 0,
  9339. WMI_HOST_SET_HALPHY_CAL_SCAN_CHANNEL = 1,
  9340. WMI_HOST_SET_HALPHY_CAL_BOTH_CHANNELS = 2,
  9341. };
  9342. /**
  9343. * struct wmi_host_send_set_halphy_cal_info
  9344. * @pdev_id: pdev id
  9345. * @value: bmap value
  9346. * @chan_sel: channel for calibration - HOME/SCAN/BOTH
  9347. */
  9348. struct wmi_host_send_set_halphy_cal_info {
  9349. uint8_t pdev_id;
  9350. uint32_t value;
  9351. enum wmi_host_set_halphy_cal_chan_sel chan_sel;
  9352. };
  9353. /**
  9354. * struct wmi_install_key_comp_event - params of install key complete event
  9355. * @vdev_id: unique id identifying the VDEV, generated by the caller
  9356. * @key_ix: key index
  9357. * @key_flags: key flags
  9358. * @status: Event status
  9359. * @peer_macaddr: MAC address used for installing
  9360. */
  9361. struct wmi_install_key_comp_event {
  9362. uint32_t vdev_id;
  9363. uint32_t key_ix;
  9364. uint32_t key_flags;
  9365. uint32_t status;
  9366. uint8_t peer_macaddr[QDF_MAC_ADDR_SIZE];
  9367. };
  9368. /**
  9369. * enum wmi_host_set_halphy_cal_status - status values from
  9370. * WMI_PDEV_SET_HALPHY_CAL_BMAP_EVENTID
  9371. * @WMI_HOST_SET_HALPHY_CAL_STATUS_SUCCESS: set halphy cal success
  9372. * @WMI_HOST_SET_HALPHY_CAL_STATUS_FAIL: set halphy cal failure
  9373. */
  9374. enum wmi_host_set_halphy_cal_status {
  9375. WMI_HOST_SET_HALPHY_CAL_STATUS_SUCCESS = 0,
  9376. WMI_HOST_SET_HALPHY_CAL_STATUS_FAIL = 1,
  9377. };
  9378. /**
  9379. * struct wmi_host_pdev_set_halphy_cal_event
  9380. * @pdev_id: pdev id
  9381. * @status: PASS/FAIL
  9382. */
  9383. struct wmi_host_pdev_set_halphy_cal_event {
  9384. uint32_t pdev_id;
  9385. enum wmi_host_set_halphy_cal_status status;
  9386. };
  9387. #ifdef FEATURE_MEC_OFFLOAD
  9388. /**
  9389. * struct set_mec_timer_params - params MEC timer params
  9390. * @pdev_id: unique id identifying the PDEV, generated by the caller
  9391. * @vdev_id: unique id identifying the VDEV, generated by the caller
  9392. * @mec_aging_timer_threshold: The Threshold for mec aging timer in ms
  9393. * @enable: Enable/Disable the command
  9394. */
  9395. struct set_mec_timer_params {
  9396. uint32_t pdev_id;
  9397. uint32_t vdev_id;
  9398. uint32_t mec_aging_timer_threshold;
  9399. };
  9400. #endif
  9401. #ifdef WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE
  9402. /**
  9403. * struct set_mac_addr_params - Set MAC address command parameter
  9404. * @vdev_id: vdev id
  9405. * @mac_addr: VDEV MAC address
  9406. * @mld_addr: MLD address of the vdev
  9407. */
  9408. struct set_mac_addr_params {
  9409. uint8_t vdev_id;
  9410. struct qdf_mac_addr mac_addr;
  9411. struct qdf_mac_addr mld_addr;
  9412. };
  9413. #endif
  9414. #ifdef WLAN_FEATURE_SON
  9415. /**
  9416. * struct wmi_host_inst_rssi_stats_resp - inst rssi stats
  9417. * @inst_rssi: instantaneous rssi above the noise floor in dB unit
  9418. * @peer_macaddr: peer mac address
  9419. * @vdev_id: vdev_id
  9420. */
  9421. struct wmi_host_inst_rssi_stats_resp {
  9422. uint32_t inst_rssi;
  9423. struct qdf_mac_addr peer_macaddr;
  9424. uint32_t vdev_id;
  9425. };
  9426. #endif
  9427. /**
  9428. * struct vdev_pn_mgmt_rxfilter_params - Send PN mgmt RxFilter command params
  9429. * @vdev_id: vdev id
  9430. * @pn_rxfilter: Rx Filter
  9431. */
  9432. struct vdev_pn_mgmt_rxfilter_params {
  9433. uint8_t vdev_id;
  9434. uint32_t pn_rxfilter;
  9435. };
  9436. /**
  9437. * struct wmi_host_sw_cal_ver - BDF and FTM cal version data
  9438. * @bdf_cal_ver: SW cal version in BDF
  9439. * @ftm_cal_ver: SW cal version in factory data
  9440. * @status: status. 0 for success, non-zero if version is incorrect
  9441. */
  9442. struct wmi_host_sw_cal_ver {
  9443. uint32_t bdf_cal_ver;
  9444. uint32_t ftm_cal_ver;
  9445. uint32_t status;
  9446. };
  9447. #ifdef HEALTH_MON_SUPPORT
  9448. /**
  9449. * struct wmi_health_mon_params - Health mon params
  9450. * @ring_buf_paddr_low: Ring buffer physical address LOW
  9451. * @ring_buf_paddr_high: Ring buffer physical address HIGH
  9452. * @initial_upload_period_ms: Health mon periodic time
  9453. * @read_index: ring element read_index
  9454. */
  9455. struct wmi_health_mon_params {
  9456. uint32_t ring_buf_paddr_low;
  9457. uint32_t ring_buf_paddr_high;
  9458. uint32_t initial_upload_period_ms;
  9459. uint32_t read_index;
  9460. };
  9461. #endif /* HEALTH_MON_SUPPORT */
  9462. /**
  9463. * struct edca_pifs_vparam - edca/pifs param for ll sap
  9464. * @vdev_id: vdev id
  9465. * @param: pointer to wlan_edca_pifs_param_ie struct
  9466. */
  9467. struct edca_pifs_vparam {
  9468. uint8_t vdev_id;
  9469. struct wlan_edca_pifs_param_ie param;
  9470. };
  9471. /**
  9472. * struct wmi_host_coex_fix_chan_cap - fw capability to support fixed chan SAP
  9473. * @fix_chan_priority: Fix channel priority, set to 1 if firmware supports it
  9474. */
  9475. struct wmi_host_coex_fix_chan_cap {
  9476. uint32_t fix_chan_priority;
  9477. };
  9478. #endif /* _WMI_UNIFIED_PARAM_H_ */