ste_dma40.c 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741
  1. /*
  2. * Copyright (C) Ericsson AB 2007-2008
  3. * Copyright (C) ST-Ericsson SA 2008-2010
  4. * Author: Per Forlin <per.forlin@stericsson.com> for ST-Ericsson
  5. * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson
  6. * License terms: GNU General Public License (GPL) version 2
  7. */
  8. #include <linux/dma-mapping.h>
  9. #include <linux/kernel.h>
  10. #include <linux/slab.h>
  11. #include <linux/export.h>
  12. #include <linux/dmaengine.h>
  13. #include <linux/platform_device.h>
  14. #include <linux/clk.h>
  15. #include <linux/delay.h>
  16. #include <linux/pm.h>
  17. #include <linux/pm_runtime.h>
  18. #include <linux/err.h>
  19. #include <linux/of.h>
  20. #include <linux/of_dma.h>
  21. #include <linux/amba/bus.h>
  22. #include <linux/regulator/consumer.h>
  23. #include <linux/platform_data/dma-ste-dma40.h>
  24. #include "dmaengine.h"
  25. #include "ste_dma40_ll.h"
  26. #define D40_NAME "dma40"
  27. #define D40_PHY_CHAN -1
  28. /* For masking out/in 2 bit channel positions */
  29. #define D40_CHAN_POS(chan) (2 * (chan / 2))
  30. #define D40_CHAN_POS_MASK(chan) (0x3 << D40_CHAN_POS(chan))
  31. /* Maximum iterations taken before giving up suspending a channel */
  32. #define D40_SUSPEND_MAX_IT 500
  33. /* Milliseconds */
  34. #define DMA40_AUTOSUSPEND_DELAY 100
  35. /* Hardware requirement on LCLA alignment */
  36. #define LCLA_ALIGNMENT 0x40000
  37. /* Max number of links per event group */
  38. #define D40_LCLA_LINK_PER_EVENT_GRP 128
  39. #define D40_LCLA_END D40_LCLA_LINK_PER_EVENT_GRP
  40. /* Max number of logical channels per physical channel */
  41. #define D40_MAX_LOG_CHAN_PER_PHY 32
  42. /* Attempts before giving up to trying to get pages that are aligned */
  43. #define MAX_LCLA_ALLOC_ATTEMPTS 256
  44. /* Bit markings for allocation map */
  45. #define D40_ALLOC_FREE BIT(31)
  46. #define D40_ALLOC_PHY BIT(30)
  47. #define D40_ALLOC_LOG_FREE 0
  48. #define D40_MEMCPY_MAX_CHANS 8
  49. /* Reserved event lines for memcpy only. */
  50. #define DB8500_DMA_MEMCPY_EV_0 51
  51. #define DB8500_DMA_MEMCPY_EV_1 56
  52. #define DB8500_DMA_MEMCPY_EV_2 57
  53. #define DB8500_DMA_MEMCPY_EV_3 58
  54. #define DB8500_DMA_MEMCPY_EV_4 59
  55. #define DB8500_DMA_MEMCPY_EV_5 60
  56. static int dma40_memcpy_channels[] = {
  57. DB8500_DMA_MEMCPY_EV_0,
  58. DB8500_DMA_MEMCPY_EV_1,
  59. DB8500_DMA_MEMCPY_EV_2,
  60. DB8500_DMA_MEMCPY_EV_3,
  61. DB8500_DMA_MEMCPY_EV_4,
  62. DB8500_DMA_MEMCPY_EV_5,
  63. };
  64. /* Default configuration for physcial memcpy */
  65. struct stedma40_chan_cfg dma40_memcpy_conf_phy = {
  66. .mode = STEDMA40_MODE_PHYSICAL,
  67. .dir = DMA_MEM_TO_MEM,
  68. .src_info.data_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
  69. .src_info.psize = STEDMA40_PSIZE_PHY_1,
  70. .src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
  71. .dst_info.data_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
  72. .dst_info.psize = STEDMA40_PSIZE_PHY_1,
  73. .dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
  74. };
  75. /* Default configuration for logical memcpy */
  76. struct stedma40_chan_cfg dma40_memcpy_conf_log = {
  77. .mode = STEDMA40_MODE_LOGICAL,
  78. .dir = DMA_MEM_TO_MEM,
  79. .src_info.data_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
  80. .src_info.psize = STEDMA40_PSIZE_LOG_1,
  81. .src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
  82. .dst_info.data_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
  83. .dst_info.psize = STEDMA40_PSIZE_LOG_1,
  84. .dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
  85. };
  86. /**
  87. * enum 40_command - The different commands and/or statuses.
  88. *
  89. * @D40_DMA_STOP: DMA channel command STOP or status STOPPED,
  90. * @D40_DMA_RUN: The DMA channel is RUNNING of the command RUN.
  91. * @D40_DMA_SUSPEND_REQ: Request the DMA to SUSPEND as soon as possible.
  92. * @D40_DMA_SUSPENDED: The DMA channel is SUSPENDED.
  93. */
  94. enum d40_command {
  95. D40_DMA_STOP = 0,
  96. D40_DMA_RUN = 1,
  97. D40_DMA_SUSPEND_REQ = 2,
  98. D40_DMA_SUSPENDED = 3
  99. };
  100. /*
  101. * enum d40_events - The different Event Enables for the event lines.
  102. *
  103. * @D40_DEACTIVATE_EVENTLINE: De-activate Event line, stopping the logical chan.
  104. * @D40_ACTIVATE_EVENTLINE: Activate the Event line, to start a logical chan.
  105. * @D40_SUSPEND_REQ_EVENTLINE: Requesting for suspending a event line.
  106. * @D40_ROUND_EVENTLINE: Status check for event line.
  107. */
  108. enum d40_events {
  109. D40_DEACTIVATE_EVENTLINE = 0,
  110. D40_ACTIVATE_EVENTLINE = 1,
  111. D40_SUSPEND_REQ_EVENTLINE = 2,
  112. D40_ROUND_EVENTLINE = 3
  113. };
  114. /*
  115. * These are the registers that has to be saved and later restored
  116. * when the DMA hw is powered off.
  117. * TODO: Add save/restore of D40_DREG_GCC on dma40 v3 or later, if that works.
  118. */
  119. static u32 d40_backup_regs[] = {
  120. D40_DREG_LCPA,
  121. D40_DREG_LCLA,
  122. D40_DREG_PRMSE,
  123. D40_DREG_PRMSO,
  124. D40_DREG_PRMOE,
  125. D40_DREG_PRMOO,
  126. };
  127. #define BACKUP_REGS_SZ ARRAY_SIZE(d40_backup_regs)
  128. /*
  129. * since 9540 and 8540 has the same HW revision
  130. * use v4a for 9540 or ealier
  131. * use v4b for 8540 or later
  132. * HW revision:
  133. * DB8500ed has revision 0
  134. * DB8500v1 has revision 2
  135. * DB8500v2 has revision 3
  136. * AP9540v1 has revision 4
  137. * DB8540v1 has revision 4
  138. * TODO: Check if all these registers have to be saved/restored on dma40 v4a
  139. */
  140. static u32 d40_backup_regs_v4a[] = {
  141. D40_DREG_PSEG1,
  142. D40_DREG_PSEG2,
  143. D40_DREG_PSEG3,
  144. D40_DREG_PSEG4,
  145. D40_DREG_PCEG1,
  146. D40_DREG_PCEG2,
  147. D40_DREG_PCEG3,
  148. D40_DREG_PCEG4,
  149. D40_DREG_RSEG1,
  150. D40_DREG_RSEG2,
  151. D40_DREG_RSEG3,
  152. D40_DREG_RSEG4,
  153. D40_DREG_RCEG1,
  154. D40_DREG_RCEG2,
  155. D40_DREG_RCEG3,
  156. D40_DREG_RCEG4,
  157. };
  158. #define BACKUP_REGS_SZ_V4A ARRAY_SIZE(d40_backup_regs_v4a)
  159. static u32 d40_backup_regs_v4b[] = {
  160. D40_DREG_CPSEG1,
  161. D40_DREG_CPSEG2,
  162. D40_DREG_CPSEG3,
  163. D40_DREG_CPSEG4,
  164. D40_DREG_CPSEG5,
  165. D40_DREG_CPCEG1,
  166. D40_DREG_CPCEG2,
  167. D40_DREG_CPCEG3,
  168. D40_DREG_CPCEG4,
  169. D40_DREG_CPCEG5,
  170. D40_DREG_CRSEG1,
  171. D40_DREG_CRSEG2,
  172. D40_DREG_CRSEG3,
  173. D40_DREG_CRSEG4,
  174. D40_DREG_CRSEG5,
  175. D40_DREG_CRCEG1,
  176. D40_DREG_CRCEG2,
  177. D40_DREG_CRCEG3,
  178. D40_DREG_CRCEG4,
  179. D40_DREG_CRCEG5,
  180. };
  181. #define BACKUP_REGS_SZ_V4B ARRAY_SIZE(d40_backup_regs_v4b)
  182. static u32 d40_backup_regs_chan[] = {
  183. D40_CHAN_REG_SSCFG,
  184. D40_CHAN_REG_SSELT,
  185. D40_CHAN_REG_SSPTR,
  186. D40_CHAN_REG_SSLNK,
  187. D40_CHAN_REG_SDCFG,
  188. D40_CHAN_REG_SDELT,
  189. D40_CHAN_REG_SDPTR,
  190. D40_CHAN_REG_SDLNK,
  191. };
  192. #define BACKUP_REGS_SZ_MAX ((BACKUP_REGS_SZ_V4A > BACKUP_REGS_SZ_V4B) ? \
  193. BACKUP_REGS_SZ_V4A : BACKUP_REGS_SZ_V4B)
  194. /**
  195. * struct d40_interrupt_lookup - lookup table for interrupt handler
  196. *
  197. * @src: Interrupt mask register.
  198. * @clr: Interrupt clear register.
  199. * @is_error: true if this is an error interrupt.
  200. * @offset: start delta in the lookup_log_chans in d40_base. If equals to
  201. * D40_PHY_CHAN, the lookup_phy_chans shall be used instead.
  202. */
  203. struct d40_interrupt_lookup {
  204. u32 src;
  205. u32 clr;
  206. bool is_error;
  207. int offset;
  208. };
  209. static struct d40_interrupt_lookup il_v4a[] = {
  210. {D40_DREG_LCTIS0, D40_DREG_LCICR0, false, 0},
  211. {D40_DREG_LCTIS1, D40_DREG_LCICR1, false, 32},
  212. {D40_DREG_LCTIS2, D40_DREG_LCICR2, false, 64},
  213. {D40_DREG_LCTIS3, D40_DREG_LCICR3, false, 96},
  214. {D40_DREG_LCEIS0, D40_DREG_LCICR0, true, 0},
  215. {D40_DREG_LCEIS1, D40_DREG_LCICR1, true, 32},
  216. {D40_DREG_LCEIS2, D40_DREG_LCICR2, true, 64},
  217. {D40_DREG_LCEIS3, D40_DREG_LCICR3, true, 96},
  218. {D40_DREG_PCTIS, D40_DREG_PCICR, false, D40_PHY_CHAN},
  219. {D40_DREG_PCEIS, D40_DREG_PCICR, true, D40_PHY_CHAN},
  220. };
  221. static struct d40_interrupt_lookup il_v4b[] = {
  222. {D40_DREG_CLCTIS1, D40_DREG_CLCICR1, false, 0},
  223. {D40_DREG_CLCTIS2, D40_DREG_CLCICR2, false, 32},
  224. {D40_DREG_CLCTIS3, D40_DREG_CLCICR3, false, 64},
  225. {D40_DREG_CLCTIS4, D40_DREG_CLCICR4, false, 96},
  226. {D40_DREG_CLCTIS5, D40_DREG_CLCICR5, false, 128},
  227. {D40_DREG_CLCEIS1, D40_DREG_CLCICR1, true, 0},
  228. {D40_DREG_CLCEIS2, D40_DREG_CLCICR2, true, 32},
  229. {D40_DREG_CLCEIS3, D40_DREG_CLCICR3, true, 64},
  230. {D40_DREG_CLCEIS4, D40_DREG_CLCICR4, true, 96},
  231. {D40_DREG_CLCEIS5, D40_DREG_CLCICR5, true, 128},
  232. {D40_DREG_CPCTIS, D40_DREG_CPCICR, false, D40_PHY_CHAN},
  233. {D40_DREG_CPCEIS, D40_DREG_CPCICR, true, D40_PHY_CHAN},
  234. };
  235. /**
  236. * struct d40_reg_val - simple lookup struct
  237. *
  238. * @reg: The register.
  239. * @val: The value that belongs to the register in reg.
  240. */
  241. struct d40_reg_val {
  242. unsigned int reg;
  243. unsigned int val;
  244. };
  245. static __initdata struct d40_reg_val dma_init_reg_v4a[] = {
  246. /* Clock every part of the DMA block from start */
  247. { .reg = D40_DREG_GCC, .val = D40_DREG_GCC_ENABLE_ALL},
  248. /* Interrupts on all logical channels */
  249. { .reg = D40_DREG_LCMIS0, .val = 0xFFFFFFFF},
  250. { .reg = D40_DREG_LCMIS1, .val = 0xFFFFFFFF},
  251. { .reg = D40_DREG_LCMIS2, .val = 0xFFFFFFFF},
  252. { .reg = D40_DREG_LCMIS3, .val = 0xFFFFFFFF},
  253. { .reg = D40_DREG_LCICR0, .val = 0xFFFFFFFF},
  254. { .reg = D40_DREG_LCICR1, .val = 0xFFFFFFFF},
  255. { .reg = D40_DREG_LCICR2, .val = 0xFFFFFFFF},
  256. { .reg = D40_DREG_LCICR3, .val = 0xFFFFFFFF},
  257. { .reg = D40_DREG_LCTIS0, .val = 0xFFFFFFFF},
  258. { .reg = D40_DREG_LCTIS1, .val = 0xFFFFFFFF},
  259. { .reg = D40_DREG_LCTIS2, .val = 0xFFFFFFFF},
  260. { .reg = D40_DREG_LCTIS3, .val = 0xFFFFFFFF}
  261. };
  262. static __initdata struct d40_reg_val dma_init_reg_v4b[] = {
  263. /* Clock every part of the DMA block from start */
  264. { .reg = D40_DREG_GCC, .val = D40_DREG_GCC_ENABLE_ALL},
  265. /* Interrupts on all logical channels */
  266. { .reg = D40_DREG_CLCMIS1, .val = 0xFFFFFFFF},
  267. { .reg = D40_DREG_CLCMIS2, .val = 0xFFFFFFFF},
  268. { .reg = D40_DREG_CLCMIS3, .val = 0xFFFFFFFF},
  269. { .reg = D40_DREG_CLCMIS4, .val = 0xFFFFFFFF},
  270. { .reg = D40_DREG_CLCMIS5, .val = 0xFFFFFFFF},
  271. { .reg = D40_DREG_CLCICR1, .val = 0xFFFFFFFF},
  272. { .reg = D40_DREG_CLCICR2, .val = 0xFFFFFFFF},
  273. { .reg = D40_DREG_CLCICR3, .val = 0xFFFFFFFF},
  274. { .reg = D40_DREG_CLCICR4, .val = 0xFFFFFFFF},
  275. { .reg = D40_DREG_CLCICR5, .val = 0xFFFFFFFF},
  276. { .reg = D40_DREG_CLCTIS1, .val = 0xFFFFFFFF},
  277. { .reg = D40_DREG_CLCTIS2, .val = 0xFFFFFFFF},
  278. { .reg = D40_DREG_CLCTIS3, .val = 0xFFFFFFFF},
  279. { .reg = D40_DREG_CLCTIS4, .val = 0xFFFFFFFF},
  280. { .reg = D40_DREG_CLCTIS5, .val = 0xFFFFFFFF}
  281. };
  282. /**
  283. * struct d40_lli_pool - Structure for keeping LLIs in memory
  284. *
  285. * @base: Pointer to memory area when the pre_alloc_lli's are not large
  286. * enough, IE bigger than the most common case, 1 dst and 1 src. NULL if
  287. * pre_alloc_lli is used.
  288. * @dma_addr: DMA address, if mapped
  289. * @size: The size in bytes of the memory at base or the size of pre_alloc_lli.
  290. * @pre_alloc_lli: Pre allocated area for the most common case of transfers,
  291. * one buffer to one buffer.
  292. */
  293. struct d40_lli_pool {
  294. void *base;
  295. int size;
  296. dma_addr_t dma_addr;
  297. /* Space for dst and src, plus an extra for padding */
  298. u8 pre_alloc_lli[3 * sizeof(struct d40_phy_lli)];
  299. };
  300. /**
  301. * struct d40_desc - A descriptor is one DMA job.
  302. *
  303. * @lli_phy: LLI settings for physical channel. Both src and dst=
  304. * points into the lli_pool, to base if lli_len > 1 or to pre_alloc_lli if
  305. * lli_len equals one.
  306. * @lli_log: Same as above but for logical channels.
  307. * @lli_pool: The pool with two entries pre-allocated.
  308. * @lli_len: Number of llis of current descriptor.
  309. * @lli_current: Number of transferred llis.
  310. * @lcla_alloc: Number of LCLA entries allocated.
  311. * @txd: DMA engine struct. Used for among other things for communication
  312. * during a transfer.
  313. * @node: List entry.
  314. * @is_in_client_list: true if the client owns this descriptor.
  315. * @cyclic: true if this is a cyclic job
  316. *
  317. * This descriptor is used for both logical and physical transfers.
  318. */
  319. struct d40_desc {
  320. /* LLI physical */
  321. struct d40_phy_lli_bidir lli_phy;
  322. /* LLI logical */
  323. struct d40_log_lli_bidir lli_log;
  324. struct d40_lli_pool lli_pool;
  325. int lli_len;
  326. int lli_current;
  327. int lcla_alloc;
  328. struct dma_async_tx_descriptor txd;
  329. struct list_head node;
  330. bool is_in_client_list;
  331. bool cyclic;
  332. };
  333. /**
  334. * struct d40_lcla_pool - LCLA pool settings and data.
  335. *
  336. * @base: The virtual address of LCLA. 18 bit aligned.
  337. * @base_unaligned: The orignal kmalloc pointer, if kmalloc is used.
  338. * This pointer is only there for clean-up on error.
  339. * @pages: The number of pages needed for all physical channels.
  340. * Only used later for clean-up on error
  341. * @lock: Lock to protect the content in this struct.
  342. * @alloc_map: big map over which LCLA entry is own by which job.
  343. */
  344. struct d40_lcla_pool {
  345. void *base;
  346. dma_addr_t dma_addr;
  347. void *base_unaligned;
  348. int pages;
  349. spinlock_t lock;
  350. struct d40_desc **alloc_map;
  351. };
  352. /**
  353. * struct d40_phy_res - struct for handling eventlines mapped to physical
  354. * channels.
  355. *
  356. * @lock: A lock protection this entity.
  357. * @reserved: True if used by secure world or otherwise.
  358. * @num: The physical channel number of this entity.
  359. * @allocated_src: Bit mapped to show which src event line's are mapped to
  360. * this physical channel. Can also be free or physically allocated.
  361. * @allocated_dst: Same as for src but is dst.
  362. * allocated_dst and allocated_src uses the D40_ALLOC* defines as well as
  363. * event line number.
  364. * @use_soft_lli: To mark if the linked lists of channel are managed by SW.
  365. */
  366. struct d40_phy_res {
  367. spinlock_t lock;
  368. bool reserved;
  369. int num;
  370. u32 allocated_src;
  371. u32 allocated_dst;
  372. bool use_soft_lli;
  373. };
  374. struct d40_base;
  375. /**
  376. * struct d40_chan - Struct that describes a channel.
  377. *
  378. * @lock: A spinlock to protect this struct.
  379. * @log_num: The logical number, if any of this channel.
  380. * @pending_tx: The number of pending transfers. Used between interrupt handler
  381. * and tasklet.
  382. * @busy: Set to true when transfer is ongoing on this channel.
  383. * @phy_chan: Pointer to physical channel which this instance runs on. If this
  384. * point is NULL, then the channel is not allocated.
  385. * @chan: DMA engine handle.
  386. * @tasklet: Tasklet that gets scheduled from interrupt context to complete a
  387. * transfer and call client callback.
  388. * @client: Cliented owned descriptor list.
  389. * @pending_queue: Submitted jobs, to be issued by issue_pending()
  390. * @active: Active descriptor.
  391. * @done: Completed jobs
  392. * @queue: Queued jobs.
  393. * @prepare_queue: Prepared jobs.
  394. * @dma_cfg: The client configuration of this dma channel.
  395. * @configured: whether the dma_cfg configuration is valid
  396. * @base: Pointer to the device instance struct.
  397. * @src_def_cfg: Default cfg register setting for src.
  398. * @dst_def_cfg: Default cfg register setting for dst.
  399. * @log_def: Default logical channel settings.
  400. * @lcpa: Pointer to dst and src lcpa settings.
  401. * @runtime_addr: runtime configured address.
  402. * @runtime_direction: runtime configured direction.
  403. *
  404. * This struct can either "be" a logical or a physical channel.
  405. */
  406. struct d40_chan {
  407. spinlock_t lock;
  408. int log_num;
  409. int pending_tx;
  410. bool busy;
  411. struct d40_phy_res *phy_chan;
  412. struct dma_chan chan;
  413. struct tasklet_struct tasklet;
  414. struct list_head client;
  415. struct list_head pending_queue;
  416. struct list_head active;
  417. struct list_head done;
  418. struct list_head queue;
  419. struct list_head prepare_queue;
  420. struct stedma40_chan_cfg dma_cfg;
  421. bool configured;
  422. struct d40_base *base;
  423. /* Default register configurations */
  424. u32 src_def_cfg;
  425. u32 dst_def_cfg;
  426. struct d40_def_lcsp log_def;
  427. struct d40_log_lli_full *lcpa;
  428. /* Runtime reconfiguration */
  429. dma_addr_t runtime_addr;
  430. enum dma_transfer_direction runtime_direction;
  431. };
  432. /**
  433. * struct d40_gen_dmac - generic values to represent u8500/u8540 DMA
  434. * controller
  435. *
  436. * @backup: the pointer to the registers address array for backup
  437. * @backup_size: the size of the registers address array for backup
  438. * @realtime_en: the realtime enable register
  439. * @realtime_clear: the realtime clear register
  440. * @high_prio_en: the high priority enable register
  441. * @high_prio_clear: the high priority clear register
  442. * @interrupt_en: the interrupt enable register
  443. * @interrupt_clear: the interrupt clear register
  444. * @il: the pointer to struct d40_interrupt_lookup
  445. * @il_size: the size of d40_interrupt_lookup array
  446. * @init_reg: the pointer to the struct d40_reg_val
  447. * @init_reg_size: the size of d40_reg_val array
  448. */
  449. struct d40_gen_dmac {
  450. u32 *backup;
  451. u32 backup_size;
  452. u32 realtime_en;
  453. u32 realtime_clear;
  454. u32 high_prio_en;
  455. u32 high_prio_clear;
  456. u32 interrupt_en;
  457. u32 interrupt_clear;
  458. struct d40_interrupt_lookup *il;
  459. u32 il_size;
  460. struct d40_reg_val *init_reg;
  461. u32 init_reg_size;
  462. };
  463. /**
  464. * struct d40_base - The big global struct, one for each probe'd instance.
  465. *
  466. * @interrupt_lock: Lock used to make sure one interrupt is handle a time.
  467. * @execmd_lock: Lock for execute command usage since several channels share
  468. * the same physical register.
  469. * @dev: The device structure.
  470. * @virtbase: The virtual base address of the DMA's register.
  471. * @rev: silicon revision detected.
  472. * @clk: Pointer to the DMA clock structure.
  473. * @phy_start: Physical memory start of the DMA registers.
  474. * @phy_size: Size of the DMA register map.
  475. * @irq: The IRQ number.
  476. * @num_memcpy_chans: The number of channels used for memcpy (mem-to-mem
  477. * transfers).
  478. * @num_phy_chans: The number of physical channels. Read from HW. This
  479. * is the number of available channels for this driver, not counting "Secure
  480. * mode" allocated physical channels.
  481. * @num_log_chans: The number of logical channels. Calculated from
  482. * num_phy_chans.
  483. * @dma_both: dma_device channels that can do both memcpy and slave transfers.
  484. * @dma_slave: dma_device channels that can do only do slave transfers.
  485. * @dma_memcpy: dma_device channels that can do only do memcpy transfers.
  486. * @phy_chans: Room for all possible physical channels in system.
  487. * @log_chans: Room for all possible logical channels in system.
  488. * @lookup_log_chans: Used to map interrupt number to logical channel. Points
  489. * to log_chans entries.
  490. * @lookup_phy_chans: Used to map interrupt number to physical channel. Points
  491. * to phy_chans entries.
  492. * @plat_data: Pointer to provided platform_data which is the driver
  493. * configuration.
  494. * @lcpa_regulator: Pointer to hold the regulator for the esram bank for lcla.
  495. * @phy_res: Vector containing all physical channels.
  496. * @lcla_pool: lcla pool settings and data.
  497. * @lcpa_base: The virtual mapped address of LCPA.
  498. * @phy_lcpa: The physical address of the LCPA.
  499. * @lcpa_size: The size of the LCPA area.
  500. * @desc_slab: cache for descriptors.
  501. * @reg_val_backup: Here the values of some hardware registers are stored
  502. * before the DMA is powered off. They are restored when the power is back on.
  503. * @reg_val_backup_v4: Backup of registers that only exits on dma40 v3 and
  504. * later
  505. * @reg_val_backup_chan: Backup data for standard channel parameter registers.
  506. * @gcc_pwr_off_mask: Mask to maintain the channels that can be turned off.
  507. * @initialized: true if the dma has been initialized
  508. * @gen_dmac: the struct for generic registers values to represent u8500/8540
  509. * DMA controller
  510. */
  511. struct d40_base {
  512. spinlock_t interrupt_lock;
  513. spinlock_t execmd_lock;
  514. struct device *dev;
  515. void __iomem *virtbase;
  516. u8 rev:4;
  517. struct clk *clk;
  518. phys_addr_t phy_start;
  519. resource_size_t phy_size;
  520. int irq;
  521. int num_memcpy_chans;
  522. int num_phy_chans;
  523. int num_log_chans;
  524. struct device_dma_parameters dma_parms;
  525. struct dma_device dma_both;
  526. struct dma_device dma_slave;
  527. struct dma_device dma_memcpy;
  528. struct d40_chan *phy_chans;
  529. struct d40_chan *log_chans;
  530. struct d40_chan **lookup_log_chans;
  531. struct d40_chan **lookup_phy_chans;
  532. struct stedma40_platform_data *plat_data;
  533. struct regulator *lcpa_regulator;
  534. /* Physical half channels */
  535. struct d40_phy_res *phy_res;
  536. struct d40_lcla_pool lcla_pool;
  537. void *lcpa_base;
  538. dma_addr_t phy_lcpa;
  539. resource_size_t lcpa_size;
  540. struct kmem_cache *desc_slab;
  541. u32 reg_val_backup[BACKUP_REGS_SZ];
  542. u32 reg_val_backup_v4[BACKUP_REGS_SZ_MAX];
  543. u32 *reg_val_backup_chan;
  544. u16 gcc_pwr_off_mask;
  545. bool initialized;
  546. struct d40_gen_dmac gen_dmac;
  547. };
  548. static struct device *chan2dev(struct d40_chan *d40c)
  549. {
  550. return &d40c->chan.dev->device;
  551. }
  552. static bool chan_is_physical(struct d40_chan *chan)
  553. {
  554. return chan->log_num == D40_PHY_CHAN;
  555. }
  556. static bool chan_is_logical(struct d40_chan *chan)
  557. {
  558. return !chan_is_physical(chan);
  559. }
  560. static void __iomem *chan_base(struct d40_chan *chan)
  561. {
  562. return chan->base->virtbase + D40_DREG_PCBASE +
  563. chan->phy_chan->num * D40_DREG_PCDELTA;
  564. }
  565. #define d40_err(dev, format, arg...) \
  566. dev_err(dev, "[%s] " format, __func__, ## arg)
  567. #define chan_err(d40c, format, arg...) \
  568. d40_err(chan2dev(d40c), format, ## arg)
  569. static int d40_pool_lli_alloc(struct d40_chan *d40c, struct d40_desc *d40d,
  570. int lli_len)
  571. {
  572. bool is_log = chan_is_logical(d40c);
  573. u32 align;
  574. void *base;
  575. if (is_log)
  576. align = sizeof(struct d40_log_lli);
  577. else
  578. align = sizeof(struct d40_phy_lli);
  579. if (lli_len == 1) {
  580. base = d40d->lli_pool.pre_alloc_lli;
  581. d40d->lli_pool.size = sizeof(d40d->lli_pool.pre_alloc_lli);
  582. d40d->lli_pool.base = NULL;
  583. } else {
  584. d40d->lli_pool.size = lli_len * 2 * align;
  585. base = kmalloc(d40d->lli_pool.size + align, GFP_NOWAIT);
  586. d40d->lli_pool.base = base;
  587. if (d40d->lli_pool.base == NULL)
  588. return -ENOMEM;
  589. }
  590. if (is_log) {
  591. d40d->lli_log.src = PTR_ALIGN(base, align);
  592. d40d->lli_log.dst = d40d->lli_log.src + lli_len;
  593. d40d->lli_pool.dma_addr = 0;
  594. } else {
  595. d40d->lli_phy.src = PTR_ALIGN(base, align);
  596. d40d->lli_phy.dst = d40d->lli_phy.src + lli_len;
  597. d40d->lli_pool.dma_addr = dma_map_single(d40c->base->dev,
  598. d40d->lli_phy.src,
  599. d40d->lli_pool.size,
  600. DMA_TO_DEVICE);
  601. if (dma_mapping_error(d40c->base->dev,
  602. d40d->lli_pool.dma_addr)) {
  603. kfree(d40d->lli_pool.base);
  604. d40d->lli_pool.base = NULL;
  605. d40d->lli_pool.dma_addr = 0;
  606. return -ENOMEM;
  607. }
  608. }
  609. return 0;
  610. }
  611. static void d40_pool_lli_free(struct d40_chan *d40c, struct d40_desc *d40d)
  612. {
  613. if (d40d->lli_pool.dma_addr)
  614. dma_unmap_single(d40c->base->dev, d40d->lli_pool.dma_addr,
  615. d40d->lli_pool.size, DMA_TO_DEVICE);
  616. kfree(d40d->lli_pool.base);
  617. d40d->lli_pool.base = NULL;
  618. d40d->lli_pool.size = 0;
  619. d40d->lli_log.src = NULL;
  620. d40d->lli_log.dst = NULL;
  621. d40d->lli_phy.src = NULL;
  622. d40d->lli_phy.dst = NULL;
  623. }
  624. static int d40_lcla_alloc_one(struct d40_chan *d40c,
  625. struct d40_desc *d40d)
  626. {
  627. unsigned long flags;
  628. int i;
  629. int ret = -EINVAL;
  630. spin_lock_irqsave(&d40c->base->lcla_pool.lock, flags);
  631. /*
  632. * Allocate both src and dst at the same time, therefore the half
  633. * start on 1 since 0 can't be used since zero is used as end marker.
  634. */
  635. for (i = 1 ; i < D40_LCLA_LINK_PER_EVENT_GRP / 2; i++) {
  636. int idx = d40c->phy_chan->num * D40_LCLA_LINK_PER_EVENT_GRP + i;
  637. if (!d40c->base->lcla_pool.alloc_map[idx]) {
  638. d40c->base->lcla_pool.alloc_map[idx] = d40d;
  639. d40d->lcla_alloc++;
  640. ret = i;
  641. break;
  642. }
  643. }
  644. spin_unlock_irqrestore(&d40c->base->lcla_pool.lock, flags);
  645. return ret;
  646. }
  647. static int d40_lcla_free_all(struct d40_chan *d40c,
  648. struct d40_desc *d40d)
  649. {
  650. unsigned long flags;
  651. int i;
  652. int ret = -EINVAL;
  653. if (chan_is_physical(d40c))
  654. return 0;
  655. spin_lock_irqsave(&d40c->base->lcla_pool.lock, flags);
  656. for (i = 1 ; i < D40_LCLA_LINK_PER_EVENT_GRP / 2; i++) {
  657. int idx = d40c->phy_chan->num * D40_LCLA_LINK_PER_EVENT_GRP + i;
  658. if (d40c->base->lcla_pool.alloc_map[idx] == d40d) {
  659. d40c->base->lcla_pool.alloc_map[idx] = NULL;
  660. d40d->lcla_alloc--;
  661. if (d40d->lcla_alloc == 0) {
  662. ret = 0;
  663. break;
  664. }
  665. }
  666. }
  667. spin_unlock_irqrestore(&d40c->base->lcla_pool.lock, flags);
  668. return ret;
  669. }
  670. static void d40_desc_remove(struct d40_desc *d40d)
  671. {
  672. list_del(&d40d->node);
  673. }
  674. static struct d40_desc *d40_desc_get(struct d40_chan *d40c)
  675. {
  676. struct d40_desc *desc = NULL;
  677. if (!list_empty(&d40c->client)) {
  678. struct d40_desc *d;
  679. struct d40_desc *_d;
  680. list_for_each_entry_safe(d, _d, &d40c->client, node) {
  681. if (async_tx_test_ack(&d->txd)) {
  682. d40_desc_remove(d);
  683. desc = d;
  684. memset(desc, 0, sizeof(*desc));
  685. break;
  686. }
  687. }
  688. }
  689. if (!desc)
  690. desc = kmem_cache_zalloc(d40c->base->desc_slab, GFP_NOWAIT);
  691. if (desc)
  692. INIT_LIST_HEAD(&desc->node);
  693. return desc;
  694. }
  695. static void d40_desc_free(struct d40_chan *d40c, struct d40_desc *d40d)
  696. {
  697. d40_pool_lli_free(d40c, d40d);
  698. d40_lcla_free_all(d40c, d40d);
  699. kmem_cache_free(d40c->base->desc_slab, d40d);
  700. }
  701. static void d40_desc_submit(struct d40_chan *d40c, struct d40_desc *desc)
  702. {
  703. list_add_tail(&desc->node, &d40c->active);
  704. }
  705. static void d40_phy_lli_load(struct d40_chan *chan, struct d40_desc *desc)
  706. {
  707. struct d40_phy_lli *lli_dst = desc->lli_phy.dst;
  708. struct d40_phy_lli *lli_src = desc->lli_phy.src;
  709. void __iomem *base = chan_base(chan);
  710. writel(lli_src->reg_cfg, base + D40_CHAN_REG_SSCFG);
  711. writel(lli_src->reg_elt, base + D40_CHAN_REG_SSELT);
  712. writel(lli_src->reg_ptr, base + D40_CHAN_REG_SSPTR);
  713. writel(lli_src->reg_lnk, base + D40_CHAN_REG_SSLNK);
  714. writel(lli_dst->reg_cfg, base + D40_CHAN_REG_SDCFG);
  715. writel(lli_dst->reg_elt, base + D40_CHAN_REG_SDELT);
  716. writel(lli_dst->reg_ptr, base + D40_CHAN_REG_SDPTR);
  717. writel(lli_dst->reg_lnk, base + D40_CHAN_REG_SDLNK);
  718. }
  719. static void d40_desc_done(struct d40_chan *d40c, struct d40_desc *desc)
  720. {
  721. list_add_tail(&desc->node, &d40c->done);
  722. }
  723. static void d40_log_lli_to_lcxa(struct d40_chan *chan, struct d40_desc *desc)
  724. {
  725. struct d40_lcla_pool *pool = &chan->base->lcla_pool;
  726. struct d40_log_lli_bidir *lli = &desc->lli_log;
  727. int lli_current = desc->lli_current;
  728. int lli_len = desc->lli_len;
  729. bool cyclic = desc->cyclic;
  730. int curr_lcla = -EINVAL;
  731. int first_lcla = 0;
  732. bool use_esram_lcla = chan->base->plat_data->use_esram_lcla;
  733. bool linkback;
  734. /*
  735. * We may have partially running cyclic transfers, in case we did't get
  736. * enough LCLA entries.
  737. */
  738. linkback = cyclic && lli_current == 0;
  739. /*
  740. * For linkback, we need one LCLA even with only one link, because we
  741. * can't link back to the one in LCPA space
  742. */
  743. if (linkback || (lli_len - lli_current > 1)) {
  744. /*
  745. * If the channel is expected to use only soft_lli don't
  746. * allocate a lcla. This is to avoid a HW issue that exists
  747. * in some controller during a peripheral to memory transfer
  748. * that uses linked lists.
  749. */
  750. if (!(chan->phy_chan->use_soft_lli &&
  751. chan->dma_cfg.dir == DMA_DEV_TO_MEM))
  752. curr_lcla = d40_lcla_alloc_one(chan, desc);
  753. first_lcla = curr_lcla;
  754. }
  755. /*
  756. * For linkback, we normally load the LCPA in the loop since we need to
  757. * link it to the second LCLA and not the first. However, if we
  758. * couldn't even get a first LCLA, then we have to run in LCPA and
  759. * reload manually.
  760. */
  761. if (!linkback || curr_lcla == -EINVAL) {
  762. unsigned int flags = 0;
  763. if (curr_lcla == -EINVAL)
  764. flags |= LLI_TERM_INT;
  765. d40_log_lli_lcpa_write(chan->lcpa,
  766. &lli->dst[lli_current],
  767. &lli->src[lli_current],
  768. curr_lcla,
  769. flags);
  770. lli_current++;
  771. }
  772. if (curr_lcla < 0)
  773. goto out;
  774. for (; lli_current < lli_len; lli_current++) {
  775. unsigned int lcla_offset = chan->phy_chan->num * 1024 +
  776. 8 * curr_lcla * 2;
  777. struct d40_log_lli *lcla = pool->base + lcla_offset;
  778. unsigned int flags = 0;
  779. int next_lcla;
  780. if (lli_current + 1 < lli_len)
  781. next_lcla = d40_lcla_alloc_one(chan, desc);
  782. else
  783. next_lcla = linkback ? first_lcla : -EINVAL;
  784. if (cyclic || next_lcla == -EINVAL)
  785. flags |= LLI_TERM_INT;
  786. if (linkback && curr_lcla == first_lcla) {
  787. /* First link goes in both LCPA and LCLA */
  788. d40_log_lli_lcpa_write(chan->lcpa,
  789. &lli->dst[lli_current],
  790. &lli->src[lli_current],
  791. next_lcla, flags);
  792. }
  793. /*
  794. * One unused LCLA in the cyclic case if the very first
  795. * next_lcla fails...
  796. */
  797. d40_log_lli_lcla_write(lcla,
  798. &lli->dst[lli_current],
  799. &lli->src[lli_current],
  800. next_lcla, flags);
  801. /*
  802. * Cache maintenance is not needed if lcla is
  803. * mapped in esram
  804. */
  805. if (!use_esram_lcla) {
  806. dma_sync_single_range_for_device(chan->base->dev,
  807. pool->dma_addr, lcla_offset,
  808. 2 * sizeof(struct d40_log_lli),
  809. DMA_TO_DEVICE);
  810. }
  811. curr_lcla = next_lcla;
  812. if (curr_lcla == -EINVAL || curr_lcla == first_lcla) {
  813. lli_current++;
  814. break;
  815. }
  816. }
  817. out:
  818. desc->lli_current = lli_current;
  819. }
  820. static void d40_desc_load(struct d40_chan *d40c, struct d40_desc *d40d)
  821. {
  822. if (chan_is_physical(d40c)) {
  823. d40_phy_lli_load(d40c, d40d);
  824. d40d->lli_current = d40d->lli_len;
  825. } else
  826. d40_log_lli_to_lcxa(d40c, d40d);
  827. }
  828. static struct d40_desc *d40_first_active_get(struct d40_chan *d40c)
  829. {
  830. struct d40_desc *d;
  831. if (list_empty(&d40c->active))
  832. return NULL;
  833. d = list_first_entry(&d40c->active,
  834. struct d40_desc,
  835. node);
  836. return d;
  837. }
  838. /* remove desc from current queue and add it to the pending_queue */
  839. static void d40_desc_queue(struct d40_chan *d40c, struct d40_desc *desc)
  840. {
  841. d40_desc_remove(desc);
  842. desc->is_in_client_list = false;
  843. list_add_tail(&desc->node, &d40c->pending_queue);
  844. }
  845. static struct d40_desc *d40_first_pending(struct d40_chan *d40c)
  846. {
  847. struct d40_desc *d;
  848. if (list_empty(&d40c->pending_queue))
  849. return NULL;
  850. d = list_first_entry(&d40c->pending_queue,
  851. struct d40_desc,
  852. node);
  853. return d;
  854. }
  855. static struct d40_desc *d40_first_queued(struct d40_chan *d40c)
  856. {
  857. struct d40_desc *d;
  858. if (list_empty(&d40c->queue))
  859. return NULL;
  860. d = list_first_entry(&d40c->queue,
  861. struct d40_desc,
  862. node);
  863. return d;
  864. }
  865. static struct d40_desc *d40_first_done(struct d40_chan *d40c)
  866. {
  867. if (list_empty(&d40c->done))
  868. return NULL;
  869. return list_first_entry(&d40c->done, struct d40_desc, node);
  870. }
  871. static int d40_psize_2_burst_size(bool is_log, int psize)
  872. {
  873. if (is_log) {
  874. if (psize == STEDMA40_PSIZE_LOG_1)
  875. return 1;
  876. } else {
  877. if (psize == STEDMA40_PSIZE_PHY_1)
  878. return 1;
  879. }
  880. return 2 << psize;
  881. }
  882. /*
  883. * The dma only supports transmitting packages up to
  884. * STEDMA40_MAX_SEG_SIZE * data_width, where data_width is stored in Bytes.
  885. *
  886. * Calculate the total number of dma elements required to send the entire sg list.
  887. */
  888. static int d40_size_2_dmalen(int size, u32 data_width1, u32 data_width2)
  889. {
  890. int dmalen;
  891. u32 max_w = max(data_width1, data_width2);
  892. u32 min_w = min(data_width1, data_width2);
  893. u32 seg_max = ALIGN(STEDMA40_MAX_SEG_SIZE * min_w, max_w);
  894. if (seg_max > STEDMA40_MAX_SEG_SIZE)
  895. seg_max -= max_w;
  896. if (!IS_ALIGNED(size, max_w))
  897. return -EINVAL;
  898. if (size <= seg_max)
  899. dmalen = 1;
  900. else {
  901. dmalen = size / seg_max;
  902. if (dmalen * seg_max < size)
  903. dmalen++;
  904. }
  905. return dmalen;
  906. }
  907. static int d40_sg_2_dmalen(struct scatterlist *sgl, int sg_len,
  908. u32 data_width1, u32 data_width2)
  909. {
  910. struct scatterlist *sg;
  911. int i;
  912. int len = 0;
  913. int ret;
  914. for_each_sg(sgl, sg, sg_len, i) {
  915. ret = d40_size_2_dmalen(sg_dma_len(sg),
  916. data_width1, data_width2);
  917. if (ret < 0)
  918. return ret;
  919. len += ret;
  920. }
  921. return len;
  922. }
  923. #ifdef CONFIG_PM
  924. static void dma40_backup(void __iomem *baseaddr, u32 *backup,
  925. u32 *regaddr, int num, bool save)
  926. {
  927. int i;
  928. for (i = 0; i < num; i++) {
  929. void __iomem *addr = baseaddr + regaddr[i];
  930. if (save)
  931. backup[i] = readl_relaxed(addr);
  932. else
  933. writel_relaxed(backup[i], addr);
  934. }
  935. }
  936. static void d40_save_restore_registers(struct d40_base *base, bool save)
  937. {
  938. int i;
  939. /* Save/Restore channel specific registers */
  940. for (i = 0; i < base->num_phy_chans; i++) {
  941. void __iomem *addr;
  942. int idx;
  943. if (base->phy_res[i].reserved)
  944. continue;
  945. addr = base->virtbase + D40_DREG_PCBASE + i * D40_DREG_PCDELTA;
  946. idx = i * ARRAY_SIZE(d40_backup_regs_chan);
  947. dma40_backup(addr, &base->reg_val_backup_chan[idx],
  948. d40_backup_regs_chan,
  949. ARRAY_SIZE(d40_backup_regs_chan),
  950. save);
  951. }
  952. /* Save/Restore global registers */
  953. dma40_backup(base->virtbase, base->reg_val_backup,
  954. d40_backup_regs, ARRAY_SIZE(d40_backup_regs),
  955. save);
  956. /* Save/Restore registers only existing on dma40 v3 and later */
  957. if (base->gen_dmac.backup)
  958. dma40_backup(base->virtbase, base->reg_val_backup_v4,
  959. base->gen_dmac.backup,
  960. base->gen_dmac.backup_size,
  961. save);
  962. }
  963. #else
  964. static void d40_save_restore_registers(struct d40_base *base, bool save)
  965. {
  966. }
  967. #endif
  968. static int __d40_execute_command_phy(struct d40_chan *d40c,
  969. enum d40_command command)
  970. {
  971. u32 status;
  972. int i;
  973. void __iomem *active_reg;
  974. int ret = 0;
  975. unsigned long flags;
  976. u32 wmask;
  977. if (command == D40_DMA_STOP) {
  978. ret = __d40_execute_command_phy(d40c, D40_DMA_SUSPEND_REQ);
  979. if (ret)
  980. return ret;
  981. }
  982. spin_lock_irqsave(&d40c->base->execmd_lock, flags);
  983. if (d40c->phy_chan->num % 2 == 0)
  984. active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
  985. else
  986. active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
  987. if (command == D40_DMA_SUSPEND_REQ) {
  988. status = (readl(active_reg) &
  989. D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
  990. D40_CHAN_POS(d40c->phy_chan->num);
  991. if (status == D40_DMA_SUSPENDED || status == D40_DMA_STOP)
  992. goto done;
  993. }
  994. wmask = 0xffffffff & ~(D40_CHAN_POS_MASK(d40c->phy_chan->num));
  995. writel(wmask | (command << D40_CHAN_POS(d40c->phy_chan->num)),
  996. active_reg);
  997. if (command == D40_DMA_SUSPEND_REQ) {
  998. for (i = 0 ; i < D40_SUSPEND_MAX_IT; i++) {
  999. status = (readl(active_reg) &
  1000. D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
  1001. D40_CHAN_POS(d40c->phy_chan->num);
  1002. cpu_relax();
  1003. /*
  1004. * Reduce the number of bus accesses while
  1005. * waiting for the DMA to suspend.
  1006. */
  1007. udelay(3);
  1008. if (status == D40_DMA_STOP ||
  1009. status == D40_DMA_SUSPENDED)
  1010. break;
  1011. }
  1012. if (i == D40_SUSPEND_MAX_IT) {
  1013. chan_err(d40c,
  1014. "unable to suspend the chl %d (log: %d) status %x\n",
  1015. d40c->phy_chan->num, d40c->log_num,
  1016. status);
  1017. dump_stack();
  1018. ret = -EBUSY;
  1019. }
  1020. }
  1021. done:
  1022. spin_unlock_irqrestore(&d40c->base->execmd_lock, flags);
  1023. return ret;
  1024. }
  1025. static void d40_term_all(struct d40_chan *d40c)
  1026. {
  1027. struct d40_desc *d40d;
  1028. struct d40_desc *_d;
  1029. /* Release completed descriptors */
  1030. while ((d40d = d40_first_done(d40c))) {
  1031. d40_desc_remove(d40d);
  1032. d40_desc_free(d40c, d40d);
  1033. }
  1034. /* Release active descriptors */
  1035. while ((d40d = d40_first_active_get(d40c))) {
  1036. d40_desc_remove(d40d);
  1037. d40_desc_free(d40c, d40d);
  1038. }
  1039. /* Release queued descriptors waiting for transfer */
  1040. while ((d40d = d40_first_queued(d40c))) {
  1041. d40_desc_remove(d40d);
  1042. d40_desc_free(d40c, d40d);
  1043. }
  1044. /* Release pending descriptors */
  1045. while ((d40d = d40_first_pending(d40c))) {
  1046. d40_desc_remove(d40d);
  1047. d40_desc_free(d40c, d40d);
  1048. }
  1049. /* Release client owned descriptors */
  1050. if (!list_empty(&d40c->client))
  1051. list_for_each_entry_safe(d40d, _d, &d40c->client, node) {
  1052. d40_desc_remove(d40d);
  1053. d40_desc_free(d40c, d40d);
  1054. }
  1055. /* Release descriptors in prepare queue */
  1056. if (!list_empty(&d40c->prepare_queue))
  1057. list_for_each_entry_safe(d40d, _d,
  1058. &d40c->prepare_queue, node) {
  1059. d40_desc_remove(d40d);
  1060. d40_desc_free(d40c, d40d);
  1061. }
  1062. d40c->pending_tx = 0;
  1063. }
  1064. static void __d40_config_set_event(struct d40_chan *d40c,
  1065. enum d40_events event_type, u32 event,
  1066. int reg)
  1067. {
  1068. void __iomem *addr = chan_base(d40c) + reg;
  1069. int tries;
  1070. u32 status;
  1071. switch (event_type) {
  1072. case D40_DEACTIVATE_EVENTLINE:
  1073. writel((D40_DEACTIVATE_EVENTLINE << D40_EVENTLINE_POS(event))
  1074. | ~D40_EVENTLINE_MASK(event), addr);
  1075. break;
  1076. case D40_SUSPEND_REQ_EVENTLINE:
  1077. status = (readl(addr) & D40_EVENTLINE_MASK(event)) >>
  1078. D40_EVENTLINE_POS(event);
  1079. if (status == D40_DEACTIVATE_EVENTLINE ||
  1080. status == D40_SUSPEND_REQ_EVENTLINE)
  1081. break;
  1082. writel((D40_SUSPEND_REQ_EVENTLINE << D40_EVENTLINE_POS(event))
  1083. | ~D40_EVENTLINE_MASK(event), addr);
  1084. for (tries = 0 ; tries < D40_SUSPEND_MAX_IT; tries++) {
  1085. status = (readl(addr) & D40_EVENTLINE_MASK(event)) >>
  1086. D40_EVENTLINE_POS(event);
  1087. cpu_relax();
  1088. /*
  1089. * Reduce the number of bus accesses while
  1090. * waiting for the DMA to suspend.
  1091. */
  1092. udelay(3);
  1093. if (status == D40_DEACTIVATE_EVENTLINE)
  1094. break;
  1095. }
  1096. if (tries == D40_SUSPEND_MAX_IT) {
  1097. chan_err(d40c,
  1098. "unable to stop the event_line chl %d (log: %d)"
  1099. "status %x\n", d40c->phy_chan->num,
  1100. d40c->log_num, status);
  1101. }
  1102. break;
  1103. case D40_ACTIVATE_EVENTLINE:
  1104. /*
  1105. * The hardware sometimes doesn't register the enable when src and dst
  1106. * event lines are active on the same logical channel. Retry to ensure
  1107. * it does. Usually only one retry is sufficient.
  1108. */
  1109. tries = 100;
  1110. while (--tries) {
  1111. writel((D40_ACTIVATE_EVENTLINE <<
  1112. D40_EVENTLINE_POS(event)) |
  1113. ~D40_EVENTLINE_MASK(event), addr);
  1114. if (readl(addr) & D40_EVENTLINE_MASK(event))
  1115. break;
  1116. }
  1117. if (tries != 99)
  1118. dev_dbg(chan2dev(d40c),
  1119. "[%s] workaround enable S%cLNK (%d tries)\n",
  1120. __func__, reg == D40_CHAN_REG_SSLNK ? 'S' : 'D',
  1121. 100 - tries);
  1122. WARN_ON(!tries);
  1123. break;
  1124. case D40_ROUND_EVENTLINE:
  1125. BUG();
  1126. break;
  1127. }
  1128. }
  1129. static void d40_config_set_event(struct d40_chan *d40c,
  1130. enum d40_events event_type)
  1131. {
  1132. u32 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dev_type);
  1133. /* Enable event line connected to device (or memcpy) */
  1134. if ((d40c->dma_cfg.dir == DMA_DEV_TO_MEM) ||
  1135. (d40c->dma_cfg.dir == DMA_DEV_TO_DEV))
  1136. __d40_config_set_event(d40c, event_type, event,
  1137. D40_CHAN_REG_SSLNK);
  1138. if (d40c->dma_cfg.dir != DMA_DEV_TO_MEM)
  1139. __d40_config_set_event(d40c, event_type, event,
  1140. D40_CHAN_REG_SDLNK);
  1141. }
  1142. static u32 d40_chan_has_events(struct d40_chan *d40c)
  1143. {
  1144. void __iomem *chanbase = chan_base(d40c);
  1145. u32 val;
  1146. val = readl(chanbase + D40_CHAN_REG_SSLNK);
  1147. val |= readl(chanbase + D40_CHAN_REG_SDLNK);
  1148. return val;
  1149. }
  1150. static int
  1151. __d40_execute_command_log(struct d40_chan *d40c, enum d40_command command)
  1152. {
  1153. unsigned long flags;
  1154. int ret = 0;
  1155. u32 active_status;
  1156. void __iomem *active_reg;
  1157. if (d40c->phy_chan->num % 2 == 0)
  1158. active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
  1159. else
  1160. active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
  1161. spin_lock_irqsave(&d40c->phy_chan->lock, flags);
  1162. switch (command) {
  1163. case D40_DMA_STOP:
  1164. case D40_DMA_SUSPEND_REQ:
  1165. active_status = (readl(active_reg) &
  1166. D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
  1167. D40_CHAN_POS(d40c->phy_chan->num);
  1168. if (active_status == D40_DMA_RUN)
  1169. d40_config_set_event(d40c, D40_SUSPEND_REQ_EVENTLINE);
  1170. else
  1171. d40_config_set_event(d40c, D40_DEACTIVATE_EVENTLINE);
  1172. if (!d40_chan_has_events(d40c) && (command == D40_DMA_STOP))
  1173. ret = __d40_execute_command_phy(d40c, command);
  1174. break;
  1175. case D40_DMA_RUN:
  1176. d40_config_set_event(d40c, D40_ACTIVATE_EVENTLINE);
  1177. ret = __d40_execute_command_phy(d40c, command);
  1178. break;
  1179. case D40_DMA_SUSPENDED:
  1180. BUG();
  1181. break;
  1182. }
  1183. spin_unlock_irqrestore(&d40c->phy_chan->lock, flags);
  1184. return ret;
  1185. }
  1186. static int d40_channel_execute_command(struct d40_chan *d40c,
  1187. enum d40_command command)
  1188. {
  1189. if (chan_is_logical(d40c))
  1190. return __d40_execute_command_log(d40c, command);
  1191. else
  1192. return __d40_execute_command_phy(d40c, command);
  1193. }
  1194. static u32 d40_get_prmo(struct d40_chan *d40c)
  1195. {
  1196. static const unsigned int phy_map[] = {
  1197. [STEDMA40_PCHAN_BASIC_MODE]
  1198. = D40_DREG_PRMO_PCHAN_BASIC,
  1199. [STEDMA40_PCHAN_MODULO_MODE]
  1200. = D40_DREG_PRMO_PCHAN_MODULO,
  1201. [STEDMA40_PCHAN_DOUBLE_DST_MODE]
  1202. = D40_DREG_PRMO_PCHAN_DOUBLE_DST,
  1203. };
  1204. static const unsigned int log_map[] = {
  1205. [STEDMA40_LCHAN_SRC_PHY_DST_LOG]
  1206. = D40_DREG_PRMO_LCHAN_SRC_PHY_DST_LOG,
  1207. [STEDMA40_LCHAN_SRC_LOG_DST_PHY]
  1208. = D40_DREG_PRMO_LCHAN_SRC_LOG_DST_PHY,
  1209. [STEDMA40_LCHAN_SRC_LOG_DST_LOG]
  1210. = D40_DREG_PRMO_LCHAN_SRC_LOG_DST_LOG,
  1211. };
  1212. if (chan_is_physical(d40c))
  1213. return phy_map[d40c->dma_cfg.mode_opt];
  1214. else
  1215. return log_map[d40c->dma_cfg.mode_opt];
  1216. }
  1217. static void d40_config_write(struct d40_chan *d40c)
  1218. {
  1219. u32 addr_base;
  1220. u32 var;
  1221. /* Odd addresses are even addresses + 4 */
  1222. addr_base = (d40c->phy_chan->num % 2) * 4;
  1223. /* Setup channel mode to logical or physical */
  1224. var = ((u32)(chan_is_logical(d40c)) + 1) <<
  1225. D40_CHAN_POS(d40c->phy_chan->num);
  1226. writel(var, d40c->base->virtbase + D40_DREG_PRMSE + addr_base);
  1227. /* Setup operational mode option register */
  1228. var = d40_get_prmo(d40c) << D40_CHAN_POS(d40c->phy_chan->num);
  1229. writel(var, d40c->base->virtbase + D40_DREG_PRMOE + addr_base);
  1230. if (chan_is_logical(d40c)) {
  1231. int lidx = (d40c->phy_chan->num << D40_SREG_ELEM_LOG_LIDX_POS)
  1232. & D40_SREG_ELEM_LOG_LIDX_MASK;
  1233. void __iomem *chanbase = chan_base(d40c);
  1234. /* Set default config for CFG reg */
  1235. writel(d40c->src_def_cfg, chanbase + D40_CHAN_REG_SSCFG);
  1236. writel(d40c->dst_def_cfg, chanbase + D40_CHAN_REG_SDCFG);
  1237. /* Set LIDX for lcla */
  1238. writel(lidx, chanbase + D40_CHAN_REG_SSELT);
  1239. writel(lidx, chanbase + D40_CHAN_REG_SDELT);
  1240. /* Clear LNK which will be used by d40_chan_has_events() */
  1241. writel(0, chanbase + D40_CHAN_REG_SSLNK);
  1242. writel(0, chanbase + D40_CHAN_REG_SDLNK);
  1243. }
  1244. }
  1245. static u32 d40_residue(struct d40_chan *d40c)
  1246. {
  1247. u32 num_elt;
  1248. if (chan_is_logical(d40c))
  1249. num_elt = (readl(&d40c->lcpa->lcsp2) & D40_MEM_LCSP2_ECNT_MASK)
  1250. >> D40_MEM_LCSP2_ECNT_POS;
  1251. else {
  1252. u32 val = readl(chan_base(d40c) + D40_CHAN_REG_SDELT);
  1253. num_elt = (val & D40_SREG_ELEM_PHY_ECNT_MASK)
  1254. >> D40_SREG_ELEM_PHY_ECNT_POS;
  1255. }
  1256. return num_elt * d40c->dma_cfg.dst_info.data_width;
  1257. }
  1258. static bool d40_tx_is_linked(struct d40_chan *d40c)
  1259. {
  1260. bool is_link;
  1261. if (chan_is_logical(d40c))
  1262. is_link = readl(&d40c->lcpa->lcsp3) & D40_MEM_LCSP3_DLOS_MASK;
  1263. else
  1264. is_link = readl(chan_base(d40c) + D40_CHAN_REG_SDLNK)
  1265. & D40_SREG_LNK_PHYS_LNK_MASK;
  1266. return is_link;
  1267. }
  1268. static int d40_pause(struct d40_chan *d40c)
  1269. {
  1270. int res = 0;
  1271. unsigned long flags;
  1272. if (!d40c->busy)
  1273. return 0;
  1274. pm_runtime_get_sync(d40c->base->dev);
  1275. spin_lock_irqsave(&d40c->lock, flags);
  1276. res = d40_channel_execute_command(d40c, D40_DMA_SUSPEND_REQ);
  1277. pm_runtime_mark_last_busy(d40c->base->dev);
  1278. pm_runtime_put_autosuspend(d40c->base->dev);
  1279. spin_unlock_irqrestore(&d40c->lock, flags);
  1280. return res;
  1281. }
  1282. static int d40_resume(struct d40_chan *d40c)
  1283. {
  1284. int res = 0;
  1285. unsigned long flags;
  1286. if (!d40c->busy)
  1287. return 0;
  1288. spin_lock_irqsave(&d40c->lock, flags);
  1289. pm_runtime_get_sync(d40c->base->dev);
  1290. /* If bytes left to transfer or linked tx resume job */
  1291. if (d40_residue(d40c) || d40_tx_is_linked(d40c))
  1292. res = d40_channel_execute_command(d40c, D40_DMA_RUN);
  1293. pm_runtime_mark_last_busy(d40c->base->dev);
  1294. pm_runtime_put_autosuspend(d40c->base->dev);
  1295. spin_unlock_irqrestore(&d40c->lock, flags);
  1296. return res;
  1297. }
  1298. static dma_cookie_t d40_tx_submit(struct dma_async_tx_descriptor *tx)
  1299. {
  1300. struct d40_chan *d40c = container_of(tx->chan,
  1301. struct d40_chan,
  1302. chan);
  1303. struct d40_desc *d40d = container_of(tx, struct d40_desc, txd);
  1304. unsigned long flags;
  1305. dma_cookie_t cookie;
  1306. spin_lock_irqsave(&d40c->lock, flags);
  1307. cookie = dma_cookie_assign(tx);
  1308. d40_desc_queue(d40c, d40d);
  1309. spin_unlock_irqrestore(&d40c->lock, flags);
  1310. return cookie;
  1311. }
  1312. static int d40_start(struct d40_chan *d40c)
  1313. {
  1314. return d40_channel_execute_command(d40c, D40_DMA_RUN);
  1315. }
  1316. static struct d40_desc *d40_queue_start(struct d40_chan *d40c)
  1317. {
  1318. struct d40_desc *d40d;
  1319. int err;
  1320. /* Start queued jobs, if any */
  1321. d40d = d40_first_queued(d40c);
  1322. if (d40d != NULL) {
  1323. if (!d40c->busy) {
  1324. d40c->busy = true;
  1325. pm_runtime_get_sync(d40c->base->dev);
  1326. }
  1327. /* Remove from queue */
  1328. d40_desc_remove(d40d);
  1329. /* Add to active queue */
  1330. d40_desc_submit(d40c, d40d);
  1331. /* Initiate DMA job */
  1332. d40_desc_load(d40c, d40d);
  1333. /* Start dma job */
  1334. err = d40_start(d40c);
  1335. if (err)
  1336. return NULL;
  1337. }
  1338. return d40d;
  1339. }
  1340. /* called from interrupt context */
  1341. static void dma_tc_handle(struct d40_chan *d40c)
  1342. {
  1343. struct d40_desc *d40d;
  1344. /* Get first active entry from list */
  1345. d40d = d40_first_active_get(d40c);
  1346. if (d40d == NULL)
  1347. return;
  1348. if (d40d->cyclic) {
  1349. /*
  1350. * If this was a paritially loaded list, we need to reloaded
  1351. * it, and only when the list is completed. We need to check
  1352. * for done because the interrupt will hit for every link, and
  1353. * not just the last one.
  1354. */
  1355. if (d40d->lli_current < d40d->lli_len
  1356. && !d40_tx_is_linked(d40c)
  1357. && !d40_residue(d40c)) {
  1358. d40_lcla_free_all(d40c, d40d);
  1359. d40_desc_load(d40c, d40d);
  1360. (void) d40_start(d40c);
  1361. if (d40d->lli_current == d40d->lli_len)
  1362. d40d->lli_current = 0;
  1363. }
  1364. } else {
  1365. d40_lcla_free_all(d40c, d40d);
  1366. if (d40d->lli_current < d40d->lli_len) {
  1367. d40_desc_load(d40c, d40d);
  1368. /* Start dma job */
  1369. (void) d40_start(d40c);
  1370. return;
  1371. }
  1372. if (d40_queue_start(d40c) == NULL)
  1373. d40c->busy = false;
  1374. pm_runtime_mark_last_busy(d40c->base->dev);
  1375. pm_runtime_put_autosuspend(d40c->base->dev);
  1376. d40_desc_remove(d40d);
  1377. d40_desc_done(d40c, d40d);
  1378. }
  1379. d40c->pending_tx++;
  1380. tasklet_schedule(&d40c->tasklet);
  1381. }
  1382. static void dma_tasklet(unsigned long data)
  1383. {
  1384. struct d40_chan *d40c = (struct d40_chan *) data;
  1385. struct d40_desc *d40d;
  1386. unsigned long flags;
  1387. dma_async_tx_callback callback;
  1388. void *callback_param;
  1389. spin_lock_irqsave(&d40c->lock, flags);
  1390. /* Get first entry from the done list */
  1391. d40d = d40_first_done(d40c);
  1392. if (d40d == NULL) {
  1393. /* Check if we have reached here for cyclic job */
  1394. d40d = d40_first_active_get(d40c);
  1395. if (d40d == NULL || !d40d->cyclic)
  1396. goto err;
  1397. }
  1398. if (!d40d->cyclic)
  1399. dma_cookie_complete(&d40d->txd);
  1400. /*
  1401. * If terminating a channel pending_tx is set to zero.
  1402. * This prevents any finished active jobs to return to the client.
  1403. */
  1404. if (d40c->pending_tx == 0) {
  1405. spin_unlock_irqrestore(&d40c->lock, flags);
  1406. return;
  1407. }
  1408. /* Callback to client */
  1409. callback = d40d->txd.callback;
  1410. callback_param = d40d->txd.callback_param;
  1411. if (!d40d->cyclic) {
  1412. if (async_tx_test_ack(&d40d->txd)) {
  1413. d40_desc_remove(d40d);
  1414. d40_desc_free(d40c, d40d);
  1415. } else if (!d40d->is_in_client_list) {
  1416. d40_desc_remove(d40d);
  1417. d40_lcla_free_all(d40c, d40d);
  1418. list_add_tail(&d40d->node, &d40c->client);
  1419. d40d->is_in_client_list = true;
  1420. }
  1421. }
  1422. d40c->pending_tx--;
  1423. if (d40c->pending_tx)
  1424. tasklet_schedule(&d40c->tasklet);
  1425. spin_unlock_irqrestore(&d40c->lock, flags);
  1426. if (callback && (d40d->txd.flags & DMA_PREP_INTERRUPT))
  1427. callback(callback_param);
  1428. return;
  1429. err:
  1430. /* Rescue manouver if receiving double interrupts */
  1431. if (d40c->pending_tx > 0)
  1432. d40c->pending_tx--;
  1433. spin_unlock_irqrestore(&d40c->lock, flags);
  1434. }
  1435. static irqreturn_t d40_handle_interrupt(int irq, void *data)
  1436. {
  1437. int i;
  1438. u32 idx;
  1439. u32 row;
  1440. long chan = -1;
  1441. struct d40_chan *d40c;
  1442. unsigned long flags;
  1443. struct d40_base *base = data;
  1444. u32 regs[base->gen_dmac.il_size];
  1445. struct d40_interrupt_lookup *il = base->gen_dmac.il;
  1446. u32 il_size = base->gen_dmac.il_size;
  1447. spin_lock_irqsave(&base->interrupt_lock, flags);
  1448. /* Read interrupt status of both logical and physical channels */
  1449. for (i = 0; i < il_size; i++)
  1450. regs[i] = readl(base->virtbase + il[i].src);
  1451. for (;;) {
  1452. chan = find_next_bit((unsigned long *)regs,
  1453. BITS_PER_LONG * il_size, chan + 1);
  1454. /* No more set bits found? */
  1455. if (chan == BITS_PER_LONG * il_size)
  1456. break;
  1457. row = chan / BITS_PER_LONG;
  1458. idx = chan & (BITS_PER_LONG - 1);
  1459. if (il[row].offset == D40_PHY_CHAN)
  1460. d40c = base->lookup_phy_chans[idx];
  1461. else
  1462. d40c = base->lookup_log_chans[il[row].offset + idx];
  1463. if (!d40c) {
  1464. /*
  1465. * No error because this can happen if something else
  1466. * in the system is using the channel.
  1467. */
  1468. continue;
  1469. }
  1470. /* ACK interrupt */
  1471. writel(BIT(idx), base->virtbase + il[row].clr);
  1472. spin_lock(&d40c->lock);
  1473. if (!il[row].is_error)
  1474. dma_tc_handle(d40c);
  1475. else
  1476. d40_err(base->dev, "IRQ chan: %ld offset %d idx %d\n",
  1477. chan, il[row].offset, idx);
  1478. spin_unlock(&d40c->lock);
  1479. }
  1480. spin_unlock_irqrestore(&base->interrupt_lock, flags);
  1481. return IRQ_HANDLED;
  1482. }
  1483. static int d40_validate_conf(struct d40_chan *d40c,
  1484. struct stedma40_chan_cfg *conf)
  1485. {
  1486. int res = 0;
  1487. bool is_log = conf->mode == STEDMA40_MODE_LOGICAL;
  1488. if (!conf->dir) {
  1489. chan_err(d40c, "Invalid direction.\n");
  1490. res = -EINVAL;
  1491. }
  1492. if ((is_log && conf->dev_type > d40c->base->num_log_chans) ||
  1493. (!is_log && conf->dev_type > d40c->base->num_phy_chans) ||
  1494. (conf->dev_type < 0)) {
  1495. chan_err(d40c, "Invalid device type (%d)\n", conf->dev_type);
  1496. res = -EINVAL;
  1497. }
  1498. if (conf->dir == DMA_DEV_TO_DEV) {
  1499. /*
  1500. * DMAC HW supports it. Will be added to this driver,
  1501. * in case any dma client requires it.
  1502. */
  1503. chan_err(d40c, "periph to periph not supported\n");
  1504. res = -EINVAL;
  1505. }
  1506. if (d40_psize_2_burst_size(is_log, conf->src_info.psize) *
  1507. conf->src_info.data_width !=
  1508. d40_psize_2_burst_size(is_log, conf->dst_info.psize) *
  1509. conf->dst_info.data_width) {
  1510. /*
  1511. * The DMAC hardware only supports
  1512. * src (burst x width) == dst (burst x width)
  1513. */
  1514. chan_err(d40c, "src (burst x width) != dst (burst x width)\n");
  1515. res = -EINVAL;
  1516. }
  1517. return res;
  1518. }
  1519. static bool d40_alloc_mask_set(struct d40_phy_res *phy,
  1520. bool is_src, int log_event_line, bool is_log,
  1521. bool *first_user)
  1522. {
  1523. unsigned long flags;
  1524. spin_lock_irqsave(&phy->lock, flags);
  1525. *first_user = ((phy->allocated_src | phy->allocated_dst)
  1526. == D40_ALLOC_FREE);
  1527. if (!is_log) {
  1528. /* Physical interrupts are masked per physical full channel */
  1529. if (phy->allocated_src == D40_ALLOC_FREE &&
  1530. phy->allocated_dst == D40_ALLOC_FREE) {
  1531. phy->allocated_dst = D40_ALLOC_PHY;
  1532. phy->allocated_src = D40_ALLOC_PHY;
  1533. goto found;
  1534. } else
  1535. goto not_found;
  1536. }
  1537. /* Logical channel */
  1538. if (is_src) {
  1539. if (phy->allocated_src == D40_ALLOC_PHY)
  1540. goto not_found;
  1541. if (phy->allocated_src == D40_ALLOC_FREE)
  1542. phy->allocated_src = D40_ALLOC_LOG_FREE;
  1543. if (!(phy->allocated_src & BIT(log_event_line))) {
  1544. phy->allocated_src |= BIT(log_event_line);
  1545. goto found;
  1546. } else
  1547. goto not_found;
  1548. } else {
  1549. if (phy->allocated_dst == D40_ALLOC_PHY)
  1550. goto not_found;
  1551. if (phy->allocated_dst == D40_ALLOC_FREE)
  1552. phy->allocated_dst = D40_ALLOC_LOG_FREE;
  1553. if (!(phy->allocated_dst & BIT(log_event_line))) {
  1554. phy->allocated_dst |= BIT(log_event_line);
  1555. goto found;
  1556. } else
  1557. goto not_found;
  1558. }
  1559. not_found:
  1560. spin_unlock_irqrestore(&phy->lock, flags);
  1561. return false;
  1562. found:
  1563. spin_unlock_irqrestore(&phy->lock, flags);
  1564. return true;
  1565. }
  1566. static bool d40_alloc_mask_free(struct d40_phy_res *phy, bool is_src,
  1567. int log_event_line)
  1568. {
  1569. unsigned long flags;
  1570. bool is_free = false;
  1571. spin_lock_irqsave(&phy->lock, flags);
  1572. if (!log_event_line) {
  1573. phy->allocated_dst = D40_ALLOC_FREE;
  1574. phy->allocated_src = D40_ALLOC_FREE;
  1575. is_free = true;
  1576. goto out;
  1577. }
  1578. /* Logical channel */
  1579. if (is_src) {
  1580. phy->allocated_src &= ~BIT(log_event_line);
  1581. if (phy->allocated_src == D40_ALLOC_LOG_FREE)
  1582. phy->allocated_src = D40_ALLOC_FREE;
  1583. } else {
  1584. phy->allocated_dst &= ~BIT(log_event_line);
  1585. if (phy->allocated_dst == D40_ALLOC_LOG_FREE)
  1586. phy->allocated_dst = D40_ALLOC_FREE;
  1587. }
  1588. is_free = ((phy->allocated_src | phy->allocated_dst) ==
  1589. D40_ALLOC_FREE);
  1590. out:
  1591. spin_unlock_irqrestore(&phy->lock, flags);
  1592. return is_free;
  1593. }
  1594. static int d40_allocate_channel(struct d40_chan *d40c, bool *first_phy_user)
  1595. {
  1596. int dev_type = d40c->dma_cfg.dev_type;
  1597. int event_group;
  1598. int event_line;
  1599. struct d40_phy_res *phys;
  1600. int i;
  1601. int j;
  1602. int log_num;
  1603. int num_phy_chans;
  1604. bool is_src;
  1605. bool is_log = d40c->dma_cfg.mode == STEDMA40_MODE_LOGICAL;
  1606. phys = d40c->base->phy_res;
  1607. num_phy_chans = d40c->base->num_phy_chans;
  1608. if (d40c->dma_cfg.dir == DMA_DEV_TO_MEM) {
  1609. log_num = 2 * dev_type;
  1610. is_src = true;
  1611. } else if (d40c->dma_cfg.dir == DMA_MEM_TO_DEV ||
  1612. d40c->dma_cfg.dir == DMA_MEM_TO_MEM) {
  1613. /* dst event lines are used for logical memcpy */
  1614. log_num = 2 * dev_type + 1;
  1615. is_src = false;
  1616. } else
  1617. return -EINVAL;
  1618. event_group = D40_TYPE_TO_GROUP(dev_type);
  1619. event_line = D40_TYPE_TO_EVENT(dev_type);
  1620. if (!is_log) {
  1621. if (d40c->dma_cfg.dir == DMA_MEM_TO_MEM) {
  1622. /* Find physical half channel */
  1623. if (d40c->dma_cfg.use_fixed_channel) {
  1624. i = d40c->dma_cfg.phy_channel;
  1625. if (d40_alloc_mask_set(&phys[i], is_src,
  1626. 0, is_log,
  1627. first_phy_user))
  1628. goto found_phy;
  1629. } else {
  1630. for (i = 0; i < num_phy_chans; i++) {
  1631. if (d40_alloc_mask_set(&phys[i], is_src,
  1632. 0, is_log,
  1633. first_phy_user))
  1634. goto found_phy;
  1635. }
  1636. }
  1637. } else
  1638. for (j = 0; j < d40c->base->num_phy_chans; j += 8) {
  1639. int phy_num = j + event_group * 2;
  1640. for (i = phy_num; i < phy_num + 2; i++) {
  1641. if (d40_alloc_mask_set(&phys[i],
  1642. is_src,
  1643. 0,
  1644. is_log,
  1645. first_phy_user))
  1646. goto found_phy;
  1647. }
  1648. }
  1649. return -EINVAL;
  1650. found_phy:
  1651. d40c->phy_chan = &phys[i];
  1652. d40c->log_num = D40_PHY_CHAN;
  1653. goto out;
  1654. }
  1655. if (dev_type == -1)
  1656. return -EINVAL;
  1657. /* Find logical channel */
  1658. for (j = 0; j < d40c->base->num_phy_chans; j += 8) {
  1659. int phy_num = j + event_group * 2;
  1660. if (d40c->dma_cfg.use_fixed_channel) {
  1661. i = d40c->dma_cfg.phy_channel;
  1662. if ((i != phy_num) && (i != phy_num + 1)) {
  1663. dev_err(chan2dev(d40c),
  1664. "invalid fixed phy channel %d\n", i);
  1665. return -EINVAL;
  1666. }
  1667. if (d40_alloc_mask_set(&phys[i], is_src, event_line,
  1668. is_log, first_phy_user))
  1669. goto found_log;
  1670. dev_err(chan2dev(d40c),
  1671. "could not allocate fixed phy channel %d\n", i);
  1672. return -EINVAL;
  1673. }
  1674. /*
  1675. * Spread logical channels across all available physical rather
  1676. * than pack every logical channel at the first available phy
  1677. * channels.
  1678. */
  1679. if (is_src) {
  1680. for (i = phy_num; i < phy_num + 2; i++) {
  1681. if (d40_alloc_mask_set(&phys[i], is_src,
  1682. event_line, is_log,
  1683. first_phy_user))
  1684. goto found_log;
  1685. }
  1686. } else {
  1687. for (i = phy_num + 1; i >= phy_num; i--) {
  1688. if (d40_alloc_mask_set(&phys[i], is_src,
  1689. event_line, is_log,
  1690. first_phy_user))
  1691. goto found_log;
  1692. }
  1693. }
  1694. }
  1695. return -EINVAL;
  1696. found_log:
  1697. d40c->phy_chan = &phys[i];
  1698. d40c->log_num = log_num;
  1699. out:
  1700. if (is_log)
  1701. d40c->base->lookup_log_chans[d40c->log_num] = d40c;
  1702. else
  1703. d40c->base->lookup_phy_chans[d40c->phy_chan->num] = d40c;
  1704. return 0;
  1705. }
  1706. static int d40_config_memcpy(struct d40_chan *d40c)
  1707. {
  1708. dma_cap_mask_t cap = d40c->chan.device->cap_mask;
  1709. if (dma_has_cap(DMA_MEMCPY, cap) && !dma_has_cap(DMA_SLAVE, cap)) {
  1710. d40c->dma_cfg = dma40_memcpy_conf_log;
  1711. d40c->dma_cfg.dev_type = dma40_memcpy_channels[d40c->chan.chan_id];
  1712. d40_log_cfg(&d40c->dma_cfg,
  1713. &d40c->log_def.lcsp1, &d40c->log_def.lcsp3);
  1714. } else if (dma_has_cap(DMA_MEMCPY, cap) &&
  1715. dma_has_cap(DMA_SLAVE, cap)) {
  1716. d40c->dma_cfg = dma40_memcpy_conf_phy;
  1717. /* Generate interrrupt at end of transfer or relink. */
  1718. d40c->dst_def_cfg |= BIT(D40_SREG_CFG_TIM_POS);
  1719. /* Generate interrupt on error. */
  1720. d40c->src_def_cfg |= BIT(D40_SREG_CFG_EIM_POS);
  1721. d40c->dst_def_cfg |= BIT(D40_SREG_CFG_EIM_POS);
  1722. } else {
  1723. chan_err(d40c, "No memcpy\n");
  1724. return -EINVAL;
  1725. }
  1726. return 0;
  1727. }
  1728. static int d40_free_dma(struct d40_chan *d40c)
  1729. {
  1730. int res = 0;
  1731. u32 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dev_type);
  1732. struct d40_phy_res *phy = d40c->phy_chan;
  1733. bool is_src;
  1734. /* Terminate all queued and active transfers */
  1735. d40_term_all(d40c);
  1736. if (phy == NULL) {
  1737. chan_err(d40c, "phy == null\n");
  1738. return -EINVAL;
  1739. }
  1740. if (phy->allocated_src == D40_ALLOC_FREE &&
  1741. phy->allocated_dst == D40_ALLOC_FREE) {
  1742. chan_err(d40c, "channel already free\n");
  1743. return -EINVAL;
  1744. }
  1745. if (d40c->dma_cfg.dir == DMA_MEM_TO_DEV ||
  1746. d40c->dma_cfg.dir == DMA_MEM_TO_MEM)
  1747. is_src = false;
  1748. else if (d40c->dma_cfg.dir == DMA_DEV_TO_MEM)
  1749. is_src = true;
  1750. else {
  1751. chan_err(d40c, "Unknown direction\n");
  1752. return -EINVAL;
  1753. }
  1754. pm_runtime_get_sync(d40c->base->dev);
  1755. res = d40_channel_execute_command(d40c, D40_DMA_STOP);
  1756. if (res) {
  1757. chan_err(d40c, "stop failed\n");
  1758. goto out;
  1759. }
  1760. d40_alloc_mask_free(phy, is_src, chan_is_logical(d40c) ? event : 0);
  1761. if (chan_is_logical(d40c))
  1762. d40c->base->lookup_log_chans[d40c->log_num] = NULL;
  1763. else
  1764. d40c->base->lookup_phy_chans[phy->num] = NULL;
  1765. if (d40c->busy) {
  1766. pm_runtime_mark_last_busy(d40c->base->dev);
  1767. pm_runtime_put_autosuspend(d40c->base->dev);
  1768. }
  1769. d40c->busy = false;
  1770. d40c->phy_chan = NULL;
  1771. d40c->configured = false;
  1772. out:
  1773. pm_runtime_mark_last_busy(d40c->base->dev);
  1774. pm_runtime_put_autosuspend(d40c->base->dev);
  1775. return res;
  1776. }
  1777. static bool d40_is_paused(struct d40_chan *d40c)
  1778. {
  1779. void __iomem *chanbase = chan_base(d40c);
  1780. bool is_paused = false;
  1781. unsigned long flags;
  1782. void __iomem *active_reg;
  1783. u32 status;
  1784. u32 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dev_type);
  1785. spin_lock_irqsave(&d40c->lock, flags);
  1786. if (chan_is_physical(d40c)) {
  1787. if (d40c->phy_chan->num % 2 == 0)
  1788. active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
  1789. else
  1790. active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
  1791. status = (readl(active_reg) &
  1792. D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
  1793. D40_CHAN_POS(d40c->phy_chan->num);
  1794. if (status == D40_DMA_SUSPENDED || status == D40_DMA_STOP)
  1795. is_paused = true;
  1796. goto _exit;
  1797. }
  1798. if (d40c->dma_cfg.dir == DMA_MEM_TO_DEV ||
  1799. d40c->dma_cfg.dir == DMA_MEM_TO_MEM) {
  1800. status = readl(chanbase + D40_CHAN_REG_SDLNK);
  1801. } else if (d40c->dma_cfg.dir == DMA_DEV_TO_MEM) {
  1802. status = readl(chanbase + D40_CHAN_REG_SSLNK);
  1803. } else {
  1804. chan_err(d40c, "Unknown direction\n");
  1805. goto _exit;
  1806. }
  1807. status = (status & D40_EVENTLINE_MASK(event)) >>
  1808. D40_EVENTLINE_POS(event);
  1809. if (status != D40_DMA_RUN)
  1810. is_paused = true;
  1811. _exit:
  1812. spin_unlock_irqrestore(&d40c->lock, flags);
  1813. return is_paused;
  1814. }
  1815. static u32 stedma40_residue(struct dma_chan *chan)
  1816. {
  1817. struct d40_chan *d40c =
  1818. container_of(chan, struct d40_chan, chan);
  1819. u32 bytes_left;
  1820. unsigned long flags;
  1821. spin_lock_irqsave(&d40c->lock, flags);
  1822. bytes_left = d40_residue(d40c);
  1823. spin_unlock_irqrestore(&d40c->lock, flags);
  1824. return bytes_left;
  1825. }
  1826. static int
  1827. d40_prep_sg_log(struct d40_chan *chan, struct d40_desc *desc,
  1828. struct scatterlist *sg_src, struct scatterlist *sg_dst,
  1829. unsigned int sg_len, dma_addr_t src_dev_addr,
  1830. dma_addr_t dst_dev_addr)
  1831. {
  1832. struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
  1833. struct stedma40_half_channel_info *src_info = &cfg->src_info;
  1834. struct stedma40_half_channel_info *dst_info = &cfg->dst_info;
  1835. int ret;
  1836. ret = d40_log_sg_to_lli(sg_src, sg_len,
  1837. src_dev_addr,
  1838. desc->lli_log.src,
  1839. chan->log_def.lcsp1,
  1840. src_info->data_width,
  1841. dst_info->data_width);
  1842. ret = d40_log_sg_to_lli(sg_dst, sg_len,
  1843. dst_dev_addr,
  1844. desc->lli_log.dst,
  1845. chan->log_def.lcsp3,
  1846. dst_info->data_width,
  1847. src_info->data_width);
  1848. return ret < 0 ? ret : 0;
  1849. }
  1850. static int
  1851. d40_prep_sg_phy(struct d40_chan *chan, struct d40_desc *desc,
  1852. struct scatterlist *sg_src, struct scatterlist *sg_dst,
  1853. unsigned int sg_len, dma_addr_t src_dev_addr,
  1854. dma_addr_t dst_dev_addr)
  1855. {
  1856. struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
  1857. struct stedma40_half_channel_info *src_info = &cfg->src_info;
  1858. struct stedma40_half_channel_info *dst_info = &cfg->dst_info;
  1859. unsigned long flags = 0;
  1860. int ret;
  1861. if (desc->cyclic)
  1862. flags |= LLI_CYCLIC | LLI_TERM_INT;
  1863. ret = d40_phy_sg_to_lli(sg_src, sg_len, src_dev_addr,
  1864. desc->lli_phy.src,
  1865. virt_to_phys(desc->lli_phy.src),
  1866. chan->src_def_cfg,
  1867. src_info, dst_info, flags);
  1868. ret = d40_phy_sg_to_lli(sg_dst, sg_len, dst_dev_addr,
  1869. desc->lli_phy.dst,
  1870. virt_to_phys(desc->lli_phy.dst),
  1871. chan->dst_def_cfg,
  1872. dst_info, src_info, flags);
  1873. dma_sync_single_for_device(chan->base->dev, desc->lli_pool.dma_addr,
  1874. desc->lli_pool.size, DMA_TO_DEVICE);
  1875. return ret < 0 ? ret : 0;
  1876. }
  1877. static struct d40_desc *
  1878. d40_prep_desc(struct d40_chan *chan, struct scatterlist *sg,
  1879. unsigned int sg_len, unsigned long dma_flags)
  1880. {
  1881. struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
  1882. struct d40_desc *desc;
  1883. int ret;
  1884. desc = d40_desc_get(chan);
  1885. if (!desc)
  1886. return NULL;
  1887. desc->lli_len = d40_sg_2_dmalen(sg, sg_len, cfg->src_info.data_width,
  1888. cfg->dst_info.data_width);
  1889. if (desc->lli_len < 0) {
  1890. chan_err(chan, "Unaligned size\n");
  1891. goto err;
  1892. }
  1893. ret = d40_pool_lli_alloc(chan, desc, desc->lli_len);
  1894. if (ret < 0) {
  1895. chan_err(chan, "Could not allocate lli\n");
  1896. goto err;
  1897. }
  1898. desc->lli_current = 0;
  1899. desc->txd.flags = dma_flags;
  1900. desc->txd.tx_submit = d40_tx_submit;
  1901. dma_async_tx_descriptor_init(&desc->txd, &chan->chan);
  1902. return desc;
  1903. err:
  1904. d40_desc_free(chan, desc);
  1905. return NULL;
  1906. }
  1907. static struct dma_async_tx_descriptor *
  1908. d40_prep_sg(struct dma_chan *dchan, struct scatterlist *sg_src,
  1909. struct scatterlist *sg_dst, unsigned int sg_len,
  1910. enum dma_transfer_direction direction, unsigned long dma_flags)
  1911. {
  1912. struct d40_chan *chan = container_of(dchan, struct d40_chan, chan);
  1913. dma_addr_t src_dev_addr = 0;
  1914. dma_addr_t dst_dev_addr = 0;
  1915. struct d40_desc *desc;
  1916. unsigned long flags;
  1917. int ret;
  1918. if (!chan->phy_chan) {
  1919. chan_err(chan, "Cannot prepare unallocated channel\n");
  1920. return NULL;
  1921. }
  1922. spin_lock_irqsave(&chan->lock, flags);
  1923. desc = d40_prep_desc(chan, sg_src, sg_len, dma_flags);
  1924. if (desc == NULL)
  1925. goto err;
  1926. if (sg_next(&sg_src[sg_len - 1]) == sg_src)
  1927. desc->cyclic = true;
  1928. if (direction == DMA_DEV_TO_MEM)
  1929. src_dev_addr = chan->runtime_addr;
  1930. else if (direction == DMA_MEM_TO_DEV)
  1931. dst_dev_addr = chan->runtime_addr;
  1932. if (chan_is_logical(chan))
  1933. ret = d40_prep_sg_log(chan, desc, sg_src, sg_dst,
  1934. sg_len, src_dev_addr, dst_dev_addr);
  1935. else
  1936. ret = d40_prep_sg_phy(chan, desc, sg_src, sg_dst,
  1937. sg_len, src_dev_addr, dst_dev_addr);
  1938. if (ret) {
  1939. chan_err(chan, "Failed to prepare %s sg job: %d\n",
  1940. chan_is_logical(chan) ? "log" : "phy", ret);
  1941. goto err;
  1942. }
  1943. /*
  1944. * add descriptor to the prepare queue in order to be able
  1945. * to free them later in terminate_all
  1946. */
  1947. list_add_tail(&desc->node, &chan->prepare_queue);
  1948. spin_unlock_irqrestore(&chan->lock, flags);
  1949. return &desc->txd;
  1950. err:
  1951. if (desc)
  1952. d40_desc_free(chan, desc);
  1953. spin_unlock_irqrestore(&chan->lock, flags);
  1954. return NULL;
  1955. }
  1956. bool stedma40_filter(struct dma_chan *chan, void *data)
  1957. {
  1958. struct stedma40_chan_cfg *info = data;
  1959. struct d40_chan *d40c =
  1960. container_of(chan, struct d40_chan, chan);
  1961. int err;
  1962. if (data) {
  1963. err = d40_validate_conf(d40c, info);
  1964. if (!err)
  1965. d40c->dma_cfg = *info;
  1966. } else
  1967. err = d40_config_memcpy(d40c);
  1968. if (!err)
  1969. d40c->configured = true;
  1970. return err == 0;
  1971. }
  1972. EXPORT_SYMBOL(stedma40_filter);
  1973. static void __d40_set_prio_rt(struct d40_chan *d40c, int dev_type, bool src)
  1974. {
  1975. bool realtime = d40c->dma_cfg.realtime;
  1976. bool highprio = d40c->dma_cfg.high_priority;
  1977. u32 rtreg;
  1978. u32 event = D40_TYPE_TO_EVENT(dev_type);
  1979. u32 group = D40_TYPE_TO_GROUP(dev_type);
  1980. u32 bit = BIT(event);
  1981. u32 prioreg;
  1982. struct d40_gen_dmac *dmac = &d40c->base->gen_dmac;
  1983. rtreg = realtime ? dmac->realtime_en : dmac->realtime_clear;
  1984. /*
  1985. * Due to a hardware bug, in some cases a logical channel triggered by
  1986. * a high priority destination event line can generate extra packet
  1987. * transactions.
  1988. *
  1989. * The workaround is to not set the high priority level for the
  1990. * destination event lines that trigger logical channels.
  1991. */
  1992. if (!src && chan_is_logical(d40c))
  1993. highprio = false;
  1994. prioreg = highprio ? dmac->high_prio_en : dmac->high_prio_clear;
  1995. /* Destination event lines are stored in the upper halfword */
  1996. if (!src)
  1997. bit <<= 16;
  1998. writel(bit, d40c->base->virtbase + prioreg + group * 4);
  1999. writel(bit, d40c->base->virtbase + rtreg + group * 4);
  2000. }
  2001. static void d40_set_prio_realtime(struct d40_chan *d40c)
  2002. {
  2003. if (d40c->base->rev < 3)
  2004. return;
  2005. if ((d40c->dma_cfg.dir == DMA_DEV_TO_MEM) ||
  2006. (d40c->dma_cfg.dir == DMA_DEV_TO_DEV))
  2007. __d40_set_prio_rt(d40c, d40c->dma_cfg.dev_type, true);
  2008. if ((d40c->dma_cfg.dir == DMA_MEM_TO_DEV) ||
  2009. (d40c->dma_cfg.dir == DMA_DEV_TO_DEV))
  2010. __d40_set_prio_rt(d40c, d40c->dma_cfg.dev_type, false);
  2011. }
  2012. #define D40_DT_FLAGS_MODE(flags) ((flags >> 0) & 0x1)
  2013. #define D40_DT_FLAGS_DIR(flags) ((flags >> 1) & 0x1)
  2014. #define D40_DT_FLAGS_BIG_ENDIAN(flags) ((flags >> 2) & 0x1)
  2015. #define D40_DT_FLAGS_FIXED_CHAN(flags) ((flags >> 3) & 0x1)
  2016. static struct dma_chan *d40_xlate(struct of_phandle_args *dma_spec,
  2017. struct of_dma *ofdma)
  2018. {
  2019. struct stedma40_chan_cfg cfg;
  2020. dma_cap_mask_t cap;
  2021. u32 flags;
  2022. memset(&cfg, 0, sizeof(struct stedma40_chan_cfg));
  2023. dma_cap_zero(cap);
  2024. dma_cap_set(DMA_SLAVE, cap);
  2025. cfg.dev_type = dma_spec->args[0];
  2026. flags = dma_spec->args[2];
  2027. switch (D40_DT_FLAGS_MODE(flags)) {
  2028. case 0: cfg.mode = STEDMA40_MODE_LOGICAL; break;
  2029. case 1: cfg.mode = STEDMA40_MODE_PHYSICAL; break;
  2030. }
  2031. switch (D40_DT_FLAGS_DIR(flags)) {
  2032. case 0:
  2033. cfg.dir = DMA_MEM_TO_DEV;
  2034. cfg.dst_info.big_endian = D40_DT_FLAGS_BIG_ENDIAN(flags);
  2035. break;
  2036. case 1:
  2037. cfg.dir = DMA_DEV_TO_MEM;
  2038. cfg.src_info.big_endian = D40_DT_FLAGS_BIG_ENDIAN(flags);
  2039. break;
  2040. }
  2041. if (D40_DT_FLAGS_FIXED_CHAN(flags)) {
  2042. cfg.phy_channel = dma_spec->args[1];
  2043. cfg.use_fixed_channel = true;
  2044. }
  2045. return dma_request_channel(cap, stedma40_filter, &cfg);
  2046. }
  2047. /* DMA ENGINE functions */
  2048. static int d40_alloc_chan_resources(struct dma_chan *chan)
  2049. {
  2050. int err;
  2051. unsigned long flags;
  2052. struct d40_chan *d40c =
  2053. container_of(chan, struct d40_chan, chan);
  2054. bool is_free_phy;
  2055. spin_lock_irqsave(&d40c->lock, flags);
  2056. dma_cookie_init(chan);
  2057. /* If no dma configuration is set use default configuration (memcpy) */
  2058. if (!d40c->configured) {
  2059. err = d40_config_memcpy(d40c);
  2060. if (err) {
  2061. chan_err(d40c, "Failed to configure memcpy channel\n");
  2062. goto fail;
  2063. }
  2064. }
  2065. err = d40_allocate_channel(d40c, &is_free_phy);
  2066. if (err) {
  2067. chan_err(d40c, "Failed to allocate channel\n");
  2068. d40c->configured = false;
  2069. goto fail;
  2070. }
  2071. pm_runtime_get_sync(d40c->base->dev);
  2072. d40_set_prio_realtime(d40c);
  2073. if (chan_is_logical(d40c)) {
  2074. if (d40c->dma_cfg.dir == DMA_DEV_TO_MEM)
  2075. d40c->lcpa = d40c->base->lcpa_base +
  2076. d40c->dma_cfg.dev_type * D40_LCPA_CHAN_SIZE;
  2077. else
  2078. d40c->lcpa = d40c->base->lcpa_base +
  2079. d40c->dma_cfg.dev_type *
  2080. D40_LCPA_CHAN_SIZE + D40_LCPA_CHAN_DST_DELTA;
  2081. /* Unmask the Global Interrupt Mask. */
  2082. d40c->src_def_cfg |= BIT(D40_SREG_CFG_LOG_GIM_POS);
  2083. d40c->dst_def_cfg |= BIT(D40_SREG_CFG_LOG_GIM_POS);
  2084. }
  2085. dev_dbg(chan2dev(d40c), "allocated %s channel (phy %d%s)\n",
  2086. chan_is_logical(d40c) ? "logical" : "physical",
  2087. d40c->phy_chan->num,
  2088. d40c->dma_cfg.use_fixed_channel ? ", fixed" : "");
  2089. /*
  2090. * Only write channel configuration to the DMA if the physical
  2091. * resource is free. In case of multiple logical channels
  2092. * on the same physical resource, only the first write is necessary.
  2093. */
  2094. if (is_free_phy)
  2095. d40_config_write(d40c);
  2096. fail:
  2097. pm_runtime_mark_last_busy(d40c->base->dev);
  2098. pm_runtime_put_autosuspend(d40c->base->dev);
  2099. spin_unlock_irqrestore(&d40c->lock, flags);
  2100. return err;
  2101. }
  2102. static void d40_free_chan_resources(struct dma_chan *chan)
  2103. {
  2104. struct d40_chan *d40c =
  2105. container_of(chan, struct d40_chan, chan);
  2106. int err;
  2107. unsigned long flags;
  2108. if (d40c->phy_chan == NULL) {
  2109. chan_err(d40c, "Cannot free unallocated channel\n");
  2110. return;
  2111. }
  2112. spin_lock_irqsave(&d40c->lock, flags);
  2113. err = d40_free_dma(d40c);
  2114. if (err)
  2115. chan_err(d40c, "Failed to free channel\n");
  2116. spin_unlock_irqrestore(&d40c->lock, flags);
  2117. }
  2118. static struct dma_async_tx_descriptor *d40_prep_memcpy(struct dma_chan *chan,
  2119. dma_addr_t dst,
  2120. dma_addr_t src,
  2121. size_t size,
  2122. unsigned long dma_flags)
  2123. {
  2124. struct scatterlist dst_sg;
  2125. struct scatterlist src_sg;
  2126. sg_init_table(&dst_sg, 1);
  2127. sg_init_table(&src_sg, 1);
  2128. sg_dma_address(&dst_sg) = dst;
  2129. sg_dma_address(&src_sg) = src;
  2130. sg_dma_len(&dst_sg) = size;
  2131. sg_dma_len(&src_sg) = size;
  2132. return d40_prep_sg(chan, &src_sg, &dst_sg, 1, DMA_NONE, dma_flags);
  2133. }
  2134. static struct dma_async_tx_descriptor *
  2135. d40_prep_memcpy_sg(struct dma_chan *chan,
  2136. struct scatterlist *dst_sg, unsigned int dst_nents,
  2137. struct scatterlist *src_sg, unsigned int src_nents,
  2138. unsigned long dma_flags)
  2139. {
  2140. if (dst_nents != src_nents)
  2141. return NULL;
  2142. return d40_prep_sg(chan, src_sg, dst_sg, src_nents, DMA_NONE, dma_flags);
  2143. }
  2144. static struct dma_async_tx_descriptor *
  2145. d40_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
  2146. unsigned int sg_len, enum dma_transfer_direction direction,
  2147. unsigned long dma_flags, void *context)
  2148. {
  2149. if (!is_slave_direction(direction))
  2150. return NULL;
  2151. return d40_prep_sg(chan, sgl, sgl, sg_len, direction, dma_flags);
  2152. }
  2153. static struct dma_async_tx_descriptor *
  2154. dma40_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t dma_addr,
  2155. size_t buf_len, size_t period_len,
  2156. enum dma_transfer_direction direction, unsigned long flags,
  2157. void *context)
  2158. {
  2159. unsigned int periods = buf_len / period_len;
  2160. struct dma_async_tx_descriptor *txd;
  2161. struct scatterlist *sg;
  2162. int i;
  2163. sg = kcalloc(periods + 1, sizeof(struct scatterlist), GFP_NOWAIT);
  2164. for (i = 0; i < periods; i++) {
  2165. sg_dma_address(&sg[i]) = dma_addr;
  2166. sg_dma_len(&sg[i]) = period_len;
  2167. dma_addr += period_len;
  2168. }
  2169. sg[periods].offset = 0;
  2170. sg_dma_len(&sg[periods]) = 0;
  2171. sg[periods].page_link =
  2172. ((unsigned long)sg | 0x01) & ~0x02;
  2173. txd = d40_prep_sg(chan, sg, sg, periods, direction,
  2174. DMA_PREP_INTERRUPT);
  2175. kfree(sg);
  2176. return txd;
  2177. }
  2178. static enum dma_status d40_tx_status(struct dma_chan *chan,
  2179. dma_cookie_t cookie,
  2180. struct dma_tx_state *txstate)
  2181. {
  2182. struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
  2183. enum dma_status ret;
  2184. if (d40c->phy_chan == NULL) {
  2185. chan_err(d40c, "Cannot read status of unallocated channel\n");
  2186. return -EINVAL;
  2187. }
  2188. ret = dma_cookie_status(chan, cookie, txstate);
  2189. if (ret != DMA_SUCCESS)
  2190. dma_set_residue(txstate, stedma40_residue(chan));
  2191. if (d40_is_paused(d40c))
  2192. ret = DMA_PAUSED;
  2193. return ret;
  2194. }
  2195. static void d40_issue_pending(struct dma_chan *chan)
  2196. {
  2197. struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
  2198. unsigned long flags;
  2199. if (d40c->phy_chan == NULL) {
  2200. chan_err(d40c, "Channel is not allocated!\n");
  2201. return;
  2202. }
  2203. spin_lock_irqsave(&d40c->lock, flags);
  2204. list_splice_tail_init(&d40c->pending_queue, &d40c->queue);
  2205. /* Busy means that queued jobs are already being processed */
  2206. if (!d40c->busy)
  2207. (void) d40_queue_start(d40c);
  2208. spin_unlock_irqrestore(&d40c->lock, flags);
  2209. }
  2210. static void d40_terminate_all(struct dma_chan *chan)
  2211. {
  2212. unsigned long flags;
  2213. struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
  2214. int ret;
  2215. spin_lock_irqsave(&d40c->lock, flags);
  2216. pm_runtime_get_sync(d40c->base->dev);
  2217. ret = d40_channel_execute_command(d40c, D40_DMA_STOP);
  2218. if (ret)
  2219. chan_err(d40c, "Failed to stop channel\n");
  2220. d40_term_all(d40c);
  2221. pm_runtime_mark_last_busy(d40c->base->dev);
  2222. pm_runtime_put_autosuspend(d40c->base->dev);
  2223. if (d40c->busy) {
  2224. pm_runtime_mark_last_busy(d40c->base->dev);
  2225. pm_runtime_put_autosuspend(d40c->base->dev);
  2226. }
  2227. d40c->busy = false;
  2228. spin_unlock_irqrestore(&d40c->lock, flags);
  2229. }
  2230. static int
  2231. dma40_config_to_halfchannel(struct d40_chan *d40c,
  2232. struct stedma40_half_channel_info *info,
  2233. u32 maxburst)
  2234. {
  2235. int psize;
  2236. if (chan_is_logical(d40c)) {
  2237. if (maxburst >= 16)
  2238. psize = STEDMA40_PSIZE_LOG_16;
  2239. else if (maxburst >= 8)
  2240. psize = STEDMA40_PSIZE_LOG_8;
  2241. else if (maxburst >= 4)
  2242. psize = STEDMA40_PSIZE_LOG_4;
  2243. else
  2244. psize = STEDMA40_PSIZE_LOG_1;
  2245. } else {
  2246. if (maxburst >= 16)
  2247. psize = STEDMA40_PSIZE_PHY_16;
  2248. else if (maxburst >= 8)
  2249. psize = STEDMA40_PSIZE_PHY_8;
  2250. else if (maxburst >= 4)
  2251. psize = STEDMA40_PSIZE_PHY_4;
  2252. else
  2253. psize = STEDMA40_PSIZE_PHY_1;
  2254. }
  2255. info->psize = psize;
  2256. info->flow_ctrl = STEDMA40_NO_FLOW_CTRL;
  2257. return 0;
  2258. }
  2259. /* Runtime reconfiguration extension */
  2260. static int d40_set_runtime_config(struct dma_chan *chan,
  2261. struct dma_slave_config *config)
  2262. {
  2263. struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
  2264. struct stedma40_chan_cfg *cfg = &d40c->dma_cfg;
  2265. enum dma_slave_buswidth src_addr_width, dst_addr_width;
  2266. dma_addr_t config_addr;
  2267. u32 src_maxburst, dst_maxburst;
  2268. int ret;
  2269. src_addr_width = config->src_addr_width;
  2270. src_maxburst = config->src_maxburst;
  2271. dst_addr_width = config->dst_addr_width;
  2272. dst_maxburst = config->dst_maxburst;
  2273. if (config->direction == DMA_DEV_TO_MEM) {
  2274. config_addr = config->src_addr;
  2275. if (cfg->dir != DMA_DEV_TO_MEM)
  2276. dev_dbg(d40c->base->dev,
  2277. "channel was not configured for peripheral "
  2278. "to memory transfer (%d) overriding\n",
  2279. cfg->dir);
  2280. cfg->dir = DMA_DEV_TO_MEM;
  2281. /* Configure the memory side */
  2282. if (dst_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED)
  2283. dst_addr_width = src_addr_width;
  2284. if (dst_maxburst == 0)
  2285. dst_maxburst = src_maxburst;
  2286. } else if (config->direction == DMA_MEM_TO_DEV) {
  2287. config_addr = config->dst_addr;
  2288. if (cfg->dir != DMA_MEM_TO_DEV)
  2289. dev_dbg(d40c->base->dev,
  2290. "channel was not configured for memory "
  2291. "to peripheral transfer (%d) overriding\n",
  2292. cfg->dir);
  2293. cfg->dir = DMA_MEM_TO_DEV;
  2294. /* Configure the memory side */
  2295. if (src_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED)
  2296. src_addr_width = dst_addr_width;
  2297. if (src_maxburst == 0)
  2298. src_maxburst = dst_maxburst;
  2299. } else {
  2300. dev_err(d40c->base->dev,
  2301. "unrecognized channel direction %d\n",
  2302. config->direction);
  2303. return -EINVAL;
  2304. }
  2305. if (config_addr <= 0) {
  2306. dev_err(d40c->base->dev, "no address supplied\n");
  2307. return -EINVAL;
  2308. }
  2309. if (src_maxburst * src_addr_width != dst_maxburst * dst_addr_width) {
  2310. dev_err(d40c->base->dev,
  2311. "src/dst width/maxburst mismatch: %d*%d != %d*%d\n",
  2312. src_maxburst,
  2313. src_addr_width,
  2314. dst_maxburst,
  2315. dst_addr_width);
  2316. return -EINVAL;
  2317. }
  2318. if (src_maxburst > 16) {
  2319. src_maxburst = 16;
  2320. dst_maxburst = src_maxburst * src_addr_width / dst_addr_width;
  2321. } else if (dst_maxburst > 16) {
  2322. dst_maxburst = 16;
  2323. src_maxburst = dst_maxburst * dst_addr_width / src_addr_width;
  2324. }
  2325. /* Only valid widths are; 1, 2, 4 and 8. */
  2326. if (src_addr_width <= DMA_SLAVE_BUSWIDTH_UNDEFINED ||
  2327. src_addr_width > DMA_SLAVE_BUSWIDTH_8_BYTES ||
  2328. dst_addr_width <= DMA_SLAVE_BUSWIDTH_UNDEFINED ||
  2329. dst_addr_width > DMA_SLAVE_BUSWIDTH_8_BYTES ||
  2330. ((src_addr_width > 1) && (src_addr_width & 1)) ||
  2331. ((dst_addr_width > 1) && (dst_addr_width & 1)))
  2332. return -EINVAL;
  2333. cfg->src_info.data_width = src_addr_width;
  2334. cfg->dst_info.data_width = dst_addr_width;
  2335. ret = dma40_config_to_halfchannel(d40c, &cfg->src_info,
  2336. src_maxburst);
  2337. if (ret)
  2338. return ret;
  2339. ret = dma40_config_to_halfchannel(d40c, &cfg->dst_info,
  2340. dst_maxburst);
  2341. if (ret)
  2342. return ret;
  2343. /* Fill in register values */
  2344. if (chan_is_logical(d40c))
  2345. d40_log_cfg(cfg, &d40c->log_def.lcsp1, &d40c->log_def.lcsp3);
  2346. else
  2347. d40_phy_cfg(cfg, &d40c->src_def_cfg, &d40c->dst_def_cfg);
  2348. /* These settings will take precedence later */
  2349. d40c->runtime_addr = config_addr;
  2350. d40c->runtime_direction = config->direction;
  2351. dev_dbg(d40c->base->dev,
  2352. "configured channel %s for %s, data width %d/%d, "
  2353. "maxburst %d/%d elements, LE, no flow control\n",
  2354. dma_chan_name(chan),
  2355. (config->direction == DMA_DEV_TO_MEM) ? "RX" : "TX",
  2356. src_addr_width, dst_addr_width,
  2357. src_maxburst, dst_maxburst);
  2358. return 0;
  2359. }
  2360. static int d40_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
  2361. unsigned long arg)
  2362. {
  2363. struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
  2364. if (d40c->phy_chan == NULL) {
  2365. chan_err(d40c, "Channel is not allocated!\n");
  2366. return -EINVAL;
  2367. }
  2368. switch (cmd) {
  2369. case DMA_TERMINATE_ALL:
  2370. d40_terminate_all(chan);
  2371. return 0;
  2372. case DMA_PAUSE:
  2373. return d40_pause(d40c);
  2374. case DMA_RESUME:
  2375. return d40_resume(d40c);
  2376. case DMA_SLAVE_CONFIG:
  2377. return d40_set_runtime_config(chan,
  2378. (struct dma_slave_config *) arg);
  2379. default:
  2380. break;
  2381. }
  2382. /* Other commands are unimplemented */
  2383. return -ENXIO;
  2384. }
  2385. /* Initialization functions */
  2386. static void __init d40_chan_init(struct d40_base *base, struct dma_device *dma,
  2387. struct d40_chan *chans, int offset,
  2388. int num_chans)
  2389. {
  2390. int i = 0;
  2391. struct d40_chan *d40c;
  2392. INIT_LIST_HEAD(&dma->channels);
  2393. for (i = offset; i < offset + num_chans; i++) {
  2394. d40c = &chans[i];
  2395. d40c->base = base;
  2396. d40c->chan.device = dma;
  2397. spin_lock_init(&d40c->lock);
  2398. d40c->log_num = D40_PHY_CHAN;
  2399. INIT_LIST_HEAD(&d40c->done);
  2400. INIT_LIST_HEAD(&d40c->active);
  2401. INIT_LIST_HEAD(&d40c->queue);
  2402. INIT_LIST_HEAD(&d40c->pending_queue);
  2403. INIT_LIST_HEAD(&d40c->client);
  2404. INIT_LIST_HEAD(&d40c->prepare_queue);
  2405. tasklet_init(&d40c->tasklet, dma_tasklet,
  2406. (unsigned long) d40c);
  2407. list_add_tail(&d40c->chan.device_node,
  2408. &dma->channels);
  2409. }
  2410. }
  2411. static void d40_ops_init(struct d40_base *base, struct dma_device *dev)
  2412. {
  2413. if (dma_has_cap(DMA_SLAVE, dev->cap_mask))
  2414. dev->device_prep_slave_sg = d40_prep_slave_sg;
  2415. if (dma_has_cap(DMA_MEMCPY, dev->cap_mask)) {
  2416. dev->device_prep_dma_memcpy = d40_prep_memcpy;
  2417. /*
  2418. * This controller can only access address at even
  2419. * 32bit boundaries, i.e. 2^2
  2420. */
  2421. dev->copy_align = 2;
  2422. }
  2423. if (dma_has_cap(DMA_SG, dev->cap_mask))
  2424. dev->device_prep_dma_sg = d40_prep_memcpy_sg;
  2425. if (dma_has_cap(DMA_CYCLIC, dev->cap_mask))
  2426. dev->device_prep_dma_cyclic = dma40_prep_dma_cyclic;
  2427. dev->device_alloc_chan_resources = d40_alloc_chan_resources;
  2428. dev->device_free_chan_resources = d40_free_chan_resources;
  2429. dev->device_issue_pending = d40_issue_pending;
  2430. dev->device_tx_status = d40_tx_status;
  2431. dev->device_control = d40_control;
  2432. dev->dev = base->dev;
  2433. }
  2434. static int __init d40_dmaengine_init(struct d40_base *base,
  2435. int num_reserved_chans)
  2436. {
  2437. int err ;
  2438. d40_chan_init(base, &base->dma_slave, base->log_chans,
  2439. 0, base->num_log_chans);
  2440. dma_cap_zero(base->dma_slave.cap_mask);
  2441. dma_cap_set(DMA_SLAVE, base->dma_slave.cap_mask);
  2442. dma_cap_set(DMA_CYCLIC, base->dma_slave.cap_mask);
  2443. d40_ops_init(base, &base->dma_slave);
  2444. err = dma_async_device_register(&base->dma_slave);
  2445. if (err) {
  2446. d40_err(base->dev, "Failed to register slave channels\n");
  2447. goto failure1;
  2448. }
  2449. d40_chan_init(base, &base->dma_memcpy, base->log_chans,
  2450. base->num_log_chans, base->num_memcpy_chans);
  2451. dma_cap_zero(base->dma_memcpy.cap_mask);
  2452. dma_cap_set(DMA_MEMCPY, base->dma_memcpy.cap_mask);
  2453. dma_cap_set(DMA_SG, base->dma_memcpy.cap_mask);
  2454. d40_ops_init(base, &base->dma_memcpy);
  2455. err = dma_async_device_register(&base->dma_memcpy);
  2456. if (err) {
  2457. d40_err(base->dev,
  2458. "Failed to regsiter memcpy only channels\n");
  2459. goto failure2;
  2460. }
  2461. d40_chan_init(base, &base->dma_both, base->phy_chans,
  2462. 0, num_reserved_chans);
  2463. dma_cap_zero(base->dma_both.cap_mask);
  2464. dma_cap_set(DMA_SLAVE, base->dma_both.cap_mask);
  2465. dma_cap_set(DMA_MEMCPY, base->dma_both.cap_mask);
  2466. dma_cap_set(DMA_SG, base->dma_both.cap_mask);
  2467. dma_cap_set(DMA_CYCLIC, base->dma_slave.cap_mask);
  2468. d40_ops_init(base, &base->dma_both);
  2469. err = dma_async_device_register(&base->dma_both);
  2470. if (err) {
  2471. d40_err(base->dev,
  2472. "Failed to register logical and physical capable channels\n");
  2473. goto failure3;
  2474. }
  2475. return 0;
  2476. failure3:
  2477. dma_async_device_unregister(&base->dma_memcpy);
  2478. failure2:
  2479. dma_async_device_unregister(&base->dma_slave);
  2480. failure1:
  2481. return err;
  2482. }
  2483. /* Suspend resume functionality */
  2484. #ifdef CONFIG_PM
  2485. static int dma40_pm_suspend(struct device *dev)
  2486. {
  2487. struct platform_device *pdev = to_platform_device(dev);
  2488. struct d40_base *base = platform_get_drvdata(pdev);
  2489. int ret = 0;
  2490. if (base->lcpa_regulator)
  2491. ret = regulator_disable(base->lcpa_regulator);
  2492. return ret;
  2493. }
  2494. static int dma40_runtime_suspend(struct device *dev)
  2495. {
  2496. struct platform_device *pdev = to_platform_device(dev);
  2497. struct d40_base *base = platform_get_drvdata(pdev);
  2498. d40_save_restore_registers(base, true);
  2499. /* Don't disable/enable clocks for v1 due to HW bugs */
  2500. if (base->rev != 1)
  2501. writel_relaxed(base->gcc_pwr_off_mask,
  2502. base->virtbase + D40_DREG_GCC);
  2503. return 0;
  2504. }
  2505. static int dma40_runtime_resume(struct device *dev)
  2506. {
  2507. struct platform_device *pdev = to_platform_device(dev);
  2508. struct d40_base *base = platform_get_drvdata(pdev);
  2509. if (base->initialized)
  2510. d40_save_restore_registers(base, false);
  2511. writel_relaxed(D40_DREG_GCC_ENABLE_ALL,
  2512. base->virtbase + D40_DREG_GCC);
  2513. return 0;
  2514. }
  2515. static int dma40_resume(struct device *dev)
  2516. {
  2517. struct platform_device *pdev = to_platform_device(dev);
  2518. struct d40_base *base = platform_get_drvdata(pdev);
  2519. int ret = 0;
  2520. if (base->lcpa_regulator)
  2521. ret = regulator_enable(base->lcpa_regulator);
  2522. return ret;
  2523. }
  2524. static const struct dev_pm_ops dma40_pm_ops = {
  2525. .suspend = dma40_pm_suspend,
  2526. .runtime_suspend = dma40_runtime_suspend,
  2527. .runtime_resume = dma40_runtime_resume,
  2528. .resume = dma40_resume,
  2529. };
  2530. #define DMA40_PM_OPS (&dma40_pm_ops)
  2531. #else
  2532. #define DMA40_PM_OPS NULL
  2533. #endif
  2534. /* Initialization functions. */
  2535. static int __init d40_phy_res_init(struct d40_base *base)
  2536. {
  2537. int i;
  2538. int num_phy_chans_avail = 0;
  2539. u32 val[2];
  2540. int odd_even_bit = -2;
  2541. int gcc = D40_DREG_GCC_ENA;
  2542. val[0] = readl(base->virtbase + D40_DREG_PRSME);
  2543. val[1] = readl(base->virtbase + D40_DREG_PRSMO);
  2544. for (i = 0; i < base->num_phy_chans; i++) {
  2545. base->phy_res[i].num = i;
  2546. odd_even_bit += 2 * ((i % 2) == 0);
  2547. if (((val[i % 2] >> odd_even_bit) & 3) == 1) {
  2548. /* Mark security only channels as occupied */
  2549. base->phy_res[i].allocated_src = D40_ALLOC_PHY;
  2550. base->phy_res[i].allocated_dst = D40_ALLOC_PHY;
  2551. base->phy_res[i].reserved = true;
  2552. gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(i),
  2553. D40_DREG_GCC_SRC);
  2554. gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(i),
  2555. D40_DREG_GCC_DST);
  2556. } else {
  2557. base->phy_res[i].allocated_src = D40_ALLOC_FREE;
  2558. base->phy_res[i].allocated_dst = D40_ALLOC_FREE;
  2559. base->phy_res[i].reserved = false;
  2560. num_phy_chans_avail++;
  2561. }
  2562. spin_lock_init(&base->phy_res[i].lock);
  2563. }
  2564. /* Mark disabled channels as occupied */
  2565. for (i = 0; base->plat_data->disabled_channels[i] != -1; i++) {
  2566. int chan = base->plat_data->disabled_channels[i];
  2567. base->phy_res[chan].allocated_src = D40_ALLOC_PHY;
  2568. base->phy_res[chan].allocated_dst = D40_ALLOC_PHY;
  2569. base->phy_res[chan].reserved = true;
  2570. gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(chan),
  2571. D40_DREG_GCC_SRC);
  2572. gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(chan),
  2573. D40_DREG_GCC_DST);
  2574. num_phy_chans_avail--;
  2575. }
  2576. /* Mark soft_lli channels */
  2577. for (i = 0; i < base->plat_data->num_of_soft_lli_chans; i++) {
  2578. int chan = base->plat_data->soft_lli_chans[i];
  2579. base->phy_res[chan].use_soft_lli = true;
  2580. }
  2581. dev_info(base->dev, "%d of %d physical DMA channels available\n",
  2582. num_phy_chans_avail, base->num_phy_chans);
  2583. /* Verify settings extended vs standard */
  2584. val[0] = readl(base->virtbase + D40_DREG_PRTYP);
  2585. for (i = 0; i < base->num_phy_chans; i++) {
  2586. if (base->phy_res[i].allocated_src == D40_ALLOC_FREE &&
  2587. (val[0] & 0x3) != 1)
  2588. dev_info(base->dev,
  2589. "[%s] INFO: channel %d is misconfigured (%d)\n",
  2590. __func__, i, val[0] & 0x3);
  2591. val[0] = val[0] >> 2;
  2592. }
  2593. /*
  2594. * To keep things simple, Enable all clocks initially.
  2595. * The clocks will get managed later post channel allocation.
  2596. * The clocks for the event lines on which reserved channels exists
  2597. * are not managed here.
  2598. */
  2599. writel(D40_DREG_GCC_ENABLE_ALL, base->virtbase + D40_DREG_GCC);
  2600. base->gcc_pwr_off_mask = gcc;
  2601. return num_phy_chans_avail;
  2602. }
  2603. static struct d40_base * __init d40_hw_detect_init(struct platform_device *pdev)
  2604. {
  2605. struct stedma40_platform_data *plat_data = pdev->dev.platform_data;
  2606. struct clk *clk = NULL;
  2607. void __iomem *virtbase = NULL;
  2608. struct resource *res = NULL;
  2609. struct d40_base *base = NULL;
  2610. int num_log_chans = 0;
  2611. int num_phy_chans;
  2612. int num_memcpy_chans;
  2613. int clk_ret = -EINVAL;
  2614. int i;
  2615. u32 pid;
  2616. u32 cid;
  2617. u8 rev;
  2618. clk = clk_get(&pdev->dev, NULL);
  2619. if (IS_ERR(clk)) {
  2620. d40_err(&pdev->dev, "No matching clock found\n");
  2621. goto failure;
  2622. }
  2623. clk_ret = clk_prepare_enable(clk);
  2624. if (clk_ret) {
  2625. d40_err(&pdev->dev, "Failed to prepare/enable clock\n");
  2626. goto failure;
  2627. }
  2628. /* Get IO for DMAC base address */
  2629. res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "base");
  2630. if (!res)
  2631. goto failure;
  2632. if (request_mem_region(res->start, resource_size(res),
  2633. D40_NAME " I/O base") == NULL)
  2634. goto failure;
  2635. virtbase = ioremap(res->start, resource_size(res));
  2636. if (!virtbase)
  2637. goto failure;
  2638. /* This is just a regular AMBA PrimeCell ID actually */
  2639. for (pid = 0, i = 0; i < 4; i++)
  2640. pid |= (readl(virtbase + resource_size(res) - 0x20 + 4 * i)
  2641. & 255) << (i * 8);
  2642. for (cid = 0, i = 0; i < 4; i++)
  2643. cid |= (readl(virtbase + resource_size(res) - 0x10 + 4 * i)
  2644. & 255) << (i * 8);
  2645. if (cid != AMBA_CID) {
  2646. d40_err(&pdev->dev, "Unknown hardware! No PrimeCell ID\n");
  2647. goto failure;
  2648. }
  2649. if (AMBA_MANF_BITS(pid) != AMBA_VENDOR_ST) {
  2650. d40_err(&pdev->dev, "Unknown designer! Got %x wanted %x\n",
  2651. AMBA_MANF_BITS(pid),
  2652. AMBA_VENDOR_ST);
  2653. goto failure;
  2654. }
  2655. /*
  2656. * HW revision:
  2657. * DB8500ed has revision 0
  2658. * ? has revision 1
  2659. * DB8500v1 has revision 2
  2660. * DB8500v2 has revision 3
  2661. * AP9540v1 has revision 4
  2662. * DB8540v1 has revision 4
  2663. */
  2664. rev = AMBA_REV_BITS(pid);
  2665. if (rev < 2) {
  2666. d40_err(&pdev->dev, "hardware revision: %d is not supported", rev);
  2667. goto failure;
  2668. }
  2669. /* The number of physical channels on this HW */
  2670. if (plat_data->num_of_phy_chans)
  2671. num_phy_chans = plat_data->num_of_phy_chans;
  2672. else
  2673. num_phy_chans = 4 * (readl(virtbase + D40_DREG_ICFG) & 0x7) + 4;
  2674. /* The number of channels used for memcpy */
  2675. if (plat_data->num_of_memcpy_chans)
  2676. num_memcpy_chans = plat_data->num_of_memcpy_chans;
  2677. else
  2678. num_memcpy_chans = ARRAY_SIZE(dma40_memcpy_channels);
  2679. num_log_chans = num_phy_chans * D40_MAX_LOG_CHAN_PER_PHY;
  2680. dev_info(&pdev->dev,
  2681. "hardware rev: %d @ 0x%x with %d physical and %d logical channels\n",
  2682. rev, res->start, num_phy_chans, num_log_chans);
  2683. base = kzalloc(ALIGN(sizeof(struct d40_base), 4) +
  2684. (num_phy_chans + num_log_chans + num_memcpy_chans) *
  2685. sizeof(struct d40_chan), GFP_KERNEL);
  2686. if (base == NULL) {
  2687. d40_err(&pdev->dev, "Out of memory\n");
  2688. goto failure;
  2689. }
  2690. base->rev = rev;
  2691. base->clk = clk;
  2692. base->num_memcpy_chans = num_memcpy_chans;
  2693. base->num_phy_chans = num_phy_chans;
  2694. base->num_log_chans = num_log_chans;
  2695. base->phy_start = res->start;
  2696. base->phy_size = resource_size(res);
  2697. base->virtbase = virtbase;
  2698. base->plat_data = plat_data;
  2699. base->dev = &pdev->dev;
  2700. base->phy_chans = ((void *)base) + ALIGN(sizeof(struct d40_base), 4);
  2701. base->log_chans = &base->phy_chans[num_phy_chans];
  2702. if (base->plat_data->num_of_phy_chans == 14) {
  2703. base->gen_dmac.backup = d40_backup_regs_v4b;
  2704. base->gen_dmac.backup_size = BACKUP_REGS_SZ_V4B;
  2705. base->gen_dmac.interrupt_en = D40_DREG_CPCMIS;
  2706. base->gen_dmac.interrupt_clear = D40_DREG_CPCICR;
  2707. base->gen_dmac.realtime_en = D40_DREG_CRSEG1;
  2708. base->gen_dmac.realtime_clear = D40_DREG_CRCEG1;
  2709. base->gen_dmac.high_prio_en = D40_DREG_CPSEG1;
  2710. base->gen_dmac.high_prio_clear = D40_DREG_CPCEG1;
  2711. base->gen_dmac.il = il_v4b;
  2712. base->gen_dmac.il_size = ARRAY_SIZE(il_v4b);
  2713. base->gen_dmac.init_reg = dma_init_reg_v4b;
  2714. base->gen_dmac.init_reg_size = ARRAY_SIZE(dma_init_reg_v4b);
  2715. } else {
  2716. if (base->rev >= 3) {
  2717. base->gen_dmac.backup = d40_backup_regs_v4a;
  2718. base->gen_dmac.backup_size = BACKUP_REGS_SZ_V4A;
  2719. }
  2720. base->gen_dmac.interrupt_en = D40_DREG_PCMIS;
  2721. base->gen_dmac.interrupt_clear = D40_DREG_PCICR;
  2722. base->gen_dmac.realtime_en = D40_DREG_RSEG1;
  2723. base->gen_dmac.realtime_clear = D40_DREG_RCEG1;
  2724. base->gen_dmac.high_prio_en = D40_DREG_PSEG1;
  2725. base->gen_dmac.high_prio_clear = D40_DREG_PCEG1;
  2726. base->gen_dmac.il = il_v4a;
  2727. base->gen_dmac.il_size = ARRAY_SIZE(il_v4a);
  2728. base->gen_dmac.init_reg = dma_init_reg_v4a;
  2729. base->gen_dmac.init_reg_size = ARRAY_SIZE(dma_init_reg_v4a);
  2730. }
  2731. base->phy_res = kzalloc(num_phy_chans * sizeof(struct d40_phy_res),
  2732. GFP_KERNEL);
  2733. if (!base->phy_res)
  2734. goto failure;
  2735. base->lookup_phy_chans = kzalloc(num_phy_chans *
  2736. sizeof(struct d40_chan *),
  2737. GFP_KERNEL);
  2738. if (!base->lookup_phy_chans)
  2739. goto failure;
  2740. base->lookup_log_chans = kzalloc(num_log_chans *
  2741. sizeof(struct d40_chan *),
  2742. GFP_KERNEL);
  2743. if (!base->lookup_log_chans)
  2744. goto failure;
  2745. base->reg_val_backup_chan = kmalloc(base->num_phy_chans *
  2746. sizeof(d40_backup_regs_chan),
  2747. GFP_KERNEL);
  2748. if (!base->reg_val_backup_chan)
  2749. goto failure;
  2750. base->lcla_pool.alloc_map =
  2751. kzalloc(num_phy_chans * sizeof(struct d40_desc *)
  2752. * D40_LCLA_LINK_PER_EVENT_GRP, GFP_KERNEL);
  2753. if (!base->lcla_pool.alloc_map)
  2754. goto failure;
  2755. base->desc_slab = kmem_cache_create(D40_NAME, sizeof(struct d40_desc),
  2756. 0, SLAB_HWCACHE_ALIGN,
  2757. NULL);
  2758. if (base->desc_slab == NULL)
  2759. goto failure;
  2760. return base;
  2761. failure:
  2762. if (!clk_ret)
  2763. clk_disable_unprepare(clk);
  2764. if (!IS_ERR(clk))
  2765. clk_put(clk);
  2766. if (virtbase)
  2767. iounmap(virtbase);
  2768. if (res)
  2769. release_mem_region(res->start,
  2770. resource_size(res));
  2771. if (virtbase)
  2772. iounmap(virtbase);
  2773. if (base) {
  2774. kfree(base->lcla_pool.alloc_map);
  2775. kfree(base->reg_val_backup_chan);
  2776. kfree(base->lookup_log_chans);
  2777. kfree(base->lookup_phy_chans);
  2778. kfree(base->phy_res);
  2779. kfree(base);
  2780. }
  2781. return NULL;
  2782. }
  2783. static void __init d40_hw_init(struct d40_base *base)
  2784. {
  2785. int i;
  2786. u32 prmseo[2] = {0, 0};
  2787. u32 activeo[2] = {0xFFFFFFFF, 0xFFFFFFFF};
  2788. u32 pcmis = 0;
  2789. u32 pcicr = 0;
  2790. struct d40_reg_val *dma_init_reg = base->gen_dmac.init_reg;
  2791. u32 reg_size = base->gen_dmac.init_reg_size;
  2792. for (i = 0; i < reg_size; i++)
  2793. writel(dma_init_reg[i].val,
  2794. base->virtbase + dma_init_reg[i].reg);
  2795. /* Configure all our dma channels to default settings */
  2796. for (i = 0; i < base->num_phy_chans; i++) {
  2797. activeo[i % 2] = activeo[i % 2] << 2;
  2798. if (base->phy_res[base->num_phy_chans - i - 1].allocated_src
  2799. == D40_ALLOC_PHY) {
  2800. activeo[i % 2] |= 3;
  2801. continue;
  2802. }
  2803. /* Enable interrupt # */
  2804. pcmis = (pcmis << 1) | 1;
  2805. /* Clear interrupt # */
  2806. pcicr = (pcicr << 1) | 1;
  2807. /* Set channel to physical mode */
  2808. prmseo[i % 2] = prmseo[i % 2] << 2;
  2809. prmseo[i % 2] |= 1;
  2810. }
  2811. writel(prmseo[1], base->virtbase + D40_DREG_PRMSE);
  2812. writel(prmseo[0], base->virtbase + D40_DREG_PRMSO);
  2813. writel(activeo[1], base->virtbase + D40_DREG_ACTIVE);
  2814. writel(activeo[0], base->virtbase + D40_DREG_ACTIVO);
  2815. /* Write which interrupt to enable */
  2816. writel(pcmis, base->virtbase + base->gen_dmac.interrupt_en);
  2817. /* Write which interrupt to clear */
  2818. writel(pcicr, base->virtbase + base->gen_dmac.interrupt_clear);
  2819. /* These are __initdata and cannot be accessed after init */
  2820. base->gen_dmac.init_reg = NULL;
  2821. base->gen_dmac.init_reg_size = 0;
  2822. }
  2823. static int __init d40_lcla_allocate(struct d40_base *base)
  2824. {
  2825. struct d40_lcla_pool *pool = &base->lcla_pool;
  2826. unsigned long *page_list;
  2827. int i, j;
  2828. int ret = 0;
  2829. /*
  2830. * This is somewhat ugly. We need 8192 bytes that are 18 bit aligned,
  2831. * To full fill this hardware requirement without wasting 256 kb
  2832. * we allocate pages until we get an aligned one.
  2833. */
  2834. page_list = kmalloc(sizeof(unsigned long) * MAX_LCLA_ALLOC_ATTEMPTS,
  2835. GFP_KERNEL);
  2836. if (!page_list) {
  2837. ret = -ENOMEM;
  2838. goto failure;
  2839. }
  2840. /* Calculating how many pages that are required */
  2841. base->lcla_pool.pages = SZ_1K * base->num_phy_chans / PAGE_SIZE;
  2842. for (i = 0; i < MAX_LCLA_ALLOC_ATTEMPTS; i++) {
  2843. page_list[i] = __get_free_pages(GFP_KERNEL,
  2844. base->lcla_pool.pages);
  2845. if (!page_list[i]) {
  2846. d40_err(base->dev, "Failed to allocate %d pages.\n",
  2847. base->lcla_pool.pages);
  2848. for (j = 0; j < i; j++)
  2849. free_pages(page_list[j], base->lcla_pool.pages);
  2850. goto failure;
  2851. }
  2852. if ((virt_to_phys((void *)page_list[i]) &
  2853. (LCLA_ALIGNMENT - 1)) == 0)
  2854. break;
  2855. }
  2856. for (j = 0; j < i; j++)
  2857. free_pages(page_list[j], base->lcla_pool.pages);
  2858. if (i < MAX_LCLA_ALLOC_ATTEMPTS) {
  2859. base->lcla_pool.base = (void *)page_list[i];
  2860. } else {
  2861. /*
  2862. * After many attempts and no succees with finding the correct
  2863. * alignment, try with allocating a big buffer.
  2864. */
  2865. dev_warn(base->dev,
  2866. "[%s] Failed to get %d pages @ 18 bit align.\n",
  2867. __func__, base->lcla_pool.pages);
  2868. base->lcla_pool.base_unaligned = kmalloc(SZ_1K *
  2869. base->num_phy_chans +
  2870. LCLA_ALIGNMENT,
  2871. GFP_KERNEL);
  2872. if (!base->lcla_pool.base_unaligned) {
  2873. ret = -ENOMEM;
  2874. goto failure;
  2875. }
  2876. base->lcla_pool.base = PTR_ALIGN(base->lcla_pool.base_unaligned,
  2877. LCLA_ALIGNMENT);
  2878. }
  2879. pool->dma_addr = dma_map_single(base->dev, pool->base,
  2880. SZ_1K * base->num_phy_chans,
  2881. DMA_TO_DEVICE);
  2882. if (dma_mapping_error(base->dev, pool->dma_addr)) {
  2883. pool->dma_addr = 0;
  2884. ret = -ENOMEM;
  2885. goto failure;
  2886. }
  2887. writel(virt_to_phys(base->lcla_pool.base),
  2888. base->virtbase + D40_DREG_LCLA);
  2889. failure:
  2890. kfree(page_list);
  2891. return ret;
  2892. }
  2893. static int __init d40_of_probe(struct platform_device *pdev,
  2894. struct device_node *np)
  2895. {
  2896. struct stedma40_platform_data *pdata;
  2897. int num_phy = 0, num_memcpy = 0;
  2898. const const __be32 *list;
  2899. pdata = devm_kzalloc(&pdev->dev,
  2900. sizeof(struct stedma40_platform_data),
  2901. GFP_KERNEL);
  2902. if (!pdata)
  2903. return -ENOMEM;
  2904. /* If absent this value will be obtained from h/w. */
  2905. of_property_read_u32(np, "dma-channels", &num_phy);
  2906. if (num_phy > 0)
  2907. pdata->num_of_phy_chans = num_phy;
  2908. list = of_get_property(np, "memcpy-channels", &num_memcpy);
  2909. num_memcpy /= sizeof(*list);
  2910. if (num_memcpy > D40_MEMCPY_MAX_CHANS || num_memcpy <= 0) {
  2911. d40_err(&pdev->dev,
  2912. "Invalid number of memcpy channels specified (%d)\n",
  2913. num_memcpy);
  2914. return -EINVAL;
  2915. }
  2916. pdata->num_of_memcpy_chans = num_memcpy;
  2917. of_property_read_u32_array(np, "memcpy-channels",
  2918. dma40_memcpy_channels,
  2919. num_memcpy);
  2920. pdev->dev.platform_data = pdata;
  2921. return 0;
  2922. }
  2923. static int __init d40_probe(struct platform_device *pdev)
  2924. {
  2925. struct stedma40_platform_data *plat_data = pdev->dev.platform_data;
  2926. struct device_node *np = pdev->dev.of_node;
  2927. int err;
  2928. int ret = -ENOENT;
  2929. struct d40_base *base = NULL;
  2930. struct resource *res = NULL;
  2931. int num_reserved_chans;
  2932. u32 val;
  2933. if (!plat_data) {
  2934. if (np) {
  2935. if(d40_of_probe(pdev, np)) {
  2936. ret = -ENOMEM;
  2937. goto failure;
  2938. }
  2939. } else {
  2940. d40_err(&pdev->dev, "No pdata or Device Tree provided\n");
  2941. goto failure;
  2942. }
  2943. }
  2944. base = d40_hw_detect_init(pdev);
  2945. if (!base)
  2946. goto failure;
  2947. num_reserved_chans = d40_phy_res_init(base);
  2948. platform_set_drvdata(pdev, base);
  2949. spin_lock_init(&base->interrupt_lock);
  2950. spin_lock_init(&base->execmd_lock);
  2951. /* Get IO for logical channel parameter address */
  2952. res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "lcpa");
  2953. if (!res) {
  2954. ret = -ENOENT;
  2955. d40_err(&pdev->dev, "No \"lcpa\" memory resource\n");
  2956. goto failure;
  2957. }
  2958. base->lcpa_size = resource_size(res);
  2959. base->phy_lcpa = res->start;
  2960. if (request_mem_region(res->start, resource_size(res),
  2961. D40_NAME " I/O lcpa") == NULL) {
  2962. ret = -EBUSY;
  2963. d40_err(&pdev->dev,
  2964. "Failed to request LCPA region 0x%x-0x%x\n",
  2965. res->start, res->end);
  2966. goto failure;
  2967. }
  2968. /* We make use of ESRAM memory for this. */
  2969. val = readl(base->virtbase + D40_DREG_LCPA);
  2970. if (res->start != val && val != 0) {
  2971. dev_warn(&pdev->dev,
  2972. "[%s] Mismatch LCPA dma 0x%x, def 0x%x\n",
  2973. __func__, val, res->start);
  2974. } else
  2975. writel(res->start, base->virtbase + D40_DREG_LCPA);
  2976. base->lcpa_base = ioremap(res->start, resource_size(res));
  2977. if (!base->lcpa_base) {
  2978. ret = -ENOMEM;
  2979. d40_err(&pdev->dev, "Failed to ioremap LCPA region\n");
  2980. goto failure;
  2981. }
  2982. /* If lcla has to be located in ESRAM we don't need to allocate */
  2983. if (base->plat_data->use_esram_lcla) {
  2984. res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
  2985. "lcla_esram");
  2986. if (!res) {
  2987. ret = -ENOENT;
  2988. d40_err(&pdev->dev,
  2989. "No \"lcla_esram\" memory resource\n");
  2990. goto failure;
  2991. }
  2992. base->lcla_pool.base = ioremap(res->start,
  2993. resource_size(res));
  2994. if (!base->lcla_pool.base) {
  2995. ret = -ENOMEM;
  2996. d40_err(&pdev->dev, "Failed to ioremap LCLA region\n");
  2997. goto failure;
  2998. }
  2999. writel(res->start, base->virtbase + D40_DREG_LCLA);
  3000. } else {
  3001. ret = d40_lcla_allocate(base);
  3002. if (ret) {
  3003. d40_err(&pdev->dev, "Failed to allocate LCLA area\n");
  3004. goto failure;
  3005. }
  3006. }
  3007. spin_lock_init(&base->lcla_pool.lock);
  3008. base->irq = platform_get_irq(pdev, 0);
  3009. ret = request_irq(base->irq, d40_handle_interrupt, 0, D40_NAME, base);
  3010. if (ret) {
  3011. d40_err(&pdev->dev, "No IRQ defined\n");
  3012. goto failure;
  3013. }
  3014. pm_runtime_irq_safe(base->dev);
  3015. pm_runtime_set_autosuspend_delay(base->dev, DMA40_AUTOSUSPEND_DELAY);
  3016. pm_runtime_use_autosuspend(base->dev);
  3017. pm_runtime_enable(base->dev);
  3018. pm_runtime_resume(base->dev);
  3019. if (base->plat_data->use_esram_lcla) {
  3020. base->lcpa_regulator = regulator_get(base->dev, "lcla_esram");
  3021. if (IS_ERR(base->lcpa_regulator)) {
  3022. d40_err(&pdev->dev, "Failed to get lcpa_regulator\n");
  3023. base->lcpa_regulator = NULL;
  3024. goto failure;
  3025. }
  3026. ret = regulator_enable(base->lcpa_regulator);
  3027. if (ret) {
  3028. d40_err(&pdev->dev,
  3029. "Failed to enable lcpa_regulator\n");
  3030. regulator_put(base->lcpa_regulator);
  3031. base->lcpa_regulator = NULL;
  3032. goto failure;
  3033. }
  3034. }
  3035. base->initialized = true;
  3036. err = d40_dmaengine_init(base, num_reserved_chans);
  3037. if (err)
  3038. goto failure;
  3039. base->dev->dma_parms = &base->dma_parms;
  3040. err = dma_set_max_seg_size(base->dev, STEDMA40_MAX_SEG_SIZE);
  3041. if (err) {
  3042. d40_err(&pdev->dev, "Failed to set dma max seg size\n");
  3043. goto failure;
  3044. }
  3045. d40_hw_init(base);
  3046. if (np) {
  3047. err = of_dma_controller_register(np, d40_xlate, NULL);
  3048. if (err && err != -ENODEV)
  3049. dev_err(&pdev->dev,
  3050. "could not register of_dma_controller\n");
  3051. }
  3052. dev_info(base->dev, "initialized\n");
  3053. return 0;
  3054. failure:
  3055. if (base) {
  3056. if (base->desc_slab)
  3057. kmem_cache_destroy(base->desc_slab);
  3058. if (base->virtbase)
  3059. iounmap(base->virtbase);
  3060. if (base->lcla_pool.base && base->plat_data->use_esram_lcla) {
  3061. iounmap(base->lcla_pool.base);
  3062. base->lcla_pool.base = NULL;
  3063. }
  3064. if (base->lcla_pool.dma_addr)
  3065. dma_unmap_single(base->dev, base->lcla_pool.dma_addr,
  3066. SZ_1K * base->num_phy_chans,
  3067. DMA_TO_DEVICE);
  3068. if (!base->lcla_pool.base_unaligned && base->lcla_pool.base)
  3069. free_pages((unsigned long)base->lcla_pool.base,
  3070. base->lcla_pool.pages);
  3071. kfree(base->lcla_pool.base_unaligned);
  3072. if (base->phy_lcpa)
  3073. release_mem_region(base->phy_lcpa,
  3074. base->lcpa_size);
  3075. if (base->phy_start)
  3076. release_mem_region(base->phy_start,
  3077. base->phy_size);
  3078. if (base->clk) {
  3079. clk_disable_unprepare(base->clk);
  3080. clk_put(base->clk);
  3081. }
  3082. if (base->lcpa_regulator) {
  3083. regulator_disable(base->lcpa_regulator);
  3084. regulator_put(base->lcpa_regulator);
  3085. }
  3086. kfree(base->lcla_pool.alloc_map);
  3087. kfree(base->lookup_log_chans);
  3088. kfree(base->lookup_phy_chans);
  3089. kfree(base->phy_res);
  3090. kfree(base);
  3091. }
  3092. d40_err(&pdev->dev, "probe failed\n");
  3093. return ret;
  3094. }
  3095. static const struct of_device_id d40_match[] = {
  3096. { .compatible = "stericsson,dma40", },
  3097. {}
  3098. };
  3099. static struct platform_driver d40_driver = {
  3100. .driver = {
  3101. .owner = THIS_MODULE,
  3102. .name = D40_NAME,
  3103. .pm = DMA40_PM_OPS,
  3104. .of_match_table = d40_match,
  3105. },
  3106. };
  3107. static int __init stedma40_init(void)
  3108. {
  3109. return platform_driver_probe(&d40_driver, d40_probe);
  3110. }
  3111. subsys_initcall(stedma40_init);