123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467 |
- /*
- * Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- #include "wlan_ipa_ucfg_api.h"
- #if defined(CONFIG_HL_SUPPORT)
- #include "wlan_tgt_def_config_hl.h"
- #else
- #include "wlan_tgt_def_config.h"
- #endif
- #include "qdf_trace.h"
- #include "qdf_mem.h"
- #include <cdp_txrx_ops.h>
- #include "wlan_cfg.h"
- #include "cfg_ucfg_api.h"
- #include "hal_api.h"
- #include "dp_types.h"
- #include <qdf_module.h>
- /*
- * The max allowed size for tx comp ring is 8191.
- * This is limited by h/w ring max size.
- * As this is not a power of 2 it does not work with nss offload so the
- * nearest available size which is power of 2 is 4096 chosen for nss
- */
- #define WLAN_CFG_TX_RING_MASK_0 BIT(0)
- #define WLAN_CFG_TX_RING_MASK_1 BIT(1)
- #define WLAN_CFG_TX_RING_MASK_2 BIT(2)
- #define WLAN_CFG_TX_RING_MASK_3 BIT(3)
- #define WLAN_CFG_TX_RING_MASK_4 BIT(4)
- #define WLAN_CFG_TX_RING_MASK_5 BIT(5)
- #define WLAN_CFG_TX_RING_MASK_6 BIT(6)
- #define WLAN_CFG_TX_RING_MASK_7 BIT(7)
- #define WLAN_CFG_RX_MON_RING_MASK_0 0x1
- #define WLAN_CFG_RX_MON_RING_MASK_1 0x2
- #define WLAN_CFG_RX_MON_RING_MASK_2 0x4
- #define WLAN_CFG_RX_MON_RING_MASK_3 0x0
- #define WLAN_CFG_TX_MON_RING_MASK_0 BIT(0)
- #define WLAN_CFG_TX_MON_RING_MASK_1 BIT(1)
- #define WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 0x1
- #define WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1 0x2
- #define WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2 0x4
- #define WLAN_CFG_HOST2TXMON_RING_MASK_0 0x1
- #define WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 0x1
- #define WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1 0x2
- #define WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2 0x4
- #define WLAN_CFG_RX_ERR_RING_MASK_0 0x1
- #define WLAN_CFG_RX_ERR_RING_MASK_1 0x0
- #define WLAN_CFG_RX_ERR_RING_MASK_2 0x0
- #define WLAN_CFG_RX_ERR_RING_MASK_3 0x0
- #define WLAN_CFG_RX_WBM_REL_RING_MASK_0 0x1
- #define WLAN_CFG_RX_WBM_REL_RING_MASK_1 0x0
- #define WLAN_CFG_RX_WBM_REL_RING_MASK_2 0x0
- #define WLAN_CFG_RX_WBM_REL_RING_MASK_3 0x0
- #define WLAN_CFG_REO_STATUS_RING_MASK_0 0x1
- #define WLAN_CFG_REO_STATUS_RING_MASK_1 0x0
- #define WLAN_CFG_REO_STATUS_RING_MASK_2 0x0
- #define WLAN_CFG_REO_STATUS_RING_MASK_3 0x0
- #define WLAN_CFG_RXDMA2HOST_RING_MASK_0 0x1
- #define WLAN_CFG_RXDMA2HOST_RING_MASK_1 0x2
- #define WLAN_CFG_RXDMA2HOST_RING_MASK_2 0x4
- #define WLAN_CFG_RXDMA2HOST_RING_MASK_3 0x0
- #define WLAN_CFG_HOST2RXDMA_RING_MASK_0 0x1
- #define WLAN_CFG_HOST2RXDMA_RING_MASK_1 0x2
- #define WLAN_CFG_HOST2RXDMA_RING_MASK_2 0x4
- #define WLAN_CFG_HOST2RXDMA_RING_MASK_3 0x0
- #define WLAN_CFG_UMAC_RESET_INTR_MASK_0 0x1
- #define WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0 0x1
- #define WLAN_CFG_REO2PPE_RING_MASK_0 0x1
- #define WLAN_CFG_PPE2TCL_RING_MASK_0 0x1
- struct dp_int_mask_assignment {
- uint8_t tx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t rx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t rx_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t host2rxdma_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t rxdma2host_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t host2rxdma_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t rxdma2host_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t rx_err_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t rx_wbm_rel_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t reo_status_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t rx_ring_near_full_irq_1_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t rx_ring_near_full_irq_2_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t tx_ring_near_full_irq_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t host2txmon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t tx_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t ppeds_wbm_release_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t reo2ppe_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t ppe2tcl_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- uint8_t umac_reset_intr_mask[WLAN_CFG_INT_NUM_CONTEXTS];
- };
- #if defined(WLAN_MAX_PDEVS) && (WLAN_MAX_PDEVS == 1)
- /*
- * For BE, there are 18 available MSI interrupts, assigned in the manner
- * below.
- * TX(5) + RX(8) + (REO ERR + WBM ERR)(1) +
- * (REO status + RXDMA[0] + RXDMA[1])(1) + NEAR_Full_RX(2) + NEAR_Full_TX(1)
- * For IPA_OFFLOAD enabled case, 2 TX/RX rings would be assigned to IPA.
- */
- #ifdef CONFIG_BERYLLIUM
- #ifdef IPA_OFFLOAD
- /*
- * NEAR-FULL IRQ mask should be updated, if any change is made to
- * the below TX mask.
- */
- static const uint8_t tx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [0] = WLAN_CFG_TX_RING_MASK_0, [1] = WLAN_CFG_TX_RING_MASK_4,
- [2] = WLAN_CFG_TX_RING_MASK_2};
- #else /* !IPA_OFFLOAD */
- #ifdef QCA_WIFI_KIWI_V2
- static const uint8_t tx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [0] = WLAN_CFG_TX_RING_MASK_0, [1] = WLAN_CFG_TX_RING_MASK_4,
- [2] = WLAN_CFG_TX_RING_MASK_2, [3] = WLAN_CFG_TX_RING_MASK_5,
- [4] = WLAN_CFG_TX_RING_MASK_6};
- #else /* !QCA_WIFI_KIWI_V2 */
- static const uint8_t tx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [0] = WLAN_CFG_TX_RING_MASK_0, [1] = WLAN_CFG_TX_RING_MASK_4,
- [2] = WLAN_CFG_TX_RING_MASK_2, [3] = WLAN_CFG_TX_RING_MASK_6,
- [4] = WLAN_CFG_TX_RING_MASK_7};
- #endif /* QCA_WIFI_KIWI_V2 */
- #endif /* IPA_OFFLOAD */
- static inline const
- uint8_t *wlan_cfg_get_tx_ring_int_mask(struct wlan_cfg_dp_soc_ctxt *cfg_ctx)
- {
- return &tx_ring_mask_msi[0];
- }
- #else
- static const uint8_t tx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [0] = WLAN_CFG_TX_RING_MASK_0};
- #ifdef TX_MULTI_TCL
- static const uint8_t multi_tx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [0] = WLAN_CFG_TX_RING_MASK_0, [4] = WLAN_CFG_TX_RING_MASK_2};
- #ifdef IPA_OFFLOAD
- static inline const
- uint8_t *wlan_cfg_get_tx_ring_int_mask(struct wlan_cfg_dp_soc_ctxt *cfg_ctx)
- {
- if (cfg_ctx->ipa_enabled)
- return &tx_ring_mask_msi[0];
- return &multi_tx_ring_mask_msi[0];
- }
- #else
- static inline const
- uint8_t *wlan_cfg_get_tx_ring_int_mask(struct wlan_cfg_dp_soc_ctxt *cfg_ctx)
- {
- return &multi_tx_ring_mask_msi[0];
- }
- #endif /* IPA_OFFLOAD */
- #else
- static inline const
- uint8_t *wlan_cfg_get_tx_ring_int_mask(struct wlan_cfg_dp_soc_ctxt *cfg_ctx)
- {
- return &tx_ring_mask_msi[0];
- }
- #endif /* TX_MULTI_TCL */
- #endif /* CONFIG_BERYLLIUM */
- #ifdef CONFIG_BERYLLIUM
- #ifdef IPA_OFFLOAD
- static const uint8_t rx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [5] = WLAN_CFG_RX_RING_MASK_0, [6] = WLAN_CFG_RX_RING_MASK_1,
- [7] = WLAN_CFG_RX_RING_MASK_2, [9] = WLAN_CFG_RX_RING_MASK_4,
- [10] = WLAN_CFG_RX_RING_MASK_5, [11] = WLAN_CFG_RX_RING_MASK_6};
- #else
- static const uint8_t rx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [5] = WLAN_CFG_RX_RING_MASK_0, [6] = WLAN_CFG_RX_RING_MASK_1,
- [7] = WLAN_CFG_RX_RING_MASK_2, [8] = WLAN_CFG_RX_RING_MASK_3,
- [9] = WLAN_CFG_RX_RING_MASK_4, [10] = WLAN_CFG_RX_RING_MASK_5,
- [11] = WLAN_CFG_RX_RING_MASK_6, [12] = WLAN_CFG_RX_RING_MASK_7};
- #endif /* IPA_OFFLOAD */
- #else /* !defined(CONFIG_BERYLLIUM) */
- #ifdef IPA_OFFLOAD
- static const uint8_t rx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [1] = WLAN_CFG_RX_RING_MASK_0, [2] = WLAN_CFG_RX_RING_MASK_1,
- [3] = WLAN_CFG_RX_RING_MASK_2};
- #else
- static const uint8_t rx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [1] = WLAN_CFG_RX_RING_MASK_0, [2] = WLAN_CFG_RX_RING_MASK_1,
- [3] = WLAN_CFG_RX_RING_MASK_2 | WLAN_CFG_RX_RING_MASK_3};
- #endif
- #endif /* CONFIG_BERYLLIUM */
- #ifdef CONFIG_BERYLLIUM
- static const uint8_t rxdma2host_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [13] = WLAN_CFG_RXDMA2HOST_RING_MASK_0};
- #else
- static const uint8_t rxdma2host_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [6] = WLAN_CFG_RXDMA2HOST_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_1};
- #endif /* CONFIG_BERYLLIUM */
- #ifdef CONFIG_BERYLLIUM
- static const uint8_t rx_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [5] = WLAN_CFG_RX_MON_RING_MASK_0};
- #else
- static const uint8_t rx_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [1] = WLAN_CFG_RX_MON_RING_MASK_0, [2] = WLAN_CFG_RX_MON_RING_MASK_1};
- #endif
- static const uint8_t host2rxdma_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {0};
- static const uint8_t host2rxdma_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {0};
- static const uint8_t rxdma2host_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {0};
- #ifdef CONFIG_BERYLLIUM
- static const uint8_t rx_err_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [14] = WLAN_CFG_RX_ERR_RING_MASK_0};
- static const uint8_t rx_wbm_rel_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [14] = WLAN_CFG_RX_WBM_REL_RING_MASK_0};
- static const uint8_t reo_status_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [13] = WLAN_CFG_REO_STATUS_RING_MASK_0};
- #else
- static const uint8_t rx_err_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [6] = WLAN_CFG_RX_ERR_RING_MASK_0};
- static const uint8_t rx_wbm_rel_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [6] = WLAN_CFG_RX_WBM_REL_RING_MASK_0};
- static const uint8_t reo_status_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [6] = WLAN_CFG_REO_STATUS_RING_MASK_0};
- #endif
- #ifdef CONFIG_BERYLLIUM
- #ifdef WLAN_FEATURE_NEAR_FULL_IRQ
- static const uint8_t rx_ring_near_full_irq_1_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [15] = WLAN_CFG_RX_NEAR_FULL_IRQ_MASK_1};
- static const uint8_t rx_ring_near_full_irq_2_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [16] = WLAN_CFG_RX_NEAR_FULL_IRQ_MASK_1};
- static const uint8_t tx_ring_near_full_irq_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- [17] = WLAN_CFG_TX_RING_NEAR_FULL_IRQ_MASK};
- #else
- static const uint8_t rx_ring_near_full_irq_1_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- 0 };
- static const uint8_t rx_ring_near_full_irq_2_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- 0 };
- static const uint8_t tx_ring_near_full_irq_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- 0 };
- #endif
- #else
- static const uint8_t rx_ring_near_full_irq_1_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- 0 };
- static const uint8_t rx_ring_near_full_irq_2_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- 0 };
- static const uint8_t tx_ring_near_full_irq_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
- 0 };
- #endif
- #else
- /* Integrated configuration + 16 possible MSI configurations */
- #define NUM_INTERRUPT_COMBINATIONS 17
- /*
- * This structure contains the best possible mask assignment for a given
- * number of MSIs available in the system.
- */
- #ifdef IPA_OFFLOAD
- static struct dp_int_mask_assignment dp_mask_assignment[NUM_INTERRUPT_COMBINATIONS] = {
- /* Interrupt assignment for integrated configuration */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- 0},
- /* rx mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 1 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0 |
- WLAN_CFG_RX_RING_MASK_1 |
- WLAN_CFG_RX_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { WLAN_CFG_RX_MON_RING_MASK_0 |
- WLAN_CFG_RX_MON_RING_MASK_1 |
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_2 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0 |
- WLAN_CFG_RX_ERR_RING_MASK_1 |
- WLAN_CFG_RX_ERR_RING_MASK_2 |
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_1 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_2 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0 |
- WLAN_CFG_REO_STATUS_RING_MASK_1 |
- WLAN_CFG_REO_STATUS_RING_MASK_2 |
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 2 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0 |
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { WLAN_CFG_RX_MON_RING_MASK_0 |
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0 |
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2 |
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0 |
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2 |
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 3 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0 |
- WLAN_CFG_RX_MON_RING_MASK_1 |
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_2 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0 |
- WLAN_CFG_RX_ERR_RING_MASK_1 |
- WLAN_CFG_RX_ERR_RING_MASK_2 |
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_1 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_2 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0 |
- WLAN_CFG_REO_STATUS_RING_MASK_1 |
- WLAN_CFG_REO_STATUS_RING_MASK_2 |
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 4 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 5 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0 |
- WLAN_CFG_RX_MON_RING_MASK_1 |
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_2 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0 |
- WLAN_CFG_RX_ERR_RING_MASK_1 |
- WLAN_CFG_RX_ERR_RING_MASK_2 |
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_1 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_2 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0 |
- WLAN_CFG_REO_STATUS_RING_MASK_1 |
- WLAN_CFG_REO_STATUS_RING_MASK_2 |
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 6 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 7 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0},
- },
- /* Interrupt assignment for 8 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0},
- /* ppe2tcl ring masks */
- { 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0},
- /* reo2ppe ring masks */
- { 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0},
- },
- };
- #else
- static struct dp_int_mask_assignment dp_mask_assignment[NUM_INTERRUPT_COMBINATIONS] = {
- /* Interrupt assignment for integrated configuration */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- {WLAN_CFG_HOST2TXMON_RING_MASK_0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- {WLAN_CFG_TX_MON_RING_MASK_0, WLAN_CFG_TX_MON_RING_MASK_1, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_UMAC_RESET_INTR_MASK_0},
- },
- /* Interrupt assignment for 1 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0 |
- WLAN_CFG_TX_RING_MASK_1 |
- WLAN_CFG_TX_RING_MASK_2 |
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0 |
- WLAN_CFG_RX_RING_MASK_1 |
- WLAN_CFG_RX_RING_MASK_2 |
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { WLAN_CFG_RX_MON_RING_MASK_0 |
- WLAN_CFG_RX_MON_RING_MASK_1 |
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { WLAN_CFG_HOST2RXDMA_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_1 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_2 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_2 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0 |
- WLAN_CFG_RX_ERR_RING_MASK_1 |
- WLAN_CFG_RX_ERR_RING_MASK_2 |
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_1 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_2 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0 |
- WLAN_CFG_REO_STATUS_RING_MASK_1 |
- WLAN_CFG_REO_STATUS_RING_MASK_2 |
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0 |
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {WLAN_CFG_REO2PPE_RING_MASK_0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, WLAN_CFG_PPE2TCL_RING_MASK_0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 2 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0 |
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2 |
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0 |
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2 |
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { WLAN_CFG_RX_MON_RING_MASK_0 |
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { WLAN_CFG_HOST2RXDMA_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0 |
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2 |
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0 |
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2 |
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {WLAN_CFG_REO2PPE_RING_MASK_0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, WLAN_CFG_PPE2TCL_RING_MASK_0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 3 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0 |
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2 |
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0 |
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2 |
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0 |
- WLAN_CFG_RX_MON_RING_MASK_1 |
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_1 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_2 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_2 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0 |
- WLAN_CFG_RX_ERR_RING_MASK_1 |
- WLAN_CFG_RX_ERR_RING_MASK_2 |
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_1 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_2 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0 |
- WLAN_CFG_REO_STATUS_RING_MASK_1 |
- WLAN_CFG_REO_STATUS_RING_MASK_2 |
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {WLAN_CFG_REO2PPE_RING_MASK_0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, WLAN_CFG_PPE2TCL_RING_MASK_0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 4 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, WLAN_CFG_REO2PPE_RING_MASK_0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, WLAN_CFG_PPE2TCL_RING_MASK_0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 5 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0 |
- WLAN_CFG_RX_MON_RING_MASK_1 |
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_1 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_2 |
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_2 |
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1 |
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1 |
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0 |
- WLAN_CFG_RX_ERR_RING_MASK_1 |
- WLAN_CFG_RX_ERR_RING_MASK_2 |
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_1 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_2 |
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0 |
- WLAN_CFG_REO_STATUS_RING_MASK_1 |
- WLAN_CFG_REO_STATUS_RING_MASK_2 |
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, WLAN_CFG_REO2PPE_RING_MASK_0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, WLAN_CFG_PPE2TCL_RING_MASK_0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 6 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, WLAN_CFG_REO2PPE_RING_MASK_0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, WLAN_CFG_PPE2TCL_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 7 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, 0, WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, WLAN_CFG_REO2PPE_RING_MASK_0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, WLAN_CFG_PPE2TCL_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 8 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, 0, 0, WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, WLAN_CFG_REO2PPE_RING_MASK_0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, WLAN_CFG_PPE2TCL_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 9 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, 0, 0, 0, WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, 0, WLAN_CFG_REO2PPE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, 0, WLAN_CFG_PPE2TCL_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 10 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, 0, 0, 0, 0, WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, 0, 0, WLAN_CFG_REO2PPE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_PPE2TCL_RING_MASK_0, 0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, 0,
- 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 11 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- WLAN_CFG_HOST2RXDMA_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- WLAN_CFG_RXDMA2HOST_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- WLAN_CFG_RX_ERR_RING_MASK_1,
- WLAN_CFG_RX_ERR_RING_MASK_2,
- WLAN_CFG_RX_ERR_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_1,
- WLAN_CFG_RX_WBM_REL_RING_MASK_2,
- WLAN_CFG_RX_WBM_REL_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- WLAN_CFG_REO_STATUS_RING_MASK_1,
- WLAN_CFG_REO_STATUS_RING_MASK_2,
- WLAN_CFG_REO_STATUS_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* ppe wbm ds release ring ring mask */
- { 0, 0, 0, 0, 0, 0, 0, WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, WLAN_CFG_REO2PPE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_PPE2TCL_RING_MASK_0, 0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 12 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0, 0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, WLAN_CFG_REO2PPE_RING_MASK_0,
- 0, 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_PPE2TCL_RING_MASK_0, 0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0, 0},
- },
- /* Interrupt assignment for 13 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0, 0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, WLAN_CFG_REO2PPE_RING_MASK_0,
- 0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_PPE2TCL_RING_MASK_0, 0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0, 0},
- },
- /* Interrupt assignment for 14 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0, 0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_REO2PPE_RING_MASK_0, 0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, WLAN_CFG_PPE2TCL_RING_MASK_0, 0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0, 0},
- },
- /* Interrupt assignment for 15 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0, 0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, WLAN_CFG_REO2PPE_RING_MASK_0, 0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, WLAN_CFG_PPE2TCL_RING_MASK_0, 0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0, 0},
- },
- /* Interrupt assignment for 16 MSI combination */
- {
- /* tx ring masks */
- { WLAN_CFG_TX_RING_MASK_0,
- WLAN_CFG_TX_RING_MASK_1,
- WLAN_CFG_TX_RING_MASK_2,
- WLAN_CFG_TX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx ring masks */
- { 0, 0, 0, 0,
- WLAN_CFG_RX_RING_MASK_0,
- WLAN_CFG_RX_RING_MASK_1,
- WLAN_CFG_RX_RING_MASK_2,
- WLAN_CFG_RX_RING_MASK_3,
- 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_MON_RING_MASK_0,
- WLAN_CFG_RX_MON_RING_MASK_1,
- WLAN_CFG_RX_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* host2rxdma mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
- WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rxdma2host mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
- WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2,
- 0, 0, 0, 0, 0},
- /* rx err ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_ERR_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx wbm rel ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_RX_WBM_REL_RING_MASK_0,
- 0, 0, 0, 0},
- /* reo status ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_REO_STATUS_RING_MASK_0,
- 0, 0, 0, 0},
- /* rx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* rx_ring_near_full_irq_2 mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* tx_ring_near_full_irq mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- /* host2txmon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_HOST2TXMON_RING_MASK_0,
- 0, 0, 0, 0, 0, 0, 0},
- /* tx mon ring masks */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0,
- WLAN_CFG_TX_MON_RING_MASK_0,
- WLAN_CFG_TX_MON_RING_MASK_1,
- 0, 0, 0, 0, 0},
- /* ppe ds wbm release ring ring mask */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, WLAN_CFG_PPEDS_WBM_RELEASE_RING_MASK_0, 0, 0, 0},
- /* Reo2ppe ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, WLAN_CFG_REO2PPE_RING_MASK_0, 0, 0},
- /* ppe2tcl ring mask */
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, WLAN_CFG_PPE2TCL_RING_MASK_0, 0},
- /* umac reset mask */
- {0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, WLAN_CFG_UMAC_RESET_INTR_MASK_0},
- },
- };
- #endif
- #endif
- /* g_wlan_srng_cfg[] - Per ring_type specific configuration */
- struct wlan_srng_cfg g_wlan_srng_cfg[MAX_RING_TYPES];
- /* REO_DST ring configuration */
- struct wlan_srng_cfg wlan_srng_reo_cfg = {
- .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_REO_RING,
- .batch_count_threshold = WLAN_CFG_INT_BATCH_THRESHOLD_REO_RING,
- .low_threshold = 0,
- };
- /* WBM2SW_RELEASE ring configuration */
- struct wlan_srng_cfg wlan_srng_wbm_release_cfg = {
- .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_WBM_RELEASE_RING,
- .batch_count_threshold = 0,
- .low_threshold = 0,
- };
- /* RXDMA_BUF ring configuration */
- struct wlan_srng_cfg wlan_srng_rxdma_buf_cfg = {
- .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
- .batch_count_threshold = 0,
- .low_threshold = WLAN_CFG_RXDMA_REFILL_RING_SIZE >> 3,
- };
- /* RXDMA_MONITOR_BUF ring configuration */
- struct wlan_srng_cfg wlan_srng_rxdma_monitor_buf_cfg = {
- .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
- .batch_count_threshold = 0,
- .low_threshold = WLAN_CFG_RXDMA_MONITOR_BUF_RING_SIZE >> 3,
- };
- /* RXDMA_MONITOR_STATUS ring configuration */
- #ifdef DP_CON_MON_MSI_ENABLED
- /*
- * Configure batch count threshold as 1 to enable interrupt
- * when HW updated TP (monitor status buffer DMA is done),
- * then host could reap monitor status srng. timer threshold
- * based interrupt is only used for low threshold interrupt which
- * can not be used for monitor status buffer reaping directly
- * unless configure low threshold value to a big value, perhaps
- * (number of entries - 2).
- */
- struct wlan_srng_cfg wlan_srng_rxdma_monitor_status_cfg = {
- .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
- .batch_count_threshold = 1,
- .low_threshold = WLAN_CFG_RXDMA_MONITOR_STATUS_RING_SIZE >> 3,
- };
- #else
- struct wlan_srng_cfg wlan_srng_rxdma_monitor_status_cfg = {
- .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
- .batch_count_threshold = 0,
- .low_threshold = WLAN_CFG_RXDMA_MONITOR_STATUS_RING_SIZE >> 3,
- };
- #endif
- /* TX_MONITOR_BUF ring configuration */
- struct wlan_srng_cfg wlan_srng_tx_monitor_buf_cfg = {
- .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_TX,
- .batch_count_threshold = 0,
- .low_threshold = WLAN_CFG_TX_MONITOR_BUF_RING_SIZE_MAX >> 3,
- };
- /* DEFAULT_CONFIG ring configuration */
- struct wlan_srng_cfg wlan_srng_default_cfg = {
- .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_OTHER,
- .batch_count_threshold = WLAN_CFG_INT_BATCH_THRESHOLD_OTHER,
- .low_threshold = 0,
- };
- /* DEFAULT_CONFIG source ring configuration */
- struct wlan_srng_cfg wlan_src_srng_default_cfg = {
- .timer_threshold = 0,
- .batch_count_threshold = 0,
- .low_threshold = 0,
- };
- void wlan_set_srng_cfg(struct wlan_srng_cfg **wlan_cfg)
- {
- g_wlan_srng_cfg[REO_DST] = wlan_srng_reo_cfg;
- g_wlan_srng_cfg[WBM2SW_RELEASE] = wlan_srng_wbm_release_cfg;
- g_wlan_srng_cfg[REO_EXCEPTION] = wlan_srng_default_cfg;
- g_wlan_srng_cfg[REO_REINJECT] = wlan_src_srng_default_cfg;
- g_wlan_srng_cfg[REO_CMD] = wlan_src_srng_default_cfg;
- g_wlan_srng_cfg[REO_STATUS] = wlan_srng_default_cfg;
- g_wlan_srng_cfg[TCL_DATA] = wlan_src_srng_default_cfg;
- g_wlan_srng_cfg[TCL_CMD_CREDIT] = wlan_src_srng_default_cfg;
- g_wlan_srng_cfg[TCL_STATUS] = wlan_srng_default_cfg;
- g_wlan_srng_cfg[WBM_IDLE_LINK] = wlan_src_srng_default_cfg;
- g_wlan_srng_cfg[SW2WBM_RELEASE] = wlan_src_srng_default_cfg;
- g_wlan_srng_cfg[RXDMA_BUF] = wlan_srng_rxdma_buf_cfg;
- g_wlan_srng_cfg[RXDMA_DST] = wlan_srng_default_cfg;
- g_wlan_srng_cfg[RXDMA_MONITOR_BUF] =
- wlan_srng_rxdma_monitor_buf_cfg;
- g_wlan_srng_cfg[RXDMA_MONITOR_STATUS] =
- wlan_srng_rxdma_monitor_status_cfg;
- g_wlan_srng_cfg[RXDMA_MONITOR_DST] = wlan_srng_default_cfg;
- g_wlan_srng_cfg[REO2PPE] = wlan_srng_default_cfg;
- g_wlan_srng_cfg[PPE2TCL] = wlan_srng_default_cfg;
- g_wlan_srng_cfg[RXDMA_MONITOR_DESC] = wlan_srng_default_cfg;
- g_wlan_srng_cfg[DIR_BUF_RX_DMA_SRC] = wlan_srng_default_cfg;
- #ifdef WLAN_FEATURE_CIF_CFR
- g_wlan_srng_cfg[WIFI_POS_SRC] = wlan_srng_default_cfg;
- #endif
- g_wlan_srng_cfg[TX_MONITOR_BUF] = wlan_srng_tx_monitor_buf_cfg;
- *wlan_cfg = g_wlan_srng_cfg;
- }
- static const uint8_t rx_fst_toeplitz_key[WLAN_CFG_RX_FST_TOEPLITZ_KEYLEN] = {
- 0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2,
- 0x41, 0x67, 0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0,
- 0xd0, 0xca, 0x2b, 0xcb, 0xae, 0x7b, 0x30, 0xb4,
- 0x77, 0xcb, 0x2d, 0xa3, 0x80, 0x30, 0xf2, 0x0c,
- 0x6a, 0x42, 0xb7, 0x3b, 0xbe, 0xac, 0x01, 0xfa
- };
- #if defined(WLAN_MAX_PDEVS) && (WLAN_MAX_PDEVS == 1)
- void wlan_cfg_fill_interrupt_mask(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx,
- int num_dp_msi,
- int interrupt_mode,
- bool is_monitor_mode)
- { int i = 0;
- const uint8_t *tx_ring_intr_mask =
- wlan_cfg_get_tx_ring_int_mask(wlan_cfg_ctx);
- for (i = 0; i < WLAN_CFG_INT_NUM_CONTEXTS; i++) {
- wlan_cfg_ctx->int_tx_ring_mask[i] = tx_ring_intr_mask[i];
- if (wlan_cfg_ctx->int_tx_ring_mask[i])
- wlan_cfg_ctx->tx_rings_grp_bitmap |= BIT(i);
- wlan_cfg_ctx->int_rx_mon_ring_mask[i] =
- rx_mon_ring_mask_msi[i];
- wlan_cfg_ctx->int_tx_mon_ring_mask[i] = 0;
- wlan_cfg_ctx->int_rx_err_ring_mask[i] =
- rx_err_ring_mask_msi[i];
- wlan_cfg_ctx->int_rx_wbm_rel_ring_mask[i] =
- rx_wbm_rel_ring_mask_msi[i];
- wlan_cfg_ctx->int_reo_status_ring_mask[i] =
- reo_status_ring_mask_msi[i];
- if (is_monitor_mode) {
- wlan_cfg_ctx->int_rx_ring_mask[i] = 0;
- if (interrupt_mode == DP_INTR_POLL)
- wlan_cfg_ctx->int_rxdma2host_ring_mask[i] = 0;
- else
- wlan_cfg_ctx->int_rxdma2host_ring_mask[i] =
- rxdma2host_ring_mask_msi[i];
- } else {
- wlan_cfg_ctx->int_rx_ring_mask[i] =
- rx_ring_mask_msi[i];
- wlan_cfg_ctx->int_rxdma2host_ring_mask[i] =
- rxdma2host_ring_mask_msi[i];
- }
- wlan_cfg_ctx->int_host2rxdma_ring_mask[i] =
- host2rxdma_ring_mask_msi[i];
- wlan_cfg_ctx->int_host2rxdma_mon_ring_mask[i] =
- host2rxdma_mon_ring_mask_msi[i];
- wlan_cfg_ctx->int_rxdma2host_mon_ring_mask[i] =
- rxdma2host_mon_ring_mask_msi[i];
- wlan_cfg_ctx->int_rx_ring_near_full_irq_1_mask[i] =
- rx_ring_near_full_irq_1_mask_msi[i];
- wlan_cfg_ctx->int_rx_ring_near_full_irq_2_mask[i] =
- rx_ring_near_full_irq_2_mask_msi[i];
- wlan_cfg_ctx->int_tx_ring_near_full_irq_mask[i] =
- tx_ring_near_full_irq_mask_msi[i];
- }
- }
- #else
- void wlan_cfg_fill_interrupt_mask(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx,
- int num_dp_msi,
- int interrupt_mode,
- bool is_monitor_mode)
- {
- int i = 0;
- int interrupt_index = 0;
- int int_host2rxdma_mon_ring_mask;
- bool host2rxmon_mask_set = false;
- bool txmon_hw_support = false;
- if(interrupt_mode == DP_INTR_INTEGRATED) {
- interrupt_index = 0;
- } else if (interrupt_mode == DP_INTR_MSI || interrupt_mode ==
- DP_INTR_POLL) {
- interrupt_index = num_dp_msi;
- } else {
- qdf_err("Interrupt mode %d", interrupt_mode);
- }
- for (i = 0; i < WLAN_CFG_INT_NUM_CONTEXTS; i++) {
- wlan_cfg_ctx->int_tx_ring_mask[i] =
- dp_mask_assignment[interrupt_index].tx_ring_mask[i];
- wlan_cfg_ctx->int_rx_mon_ring_mask[i] =
- dp_mask_assignment[interrupt_index].rx_mon_ring_mask[i];
- wlan_cfg_ctx->int_rx_err_ring_mask[i] =
- dp_mask_assignment[interrupt_index].rx_err_ring_mask[i];
- wlan_cfg_ctx->int_rx_wbm_rel_ring_mask[i] =
- dp_mask_assignment[interrupt_index].rx_wbm_rel_ring_mask[i];
- wlan_cfg_ctx->int_reo_status_ring_mask[i] =
- dp_mask_assignment[interrupt_index].reo_status_ring_mask[i];
- wlan_cfg_ctx->int_ppeds_wbm_release_ring_mask[i] =
- dp_mask_assignment[interrupt_index].ppeds_wbm_release_ring_mask[i];
- wlan_cfg_ctx->int_ppe2tcl_ring_mask[i] =
- dp_mask_assignment[interrupt_index].ppe2tcl_ring_mask[i];
- wlan_cfg_ctx->int_reo2ppe_ring_mask[i] =
- dp_mask_assignment[interrupt_index].reo2ppe_ring_mask[i];
- if (is_monitor_mode) {
- wlan_cfg_ctx->int_rx_ring_mask[i] = 0;
- wlan_cfg_ctx->int_rxdma2host_ring_mask[i] = 0;
- } else {
- wlan_cfg_ctx->int_rx_ring_mask[i] =
- dp_mask_assignment[interrupt_index].rx_ring_mask[i];
- wlan_cfg_ctx->int_rxdma2host_ring_mask[i] =
- dp_mask_assignment[interrupt_index].rxdma2host_ring_mask[i];
- }
- wlan_cfg_ctx->int_host2rxdma_ring_mask[i] =
- dp_mask_assignment[interrupt_index].host2rxdma_ring_mask[i];
- wlan_cfg_ctx->int_host2rxdma_mon_ring_mask[i] =
- dp_mask_assignment[interrupt_index].host2rxdma_mon_ring_mask[i];
- wlan_cfg_ctx->int_rxdma2host_mon_ring_mask[i] =
- dp_mask_assignment[interrupt_index].rxdma2host_mon_ring_mask[i];
- wlan_cfg_ctx->int_rx_ring_near_full_irq_1_mask[i] =
- dp_mask_assignment[interrupt_index].rx_ring_near_full_irq_1_mask[i];
- wlan_cfg_ctx->int_rx_ring_near_full_irq_2_mask[i] =
- dp_mask_assignment[interrupt_index].rx_ring_near_full_irq_2_mask[i];
- wlan_cfg_ctx->int_tx_ring_near_full_irq_mask[i] =
- dp_mask_assignment[interrupt_index].tx_ring_near_full_irq_mask[i];
- txmon_hw_support = wlan_cfg_get_txmon_hw_support(wlan_cfg_ctx);
- if (txmon_hw_support) {
- wlan_cfg_ctx->int_tx_mon_ring_mask[i] =
- dp_mask_assignment[interrupt_index].tx_mon_ring_mask[i];
- wlan_cfg_ctx->int_host2txmon_ring_mask[i] =
- dp_mask_assignment[interrupt_index].host2txmon_ring_mask[i];
- int_host2rxdma_mon_ring_mask =
- dp_mask_assignment[interrupt_index].host2rxdma_mon_ring_mask[i];
- if (int_host2rxdma_mon_ring_mask && !host2rxmon_mask_set) {
- wlan_cfg_ctx->int_host2rxdma_mon_ring_mask[interrupt_index] =
- dp_mask_assignment[interrupt_index].host2rxdma_mon_ring_mask[i];
- host2rxmon_mask_set = true;
- }
- } else {
- wlan_cfg_ctx->int_tx_mon_ring_mask[i] = 0;
- wlan_cfg_ctx->int_host2txmon_ring_mask[i] = 0;
- wlan_cfg_ctx->int_host2rxdma_mon_ring_mask[i] =
- dp_mask_assignment[interrupt_index].host2rxdma_mon_ring_mask[i];
- }
- wlan_cfg_ctx->int_umac_reset_intr_mask[i] =
- dp_mask_assignment[interrupt_index].umac_reset_intr_mask[i];
- }
- }
- #endif
- #ifdef IPA_OFFLOAD
- #define WLAN_CFG_IPA_ENABLE_MASK BIT(0)
- #ifdef IPA_WDI3_TX_TWO_PIPES
- /**
- * wlan_soc_ipa_cfg_attach() - Update ipa tx and tx alt config
- * in dp soc cfg context
- * @psoc: Object manager psoc
- * @wlan_cfg_ctx: dp soc cfg ctx
- *
- * Return: None
- */
- static void
- wlan_soc_ipa_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- if (ucfg_ipa_get_pld_enable()) {
- wlan_cfg_ctx->ipa_enabled =
- (cfg_get(psoc, CFG_DP_IPA_OFFLOAD_CONFIG) &
- WLAN_CFG_IPA_ENABLE_MASK);
- dp_info("is IPA enabled from ini: %d",
- wlan_cfg_ctx->ipa_enabled);
- } else {
- wlan_cfg_ctx->ipa_enabled = false;
- dp_info("IPA disabled from platform driver");
- }
- wlan_cfg_ctx->ipa_tx_ring_size =
- cfg_get(psoc, CFG_DP_IPA_TX_RING_SIZE);
- wlan_cfg_ctx->ipa_tx_comp_ring_size =
- cfg_get(psoc, CFG_DP_IPA_TX_COMP_RING_SIZE);
- wlan_cfg_ctx->ipa_tx_alt_ring_size =
- cfg_get(psoc, CFG_DP_IPA_TX_ALT_RING_SIZE);
- wlan_cfg_ctx->ipa_tx_alt_comp_ring_size =
- cfg_get(psoc, CFG_DP_IPA_TX_ALT_COMP_RING_SIZE);
- }
- #else /* !IPA_WDI3_TX_TWO_PIPES */
- /**
- * wlan_soc_ipa_cfg_attach() - Update ipa config in dp soc
- * cfg context
- * @psoc: Object manager psoc
- * @wlan_cfg_ctx: dp soc cfg ctx
- *
- * Return: None
- */
- static void
- wlan_soc_ipa_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- if (ucfg_ipa_get_pld_enable()) {
- wlan_cfg_ctx->ipa_enabled =
- (cfg_get(psoc, CFG_DP_IPA_OFFLOAD_CONFIG) &
- WLAN_CFG_IPA_ENABLE_MASK);
- dp_info("is IPA enabled from ini: %d",
- wlan_cfg_ctx->ipa_enabled);
- } else {
- wlan_cfg_ctx->ipa_enabled = false;
- dp_info("IPA disabled from platform driver");
- }
- wlan_cfg_ctx->ipa_tx_ring_size =
- cfg_get(psoc, CFG_DP_IPA_TX_RING_SIZE);
- wlan_cfg_ctx->ipa_tx_comp_ring_size =
- cfg_get(psoc, CFG_DP_IPA_TX_COMP_RING_SIZE);
- }
- #endif /* IPA_WDI3_TX_TWO_PIPES */
- #else /* !IPA_OFFLOAD */
- static inline void
- wlan_soc_ipa_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- }
- #endif
- #ifdef DP_HW_COOKIE_CONVERT_EXCEPTION
- static void
- wlan_soc_hw_cc_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- wlan_cfg_ctx->hw_cc_enabled =
- cfg_get(psoc, CFG_DP_HW_CC_ENABLE);
- }
- #else
- static void
- wlan_soc_hw_cc_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- wlan_cfg_ctx->hw_cc_enabled = true;
- }
- #endif
- #ifdef WLAN_SUPPORT_PPEDS
- /**
- * wlan_soc_ppe_cfg_attach() - Update ppe config in dp soc
- * cfg context
- * @psoc: Object manager psoc
- * @wlan_cfg_ctx: dp soc cfg ctx
- *
- * Return: None
- */
- static void
- wlan_soc_ppe_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- uint32_t ppeds_cfg;
- uint8_t psoc_id;
- /*
- * The CFG_DP_PPEDS_WIFI_SOC_CFG provides WLAN SoC level PPEDS
- * enable/disable support. The bit map position corresponds to
- * WLAN SoC position in config/wireless file. With this we can
- * configure PPEDS for multiple WLAN SoC having same device ID.
- */
- psoc_id = wlan_psoc_get_id((struct wlan_objmgr_psoc *)psoc);
- ppeds_cfg = cfg_get(psoc, CFG_DP_PPEDS_WIFI_SOC_CFG);
- if (!(ppeds_cfg & (1 << psoc_id))) {
- dp_info("ppeds_cfg is disabled for psoc_id %d", psoc_id);
- return;
- }
- /*
- * The CFG_DP_PPEDS_ENABLE provides ppeds enable/disable support
- * based on device ID in corresponding INI file.
- */
- wlan_cfg_ctx->ppeds_enable = cfg_get(psoc, CFG_DP_PPEDS_ENABLE);
- if (!wlan_cfg_ctx->ppeds_enable)
- return;
- wlan_cfg_ctx->reo2ppe_ring = cfg_get(psoc, CFG_DP_REO2PPE_RING);
- wlan_cfg_ctx->ppe2tcl_ring = cfg_get(psoc, CFG_DP_PPE2TCL_RING);
- wlan_cfg_ctx->ppeds_num_tx_desc = cfg_get(psoc, CFG_DP_PPEDS_TX_DESC);
- wlan_cfg_ctx->ppeds_tx_desc_hotlist_len =
- cfg_get(psoc, CFG_DP_PPEDS_TX_DESC_HOTLIST_LEN);
- wlan_cfg_ctx->ppeds_tx_comp_napi_budget =
- cfg_get(psoc, CFG_DP_PPEDS_TX_CMP_NAPI_BUDGET);
- }
- #else
- static inline void
- wlan_soc_ppe_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- }
- #endif
- #if defined(WLAN_FEATURE_11BE_MLO) && defined(WLAN_MLO_MULTI_CHIP)
- /**
- * wlan_cfg_get_lsb_set_pos() - returns position of LSB which is set
- * @val: value to test
- *
- * Return: position of LSB which is set
- */
- static uint8_t wlan_cfg_get_lsb_set_pos(uint8_t val)
- {
- uint8_t pos = 0;
- while (pos < 8) {
- if (val & (1 << pos))
- return pos;
- pos++;
- }
- return 0;
- }
- /**
- * wlan_multi_soc_mlo_cfg_attach() - Update multi soc mlo config in dp soc
- * cfg context
- * @psoc: Object manager psoc
- * @wlan_cfg_ctx: dp soc cfg ctx
- *
- * Return: None
- */
- static void
- wlan_multi_soc_mlo_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- uint8_t rx_ring_map;
- rx_ring_map =
- cfg_get(psoc, CFG_DP_MLO_RX_RING_MAP);
- wlan_cfg_ctx->mlo_chip_rx_ring_map = rx_ring_map;
- }
- #else
- static inline void
- wlan_multi_soc_mlo_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- }
- #endif
- #ifdef WLAN_FEATURE_11BE_MLO
- /**
- * wlan_soc_mlo_cfg_attach() - Update mlo config in dp soc
- * cfg context
- * @psoc: Object manager psoc
- * @wlan_cfg_ctx: dp soc cfg ctx
- *
- * Return: None
- */
- static void
- wlan_soc_mlo_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- wlan_multi_soc_mlo_cfg_attach(psoc, wlan_cfg_ctx);
- }
- #else
- static inline void
- wlan_soc_mlo_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- }
- #endif
- #ifdef QCA_VDEV_STATS_HW_OFFLOAD_SUPPORT
- /**
- * wlan_soc_vdev_hw_stats_cfg_attach() - Update hw vdev stats config in dp soc
- * cfg context
- * @psoc: Object manager psoc
- * @wlan_cfg_ctx: dp soc cfg ctx
- *
- * Return: None
- */
- static void
- wlan_soc_vdev_hw_stats_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- wlan_cfg_ctx->vdev_stats_hw_offload_config = cfg_get(psoc,
- CFG_DP_VDEV_STATS_HW_OFFLOAD_CONFIG);
- wlan_cfg_ctx->vdev_stats_hw_offload_timer = cfg_get(psoc,
- CFG_DP_VDEV_STATS_HW_OFFLOAD_TIMER);
- }
- #else
- static void
- wlan_soc_vdev_hw_stats_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- }
- #endif
- #ifdef WLAN_TX_PKT_CAPTURE_ENH
- static void wlan_soc_tx_capt_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- wlan_cfg_ctx->tx_capt_max_mem_allowed =
- cfg_get(psoc, CFG_DP_TX_CAPT_MAX_MEM_MB) * 1024 * 1024;
- }
- #else
- static void wlan_soc_tx_capt_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- }
- #endif
- void
- wlan_cfg_soc_update_tgt_params(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx,
- struct cdp_ctrl_objmgr_psoc *psoc)
- {
- wlan_cfg_ctx->reo_rings_mapping = cfg_get(psoc,
- CFG_DP_REO_RINGS_MAP);
- }
- #ifdef CONFIG_SAWF_STATS
- /**
- * wlan_soc_sawf_stats_cfg_attach() - Update sawf stats config in dp soc
- * cfg context
- * @psoc: Object manager psoc
- * @wlan_cfg_ctx: dp soc cfg ctx
- *
- * Return: None
- */
- static void
- wlan_soc_sawf_stats_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- wlan_cfg_ctx->sawf_stats = cfg_get(psoc, CFG_DP_SAWF_STATS);
- }
- uint8_t wlan_cfg_get_sawf_stats_config(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->sawf_stats;
- }
- void wlan_cfg_set_sawf_stats_config(struct wlan_cfg_dp_soc_ctxt *cfg,
- uint8_t val)
- {
- cfg->sawf_stats = val;
- }
- #else
- static void
- wlan_soc_sawf_stats_cfg_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- }
- uint8_t wlan_cfg_get_sawf_stats_config(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return 0;
- }
- void wlan_cfg_set_sawf_stats_config(struct wlan_cfg_dp_soc_ctxt *cfg,
- uint8_t val)
- {
- }
- #endif /* CONFIG_SAWF_STATS */
- #ifdef DP_TX_PACKET_INSPECT_FOR_ILP
- /**
- * wlan_soc_tx_packet_inspect_attach() - Update TX packet inspection config
- * @psoc: object manager psoc
- * @wlan_cfg_ctx: dp soc cfg ctx
- *
- * Return: None
- */
- static void
- wlan_soc_tx_packet_inspect_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- wlan_cfg_ctx->tx_pkt_inspect_for_ilp =
- cfg_get(psoc, CFG_TX_PKT_INSPECT_FOR_ILP);
- }
- #else
- static void
- wlan_soc_tx_packet_inspect_attach(struct cdp_ctrl_objmgr_psoc *psoc,
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- }
- #endif
- struct wlan_cfg_dp_soc_ctxt *
- wlan_cfg_soc_attach(struct cdp_ctrl_objmgr_psoc *psoc)
- {
- struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx =
- qdf_mem_malloc(sizeof(struct wlan_cfg_dp_soc_ctxt));
- uint32_t gro_bit_set;
- if (!wlan_cfg_ctx)
- return NULL;
- wlan_cfg_ctx->rxdma1_enable = WLAN_CFG_RXDMA1_ENABLE;
- wlan_cfg_ctx->num_int_ctxts = WLAN_CFG_INT_NUM_CONTEXTS;
- wlan_cfg_ctx->max_clients = cfg_get(psoc, CFG_DP_MAX_CLIENTS);
- wlan_cfg_ctx->max_alloc_size = cfg_get(psoc, CFG_DP_MAX_ALLOC_SIZE);
- wlan_cfg_ctx->per_pdev_tx_ring = cfg_get(psoc, CFG_DP_PDEV_TX_RING);
- wlan_cfg_ctx->num_reo_dest_rings = cfg_get(psoc, CFG_DP_REO_DEST_RINGS);
- wlan_cfg_ctx->num_tcl_data_rings = cfg_get(psoc, CFG_DP_TCL_DATA_RINGS);
- wlan_cfg_ctx->num_tx_comp_rings = cfg_get(psoc, CFG_DP_TX_COMP_RINGS);
- wlan_cfg_ctx->num_nss_reo_dest_rings =
- cfg_get(psoc, CFG_DP_NSS_REO_DEST_RINGS);
- wlan_cfg_ctx->num_nss_tcl_data_rings =
- cfg_get(psoc, CFG_DP_NSS_TCL_DATA_RINGS);
- wlan_cfg_ctx->per_pdev_rx_ring = cfg_get(psoc, CFG_DP_PDEV_RX_RING);
- wlan_cfg_ctx->per_pdev_lmac_ring = cfg_get(psoc, CFG_DP_PDEV_LMAC_RING);
- wlan_cfg_ctx->num_tx_desc_pool = MAX_TXDESC_POOLS;
- wlan_cfg_ctx->num_tx_ext_desc_pool = cfg_get(psoc,
- CFG_DP_TX_EXT_DESC_POOLS);
- wlan_cfg_ctx->num_tx_desc = cfg_get(psoc, CFG_DP_TX_DESC);
- wlan_cfg_ctx->num_tx_spl_desc = cfg_get(psoc, CFG_DP_TX_SPL_DESC);
- wlan_cfg_ctx->min_tx_desc = WLAN_CFG_NUM_TX_DESC_MIN;
- wlan_cfg_ctx->num_tx_ext_desc = cfg_get(psoc, CFG_DP_TX_EXT_DESC);
- wlan_cfg_ctx->htt_packet_type = cfg_get(psoc, CFG_DP_HTT_PACKET_TYPE);
- wlan_cfg_ctx->max_peer_id = cfg_get(psoc, CFG_DP_MAX_PEER_ID);
- wlan_cfg_ctx->tx_ring_size = cfg_get(psoc, CFG_DP_TX_RING_SIZE);
- wlan_cfg_ctx->time_control_bp = cfg_get(psoc, CFG_DP_TIME_CONTROL_BP);
- wlan_cfg_ctx->tx_comp_ring_size = cfg_get(psoc,
- CFG_DP_TX_COMPL_RING_SIZE);
- wlan_cfg_ctx->tx_comp_ring_size_nss =
- cfg_get(psoc, CFG_DP_NSS_COMP_RING_SIZE);
- wlan_cfg_ctx->int_batch_threshold_tx =
- cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_TX);
- wlan_cfg_ctx->int_timer_threshold_tx =
- cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_TX);
- wlan_cfg_ctx->int_batch_threshold_rx =
- cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_RX);
- wlan_cfg_ctx->int_timer_threshold_rx =
- cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_RX);
- wlan_cfg_ctx->int_batch_threshold_other =
- cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_OTHER);
- wlan_cfg_ctx->int_timer_threshold_other =
- cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_OTHER);
- wlan_cfg_ctx->int_batch_threshold_ppe2tcl =
- cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_PPE2TCL);
- wlan_cfg_ctx->int_timer_threshold_ppe2tcl =
- cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_PPE2TCL);
- wlan_cfg_ctx->pktlog_buffer_size =
- cfg_get(psoc, CFG_DP_PKTLOG_BUFFER_SIZE);
- /* This is default mapping and can be overridden by HW config
- * received from FW */
- wlan_cfg_set_hw_mac_idx(wlan_cfg_ctx, 0, 0);
- if (MAX_PDEV_CNT > 1)
- wlan_cfg_set_hw_mac_idx(wlan_cfg_ctx, 1, 2);
- if (MAX_PDEV_CNT > 2)
- wlan_cfg_set_hw_mac_idx(wlan_cfg_ctx, 2, 1);
- wlan_cfg_ctx->base_hw_macid = cfg_get(psoc, CFG_DP_BASE_HW_MAC_ID);
- wlan_cfg_ctx->rx_hash = cfg_get(psoc, CFG_DP_RX_HASH);
- wlan_cfg_ctx->tso_enabled = cfg_get(psoc, CFG_DP_TSO);
- wlan_cfg_ctx->lro_enabled = cfg_get(psoc, CFG_DP_LRO);
- wlan_cfg_ctx->sg_enabled = cfg_get(psoc, CFG_DP_SG);
- gro_bit_set = cfg_get(psoc, CFG_DP_GRO);
- if (gro_bit_set & DP_GRO_ENABLE_BIT_SET) {
- wlan_cfg_ctx->gro_enabled = true;
- if (gro_bit_set & DP_TC_BASED_DYNAMIC_GRO)
- wlan_cfg_ctx->tc_based_dynamic_gro = true;
- }
- wlan_cfg_ctx->tc_ingress_prio = cfg_get(psoc, CFG_DP_TC_INGRESS_PRIO);
- wlan_cfg_ctx->ol_tx_csum_enabled = cfg_get(psoc, CFG_DP_OL_TX_CSUM);
- wlan_cfg_ctx->ol_rx_csum_enabled = cfg_get(psoc, CFG_DP_OL_RX_CSUM);
- wlan_cfg_ctx->rawmode_enabled = cfg_get(psoc, CFG_DP_RAWMODE);
- wlan_cfg_ctx->peer_flow_ctrl_enabled =
- cfg_get(psoc, CFG_DP_PEER_FLOW_CTRL);
- wlan_cfg_ctx->napi_enabled = cfg_get(psoc, CFG_DP_NAPI);
- wlan_cfg_ctx->p2p_tcp_udp_checksumoffload =
- cfg_get(psoc, CFG_DP_P2P_TCP_UDP_CKSUM_OFFLOAD);
- wlan_cfg_ctx->nan_tcp_udp_checksumoffload =
- cfg_get(psoc, CFG_DP_NAN_TCP_UDP_CKSUM_OFFLOAD);
- wlan_cfg_ctx->tcp_udp_checksumoffload =
- cfg_get(psoc, CFG_DP_TCP_UDP_CKSUM_OFFLOAD);
- wlan_cfg_ctx->legacy_mode_checksumoffload_disable =
- cfg_get(psoc, CFG_DP_LEGACY_MODE_CSUM_DISABLE);
- wlan_cfg_ctx->per_pkt_trace = cfg_get(psoc, CFG_DP_PER_PKT_LOGGING);
- wlan_cfg_ctx->defrag_timeout_check =
- cfg_get(psoc, CFG_DP_DEFRAG_TIMEOUT_CHECK);
- wlan_cfg_ctx->rx_defrag_min_timeout =
- cfg_get(psoc, CFG_DP_RX_DEFRAG_TIMEOUT);
- wlan_cfg_ctx->wbm_release_ring = cfg_get(psoc,
- CFG_DP_WBM_RELEASE_RING);
- wlan_cfg_ctx->tcl_cmd_credit_ring = cfg_get(psoc,
- CFG_DP_TCL_CMD_CREDIT_RING);
- wlan_cfg_ctx->tcl_status_ring = cfg_get(psoc,
- CFG_DP_TCL_STATUS_RING);
- wlan_cfg_ctx->reo_dst_ring_size = cfg_get(psoc,
- CFG_DP_RX_DESTINATION_RING);
- wlan_cfg_ctx->reo_reinject_ring = cfg_get(psoc,
- CFG_DP_REO_REINJECT_RING);
- wlan_cfg_ctx->rx_release_ring = cfg_get(psoc,
- CFG_DP_RX_RELEASE_RING);
- wlan_cfg_ctx->reo_exception_ring = cfg_get(psoc,
- CFG_DP_REO_EXCEPTION_RING);
- wlan_cfg_ctx->reo_cmd_ring = cfg_get(psoc,
- CFG_DP_REO_CMD_RING);
- wlan_cfg_ctx->reo_status_ring = cfg_get(psoc,
- CFG_DP_REO_STATUS_RING);
- wlan_cfg_ctx->rxdma_refill_ring = cfg_get(psoc,
- CFG_DP_RXDMA_REFILL_RING);
- wlan_cfg_ctx->rxdma_refill_lt_disable =
- cfg_get(psoc,
- CFG_DP_RXDMA_REFILL_LT_DISABLE);
- wlan_cfg_ctx->tx_desc_limit_0 = cfg_get(psoc,
- CFG_DP_TX_DESC_LIMIT_0);
- wlan_cfg_ctx->tx_desc_limit_1 = cfg_get(psoc,
- CFG_DP_TX_DESC_LIMIT_1);
- wlan_cfg_ctx->tx_desc_limit_2 = cfg_get(psoc,
- CFG_DP_TX_DESC_LIMIT_2);
- wlan_cfg_ctx->tx_device_limit = cfg_get(psoc,
- CFG_DP_TX_DEVICE_LIMIT);
- wlan_cfg_ctx->tx_spl_device_limit = cfg_get(psoc,
- CFG_DP_TX_SPL_DEVICE_LIMIT);
- wlan_cfg_ctx->tx_sw_internode_queue = cfg_get(psoc,
- CFG_DP_TX_SW_INTERNODE_QUEUE);
- wlan_cfg_ctx->rxdma_err_dst_ring = cfg_get(psoc,
- CFG_DP_RXDMA_ERR_DST_RING);
- wlan_cfg_ctx->enable_data_stall_detection =
- cfg_get(psoc, CFG_DP_ENABLE_DATA_STALL_DETECTION);
- wlan_cfg_ctx->tx_flow_start_queue_offset =
- cfg_get(psoc, CFG_DP_TX_FLOW_START_QUEUE_OFFSET);
- wlan_cfg_ctx->tx_flow_stop_queue_threshold =
- cfg_get(psoc, CFG_DP_TX_FLOW_STOP_QUEUE_TH);
- wlan_cfg_ctx->disable_intra_bss_fwd =
- cfg_get(psoc, CFG_DP_AP_STA_SECURITY_SEPERATION);
- wlan_cfg_ctx->rx_sw_desc_weight = cfg_get(psoc,
- CFG_DP_RX_SW_DESC_WEIGHT);
- wlan_cfg_ctx->rx_sw_desc_num = cfg_get(psoc,
- CFG_DP_RX_SW_DESC_NUM);
- wlan_cfg_ctx->rx_toeplitz_hash_key = (uint8_t *)rx_fst_toeplitz_key;
- wlan_cfg_ctx->rx_flow_max_search = WLAN_CFG_RX_FST_MAX_SEARCH;
- wlan_cfg_ctx->is_rx_flow_tag_enabled =
- cfg_get(psoc, CFG_DP_RX_FLOW_TAG_ENABLE);
- wlan_cfg_ctx->is_rx_flow_search_table_per_pdev =
- cfg_get(psoc, CFG_DP_RX_FLOW_SEARCH_TABLE_PER_PDEV);
- wlan_cfg_ctx->rx_flow_search_table_size =
- cfg_get(psoc, CFG_DP_RX_FLOW_SEARCH_TABLE_SIZE);
- wlan_cfg_ctx->is_rx_mon_protocol_flow_tag_enabled =
- cfg_get(psoc, CFG_DP_RX_MON_PROTOCOL_FLOW_TAG_ENABLE);
- wlan_cfg_ctx->mon_drop_thresh =
- cfg_get(psoc, CFG_DP_RXDMA_MONITOR_RX_DROP_THRESHOLD);
- wlan_cfg_ctx->is_rx_fisa_enabled = cfg_get(psoc, CFG_DP_RX_FISA_ENABLE);
- wlan_cfg_ctx->is_rx_fisa_lru_del_enabled =
- cfg_get(psoc, CFG_DP_RX_FISA_LRU_DEL_ENABLE);
- wlan_cfg_ctx->reo_rings_mapping = cfg_get(psoc, CFG_DP_REO_RINGS_MAP);
- wlan_cfg_ctx->pext_stats_enabled = cfg_get(psoc, CFG_DP_PEER_EXT_STATS);
- wlan_cfg_ctx->jitter_stats_enabled =
- cfg_get(psoc, CFG_DP_PEER_JITTER_STATS);
- wlan_cfg_ctx->peer_link_stats_enabled =
- cfg_get(psoc, CFG_DP_PEER_LINK_STATS);
- wlan_cfg_ctx->is_rx_buff_pool_enabled =
- cfg_get(psoc, CFG_DP_RX_BUFF_POOL_ENABLE);
- wlan_cfg_ctx->is_rx_refill_buff_pool_enabled =
- cfg_get(psoc, CFG_DP_RX_REFILL_BUFF_POOL_ENABLE);
- wlan_cfg_ctx->rx_pending_high_threshold =
- cfg_get(psoc, CFG_DP_RX_PENDING_HL_THRESHOLD);
- wlan_cfg_ctx->rx_pending_low_threshold =
- cfg_get(psoc, CFG_DP_RX_PENDING_LO_THRESHOLD);
- wlan_cfg_ctx->is_poll_mode_enabled =
- cfg_get(psoc, CFG_DP_POLL_MODE_ENABLE);
- wlan_cfg_ctx->is_swlm_enabled = cfg_get(psoc, CFG_DP_SWLM_ENABLE);
- wlan_cfg_ctx->fst_in_cmem = cfg_get(psoc, CFG_DP_RX_FST_IN_CMEM);
- wlan_cfg_ctx->tx_per_pkt_vdev_id_check =
- cfg_get(psoc, CFG_DP_TX_PER_PKT_VDEV_ID_CHECK);
- wlan_cfg_ctx->radio0_rx_default_reo =
- cfg_get(psoc, CFG_DP_RX_RADIO_0_DEFAULT_REO);
- wlan_cfg_ctx->radio1_rx_default_reo =
- cfg_get(psoc, CFG_DP_RX_RADIO_1_DEFAULT_REO);
- wlan_cfg_ctx->radio2_rx_default_reo =
- cfg_get(psoc, CFG_DP_RX_RADIO_2_DEFAULT_REO);
- wlan_cfg_ctx->wow_check_rx_pending_enable =
- cfg_get(psoc, CFG_DP_WOW_CHECK_RX_PENDING);
- wlan_cfg_ctx->delay_mon_replenish = cfg_get(psoc,
- CFG_DP_DELAY_MON_REPLENISH);
- wlan_cfg_ctx->num_global_tx_desc = cfg_get(psoc,
- CFG_DP_TX_DESC_GLOBAL_COUNT);
- wlan_cfg_ctx->num_global_spcl_tx_desc = cfg_get(psoc,
- CFG_DP_SPCL_TX_DESC_GLOBAL_COUNT);
- wlan_cfg_ctx->rx_mon_buf_ring_size = cfg_get(psoc,
- CFG_DP_RXDMA_MONITOR_BUF_RING);
- wlan_cfg_ctx->tx_mon_buf_ring_size = cfg_get(psoc,
- CFG_DP_TX_MONITOR_BUF_RING);
- wlan_soc_ipa_cfg_attach(psoc, wlan_cfg_ctx);
- wlan_soc_hw_cc_cfg_attach(psoc, wlan_cfg_ctx);
- wlan_soc_ppe_cfg_attach(psoc, wlan_cfg_ctx);
- wlan_soc_mlo_cfg_attach(psoc, wlan_cfg_ctx);
- wlan_soc_vdev_hw_stats_cfg_attach(psoc, wlan_cfg_ctx);
- #ifdef WLAN_FEATURE_PKT_CAPTURE_V2
- wlan_cfg_ctx->pkt_capture_mode = cfg_get(psoc, CFG_PKT_CAPTURE_MODE) &
- PKT_CAPTURE_MODE_DATA_ONLY;
- #endif
- wlan_cfg_ctx->num_rxdma_dst_rings_per_pdev = NUM_RXDMA_RINGS_PER_PDEV;
- wlan_cfg_ctx->num_rxdma_status_rings_per_pdev =
- NUM_RXDMA_RINGS_PER_PDEV;
- wlan_soc_tx_capt_cfg_attach(psoc, wlan_cfg_ctx);
- wlan_cfg_ctx->mpdu_retry_threshold_1 =
- cfg_get(psoc, CFG_DP_MPDU_RETRY_THRESHOLD_1);
- wlan_cfg_ctx->mpdu_retry_threshold_2 =
- cfg_get(psoc, CFG_DP_MPDU_RETRY_THRESHOLD_2);
- wlan_cfg_ctx->napi_scale_factor = cfg_get(psoc,
- CFG_DP_NAPI_SCALE_FACTOR);
- wlan_soc_sawf_stats_cfg_attach(psoc, wlan_cfg_ctx);
- wlan_cfg_ctx->is_handle_invalid_decap_type_disabled =
- cfg_get(psoc, CFG_DP_HANDLE_INVALID_DECAP_TYPE_DISABLE);
- wlan_cfg_ctx->txmon_sw_peer_filtering =
- cfg_get(psoc, CFG_DP_TXMON_SW_PEER_FILTERING);
- wlan_soc_tx_packet_inspect_attach(psoc, wlan_cfg_ctx);
- return wlan_cfg_ctx;
- }
- void wlan_cfg_soc_detach(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
- {
- qdf_mem_free(wlan_cfg_ctx);
- }
- struct wlan_cfg_dp_pdev_ctxt *
- wlan_cfg_pdev_attach(struct cdp_ctrl_objmgr_psoc *psoc)
- {
- struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_ctx =
- qdf_mem_malloc(sizeof(struct wlan_cfg_dp_pdev_ctxt));
- if (!wlan_cfg_ctx)
- return NULL;
- wlan_cfg_ctx->rx_dma_buf_ring_size = cfg_get(psoc,
- CFG_DP_RXDMA_BUF_RING);
- wlan_cfg_ctx->dma_mon_buf_ring_size = cfg_get(psoc,
- CFG_DP_RXDMA_MONITOR_BUF_RING);
- wlan_cfg_ctx->dma_rx_mon_dest_ring_size = cfg_get(psoc,
- CFG_DP_RXDMA_MONITOR_DST_RING);
- wlan_cfg_ctx->dma_tx_mon_dest_ring_size = cfg_get(psoc,
- CFG_DP_TX_MONITOR_DST_RING);
- wlan_cfg_ctx->dma_mon_status_ring_size = cfg_get(psoc,
- CFG_DP_RXDMA_MONITOR_STATUS_RING);
- wlan_cfg_ctx->rxdma_monitor_desc_ring = cfg_get(psoc,
- CFG_DP_RXDMA_MONITOR_DESC_RING);
- wlan_cfg_ctx->num_mac_rings = NUM_RXDMA_RINGS_PER_PDEV;
- return wlan_cfg_ctx;
- }
- void wlan_cfg_set_mon_delayed_replenish_entries(
- struct wlan_cfg_dp_soc_ctxt *cfg,
- uint32_t val)
- {
- cfg->delayed_replenish_entries = val;
- }
- qdf_export_symbol(wlan_cfg_set_mon_delayed_replenish_entries);
- int wlan_cfg_get_mon_delayed_replenish_entries(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->delayed_replenish_entries;
- }
- void wlan_cfg_pdev_detach(struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_ctx)
- {
- if (wlan_cfg_ctx)
- qdf_mem_free(wlan_cfg_ctx);
- }
- int wlan_cfg_get_mon_drop_thresh(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->mon_drop_thresh;
- }
- void wlan_cfg_set_num_contexts(struct wlan_cfg_dp_soc_ctxt *cfg, int num)
- {
- cfg->num_int_ctxts = num;
- }
- void wlan_cfg_set_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg, uint32_t val)
- {
- cfg->max_peer_id = val;
- }
- void wlan_cfg_set_max_ast_idx(struct wlan_cfg_dp_soc_ctxt *cfg, uint32_t val)
- {
- cfg->max_ast_idx = val;
- }
- int wlan_cfg_get_max_ast_idx(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->max_ast_idx;
- }
- qdf_export_symbol(wlan_cfg_get_max_ast_idx);
- void wlan_cfg_set_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_tx_ring_mask[context] = mask;
- }
- void wlan_cfg_set_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_rx_ring_mask[context] = mask;
- }
- void wlan_cfg_set_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_rx_mon_ring_mask[context] = mask;
- }
- void wlan_cfg_set_tx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_tx_mon_ring_mask[context] = mask;
- }
- int wlan_cfg_get_host2rxdma_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_host2rxdma_mon_ring_mask[context];
- }
- void wlan_cfg_set_host2rxdma_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_host2rxdma_mon_ring_mask[context] = mask;
- }
- int wlan_cfg_get_rxdma2host_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_rxdma2host_mon_ring_mask[context];
- }
- void wlan_cfg_set_rxdma2host_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_rxdma2host_mon_ring_mask[context] = mask;
- }
- void wlan_cfg_set_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_rxdma2host_ring_mask[context] = mask;
- }
- int wlan_cfg_get_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_rxdma2host_ring_mask[context];
- }
- void wlan_cfg_set_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_host2rxdma_ring_mask[context] = mask;
- }
- int wlan_cfg_get_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_host2rxdma_ring_mask[context];
- }
- int wlan_cfg_get_rx_near_full_grp_1_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_rx_ring_near_full_irq_1_mask[context];
- }
- int wlan_cfg_get_rx_near_full_grp_2_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_rx_ring_near_full_irq_2_mask[context];
- }
- int wlan_cfg_get_tx_ring_near_full_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_tx_ring_near_full_irq_mask[context];
- }
- void wlan_cfg_set_hw_mac_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx,
- int hw_macid)
- {
- qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
- cfg->hw_macid[pdev_idx] = hw_macid;
- }
- int wlan_cfg_get_hw_mac_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx)
- {
- qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
- return cfg->hw_macid[pdev_idx];
- }
- qdf_export_symbol(wlan_cfg_get_hw_mac_idx);
- int wlan_cfg_get_target_pdev_id(struct wlan_cfg_dp_soc_ctxt *cfg,
- int hw_macid)
- {
- int idx;
- for (idx = 0; idx < MAX_PDEV_CNT; idx++) {
- if (cfg->hw_macid[idx] == hw_macid)
- return (idx + 1);
- }
- qdf_assert_always(idx < MAX_PDEV_CNT);
- return WLAN_INVALID_PDEV_ID;
- }
- void wlan_cfg_set_pdev_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx,
- int hw_macid)
- {
- qdf_assert_always((pdev_idx < MAX_PDEV_CNT) ||
- (pdev_idx == INVALID_PDEV_ID));
- qdf_assert_always(hw_macid < MAX_NUM_LMAC_HW);
- cfg->hw_macid_pdev_id_map[hw_macid] = pdev_idx;
- }
- int wlan_cfg_get_pdev_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int hw_macid)
- {
- qdf_assert_always(hw_macid < MAX_NUM_LMAC_HW);
- return cfg->hw_macid_pdev_id_map[hw_macid];
- }
- qdf_export_symbol(wlan_cfg_get_pdev_idx);
- void wlan_cfg_set_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_ce_ring_mask[context] = mask;
- }
- void wlan_cfg_set_rxbuf_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context,
- int mask)
- {
- cfg->int_rx_ring_mask[context] = mask;
- }
- int wlan_cfg_set_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- return cfg->int_rx_err_ring_mask[context] = mask;
- }
- int wlan_cfg_set_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- return cfg->int_rx_wbm_rel_ring_mask[context] = mask;
- }
- int wlan_cfg_set_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- return cfg->int_reo_status_ring_mask[context] = mask;
- }
- int wlan_cfg_get_num_contexts(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_int_ctxts;
- }
- int wlan_cfg_get_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
- {
- return cfg->int_tx_ring_mask[context];
- }
- int wlan_cfg_get_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
- {
- return cfg->int_rx_ring_mask[context];
- }
- int wlan_cfg_get_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_rx_err_ring_mask[context];
- }
- int wlan_cfg_get_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_rx_wbm_rel_ring_mask[context];
- }
- int wlan_cfg_get_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_reo_status_ring_mask[context];
- }
- int wlan_cfg_get_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
- {
- return cfg->int_rx_mon_ring_mask[context];
- }
- #ifdef CONFIG_BERYLLIUM
- int wlan_cfg_get_tx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
- {
- return cfg->int_tx_mon_ring_mask[context];
- }
- #else
- int wlan_cfg_get_tx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
- {
- return 0;
- }
- #endif
- int wlan_cfg_get_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
- {
- return cfg->int_ce_ring_mask[context];
- }
- uint32_t wlan_cfg_get_max_clients(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->max_clients;
- }
- uint32_t wlan_cfg_max_alloc_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->max_alloc_size;
- }
- int wlan_cfg_per_pdev_tx_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->per_pdev_tx_ring;
- }
- int wlan_cfg_get_umac_reset_intr_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_umac_reset_intr_mask[context];
- }
- uint32_t
- wlan_cfg_rx_pending_hl_threshold(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_pending_high_threshold;
- }
- uint32_t
- wlan_cfg_rx_pending_lo_threshold(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_pending_low_threshold;
- }
- int wlan_cfg_per_pdev_lmac_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->per_pdev_lmac_ring;
- }
- qdf_export_symbol(wlan_cfg_per_pdev_lmac_ring);
- #if defined(DP_USE_SINGLE_TCL) && !defined(TX_MULTI_TCL)
- int wlan_cfg_num_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return 1;
- }
- int wlan_cfg_num_nss_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return 1;
- }
- #else
- #if defined(IPA_OFFLOAD) && defined(TX_MULTI_TCL)
- int wlan_cfg_num_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- if (!cfg->ipa_enabled)
- return cfg->num_tcl_data_rings;
- return 1;
- }
- int wlan_cfg_num_nss_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- if (!cfg->ipa_enabled)
- return cfg->num_nss_tcl_data_rings;
- return 1;
- }
- #else
- int wlan_cfg_num_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_tcl_data_rings;
- }
- int wlan_cfg_num_nss_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_nss_tcl_data_rings;
- }
- #endif
- #endif
- int wlan_cfg_num_tx_comp_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_tx_comp_rings;
- }
- int wlan_cfg_tx_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_ring_size;
- }
- int wlan_cfg_time_control_bp(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->time_control_bp;
- }
- int wlan_cfg_tx_comp_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_comp_ring_size;
- }
- int wlan_cfg_per_pdev_rx_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->per_pdev_rx_ring;
- }
- int wlan_cfg_num_reo_dest_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_reo_dest_rings;
- }
- int wlan_cfg_num_nss_reo_dest_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_nss_reo_dest_rings;
- }
- int wlan_cfg_pkt_type(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->htt_packet_type; /*htt_pkt_type_ethernet*/
- }
- int wlan_cfg_get_num_tx_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_tx_desc_pool;
- }
- void wlan_cfg_set_num_tx_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg, int num_pool)
- {
- cfg->num_tx_desc_pool = num_pool;
- }
- int wlan_cfg_get_num_tx_ext_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_tx_ext_desc_pool;
- }
- void wlan_cfg_set_num_tx_ext_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg, int num_pool)
- {
- cfg->num_tx_ext_desc_pool = num_pool;
- }
- int wlan_cfg_get_reo_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->reo_dst_ring_size;
- }
- void wlan_cfg_set_reo_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg,
- int reo_dst_ring_size)
- {
- cfg->reo_dst_ring_size = reo_dst_ring_size;
- }
- void wlan_cfg_set_raw_mode_war(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool raw_mode_war)
- {
- cfg->raw_mode_war = raw_mode_war;
- }
- bool wlan_cfg_get_raw_mode_war(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->raw_mode_war;
- }
- int wlan_cfg_get_num_global_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_global_tx_desc;
- }
- int wlan_cfg_get_num_global_spcl_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_global_spcl_tx_desc;
- }
- int wlan_cfg_get_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_tx_desc;
- }
- int wlan_cfg_get_num_tx_spl_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_tx_spl_desc;
- }
- void wlan_cfg_set_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg, int num_desc)
- {
- cfg->num_tx_desc = num_desc;
- }
- int wlan_cfg_get_min_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->min_tx_desc;
- }
- int wlan_cfg_get_num_tx_ext_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->num_tx_ext_desc;
- }
- void wlan_cfg_set_num_tx_ext_desc(struct wlan_cfg_dp_soc_ctxt *cfg, int num_ext_desc)
- {
- cfg->num_tx_ext_desc = num_ext_desc;
- }
- uint32_t wlan_cfg_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- /* TODO: This should be calculated based on target capabilities */
- return cfg->max_peer_id;
- }
- int wlan_cfg_get_dma_mon_buf_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
- {
- return cfg->dma_mon_buf_ring_size;
- }
- qdf_export_symbol(wlan_cfg_get_dma_mon_buf_ring_size);
- int wlan_cfg_get_dma_rx_mon_dest_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
- {
- return cfg->dma_rx_mon_dest_ring_size;
- }
- qdf_export_symbol(wlan_cfg_get_dma_rx_mon_dest_ring_size);
- int wlan_cfg_get_dma_tx_mon_dest_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
- {
- return cfg->dma_tx_mon_dest_ring_size;
- }
- qdf_export_symbol(wlan_cfg_get_dma_tx_mon_dest_ring_size);
- int wlan_cfg_get_dma_mon_stat_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
- {
- return cfg->dma_mon_status_ring_size;
- }
- qdf_export_symbol(wlan_cfg_get_dma_mon_stat_ring_size);
- int
- wlan_cfg_get_dma_mon_desc_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
- {
- return cfg->rxdma_monitor_desc_ring;
- }
- qdf_export_symbol(wlan_cfg_get_dma_mon_desc_ring_size);
- int wlan_cfg_get_rx_dma_buf_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
- {
- return cfg->rx_dma_buf_ring_size;
- }
- int wlan_cfg_get_num_mac_rings(struct wlan_cfg_dp_pdev_ctxt *cfg)
- {
- return cfg->num_mac_rings;
- }
- qdf_export_symbol(wlan_cfg_get_num_mac_rings);
- bool wlan_cfg_is_gro_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->gro_enabled;
- }
- bool wlan_cfg_is_lro_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->lro_enabled;
- }
- bool wlan_cfg_is_ipa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ipa_enabled;
- }
- void wlan_cfg_set_rx_hash(struct wlan_cfg_dp_soc_ctxt *cfg, bool val)
- {
- cfg->rx_hash = val;
- }
- bool wlan_cfg_is_rx_hash_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_hash;
- }
- int wlan_cfg_get_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg)
- {
- return cfg->nss_enabled;
- }
- void wlan_cfg_set_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg, int nss_enabled)
- {
- cfg->nss_enabled = nss_enabled;
- }
- int wlan_cfg_get_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->nss_cfg;
- }
- void wlan_cfg_set_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg, int nss_cfg)
- {
- cfg->nss_cfg = nss_cfg;
- if (cfg->nss_cfg)
- cfg->tx_comp_ring_size = cfg->tx_comp_ring_size_nss;
- }
- int wlan_cfg_get_int_batch_threshold_ppe2tcl(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->int_batch_threshold_ppe2tcl;
- }
- int wlan_cfg_get_int_timer_threshold_ppe2tcl(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->int_timer_threshold_ppe2tcl;
- }
- int wlan_cfg_get_int_batch_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->int_batch_threshold_tx;
- }
- int wlan_cfg_get_int_timer_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->int_timer_threshold_tx;
- }
- int wlan_cfg_get_int_batch_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->int_batch_threshold_rx;
- }
- int wlan_cfg_get_int_timer_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->int_timer_threshold_rx;
- }
- int wlan_cfg_get_int_batch_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->int_batch_threshold_other;
- }
- int wlan_cfg_get_int_timer_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->int_timer_threshold_other;
- }
- int wlan_cfg_get_int_timer_threshold_mon(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->int_timer_threshold_mon;
- }
- int wlan_cfg_get_p2p_checksum_offload(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->p2p_tcp_udp_checksumoffload;
- }
- int wlan_cfg_get_nan_checksum_offload(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->nan_tcp_udp_checksumoffload;
- }
- int wlan_cfg_get_checksum_offload(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tcp_udp_checksumoffload;
- }
- int wlan_cfg_get_rx_defrag_min_timeout(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_defrag_min_timeout;
- }
- int wlan_cfg_get_defrag_timeout_check(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->defrag_timeout_check;
- }
- int
- wlan_cfg_get_dp_soc_wbm_release_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->wbm_release_ring;
- }
- int
- wlan_cfg_get_dp_soc_tcl_cmd_credit_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tcl_cmd_credit_ring;
- }
- int
- wlan_cfg_get_dp_soc_tcl_status_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tcl_status_ring;
- }
- int
- wlan_cfg_get_dp_soc_reo_reinject_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->reo_reinject_ring;
- }
- int
- wlan_cfg_get_dp_soc_rx_release_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_release_ring;
- }
- int
- wlan_cfg_get_dp_soc_reo_exception_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->reo_exception_ring;
- }
- int
- wlan_cfg_get_dp_soc_reo_cmd_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->reo_cmd_ring;
- }
- int
- wlan_cfg_get_dp_soc_reo_status_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->reo_status_ring;
- }
- int
- wlan_cfg_get_dp_soc_rxdma_refill_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rxdma_refill_ring;
- }
- bool
- wlan_cfg_get_dp_soc_rxdma_refill_lt_disable(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rxdma_refill_lt_disable;
- }
- int
- wlan_cfg_get_dp_soc_tx_desc_limit_0(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_desc_limit_0;
- }
- int
- wlan_cfg_get_dp_soc_tx_desc_limit_1(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_desc_limit_1;
- }
- int
- wlan_cfg_get_dp_soc_tx_desc_limit_2(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_desc_limit_2;
- }
- int
- wlan_cfg_get_dp_soc_tx_device_limit(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_device_limit;
- }
- int
- wlan_cfg_get_dp_soc_tx_spl_device_limit(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_spl_device_limit;
- }
- int
- wlan_cfg_get_dp_soc_tx_sw_internode_queue(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_sw_internode_queue;
- }
- int
- wlan_cfg_get_dp_soc_rxdma_err_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rxdma_err_dst_ring;
- }
- int
- wlan_cfg_get_dp_soc_rx_sw_desc_weight(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_sw_desc_weight;
- }
- qdf_export_symbol(wlan_cfg_get_dp_soc_rx_sw_desc_weight);
- int
- wlan_cfg_get_dp_soc_rx_sw_desc_num(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_sw_desc_num;
- }
- uint32_t
- wlan_cfg_get_reo_rings_mapping(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->reo_rings_mapping;
- }
- bool
- wlan_cfg_get_dp_caps(struct wlan_cfg_dp_soc_ctxt *cfg,
- enum cdp_capabilities dp_caps)
- {
- switch (dp_caps) {
- case CDP_CFG_DP_TSO:
- return cfg->tso_enabled;
- case CDP_CFG_DP_LRO:
- return cfg->lro_enabled;
- case CDP_CFG_DP_SG:
- return cfg->sg_enabled;
- case CDP_CFG_DP_GRO:
- return cfg->gro_enabled;
- case CDP_CFG_DP_OL_TX_CSUM:
- return cfg->ol_tx_csum_enabled;
- case CDP_CFG_DP_OL_RX_CSUM:
- return cfg->ol_rx_csum_enabled;
- case CDP_CFG_DP_RAWMODE:
- return cfg->rawmode_enabled;
- case CDP_CFG_DP_PEER_FLOW_CTRL:
- return cfg->peer_flow_ctrl_enabled;
- case CDP_CFG_DP_MARK_NOTIFY_FRAME_SUPPORT:
- return cfg->notify_frame_support;
- default:
- return false;
- }
- }
- void wlan_cfg_set_tso_desc_attach_defer(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->is_tso_desc_attach_defer = val;
- }
- bool wlan_cfg_is_tso_desc_attach_defer(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->is_tso_desc_attach_defer;
- }
- #ifdef QCA_LL_TX_FLOW_CONTROL_V2
- /**
- * wlan_cfg_get_tx_flow_stop_queue_th() - Get flow control stop threshold
- * @cfg: config context
- *
- * Return: stop threshold
- */
- int wlan_cfg_get_tx_flow_stop_queue_th(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_flow_stop_queue_threshold;
- }
- /**
- * wlan_cfg_get_tx_flow_start_queue_offset() - Get flow control start offset
- * for TX to resume
- * @cfg: config context
- *
- * Return: stop threshold
- */
- int wlan_cfg_get_tx_flow_start_queue_offset(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_flow_start_queue_offset;
- }
- #endif /* QCA_LL_TX_FLOW_CONTROL_V2 */
- void wlan_cfg_set_rx_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->is_rx_flow_tag_enabled = val;
- }
- uint8_t *wlan_cfg_rx_fst_get_hash_key(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_toeplitz_hash_key;
- }
- uint8_t wlan_cfg_rx_fst_get_max_search(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_flow_max_search;
- }
- bool wlan_cfg_is_rx_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->is_rx_flow_tag_enabled;
- }
- qdf_export_symbol(wlan_cfg_is_rx_flow_tag_enabled);
- #ifdef WLAN_SUPPORT_RX_FISA
- bool wlan_cfg_is_rx_fisa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return (bool)(cfg->is_rx_fisa_enabled);
- }
- bool wlan_cfg_is_rx_fisa_lru_del_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->is_rx_fisa_lru_del_enabled;
- }
- #else
- bool wlan_cfg_is_rx_fisa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return false;
- }
- bool wlan_cfg_is_rx_fisa_lru_del_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return false;
- }
- #endif
- bool wlan_cfg_is_poll_mode_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return (bool)(cfg->is_poll_mode_enabled);
- }
- void
- wlan_cfg_set_rx_flow_search_table_per_pdev(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->is_rx_flow_search_table_per_pdev = val;
- }
- bool wlan_cfg_is_rx_flow_search_table_per_pdev(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->is_rx_flow_search_table_per_pdev;
- }
- void wlan_cfg_set_rx_flow_search_table_size(struct wlan_cfg_dp_soc_ctxt *cfg,
- uint16_t val)
- {
- cfg->rx_flow_search_table_size = val;
- }
- uint16_t
- wlan_cfg_get_rx_flow_search_table_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_flow_search_table_size;
- }
- void
- wlan_cfg_set_rx_mon_protocol_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->is_rx_mon_protocol_flow_tag_enabled = val;
- }
- bool
- wlan_cfg_is_rx_mon_protocol_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->is_rx_mon_protocol_flow_tag_enabled;
- }
- qdf_export_symbol(wlan_cfg_is_rx_mon_protocol_flow_tag_enabled);
- void
- wlan_cfg_set_tx_per_pkt_vdev_id_check(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->tx_per_pkt_vdev_id_check = val;
- }
- bool
- wlan_cfg_is_tx_per_pkt_vdev_id_check_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_per_pkt_vdev_id_check;
- }
- void
- wlan_cfg_set_peer_ext_stats(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->pext_stats_enabled = val;
- }
- void
- wlan_cfg_set_peer_jitter_stats(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->jitter_stats_enabled = val;
- }
- bool
- wlan_cfg_is_peer_ext_stats_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->pext_stats_enabled;
- }
- bool wlan_cfg_is_fst_in_cmem_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->fst_in_cmem;
- }
- bool wlan_cfg_is_peer_jitter_stats_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->jitter_stats_enabled;
- }
- void
- wlan_cfg_set_peer_link_stats(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->peer_link_stats_enabled = val;
- }
- qdf_export_symbol(wlan_cfg_set_peer_link_stats);
- bool wlan_cfg_is_peer_link_stats_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->peer_link_stats_enabled;
- }
- qdf_export_symbol(wlan_cfg_is_peer_link_stats_enabled);
- #ifdef WLAN_FEATURE_RX_PREALLOC_BUFFER_POOL
- bool wlan_cfg_is_rx_buffer_pool_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->is_rx_buff_pool_enabled;
- }
- bool wlan_cfg_is_rx_refill_buffer_pool_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->is_rx_refill_buff_pool_enabled;
- }
- #else
- bool wlan_cfg_is_rx_buffer_pool_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return false;
- }
- bool wlan_cfg_is_rx_refill_buffer_pool_enabled(
- struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return false;
- }
- #endif /* WLAN_FEATURE_RX_PREALLOC_BUFFER_POOL */
- #ifdef WLAN_DP_FEATURE_SW_LATENCY_MGR
- bool wlan_cfg_is_swlm_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return (bool)(cfg->is_swlm_enabled);
- }
- #else
- bool wlan_cfg_is_swlm_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return false;
- }
- #endif
- uint8_t wlan_cfg_radio0_default_reo_get(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->radio0_rx_default_reo;
- }
- uint8_t wlan_cfg_radio1_default_reo_get(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->radio1_rx_default_reo;
- }
- uint8_t wlan_cfg_radio2_default_reo_get(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->radio2_rx_default_reo;
- }
- void wlan_cfg_set_rxdma1_enable(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- cfg->rxdma1_enable = true;
- }
- void
- wlan_cfg_set_delay_mon_replenish(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->delay_mon_replenish = val;
- }
- bool
- wlan_cfg_is_delay_mon_replenish(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->delay_mon_replenish;
- }
- qdf_export_symbol(wlan_cfg_is_delay_mon_replenish);
- void wlan_cfg_dp_soc_ctx_dump(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- dp_info("DP CFG SoC ctx: delay_mon_replenish = %d,",
- cfg->delay_mon_replenish);
- dp_info("reo_dst_ring_size = %d, delayed_replenish_entries = %d",
- cfg->reo_dst_ring_size, cfg->delayed_replenish_entries);
- }
- #ifdef IPA_OFFLOAD
- uint32_t wlan_cfg_ipa_tx_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ipa_tx_ring_size;
- }
- uint32_t wlan_cfg_ipa_tx_comp_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ipa_tx_comp_ring_size;
- }
- #ifdef IPA_WDI3_TX_TWO_PIPES
- int wlan_cfg_ipa_tx_alt_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ipa_tx_alt_ring_size;
- }
- int wlan_cfg_ipa_tx_alt_comp_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ipa_tx_alt_comp_ring_size;
- }
- #else
- int wlan_cfg_ipa_tx_alt_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ipa_tx_ring_size;
- }
- int wlan_cfg_ipa_tx_alt_comp_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ipa_tx_comp_ring_size;
- }
- #endif
- #endif
- #ifdef WLAN_SUPPORT_PPEDS
- bool
- wlan_cfg_get_dp_soc_is_ppeds_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ppeds_enable;
- }
- int
- wlan_cfg_get_dp_soc_reo2ppe_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->reo2ppe_ring;
- }
- int
- wlan_cfg_get_dp_soc_ppe2tcl_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ppe2tcl_ring;
- }
- int
- wlan_cfg_get_dp_soc_ppeds_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ppeds_num_tx_desc;
- }
- int
- wlan_cfg_get_dp_soc_ppeds_tx_comp_napi_budget(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ppeds_tx_comp_napi_budget;
- }
- int
- wlan_cfg_get_dp_soc_ppeds_tx_desc_hotlist_len(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->ppeds_tx_desc_hotlist_len;
- }
- #endif
- void
- wlan_cfg_get_prealloc_cfg(struct cdp_ctrl_objmgr_psoc *ctrl_psoc,
- struct wlan_dp_prealloc_cfg *cfg)
- {
- if (!ctrl_psoc || !cfg)
- return;
- cfg->num_reo_dst_ring_entries = cfg_get(ctrl_psoc,
- CFG_DP_RX_DESTINATION_RING);
- cfg->num_tx_ring_entries = cfg_get(ctrl_psoc, CFG_DP_TX_RING_SIZE);
- cfg->num_tx_comp_ring_entries = cfg_get(ctrl_psoc,
- CFG_DP_TX_COMPL_RING_SIZE);
- cfg->num_wbm_rel_ring_entries = cfg_get(ctrl_psoc,
- CFG_DP_WBM_RELEASE_RING);
- cfg->num_rxdma_err_dst_ring_entries = cfg_get(ctrl_psoc,
- CFG_DP_RXDMA_ERR_DST_RING);
- cfg->num_reo_exception_ring_entries = cfg_get(ctrl_psoc,
- CFG_DP_REO_EXCEPTION_RING);
- cfg->num_tx_desc = cfg_get(ctrl_psoc, CFG_DP_TX_DESC);
- cfg->num_tx_ext_desc = cfg_get(ctrl_psoc, CFG_DP_TX_EXT_DESC);
- cfg->num_rxdma_buf_ring_entries = cfg_get(ctrl_psoc,
- CFG_DP_RXDMA_BUF_RING);
- cfg->num_rxdma_refill_ring_entries = cfg_get(ctrl_psoc,
- CFG_DP_RXDMA_REFILL_RING);
- cfg->num_reo_status_ring_entries = cfg_get(ctrl_psoc,
- CFG_DP_REO_STATUS_RING);
- cfg->num_mon_status_ring_entries = cfg_get(ctrl_psoc,
- CFG_DP_RXDMA_MONITOR_STATUS_RING);
- }
- #ifdef WLAN_FEATURE_PKT_CAPTURE_V2
- uint32_t wlan_cfg_get_pkt_capture_mode(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->pkt_capture_mode;
- }
- #endif
- uint32_t
- wlan_cfg_get_dp_soc_rx_mon_buf_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_mon_buf_ring_size;
- }
- qdf_export_symbol(wlan_cfg_get_dp_soc_rx_mon_buf_ring_size);
- uint32_t
- wlan_cfg_get_dp_soc_tx_mon_buf_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->tx_mon_buf_ring_size;
- }
- qdf_export_symbol(wlan_cfg_get_dp_soc_tx_mon_buf_ring_size);
- uint8_t
- wlan_cfg_get_rx_rel_ring_id(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->rx_rel_wbm2sw_ring_id;
- }
- void
- wlan_cfg_set_rx_rel_ring_id(struct wlan_cfg_dp_soc_ctxt *cfg,
- uint8_t wbm2sw_ring_id)
- {
- cfg->rx_rel_wbm2sw_ring_id = wbm2sw_ring_id;
- }
- #if defined(WLAN_FEATURE_11BE_MLO) && defined(WLAN_MLO_MULTI_CHIP)
- uint8_t
- wlan_cfg_mlo_rx_ring_map_get(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->mlo_chip_rx_ring_map;
- }
- #endif
- #ifdef QCA_VDEV_STATS_HW_OFFLOAD_SUPPORT
- bool
- wlan_cfg_get_vdev_stats_hw_offload_config(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->vdev_stats_hw_offload_config;
- }
- int wlan_cfg_get_vdev_stats_hw_offload_timer(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->vdev_stats_hw_offload_timer;
- }
- void
- wlan_cfg_set_vdev_stats_hw_offload_config(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {
- cfg->vdev_stats_hw_offload_config = val;
- }
- #else
- bool
- wlan_cfg_get_vdev_stats_hw_offload_config(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return false;
- }
- int wlan_cfg_get_vdev_stats_hw_offload_timer(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return 0;
- }
- void
- wlan_cfg_set_vdev_stats_hw_offload_config(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool val)
- {}
- #endif
- #ifdef CONFIG_SAWF
- bool wlan_cfg_get_sawf_config(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->sawf_enabled;
- }
- void wlan_cfg_set_sawf_config(struct wlan_cfg_dp_soc_ctxt *cfg, bool val)
- {
- cfg->sawf_enabled = val;
- }
- #else
- bool wlan_cfg_get_sawf_config(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return false;
- }
- void wlan_cfg_set_sawf_config(struct wlan_cfg_dp_soc_ctxt *cfg, bool val)
- {
- }
- #endif
- #ifdef CONFIG_BERYLLIUM
- int wlan_cfg_get_host2txmon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return cfg->int_host2txmon_ring_mask[context];
- }
- qdf_export_symbol(wlan_cfg_get_host2txmon_ring_mask);
- void wlan_cfg_set_host2txmon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- cfg->int_host2txmon_ring_mask[context] = mask;
- }
- #else
- int wlan_cfg_get_host2txmon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context)
- {
- return 0;
- }
- void wlan_cfg_set_host2txmon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
- int context, int mask)
- {
- }
- #endif
- qdf_export_symbol(wlan_cfg_set_host2txmon_ring_mask);
- void wlan_cfg_set_txmon_hw_support(struct wlan_cfg_dp_soc_ctxt *cfg,
- bool txmon_hw_support)
- {
- cfg->txmon_hw_support = txmon_hw_support;
- }
- bool wlan_cfg_get_txmon_hw_support(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->txmon_hw_support;
- }
- qdf_export_symbol(wlan_cfg_get_txmon_hw_support);
- uint8_t wlan_cfg_get_napi_scale_factor(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->napi_scale_factor;
- }
- bool wlan_cfg_get_txmon_sw_peer_filtering(struct wlan_cfg_dp_soc_ctxt *cfg)
- {
- return cfg->txmon_sw_peer_filtering;
- }
- qdf_export_symbol(wlan_cfg_get_txmon_sw_peer_filtering);
|