gsi.c 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/of.h>
  6. #include <linux/interrupt.h>
  7. #include <linux/io.h>
  8. #include <linux/log2.h>
  9. #include <linux/module.h>
  10. #include <linux/msm_gsi.h>
  11. #include <linux/platform_device.h>
  12. #include <linux/delay.h>
  13. #include "gsi.h"
  14. #include "gsi_emulation.h"
  15. #include "gsihal.h"
  16. #include <asm/arch_timer.h>
  17. #include <linux/sched/clock.h>
  18. #include <linux/jiffies.h>
  19. #include <linux/sched.h>
  20. #include <linux/wait.h>
  21. #include <linux/delay.h>
  22. #include <linux/version.h>
  23. #define GSI_CMD_TIMEOUT (5*HZ)
  24. #define GSI_START_CMD_TIMEOUT_MS 1000
  25. #define GSI_CMD_POLL_CNT 5
  26. #define GSI_STOP_CMD_TIMEOUT_MS 200
  27. #define GSI_MAX_CH_LOW_WEIGHT 15
  28. #define GSI_IRQ_STORM_THR 5
  29. #define GSI_STOP_CMD_POLL_CNT 4
  30. #define GSI_STOP_IN_PROC_CMD_POLL_CNT 2
  31. #define GSI_RESET_WA_MIN_SLEEP 1000
  32. #define GSI_RESET_WA_MAX_SLEEP 2000
  33. #define GSI_CHNL_STATE_MAX_RETRYCNT 10
  34. #define GSI_STTS_REG_BITS 32
  35. #define GSI_MSB_MASK 0xFFFFFFFF00000000ULL
  36. #define GSI_LSB_MASK 0x00000000FFFFFFFFULL
  37. #define GSI_MSB(num) ((u32)((num & GSI_MSB_MASK) >> 32))
  38. #define GSI_LSB(num) ((u32)(num & GSI_LSB_MASK))
  39. #ifndef CONFIG_DEBUG_FS
  40. void gsi_debugfs_init(void)
  41. {
  42. }
  43. #endif
  44. static const struct of_device_id msm_gsi_match[] = {
  45. { .compatible = "qcom,msm_gsi", },
  46. { },
  47. };
  48. #if defined(CONFIG_IPA_EMULATION)
  49. static bool running_emulation = true;
  50. #else
  51. static bool running_emulation;
  52. #endif
  53. struct gsi_ctx *gsi_ctx;
  54. static union __packed gsi_channel_scratch __gsi_update_mhi_channel_scratch(
  55. unsigned long chan_hdl, struct __packed gsi_mhi_channel_scratch mscr);
  56. static void __gsi_config_type_irq(int ee, uint32_t mask, uint32_t val)
  57. {
  58. uint32_t curr;
  59. curr = gsihal_read_reg_n(GSI_EE_n_CNTXT_TYPE_IRQ_MSK, ee);
  60. gsihal_write_reg_n(GSI_EE_n_CNTXT_TYPE_IRQ_MSK, ee,
  61. (curr & ~mask) | (val & mask));
  62. }
  63. static void __gsi_config_ch_irq(int ee, uint32_t mask, uint32_t val)
  64. {
  65. uint32_t curr;
  66. curr = gsihal_read_reg_n(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_MSK, ee);
  67. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_MSK, ee,
  68. (curr & ~mask) | (val & mask));
  69. }
  70. static void __gsi_config_all_ch_irq(int ee, uint32_t mask, uint32_t val)
  71. {
  72. uint32_t curr, k, max_k;
  73. max_k = gsihal_get_bit_map_array_size();
  74. for (k = 0; k < max_k; k++)
  75. {
  76. curr = gsihal_read_reg_nk(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_MSK_k, ee, k);
  77. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_MSK_k, ee, k,
  78. (curr & ~mask) | (val & mask));
  79. }
  80. }
  81. static void __gsi_config_evt_irq(int ee, uint32_t mask, uint32_t val)
  82. {
  83. uint32_t curr;
  84. curr = gsihal_read_reg_n(GSI_EE_n_CNTXT_SRC_EV_CH_IRQ_MSK, ee);
  85. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_EV_CH_IRQ_MSK, ee,
  86. (curr & ~mask) | (val & mask));
  87. }
  88. static void __gsi_config_all_evt_irq(int ee, uint32_t mask, uint32_t val)
  89. {
  90. uint32_t curr, k, max_k;
  91. max_k = gsihal_get_bit_map_array_size();
  92. for (k = 0; k < max_k; k++)
  93. {
  94. curr = gsihal_read_reg_nk(GSI_EE_n_CNTXT_SRC_EV_CH_IRQ_MSK_k, ee, k);
  95. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_EV_CH_IRQ_MSK_k, ee, k,
  96. (curr & ~mask) | (val & mask));
  97. }
  98. }
  99. static void __gsi_config_ieob_irq(int ee, uint32_t mask, uint32_t val)
  100. {
  101. uint32_t curr;
  102. curr = gsihal_read_reg_n(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_MSK, ee);
  103. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_MSK, ee,
  104. (curr & ~mask) | (val & mask));
  105. GSIDBG("current IEO_IRQ_MSK: 0x%x, change to: 0x%x\n",
  106. curr, ((curr & ~mask) | (val & mask)));
  107. }
  108. static void __gsi_config_all_ieob_irq(int ee, uint32_t mask, uint32_t val)
  109. {
  110. uint32_t curr, k, max_k;
  111. max_k = gsihal_get_bit_map_array_size();
  112. for (k = 0; k < max_k; k++)
  113. {
  114. curr = gsihal_read_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_MSK_k, ee, k);
  115. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_MSK_k, ee, k,
  116. (curr & ~mask) | (val & mask));
  117. GSIDBG("current IEO_IRQ_MSK: 0x%x, change to: 0x%x\n",
  118. curr, ((curr & ~mask) | (val & mask)));
  119. }
  120. }
  121. static void __gsi_config_ieob_irq_k(int ee, uint32_t k, uint32_t mask, uint32_t val)
  122. {
  123. uint32_t curr;
  124. curr = gsihal_read_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_MSK_k, ee, k);
  125. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_MSK_k, ee, k,
  126. (curr & ~mask) | (val & mask));
  127. GSIDBG("current IEO_IRQ_MSK: 0x%x, change to: 0x%x\n",
  128. curr, ((curr & ~mask) | (val & mask)));
  129. }
  130. static void __gsi_config_glob_irq(int ee, uint32_t mask, uint32_t val)
  131. {
  132. uint32_t curr;
  133. curr = gsihal_read_reg_n(GSI_EE_n_CNTXT_GLOB_IRQ_EN, ee);
  134. gsihal_write_reg_n(GSI_EE_n_CNTXT_GLOB_IRQ_EN, ee,
  135. (curr & ~mask) | (val & mask));
  136. }
  137. static void __gsi_config_gen_irq(int ee, uint32_t mask, uint32_t val)
  138. {
  139. uint32_t curr;
  140. curr = gsihal_read_reg_n(GSI_EE_n_CNTXT_GSI_IRQ_EN, ee);
  141. gsihal_write_reg_n(GSI_EE_n_CNTXT_GSI_IRQ_EN, ee,
  142. (curr & ~mask) | (val & mask));
  143. }
  144. static void gsi_channel_state_change_wait(unsigned long chan_hdl,
  145. struct gsi_chan_ctx *ctx,
  146. uint32_t tm, enum gsi_ch_cmd_opcode op)
  147. {
  148. int poll_cnt;
  149. int gsi_pending_intr;
  150. int res;
  151. struct gsihal_reg_ctx_type_irq type;
  152. struct gsihal_reg_ch_k_cntxt_0 ch_k_cntxt_0;
  153. int ee = gsi_ctx->per.ee;
  154. enum gsi_chan_state curr_state = GSI_CHAN_STATE_NOT_ALLOCATED;
  155. int stop_in_proc_retry = 0;
  156. int stop_retry = 0;
  157. /*
  158. * Start polling the GSI channel for
  159. * duration = tm * GSI_CMD_POLL_CNT.
  160. * We need to do polling of gsi state for improving debugability
  161. * of gsi hw state.
  162. */
  163. for (poll_cnt = 0;
  164. poll_cnt < GSI_CMD_POLL_CNT;
  165. poll_cnt++) {
  166. res = wait_for_completion_timeout(&ctx->compl,
  167. msecs_to_jiffies(tm));
  168. /* Interrupt received, return */
  169. if (res != 0)
  170. return;
  171. gsihal_read_reg_n_fields(GSI_EE_n_CNTXT_TYPE_IRQ, ee, &type);
  172. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  173. gsi_pending_intr = gsihal_read_reg_nk(
  174. GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_k,
  175. ee, gsihal_get_ch_reg_idx(chan_hdl));
  176. } else {
  177. gsi_pending_intr = gsihal_read_reg_n(
  178. GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ, ee);
  179. }
  180. if (gsi_ctx->per.ver == GSI_VER_1_0) {
  181. gsihal_read_reg_nk_fields(GSI_EE_n_GSI_CH_k_CNTXT_0,
  182. ee, chan_hdl, &ch_k_cntxt_0);
  183. curr_state = ch_k_cntxt_0.chstate;
  184. }
  185. /* Update the channel state only if interrupt was raised
  186. * on particular channel and also checking global interrupt
  187. * is raised for channel control.
  188. */
  189. if ((type.ch_ctrl) &&
  190. (gsi_pending_intr & gsihal_get_ch_reg_mask(chan_hdl))) {
  191. /*
  192. * Check channel state here in case the channel is
  193. * already started but interrupt is not yet received.
  194. */
  195. gsihal_read_reg_nk_fields(GSI_EE_n_GSI_CH_k_CNTXT_0,
  196. ee, chan_hdl, &ch_k_cntxt_0);
  197. curr_state = ch_k_cntxt_0.chstate;
  198. }
  199. if (op == GSI_CH_START) {
  200. if (curr_state == GSI_CHAN_STATE_STARTED ||
  201. curr_state == GSI_CHAN_STATE_FLOW_CONTROL) {
  202. ctx->state = curr_state;
  203. return;
  204. }
  205. }
  206. if (op == GSI_CH_STOP) {
  207. if (curr_state == GSI_CHAN_STATE_STOPPED)
  208. stop_retry++;
  209. else if (curr_state == GSI_CHAN_STATE_STOP_IN_PROC)
  210. stop_in_proc_retry++;
  211. }
  212. /* if interrupt marked reg after poll count reaching to max
  213. * keep loop to continue reach max stop proc and max stop count.
  214. */
  215. if (stop_retry == 1 || stop_in_proc_retry == 1)
  216. poll_cnt = 0;
  217. /* If stop channel retry reached to max count
  218. * clear the pending interrupt, if channel already stopped.
  219. */
  220. if (stop_retry == GSI_STOP_CMD_POLL_CNT) {
  221. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  222. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_CLR_k,
  223. ee, gsihal_get_ch_reg_idx(chan_hdl),
  224. gsi_pending_intr);
  225. }
  226. else {
  227. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_CLR,
  228. ee,
  229. gsi_pending_intr);
  230. }
  231. ctx->state = curr_state;
  232. return;
  233. }
  234. /* If channel state stop in progress case no need
  235. * to wait for long time.
  236. */
  237. if (stop_in_proc_retry == GSI_STOP_IN_PROC_CMD_POLL_CNT) {
  238. ctx->state = curr_state;
  239. return;
  240. }
  241. GSIDBG("GSI wait on chan_hld=%lu irqtyp=%u state=%u intr=%u\n",
  242. chan_hdl,
  243. type,
  244. ctx->state,
  245. gsi_pending_intr);
  246. }
  247. GSIDBG("invalidating the channel state when timeout happens\n");
  248. ctx->state = curr_state;
  249. }
  250. static void gsi_handle_ch_ctrl(int ee)
  251. {
  252. uint32_t ch;
  253. int i, k, max_k;
  254. uint32_t ch_hdl;
  255. struct gsihal_reg_ch_k_cntxt_0 ch_k_cntxt_0;
  256. struct gsi_chan_ctx *ctx;
  257. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  258. max_k = gsihal_get_bit_map_array_size();
  259. for (k = 0; k < max_k; k++) {
  260. ch = gsihal_read_reg_nk(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_k, ee, k);
  261. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_CLR_k, ee, k, ch);
  262. GSIDBG("ch %x\n", ch);
  263. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  264. if ((1 << i) & ch) {
  265. ch_hdl = i + (GSI_STTS_REG_BITS * k);
  266. if (ch_hdl >= gsi_ctx->max_ch ||
  267. ch_hdl >= GSI_CHAN_MAX) {
  268. GSIERR("invalid channel %d\n",
  269. ch_hdl);
  270. break;
  271. }
  272. ctx = &gsi_ctx->chan[ch_hdl];
  273. gsihal_read_reg_nk_fields(GSI_EE_n_GSI_CH_k_CNTXT_0,
  274. ee, ch_hdl, &ch_k_cntxt_0);
  275. ctx->state = ch_k_cntxt_0.chstate;
  276. GSIDBG("ch %u state updated to %u\n",
  277. ch_hdl, ctx->state);
  278. complete(&ctx->compl);
  279. gsi_ctx->ch_dbg[ch_hdl].cmd_completed++;
  280. }
  281. }
  282. }
  283. } else {
  284. ch = gsihal_read_reg_n(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ, ee);
  285. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_GSI_CH_IRQ_CLR, ee, ch);
  286. GSIDBG("ch %x\n", ch);
  287. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  288. if ((1 << i) & ch) {
  289. if (i >= gsi_ctx->max_ch ||
  290. i >= GSI_CHAN_MAX) {
  291. GSIERR("invalid channel %d\n", i);
  292. break;
  293. }
  294. ctx = &gsi_ctx->chan[i];
  295. gsihal_read_reg_nk_fields(GSI_EE_n_GSI_CH_k_CNTXT_0,
  296. ee, i, &ch_k_cntxt_0);
  297. ctx->state = ch_k_cntxt_0.chstate;
  298. GSIDBG("ch %u state updated to %u\n", i,
  299. ctx->state);
  300. complete(&ctx->compl);
  301. gsi_ctx->ch_dbg[i].cmd_completed++;
  302. }
  303. }
  304. }
  305. }
  306. static void gsi_handle_ev_ctrl(int ee)
  307. {
  308. uint32_t ch;
  309. int i, k;
  310. uint32_t evt_hdl, max_k;
  311. struct gsi_evt_ctx *ctx;
  312. struct gsihal_reg_ev_ch_k_cntxt_0 ev_ch_k_cntxt_0;
  313. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  314. max_k = gsihal_get_bit_map_array_size();
  315. for (k = 0; k < max_k; k++) {
  316. ch = gsihal_read_reg_nk(GSI_EE_n_CNTXT_SRC_EV_CH_IRQ_k, ee, k);
  317. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_EV_CH_IRQ_CLR_k, ee, k, ch);
  318. GSIDBG("ev %x\n", ch);
  319. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  320. if ((1 << i) & ch) {
  321. evt_hdl = i + (GSI_STTS_REG_BITS * k);
  322. if (evt_hdl >= gsi_ctx->max_ev ||
  323. evt_hdl >= GSI_EVT_RING_MAX) {
  324. GSIERR("invalid event %d\n",
  325. evt_hdl);
  326. break;
  327. }
  328. ctx = &gsi_ctx->evtr[evt_hdl];
  329. gsihal_read_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_0,
  330. ee, evt_hdl, &ev_ch_k_cntxt_0);
  331. ctx->state = ev_ch_k_cntxt_0.chstate;
  332. GSIDBG("evt %u state updated to %u\n",
  333. evt_hdl, ctx->state);
  334. complete(&ctx->compl);
  335. }
  336. }
  337. }
  338. } else {
  339. ch = gsihal_read_reg_n(GSI_EE_n_CNTXT_SRC_EV_CH_IRQ, ee);
  340. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_EV_CH_IRQ_CLR, ee, ch);
  341. GSIDBG("ev %x\n", ch);
  342. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  343. if ((1 << i) & ch) {
  344. if (i >= gsi_ctx->max_ev ||
  345. i >= GSI_EVT_RING_MAX) {
  346. GSIERR("invalid event %d\n", i);
  347. break;
  348. }
  349. ctx = &gsi_ctx->evtr[i];
  350. gsihal_read_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_0,
  351. ee, i, &ev_ch_k_cntxt_0);
  352. ctx->state = ev_ch_k_cntxt_0.chstate;
  353. GSIDBG("evt %u state updated to %u\n", i,
  354. ctx->state);
  355. complete(&ctx->compl);
  356. }
  357. }
  358. }
  359. }
  360. static void gsi_handle_glob_err(uint32_t err)
  361. {
  362. struct gsi_log_err *log;
  363. struct gsi_chan_ctx *ch;
  364. struct gsi_evt_ctx *ev;
  365. struct gsi_chan_err_notify chan_notify;
  366. struct gsi_evt_err_notify evt_notify;
  367. struct gsi_per_notify per_notify;
  368. enum gsi_err_type err_type;
  369. struct gsihal_reg_ch_k_cntxt_0 ch_k_cntxt_0;
  370. log = (struct gsi_log_err *)&err;
  371. GSIERR("log err_type=%u ee=%u idx=%u\n", log->err_type, log->ee,
  372. log->virt_idx);
  373. GSIERR("code=%u arg1=%u arg2=%u arg3=%u\n", log->code, log->arg1,
  374. log->arg2, log->arg3);
  375. err_type = log->err_type;
  376. /*
  377. * These are errors thrown by hardware. We need
  378. * BUG_ON() to capture the hardware state right
  379. * when it is unexpected.
  380. */
  381. switch (err_type) {
  382. case GSI_ERR_TYPE_GLOB:
  383. per_notify.evt_id = GSI_PER_EVT_GLOB_ERROR;
  384. per_notify.user_data = gsi_ctx->per.user_data;
  385. per_notify.data.err_desc = err & 0xFFFF;
  386. gsi_ctx->per.notify_cb(&per_notify);
  387. break;
  388. case GSI_ERR_TYPE_CHAN:
  389. if (WARN_ON(log->virt_idx >= gsi_ctx->max_ch)) {
  390. GSIERR("Unexpected ch %d\n", log->virt_idx);
  391. return;
  392. }
  393. ch = &gsi_ctx->chan[log->virt_idx];
  394. chan_notify.chan_user_data = ch->props.chan_user_data;
  395. chan_notify.err_desc = err & 0xFFFF;
  396. if (log->code == GSI_INVALID_TRE_ERR) {
  397. if (log->ee != gsi_ctx->per.ee) {
  398. GSIERR("unexpected EE in event %d\n", log->ee);
  399. GSI_ASSERT();
  400. }
  401. gsihal_read_reg_nk_fields(GSI_EE_n_GSI_CH_k_CNTXT_0,
  402. gsi_ctx->per.ee, log->virt_idx, &ch_k_cntxt_0);
  403. ch->state = ch_k_cntxt_0.chstate;
  404. GSIDBG("ch %u state updated to %u\n", log->virt_idx,
  405. ch->state);
  406. ch->stats.invalid_tre_error++;
  407. if (ch->state == GSI_CHAN_STATE_ERROR) {
  408. GSIERR("Unexpected channel state %d\n",
  409. ch->state);
  410. GSI_ASSERT();
  411. }
  412. chan_notify.evt_id = GSI_CHAN_INVALID_TRE_ERR;
  413. } else if (log->code == GSI_OUT_OF_BUFFERS_ERR) {
  414. if (log->ee != gsi_ctx->per.ee) {
  415. GSIERR("unexpected EE in event %d\n", log->ee);
  416. GSI_ASSERT();
  417. }
  418. chan_notify.evt_id = GSI_CHAN_OUT_OF_BUFFERS_ERR;
  419. } else if (log->code == GSI_OUT_OF_RESOURCES_ERR) {
  420. if (log->ee != gsi_ctx->per.ee) {
  421. GSIERR("unexpected EE in event %d\n", log->ee);
  422. GSI_ASSERT();
  423. }
  424. chan_notify.evt_id = GSI_CHAN_OUT_OF_RESOURCES_ERR;
  425. complete(&ch->compl);
  426. } else if (log->code == GSI_UNSUPPORTED_INTER_EE_OP_ERR) {
  427. chan_notify.evt_id =
  428. GSI_CHAN_UNSUPPORTED_INTER_EE_OP_ERR;
  429. } else if (log->code == GSI_NON_ALLOCATED_EVT_ACCESS_ERR) {
  430. if (log->ee != gsi_ctx->per.ee) {
  431. GSIERR("unexpected EE in event %d\n", log->ee);
  432. GSI_ASSERT();
  433. }
  434. chan_notify.evt_id =
  435. GSI_CHAN_NON_ALLOCATED_EVT_ACCESS_ERR;
  436. } else if (log->code == GSI_HWO_1_ERR) {
  437. if (log->ee != gsi_ctx->per.ee) {
  438. GSIERR("unexpected EE in event %d\n", log->ee);
  439. GSI_ASSERT();
  440. }
  441. chan_notify.evt_id = GSI_CHAN_HWO_1_ERR;
  442. } else {
  443. GSIERR("unexpected event log code %d\n", log->code);
  444. GSI_ASSERT();
  445. }
  446. ch->props.err_cb(&chan_notify);
  447. break;
  448. case GSI_ERR_TYPE_EVT:
  449. if (WARN_ON(log->virt_idx >= gsi_ctx->max_ev)) {
  450. GSIERR("Unexpected ev %d\n", log->virt_idx);
  451. return;
  452. }
  453. ev = &gsi_ctx->evtr[log->virt_idx];
  454. evt_notify.user_data = ev->props.user_data;
  455. evt_notify.err_desc = err & 0xFFFF;
  456. if (log->code == GSI_OUT_OF_BUFFERS_ERR) {
  457. if (log->ee != gsi_ctx->per.ee) {
  458. GSIERR("unexpected EE in event %d\n", log->ee);
  459. GSI_ASSERT();
  460. }
  461. evt_notify.evt_id = GSI_EVT_OUT_OF_BUFFERS_ERR;
  462. } else if (log->code == GSI_OUT_OF_RESOURCES_ERR) {
  463. if (log->ee != gsi_ctx->per.ee) {
  464. GSIERR("unexpected EE in event %d\n", log->ee);
  465. GSI_ASSERT();
  466. }
  467. evt_notify.evt_id = GSI_EVT_OUT_OF_RESOURCES_ERR;
  468. complete(&ev->compl);
  469. } else if (log->code == GSI_UNSUPPORTED_INTER_EE_OP_ERR) {
  470. evt_notify.evt_id = GSI_EVT_UNSUPPORTED_INTER_EE_OP_ERR;
  471. } else if (log->code == GSI_EVT_RING_EMPTY_ERR) {
  472. if (log->ee != gsi_ctx->per.ee) {
  473. GSIERR("unexpected EE in event %d\n", log->ee);
  474. GSI_ASSERT();
  475. }
  476. evt_notify.evt_id = GSI_EVT_EVT_RING_EMPTY_ERR;
  477. } else {
  478. GSIERR("unexpected event log code %d\n", log->code);
  479. GSI_ASSERT();
  480. }
  481. ev->props.err_cb(&evt_notify);
  482. break;
  483. }
  484. }
  485. static void gsi_handle_gp_int1(void)
  486. {
  487. complete(&gsi_ctx->gen_ee_cmd_compl);
  488. }
  489. static void gsi_handle_glob_ee(int ee)
  490. {
  491. uint32_t val;
  492. uint32_t err;
  493. struct gsi_per_notify notify;
  494. uint32_t clr = ~0;
  495. struct gsihal_reg_cntxt_glob_irq_stts cntxt_glob_irq_stts;
  496. val = gsihal_read_reg_n_fields(GSI_EE_n_CNTXT_GLOB_IRQ_STTS,
  497. ee, &cntxt_glob_irq_stts);
  498. notify.user_data = gsi_ctx->per.user_data;
  499. if(cntxt_glob_irq_stts.error_int) {
  500. err = gsihal_read_reg_n(GSI_EE_n_ERROR_LOG, ee);
  501. if (gsi_ctx->per.ver >= GSI_VER_1_2)
  502. gsihal_write_reg_n(GSI_EE_n_ERROR_LOG, ee, 0);
  503. gsihal_write_reg_n(GSI_EE_n_ERROR_LOG_CLR, ee, clr);
  504. gsi_handle_glob_err(err);
  505. }
  506. if (cntxt_glob_irq_stts.gp_int1)
  507. gsi_handle_gp_int1();
  508. if (cntxt_glob_irq_stts.gp_int2) {
  509. notify.evt_id = GSI_PER_EVT_GLOB_GP2;
  510. gsi_ctx->per.notify_cb(&notify);
  511. }
  512. if (cntxt_glob_irq_stts.gp_int3) {
  513. notify.evt_id = GSI_PER_EVT_GLOB_GP3;
  514. gsi_ctx->per.notify_cb(&notify);
  515. }
  516. gsihal_write_reg_n(GSI_EE_n_CNTXT_GLOB_IRQ_CLR, ee, val);
  517. }
  518. static void gsi_incr_ring_wp(struct gsi_ring_ctx *ctx)
  519. {
  520. ctx->wp_local += ctx->elem_sz;
  521. if (ctx->wp_local == ctx->end)
  522. ctx->wp_local = ctx->base;
  523. }
  524. static void gsi_incr_ring_rp(struct gsi_ring_ctx *ctx)
  525. {
  526. ctx->rp_local += ctx->elem_sz;
  527. if (ctx->rp_local == ctx->end)
  528. ctx->rp_local = ctx->base;
  529. }
  530. uint16_t gsi_find_idx_from_addr(struct gsi_ring_ctx *ctx, uint64_t addr)
  531. {
  532. WARN_ON(addr < ctx->base || addr >= ctx->end);
  533. return (uint32_t)(addr - ctx->base) / ctx->elem_sz;
  534. }
  535. static uint16_t gsi_get_complete_num(struct gsi_ring_ctx *ctx, uint64_t addr1,
  536. uint64_t addr2)
  537. {
  538. uint32_t addr_diff;
  539. GSIDBG_LOW("gsi base addr 0x%llx end addr 0x%llx\n",
  540. ctx->base, ctx->end);
  541. if (addr1 < ctx->base || addr1 >= ctx->end) {
  542. GSIERR("address = 0x%llx not in range\n", addr1);
  543. GSI_ASSERT();
  544. }
  545. if (addr2 < ctx->base || addr2 >= ctx->end) {
  546. GSIERR("address = 0x%llx not in range\n", addr2);
  547. GSI_ASSERT();
  548. }
  549. addr_diff = (uint32_t)(addr2 - addr1);
  550. if (addr1 < addr2)
  551. return addr_diff / ctx->elem_sz;
  552. else
  553. return (addr_diff + ctx->len) / ctx->elem_sz;
  554. }
  555. static void gsi_process_chan(struct gsi_xfer_compl_evt *evt,
  556. struct gsi_chan_xfer_notify *notify, bool callback)
  557. {
  558. uint32_t ch_id;
  559. struct gsi_chan_ctx *ch_ctx;
  560. uint16_t rp_idx;
  561. uint64_t rp;
  562. ch_id = evt->chid;
  563. if (WARN_ON(ch_id >= gsi_ctx->max_ch)) {
  564. GSIERR("Unexpected ch %d\n", ch_id);
  565. return;
  566. }
  567. ch_ctx = &gsi_ctx->chan[ch_id];
  568. if (WARN_ON(ch_ctx->props.prot != GSI_CHAN_PROT_GPI &&
  569. ch_ctx->props.prot != GSI_CHAN_PROT_GCI))
  570. return;
  571. if (evt->type != GSI_XFER_COMPL_TYPE_GCI) {
  572. rp = evt->xfer_ptr;
  573. if (ch_ctx->ring.rp_local != rp) {
  574. ch_ctx->stats.completed +=
  575. gsi_get_complete_num(&ch_ctx->ring,
  576. ch_ctx->ring.rp_local, rp);
  577. ch_ctx->ring.rp_local = rp;
  578. }
  579. /*
  580. * Increment RP local only in polling context to avoid
  581. * sys len mismatch.
  582. */
  583. if (!callback || (ch_ctx->props.dir == GSI_CHAN_DIR_TO_GSI &&
  584. !ch_ctx->props.tx_poll))
  585. /* the element at RP is also processed */
  586. gsi_incr_ring_rp(&ch_ctx->ring);
  587. ch_ctx->ring.rp = ch_ctx->ring.rp_local;
  588. rp_idx = gsi_find_idx_from_addr(&ch_ctx->ring, rp);
  589. notify->veid = GSI_VEID_DEFAULT;
  590. } else {
  591. rp_idx = evt->cookie;
  592. notify->veid = evt->veid;
  593. }
  594. WARN_ON(!ch_ctx->user_data[rp_idx].valid);
  595. notify->xfer_user_data = ch_ctx->user_data[rp_idx].p;
  596. /*
  597. * In suspend just before stopping the channel possible to receive
  598. * the IEOB interrupt and xfer pointer will not be processed in this
  599. * mode and moving channel poll mode. In resume after starting the
  600. * channel will receive the IEOB interrupt and xfer pointer will be
  601. * overwritten. To avoid this process all data in polling context.
  602. */
  603. if (!callback || (ch_ctx->props.dir == GSI_CHAN_DIR_TO_GSI &&
  604. !ch_ctx->props.tx_poll)) {
  605. ch_ctx->stats.completed++;
  606. ch_ctx->user_data[rp_idx].valid = false;
  607. }
  608. notify->chan_user_data = ch_ctx->props.chan_user_data;
  609. notify->evt_id = evt->code;
  610. notify->bytes_xfered = evt->len;
  611. if (callback) {
  612. if (atomic_read(&ch_ctx->poll_mode)) {
  613. GSIERR("Calling client callback in polling mode\n");
  614. WARN_ON(1);
  615. }
  616. ch_ctx->props.xfer_cb(notify);
  617. }
  618. }
  619. static void gsi_process_evt_re(struct gsi_evt_ctx *ctx,
  620. struct gsi_chan_xfer_notify *notify, bool callback)
  621. {
  622. struct gsi_xfer_compl_evt *evt;
  623. struct gsi_chan_ctx *ch_ctx;
  624. evt = (struct gsi_xfer_compl_evt *)(ctx->ring.base_va +
  625. ctx->ring.rp_local - ctx->ring.base);
  626. gsi_process_chan(evt, notify, callback);
  627. /*
  628. * Increment RP local only in polling context to avoid
  629. * sys len mismatch.
  630. */
  631. ch_ctx = &gsi_ctx->chan[evt->chid];
  632. if (callback && (ch_ctx->props.dir == GSI_CHAN_DIR_FROM_GSI ||
  633. ch_ctx->props.tx_poll))
  634. return;
  635. gsi_incr_ring_rp(&ctx->ring);
  636. /* recycle this element */
  637. gsi_incr_ring_wp(&ctx->ring);
  638. ctx->stats.completed++;
  639. }
  640. static void gsi_ring_evt_doorbell(struct gsi_evt_ctx *ctx)
  641. {
  642. uint32_t val;
  643. ctx->ring.wp = ctx->ring.wp_local;
  644. val = GSI_LSB(ctx->ring.wp_local);
  645. gsihal_write_reg_nk(GSI_EE_n_EV_CH_k_DOORBELL_0,
  646. gsi_ctx->per.ee, ctx->id, val);
  647. }
  648. void gsi_ring_evt_doorbell_polling_mode(unsigned long chan_hdl) {
  649. struct gsi_evt_ctx *ctx;
  650. ctx = gsi_ctx->chan[chan_hdl].evtr;
  651. gsi_ring_evt_doorbell(ctx);
  652. }
  653. EXPORT_SYMBOL(gsi_ring_evt_doorbell_polling_mode);
  654. static void gsi_ring_chan_doorbell(struct gsi_chan_ctx *ctx)
  655. {
  656. uint32_t val;
  657. /*
  658. * allocate new events for this channel first
  659. * before submitting the new TREs.
  660. * for TO_GSI channels the event ring doorbell is rang as part of
  661. * interrupt handling.
  662. */
  663. if (ctx->evtr && ctx->props.dir == GSI_CHAN_DIR_FROM_GSI)
  664. gsi_ring_evt_doorbell(ctx->evtr);
  665. ctx->ring.wp = ctx->ring.wp_local;
  666. val = GSI_LSB(ctx->ring.wp_local);
  667. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_DOORBELL_0,
  668. gsi_ctx->per.ee, ctx->props.ch_id, val);
  669. }
  670. static bool check_channel_polling(struct gsi_evt_ctx* ctx) {
  671. /* For shared event rings both channels will be marked */
  672. return atomic_read(&ctx->chan[0]->poll_mode);
  673. }
  674. static void gsi_handle_ieob(int ee)
  675. {
  676. uint32_t ch, evt_hdl;
  677. int i, k, max_k;
  678. uint64_t rp;
  679. struct gsi_evt_ctx *ctx;
  680. struct gsi_chan_xfer_notify notify;
  681. unsigned long flags;
  682. unsigned long cntr;
  683. uint32_t msk;
  684. bool empty;
  685. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  686. max_k = gsihal_get_bit_map_array_size();
  687. for (k = 0; k < max_k; k++) {
  688. ch = gsihal_read_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_k, ee, k);
  689. msk = gsihal_read_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_MSK_k, ee, k);
  690. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR_k, ee, k, ch & msk);
  691. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  692. if ((1 << i) & ch & msk) {
  693. evt_hdl = i + (GSI_STTS_REG_BITS * k);
  694. if (evt_hdl >= gsi_ctx->max_ev ||
  695. evt_hdl >= GSI_EVT_RING_MAX) {
  696. GSIERR("invalid event %d\n",
  697. evt_hdl);
  698. break;
  699. }
  700. ctx = &gsi_ctx->evtr[evt_hdl];
  701. /*
  702. * Don't handle MSI interrupts, only handle IEOB
  703. * IRQs
  704. */
  705. if (ctx->props.intr == GSI_INTR_MSI)
  706. continue;
  707. if (ctx->props.intf !=
  708. GSI_EVT_CHTYPE_GPI_EV) {
  709. GSIERR("Unexpected irq intf %d\n",
  710. ctx->props.intf);
  711. GSI_ASSERT();
  712. }
  713. spin_lock_irqsave(&ctx->ring.slock,
  714. flags);
  715. check_again_v3_0:
  716. cntr = 0;
  717. empty = true;
  718. rp = ctx->props.gsi_read_event_ring_rp(
  719. &ctx->props, ctx->id, ee);
  720. rp |= ctx->ring.rp & GSI_MSB_MASK;
  721. ctx->ring.rp = rp;
  722. while (ctx->ring.rp_local != rp) {
  723. ++cntr;
  724. if (check_channel_polling(ctx)) {
  725. cntr = 0;
  726. break;
  727. }
  728. gsi_process_evt_re(ctx, &notify,
  729. true);
  730. empty = false;
  731. }
  732. if (!empty)
  733. gsi_ring_evt_doorbell(ctx);
  734. if (cntr != 0)
  735. goto check_again_v3_0;
  736. spin_unlock_irqrestore(&ctx->ring.slock,
  737. flags);
  738. }
  739. }
  740. }
  741. } else {
  742. ch = gsihal_read_reg_n(GSI_EE_n_CNTXT_SRC_IEOB_IRQ, ee);
  743. msk = gsihal_read_reg_n(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_MSK, ee);
  744. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR, ee, ch & msk);
  745. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  746. if ((1 << i) & ch & msk) {
  747. if (i >= gsi_ctx->max_ev ||
  748. i >= GSI_EVT_RING_MAX) {
  749. GSIERR("invalid event %d\n", i);
  750. break;
  751. }
  752. ctx = &gsi_ctx->evtr[i];
  753. /*
  754. * Don't handle MSI interrupts, only handle IEOB
  755. * IRQs
  756. */
  757. if (ctx->props.intr == GSI_INTR_MSI)
  758. continue;
  759. if (ctx->props.intf != GSI_EVT_CHTYPE_GPI_EV) {
  760. GSIERR("Unexpected irq intf %d\n",
  761. ctx->props.intf);
  762. GSI_ASSERT();
  763. }
  764. spin_lock_irqsave(&ctx->ring.slock, flags);
  765. check_again:
  766. cntr = 0;
  767. empty = true;
  768. rp = ctx->props.gsi_read_event_ring_rp(
  769. &ctx->props, ctx->id, ee);
  770. rp |= ctx->ring.rp & GSI_MSB_MASK;
  771. ctx->ring.rp = rp;
  772. while (ctx->ring.rp_local != rp) {
  773. ++cntr;
  774. if (check_channel_polling(ctx)) {
  775. cntr = 0;
  776. break;
  777. }
  778. gsi_process_evt_re(ctx, &notify, true);
  779. empty = false;
  780. }
  781. if (!empty)
  782. gsi_ring_evt_doorbell(ctx);
  783. if (cntr != 0)
  784. goto check_again;
  785. spin_unlock_irqrestore(&ctx->ring.slock, flags);
  786. }
  787. }
  788. }
  789. }
  790. static void gsi_handle_inter_ee_ch_ctrl(int ee)
  791. {
  792. uint32_t ch, ch_hdl;
  793. int i, k, max_k;
  794. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  795. max_k = gsihal_get_bit_map_array_size();
  796. for (k = 0; k < max_k; k++) {
  797. ch = gsihal_read_reg_nk(GSI_INTER_EE_n_SRC_GSI_CH_IRQ_k, ee, k);
  798. gsihal_write_reg_nk(GSI_INTER_EE_n_SRC_GSI_CH_IRQ_k, ee, k, ch);
  799. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  800. if ((1 << i) & ch) {
  801. ch_hdl = i + (GSI_STTS_REG_BITS * k);
  802. /* not currently expected */
  803. GSIERR("ch %u was inter-EE changed\n", ch_hdl);
  804. }
  805. }
  806. }
  807. } else {
  808. ch = gsihal_read_reg_n(GSI_INTER_EE_n_SRC_GSI_CH_IRQ, ee);
  809. gsihal_write_reg_n(GSI_INTER_EE_n_SRC_GSI_CH_IRQ, ee, ch);
  810. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  811. if ((1 << i) & ch) {
  812. /* not currently expected */
  813. GSIERR("ch %u was inter-EE changed\n", i);
  814. }
  815. }
  816. }
  817. }
  818. static void gsi_handle_inter_ee_ev_ctrl(int ee)
  819. {
  820. uint32_t ch, evt_hdl;
  821. int i, k, max_k;
  822. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  823. max_k = gsihal_get_bit_map_array_size();
  824. for (k = 0; k < max_k; k++) {
  825. ch = gsihal_read_reg_nk(GSI_INTER_EE_n_SRC_EV_CH_IRQ_k, ee, k);
  826. gsihal_write_reg_nk(GSI_INTER_EE_n_SRC_EV_CH_IRQ_CLR_k, ee, k, ch);
  827. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  828. if ((1 << i) & ch) {
  829. evt_hdl = i + (GSI_STTS_REG_BITS * k);
  830. /* not currently expected */
  831. GSIERR("evt %u was inter-EE changed\n",
  832. evt_hdl);
  833. }
  834. }
  835. }
  836. } else {
  837. ch = gsihal_read_reg_n(GSI_INTER_EE_n_SRC_EV_CH_IRQ, ee);
  838. gsihal_write_reg_n(GSI_INTER_EE_n_SRC_EV_CH_IRQ_CLR, ee, ch);
  839. for (i = 0; i < GSI_STTS_REG_BITS; i++) {
  840. if ((1 << i) & ch) {
  841. /* not currently expected */
  842. GSIERR("evt %u was inter-EE changed\n", i);
  843. }
  844. }
  845. }
  846. }
  847. static void gsi_handle_general(int ee)
  848. {
  849. uint32_t val;
  850. struct gsi_per_notify notify;
  851. struct gsihal_reg_cntxt_gsi_irq_stts gsi_irq_stts;
  852. val = gsihal_read_reg_n_fields(GSI_EE_n_CNTXT_GSI_IRQ_STTS,
  853. ee, &gsi_irq_stts);
  854. notify.user_data = gsi_ctx->per.user_data;
  855. if (gsi_irq_stts.gsi_mcs_stack_ovrflow)
  856. notify.evt_id = GSI_PER_EVT_GENERAL_MCS_STACK_OVERFLOW;
  857. if (gsi_irq_stts.gsi_cmd_fifo_ovrflow)
  858. notify.evt_id = GSI_PER_EVT_GENERAL_CMD_FIFO_OVERFLOW;
  859. if (gsi_irq_stts.gsi_bus_error)
  860. notify.evt_id = GSI_PER_EVT_GENERAL_BUS_ERROR;
  861. if (gsi_irq_stts.gsi_break_point)
  862. notify.evt_id = GSI_PER_EVT_GENERAL_BREAK_POINT;
  863. if (gsi_ctx->per.notify_cb)
  864. gsi_ctx->per.notify_cb(&notify);
  865. gsihal_write_reg_n(GSI_EE_n_CNTXT_GSI_IRQ_CLR, ee, val);
  866. }
  867. static void gsi_handle_irq(void)
  868. {
  869. uint32_t type;
  870. int ee = gsi_ctx->per.ee;
  871. int index;
  872. struct gsihal_reg_ctx_type_irq ctx_type_irq;
  873. while (1) {
  874. if (!gsi_ctx->per.clk_status_cb())
  875. break;
  876. type = gsihal_read_reg_n_fields(GSI_EE_n_CNTXT_TYPE_IRQ,
  877. ee, &ctx_type_irq);
  878. if (!type)
  879. break;
  880. GSIDBG_LOW("type 0x%x\n", type);
  881. index = gsi_ctx->gsi_isr_cache_index;
  882. gsi_ctx->gsi_isr_cache[index].timestamp =
  883. sched_clock();
  884. gsi_ctx->gsi_isr_cache[index].qtimer =
  885. __arch_counter_get_cntvct();
  886. gsi_ctx->gsi_isr_cache[index].interrupt_type = type;
  887. gsi_ctx->gsi_isr_cache_index++;
  888. if (gsi_ctx->gsi_isr_cache_index == GSI_ISR_CACHE_MAX)
  889. gsi_ctx->gsi_isr_cache_index = 0;
  890. if(ctx_type_irq.ch_ctrl) {
  891. gsi_handle_ch_ctrl(ee);
  892. break;
  893. }
  894. if (ctx_type_irq.ev_ctrl) {
  895. gsi_handle_ev_ctrl(ee);
  896. break;
  897. }
  898. if (ctx_type_irq.glob_ee)
  899. gsi_handle_glob_ee(ee);
  900. if (ctx_type_irq.ieob)
  901. gsi_handle_ieob(ee);
  902. if (ctx_type_irq.inter_ee_ch_ctrl)
  903. gsi_handle_inter_ee_ch_ctrl(ee);
  904. if (ctx_type_irq.inter_ee_ev_ctrl)
  905. gsi_handle_inter_ee_ev_ctrl(ee);
  906. if (ctx_type_irq.general)
  907. gsi_handle_general(ee);
  908. }
  909. }
  910. static irqreturn_t gsi_isr(int irq, void *ctxt)
  911. {
  912. if (gsi_ctx->per.req_clk_cb) {
  913. bool granted = false;
  914. gsi_ctx->per.req_clk_cb(gsi_ctx->per.user_data, &granted);
  915. if (granted) {
  916. gsi_handle_irq();
  917. gsi_ctx->per.rel_clk_cb(gsi_ctx->per.user_data);
  918. }
  919. } else if (!gsi_ctx->per.clk_status_cb()) {
  920. /* we only want to capture the gsi isr storm here */
  921. if (atomic_read(&gsi_ctx->num_unclock_irq) ==
  922. GSI_IRQ_STORM_THR)
  923. gsi_ctx->per.enable_clk_bug_on();
  924. atomic_inc(&gsi_ctx->num_unclock_irq);
  925. return IRQ_HANDLED;
  926. } else {
  927. atomic_set(&gsi_ctx->num_unclock_irq, 0);
  928. gsi_handle_irq();
  929. }
  930. return IRQ_HANDLED;
  931. }
  932. static uint32_t gsi_get_max_channels(enum gsi_ver ver)
  933. {
  934. uint32_t max_ch = 0;
  935. struct gsihal_reg_hw_param hw_param;
  936. struct gsihal_reg_hw_param2 hw_param2;
  937. switch (ver) {
  938. case GSI_VER_ERR:
  939. case GSI_VER_MAX:
  940. GSIERR("GSI version is not supported %d\n", ver);
  941. WARN_ON(1);
  942. break;
  943. case GSI_VER_1_0:
  944. gsihal_read_reg_n_fields(GSI_EE_n_GSI_HW_PARAM,
  945. gsi_ctx->per.ee, &hw_param);
  946. max_ch = hw_param.gsi_ch_num;
  947. break;
  948. case GSI_VER_1_2:
  949. gsihal_read_reg_n_fields(GSI_EE_n_GSI_HW_PARAM_0,
  950. gsi_ctx->per.ee, &hw_param);
  951. max_ch = hw_param.gsi_ch_num;
  952. break;
  953. default:
  954. gsihal_read_reg_n_fields(GSI_EE_n_GSI_HW_PARAM_2,
  955. gsi_ctx->per.ee, &hw_param2);
  956. max_ch = hw_param2.gsi_num_ch_per_ee;
  957. break;
  958. }
  959. GSIDBG("max channels %d\n", max_ch);
  960. return max_ch;
  961. }
  962. static uint32_t gsi_get_max_event_rings(enum gsi_ver ver)
  963. {
  964. uint32_t max_ev = 0;
  965. struct gsihal_reg_hw_param hw_param;
  966. struct gsihal_reg_hw_param2 hw_param2;
  967. struct gsihal_reg_hw_param4 hw_param4;
  968. switch (ver) {
  969. case GSI_VER_ERR:
  970. case GSI_VER_MAX:
  971. GSIERR("GSI version is not supported %d\n", ver);
  972. WARN_ON(1);
  973. break;
  974. case GSI_VER_1_0:
  975. gsihal_read_reg_n_fields(GSI_EE_n_GSI_HW_PARAM,
  976. gsi_ctx->per.ee, &hw_param);
  977. max_ev = hw_param.gsi_ev_ch_num;
  978. break;
  979. case GSI_VER_1_2:
  980. gsihal_read_reg_n_fields(GSI_EE_n_GSI_HW_PARAM_0,
  981. gsi_ctx->per.ee, &hw_param);
  982. max_ev = hw_param.gsi_ev_ch_num;
  983. break;
  984. case GSI_VER_3_0:
  985. gsihal_read_reg_n_fields(GSI_EE_n_GSI_HW_PARAM_4,
  986. gsi_ctx->per.ee, &hw_param4);
  987. max_ev = hw_param4.gsi_num_ev_per_ee;
  988. break;
  989. default:
  990. gsihal_read_reg_n_fields(GSI_EE_n_GSI_HW_PARAM_2,
  991. gsi_ctx->per.ee, &hw_param2);
  992. max_ev = hw_param2.gsi_num_ev_per_ee;
  993. break;
  994. }
  995. GSIDBG("max event rings %d\n", max_ev);
  996. return max_ev;
  997. }
  998. int gsi_complete_clk_grant(unsigned long dev_hdl)
  999. {
  1000. unsigned long flags;
  1001. if (!gsi_ctx) {
  1002. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1003. return -GSI_STATUS_NODEV;
  1004. }
  1005. if (!gsi_ctx->per_registered) {
  1006. GSIERR("no client registered\n");
  1007. return -GSI_STATUS_INVALID_PARAMS;
  1008. }
  1009. if (dev_hdl != (uintptr_t)gsi_ctx) {
  1010. GSIERR("bad params dev_hdl=0x%lx gsi_ctx=0x%pK\n", dev_hdl,
  1011. gsi_ctx);
  1012. return -GSI_STATUS_INVALID_PARAMS;
  1013. }
  1014. spin_lock_irqsave(&gsi_ctx->slock, flags);
  1015. gsi_handle_irq();
  1016. gsi_ctx->per.rel_clk_cb(gsi_ctx->per.user_data);
  1017. spin_unlock_irqrestore(&gsi_ctx->slock, flags);
  1018. return GSI_STATUS_SUCCESS;
  1019. }
  1020. EXPORT_SYMBOL(gsi_complete_clk_grant);
  1021. int gsi_map_base(phys_addr_t gsi_base_addr, u32 gsi_size, enum gsi_ver ver)
  1022. {
  1023. if (!gsi_ctx) {
  1024. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1025. return -GSI_STATUS_NODEV;
  1026. }
  1027. gsi_ctx->base = devm_ioremap(
  1028. gsi_ctx->dev, gsi_base_addr, gsi_size);
  1029. if (!gsi_ctx->base) {
  1030. GSIERR("failed to map access to GSI HW\n");
  1031. return -GSI_STATUS_RES_ALLOC_FAILURE;
  1032. }
  1033. GSIDBG("GSI base(%pa) mapped to (%pK) with len (0x%x)\n",
  1034. &gsi_base_addr,
  1035. gsi_ctx->base,
  1036. gsi_size);
  1037. /* initialize HAL before accessing any register */
  1038. gsihal_init(ver, gsi_ctx->base);
  1039. return 0;
  1040. }
  1041. EXPORT_SYMBOL(gsi_map_base);
  1042. int gsi_unmap_base(void)
  1043. {
  1044. if (!gsi_ctx) {
  1045. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1046. return -GSI_STATUS_NODEV;
  1047. }
  1048. if (!gsi_ctx->base) {
  1049. GSIERR("access to GSI HW has not been mapped\n");
  1050. return -GSI_STATUS_INVALID_PARAMS;
  1051. }
  1052. devm_iounmap(gsi_ctx->dev, gsi_ctx->base);
  1053. gsi_ctx->base = NULL;
  1054. return 0;
  1055. }
  1056. EXPORT_SYMBOL(gsi_unmap_base);
  1057. int gsi_register_device(struct gsi_per_props *props, unsigned long *dev_hdl)
  1058. {
  1059. int res;
  1060. struct gsihal_reg_gsi_status gsi_status;
  1061. struct gsihal_reg_gsi_ee_n_cntxt_gsi_irq gen_irq;
  1062. if (!gsi_ctx) {
  1063. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1064. return -GSI_STATUS_NODEV;
  1065. }
  1066. if (!props || !dev_hdl) {
  1067. GSIERR("bad params props=%pK dev_hdl=%pK\n", props, dev_hdl);
  1068. return -GSI_STATUS_INVALID_PARAMS;
  1069. }
  1070. if (props->ver <= GSI_VER_ERR || props->ver >= GSI_VER_MAX) {
  1071. GSIERR("bad params gsi_ver=%d\n", props->ver);
  1072. return -GSI_STATUS_INVALID_PARAMS;
  1073. }
  1074. if (!props->notify_cb) {
  1075. GSIERR("notify callback must be provided\n");
  1076. return -GSI_STATUS_INVALID_PARAMS;
  1077. }
  1078. if (props->req_clk_cb && !props->rel_clk_cb) {
  1079. GSIERR("rel callback must be provided\n");
  1080. return -GSI_STATUS_INVALID_PARAMS;
  1081. }
  1082. if (gsi_ctx->per_registered) {
  1083. GSIERR("per already registered\n");
  1084. return -GSI_STATUS_UNSUPPORTED_OP;
  1085. }
  1086. spin_lock_init(&gsi_ctx->slock);
  1087. gsi_ctx->per = *props;
  1088. if (props->intr == GSI_INTR_IRQ) {
  1089. if (!props->irq) {
  1090. GSIERR("bad irq specified %u\n", props->irq);
  1091. return -GSI_STATUS_INVALID_PARAMS;
  1092. }
  1093. /*
  1094. * On a real UE, there are two separate interrupt
  1095. * vectors that get directed toward the GSI/IPA
  1096. * drivers. They are handled by gsi_isr() and
  1097. * (ipa_isr() or ipa3_isr()) respectively. In the
  1098. * emulation environment, this is not the case;
  1099. * instead, interrupt vectors are routed to the
  1100. * emualation hardware's interrupt controller, which
  1101. * in turn, forwards a single interrupt to the GSI/IPA
  1102. * driver. When the new interrupt vector is received,
  1103. * the driver needs to probe the interrupt
  1104. * controller's registers so see if one, the other, or
  1105. * both interrupts have occurred. Given the above, we
  1106. * now need to handle both situations, namely: the
  1107. * emulator's and the real UE.
  1108. */
  1109. if (running_emulation) {
  1110. /*
  1111. * New scheme involving the emulator's
  1112. * interrupt controller.
  1113. */
  1114. res = devm_request_threaded_irq(
  1115. gsi_ctx->dev,
  1116. props->irq,
  1117. /* top half handler to follow */
  1118. emulator_hard_irq_isr,
  1119. /* threaded bottom half handler to follow */
  1120. emulator_soft_irq_isr,
  1121. IRQF_SHARED,
  1122. "emulator_intcntrlr",
  1123. gsi_ctx);
  1124. } else {
  1125. /*
  1126. * Traditional scheme used on the real UE.
  1127. */
  1128. res = devm_request_irq(gsi_ctx->dev, props->irq,
  1129. gsi_isr,
  1130. props->req_clk_cb ? IRQF_TRIGGER_RISING :
  1131. IRQF_TRIGGER_HIGH,
  1132. "gsi",
  1133. gsi_ctx);
  1134. }
  1135. if (res) {
  1136. GSIERR(
  1137. "failed to register isr for %u\n",
  1138. props->irq);
  1139. return -GSI_STATUS_ERROR;
  1140. }
  1141. GSIDBG(
  1142. "succeeded to register isr for %u\n",
  1143. props->irq);
  1144. res = enable_irq_wake(props->irq);
  1145. if (res)
  1146. GSIERR("failed to enable wake irq %u\n", props->irq);
  1147. else
  1148. GSIERR("GSI irq is wake enabled %u\n", props->irq);
  1149. } else {
  1150. GSIERR("do not support interrupt type %u\n", props->intr);
  1151. return -GSI_STATUS_UNSUPPORTED_OP;
  1152. }
  1153. /*
  1154. * If base not previously mapped via gsi_map_base(), map it
  1155. * now...
  1156. */
  1157. if (!gsi_ctx->base) {
  1158. res = gsi_map_base(props->phys_addr, props->size, props->ver);
  1159. if (res)
  1160. return res;
  1161. }
  1162. if (running_emulation) {
  1163. GSIDBG("GSI SW ver register value 0x%x\n",
  1164. gsihal_read_reg_n(GSI_EE_n_GSI_SW_VERSION, 0));
  1165. gsi_ctx->intcntrlr_mem_size =
  1166. props->emulator_intcntrlr_size;
  1167. gsi_ctx->intcntrlr_base =
  1168. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0))
  1169. devm_ioremap(
  1170. #else
  1171. devm_ioremap_nocache(
  1172. #endif
  1173. gsi_ctx->dev,
  1174. props->emulator_intcntrlr_addr,
  1175. props->emulator_intcntrlr_size);
  1176. if (!gsi_ctx->intcntrlr_base) {
  1177. GSIERR(
  1178. "failed to remap emulator's interrupt controller HW\n");
  1179. gsi_unmap_base();
  1180. devm_free_irq(gsi_ctx->dev, props->irq, gsi_ctx);
  1181. return -GSI_STATUS_RES_ALLOC_FAILURE;
  1182. }
  1183. GSIDBG(
  1184. "Emulator's interrupt controller base(%pa) mapped to (%pK) with len (0x%lx)\n",
  1185. &(props->emulator_intcntrlr_addr),
  1186. gsi_ctx->intcntrlr_base,
  1187. props->emulator_intcntrlr_size);
  1188. gsi_ctx->intcntrlr_gsi_isr = gsi_isr;
  1189. gsi_ctx->intcntrlr_client_isr =
  1190. props->emulator_intcntrlr_client_isr;
  1191. }
  1192. gsi_ctx->per_registered = true;
  1193. mutex_init(&gsi_ctx->mlock);
  1194. atomic_set(&gsi_ctx->num_chan, 0);
  1195. atomic_set(&gsi_ctx->num_evt_ring, 0);
  1196. gsi_ctx->max_ch = gsi_get_max_channels(gsi_ctx->per.ver);
  1197. if (gsi_ctx->max_ch == 0) {
  1198. gsi_unmap_base();
  1199. if (running_emulation)
  1200. devm_iounmap(gsi_ctx->dev, gsi_ctx->intcntrlr_base);
  1201. gsi_ctx->base = gsi_ctx->intcntrlr_base = NULL;
  1202. devm_free_irq(gsi_ctx->dev, props->irq, gsi_ctx);
  1203. GSIERR("failed to get max channels\n");
  1204. return -GSI_STATUS_ERROR;
  1205. }
  1206. gsi_ctx->max_ev = gsi_get_max_event_rings(gsi_ctx->per.ver);
  1207. if (gsi_ctx->max_ev == 0) {
  1208. gsi_unmap_base();
  1209. if (running_emulation)
  1210. devm_iounmap(gsi_ctx->dev, gsi_ctx->intcntrlr_base);
  1211. gsi_ctx->base = gsi_ctx->intcntrlr_base = NULL;
  1212. devm_free_irq(gsi_ctx->dev, props->irq, gsi_ctx);
  1213. GSIERR("failed to get max event rings\n");
  1214. return -GSI_STATUS_ERROR;
  1215. }
  1216. if (gsi_ctx->max_ev > GSI_EVT_RING_MAX) {
  1217. GSIERR("max event rings are beyond absolute maximum\n");
  1218. return -GSI_STATUS_ERROR;
  1219. }
  1220. if (props->mhi_er_id_limits_valid &&
  1221. props->mhi_er_id_limits[0] > (gsi_ctx->max_ev - 1)) {
  1222. gsi_unmap_base();
  1223. if (running_emulation)
  1224. devm_iounmap(gsi_ctx->dev, gsi_ctx->intcntrlr_base);
  1225. gsi_ctx->base = gsi_ctx->intcntrlr_base = NULL;
  1226. devm_free_irq(gsi_ctx->dev, props->irq, gsi_ctx);
  1227. GSIERR("MHI event ring start id %u is beyond max %u\n",
  1228. props->mhi_er_id_limits[0], gsi_ctx->max_ev);
  1229. return -GSI_STATUS_ERROR;
  1230. }
  1231. gsi_ctx->evt_bmap = ~((1 << gsi_ctx->max_ev) - 1);
  1232. /* exclude reserved mhi events */
  1233. if (props->mhi_er_id_limits_valid)
  1234. gsi_ctx->evt_bmap |=
  1235. ((1 << (props->mhi_er_id_limits[1] + 1)) - 1) ^
  1236. ((1 << (props->mhi_er_id_limits[0])) - 1);
  1237. /*
  1238. * enable all interrupts but GSI_BREAK_POINT.
  1239. * Inter EE commands / interrupt are no supported.
  1240. */
  1241. __gsi_config_type_irq(props->ee, ~0, ~0);
  1242. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  1243. __gsi_config_all_ch_irq(props->ee, ~0, ~0);
  1244. __gsi_config_all_evt_irq(props->ee, ~0, ~0);
  1245. __gsi_config_all_ieob_irq(props->ee, ~0, ~0);
  1246. }
  1247. else {
  1248. __gsi_config_ch_irq(props->ee, ~0, ~0);
  1249. __gsi_config_evt_irq(props->ee, ~0, ~0);
  1250. __gsi_config_ieob_irq(props->ee, ~0, ~0);
  1251. }
  1252. __gsi_config_glob_irq(props->ee, ~0, ~0);
  1253. /*
  1254. * Disabling global INT1 interrupt by default and enable it
  1255. * onlt when sending the generic command.
  1256. */
  1257. __gsi_config_glob_irq(props->ee,
  1258. gsihal_get_glob_irq_en_gp_int1_mask(), 0);
  1259. gen_irq.gsi_mcs_stack_ovrflow = 1;
  1260. gen_irq.gsi_cmd_fifo_ovrflow = 1;
  1261. gen_irq.gsi_bus_error = 1;
  1262. gen_irq.gsi_break_point = 0;
  1263. gsihal_write_reg_n_fields(GSI_EE_n_CNTXT_GSI_IRQ_EN,
  1264. gsi_ctx->per.ee, &gen_irq);
  1265. gsihal_write_reg_n(GSI_EE_n_CNTXT_INTSET, gsi_ctx->per.ee, props->intr);
  1266. /* set GSI_TOP_EE_n_CNTXT_MSI_BASE_LSB/MSB to 0 */
  1267. if ((gsi_ctx->per.ver >= GSI_VER_2_0) &&
  1268. (props->intr != GSI_INTR_MSI)) {
  1269. gsihal_write_reg_n(
  1270. GSI_EE_n_CNTXT_MSI_BASE_LSB, gsi_ctx->per.ee, 0);
  1271. gsihal_write_reg_n(
  1272. GSI_EE_n_CNTXT_MSI_BASE_MSB, gsi_ctx->per.ee, 0);
  1273. }
  1274. gsihal_read_reg_n_fields(GSI_EE_n_GSI_STATUS,
  1275. gsi_ctx->per.ee, &gsi_status);
  1276. if (gsi_status.enabled)
  1277. gsi_ctx->enabled = true;
  1278. else
  1279. GSIERR("Manager EE has not enabled GSI, GSI un-usable\n");
  1280. if (gsi_ctx->per.ver >= GSI_VER_1_2)
  1281. gsihal_write_reg_n(GSI_EE_n_ERROR_LOG, gsi_ctx->per.ee, 0);
  1282. /* Reset to zero scratch_1 register*/
  1283. gsihal_write_reg_n(GSI_EE_n_CNTXT_SCRATCH_1, gsi_ctx->per.ee, 0);
  1284. if (running_emulation) {
  1285. /*
  1286. * Set up the emulator's interrupt controller...
  1287. */
  1288. res = setup_emulator_cntrlr(
  1289. gsi_ctx->intcntrlr_base, gsi_ctx->intcntrlr_mem_size);
  1290. if (res != 0) {
  1291. gsi_unmap_base();
  1292. devm_iounmap(gsi_ctx->dev, gsi_ctx->intcntrlr_base);
  1293. gsi_ctx->base = gsi_ctx->intcntrlr_base = NULL;
  1294. devm_free_irq(gsi_ctx->dev, props->irq, gsi_ctx);
  1295. GSIERR("setup_emulator_cntrlr() failed\n");
  1296. return res;
  1297. }
  1298. }
  1299. *dev_hdl = (uintptr_t)gsi_ctx;
  1300. gsi_ctx->gsi_isr_cache_index = 0;
  1301. return GSI_STATUS_SUCCESS;
  1302. }
  1303. EXPORT_SYMBOL(gsi_register_device);
  1304. int gsi_write_device_scratch(unsigned long dev_hdl,
  1305. struct gsi_device_scratch *val)
  1306. {
  1307. unsigned int max_usb_pkt_size = 0;
  1308. if (!gsi_ctx) {
  1309. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1310. return -GSI_STATUS_NODEV;
  1311. }
  1312. if (!gsi_ctx->per_registered) {
  1313. GSIERR("no client registered\n");
  1314. return -GSI_STATUS_INVALID_PARAMS;
  1315. }
  1316. if (dev_hdl != (uintptr_t)gsi_ctx) {
  1317. GSIERR("bad params dev_hdl=0x%lx gsi_ctx=0x%pK\n", dev_hdl,
  1318. gsi_ctx);
  1319. return -GSI_STATUS_INVALID_PARAMS;
  1320. }
  1321. if (val->max_usb_pkt_size_valid &&
  1322. val->max_usb_pkt_size != 1024 &&
  1323. val->max_usb_pkt_size != 512 &&
  1324. val->max_usb_pkt_size != 64) {
  1325. GSIERR("bad USB max pkt size dev_hdl=0x%lx sz=%u\n", dev_hdl,
  1326. val->max_usb_pkt_size);
  1327. return -GSI_STATUS_INVALID_PARAMS;
  1328. }
  1329. mutex_lock(&gsi_ctx->mlock);
  1330. if (val->mhi_base_chan_idx_valid)
  1331. gsi_ctx->scratch.word0.s.mhi_base_chan_idx =
  1332. val->mhi_base_chan_idx;
  1333. if (val->max_usb_pkt_size_valid) {
  1334. max_usb_pkt_size = 2;
  1335. if (val->max_usb_pkt_size > 64)
  1336. max_usb_pkt_size =
  1337. (val->max_usb_pkt_size == 1024) ? 1 : 0;
  1338. gsi_ctx->scratch.word0.s.max_usb_pkt_size = max_usb_pkt_size;
  1339. }
  1340. gsihal_write_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  1341. gsi_ctx->per.ee, gsi_ctx->scratch.word0.val);
  1342. mutex_unlock(&gsi_ctx->mlock);
  1343. return GSI_STATUS_SUCCESS;
  1344. }
  1345. EXPORT_SYMBOL(gsi_write_device_scratch);
  1346. int gsi_deregister_device(unsigned long dev_hdl, bool force)
  1347. {
  1348. if (!gsi_ctx) {
  1349. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1350. return -GSI_STATUS_NODEV;
  1351. }
  1352. if (!gsi_ctx->per_registered) {
  1353. GSIERR("no client registered\n");
  1354. return -GSI_STATUS_INVALID_PARAMS;
  1355. }
  1356. if (dev_hdl != (uintptr_t)gsi_ctx) {
  1357. GSIERR("bad params dev_hdl=0x%lx gsi_ctx=0x%pK\n", dev_hdl,
  1358. gsi_ctx);
  1359. return -GSI_STATUS_INVALID_PARAMS;
  1360. }
  1361. if (!force && atomic_read(&gsi_ctx->num_chan)) {
  1362. GSIERR("cannot deregister %u channels are still connected\n",
  1363. atomic_read(&gsi_ctx->num_chan));
  1364. return -GSI_STATUS_UNSUPPORTED_OP;
  1365. }
  1366. if (!force && atomic_read(&gsi_ctx->num_evt_ring)) {
  1367. GSIERR("cannot deregister %u events are still connected\n",
  1368. atomic_read(&gsi_ctx->num_evt_ring));
  1369. return -GSI_STATUS_UNSUPPORTED_OP;
  1370. }
  1371. /* disable all interrupts */
  1372. __gsi_config_type_irq(gsi_ctx->per.ee, ~0, 0);
  1373. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  1374. __gsi_config_all_ch_irq(gsi_ctx->per.ee, ~0, 0);
  1375. __gsi_config_all_evt_irq(gsi_ctx->per.ee, ~0, 0);
  1376. __gsi_config_all_ieob_irq(gsi_ctx->per.ee, ~0, 0);
  1377. }
  1378. else {
  1379. __gsi_config_ch_irq(gsi_ctx->per.ee, ~0, 0);
  1380. __gsi_config_evt_irq(gsi_ctx->per.ee, ~0, 0);
  1381. __gsi_config_ieob_irq(gsi_ctx->per.ee, ~0, 0);
  1382. }
  1383. __gsi_config_glob_irq(gsi_ctx->per.ee, ~0, 0);
  1384. __gsi_config_gen_irq(gsi_ctx->per.ee, ~0, 0);
  1385. devm_free_irq(gsi_ctx->dev, gsi_ctx->per.irq, gsi_ctx);
  1386. gsihal_destroy();
  1387. gsi_unmap_base();
  1388. memset(gsi_ctx, 0, sizeof(*gsi_ctx));
  1389. return GSI_STATUS_SUCCESS;
  1390. }
  1391. EXPORT_SYMBOL(gsi_deregister_device);
  1392. static void gsi_program_evt_ring_ctx(struct gsi_evt_ring_props *props,
  1393. uint8_t evt_id, unsigned int ee)
  1394. {
  1395. struct gsihal_reg_ev_ch_k_cntxt_0 ev_ch_k_cntxt_0;
  1396. struct gsihal_reg_ev_ch_k_cntxt_1 ev_ch_k_cntxt_1;
  1397. struct gsihal_reg_ev_ch_k_cntxt_2 ev_ch_k_cntxt_2;
  1398. struct gsihal_reg_ev_ch_k_cntxt_3 ev_ch_k_cntxt_3;
  1399. struct gsihal_reg_ev_ch_k_cntxt_8 ev_ch_k_cntxt_8;
  1400. struct gsihal_reg_ev_ch_k_cntxt_9 ev_ch_k_cntxt_9;
  1401. struct gsihal_reg_ev_ch_k_cntxt_10 ev_ch_k_cntxt_10;
  1402. struct gsihal_reg_ev_ch_k_cntxt_11 ev_ch_k_cntxt_11;
  1403. struct gsihal_reg_ev_ch_k_cntxt_12 ev_ch_k_cntxt_12;
  1404. struct gsihal_reg_ev_ch_k_cntxt_13 ev_ch_k_cntxt_13;
  1405. GSIDBG("intf=%u intr=%u re=%u\n", props->intf, props->intr,
  1406. props->re_size);
  1407. ev_ch_k_cntxt_0.chtype = props->intf;
  1408. ev_ch_k_cntxt_0.intype = props->intr;
  1409. ev_ch_k_cntxt_0.element_size = props->re_size;
  1410. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_0,
  1411. ee, evt_id, &ev_ch_k_cntxt_0);
  1412. ev_ch_k_cntxt_1.r_length = props->ring_len;
  1413. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_1,
  1414. ee, evt_id,
  1415. &ev_ch_k_cntxt_1);
  1416. ev_ch_k_cntxt_2.r_base_addr_lsbs = GSI_LSB(props->ring_base_addr);
  1417. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_2,
  1418. ee, evt_id,
  1419. &ev_ch_k_cntxt_2);
  1420. ev_ch_k_cntxt_3.r_base_addr_msbs = GSI_MSB(props->ring_base_addr);
  1421. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_3,
  1422. ee, evt_id,
  1423. &ev_ch_k_cntxt_3);
  1424. ev_ch_k_cntxt_8.int_modt = props->int_modt;
  1425. ev_ch_k_cntxt_8.int_modc = props->int_modc;
  1426. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_8,
  1427. ee, evt_id,
  1428. &ev_ch_k_cntxt_8);
  1429. ev_ch_k_cntxt_9.intvec = props->intvec;
  1430. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_9,
  1431. ee, evt_id,
  1432. &ev_ch_k_cntxt_9);
  1433. ev_ch_k_cntxt_10.msi_addr_lsb = GSI_LSB(props->msi_addr);
  1434. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_10,
  1435. ee, evt_id,
  1436. &ev_ch_k_cntxt_10);
  1437. ev_ch_k_cntxt_11.msi_addr_msb = GSI_MSB(props->msi_addr);
  1438. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_11,
  1439. ee, evt_id,
  1440. &ev_ch_k_cntxt_11);
  1441. ev_ch_k_cntxt_12.rp_update_addr_lsb = GSI_LSB(props->rp_update_addr);
  1442. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_12,
  1443. ee, evt_id,
  1444. &ev_ch_k_cntxt_12);
  1445. ev_ch_k_cntxt_13.rp_update_addr_msb = GSI_MSB(props->rp_update_addr);
  1446. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_CNTXT_13,
  1447. ee, evt_id,
  1448. &ev_ch_k_cntxt_13);
  1449. }
  1450. static void gsi_init_evt_ring(struct gsi_evt_ring_props *props,
  1451. struct gsi_ring_ctx *ctx)
  1452. {
  1453. ctx->base_va = (uintptr_t)props->ring_base_vaddr;
  1454. ctx->base = props->ring_base_addr;
  1455. ctx->wp = ctx->base;
  1456. ctx->rp = ctx->base;
  1457. ctx->wp_local = ctx->base;
  1458. ctx->rp_local = ctx->base;
  1459. ctx->len = props->ring_len;
  1460. ctx->elem_sz = props->re_size;
  1461. ctx->max_num_elem = ctx->len / ctx->elem_sz - 1;
  1462. ctx->end = ctx->base + (ctx->max_num_elem + 1) * ctx->elem_sz;
  1463. if (props->rp_update_vaddr)
  1464. *(uint64_t *)(props->rp_update_vaddr) = ctx->rp_local;
  1465. }
  1466. static void gsi_prime_evt_ring(struct gsi_evt_ctx *ctx)
  1467. {
  1468. unsigned long flags;
  1469. struct gsihal_reg_gsi_ee_n_ev_ch_k_doorbell_1 db;
  1470. spin_lock_irqsave(&ctx->ring.slock, flags);
  1471. memset((void *)ctx->ring.base_va, 0, ctx->ring.len);
  1472. ctx->ring.wp_local = ctx->ring.base +
  1473. ctx->ring.max_num_elem * ctx->ring.elem_sz;
  1474. /* write order MUST be MSB followed by LSB */
  1475. db.write_ptr_msb = GSI_MSB(ctx->ring.wp_local);
  1476. gsihal_write_reg_nk_fields(GSI_EE_n_EV_CH_k_DOORBELL_1,
  1477. gsi_ctx->per.ee, ctx->id, &db);
  1478. gsi_ring_evt_doorbell(ctx);
  1479. spin_unlock_irqrestore(&ctx->ring.slock, flags);
  1480. }
  1481. static void gsi_prime_evt_ring_wdi(struct gsi_evt_ctx *ctx)
  1482. {
  1483. unsigned long flags;
  1484. spin_lock_irqsave(&ctx->ring.slock, flags);
  1485. if (ctx->ring.base_va)
  1486. memset((void *)ctx->ring.base_va, 0, ctx->ring.len);
  1487. ctx->ring.wp_local = ctx->ring.base +
  1488. ((ctx->ring.max_num_elem + 2) * ctx->ring.elem_sz);
  1489. gsi_ring_evt_doorbell(ctx);
  1490. spin_unlock_irqrestore(&ctx->ring.slock, flags);
  1491. }
  1492. static int gsi_validate_evt_ring_props(struct gsi_evt_ring_props *props)
  1493. {
  1494. uint64_t ra;
  1495. if ((props->re_size == GSI_EVT_RING_RE_SIZE_4B &&
  1496. props->ring_len % 4) ||
  1497. (props->re_size == GSI_EVT_RING_RE_SIZE_8B &&
  1498. props->ring_len % 8) ||
  1499. (props->re_size == GSI_EVT_RING_RE_SIZE_16B &&
  1500. props->ring_len % 16) ||
  1501. (props->re_size == GSI_EVT_RING_RE_SIZE_32B &&
  1502. props->ring_len % 32)) {
  1503. GSIERR("bad params ring_len %u not a multiple of RE size %u\n",
  1504. props->ring_len, props->re_size);
  1505. return -GSI_STATUS_INVALID_PARAMS;
  1506. }
  1507. if (!gsihal_check_ring_length_valid(props->ring_len, props->re_size))
  1508. return -GSI_STATUS_INVALID_PARAMS;
  1509. ra = props->ring_base_addr;
  1510. do_div(ra, roundup_pow_of_two(props->ring_len));
  1511. if (props->ring_base_addr != ra * roundup_pow_of_two(props->ring_len)) {
  1512. GSIERR("bad params ring base not aligned 0x%llx align 0x%lx\n",
  1513. props->ring_base_addr,
  1514. roundup_pow_of_two(props->ring_len));
  1515. return -GSI_STATUS_INVALID_PARAMS;
  1516. }
  1517. if (props->intf == GSI_EVT_CHTYPE_GPI_EV &&
  1518. !props->ring_base_vaddr) {
  1519. GSIERR("protocol %u requires ring base VA\n", props->intf);
  1520. return -GSI_STATUS_INVALID_PARAMS;
  1521. }
  1522. if (props->intf == GSI_EVT_CHTYPE_MHI_EV &&
  1523. (!props->evchid_valid ||
  1524. props->evchid > gsi_ctx->per.mhi_er_id_limits[1] ||
  1525. props->evchid < gsi_ctx->per.mhi_er_id_limits[0])) {
  1526. GSIERR("MHI requires evchid valid=%d val=%u\n",
  1527. props->evchid_valid, props->evchid);
  1528. return -GSI_STATUS_INVALID_PARAMS;
  1529. }
  1530. if (props->intf != GSI_EVT_CHTYPE_MHI_EV &&
  1531. props->evchid_valid) {
  1532. GSIERR("protocol %u cannot specify evchid\n", props->intf);
  1533. return -GSI_STATUS_INVALID_PARAMS;
  1534. }
  1535. if (!props->err_cb) {
  1536. GSIERR("err callback must be provided\n");
  1537. return -GSI_STATUS_INVALID_PARAMS;
  1538. }
  1539. return GSI_STATUS_SUCCESS;
  1540. }
  1541. /**
  1542. * gsi_cleanup_xfer_user_data: cleanup the user data array using callback passed
  1543. * by IPA driver. Need to do this in GSI since only GSI knows which TRE
  1544. * are being used or not. However, IPA is the one that does cleaning,
  1545. * therefore we pass a callback from IPA and call it using params from GSI
  1546. *
  1547. * @chan_hdl: hdl of the gsi channel user data array to be cleaned
  1548. * @cleanup_cb: callback used to clean the user data array. takes 2 inputs
  1549. * @chan_user_data: ipa_sys_context of the gsi_channel
  1550. * @xfer_uder_data: user data array element (rx_pkt wrapper)
  1551. *
  1552. * Returns: 0 on success, negative on failure
  1553. */
  1554. static int gsi_cleanup_xfer_user_data(unsigned long chan_hdl,
  1555. void (*cleanup_cb)(void *chan_user_data, void *xfer_user_data))
  1556. {
  1557. struct gsi_chan_ctx *ctx;
  1558. uint64_t i;
  1559. uint16_t rp_idx;
  1560. ctx = &gsi_ctx->chan[chan_hdl];
  1561. if (ctx->state != GSI_CHAN_STATE_ALLOCATED) {
  1562. GSIERR("bad state %d\n", ctx->state);
  1563. return -GSI_STATUS_UNSUPPORTED_OP;
  1564. }
  1565. /* for coalescing, traverse the whole array */
  1566. if (ctx->props.prot == GSI_CHAN_PROT_GCI) {
  1567. size_t user_data_size =
  1568. ctx->ring.max_num_elem + 1 + GSI_VEID_MAX;
  1569. for (i = 0; i < user_data_size; i++) {
  1570. if (ctx->user_data[i].valid)
  1571. cleanup_cb(ctx->props.chan_user_data,
  1572. ctx->user_data[i].p);
  1573. }
  1574. } else {
  1575. /* for non-coalescing, clean between RP and WP */
  1576. while (ctx->ring.rp_local != ctx->ring.wp_local) {
  1577. rp_idx = gsi_find_idx_from_addr(&ctx->ring,
  1578. ctx->ring.rp_local);
  1579. WARN_ON(!ctx->user_data[rp_idx].valid);
  1580. cleanup_cb(ctx->props.chan_user_data,
  1581. ctx->user_data[rp_idx].p);
  1582. gsi_incr_ring_rp(&ctx->ring);
  1583. }
  1584. }
  1585. return 0;
  1586. }
  1587. /**
  1588. * gsi_read_event_ring_rp_ddr - function returns the RP value of the event
  1589. * ring read from the ring context register.
  1590. *
  1591. * @props: Props structere of the event channel
  1592. * @id: Event channel index
  1593. * @ee: EE
  1594. *
  1595. * @Return pointer to the read pointer
  1596. */
  1597. static inline uint64_t gsi_read_event_ring_rp_ddr(struct gsi_evt_ring_props* props,
  1598. uint8_t id, int ee)
  1599. {
  1600. return readl_relaxed(props->rp_update_vaddr);
  1601. }
  1602. /**
  1603. * gsi_read_event_ring_rp_reg - function returns the RP value of the event ring
  1604. * read from the DDR.
  1605. *
  1606. * @props: Props structere of the event channel
  1607. * @id: Event channel index
  1608. * @ee: EE
  1609. *
  1610. * @Return pointer to the read pointer
  1611. */
  1612. static inline uint64_t gsi_read_event_ring_rp_reg(struct gsi_evt_ring_props* props,
  1613. uint8_t id, int ee)
  1614. {
  1615. return gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_4, ee, id);
  1616. }
  1617. int gsi_alloc_evt_ring(struct gsi_evt_ring_props *props, unsigned long dev_hdl,
  1618. unsigned long *evt_ring_hdl)
  1619. {
  1620. unsigned long evt_id;
  1621. enum gsi_evt_ch_cmd_opcode op = GSI_EVT_ALLOCATE;
  1622. struct gsihal_reg_ee_n_ev_ch_cmd ev_ch_cmd;
  1623. struct gsi_evt_ctx *ctx;
  1624. int res;
  1625. int ee;
  1626. unsigned long flags;
  1627. if (!gsi_ctx) {
  1628. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1629. return -GSI_STATUS_NODEV;
  1630. }
  1631. if (!props || !evt_ring_hdl || dev_hdl != (uintptr_t)gsi_ctx) {
  1632. GSIERR("bad params props=%pK dev_hdl=0x%lx evt_ring_hdl=%pK\n",
  1633. props, dev_hdl, evt_ring_hdl);
  1634. return -GSI_STATUS_INVALID_PARAMS;
  1635. }
  1636. if (gsi_validate_evt_ring_props(props)) {
  1637. GSIERR("invalid params\n");
  1638. return -GSI_STATUS_INVALID_PARAMS;
  1639. }
  1640. if (!props->evchid_valid) {
  1641. mutex_lock(&gsi_ctx->mlock);
  1642. evt_id = find_first_zero_bit(&gsi_ctx->evt_bmap,
  1643. sizeof(unsigned long) * BITS_PER_BYTE);
  1644. if (evt_id == sizeof(unsigned long) * BITS_PER_BYTE) {
  1645. GSIERR("failed to alloc event ID\n");
  1646. mutex_unlock(&gsi_ctx->mlock);
  1647. return -GSI_STATUS_RES_ALLOC_FAILURE;
  1648. }
  1649. set_bit(evt_id, &gsi_ctx->evt_bmap);
  1650. mutex_unlock(&gsi_ctx->mlock);
  1651. } else {
  1652. evt_id = props->evchid;
  1653. }
  1654. GSIDBG("Using %lu as virt evt id\n", evt_id);
  1655. if (props->rp_update_addr != 0) {
  1656. GSIDBG("Using DDR to read event RP for virt evt id: %lu\n",
  1657. evt_id);
  1658. props->gsi_read_event_ring_rp =
  1659. gsi_read_event_ring_rp_ddr;
  1660. }
  1661. else {
  1662. GSIDBG("Using CONTEXT reg to read event RP for virt evt id: %lu\n",
  1663. evt_id);
  1664. props->gsi_read_event_ring_rp =
  1665. gsi_read_event_ring_rp_reg;
  1666. }
  1667. ctx = &gsi_ctx->evtr[evt_id];
  1668. memset(ctx, 0, sizeof(*ctx));
  1669. mutex_init(&ctx->mlock);
  1670. init_completion(&ctx->compl);
  1671. atomic_set(&ctx->chan_ref_cnt, 0);
  1672. ctx->num_of_chan_allocated = 0;
  1673. ctx->props = *props;
  1674. mutex_lock(&gsi_ctx->mlock);
  1675. ee = gsi_ctx->per.ee;
  1676. ev_ch_cmd.opcode = op;
  1677. ev_ch_cmd.chid = evt_id;
  1678. gsihal_write_reg_n_fields(GSI_EE_n_EV_CH_CMD, ee, &ev_ch_cmd);
  1679. res = wait_for_completion_timeout(&ctx->compl, GSI_CMD_TIMEOUT);
  1680. if (res == 0) {
  1681. GSIERR("evt_id=%lu timed out\n", evt_id);
  1682. if (!props->evchid_valid)
  1683. clear_bit(evt_id, &gsi_ctx->evt_bmap);
  1684. mutex_unlock(&gsi_ctx->mlock);
  1685. return -GSI_STATUS_TIMED_OUT;
  1686. }
  1687. if (ctx->state != GSI_EVT_RING_STATE_ALLOCATED) {
  1688. GSIERR("evt_id=%lu allocation failed state=%u\n",
  1689. evt_id, ctx->state);
  1690. if (!props->evchid_valid)
  1691. clear_bit(evt_id, &gsi_ctx->evt_bmap);
  1692. mutex_unlock(&gsi_ctx->mlock);
  1693. return -GSI_STATUS_RES_ALLOC_FAILURE;
  1694. }
  1695. gsi_program_evt_ring_ctx(props, evt_id, gsi_ctx->per.ee);
  1696. spin_lock_init(&ctx->ring.slock);
  1697. gsi_init_evt_ring(props, &ctx->ring);
  1698. ctx->id = evt_id;
  1699. *evt_ring_hdl = evt_id;
  1700. atomic_inc(&gsi_ctx->num_evt_ring);
  1701. if (props->intf == GSI_EVT_CHTYPE_GPI_EV)
  1702. gsi_prime_evt_ring(ctx);
  1703. else if (props->intf == GSI_EVT_CHTYPE_WDI2_EV)
  1704. gsi_prime_evt_ring_wdi(ctx);
  1705. mutex_unlock(&gsi_ctx->mlock);
  1706. spin_lock_irqsave(&gsi_ctx->slock, flags);
  1707. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  1708. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR_k, ee,
  1709. gsihal_get_ch_reg_idx(evt_id), gsihal_get_ch_reg_mask(evt_id));
  1710. }
  1711. else {
  1712. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR, ee, 1 << evt_id);
  1713. }
  1714. /* enable ieob interrupts for GPI, enable MSI interrupts */
  1715. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  1716. if ((props->intf != GSI_EVT_CHTYPE_GPI_EV) &&
  1717. (props->intr != GSI_INTR_MSI))
  1718. __gsi_config_ieob_irq_k(gsi_ctx->per.ee, gsihal_get_ch_reg_idx(evt_id),
  1719. gsihal_get_ch_reg_mask(evt_id),
  1720. 0);
  1721. else
  1722. __gsi_config_ieob_irq_k(gsi_ctx->per.ee, gsihal_get_ch_reg_idx(evt_id),
  1723. gsihal_get_ch_reg_mask(evt_id),
  1724. ~0);
  1725. }
  1726. else {
  1727. if ((props->intf != GSI_EVT_CHTYPE_GPI_EV) &&
  1728. (props->intr != GSI_INTR_MSI))
  1729. __gsi_config_ieob_irq(gsi_ctx->per.ee, 1 << evt_id, 0);
  1730. else
  1731. __gsi_config_ieob_irq(gsi_ctx->per.ee, 1 << ctx->id, ~0);
  1732. }
  1733. spin_unlock_irqrestore(&gsi_ctx->slock, flags);
  1734. return GSI_STATUS_SUCCESS;
  1735. }
  1736. EXPORT_SYMBOL(gsi_alloc_evt_ring);
  1737. static void __gsi_write_evt_ring_scratch(unsigned long evt_ring_hdl,
  1738. union __packed gsi_evt_scratch val)
  1739. {
  1740. gsihal_write_reg_nk(GSI_EE_n_EV_CH_k_SCRATCH_0,
  1741. gsi_ctx->per.ee, evt_ring_hdl, val.data.word1);
  1742. gsihal_write_reg_nk(GSI_EE_n_EV_CH_k_SCRATCH_1,
  1743. gsi_ctx->per.ee, evt_ring_hdl, val.data.word2);
  1744. }
  1745. int gsi_write_evt_ring_scratch(unsigned long evt_ring_hdl,
  1746. union __packed gsi_evt_scratch val)
  1747. {
  1748. struct gsi_evt_ctx *ctx;
  1749. if (!gsi_ctx) {
  1750. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1751. return -GSI_STATUS_NODEV;
  1752. }
  1753. if (evt_ring_hdl >= gsi_ctx->max_ev) {
  1754. GSIERR("bad params evt_ring_hdl=%lu\n", evt_ring_hdl);
  1755. return -GSI_STATUS_INVALID_PARAMS;
  1756. }
  1757. ctx = &gsi_ctx->evtr[evt_ring_hdl];
  1758. if (ctx->state != GSI_EVT_RING_STATE_ALLOCATED) {
  1759. GSIERR("bad state %d\n",
  1760. gsi_ctx->evtr[evt_ring_hdl].state);
  1761. return -GSI_STATUS_UNSUPPORTED_OP;
  1762. }
  1763. mutex_lock(&ctx->mlock);
  1764. ctx->scratch = val;
  1765. __gsi_write_evt_ring_scratch(evt_ring_hdl, val);
  1766. mutex_unlock(&ctx->mlock);
  1767. return GSI_STATUS_SUCCESS;
  1768. }
  1769. EXPORT_SYMBOL(gsi_write_evt_ring_scratch);
  1770. int gsi_dealloc_evt_ring(unsigned long evt_ring_hdl)
  1771. {
  1772. struct gsihal_reg_ee_n_ev_ch_cmd ev_ch_cmd;
  1773. enum gsi_evt_ch_cmd_opcode op = GSI_EVT_DE_ALLOC;
  1774. struct gsi_evt_ctx *ctx;
  1775. int res;
  1776. if (!gsi_ctx) {
  1777. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1778. return -GSI_STATUS_NODEV;
  1779. }
  1780. if (evt_ring_hdl >= gsi_ctx->max_ev ||
  1781. evt_ring_hdl >= GSI_EVT_RING_MAX) {
  1782. GSIERR("bad params evt_ring_hdl=%lu\n", evt_ring_hdl);
  1783. return -GSI_STATUS_INVALID_PARAMS;
  1784. }
  1785. ctx = &gsi_ctx->evtr[evt_ring_hdl];
  1786. if (atomic_read(&ctx->chan_ref_cnt)) {
  1787. GSIERR("%d channels still using this event ring\n",
  1788. atomic_read(&ctx->chan_ref_cnt));
  1789. return -GSI_STATUS_UNSUPPORTED_OP;
  1790. }
  1791. if (ctx->state != GSI_EVT_RING_STATE_ALLOCATED) {
  1792. GSIERR("bad state %d\n", ctx->state);
  1793. return -GSI_STATUS_UNSUPPORTED_OP;
  1794. }
  1795. mutex_lock(&gsi_ctx->mlock);
  1796. reinit_completion(&ctx->compl);
  1797. ev_ch_cmd.chid = evt_ring_hdl;
  1798. ev_ch_cmd.opcode = op;
  1799. gsihal_write_reg_n_fields(GSI_EE_n_EV_CH_CMD,
  1800. gsi_ctx->per.ee, &ev_ch_cmd);
  1801. res = wait_for_completion_timeout(&ctx->compl, GSI_CMD_TIMEOUT);
  1802. if (res == 0) {
  1803. GSIERR("evt_id=%lu timed out\n", evt_ring_hdl);
  1804. mutex_unlock(&gsi_ctx->mlock);
  1805. return -GSI_STATUS_TIMED_OUT;
  1806. }
  1807. if (ctx->state != GSI_EVT_RING_STATE_NOT_ALLOCATED) {
  1808. GSIERR("evt_id=%lu unexpected state=%u\n", evt_ring_hdl,
  1809. ctx->state);
  1810. /*
  1811. * IPA Hardware returned GSI RING not allocated, which is
  1812. * unexpected hardware state.
  1813. */
  1814. GSI_ASSERT();
  1815. }
  1816. mutex_unlock(&gsi_ctx->mlock);
  1817. if (!ctx->props.evchid_valid) {
  1818. mutex_lock(&gsi_ctx->mlock);
  1819. clear_bit(evt_ring_hdl, &gsi_ctx->evt_bmap);
  1820. mutex_unlock(&gsi_ctx->mlock);
  1821. }
  1822. atomic_dec(&gsi_ctx->num_evt_ring);
  1823. return GSI_STATUS_SUCCESS;
  1824. }
  1825. EXPORT_SYMBOL(gsi_dealloc_evt_ring);
  1826. int gsi_query_evt_ring_db_addr(unsigned long evt_ring_hdl,
  1827. uint32_t *db_addr_wp_lsb, uint32_t *db_addr_wp_msb)
  1828. {
  1829. struct gsi_evt_ctx *ctx;
  1830. if (!gsi_ctx) {
  1831. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1832. return -GSI_STATUS_NODEV;
  1833. }
  1834. if (!db_addr_wp_msb || !db_addr_wp_lsb) {
  1835. GSIERR("bad params msb=%pK lsb=%pK\n", db_addr_wp_msb,
  1836. db_addr_wp_lsb);
  1837. return -GSI_STATUS_INVALID_PARAMS;
  1838. }
  1839. if (evt_ring_hdl >= gsi_ctx->max_ev) {
  1840. GSIERR("bad params evt_ring_hdl=%lu\n", evt_ring_hdl);
  1841. return -GSI_STATUS_INVALID_PARAMS;
  1842. }
  1843. ctx = &gsi_ctx->evtr[evt_ring_hdl];
  1844. if (ctx->state != GSI_EVT_RING_STATE_ALLOCATED) {
  1845. GSIERR("bad state %d\n",
  1846. gsi_ctx->evtr[evt_ring_hdl].state);
  1847. return -GSI_STATUS_UNSUPPORTED_OP;
  1848. }
  1849. *db_addr_wp_lsb = gsi_ctx->per.phys_addr + gsihal_get_reg_nk_ofst(
  1850. GSI_EE_n_EV_CH_k_DOORBELL_0, gsi_ctx->per.ee, evt_ring_hdl);
  1851. *db_addr_wp_msb = gsi_ctx->per.phys_addr + gsihal_get_reg_nk_ofst(
  1852. GSI_EE_n_EV_CH_k_DOORBELL_1, gsi_ctx->per.ee, evt_ring_hdl);
  1853. return GSI_STATUS_SUCCESS;
  1854. }
  1855. EXPORT_SYMBOL(gsi_query_evt_ring_db_addr);
  1856. int gsi_ring_evt_ring_db(unsigned long evt_ring_hdl, uint64_t value)
  1857. {
  1858. struct gsi_evt_ctx *ctx;
  1859. if (!gsi_ctx) {
  1860. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1861. return -GSI_STATUS_NODEV;
  1862. }
  1863. if (evt_ring_hdl >= gsi_ctx->max_ev) {
  1864. GSIERR("bad params evt_ring_hdl=%lu\n", evt_ring_hdl);
  1865. return -GSI_STATUS_INVALID_PARAMS;
  1866. }
  1867. ctx = &gsi_ctx->evtr[evt_ring_hdl];
  1868. if (ctx->state != GSI_EVT_RING_STATE_ALLOCATED) {
  1869. GSIERR("bad state %d\n",
  1870. gsi_ctx->evtr[evt_ring_hdl].state);
  1871. return -GSI_STATUS_UNSUPPORTED_OP;
  1872. }
  1873. ctx->ring.wp_local = value;
  1874. gsi_ring_evt_doorbell(ctx);
  1875. return GSI_STATUS_SUCCESS;
  1876. }
  1877. EXPORT_SYMBOL(gsi_ring_evt_ring_db);
  1878. int gsi_ring_ch_ring_db(unsigned long chan_hdl, uint64_t value)
  1879. {
  1880. struct gsi_chan_ctx *ctx;
  1881. if (!gsi_ctx) {
  1882. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1883. return -GSI_STATUS_NODEV;
  1884. }
  1885. if (chan_hdl >= gsi_ctx->max_ch) {
  1886. GSIERR("bad chan_hdl=%lu\n", chan_hdl);
  1887. return -GSI_STATUS_INVALID_PARAMS;
  1888. }
  1889. ctx = &gsi_ctx->chan[chan_hdl];
  1890. if (ctx->state != GSI_CHAN_STATE_STARTED) {
  1891. GSIERR("bad state %d\n", ctx->state);
  1892. return -GSI_STATUS_UNSUPPORTED_OP;
  1893. }
  1894. ctx->ring.wp_local = value;
  1895. /* write MSB first */
  1896. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_DOORBELL_1,
  1897. gsi_ctx->per.ee, ctx->props.ch_id, GSI_MSB(ctx->ring.wp_local));
  1898. gsi_ring_chan_doorbell(ctx);
  1899. return GSI_STATUS_SUCCESS;
  1900. }
  1901. EXPORT_SYMBOL(gsi_ring_ch_ring_db);
  1902. int gsi_reset_evt_ring(unsigned long evt_ring_hdl)
  1903. {
  1904. struct gsihal_reg_ee_n_ev_ch_cmd ev_ch_cmd;
  1905. enum gsi_evt_ch_cmd_opcode op = GSI_EVT_RESET;
  1906. struct gsi_evt_ctx *ctx;
  1907. int res;
  1908. if (!gsi_ctx) {
  1909. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1910. return -GSI_STATUS_NODEV;
  1911. }
  1912. if (evt_ring_hdl >= gsi_ctx->max_ev) {
  1913. GSIERR("bad params evt_ring_hdl=%lu\n", evt_ring_hdl);
  1914. return -GSI_STATUS_INVALID_PARAMS;
  1915. }
  1916. ctx = &gsi_ctx->evtr[evt_ring_hdl];
  1917. if (ctx->state != GSI_EVT_RING_STATE_ALLOCATED) {
  1918. GSIERR("bad state %d\n", ctx->state);
  1919. return -GSI_STATUS_UNSUPPORTED_OP;
  1920. }
  1921. mutex_lock(&gsi_ctx->mlock);
  1922. reinit_completion(&ctx->compl);
  1923. ev_ch_cmd.chid = evt_ring_hdl;
  1924. ev_ch_cmd.opcode = op;
  1925. gsihal_write_reg_n_fields(GSI_EE_n_EV_CH_CMD,
  1926. gsi_ctx->per.ee, &ev_ch_cmd);
  1927. res = wait_for_completion_timeout(&ctx->compl, GSI_CMD_TIMEOUT);
  1928. if (res == 0) {
  1929. GSIERR("evt_id=%lu timed out\n", evt_ring_hdl);
  1930. mutex_unlock(&gsi_ctx->mlock);
  1931. return -GSI_STATUS_TIMED_OUT;
  1932. }
  1933. if (ctx->state != GSI_EVT_RING_STATE_ALLOCATED) {
  1934. GSIERR("evt_id=%lu unexpected state=%u\n", evt_ring_hdl,
  1935. ctx->state);
  1936. /*
  1937. * IPA Hardware returned GSI RING not allocated, which is
  1938. * unexpected. Indicates hardware instability.
  1939. */
  1940. GSI_ASSERT();
  1941. }
  1942. gsi_program_evt_ring_ctx(&ctx->props, evt_ring_hdl, gsi_ctx->per.ee);
  1943. gsi_init_evt_ring(&ctx->props, &ctx->ring);
  1944. /* restore scratch */
  1945. __gsi_write_evt_ring_scratch(evt_ring_hdl, ctx->scratch);
  1946. if (ctx->props.intf == GSI_EVT_CHTYPE_GPI_EV)
  1947. gsi_prime_evt_ring(ctx);
  1948. if (ctx->props.intf == GSI_EVT_CHTYPE_WDI2_EV)
  1949. gsi_prime_evt_ring_wdi(ctx);
  1950. mutex_unlock(&gsi_ctx->mlock);
  1951. return GSI_STATUS_SUCCESS;
  1952. }
  1953. EXPORT_SYMBOL(gsi_reset_evt_ring);
  1954. int gsi_get_evt_ring_cfg(unsigned long evt_ring_hdl,
  1955. struct gsi_evt_ring_props *props, union gsi_evt_scratch *scr)
  1956. {
  1957. struct gsi_evt_ctx *ctx;
  1958. if (!gsi_ctx) {
  1959. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1960. return -GSI_STATUS_NODEV;
  1961. }
  1962. if (!props || !scr) {
  1963. GSIERR("bad params props=%pK scr=%pK\n", props, scr);
  1964. return -GSI_STATUS_INVALID_PARAMS;
  1965. }
  1966. if (evt_ring_hdl >= gsi_ctx->max_ev) {
  1967. GSIERR("bad params evt_ring_hdl=%lu\n", evt_ring_hdl);
  1968. return -GSI_STATUS_INVALID_PARAMS;
  1969. }
  1970. ctx = &gsi_ctx->evtr[evt_ring_hdl];
  1971. if (ctx->state == GSI_EVT_RING_STATE_NOT_ALLOCATED) {
  1972. GSIERR("bad state %d\n", ctx->state);
  1973. return -GSI_STATUS_UNSUPPORTED_OP;
  1974. }
  1975. mutex_lock(&ctx->mlock);
  1976. *props = ctx->props;
  1977. *scr = ctx->scratch;
  1978. mutex_unlock(&ctx->mlock);
  1979. return GSI_STATUS_SUCCESS;
  1980. }
  1981. EXPORT_SYMBOL(gsi_get_evt_ring_cfg);
  1982. int gsi_set_evt_ring_cfg(unsigned long evt_ring_hdl,
  1983. struct gsi_evt_ring_props *props, union gsi_evt_scratch *scr)
  1984. {
  1985. struct gsi_evt_ctx *ctx;
  1986. if (!gsi_ctx) {
  1987. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  1988. return -GSI_STATUS_NODEV;
  1989. }
  1990. if (!props || gsi_validate_evt_ring_props(props)) {
  1991. GSIERR("bad params props=%pK\n", props);
  1992. return -GSI_STATUS_INVALID_PARAMS;
  1993. }
  1994. if (evt_ring_hdl >= gsi_ctx->max_ev) {
  1995. GSIERR("bad params evt_ring_hdl=%lu\n", evt_ring_hdl);
  1996. return -GSI_STATUS_INVALID_PARAMS;
  1997. }
  1998. ctx = &gsi_ctx->evtr[evt_ring_hdl];
  1999. if (ctx->state != GSI_EVT_RING_STATE_ALLOCATED) {
  2000. GSIERR("bad state %d\n", ctx->state);
  2001. return -GSI_STATUS_UNSUPPORTED_OP;
  2002. }
  2003. if (ctx->props.exclusive != props->exclusive) {
  2004. GSIERR("changing immutable fields not supported\n");
  2005. return -GSI_STATUS_UNSUPPORTED_OP;
  2006. }
  2007. mutex_lock(&ctx->mlock);
  2008. ctx->props = *props;
  2009. if (scr)
  2010. ctx->scratch = *scr;
  2011. mutex_unlock(&ctx->mlock);
  2012. return gsi_reset_evt_ring(evt_ring_hdl);
  2013. }
  2014. EXPORT_SYMBOL(gsi_set_evt_ring_cfg);
  2015. static void gsi_program_chan_ctx_qos(struct gsi_chan_props *props,
  2016. unsigned int ee)
  2017. {
  2018. struct gsihal_reg_gsi_ee_n_gsi_ch_k_qos ch_k_qos;
  2019. ch_k_qos.wrr_weight = props->low_weight;
  2020. ch_k_qos.max_prefetch = props->max_prefetch;
  2021. ch_k_qos.use_db_eng = props->use_db_eng;
  2022. if (gsi_ctx->per.ver >= GSI_VER_2_0) {
  2023. if (gsi_ctx->per.ver < GSI_VER_2_5) {
  2024. ch_k_qos.use_escape_buf_only = props->prefetch_mode;
  2025. } else {
  2026. ch_k_qos.prefetch_mode = props->prefetch_mode;
  2027. ch_k_qos.empty_lvl_thrshold =
  2028. props->empty_lvl_threshold;
  2029. if (gsi_ctx->per.ver >= GSI_VER_2_9)
  2030. ch_k_qos.db_in_bytes = props->db_in_bytes;
  2031. }
  2032. }
  2033. gsihal_write_reg_nk_fields(GSI_EE_n_GSI_CH_k_QOS,
  2034. ee, props->ch_id, &ch_k_qos);
  2035. }
  2036. static void gsi_program_chan_ctx(struct gsi_chan_props *props, unsigned int ee,
  2037. uint8_t erindex)
  2038. {
  2039. struct gsihal_reg_ch_k_cntxt_0 ch_k_cntxt_0;
  2040. struct gsihal_reg_ch_k_cntxt_1 ch_k_cntxt_1;
  2041. switch (props->prot) {
  2042. case GSI_CHAN_PROT_MHI:
  2043. case GSI_CHAN_PROT_XHCI:
  2044. case GSI_CHAN_PROT_GPI:
  2045. case GSI_CHAN_PROT_XDCI:
  2046. case GSI_CHAN_PROT_WDI2:
  2047. case GSI_CHAN_PROT_WDI3:
  2048. case GSI_CHAN_PROT_GCI:
  2049. case GSI_CHAN_PROT_MHIP:
  2050. ch_k_cntxt_0.chtype_protocol_msb = 0;
  2051. break;
  2052. case GSI_CHAN_PROT_AQC:
  2053. case GSI_CHAN_PROT_11AD:
  2054. case GSI_CHAN_PROT_RTK:
  2055. case GSI_CHAN_PROT_QDSS:
  2056. ch_k_cntxt_0.chtype_protocol_msb = 1;
  2057. break;
  2058. default:
  2059. GSIERR("Unsupported protocol %d\n", props->prot);
  2060. WARN_ON(1);
  2061. return;
  2062. }
  2063. ch_k_cntxt_0.chtype_protocol = props->prot;
  2064. ch_k_cntxt_0.chtype_dir = props->dir;
  2065. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  2066. ch_k_cntxt_1.erindex = erindex;
  2067. } else {
  2068. ch_k_cntxt_0.erindex = erindex;
  2069. }
  2070. ch_k_cntxt_0.element_size = props->re_size;
  2071. gsihal_write_reg_nk_fields(GSI_EE_n_GSI_CH_k_CNTXT_0,
  2072. ee, props->ch_id, &ch_k_cntxt_0);
  2073. ch_k_cntxt_1.r_length = props->ring_len;
  2074. gsihal_write_reg_nk_fields(GSI_EE_n_GSI_CH_k_CNTXT_1,
  2075. ee, props->ch_id, &ch_k_cntxt_1);
  2076. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_2,
  2077. ee, props->ch_id, GSI_LSB(props->ring_base_addr));
  2078. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_3,
  2079. ee, props->ch_id, GSI_MSB(props->ring_base_addr));
  2080. gsi_program_chan_ctx_qos(props, ee);
  2081. }
  2082. static void gsi_init_chan_ring(struct gsi_chan_props *props,
  2083. struct gsi_ring_ctx *ctx)
  2084. {
  2085. ctx->base_va = (uintptr_t)props->ring_base_vaddr;
  2086. ctx->base = props->ring_base_addr;
  2087. ctx->wp = ctx->base;
  2088. ctx->rp = ctx->base;
  2089. ctx->wp_local = ctx->base;
  2090. ctx->rp_local = ctx->base;
  2091. ctx->len = props->ring_len;
  2092. ctx->elem_sz = props->re_size;
  2093. ctx->max_num_elem = ctx->len / ctx->elem_sz - 1;
  2094. ctx->end = ctx->base + (ctx->max_num_elem + 1) *
  2095. ctx->elem_sz;
  2096. }
  2097. static int gsi_validate_channel_props(struct gsi_chan_props *props)
  2098. {
  2099. uint64_t ra;
  2100. uint64_t last;
  2101. if (props->ch_id >= gsi_ctx->max_ch) {
  2102. GSIERR("ch_id %u invalid\n", props->ch_id);
  2103. return -GSI_STATUS_INVALID_PARAMS;
  2104. }
  2105. if ((props->re_size == GSI_CHAN_RE_SIZE_4B &&
  2106. props->ring_len % 4) ||
  2107. (props->re_size == GSI_CHAN_RE_SIZE_8B &&
  2108. props->ring_len % 8) ||
  2109. (props->re_size == GSI_CHAN_RE_SIZE_16B &&
  2110. props->ring_len % 16) ||
  2111. (props->re_size == GSI_CHAN_RE_SIZE_32B &&
  2112. props->ring_len % 32) ||
  2113. (props->re_size == GSI_CHAN_RE_SIZE_64B &&
  2114. props->ring_len % 64)) {
  2115. GSIERR("bad params ring_len %u not a multiple of re size %u\n",
  2116. props->ring_len, props->re_size);
  2117. return -GSI_STATUS_INVALID_PARAMS;
  2118. }
  2119. if (!gsihal_check_ring_length_valid(props->ring_len, props->re_size))
  2120. return -GSI_STATUS_INVALID_PARAMS;
  2121. ra = props->ring_base_addr;
  2122. do_div(ra, roundup_pow_of_two(props->ring_len));
  2123. if (props->ring_base_addr != ra * roundup_pow_of_two(props->ring_len)) {
  2124. GSIERR("bad params ring base not aligned 0x%llx align 0x%lx\n",
  2125. props->ring_base_addr,
  2126. roundup_pow_of_two(props->ring_len));
  2127. return -GSI_STATUS_INVALID_PARAMS;
  2128. }
  2129. last = props->ring_base_addr + props->ring_len - props->re_size;
  2130. /* MSB should stay same within the ring */
  2131. if ((props->ring_base_addr & 0xFFFFFFFF00000000ULL) !=
  2132. (last & 0xFFFFFFFF00000000ULL)) {
  2133. GSIERR("MSB is not fixed on ring base 0x%llx size 0x%x\n",
  2134. props->ring_base_addr,
  2135. props->ring_len);
  2136. return -GSI_STATUS_INVALID_PARAMS;
  2137. }
  2138. if (props->prot == GSI_CHAN_PROT_GPI &&
  2139. !props->ring_base_vaddr) {
  2140. GSIERR("protocol %u requires ring base VA\n", props->prot);
  2141. return -GSI_STATUS_INVALID_PARAMS;
  2142. }
  2143. if (props->low_weight > GSI_MAX_CH_LOW_WEIGHT) {
  2144. GSIERR("invalid channel low weight %u\n", props->low_weight);
  2145. return -GSI_STATUS_INVALID_PARAMS;
  2146. }
  2147. if (props->prot == GSI_CHAN_PROT_GPI && !props->xfer_cb) {
  2148. GSIERR("xfer callback must be provided\n");
  2149. return -GSI_STATUS_INVALID_PARAMS;
  2150. }
  2151. if (!props->err_cb) {
  2152. GSIERR("err callback must be provided\n");
  2153. return -GSI_STATUS_INVALID_PARAMS;
  2154. }
  2155. return GSI_STATUS_SUCCESS;
  2156. }
  2157. int gsi_alloc_channel(struct gsi_chan_props *props, unsigned long dev_hdl,
  2158. unsigned long *chan_hdl)
  2159. {
  2160. struct gsi_chan_ctx *ctx;
  2161. int res;
  2162. int ee;
  2163. enum gsi_ch_cmd_opcode op = GSI_CH_ALLOCATE;
  2164. uint8_t erindex;
  2165. struct gsi_user_data *user_data;
  2166. size_t user_data_size;
  2167. if (!gsi_ctx) {
  2168. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2169. return -GSI_STATUS_NODEV;
  2170. }
  2171. if (!props || !chan_hdl || dev_hdl != (uintptr_t)gsi_ctx) {
  2172. GSIERR("bad params props=%pK dev_hdl=0x%lx chan_hdl=%pK\n",
  2173. props, dev_hdl, chan_hdl);
  2174. return -GSI_STATUS_INVALID_PARAMS;
  2175. }
  2176. if (gsi_validate_channel_props(props)) {
  2177. GSIERR("bad params\n");
  2178. return -GSI_STATUS_INVALID_PARAMS;
  2179. }
  2180. if (props->evt_ring_hdl != ~0) {
  2181. if (props->evt_ring_hdl >= gsi_ctx->max_ev) {
  2182. GSIERR("invalid evt ring=%lu\n", props->evt_ring_hdl);
  2183. return -GSI_STATUS_INVALID_PARAMS;
  2184. }
  2185. if (atomic_read(
  2186. &gsi_ctx->evtr[props->evt_ring_hdl].chan_ref_cnt) &&
  2187. gsi_ctx->evtr[props->evt_ring_hdl].props.exclusive &&
  2188. gsi_ctx->evtr[props->evt_ring_hdl].chan[0]->props.prot !=
  2189. GSI_CHAN_PROT_GCI) {
  2190. GSIERR("evt ring=%lu exclusively used by ch_hdl=%pK\n",
  2191. props->evt_ring_hdl, chan_hdl);
  2192. return -GSI_STATUS_UNSUPPORTED_OP;
  2193. }
  2194. }
  2195. ctx = &gsi_ctx->chan[props->ch_id];
  2196. if (ctx->allocated) {
  2197. GSIERR("chan %d already allocated\n", props->ch_id);
  2198. return -GSI_STATUS_NODEV;
  2199. }
  2200. memset(ctx, 0, sizeof(*ctx));
  2201. /* For IPA offloaded WDI channels not required user_data pointer */
  2202. if (props->prot != GSI_CHAN_PROT_WDI2 &&
  2203. props->prot != GSI_CHAN_PROT_WDI3)
  2204. user_data_size = props->ring_len / props->re_size;
  2205. else
  2206. user_data_size = props->re_size;
  2207. /*
  2208. * GCI channels might have OOO event completions up to GSI_VEID_MAX.
  2209. * user_data needs to be large enough to accommodate those.
  2210. * TODO: increase user data size if GSI_VEID_MAX is not enough
  2211. */
  2212. if (props->prot == GSI_CHAN_PROT_GCI)
  2213. user_data_size += GSI_VEID_MAX;
  2214. user_data = devm_kzalloc(gsi_ctx->dev,
  2215. user_data_size * sizeof(*user_data),
  2216. GFP_KERNEL);
  2217. if (user_data == NULL) {
  2218. GSIERR("context not allocated\n");
  2219. return -GSI_STATUS_RES_ALLOC_FAILURE;
  2220. }
  2221. mutex_init(&ctx->mlock);
  2222. init_completion(&ctx->compl);
  2223. atomic_set(&ctx->poll_mode, GSI_CHAN_MODE_CALLBACK);
  2224. ctx->props = *props;
  2225. if (gsi_ctx->per.ver != GSI_VER_2_2) {
  2226. struct gsihal_reg_ee_n_gsi_ch_cmd ch_cmd;
  2227. mutex_lock(&gsi_ctx->mlock);
  2228. ee = gsi_ctx->per.ee;
  2229. gsi_ctx->ch_dbg[props->ch_id].ch_allocate++;
  2230. ch_cmd.chid = props->ch_id;
  2231. ch_cmd.opcode = op;
  2232. gsihal_write_reg_n_fields(GSI_EE_n_GSI_CH_CMD, ee, &ch_cmd);
  2233. res = wait_for_completion_timeout(&ctx->compl, GSI_CMD_TIMEOUT);
  2234. if (res == 0) {
  2235. GSIERR("chan_hdl=%u timed out\n", props->ch_id);
  2236. mutex_unlock(&gsi_ctx->mlock);
  2237. devm_kfree(gsi_ctx->dev, user_data);
  2238. return -GSI_STATUS_TIMED_OUT;
  2239. }
  2240. if (ctx->state != GSI_CHAN_STATE_ALLOCATED) {
  2241. GSIERR("chan_hdl=%u allocation failed state=%d\n",
  2242. props->ch_id, ctx->state);
  2243. mutex_unlock(&gsi_ctx->mlock);
  2244. devm_kfree(gsi_ctx->dev, user_data);
  2245. return -GSI_STATUS_RES_ALLOC_FAILURE;
  2246. }
  2247. mutex_unlock(&gsi_ctx->mlock);
  2248. } else {
  2249. mutex_lock(&gsi_ctx->mlock);
  2250. ctx->state = GSI_CHAN_STATE_ALLOCATED;
  2251. mutex_unlock(&gsi_ctx->mlock);
  2252. }
  2253. erindex = props->evt_ring_hdl != ~0 ? props->evt_ring_hdl :
  2254. GSI_NO_EVT_ERINDEX;
  2255. if (erindex != GSI_NO_EVT_ERINDEX && erindex >= GSI_EVT_RING_MAX) {
  2256. GSIERR("invalid erindex %u\n", erindex);
  2257. devm_kfree(gsi_ctx->dev, user_data);
  2258. return -GSI_STATUS_INVALID_PARAMS;
  2259. }
  2260. if (erindex < GSI_EVT_RING_MAX) {
  2261. ctx->evtr = &gsi_ctx->evtr[erindex];
  2262. if(ctx->evtr->num_of_chan_allocated
  2263. >= MAX_CHANNELS_SHARING_EVENT_RING) {
  2264. GSIERR(
  2265. "too many channels sharing the same event ring %u\n",
  2266. erindex);
  2267. GSI_ASSERT();
  2268. }
  2269. if (props->prot != GSI_CHAN_PROT_GCI) {
  2270. atomic_inc(&ctx->evtr->chan_ref_cnt);
  2271. if (ctx->evtr->props.exclusive) {
  2272. if (atomic_read(&ctx->evtr->chan_ref_cnt) == 1)
  2273. ctx->evtr->chan
  2274. [ctx->evtr->num_of_chan_allocated++] = ctx;
  2275. }
  2276. else {
  2277. ctx->evtr->chan[ctx->evtr->num_of_chan_allocated++]
  2278. = ctx;
  2279. }
  2280. }
  2281. }
  2282. gsi_program_chan_ctx(props, gsi_ctx->per.ee, erindex);
  2283. spin_lock_init(&ctx->ring.slock);
  2284. gsi_init_chan_ring(props, &ctx->ring);
  2285. if (!props->max_re_expected)
  2286. ctx->props.max_re_expected = ctx->ring.max_num_elem;
  2287. ctx->user_data = user_data;
  2288. *chan_hdl = props->ch_id;
  2289. ctx->allocated = true;
  2290. ctx->stats.dp.last_timestamp = jiffies_to_msecs(jiffies);
  2291. atomic_inc(&gsi_ctx->num_chan);
  2292. if (props->prot == GSI_CHAN_PROT_GCI) {
  2293. gsi_ctx->coal_info.ch_id = props->ch_id;
  2294. gsi_ctx->coal_info.evchid = props->evt_ring_hdl;
  2295. }
  2296. return GSI_STATUS_SUCCESS;
  2297. }
  2298. EXPORT_SYMBOL(gsi_alloc_channel);
  2299. static int gsi_alloc_ap_channel(unsigned int chan_hdl)
  2300. {
  2301. struct gsi_chan_ctx *ctx;
  2302. struct gsihal_reg_ee_n_gsi_ch_cmd ch_cmd;
  2303. int res;
  2304. int ee;
  2305. enum gsi_ch_cmd_opcode op = GSI_CH_ALLOCATE;
  2306. if (!gsi_ctx) {
  2307. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2308. return -GSI_STATUS_NODEV;
  2309. }
  2310. ctx = &gsi_ctx->chan[chan_hdl];
  2311. if (ctx->allocated) {
  2312. GSIERR("chan %d already allocated\n", chan_hdl);
  2313. return -GSI_STATUS_NODEV;
  2314. }
  2315. memset(ctx, 0, sizeof(*ctx));
  2316. mutex_init(&ctx->mlock);
  2317. init_completion(&ctx->compl);
  2318. atomic_set(&ctx->poll_mode, GSI_CHAN_MODE_CALLBACK);
  2319. mutex_lock(&gsi_ctx->mlock);
  2320. ee = gsi_ctx->per.ee;
  2321. gsi_ctx->ch_dbg[chan_hdl].ch_allocate++;
  2322. ch_cmd.chid = chan_hdl;
  2323. ch_cmd.opcode = op;
  2324. gsihal_write_reg_n_fields(GSI_EE_n_GSI_CH_CMD, ee, &ch_cmd);
  2325. res = wait_for_completion_timeout(&ctx->compl, GSI_CMD_TIMEOUT);
  2326. if (res == 0) {
  2327. GSIERR("chan_hdl=%u timed out\n", chan_hdl);
  2328. mutex_unlock(&gsi_ctx->mlock);
  2329. return -GSI_STATUS_TIMED_OUT;
  2330. }
  2331. if (ctx->state != GSI_CHAN_STATE_ALLOCATED) {
  2332. GSIERR("chan_hdl=%u allocation failed state=%d\n",
  2333. chan_hdl, ctx->state);
  2334. mutex_unlock(&gsi_ctx->mlock);
  2335. return -GSI_STATUS_RES_ALLOC_FAILURE;
  2336. }
  2337. mutex_unlock(&gsi_ctx->mlock);
  2338. return GSI_STATUS_SUCCESS;
  2339. }
  2340. static void __gsi_write_channel_scratch(unsigned long chan_hdl,
  2341. union __packed gsi_channel_scratch val)
  2342. {
  2343. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_0,
  2344. gsi_ctx->per.ee, chan_hdl, val.data.word1);
  2345. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_1,
  2346. gsi_ctx->per.ee, chan_hdl, val.data.word2);
  2347. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  2348. gsi_ctx->per.ee, chan_hdl, val.data.word3);
  2349. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_3,
  2350. gsi_ctx->per.ee, chan_hdl, val.data.word4);
  2351. }
  2352. static void __gsi_write_wdi3_channel_scratch2_reg(unsigned long chan_hdl,
  2353. union __packed gsi_wdi3_channel_scratch2_reg val)
  2354. {
  2355. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  2356. gsi_ctx->per.ee, chan_hdl, val.data.word1);
  2357. }
  2358. int gsi_write_channel_scratch3_reg(unsigned long chan_hdl,
  2359. union __packed gsi_wdi_channel_scratch3_reg val)
  2360. {
  2361. struct gsi_chan_ctx *ctx;
  2362. if (!gsi_ctx) {
  2363. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2364. return -GSI_STATUS_NODEV;
  2365. }
  2366. if (chan_hdl >= gsi_ctx->max_ch) {
  2367. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2368. return -GSI_STATUS_INVALID_PARAMS;
  2369. }
  2370. ctx = &gsi_ctx->chan[chan_hdl];
  2371. mutex_lock(&ctx->mlock);
  2372. ctx->scratch.wdi.endp_metadatareg_offset =
  2373. val.wdi.endp_metadatareg_offset;
  2374. ctx->scratch.wdi.qmap_id = val.wdi.qmap_id;
  2375. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_3,
  2376. gsi_ctx->per.ee, chan_hdl, val.data.word1);
  2377. mutex_unlock(&ctx->mlock);
  2378. return GSI_STATUS_SUCCESS;
  2379. }
  2380. EXPORT_SYMBOL(gsi_write_channel_scratch3_reg);
  2381. int gsi_write_channel_scratch2_reg(unsigned long chan_hdl,
  2382. union __packed gsi_wdi2_channel_scratch2_reg val)
  2383. {
  2384. struct gsi_chan_ctx *ctx;
  2385. if (!gsi_ctx) {
  2386. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2387. return -GSI_STATUS_NODEV;
  2388. }
  2389. if (chan_hdl >= gsi_ctx->max_ch) {
  2390. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2391. return -GSI_STATUS_INVALID_PARAMS;
  2392. }
  2393. ctx = &gsi_ctx->chan[chan_hdl];
  2394. mutex_lock(&ctx->mlock);
  2395. ctx->scratch.wdi2_new.endp_metadatareg_offset =
  2396. val.wdi.endp_metadatareg_offset;
  2397. ctx->scratch.wdi2_new.qmap_id = val.wdi.qmap_id;
  2398. val.wdi.update_ri_moderation_threshold =
  2399. ctx->scratch.wdi2_new.update_ri_moderation_threshold;
  2400. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  2401. gsi_ctx->per.ee, chan_hdl, val.data.word1);
  2402. mutex_unlock(&ctx->mlock);
  2403. return GSI_STATUS_SUCCESS;
  2404. }
  2405. EXPORT_SYMBOL(gsi_write_channel_scratch2_reg);
  2406. static void __gsi_read_channel_scratch(unsigned long chan_hdl,
  2407. union __packed gsi_channel_scratch * val)
  2408. {
  2409. val->data.word1 = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_0,
  2410. gsi_ctx->per.ee, chan_hdl);
  2411. val->data.word2 = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_1,
  2412. gsi_ctx->per.ee, chan_hdl);
  2413. val->data.word3 = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  2414. gsi_ctx->per.ee, chan_hdl);
  2415. val->data.word4 = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_3,
  2416. gsi_ctx->per.ee, chan_hdl);
  2417. }
  2418. static void __gsi_read_wdi3_channel_scratch2_reg(unsigned long chan_hdl,
  2419. union __packed gsi_wdi3_channel_scratch2_reg * val)
  2420. {
  2421. val->data.word1 = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  2422. gsi_ctx->per.ee, chan_hdl);
  2423. }
  2424. int gsi_write_channel_scratch(unsigned long chan_hdl,
  2425. union __packed gsi_channel_scratch val)
  2426. {
  2427. struct gsi_chan_ctx *ctx;
  2428. if (!gsi_ctx) {
  2429. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2430. return -GSI_STATUS_NODEV;
  2431. }
  2432. if (chan_hdl >= gsi_ctx->max_ch) {
  2433. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2434. return -GSI_STATUS_INVALID_PARAMS;
  2435. }
  2436. if (gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_ALLOCATED &&
  2437. gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_STOPPED) {
  2438. GSIERR("bad state %d\n",
  2439. gsi_ctx->chan[chan_hdl].state);
  2440. return -GSI_STATUS_UNSUPPORTED_OP;
  2441. }
  2442. ctx = &gsi_ctx->chan[chan_hdl];
  2443. mutex_lock(&ctx->mlock);
  2444. ctx->scratch = val;
  2445. __gsi_write_channel_scratch(chan_hdl, val);
  2446. mutex_unlock(&ctx->mlock);
  2447. return GSI_STATUS_SUCCESS;
  2448. }
  2449. EXPORT_SYMBOL(gsi_write_channel_scratch);
  2450. int gsi_write_wdi3_channel_scratch2_reg(unsigned long chan_hdl,
  2451. union __packed gsi_wdi3_channel_scratch2_reg val)
  2452. {
  2453. struct gsi_chan_ctx *ctx;
  2454. if (!gsi_ctx) {
  2455. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2456. return -GSI_STATUS_NODEV;
  2457. }
  2458. if (chan_hdl >= gsi_ctx->max_ch) {
  2459. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2460. return -GSI_STATUS_INVALID_PARAMS;
  2461. }
  2462. if (gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_ALLOCATED &&
  2463. gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_STARTED &&
  2464. gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_STOPPED) {
  2465. GSIERR("bad state %d\n",
  2466. gsi_ctx->chan[chan_hdl].state);
  2467. return -GSI_STATUS_UNSUPPORTED_OP;
  2468. }
  2469. ctx = &gsi_ctx->chan[chan_hdl];
  2470. mutex_lock(&ctx->mlock);
  2471. ctx->scratch.data.word3 = val.data.word1;
  2472. __gsi_write_wdi3_channel_scratch2_reg(chan_hdl, val);
  2473. mutex_unlock(&ctx->mlock);
  2474. return GSI_STATUS_SUCCESS;
  2475. }
  2476. EXPORT_SYMBOL(gsi_write_wdi3_channel_scratch2_reg);
  2477. int gsi_read_channel_scratch(unsigned long chan_hdl,
  2478. union __packed gsi_channel_scratch *val)
  2479. {
  2480. struct gsi_chan_ctx *ctx;
  2481. if (!gsi_ctx) {
  2482. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2483. return -GSI_STATUS_NODEV;
  2484. }
  2485. if (chan_hdl >= gsi_ctx->max_ch) {
  2486. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2487. return -GSI_STATUS_INVALID_PARAMS;
  2488. }
  2489. if (gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_ALLOCATED &&
  2490. gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_STARTED &&
  2491. gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_STOPPED) {
  2492. GSIERR("bad state %d\n",
  2493. gsi_ctx->chan[chan_hdl].state);
  2494. return -GSI_STATUS_UNSUPPORTED_OP;
  2495. }
  2496. ctx = &gsi_ctx->chan[chan_hdl];
  2497. mutex_lock(&ctx->mlock);
  2498. __gsi_read_channel_scratch(chan_hdl, val);
  2499. mutex_unlock(&ctx->mlock);
  2500. return GSI_STATUS_SUCCESS;
  2501. }
  2502. EXPORT_SYMBOL(gsi_read_channel_scratch);
  2503. int gsi_read_wdi3_channel_scratch2_reg(unsigned long chan_hdl,
  2504. union __packed gsi_wdi3_channel_scratch2_reg * val)
  2505. {
  2506. struct gsi_chan_ctx *ctx;
  2507. if (!gsi_ctx) {
  2508. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2509. return -GSI_STATUS_NODEV;
  2510. }
  2511. if (chan_hdl >= gsi_ctx->max_ch) {
  2512. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2513. return -GSI_STATUS_INVALID_PARAMS;
  2514. }
  2515. if (gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_ALLOCATED &&
  2516. gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_STARTED &&
  2517. gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_STOPPED) {
  2518. GSIERR("bad state %d\n",
  2519. gsi_ctx->chan[chan_hdl].state);
  2520. return -GSI_STATUS_UNSUPPORTED_OP;
  2521. }
  2522. ctx = &gsi_ctx->chan[chan_hdl];
  2523. mutex_lock(&ctx->mlock);
  2524. __gsi_read_wdi3_channel_scratch2_reg(chan_hdl, val);
  2525. mutex_unlock(&ctx->mlock);
  2526. return GSI_STATUS_SUCCESS;
  2527. }
  2528. EXPORT_SYMBOL(gsi_read_wdi3_channel_scratch2_reg);
  2529. int gsi_update_mhi_channel_scratch(unsigned long chan_hdl,
  2530. struct __packed gsi_mhi_channel_scratch mscr)
  2531. {
  2532. struct gsi_chan_ctx *ctx;
  2533. if (!gsi_ctx) {
  2534. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2535. return -GSI_STATUS_NODEV;
  2536. }
  2537. if (chan_hdl >= gsi_ctx->max_ch) {
  2538. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2539. return -GSI_STATUS_INVALID_PARAMS;
  2540. }
  2541. if (gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_ALLOCATED &&
  2542. gsi_ctx->chan[chan_hdl].state != GSI_CHAN_STATE_STOPPED) {
  2543. GSIERR("bad state %d\n",
  2544. gsi_ctx->chan[chan_hdl].state);
  2545. return -GSI_STATUS_UNSUPPORTED_OP;
  2546. }
  2547. ctx = &gsi_ctx->chan[chan_hdl];
  2548. mutex_lock(&ctx->mlock);
  2549. ctx->scratch = __gsi_update_mhi_channel_scratch(chan_hdl, mscr);
  2550. mutex_unlock(&ctx->mlock);
  2551. return GSI_STATUS_SUCCESS;
  2552. }
  2553. EXPORT_SYMBOL(gsi_update_mhi_channel_scratch);
  2554. int gsi_query_channel_db_addr(unsigned long chan_hdl,
  2555. uint32_t *db_addr_wp_lsb, uint32_t *db_addr_wp_msb)
  2556. {
  2557. if (!gsi_ctx) {
  2558. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2559. return -GSI_STATUS_NODEV;
  2560. }
  2561. if (!db_addr_wp_msb || !db_addr_wp_lsb) {
  2562. GSIERR("bad params msb=%pK lsb=%pK\n", db_addr_wp_msb,
  2563. db_addr_wp_lsb);
  2564. return -GSI_STATUS_INVALID_PARAMS;
  2565. }
  2566. if (chan_hdl >= gsi_ctx->max_ch) {
  2567. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2568. return -GSI_STATUS_INVALID_PARAMS;
  2569. }
  2570. if (gsi_ctx->chan[chan_hdl].state == GSI_CHAN_STATE_NOT_ALLOCATED) {
  2571. GSIERR("bad state %d\n",
  2572. gsi_ctx->chan[chan_hdl].state);
  2573. return -GSI_STATUS_UNSUPPORTED_OP;
  2574. }
  2575. *db_addr_wp_lsb = gsi_ctx->per.phys_addr +
  2576. gsihal_get_reg_nk_ofst(GSI_EE_n_GSI_CH_k_DOORBELL_0,
  2577. gsi_ctx->per.ee, chan_hdl);
  2578. *db_addr_wp_msb = gsi_ctx->per.phys_addr +
  2579. gsihal_get_reg_nk_ofst(GSI_EE_n_GSI_CH_k_DOORBELL_1,
  2580. gsi_ctx->per.ee, chan_hdl);
  2581. return GSI_STATUS_SUCCESS;
  2582. }
  2583. EXPORT_SYMBOL(gsi_query_channel_db_addr);
  2584. int gsi_pending_irq_type(void)
  2585. {
  2586. int ee = gsi_ctx->per.ee;
  2587. return gsihal_read_reg_n(GSI_EE_n_CNTXT_TYPE_IRQ, ee);
  2588. }
  2589. EXPORT_SYMBOL(gsi_pending_irq_type);
  2590. int gsi_start_channel(unsigned long chan_hdl)
  2591. {
  2592. enum gsi_ch_cmd_opcode op = GSI_CH_START;
  2593. uint32_t val;
  2594. struct gsihal_reg_ee_n_gsi_ch_cmd ch_cmd;
  2595. struct gsi_chan_ctx *ctx;
  2596. if (!gsi_ctx) {
  2597. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2598. return -GSI_STATUS_NODEV;
  2599. }
  2600. if (chan_hdl >= gsi_ctx->max_ch) {
  2601. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2602. return -GSI_STATUS_INVALID_PARAMS;
  2603. }
  2604. ctx = &gsi_ctx->chan[chan_hdl];
  2605. if (ctx->state != GSI_CHAN_STATE_ALLOCATED &&
  2606. ctx->state != GSI_CHAN_STATE_STOP_IN_PROC &&
  2607. ctx->state != GSI_CHAN_STATE_STOPPED) {
  2608. GSIERR("bad state %d\n", ctx->state);
  2609. return -GSI_STATUS_UNSUPPORTED_OP;
  2610. }
  2611. mutex_lock(&gsi_ctx->mlock);
  2612. reinit_completion(&ctx->compl);
  2613. /* check if INTSET is in IRQ mode for GPI channel */
  2614. val = gsihal_read_reg_n(GSI_EE_n_CNTXT_INTSET, gsi_ctx->per.ee);
  2615. if (ctx->evtr &&
  2616. ctx->evtr->props.intf == GSI_EVT_CHTYPE_GPI_EV &&
  2617. val != GSI_INTR_IRQ) {
  2618. GSIERR("GSI_EE_n_CNTXT_INTSET %d\n", val);
  2619. BUG();
  2620. }
  2621. gsi_ctx->ch_dbg[chan_hdl].ch_start++;
  2622. ch_cmd.chid = chan_hdl;
  2623. ch_cmd.opcode = op;
  2624. gsihal_write_reg_n_fields(GSI_EE_n_GSI_CH_CMD,
  2625. gsi_ctx->per.ee, &ch_cmd);
  2626. GSIDBG("GSI Channel Start, waiting for completion\n");
  2627. gsi_channel_state_change_wait(chan_hdl,
  2628. ctx,
  2629. GSI_START_CMD_TIMEOUT_MS, op);
  2630. if (ctx->state != GSI_CHAN_STATE_STARTED &&
  2631. ctx->state != GSI_CHAN_STATE_FLOW_CONTROL) {
  2632. /*
  2633. * Hardware returned unexpected status, unexpected
  2634. * hardware state.
  2635. */
  2636. GSIERR("chan=%lu timed out, unexpected state=%u\n",
  2637. chan_hdl, ctx->state);
  2638. gsi_dump_ch_info(chan_hdl);
  2639. GSI_ASSERT();
  2640. }
  2641. GSIDBG("GSI Channel=%lu Start success\n", chan_hdl);
  2642. /* write order MUST be MSB followed by LSB */
  2643. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_DOORBELL_1,
  2644. gsi_ctx->per.ee, ctx->props.ch_id, GSI_MSB(ctx->ring.wp_local));
  2645. mutex_unlock(&gsi_ctx->mlock);
  2646. return GSI_STATUS_SUCCESS;
  2647. }
  2648. EXPORT_SYMBOL(gsi_start_channel);
  2649. void gsi_dump_ch_info(unsigned long chan_hdl)
  2650. {
  2651. uint32_t val;
  2652. if (!gsi_ctx) {
  2653. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2654. return;
  2655. }
  2656. if (chan_hdl >= gsi_ctx->max_ch) {
  2657. GSIDBG("invalid chan id %u\n", chan_hdl);
  2658. return;
  2659. }
  2660. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_0,
  2661. gsi_ctx->per.ee, chan_hdl);
  2662. GSIERR("CH%2d CTX0 0x%x\n", chan_hdl, val);
  2663. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_1,
  2664. gsi_ctx->per.ee, chan_hdl);
  2665. GSIERR("CH%2d CTX1 0x%x\n", chan_hdl, val);
  2666. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_2,
  2667. gsi_ctx->per.ee, chan_hdl);
  2668. GSIERR("CH%2d CTX2 0x%x\n", chan_hdl, val);
  2669. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_3,
  2670. gsi_ctx->per.ee, chan_hdl);
  2671. GSIERR("CH%2d CTX3 0x%x\n", chan_hdl, val);
  2672. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_4,
  2673. gsi_ctx->per.ee, chan_hdl);
  2674. GSIERR("CH%2d CTX4 0x%x\n", chan_hdl, val);
  2675. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_5,
  2676. gsi_ctx->per.ee, chan_hdl);
  2677. GSIERR("CH%2d CTX5 0x%x\n", chan_hdl, val);
  2678. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_6,
  2679. gsi_ctx->per.ee, chan_hdl);
  2680. GSIERR("CH%2d CTX6 0x%x\n", chan_hdl, val);
  2681. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_7,
  2682. gsi_ctx->per.ee, chan_hdl);
  2683. GSIERR("CH%2d CTX7 0x%x\n", chan_hdl, val);
  2684. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  2685. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_8,
  2686. gsi_ctx->per.ee, chan_hdl);
  2687. GSIERR("CH%2d CTX8 0x%x\n", chan_hdl, val);
  2688. }
  2689. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_READ_PTR,
  2690. gsi_ctx->per.ee, chan_hdl);
  2691. GSIERR("CH%2d REFRP 0x%x\n", chan_hdl, val);
  2692. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_WRITE_PTR,
  2693. gsi_ctx->per.ee, chan_hdl);
  2694. GSIERR("CH%2d REFWP 0x%x\n", chan_hdl, val);
  2695. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_QOS,
  2696. gsi_ctx->per.ee, chan_hdl);
  2697. GSIERR("CH%2d QOS 0x%x\n", chan_hdl, val);
  2698. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_0,
  2699. gsi_ctx->per.ee, chan_hdl);
  2700. GSIERR("CH%2d SCR0 0x%x\n", chan_hdl, val);
  2701. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_1,
  2702. gsi_ctx->per.ee, chan_hdl);
  2703. GSIERR("CH%2d SCR1 0x%x\n", chan_hdl, val);
  2704. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  2705. gsi_ctx->per.ee, chan_hdl);
  2706. GSIERR("CH%2d SCR2 0x%x\n", chan_hdl, val);
  2707. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_3,
  2708. gsi_ctx->per.ee, chan_hdl);
  2709. GSIERR("CH%2d SCR3 0x%x\n", chan_hdl, val);
  2710. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  2711. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_4,
  2712. gsi_ctx->per.ee, chan_hdl);
  2713. GSIERR("CH%2d SCR4 0x%x\n", chan_hdl, val);
  2714. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_5,
  2715. gsi_ctx->per.ee, chan_hdl);
  2716. GSIERR("CH%2d SCR5 0x%x\n", chan_hdl, val);
  2717. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_6,
  2718. gsi_ctx->per.ee, chan_hdl);
  2719. GSIERR("CH%2d SCR6 0x%x\n", chan_hdl, val);
  2720. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_7,
  2721. gsi_ctx->per.ee, chan_hdl);
  2722. GSIERR("CH%2d SCR7 0x%x\n", chan_hdl, val);
  2723. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_8,
  2724. gsi_ctx->per.ee, chan_hdl);
  2725. GSIERR("CH%2d SCR8 0x%x\n", chan_hdl, val);
  2726. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_9,
  2727. gsi_ctx->per.ee, chan_hdl);
  2728. GSIERR("CH%2d SCR9 0x%x\n", chan_hdl, val);
  2729. }
  2730. return;
  2731. }
  2732. EXPORT_SYMBOL(gsi_dump_ch_info);
  2733. int gsi_stop_channel(unsigned long chan_hdl)
  2734. {
  2735. enum gsi_ch_cmd_opcode op = GSI_CH_STOP;
  2736. int res;
  2737. uint32_t val;
  2738. struct gsihal_reg_ee_n_gsi_ch_cmd ch_cmd;
  2739. struct gsi_chan_ctx *ctx;
  2740. if (!gsi_ctx) {
  2741. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2742. return -GSI_STATUS_NODEV;
  2743. }
  2744. if (chan_hdl >= gsi_ctx->max_ch) {
  2745. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2746. return -GSI_STATUS_INVALID_PARAMS;
  2747. }
  2748. ctx = &gsi_ctx->chan[chan_hdl];
  2749. if (ctx->state == GSI_CHAN_STATE_STOPPED) {
  2750. GSIDBG("chan_hdl=%lu already stopped\n", chan_hdl);
  2751. return GSI_STATUS_SUCCESS;
  2752. }
  2753. if (ctx->state != GSI_CHAN_STATE_STARTED &&
  2754. ctx->state != GSI_CHAN_STATE_STOP_IN_PROC &&
  2755. ctx->state != GSI_CHAN_STATE_ERROR) {
  2756. GSIERR("bad state %d\n", ctx->state);
  2757. return -GSI_STATUS_UNSUPPORTED_OP;
  2758. }
  2759. mutex_lock(&gsi_ctx->mlock);
  2760. reinit_completion(&ctx->compl);
  2761. /* check if INTSET is in IRQ mode for GPI channel */
  2762. val = gsihal_read_reg_n(GSI_EE_n_CNTXT_INTSET, gsi_ctx->per.ee);
  2763. if (ctx->evtr &&
  2764. ctx->evtr->props.intf == GSI_EVT_CHTYPE_GPI_EV &&
  2765. val != GSI_INTR_IRQ) {
  2766. GSIERR("GSI_EE_n_CNTXT_INTSET %d\n", val);
  2767. BUG();
  2768. }
  2769. gsi_ctx->ch_dbg[chan_hdl].ch_stop++;
  2770. ch_cmd.chid = chan_hdl;
  2771. ch_cmd.opcode = op;
  2772. gsihal_write_reg_n_fields(GSI_EE_n_GSI_CH_CMD,
  2773. gsi_ctx->per.ee, &ch_cmd);
  2774. GSIDBG("GSI Channel Stop, waiting for completion: 0x%x\n", val);
  2775. gsi_channel_state_change_wait(chan_hdl,
  2776. ctx,
  2777. GSI_STOP_CMD_TIMEOUT_MS, op);
  2778. if (ctx->state != GSI_CHAN_STATE_STOPPED &&
  2779. ctx->state != GSI_CHAN_STATE_STOP_IN_PROC) {
  2780. GSIERR("chan=%lu unexpected state=%u\n", chan_hdl, ctx->state);
  2781. gsi_dump_ch_info(chan_hdl);
  2782. res = -GSI_STATUS_BAD_STATE;
  2783. BUG();
  2784. goto free_lock;
  2785. }
  2786. if (ctx->state == GSI_CHAN_STATE_STOP_IN_PROC) {
  2787. GSIERR("chan=%lu busy try again\n", chan_hdl);
  2788. res = -GSI_STATUS_AGAIN;
  2789. goto free_lock;
  2790. }
  2791. res = GSI_STATUS_SUCCESS;
  2792. free_lock:
  2793. mutex_unlock(&gsi_ctx->mlock);
  2794. return res;
  2795. }
  2796. EXPORT_SYMBOL(gsi_stop_channel);
  2797. int gsi_stop_db_channel(unsigned long chan_hdl)
  2798. {
  2799. enum gsi_ch_cmd_opcode op = GSI_CH_DB_STOP;
  2800. int res;
  2801. struct gsihal_reg_ee_n_gsi_ch_cmd ch_cmd;
  2802. struct gsi_chan_ctx *ctx;
  2803. if (!gsi_ctx) {
  2804. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2805. return -GSI_STATUS_NODEV;
  2806. }
  2807. if (chan_hdl >= gsi_ctx->max_ch) {
  2808. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2809. return -GSI_STATUS_INVALID_PARAMS;
  2810. }
  2811. ctx = &gsi_ctx->chan[chan_hdl];
  2812. if (ctx->state == GSI_CHAN_STATE_STOPPED) {
  2813. GSIDBG("chan_hdl=%lu already stopped\n", chan_hdl);
  2814. return GSI_STATUS_SUCCESS;
  2815. }
  2816. if (ctx->state != GSI_CHAN_STATE_STARTED &&
  2817. ctx->state != GSI_CHAN_STATE_STOP_IN_PROC) {
  2818. GSIERR("bad state %d\n", ctx->state);
  2819. return -GSI_STATUS_UNSUPPORTED_OP;
  2820. }
  2821. mutex_lock(&gsi_ctx->mlock);
  2822. reinit_completion(&ctx->compl);
  2823. gsi_ctx->ch_dbg[chan_hdl].ch_db_stop++;
  2824. ch_cmd.chid = chan_hdl;
  2825. ch_cmd.opcode = op;
  2826. gsihal_write_reg_n_fields(GSI_EE_n_GSI_CH_CMD,
  2827. gsi_ctx->per.ee, &ch_cmd);
  2828. res = wait_for_completion_timeout(&ctx->compl,
  2829. msecs_to_jiffies(GSI_STOP_CMD_TIMEOUT_MS));
  2830. if (res == 0) {
  2831. GSIERR("chan_hdl=%lu timed out\n", chan_hdl);
  2832. res = -GSI_STATUS_TIMED_OUT;
  2833. goto free_lock;
  2834. }
  2835. if (ctx->state != GSI_CHAN_STATE_STOPPED &&
  2836. ctx->state != GSI_CHAN_STATE_STOP_IN_PROC) {
  2837. GSIERR("chan=%lu unexpected state=%u\n", chan_hdl, ctx->state);
  2838. res = -GSI_STATUS_BAD_STATE;
  2839. goto free_lock;
  2840. }
  2841. if (ctx->state == GSI_CHAN_STATE_STOP_IN_PROC) {
  2842. GSIERR("chan=%lu busy try again\n", chan_hdl);
  2843. res = -GSI_STATUS_AGAIN;
  2844. goto free_lock;
  2845. }
  2846. res = GSI_STATUS_SUCCESS;
  2847. free_lock:
  2848. mutex_unlock(&gsi_ctx->mlock);
  2849. return res;
  2850. }
  2851. EXPORT_SYMBOL(gsi_stop_db_channel);
  2852. int gsi_reset_channel(unsigned long chan_hdl)
  2853. {
  2854. enum gsi_ch_cmd_opcode op = GSI_CH_RESET;
  2855. int res;
  2856. struct gsihal_reg_ee_n_gsi_ch_cmd ch_cmd;
  2857. struct gsi_chan_ctx *ctx;
  2858. bool reset_done = false;
  2859. uint32_t retry_cnt = 0;
  2860. if (!gsi_ctx) {
  2861. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2862. return -GSI_STATUS_NODEV;
  2863. }
  2864. if (chan_hdl >= gsi_ctx->max_ch) {
  2865. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2866. return -GSI_STATUS_INVALID_PARAMS;
  2867. }
  2868. ctx = &gsi_ctx->chan[chan_hdl];
  2869. /*
  2870. * In WDI3 case, if SAP enabled but no client connected,
  2871. * GSI will be in allocated state. When SAP disabled,
  2872. * gsi_reset_channel will be called and reset is needed.
  2873. */
  2874. if (ctx->state != GSI_CHAN_STATE_STOPPED &&
  2875. ctx->state != GSI_CHAN_STATE_ALLOCATED) {
  2876. GSIERR("bad state %d\n", ctx->state);
  2877. return -GSI_STATUS_UNSUPPORTED_OP;
  2878. }
  2879. mutex_lock(&gsi_ctx->mlock);
  2880. reset:
  2881. reinit_completion(&ctx->compl);
  2882. gsi_ctx->ch_dbg[chan_hdl].ch_reset++;
  2883. ch_cmd.chid = chan_hdl;
  2884. ch_cmd.opcode = op;
  2885. gsihal_write_reg_n_fields(GSI_EE_n_GSI_CH_CMD,
  2886. gsi_ctx->per.ee, &ch_cmd);
  2887. res = wait_for_completion_timeout(&ctx->compl, GSI_CMD_TIMEOUT);
  2888. if (res == 0) {
  2889. GSIERR("chan_hdl=%lu timed out\n", chan_hdl);
  2890. mutex_unlock(&gsi_ctx->mlock);
  2891. return -GSI_STATUS_TIMED_OUT;
  2892. }
  2893. revrfy_chnlstate:
  2894. if (ctx->state != GSI_CHAN_STATE_ALLOCATED) {
  2895. GSIERR("chan_hdl=%lu unexpected state=%u\n", chan_hdl,
  2896. ctx->state);
  2897. /* GSI register update state not sync with gsi channel
  2898. * context state not sync, need to wait for 1ms to sync.
  2899. */
  2900. retry_cnt++;
  2901. if (retry_cnt <= GSI_CHNL_STATE_MAX_RETRYCNT) {
  2902. usleep_range(GSI_RESET_WA_MIN_SLEEP,
  2903. GSI_RESET_WA_MAX_SLEEP);
  2904. goto revrfy_chnlstate;
  2905. }
  2906. /*
  2907. * Hardware returned incorrect state, unexpected
  2908. * hardware state.
  2909. */
  2910. GSI_ASSERT();
  2911. }
  2912. /* Hardware issue fixed from GSI 2.0 and no need for the WA */
  2913. if (gsi_ctx->per.ver >= GSI_VER_2_0)
  2914. reset_done = true;
  2915. /* workaround: reset GSI producers again */
  2916. if (ctx->props.dir == GSI_CHAN_DIR_FROM_GSI && !reset_done) {
  2917. usleep_range(GSI_RESET_WA_MIN_SLEEP, GSI_RESET_WA_MAX_SLEEP);
  2918. reset_done = true;
  2919. goto reset;
  2920. }
  2921. if (ctx->props.cleanup_cb)
  2922. gsi_cleanup_xfer_user_data(chan_hdl, ctx->props.cleanup_cb);
  2923. gsi_program_chan_ctx(&ctx->props, gsi_ctx->per.ee,
  2924. ctx->evtr ? ctx->evtr->id : GSI_NO_EVT_ERINDEX);
  2925. gsi_init_chan_ring(&ctx->props, &ctx->ring);
  2926. /* restore scratch */
  2927. __gsi_write_channel_scratch(chan_hdl, ctx->scratch);
  2928. mutex_unlock(&gsi_ctx->mlock);
  2929. return GSI_STATUS_SUCCESS;
  2930. }
  2931. EXPORT_SYMBOL(gsi_reset_channel);
  2932. int gsi_dealloc_channel(unsigned long chan_hdl)
  2933. {
  2934. enum gsi_ch_cmd_opcode op = GSI_CH_DE_ALLOC;
  2935. int res;
  2936. struct gsihal_reg_ee_n_gsi_ch_cmd ch_cmd;
  2937. struct gsi_chan_ctx *ctx;
  2938. if (!gsi_ctx) {
  2939. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  2940. return -GSI_STATUS_NODEV;
  2941. }
  2942. if (chan_hdl >= gsi_ctx->max_ch) {
  2943. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  2944. return -GSI_STATUS_INVALID_PARAMS;
  2945. }
  2946. ctx = &gsi_ctx->chan[chan_hdl];
  2947. if (ctx->state != GSI_CHAN_STATE_ALLOCATED) {
  2948. GSIERR("bad state %d\n", ctx->state);
  2949. return -GSI_STATUS_UNSUPPORTED_OP;
  2950. }
  2951. /*In GSI_VER_2_2 version deallocation channel not supported*/
  2952. if (gsi_ctx->per.ver != GSI_VER_2_2) {
  2953. mutex_lock(&gsi_ctx->mlock);
  2954. reinit_completion(&ctx->compl);
  2955. gsi_ctx->ch_dbg[chan_hdl].ch_de_alloc++;
  2956. ch_cmd.chid = chan_hdl;
  2957. ch_cmd.opcode = op;
  2958. gsihal_write_reg_n_fields(GSI_EE_n_GSI_CH_CMD,
  2959. gsi_ctx->per.ee, &ch_cmd);
  2960. res = wait_for_completion_timeout(&ctx->compl, GSI_CMD_TIMEOUT);
  2961. if (res == 0) {
  2962. GSIERR("chan_hdl=%lu timed out\n", chan_hdl);
  2963. mutex_unlock(&gsi_ctx->mlock);
  2964. return -GSI_STATUS_TIMED_OUT;
  2965. }
  2966. if (ctx->state != GSI_CHAN_STATE_NOT_ALLOCATED) {
  2967. GSIERR("chan_hdl=%lu unexpected state=%u\n", chan_hdl,
  2968. ctx->state);
  2969. /* Hardware returned incorrect value */
  2970. GSI_ASSERT();
  2971. }
  2972. mutex_unlock(&gsi_ctx->mlock);
  2973. } else {
  2974. mutex_lock(&gsi_ctx->mlock);
  2975. GSIDBG("In GSI_VER_2_2 channel deallocation not supported\n");
  2976. ctx->state = GSI_CHAN_STATE_NOT_ALLOCATED;
  2977. GSIDBG("chan_hdl=%lu Channel state = %u\n", chan_hdl,
  2978. ctx->state);
  2979. mutex_unlock(&gsi_ctx->mlock);
  2980. }
  2981. devm_kfree(gsi_ctx->dev, ctx->user_data);
  2982. ctx->allocated = false;
  2983. if (ctx->evtr && (ctx->props.prot != GSI_CHAN_PROT_GCI)) {
  2984. atomic_dec(&ctx->evtr->chan_ref_cnt);
  2985. ctx->evtr->num_of_chan_allocated--;
  2986. }
  2987. atomic_dec(&gsi_ctx->num_chan);
  2988. if (ctx->props.prot == GSI_CHAN_PROT_GCI) {
  2989. gsi_ctx->coal_info.ch_id = GSI_CHAN_MAX;
  2990. gsi_ctx->coal_info.evchid = GSI_EVT_RING_MAX;
  2991. }
  2992. return GSI_STATUS_SUCCESS;
  2993. }
  2994. EXPORT_SYMBOL(gsi_dealloc_channel);
  2995. void gsi_update_ch_dp_stats(struct gsi_chan_ctx *ctx, uint16_t used)
  2996. {
  2997. unsigned long now = jiffies_to_msecs(jiffies);
  2998. unsigned long elapsed;
  2999. if (used == 0) {
  3000. elapsed = now - ctx->stats.dp.last_timestamp;
  3001. if (ctx->stats.dp.empty_time < elapsed)
  3002. ctx->stats.dp.empty_time = elapsed;
  3003. }
  3004. if (used <= ctx->props.max_re_expected / 3)
  3005. ++ctx->stats.dp.ch_below_lo;
  3006. else if (used <= 2 * ctx->props.max_re_expected / 3)
  3007. ++ctx->stats.dp.ch_below_hi;
  3008. else
  3009. ++ctx->stats.dp.ch_above_hi;
  3010. ctx->stats.dp.last_timestamp = now;
  3011. }
  3012. static void __gsi_query_channel_free_re(struct gsi_chan_ctx *ctx,
  3013. uint16_t *num_free_re)
  3014. {
  3015. uint16_t start;
  3016. uint16_t end;
  3017. uint64_t rp;
  3018. int ee = gsi_ctx->per.ee;
  3019. uint16_t used;
  3020. WARN_ON(ctx->props.prot != GSI_CHAN_PROT_GPI);
  3021. if (!ctx->evtr) {
  3022. rp = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_4,
  3023. ee, ctx->props.ch_id);
  3024. rp |= ctx->ring.rp & GSI_MSB_MASK;
  3025. ctx->ring.rp = rp;
  3026. } else {
  3027. rp = ctx->ring.rp_local;
  3028. }
  3029. start = gsi_find_idx_from_addr(&ctx->ring, rp);
  3030. end = gsi_find_idx_from_addr(&ctx->ring, ctx->ring.wp_local);
  3031. if (end >= start)
  3032. used = end - start;
  3033. else
  3034. used = ctx->ring.max_num_elem + 1 - (start - end);
  3035. *num_free_re = ctx->ring.max_num_elem - used;
  3036. }
  3037. int gsi_query_channel_info(unsigned long chan_hdl,
  3038. struct gsi_chan_info *info)
  3039. {
  3040. struct gsi_chan_ctx *ctx;
  3041. spinlock_t *slock;
  3042. unsigned long flags;
  3043. uint64_t rp;
  3044. uint64_t wp;
  3045. int ee;
  3046. if (!gsi_ctx) {
  3047. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3048. return -GSI_STATUS_NODEV;
  3049. }
  3050. if (chan_hdl >= gsi_ctx->max_ch || !info) {
  3051. GSIERR("bad params chan_hdl=%lu info=%pK\n", chan_hdl, info);
  3052. return -GSI_STATUS_INVALID_PARAMS;
  3053. }
  3054. ctx = &gsi_ctx->chan[chan_hdl];
  3055. if (ctx->evtr) {
  3056. slock = &ctx->evtr->ring.slock;
  3057. info->evt_valid = true;
  3058. } else {
  3059. slock = &ctx->ring.slock;
  3060. info->evt_valid = false;
  3061. }
  3062. spin_lock_irqsave(slock, flags);
  3063. ee = gsi_ctx->per.ee;
  3064. rp = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_4,
  3065. ee, ctx->props.ch_id);
  3066. rp |= ((uint64_t)gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_5,
  3067. ee, ctx->props.ch_id)) << 32;
  3068. ctx->ring.rp = rp;
  3069. info->rp = rp;
  3070. wp = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_6,
  3071. ee, ctx->props.ch_id);
  3072. wp |= ((uint64_t)gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_7,
  3073. ee, ctx->props.ch_id)) << 32;
  3074. ctx->ring.wp = wp;
  3075. info->wp = wp;
  3076. if (info->evt_valid) {
  3077. rp = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_4,
  3078. ee, ctx->evtr->id);
  3079. rp |= ((uint64_t)gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_5,
  3080. ee, ctx->evtr->id)) << 32;
  3081. info->evt_rp = rp;
  3082. wp = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_6,
  3083. ee, ctx->evtr->id);
  3084. wp |= ((uint64_t)gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_7,
  3085. ee, ctx->evtr->id)) << 32;
  3086. info->evt_wp = wp;
  3087. }
  3088. spin_unlock_irqrestore(slock, flags);
  3089. GSIDBG("ch=%lu RP=0x%llx WP=0x%llx ev_valid=%d ERP=0x%llx EWP=0x%llx\n",
  3090. chan_hdl, info->rp, info->wp,
  3091. info->evt_valid, info->evt_rp, info->evt_wp);
  3092. return GSI_STATUS_SUCCESS;
  3093. }
  3094. EXPORT_SYMBOL(gsi_query_channel_info);
  3095. int gsi_is_channel_empty(unsigned long chan_hdl, bool *is_empty)
  3096. {
  3097. struct gsi_chan_ctx *ctx;
  3098. spinlock_t *slock;
  3099. unsigned long flags;
  3100. uint64_t rp;
  3101. uint64_t wp;
  3102. uint64_t rp_local;
  3103. int ee;
  3104. if (!gsi_ctx) {
  3105. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3106. return -GSI_STATUS_NODEV;
  3107. }
  3108. if (chan_hdl >= gsi_ctx->max_ch || !is_empty) {
  3109. GSIERR("bad params chan_hdl=%lu is_empty=%pK\n",
  3110. chan_hdl, is_empty);
  3111. return -GSI_STATUS_INVALID_PARAMS;
  3112. }
  3113. ctx = &gsi_ctx->chan[chan_hdl];
  3114. ee = gsi_ctx->per.ee;
  3115. if (ctx->props.prot != GSI_CHAN_PROT_GPI &&
  3116. ctx->props.prot != GSI_CHAN_PROT_GCI) {
  3117. GSIERR("op not supported for protocol %u\n", ctx->props.prot);
  3118. return -GSI_STATUS_UNSUPPORTED_OP;
  3119. }
  3120. if (ctx->evtr)
  3121. slock = &ctx->evtr->ring.slock;
  3122. else
  3123. slock = &ctx->ring.slock;
  3124. spin_lock_irqsave(slock, flags);
  3125. if (ctx->props.dir == GSI_CHAN_DIR_FROM_GSI && ctx->evtr) {
  3126. rp = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_4,
  3127. ee, ctx->evtr->id);
  3128. rp |= ctx->evtr->ring.rp & GSI_MSB_MASK;
  3129. ctx->evtr->ring.rp = rp;
  3130. wp = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_6,
  3131. ee, ctx->evtr->id);
  3132. wp |= ctx->evtr->ring.wp & GSI_MSB_MASK;
  3133. ctx->evtr->ring.wp = wp;
  3134. rp_local = ctx->evtr->ring.rp_local;
  3135. } else {
  3136. rp = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_4,
  3137. ee, ctx->props.ch_id);
  3138. rp |= ctx->ring.rp & GSI_MSB_MASK;
  3139. ctx->ring.rp = rp;
  3140. wp = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_6,
  3141. ee, ctx->props.ch_id);
  3142. wp |= ctx->ring.wp & GSI_MSB_MASK;
  3143. ctx->ring.wp = wp;
  3144. rp_local = ctx->ring.rp_local;
  3145. }
  3146. if (ctx->props.dir == GSI_CHAN_DIR_FROM_GSI)
  3147. *is_empty = (rp_local == rp) ? true : false;
  3148. else
  3149. *is_empty = (wp == rp) ? true : false;
  3150. spin_unlock_irqrestore(slock, flags);
  3151. if (ctx->props.dir == GSI_CHAN_DIR_FROM_GSI && ctx->evtr)
  3152. GSIDBG("ch=%ld ev=%d RP=0x%llx WP=0x%llx RP_LOCAL=0x%llx\n",
  3153. chan_hdl, ctx->evtr->id, rp, wp, rp_local);
  3154. else
  3155. GSIDBG("ch=%lu RP=0x%llx WP=0x%llx RP_LOCAL=0x%llx\n",
  3156. chan_hdl, rp, wp, rp_local);
  3157. return GSI_STATUS_SUCCESS;
  3158. }
  3159. EXPORT_SYMBOL(gsi_is_channel_empty);
  3160. bool gsi_is_event_pending(unsigned long chan_hdl) {
  3161. struct gsi_chan_ctx *ctx;
  3162. uint64_t rp;
  3163. uint64_t rp_local;
  3164. int ee;
  3165. if (chan_hdl >= gsi_ctx->max_ch) {
  3166. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  3167. return false;
  3168. }
  3169. ctx = &gsi_ctx->chan[chan_hdl];
  3170. ee = gsi_ctx->per.ee;
  3171. /* read only, updating will be handled in NAPI context if needed */
  3172. rp = ctx->evtr->props.gsi_read_event_ring_rp(
  3173. &ctx->evtr->props, ctx->evtr->id, ee);
  3174. rp |= ctx->evtr->ring.rp & GSI_MSB_MASK;
  3175. rp_local = ctx->evtr->ring.rp_local;
  3176. return rp != rp_local;
  3177. }
  3178. EXPORT_SYMBOL(gsi_is_event_pending);
  3179. int __gsi_get_gci_cookie(struct gsi_chan_ctx *ctx, uint16_t idx)
  3180. {
  3181. int i;
  3182. int end;
  3183. if (!ctx->user_data[idx].valid) {
  3184. ctx->user_data[idx].valid = true;
  3185. return idx;
  3186. }
  3187. /*
  3188. * at this point we need to find an "escape buffer" for the cookie
  3189. * as the userdata in this spot is in use. This happens if the TRE at
  3190. * idx is not completed yet and it is getting reused by a new TRE.
  3191. */
  3192. ctx->stats.userdata_in_use++;
  3193. end = ctx->ring.max_num_elem + 1;
  3194. for (i = 0; i < GSI_VEID_MAX; i++) {
  3195. if (!ctx->user_data[end + i].valid) {
  3196. ctx->user_data[end + i].valid = true;
  3197. return end + i;
  3198. }
  3199. }
  3200. /* Go over original userdata when escape buffer is full (costly) */
  3201. GSIDBG("escape buffer is full\n");
  3202. for (i = 0; i < end; i++) {
  3203. if (!ctx->user_data[i].valid) {
  3204. ctx->user_data[i].valid = true;
  3205. return i;
  3206. }
  3207. }
  3208. /* Everything is full (possibly a stall) */
  3209. GSIERR("both userdata array and escape buffer is full\n");
  3210. BUG();
  3211. return 0xFFFF;
  3212. }
  3213. int __gsi_populate_gci_tre(struct gsi_chan_ctx *ctx,
  3214. struct gsi_xfer_elem *xfer)
  3215. {
  3216. struct gsi_gci_tre gci_tre;
  3217. struct gsi_gci_tre *tre_gci_ptr;
  3218. uint16_t idx;
  3219. memset(&gci_tre, 0, sizeof(gci_tre));
  3220. if (xfer->addr & 0xFFFFFF0000000000) {
  3221. GSIERR("chan_hdl=%u add too large=%llx\n",
  3222. ctx->props.ch_id, xfer->addr);
  3223. return -EINVAL;
  3224. }
  3225. if (xfer->type != GSI_XFER_ELEM_DATA) {
  3226. GSIERR("chan_hdl=%u bad RE type=%u\n", ctx->props.ch_id,
  3227. xfer->type);
  3228. return -EINVAL;
  3229. }
  3230. idx = gsi_find_idx_from_addr(&ctx->ring, ctx->ring.wp_local);
  3231. tre_gci_ptr = (struct gsi_gci_tre *)(ctx->ring.base_va +
  3232. idx * ctx->ring.elem_sz);
  3233. gci_tre.buffer_ptr = xfer->addr;
  3234. gci_tre.buf_len = xfer->len;
  3235. gci_tre.re_type = GSI_RE_COAL;
  3236. gci_tre.cookie = __gsi_get_gci_cookie(ctx, idx);
  3237. if (gci_tre.cookie > (ctx->ring.max_num_elem + GSI_VEID_MAX))
  3238. return -EPERM;
  3239. /* write the TRE to ring */
  3240. *tre_gci_ptr = gci_tre;
  3241. ctx->user_data[gci_tre.cookie].p = xfer->xfer_user_data;
  3242. return 0;
  3243. }
  3244. int __gsi_populate_tre(struct gsi_chan_ctx *ctx,
  3245. struct gsi_xfer_elem *xfer)
  3246. {
  3247. struct gsi_tre tre;
  3248. struct gsi_tre *tre_ptr;
  3249. uint16_t idx;
  3250. memset(&tre, 0, sizeof(tre));
  3251. tre.buffer_ptr = xfer->addr;
  3252. tre.buf_len = xfer->len;
  3253. if (xfer->type == GSI_XFER_ELEM_DATA) {
  3254. tre.re_type = GSI_RE_XFER;
  3255. } else if (xfer->type == GSI_XFER_ELEM_IMME_CMD) {
  3256. tre.re_type = GSI_RE_IMMD_CMD;
  3257. } else if (xfer->type == GSI_XFER_ELEM_NOP) {
  3258. tre.re_type = GSI_RE_NOP;
  3259. } else {
  3260. GSIERR("chan_hdl=%u bad RE type=%u\n", ctx->props.ch_id,
  3261. xfer->type);
  3262. return -EINVAL;
  3263. }
  3264. tre.bei = (xfer->flags & GSI_XFER_FLAG_BEI) ? 1 : 0;
  3265. tre.ieot = (xfer->flags & GSI_XFER_FLAG_EOT) ? 1 : 0;
  3266. tre.ieob = (xfer->flags & GSI_XFER_FLAG_EOB) ? 1 : 0;
  3267. tre.chain = (xfer->flags & GSI_XFER_FLAG_CHAIN) ? 1 : 0;
  3268. if (unlikely(ctx->state == GSI_CHAN_STATE_NOT_ALLOCATED)) {
  3269. GSIERR("bad state %d\n", ctx->state);
  3270. return -GSI_STATUS_UNSUPPORTED_OP;
  3271. }
  3272. idx = gsi_find_idx_from_addr(&ctx->ring, ctx->ring.wp_local);
  3273. tre_ptr = (struct gsi_tre *)(ctx->ring.base_va +
  3274. idx * ctx->ring.elem_sz);
  3275. /* write the TRE to ring */
  3276. *tre_ptr = tre;
  3277. ctx->user_data[idx].valid = true;
  3278. ctx->user_data[idx].p = xfer->xfer_user_data;
  3279. return 0;
  3280. }
  3281. int gsi_queue_xfer(unsigned long chan_hdl, uint16_t num_xfers,
  3282. struct gsi_xfer_elem *xfer, bool ring_db)
  3283. {
  3284. struct gsi_chan_ctx *ctx;
  3285. uint16_t free;
  3286. uint64_t wp_rollback;
  3287. int i;
  3288. spinlock_t *slock;
  3289. unsigned long flags;
  3290. if (!gsi_ctx) {
  3291. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3292. return -GSI_STATUS_NODEV;
  3293. }
  3294. if (chan_hdl >= gsi_ctx->max_ch || (num_xfers && !xfer)) {
  3295. GSIERR("bad params chan_hdl=%lu num_xfers=%u xfer=%pK\n",
  3296. chan_hdl, num_xfers, xfer);
  3297. return -GSI_STATUS_INVALID_PARAMS;
  3298. }
  3299. if (unlikely(gsi_ctx->chan[chan_hdl].state
  3300. == GSI_CHAN_STATE_NOT_ALLOCATED)) {
  3301. GSIERR("bad state %d\n",
  3302. gsi_ctx->chan[chan_hdl].state);
  3303. return -GSI_STATUS_UNSUPPORTED_OP;
  3304. }
  3305. ctx = &gsi_ctx->chan[chan_hdl];
  3306. if (ctx->props.prot != GSI_CHAN_PROT_GPI &&
  3307. ctx->props.prot != GSI_CHAN_PROT_GCI) {
  3308. GSIERR("op not supported for protocol %u\n", ctx->props.prot);
  3309. return -GSI_STATUS_UNSUPPORTED_OP;
  3310. }
  3311. if (ctx->evtr)
  3312. slock = &ctx->evtr->ring.slock;
  3313. else
  3314. slock = &ctx->ring.slock;
  3315. spin_lock_irqsave(slock, flags);
  3316. /* allow only ring doorbell */
  3317. if (!num_xfers)
  3318. goto ring_doorbell;
  3319. /*
  3320. * for GCI channels the responsibility is on the caller to make sure
  3321. * there is enough room in the TRE.
  3322. */
  3323. if (ctx->props.prot != GSI_CHAN_PROT_GCI) {
  3324. __gsi_query_channel_free_re(ctx, &free);
  3325. if (num_xfers > free) {
  3326. GSIERR("chan_hdl=%lu num_xfers=%u free=%u\n",
  3327. chan_hdl, num_xfers, free);
  3328. spin_unlock_irqrestore(slock, flags);
  3329. return -GSI_STATUS_RING_INSUFFICIENT_SPACE;
  3330. }
  3331. }
  3332. wp_rollback = ctx->ring.wp_local;
  3333. for (i = 0; i < num_xfers; i++) {
  3334. if (ctx->props.prot == GSI_CHAN_PROT_GCI) {
  3335. if (__gsi_populate_gci_tre(ctx, &xfer[i]))
  3336. break;
  3337. } else {
  3338. if (__gsi_populate_tre(ctx, &xfer[i]))
  3339. break;
  3340. }
  3341. gsi_incr_ring_wp(&ctx->ring);
  3342. }
  3343. if (i != num_xfers) {
  3344. /* reject all the xfers */
  3345. ctx->ring.wp_local = wp_rollback;
  3346. spin_unlock_irqrestore(slock, flags);
  3347. return -GSI_STATUS_INVALID_PARAMS;
  3348. }
  3349. ctx->stats.queued += num_xfers;
  3350. ring_doorbell:
  3351. if (ring_db) {
  3352. /* ensure TRE is set before ringing doorbell */
  3353. wmb();
  3354. gsi_ring_chan_doorbell(ctx);
  3355. }
  3356. spin_unlock_irqrestore(slock, flags);
  3357. return GSI_STATUS_SUCCESS;
  3358. }
  3359. EXPORT_SYMBOL(gsi_queue_xfer);
  3360. int gsi_start_xfer(unsigned long chan_hdl)
  3361. {
  3362. struct gsi_chan_ctx *ctx;
  3363. if (!gsi_ctx) {
  3364. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3365. return -GSI_STATUS_NODEV;
  3366. }
  3367. if (chan_hdl >= gsi_ctx->max_ch) {
  3368. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  3369. return -GSI_STATUS_INVALID_PARAMS;
  3370. }
  3371. ctx = &gsi_ctx->chan[chan_hdl];
  3372. if (ctx->props.prot != GSI_CHAN_PROT_GPI &&
  3373. ctx->props.prot != GSI_CHAN_PROT_GCI) {
  3374. GSIERR("op not supported for protocol %u\n", ctx->props.prot);
  3375. return -GSI_STATUS_UNSUPPORTED_OP;
  3376. }
  3377. if (ctx->state == GSI_CHAN_STATE_NOT_ALLOCATED) {
  3378. GSIERR("bad state %d\n", ctx->state);
  3379. return -GSI_STATUS_UNSUPPORTED_OP;
  3380. }
  3381. if (ctx->ring.wp == ctx->ring.wp_local)
  3382. return GSI_STATUS_SUCCESS;
  3383. gsi_ring_chan_doorbell(ctx);
  3384. return GSI_STATUS_SUCCESS;
  3385. };
  3386. EXPORT_SYMBOL(gsi_start_xfer);
  3387. int gsi_poll_channel(unsigned long chan_hdl,
  3388. struct gsi_chan_xfer_notify *notify)
  3389. {
  3390. int unused_var;
  3391. return gsi_poll_n_channel(chan_hdl, notify, 1, &unused_var);
  3392. }
  3393. EXPORT_SYMBOL(gsi_poll_channel);
  3394. int gsi_poll_n_channel(unsigned long chan_hdl,
  3395. struct gsi_chan_xfer_notify *notify,
  3396. int expected_num, int *actual_num)
  3397. {
  3398. struct gsi_chan_ctx *ctx;
  3399. uint64_t rp;
  3400. int ee;
  3401. int i;
  3402. unsigned long flags;
  3403. if (!gsi_ctx) {
  3404. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3405. return -GSI_STATUS_NODEV;
  3406. }
  3407. if (chan_hdl >= gsi_ctx->max_ch || !notify ||
  3408. !actual_num || expected_num <= 0) {
  3409. GSIERR("bad params chan_hdl=%lu notify=%pK\n",
  3410. chan_hdl, notify);
  3411. GSIERR("actual_num=%pK expected_num=%d\n",
  3412. actual_num, expected_num);
  3413. return -GSI_STATUS_INVALID_PARAMS;
  3414. }
  3415. ctx = &gsi_ctx->chan[chan_hdl];
  3416. ee = gsi_ctx->per.ee;
  3417. if (ctx->props.prot != GSI_CHAN_PROT_GPI &&
  3418. ctx->props.prot != GSI_CHAN_PROT_GCI) {
  3419. GSIERR("op not supported for protocol %u\n", ctx->props.prot);
  3420. return -GSI_STATUS_UNSUPPORTED_OP;
  3421. }
  3422. /* Before going to poll packet make sure it was in allocated state */
  3423. if (unlikely(ctx->state == GSI_CHAN_STATE_NOT_ALLOCATED)) {
  3424. GSIERR("bad state %d\n", ctx->state);
  3425. return -GSI_STATUS_UNSUPPORTED_OP;
  3426. }
  3427. if (!ctx->evtr) {
  3428. GSIERR("no event ring associated chan_hdl=%lu\n", chan_hdl);
  3429. return -GSI_STATUS_UNSUPPORTED_OP;
  3430. }
  3431. spin_lock_irqsave(&ctx->evtr->ring.slock, flags);
  3432. if (ctx->evtr->ring.rp == ctx->evtr->ring.rp_local) {
  3433. /* update rp to see of we have anything new to process */
  3434. rp = ctx->evtr->props.gsi_read_event_ring_rp(
  3435. &ctx->evtr->props, ctx->evtr->id, ee);
  3436. rp |= ctx->ring.rp & GSI_MSB_MASK;
  3437. ctx->evtr->ring.rp = rp;
  3438. /* read gsi event ring rp again if last read is empty */
  3439. if (rp == ctx->evtr->ring.rp_local) {
  3440. /* event ring is empty */
  3441. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  3442. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR_k,
  3443. ee, gsihal_get_ch_reg_idx(ctx->evtr->id),
  3444. gsihal_get_ch_reg_mask(ctx->evtr->id));
  3445. }
  3446. else {
  3447. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR,
  3448. ee, 1 << ctx->evtr->id);
  3449. }
  3450. /* do another read to close a small window */
  3451. __iowmb();
  3452. rp = ctx->evtr->props.gsi_read_event_ring_rp(
  3453. &ctx->evtr->props, ctx->evtr->id, ee);
  3454. rp |= ctx->ring.rp & GSI_MSB_MASK;
  3455. ctx->evtr->ring.rp = rp;
  3456. if (rp == ctx->evtr->ring.rp_local) {
  3457. spin_unlock_irqrestore(
  3458. &ctx->evtr->ring.slock,
  3459. flags);
  3460. ctx->stats.poll_empty++;
  3461. return GSI_STATUS_POLL_EMPTY;
  3462. }
  3463. }
  3464. }
  3465. *actual_num = gsi_get_complete_num(&ctx->evtr->ring,
  3466. ctx->evtr->ring.rp_local, ctx->evtr->ring.rp);
  3467. if (*actual_num > expected_num)
  3468. *actual_num = expected_num;
  3469. for (i = 0; i < *actual_num; i++)
  3470. gsi_process_evt_re(ctx->evtr, notify + i, false);
  3471. spin_unlock_irqrestore(&ctx->evtr->ring.slock, flags);
  3472. ctx->stats.poll_ok++;
  3473. return GSI_STATUS_SUCCESS;
  3474. }
  3475. EXPORT_SYMBOL(gsi_poll_n_channel);
  3476. int gsi_config_channel_mode(unsigned long chan_hdl, enum gsi_chan_mode mode)
  3477. {
  3478. struct gsi_chan_ctx *ctx, *coal_ctx;
  3479. enum gsi_chan_mode curr;
  3480. unsigned long flags;
  3481. enum gsi_chan_mode chan_mode;
  3482. int i;
  3483. if (!gsi_ctx) {
  3484. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3485. return -GSI_STATUS_NODEV;
  3486. }
  3487. if (chan_hdl >= gsi_ctx->max_ch) {
  3488. GSIERR("bad params chan_hdl=%lu mode=%u\n", chan_hdl, mode);
  3489. return -GSI_STATUS_INVALID_PARAMS;
  3490. }
  3491. ctx = &gsi_ctx->chan[chan_hdl];
  3492. if (ctx->props.prot != GSI_CHAN_PROT_GPI &&
  3493. ctx->props.prot != GSI_CHAN_PROT_GCI) {
  3494. GSIERR("op not supported for protocol %u\n", ctx->props.prot);
  3495. return -GSI_STATUS_UNSUPPORTED_OP;
  3496. }
  3497. if (!ctx->evtr) {
  3498. GSIERR("cannot configure mode on chan_hdl=%lu\n",
  3499. chan_hdl);
  3500. return -GSI_STATUS_UNSUPPORTED_OP;
  3501. }
  3502. if (atomic_read(&ctx->poll_mode))
  3503. curr = GSI_CHAN_MODE_POLL;
  3504. else
  3505. curr = GSI_CHAN_MODE_CALLBACK;
  3506. if (mode == curr) {
  3507. GSIDBG("already in requested mode %u chan_hdl=%lu\n",
  3508. curr, chan_hdl);
  3509. return -GSI_STATUS_UNSUPPORTED_OP;
  3510. }
  3511. spin_lock_irqsave(&gsi_ctx->slock, flags);
  3512. if (curr == GSI_CHAN_MODE_CALLBACK &&
  3513. mode == GSI_CHAN_MODE_POLL) {
  3514. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  3515. __gsi_config_ieob_irq_k(gsi_ctx->per.ee,
  3516. gsihal_get_ch_reg_idx(ctx->evtr->id),
  3517. gsihal_get_ch_reg_mask(ctx->evtr->id),
  3518. 0);
  3519. }
  3520. else {
  3521. __gsi_config_ieob_irq(gsi_ctx->per.ee, 1 << ctx->evtr->id, 0);
  3522. }
  3523. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  3524. gsihal_write_reg_nk(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR_k,
  3525. gsi_ctx->per.ee, gsihal_get_ch_reg_idx(ctx->evtr->id),
  3526. gsihal_get_ch_reg_mask(ctx->evtr->id));
  3527. }
  3528. else {
  3529. gsihal_write_reg_n(GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR,
  3530. gsi_ctx->per.ee, 1 << ctx->evtr->id);
  3531. }
  3532. atomic_set(&ctx->poll_mode, mode);
  3533. for(i = 0; i < ctx->evtr->num_of_chan_allocated; i++) {
  3534. atomic_set(&ctx->evtr->chan[i]->poll_mode, mode);
  3535. }
  3536. if ((ctx->props.prot == GSI_CHAN_PROT_GCI) && *ctx->evtr->chan) {
  3537. atomic_set(&ctx->evtr->chan[0]->poll_mode, mode);
  3538. } else if (gsi_ctx->coal_info.evchid == ctx->evtr->id) {
  3539. coal_ctx = &gsi_ctx->chan[gsi_ctx->coal_info.ch_id];
  3540. if (coal_ctx != NULL)
  3541. atomic_set(&coal_ctx->poll_mode, mode);
  3542. }
  3543. GSIDBG("set gsi_ctx evtr_id %d to %d mode\n",
  3544. ctx->evtr->id, mode);
  3545. ctx->stats.callback_to_poll++;
  3546. }
  3547. if (curr == GSI_CHAN_MODE_POLL &&
  3548. mode == GSI_CHAN_MODE_CALLBACK) {
  3549. atomic_set(&ctx->poll_mode, mode);
  3550. for(i = 0; i < ctx->evtr->num_of_chan_allocated; i++) {
  3551. atomic_set(&ctx->evtr->chan[i]->poll_mode, mode);
  3552. }
  3553. if ((ctx->props.prot == GSI_CHAN_PROT_GCI) && *ctx->evtr->chan) {
  3554. atomic_set(&ctx->evtr->chan[0]->poll_mode, mode);
  3555. } else if (gsi_ctx->coal_info.evchid == ctx->evtr->id) {
  3556. coal_ctx = &gsi_ctx->chan[gsi_ctx->coal_info.ch_id];
  3557. if (coal_ctx != NULL)
  3558. atomic_set(&coal_ctx->poll_mode, mode);
  3559. }
  3560. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  3561. __gsi_config_ieob_irq_k(gsi_ctx->per.ee,
  3562. gsihal_get_ch_reg_idx(ctx->evtr->id),
  3563. gsihal_get_ch_reg_mask(ctx->evtr->id),
  3564. ~0);
  3565. }
  3566. else {
  3567. __gsi_config_ieob_irq(gsi_ctx->per.ee, 1 << ctx->evtr->id, ~0);
  3568. }
  3569. GSIDBG("set gsi_ctx evtr_id %d to %d mode\n",
  3570. ctx->evtr->id, mode);
  3571. /*
  3572. * In GSI 2.2 and 2.5 there is a limitation that can lead
  3573. * to losing an interrupt. For these versions an
  3574. * explicit check is needed after enabling the interrupt
  3575. */
  3576. if ((gsi_ctx->per.ver == GSI_VER_2_2 ||
  3577. gsi_ctx->per.ver == GSI_VER_2_5) &&
  3578. !gsi_ctx->per.skip_ieob_mask_wa) {
  3579. u32 src = gsihal_read_reg_n(
  3580. GSI_EE_n_CNTXT_SRC_IEOB_IRQ,
  3581. gsi_ctx->per.ee);
  3582. if (src & (1 << ctx->evtr->id)) {
  3583. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  3584. __gsi_config_ieob_irq_k(gsi_ctx->per.ee,
  3585. gsihal_get_ch_reg_idx(ctx->evtr->id),
  3586. gsihal_get_ch_reg_mask(ctx->evtr->id),
  3587. 0);
  3588. gsihal_write_reg_nk(
  3589. GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR_k,
  3590. gsi_ctx->per.ee,
  3591. gsihal_get_ch_reg_idx(ctx->evtr->id),
  3592. gsihal_get_ch_reg_mask(ctx->evtr->id));
  3593. }
  3594. else {
  3595. __gsi_config_ieob_irq(gsi_ctx->per.ee, 1 <<
  3596. ctx->evtr->id, 0);
  3597. gsihal_write_reg_n(
  3598. GSI_EE_n_CNTXT_SRC_IEOB_IRQ_CLR,
  3599. gsi_ctx->per.ee,
  3600. 1 << ctx->evtr->id);
  3601. }
  3602. spin_unlock_irqrestore(&gsi_ctx->slock, flags);
  3603. spin_lock_irqsave(&ctx->evtr->ring.slock,
  3604. flags);
  3605. chan_mode = atomic_xchg(&ctx->poll_mode,
  3606. GSI_CHAN_MODE_POLL);
  3607. spin_unlock_irqrestore(
  3608. &ctx->evtr->ring.slock, flags);
  3609. ctx->stats.poll_pending_irq++;
  3610. GSIDBG("IEOB WA pnd cnt = %ld prvmode = %d\n",
  3611. ctx->stats.poll_pending_irq,
  3612. chan_mode);
  3613. if (chan_mode == GSI_CHAN_MODE_POLL)
  3614. return GSI_STATUS_SUCCESS;
  3615. else
  3616. return -GSI_STATUS_PENDING_IRQ;
  3617. }
  3618. }
  3619. ctx->stats.poll_to_callback++;
  3620. }
  3621. spin_unlock_irqrestore(&gsi_ctx->slock, flags);
  3622. return GSI_STATUS_SUCCESS;
  3623. }
  3624. EXPORT_SYMBOL(gsi_config_channel_mode);
  3625. int gsi_get_channel_cfg(unsigned long chan_hdl, struct gsi_chan_props *props,
  3626. union gsi_channel_scratch *scr)
  3627. {
  3628. struct gsi_chan_ctx *ctx;
  3629. if (!gsi_ctx) {
  3630. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3631. return -GSI_STATUS_NODEV;
  3632. }
  3633. if (!props || !scr) {
  3634. GSIERR("bad params props=%pK scr=%pK\n", props, scr);
  3635. return -GSI_STATUS_INVALID_PARAMS;
  3636. }
  3637. if (chan_hdl >= gsi_ctx->max_ch) {
  3638. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  3639. return -GSI_STATUS_INVALID_PARAMS;
  3640. }
  3641. ctx = &gsi_ctx->chan[chan_hdl];
  3642. if (ctx->state == GSI_CHAN_STATE_NOT_ALLOCATED) {
  3643. GSIERR("bad state %d\n", ctx->state);
  3644. return -GSI_STATUS_UNSUPPORTED_OP;
  3645. }
  3646. mutex_lock(&ctx->mlock);
  3647. *props = ctx->props;
  3648. *scr = ctx->scratch;
  3649. mutex_unlock(&ctx->mlock);
  3650. return GSI_STATUS_SUCCESS;
  3651. }
  3652. EXPORT_SYMBOL(gsi_get_channel_cfg);
  3653. int gsi_set_channel_cfg(unsigned long chan_hdl, struct gsi_chan_props *props,
  3654. union gsi_channel_scratch *scr)
  3655. {
  3656. struct gsi_chan_ctx *ctx;
  3657. if (!gsi_ctx) {
  3658. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3659. return -GSI_STATUS_NODEV;
  3660. }
  3661. if (!props || gsi_validate_channel_props(props)) {
  3662. GSIERR("bad params props=%pK\n", props);
  3663. return -GSI_STATUS_INVALID_PARAMS;
  3664. }
  3665. if (chan_hdl >= gsi_ctx->max_ch) {
  3666. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  3667. return -GSI_STATUS_INVALID_PARAMS;
  3668. }
  3669. ctx = &gsi_ctx->chan[chan_hdl];
  3670. if (ctx->state != GSI_CHAN_STATE_ALLOCATED) {
  3671. GSIERR("bad state %d\n", ctx->state);
  3672. return -GSI_STATUS_UNSUPPORTED_OP;
  3673. }
  3674. if (ctx->props.ch_id != props->ch_id ||
  3675. ctx->props.evt_ring_hdl != props->evt_ring_hdl) {
  3676. GSIERR("changing immutable fields not supported\n");
  3677. return -GSI_STATUS_UNSUPPORTED_OP;
  3678. }
  3679. mutex_lock(&ctx->mlock);
  3680. ctx->props = *props;
  3681. if (scr)
  3682. ctx->scratch = *scr;
  3683. gsi_program_chan_ctx(&ctx->props, gsi_ctx->per.ee,
  3684. ctx->evtr ? ctx->evtr->id : GSI_NO_EVT_ERINDEX);
  3685. gsi_init_chan_ring(&ctx->props, &ctx->ring);
  3686. /* restore scratch */
  3687. __gsi_write_channel_scratch(chan_hdl, ctx->scratch);
  3688. mutex_unlock(&ctx->mlock);
  3689. return GSI_STATUS_SUCCESS;
  3690. }
  3691. EXPORT_SYMBOL(gsi_set_channel_cfg);
  3692. static void gsi_configure_ieps(enum gsi_ver ver)
  3693. {
  3694. gsihal_write_reg(GSI_GSI_IRAM_PTR_CH_CMD, 1);
  3695. gsihal_write_reg(GSI_GSI_IRAM_PTR_CH_DB, 2);
  3696. gsihal_write_reg(GSI_GSI_IRAM_PTR_CH_DIS_COMP, 3);
  3697. gsihal_write_reg(GSI_GSI_IRAM_PTR_CH_EMPTY, 4);
  3698. gsihal_write_reg(GSI_GSI_IRAM_PTR_EE_GENERIC_CMD, 5);
  3699. gsihal_write_reg(GSI_GSI_IRAM_PTR_EVENT_GEN_COMP, 6);
  3700. gsihal_write_reg(GSI_GSI_IRAM_PTR_INT_MOD_STOPPED, 7);
  3701. gsihal_write_reg(GSI_GSI_IRAM_PTR_PERIPH_IF_TLV_IN_0, 8);
  3702. gsihal_write_reg(GSI_GSI_IRAM_PTR_PERIPH_IF_TLV_IN_2, 9);
  3703. gsihal_write_reg(GSI_GSI_IRAM_PTR_PERIPH_IF_TLV_IN_1, 10);
  3704. gsihal_write_reg(GSI_GSI_IRAM_PTR_NEW_RE, 11);
  3705. gsihal_write_reg(GSI_GSI_IRAM_PTR_READ_ENG_COMP, 12);
  3706. gsihal_write_reg(GSI_GSI_IRAM_PTR_TIMER_EXPIRED, 13);
  3707. gsihal_write_reg(GSI_GSI_IRAM_PTR_EV_DB, 14);
  3708. gsihal_write_reg(GSI_GSI_IRAM_PTR_UC_GP_INT, 15);
  3709. gsihal_write_reg(GSI_GSI_IRAM_PTR_WRITE_ENG_COMP, 16);
  3710. if (ver >= GSI_VER_2_5)
  3711. gsihal_write_reg(
  3712. GSI_GSI_IRAM_PTR_TLV_CH_NOT_FULL,
  3713. 17);
  3714. if (ver >= GSI_VER_2_11)
  3715. gsihal_write_reg(
  3716. GSI_GSI_IRAM_PTR_MSI_DB,
  3717. 18);
  3718. if (ver >= GSI_VER_3_0)
  3719. gsihal_write_reg(
  3720. GSI_GSI_IRAM_PTR_INT_NOTIFY_MCS,
  3721. 19);
  3722. }
  3723. static void gsi_configure_bck_prs_matrix(void)
  3724. {
  3725. /*
  3726. * For now, these are default values. In the future, GSI FW image will
  3727. * produce optimized back-pressure values based on the FW image.
  3728. */
  3729. gsihal_write_reg(GSI_IC_DISABLE_CHNL_BCK_PRS_LSB, 0xfffffffe);
  3730. gsihal_write_reg(GSI_IC_DISABLE_CHNL_BCK_PRS_MSB, 0xffffffff);
  3731. gsihal_write_reg(GSI_IC_GEN_EVNT_BCK_PRS_LSB, 0xffffffbf);
  3732. gsihal_write_reg(GSI_IC_GEN_EVNT_BCK_PRS_MSB, 0xffffffff);
  3733. gsihal_write_reg(GSI_IC_GEN_INT_BCK_PRS_LSB, 0xffffefff);
  3734. gsihal_write_reg(GSI_IC_GEN_INT_BCK_PRS_MSB, 0xffffffff);
  3735. gsihal_write_reg(GSI_IC_STOP_INT_MOD_BCK_PRS_LSB, 0xffffefff);
  3736. gsihal_write_reg(GSI_IC_STOP_INT_MOD_BCK_PRS_MSB, 0xffffffff);
  3737. gsihal_write_reg(GSI_IC_PROCESS_DESC_BCK_PRS_LSB, 0x00000000);
  3738. gsihal_write_reg(GSI_IC_PROCESS_DESC_BCK_PRS_MSB, 0x00000000);
  3739. gsihal_write_reg(GSI_IC_TLV_STOP_BCK_PRS_LSB, 0xf9ffffff);
  3740. gsihal_write_reg(GSI_IC_TLV_STOP_BCK_PRS_MSB, 0xffffffff);
  3741. gsihal_write_reg(GSI_IC_TLV_RESET_BCK_PRS_LSB, 0xf9ffffff);
  3742. gsihal_write_reg(GSI_IC_TLV_RESET_BCK_PRS_MSB, 0xffffffff);
  3743. gsihal_write_reg(GSI_IC_RGSTR_TIMER_BCK_PRS_LSB, 0xffffffff);
  3744. gsihal_write_reg(GSI_IC_RGSTR_TIMER_BCK_PRS_MSB, 0xfffffffe);
  3745. gsihal_write_reg(GSI_IC_READ_BCK_PRS_LSB, 0xffffffff);
  3746. gsihal_write_reg(GSI_IC_READ_BCK_PRS_MSB, 0xffffefff);
  3747. gsihal_write_reg(GSI_IC_WRITE_BCK_PRS_LSB, 0xffffffff);
  3748. gsihal_write_reg(GSI_IC_WRITE_BCK_PRS_MSB, 0xffffdfff);
  3749. gsihal_write_reg(GSI_IC_UCONTROLLER_GPR_BCK_PRS_LSB, 0xffffffff);
  3750. gsihal_write_reg(GSI_IC_UCONTROLLER_GPR_BCK_PRS_MSB, 0xff03ffff);
  3751. }
  3752. int gsi_configure_regs(phys_addr_t per_base_addr, enum gsi_ver ver)
  3753. {
  3754. if (!gsi_ctx) {
  3755. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3756. return -GSI_STATUS_NODEV;
  3757. }
  3758. if (!gsi_ctx->base) {
  3759. GSIERR("access to GSI HW has not been mapped\n");
  3760. return -GSI_STATUS_INVALID_PARAMS;
  3761. }
  3762. if (ver <= GSI_VER_ERR || ver >= GSI_VER_MAX) {
  3763. GSIERR("Incorrect version %d\n", ver);
  3764. return -GSI_STATUS_ERROR;
  3765. }
  3766. gsihal_write_reg(GSI_GSI_PERIPH_BASE_ADDR_MSB, 0);
  3767. gsihal_write_reg(GSI_GSI_PERIPH_BASE_ADDR_LSB, per_base_addr);
  3768. gsi_configure_bck_prs_matrix();
  3769. gsi_configure_ieps(ver);
  3770. return 0;
  3771. }
  3772. EXPORT_SYMBOL(gsi_configure_regs);
  3773. int gsi_enable_fw(phys_addr_t gsi_base_addr, u32 gsi_size, enum gsi_ver ver)
  3774. {
  3775. struct gsihal_reg_gsi_cfg gsi_cfg;
  3776. if (ver <= GSI_VER_ERR || ver >= GSI_VER_MAX) {
  3777. GSIERR("Incorrect version %d\n", ver);
  3778. return -GSI_STATUS_ERROR;
  3779. }
  3780. /* Enable the MCS and set to x2 clocks */
  3781. gsi_cfg.gsi_enable = 1;
  3782. gsi_cfg.double_mcs_clk_freq = 1;
  3783. gsi_cfg.uc_is_mcs = 0;
  3784. gsi_cfg.gsi_pwr_clps = 0;
  3785. gsi_cfg.bp_mtrix_disable = 0;
  3786. if (ver >= GSI_VER_1_2) {
  3787. gsihal_write_reg(GSI_GSI_MCS_CFG, 1);
  3788. gsi_cfg.mcs_enable = 0;
  3789. } else {
  3790. gsi_cfg.mcs_enable = 1;
  3791. }
  3792. /* GSI frequency is peripheral frequency divided by 3 (2+1) */
  3793. if (ver >= GSI_VER_2_5)
  3794. gsi_cfg.sleep_clk_div = 2;
  3795. gsihal_write_reg_fields(GSI_GSI_CFG, &gsi_cfg);
  3796. return 0;
  3797. }
  3798. EXPORT_SYMBOL(gsi_enable_fw);
  3799. void gsi_get_inst_ram_offset_and_size(unsigned long *base_offset,
  3800. unsigned long *size, enum gsi_ver ver)
  3801. {
  3802. if (!gsi_ctx) {
  3803. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3804. return;
  3805. }
  3806. if (size)
  3807. *size = gsihal_get_inst_ram_size();
  3808. if (base_offset) {
  3809. *base_offset = gsihal_get_reg_n_ofst(GSI_GSI_INST_RAM_n, 0);
  3810. }
  3811. }
  3812. EXPORT_SYMBOL(gsi_get_inst_ram_offset_and_size);
  3813. int gsi_halt_channel_ee(unsigned int chan_idx, unsigned int ee, int *code)
  3814. {
  3815. enum gsi_generic_ee_cmd_opcode op = GSI_GEN_EE_CMD_HALT_CHANNEL;
  3816. struct gsihal_reg_gsi_ee_generic_cmd cmd;
  3817. int res;
  3818. if (!gsi_ctx) {
  3819. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3820. return -GSI_STATUS_NODEV;
  3821. }
  3822. if (chan_idx >= gsi_ctx->max_ch || !code) {
  3823. GSIERR("bad params chan_idx=%d\n", chan_idx);
  3824. return -GSI_STATUS_INVALID_PARAMS;
  3825. }
  3826. mutex_lock(&gsi_ctx->mlock);
  3827. __gsi_config_glob_irq(gsi_ctx->per.ee,
  3828. gsihal_get_glob_irq_en_gp_int1_mask(), ~0);
  3829. reinit_completion(&gsi_ctx->gen_ee_cmd_compl);
  3830. /* invalidate the response */
  3831. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(
  3832. GSI_EE_n_CNTXT_SCRATCH_0, gsi_ctx->per.ee);
  3833. gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code = 0;
  3834. gsihal_write_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  3835. gsi_ctx->per.ee, gsi_ctx->scratch.word0.val);
  3836. gsi_ctx->gen_ee_cmd_dbg.halt_channel++;
  3837. cmd.opcode = op;
  3838. cmd.virt_chan_idx = chan_idx;
  3839. cmd.ee = ee;
  3840. gsihal_write_reg_n_fields(GSI_EE_n_GSI_EE_GENERIC_CMD, gsi_ctx->per.ee, &cmd);
  3841. res = wait_for_completion_timeout(&gsi_ctx->gen_ee_cmd_compl,
  3842. msecs_to_jiffies(GSI_CMD_TIMEOUT));
  3843. if (res == 0) {
  3844. GSIERR("chan_idx=%u ee=%u timed out\n", chan_idx, ee);
  3845. res = -GSI_STATUS_TIMED_OUT;
  3846. goto free_lock;
  3847. }
  3848. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  3849. gsi_ctx->per.ee);
  3850. if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code ==
  3851. GSI_GEN_EE_CMD_RETURN_CODE_RETRY) {
  3852. GSIDBG("chan_idx=%u ee=%u busy try again\n", chan_idx, ee);
  3853. *code = GSI_GEN_EE_CMD_RETURN_CODE_RETRY;
  3854. res = -GSI_STATUS_AGAIN;
  3855. goto free_lock;
  3856. }
  3857. if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code == 0) {
  3858. GSIERR("No response received\n");
  3859. res = -GSI_STATUS_ERROR;
  3860. goto free_lock;
  3861. }
  3862. res = GSI_STATUS_SUCCESS;
  3863. *code = gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code;
  3864. free_lock:
  3865. __gsi_config_glob_irq(gsi_ctx->per.ee,
  3866. gsihal_get_glob_irq_en_gp_int1_mask(), 0);
  3867. mutex_unlock(&gsi_ctx->mlock);
  3868. return res;
  3869. }
  3870. EXPORT_SYMBOL(gsi_halt_channel_ee);
  3871. int gsi_alloc_channel_ee(unsigned int chan_idx, unsigned int ee, int *code)
  3872. {
  3873. enum gsi_generic_ee_cmd_opcode op = GSI_GEN_EE_CMD_ALLOC_CHANNEL;
  3874. struct gsi_chan_ctx *ctx;
  3875. struct gsihal_reg_gsi_ee_generic_cmd cmd;
  3876. int res;
  3877. if (chan_idx >= gsi_ctx->max_ch || !code) {
  3878. GSIERR("bad params chan_idx=%d\n", chan_idx);
  3879. return -GSI_STATUS_INVALID_PARAMS;
  3880. }
  3881. if (ee == 0)
  3882. return gsi_alloc_ap_channel(chan_idx);
  3883. mutex_lock(&gsi_ctx->mlock);
  3884. __gsi_config_glob_irq(gsi_ctx->per.ee,
  3885. gsihal_get_glob_irq_en_gp_int1_mask(), ~0);
  3886. reinit_completion(&gsi_ctx->gen_ee_cmd_compl);
  3887. /* invalidate the response */
  3888. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  3889. gsi_ctx->per.ee);
  3890. gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code = 0;
  3891. gsihal_write_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  3892. gsi_ctx->per.ee, gsi_ctx->scratch.word0.val);
  3893. cmd.opcode = op;
  3894. cmd.virt_chan_idx = chan_idx;
  3895. cmd.ee = ee;
  3896. gsihal_write_reg_n_fields(
  3897. GSI_EE_n_GSI_EE_GENERIC_CMD, gsi_ctx->per.ee, &cmd);
  3898. res = wait_for_completion_timeout(&gsi_ctx->gen_ee_cmd_compl,
  3899. msecs_to_jiffies(GSI_CMD_TIMEOUT));
  3900. if (res == 0) {
  3901. GSIERR("chan_idx=%u ee=%u timed out\n", chan_idx, ee);
  3902. res = -GSI_STATUS_TIMED_OUT;
  3903. goto free_lock;
  3904. }
  3905. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  3906. gsi_ctx->per.ee);
  3907. if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code ==
  3908. GSI_GEN_EE_CMD_RETURN_CODE_OUT_OF_RESOURCES) {
  3909. GSIDBG("chan_idx=%u ee=%u out of resources\n", chan_idx, ee);
  3910. *code = GSI_GEN_EE_CMD_RETURN_CODE_OUT_OF_RESOURCES;
  3911. res = -GSI_STATUS_RES_ALLOC_FAILURE;
  3912. goto free_lock;
  3913. }
  3914. if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code == 0) {
  3915. GSIERR("No response received\n");
  3916. res = -GSI_STATUS_ERROR;
  3917. goto free_lock;
  3918. }
  3919. if (ee == 0) {
  3920. ctx = &gsi_ctx->chan[chan_idx];
  3921. gsi_ctx->ch_dbg[chan_idx].ch_allocate++;
  3922. }
  3923. res = GSI_STATUS_SUCCESS;
  3924. *code = gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code;
  3925. free_lock:
  3926. __gsi_config_glob_irq(gsi_ctx->per.ee,
  3927. gsihal_get_glob_irq_en_gp_int1_mask(), 0);
  3928. mutex_unlock(&gsi_ctx->mlock);
  3929. return res;
  3930. }
  3931. EXPORT_SYMBOL(gsi_alloc_channel_ee);
  3932. int gsi_enable_flow_control_ee(unsigned int chan_idx, unsigned int ee,
  3933. int *code)
  3934. {
  3935. enum gsi_generic_ee_cmd_opcode op = GSI_GEN_EE_CMD_ENABLE_FLOW_CHANNEL;
  3936. struct gsihal_reg_ch_k_cntxt_0 ch_k_cntxt_0;
  3937. struct gsihal_reg_gsi_ee_generic_cmd cmd;
  3938. enum gsi_chan_state curr_state = GSI_CHAN_STATE_NOT_ALLOCATED;
  3939. int res;
  3940. if (!gsi_ctx) {
  3941. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  3942. return -GSI_STATUS_NODEV;
  3943. }
  3944. if (chan_idx >= gsi_ctx->max_ch || !code) {
  3945. GSIERR("bad params chan_idx=%d\n", chan_idx);
  3946. return -GSI_STATUS_INVALID_PARAMS;
  3947. }
  3948. mutex_lock(&gsi_ctx->mlock);
  3949. __gsi_config_glob_irq(gsi_ctx->per.ee,
  3950. gsihal_get_glob_irq_en_gp_int1_mask(), ~0);
  3951. reinit_completion(&gsi_ctx->gen_ee_cmd_compl);
  3952. /* invalidate the response */
  3953. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  3954. gsi_ctx->per.ee);
  3955. gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code = 0;
  3956. gsihal_write_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  3957. gsi_ctx->per.ee, gsi_ctx->scratch.word0.val);
  3958. gsi_ctx->gen_ee_cmd_dbg.flow_ctrl_channel++;
  3959. cmd.opcode = op;
  3960. cmd.virt_chan_idx = chan_idx;
  3961. cmd.ee = ee;
  3962. gsihal_write_reg_n_fields(
  3963. GSI_EE_n_GSI_EE_GENERIC_CMD, gsi_ctx->per.ee, &cmd);
  3964. res = wait_for_completion_timeout(&gsi_ctx->gen_ee_cmd_compl,
  3965. msecs_to_jiffies(GSI_CMD_TIMEOUT));
  3966. if (res == 0) {
  3967. GSIERR("chan_idx=%u ee=%u timed out\n", chan_idx, ee);
  3968. res = -GSI_STATUS_TIMED_OUT;
  3969. goto free_lock;
  3970. }
  3971. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  3972. gsi_ctx->per.ee);
  3973. if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code ==
  3974. GSI_GEN_EE_CMD_RETURN_CODE_CHANNEL_NOT_RUNNING) {
  3975. GSIDBG("chan_idx=%u ee=%u not in correct state\n",
  3976. chan_idx, ee);
  3977. *code = GSI_GEN_EE_CMD_RETURN_CODE_CHANNEL_NOT_RUNNING;
  3978. res = -GSI_STATUS_RES_ALLOC_FAILURE;
  3979. goto free_lock;
  3980. } else if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code ==
  3981. GSI_GEN_EE_CMD_RETURN_CODE_INCORRECT_CHANNEL_TYPE ||
  3982. gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code ==
  3983. GSI_GEN_EE_CMD_RETURN_CODE_INCORRECT_CHANNEL_INDEX) {
  3984. GSIERR("chan_idx=%u ee=%u not in correct state\n",
  3985. chan_idx, ee);
  3986. GSI_ASSERT();
  3987. }
  3988. if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code == 0) {
  3989. GSIERR("No response received\n");
  3990. res = -GSI_STATUS_ERROR;
  3991. goto free_lock;
  3992. }
  3993. /*Reading current channel state*/
  3994. gsihal_read_reg_nk_fields(GSI_EE_n_GSI_CH_k_CNTXT_0,
  3995. gsi_ctx->per.ee, chan_idx, &ch_k_cntxt_0);
  3996. curr_state = ch_k_cntxt_0.chstate;
  3997. if (curr_state == GSI_CHAN_STATE_FLOW_CONTROL) {
  3998. GSIDBG("ch %u state updated to %u\n", chan_idx, curr_state);
  3999. res = GSI_STATUS_SUCCESS;
  4000. } else {
  4001. GSIERR("ch %u state updated to %u incorrect state\n",
  4002. chan_idx, curr_state);
  4003. res = -GSI_STATUS_ERROR;
  4004. }
  4005. *code = gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code;
  4006. free_lock:
  4007. __gsi_config_glob_irq(gsi_ctx->per.ee,
  4008. gsihal_get_glob_irq_en_gp_int1_mask(), 0);
  4009. mutex_unlock(&gsi_ctx->mlock);
  4010. return res;
  4011. }
  4012. EXPORT_SYMBOL(gsi_enable_flow_control_ee);
  4013. int gsi_flow_control_ee(unsigned int chan_idx, unsigned int ee,
  4014. bool enable, bool prmy_scnd_fc, int *code)
  4015. {
  4016. struct gsihal_reg_gsi_ee_generic_cmd cmd;
  4017. enum gsi_generic_ee_cmd_opcode op = enable ?
  4018. GSI_GEN_EE_CMD_ENABLE_FLOW_CHANNEL :
  4019. GSI_GEN_EE_CMD_DISABLE_FLOW_CHANNEL;
  4020. int res;
  4021. if (!gsi_ctx) {
  4022. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  4023. return -GSI_STATUS_NODEV;
  4024. }
  4025. if (chan_idx >= gsi_ctx->max_ch || !code) {
  4026. GSIERR("bad params chan_idx=%d\n", chan_idx);
  4027. return -GSI_STATUS_INVALID_PARAMS;
  4028. }
  4029. mutex_lock(&gsi_ctx->mlock);
  4030. __gsi_config_glob_irq(gsi_ctx->per.ee,
  4031. gsihal_get_glob_irq_en_gp_int1_mask(), ~0);
  4032. reinit_completion(&gsi_ctx->gen_ee_cmd_compl);
  4033. /* invalidate the response */
  4034. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  4035. gsi_ctx->per.ee);
  4036. gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code = 0;
  4037. gsihal_write_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  4038. gsi_ctx->per.ee, gsi_ctx->scratch.word0.val);
  4039. gsi_ctx->gen_ee_cmd_dbg.flow_ctrl_channel++;
  4040. cmd.opcode = op;
  4041. cmd.virt_chan_idx = chan_idx;
  4042. cmd.ee = ee;
  4043. cmd.prmy_scnd_fc = prmy_scnd_fc;
  4044. gsihal_write_reg_n_fields(
  4045. GSI_EE_n_GSI_EE_GENERIC_CMD, gsi_ctx->per.ee, &cmd);
  4046. res = wait_for_completion_timeout(&gsi_ctx->gen_ee_cmd_compl,
  4047. msecs_to_jiffies(GSI_CMD_TIMEOUT));
  4048. if (res == 0) {
  4049. GSIERR("chan_idx=%u ee=%u timed out\n", chan_idx, ee);
  4050. res = -GSI_STATUS_TIMED_OUT;
  4051. GSI_ASSERT();
  4052. goto free_lock;
  4053. }
  4054. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  4055. gsi_ctx->per.ee);
  4056. if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code ==
  4057. GSI_GEN_EE_CMD_RETURN_CODE_CHANNEL_NOT_RUNNING) {
  4058. GSIDBG("chan_idx=%u ee=%u not in correct state\n",
  4059. chan_idx, ee);
  4060. *code = GSI_GEN_EE_CMD_RETURN_CODE_CHANNEL_NOT_RUNNING;
  4061. res = -GSI_STATUS_RES_ALLOC_FAILURE;
  4062. goto free_lock;
  4063. } else if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code ==
  4064. GSI_GEN_EE_CMD_RETURN_CODE_INCORRECT_CHANNEL_TYPE) {
  4065. GSIERR("chan_idx=%u ee=%u not in correct state\n",
  4066. chan_idx, ee);
  4067. GSI_ASSERT();
  4068. } else if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code ==
  4069. GSI_GEN_EE_CMD_RETURN_CODE_INCORRECT_CHANNEL_INDEX) {
  4070. GSIERR("Channel ID = %u ee = %u not allocated\n", chan_idx, ee);
  4071. }
  4072. if (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code == 0) {
  4073. GSIERR("No response received\n");
  4074. res = -GSI_STATUS_ERROR;
  4075. goto free_lock;
  4076. }
  4077. *code = gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code;
  4078. res = GSI_STATUS_SUCCESS;
  4079. free_lock:
  4080. __gsi_config_glob_irq(gsi_ctx->per.ee,
  4081. gsihal_get_glob_irq_en_gp_int1_mask(), 0);
  4082. mutex_unlock(&gsi_ctx->mlock);
  4083. return res;
  4084. }
  4085. EXPORT_SYMBOL(gsi_flow_control_ee);
  4086. int gsi_query_flow_control_state_ee(unsigned int chan_idx, unsigned int ee,
  4087. bool prmy_scnd_fc, int *code)
  4088. {
  4089. struct gsihal_reg_gsi_ee_generic_cmd cmd;
  4090. enum gsi_generic_ee_cmd_opcode op = GSI_GEN_EE_CMD_QUERY_FLOW_CHANNEL;
  4091. int res;
  4092. if (!gsi_ctx) {
  4093. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  4094. return -GSI_STATUS_NODEV;
  4095. }
  4096. if (chan_idx >= gsi_ctx->max_ch || !code) {
  4097. GSIERR("bad params chan_idx=%d\n", chan_idx);
  4098. return -GSI_STATUS_INVALID_PARAMS;
  4099. }
  4100. mutex_lock(&gsi_ctx->mlock);
  4101. __gsi_config_glob_irq(gsi_ctx->per.ee,
  4102. gsihal_get_glob_irq_en_gp_int1_mask(), ~0);
  4103. reinit_completion(&gsi_ctx->gen_ee_cmd_compl);
  4104. /* invalidate the response */
  4105. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  4106. gsi_ctx->per.ee);
  4107. gsi_ctx->scratch.word0.s.generic_ee_cmd_return_code = 0;
  4108. gsihal_write_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  4109. gsi_ctx->per.ee, gsi_ctx->scratch.word0.val);
  4110. gsi_ctx->gen_ee_cmd_dbg.flow_ctrl_channel++;
  4111. cmd.opcode = op;
  4112. cmd.virt_chan_idx = chan_idx;
  4113. cmd.ee = ee;
  4114. cmd.prmy_scnd_fc = prmy_scnd_fc;
  4115. gsihal_write_reg_n_fields(
  4116. GSI_EE_n_GSI_EE_GENERIC_CMD, gsi_ctx->per.ee, &cmd);
  4117. res = wait_for_completion_timeout(&gsi_ctx->gen_ee_cmd_compl,
  4118. msecs_to_jiffies(GSI_CMD_TIMEOUT));
  4119. if (res == 0) {
  4120. GSIERR("chan_idx=%u ee=%u timed out\n", chan_idx, ee);
  4121. res = -GSI_STATUS_TIMED_OUT;
  4122. goto free_lock;
  4123. }
  4124. gsi_ctx->scratch.word0.val = gsihal_read_reg_n(GSI_EE_n_CNTXT_SCRATCH_0,
  4125. gsi_ctx->per.ee);
  4126. *code = gsi_ctx->scratch.word0.s.generic_ee_cmd_return_val;
  4127. if (prmy_scnd_fc)
  4128. res = (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_val ==
  4129. GSI_GEN_EE_CMD_RETURN_VAL_FLOW_CONTROL_SECONDARY)?
  4130. GSI_STATUS_SUCCESS:-GSI_STATUS_ERROR;
  4131. else
  4132. res = (gsi_ctx->scratch.word0.s.generic_ee_cmd_return_val ==
  4133. GSI_GEN_EE_CMD_RETURN_VAL_FLOW_CONTROL_PRIMARY)?
  4134. GSI_STATUS_SUCCESS:-GSI_STATUS_ERROR;
  4135. free_lock:
  4136. __gsi_config_glob_irq(gsi_ctx->per.ee,
  4137. gsihal_get_glob_irq_en_gp_int1_mask(), 0);
  4138. mutex_unlock(&gsi_ctx->mlock);
  4139. return res;
  4140. }
  4141. EXPORT_SYMBOL(gsi_query_flow_control_state_ee);
  4142. int gsi_map_virtual_ch_to_per_ep(u32 ee, u32 chan_num, u32 per_ep_index)
  4143. {
  4144. if (!gsi_ctx) {
  4145. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  4146. return -GSI_STATUS_NODEV;
  4147. }
  4148. if (!gsi_ctx->base) {
  4149. GSIERR("access to GSI HW has not been mapped\n");
  4150. return -GSI_STATUS_INVALID_PARAMS;
  4151. }
  4152. gsihal_write_reg_nk(GSI_MAP_EE_n_CH_k_VP_TABLE,
  4153. ee, chan_num, per_ep_index);
  4154. return 0;
  4155. }
  4156. EXPORT_SYMBOL(gsi_map_virtual_ch_to_per_ep);
  4157. void gsi_wdi3_write_evt_ring_db(unsigned long evt_ring_hdl,
  4158. uint32_t db_addr_low, uint32_t db_addr_high)
  4159. {
  4160. if (!gsi_ctx) {
  4161. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  4162. return;
  4163. }
  4164. if (gsi_ctx->per.ver >= GSI_VER_2_9) {
  4165. gsihal_write_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_10,
  4166. gsi_ctx->per.ee, evt_ring_hdl, db_addr_low);
  4167. gsihal_write_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_11,
  4168. gsi_ctx->per.ee, evt_ring_hdl, db_addr_high);
  4169. } else {
  4170. gsihal_write_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_12,
  4171. gsi_ctx->per.ee, evt_ring_hdl, db_addr_low);
  4172. gsihal_write_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_13,
  4173. gsi_ctx->per.ee, evt_ring_hdl, db_addr_high);
  4174. }
  4175. }
  4176. EXPORT_SYMBOL(gsi_wdi3_write_evt_ring_db);
  4177. int gsi_get_refetch_reg(unsigned long chan_hdl, bool is_rp)
  4178. {
  4179. if (is_rp) {
  4180. return gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_READ_PTR,
  4181. gsi_ctx->per.ee, chan_hdl);
  4182. } else {
  4183. return gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_WRITE_PTR,
  4184. gsi_ctx->per.ee, chan_hdl);
  4185. }
  4186. }
  4187. EXPORT_SYMBOL(gsi_get_refetch_reg);
  4188. int gsi_get_drop_stats(unsigned long ep_id, int scratch_id)
  4189. {
  4190. /* RTK use scratch 5 */
  4191. if (scratch_id == 5) {
  4192. /*
  4193. * each channel context is 6 lines of 8 bytes, but n in SHRAM_n
  4194. * is in 4 bytes offsets, so multiplying ep_id by 6*2=12 will
  4195. * give the beginning of the required channel context, and then
  4196. * need to add 7 since the channel context layout has the ring
  4197. * rbase (8 bytes) + channel scratch 0-4 (20 bytes) so adding
  4198. * additional 28/4 = 7 to get to scratch 5 of the required
  4199. * channel.
  4200. */
  4201. gsihal_read_reg_n(GSI_GSI_SHRAM_n, ep_id * 12 + 7);
  4202. }
  4203. return 0;
  4204. }
  4205. EXPORT_SYMBOL(gsi_get_drop_stats);
  4206. void gsi_wdi3_dump_register(unsigned long chan_hdl)
  4207. {
  4208. uint32_t val;
  4209. if (!gsi_ctx) {
  4210. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  4211. return;
  4212. }
  4213. GSIDBG("reg dump ch id %ld\n", chan_hdl);
  4214. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_0,
  4215. gsi_ctx->per.ee, chan_hdl);
  4216. GSIDBG("GSI_EE_n_GSI_CH_k_CNTXT_0 0x%x\n", val);
  4217. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_1,
  4218. gsi_ctx->per.ee, chan_hdl);
  4219. GSIDBG("GSI_EE_n_GSI_CH_k_CNTXT_1 0x%x\n", val);
  4220. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_2,
  4221. gsi_ctx->per.ee, chan_hdl);
  4222. GSIDBG("GSI_EE_n_GSI_CH_k_CNTXT_2 0x%x\n", val);
  4223. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_3,
  4224. gsi_ctx->per.ee, chan_hdl);
  4225. GSIDBG("GSI_EE_n_GSI_CH_k_CNTXT_3 0x%x\n", val);
  4226. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_4,
  4227. gsi_ctx->per.ee, chan_hdl);
  4228. GSIDBG("GSI_EE_n_GSI_CH_k_CNTXT_4 0x%x\n", val);
  4229. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_5,
  4230. gsi_ctx->per.ee, chan_hdl);
  4231. GSIDBG("GSI_EE_n_GSI_CH_k_CNTXT_5 0x%x\n", val);
  4232. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_6,
  4233. gsi_ctx->per.ee, chan_hdl);
  4234. GSIDBG("GSI_EE_n_GSI_CH_k_CNTXT_6 0x%x\n", val);
  4235. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_7,
  4236. gsi_ctx->per.ee, chan_hdl);
  4237. GSIDBG("GSI_EE_n_GSI_CH_k_CNTXT_7 0x%x\n", val);
  4238. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_READ_PTR,
  4239. gsi_ctx->per.ee, chan_hdl);
  4240. GSIDBG("GSI_EE_n_GSI_CH_k_RE_FETCH_READ_PTR 0x%x\n", val);
  4241. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_WRITE_PTR,
  4242. gsi_ctx->per.ee, chan_hdl);
  4243. GSIDBG("GSI_EE_n_GSI_CH_k_RE_FETCH_WRITE_PTR 0x%x\n", val);
  4244. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_QOS,
  4245. gsi_ctx->per.ee, chan_hdl);
  4246. GSIDBG("GSI_EE_n_GSI_CH_k_QOS 0x%x\n", val);
  4247. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_0,
  4248. gsi_ctx->per.ee, chan_hdl);
  4249. GSIDBG("GSI_EE_n_GSI_CH_k_SCRATCH_0 0x%x\n", val);
  4250. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_1,
  4251. gsi_ctx->per.ee, chan_hdl);
  4252. GSIDBG("GSI_EE_n_GSI_CH_k_SCRATCH_1 0x%x\n", val);
  4253. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  4254. gsi_ctx->per.ee, chan_hdl);
  4255. GSIDBG("GSI_EE_n_GSI_CH_k_SCRATCH_2 0x%x\n", val);
  4256. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_3,
  4257. gsi_ctx->per.ee, chan_hdl);
  4258. GSIDBG("GSI_EE_n_GSI_CH_k_SCRATCH_3 0x%x\n", val);
  4259. }
  4260. EXPORT_SYMBOL(gsi_wdi3_dump_register);
  4261. int gsi_query_msi_addr(unsigned long chan_hdl, phys_addr_t *addr)
  4262. {
  4263. if (!gsi_ctx) {
  4264. pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
  4265. return -GSI_STATUS_NODEV;
  4266. }
  4267. if (chan_hdl >= gsi_ctx->max_ch) {
  4268. GSIERR("bad params chan_hdl=%lu\n", chan_hdl);
  4269. return -GSI_STATUS_INVALID_PARAMS;
  4270. }
  4271. if (gsi_ctx->chan[chan_hdl].state == GSI_CHAN_STATE_NOT_ALLOCATED) {
  4272. GSIERR("bad state %d\n",
  4273. gsi_ctx->chan[chan_hdl].state);
  4274. return -GSI_STATUS_UNSUPPORTED_OP;
  4275. }
  4276. *addr = (phys_addr_t)(gsi_ctx->per.phys_addr +
  4277. gsihal_get_reg_nk_ofst(GSI_EE_n_GSI_CH_k_CNTXT_8,
  4278. gsi_ctx->per.ee, chan_hdl));
  4279. return 0;
  4280. }
  4281. EXPORT_SYMBOL(gsi_query_msi_addr);
  4282. static union __packed gsi_channel_scratch __gsi_update_mhi_channel_scratch(
  4283. unsigned long chan_hdl, struct __packed gsi_mhi_channel_scratch mscr)
  4284. {
  4285. union __packed gsi_channel_scratch scr;
  4286. /* below sequence is not atomic. assumption is sequencer specific fields
  4287. * will remain unchanged across this sequence
  4288. */
  4289. /* READ */
  4290. scr.data.word1 = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_0,
  4291. gsi_ctx->per.ee, chan_hdl);
  4292. scr.data.word2 = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_1,
  4293. gsi_ctx->per.ee, chan_hdl);
  4294. scr.data.word3 = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  4295. gsi_ctx->per.ee, chan_hdl);
  4296. scr.data.word4 = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_3,
  4297. gsi_ctx->per.ee, chan_hdl);
  4298. /* UPDATE */
  4299. scr.mhi.polling_mode = mscr.polling_mode;
  4300. if (gsi_ctx->per.ver < GSI_VER_2_5) {
  4301. scr.mhi.max_outstanding_tre = mscr.max_outstanding_tre;
  4302. scr.mhi.outstanding_threshold = mscr.outstanding_threshold;
  4303. }
  4304. /* WRITE */
  4305. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_0,
  4306. gsi_ctx->per.ee, chan_hdl, scr.data.word1);
  4307. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_1,
  4308. gsi_ctx->per.ee, chan_hdl, scr.data.word2);
  4309. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  4310. gsi_ctx->per.ee, chan_hdl, scr.data.word3);
  4311. gsihal_write_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_3,
  4312. gsi_ctx->per.ee, chan_hdl, scr.data.word4);
  4313. return scr;
  4314. }
  4315. static int msm_gsi_probe(struct platform_device *pdev)
  4316. {
  4317. struct device *dev = &pdev->dev;
  4318. pr_debug("gsi_probe\n");
  4319. gsi_ctx = devm_kzalloc(dev, sizeof(*gsi_ctx), GFP_KERNEL);
  4320. if (!gsi_ctx) {
  4321. dev_err(dev, "failed to allocated gsi context\n");
  4322. return -ENOMEM;
  4323. }
  4324. gsi_ctx->ipc_logbuf = ipc_log_context_create(GSI_IPC_LOG_PAGES,
  4325. "gsi", 0);
  4326. if (gsi_ctx->ipc_logbuf == NULL)
  4327. GSIERR("failed to create IPC log, continue...\n");
  4328. gsi_ctx->dev = dev;
  4329. init_completion(&gsi_ctx->gen_ee_cmd_compl);
  4330. gsi_debugfs_init();
  4331. return 0;
  4332. }
  4333. static struct platform_driver msm_gsi_driver = {
  4334. .probe = msm_gsi_probe,
  4335. .driver = {
  4336. .name = "gsi",
  4337. .of_match_table = msm_gsi_match,
  4338. },
  4339. };
  4340. static struct platform_device *pdev;
  4341. /**
  4342. * Module Init.
  4343. */
  4344. static int __init gsi_init(void)
  4345. {
  4346. int ret;
  4347. pr_debug("%s\n", __func__);
  4348. ret = platform_driver_register(&msm_gsi_driver);
  4349. if (ret < 0)
  4350. goto out;
  4351. if (running_emulation) {
  4352. pdev = platform_device_register_simple("gsi", -1, NULL, 0);
  4353. if (IS_ERR(pdev)) {
  4354. ret = PTR_ERR(pdev);
  4355. platform_driver_unregister(&msm_gsi_driver);
  4356. goto out;
  4357. }
  4358. }
  4359. out:
  4360. return ret;
  4361. }
  4362. arch_initcall(gsi_init);
  4363. /*
  4364. * Module exit.
  4365. */
  4366. static void __exit gsi_exit(void)
  4367. {
  4368. if (running_emulation && pdev)
  4369. platform_device_unregister(pdev);
  4370. platform_driver_unregister(&msm_gsi_driver);
  4371. }
  4372. module_exit(gsi_exit);
  4373. MODULE_LICENSE("GPL v2");
  4374. MODULE_DESCRIPTION("Generic Software Interface (GSI)");