gsi.c 130 KB

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