gsi.c 139 KB

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