coh901318.c 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796
  1. /*
  2. * driver/dma/coh901318.c
  3. *
  4. * Copyright (C) 2007-2009 ST-Ericsson
  5. * License terms: GNU General Public License (GPL) version 2
  6. * DMA driver for COH 901 318
  7. * Author: Per Friden <per.friden@stericsson.com>
  8. */
  9. #include <linux/init.h>
  10. #include <linux/module.h>
  11. #include <linux/kernel.h> /* printk() */
  12. #include <linux/fs.h> /* everything... */
  13. #include <linux/scatterlist.h>
  14. #include <linux/slab.h> /* kmalloc() */
  15. #include <linux/dmaengine.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/device.h>
  18. #include <linux/irqreturn.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/io.h>
  21. #include <linux/uaccess.h>
  22. #include <linux/debugfs.h>
  23. #include <linux/platform_data/dma-coh901318.h>
  24. #include <linux/of_dma.h>
  25. #include "coh901318.h"
  26. #include "dmaengine.h"
  27. #define COH901318_MOD32_MASK (0x1F)
  28. #define COH901318_WORD_MASK (0xFFFFFFFF)
  29. /* INT_STATUS - Interrupt Status Registers 32bit (R/-) */
  30. #define COH901318_INT_STATUS1 (0x0000)
  31. #define COH901318_INT_STATUS2 (0x0004)
  32. /* TC_INT_STATUS - Terminal Count Interrupt Status Registers 32bit (R/-) */
  33. #define COH901318_TC_INT_STATUS1 (0x0008)
  34. #define COH901318_TC_INT_STATUS2 (0x000C)
  35. /* TC_INT_CLEAR - Terminal Count Interrupt Clear Registers 32bit (-/W) */
  36. #define COH901318_TC_INT_CLEAR1 (0x0010)
  37. #define COH901318_TC_INT_CLEAR2 (0x0014)
  38. /* RAW_TC_INT_STATUS - Raw Term Count Interrupt Status Registers 32bit (R/-) */
  39. #define COH901318_RAW_TC_INT_STATUS1 (0x0018)
  40. #define COH901318_RAW_TC_INT_STATUS2 (0x001C)
  41. /* BE_INT_STATUS - Bus Error Interrupt Status Registers 32bit (R/-) */
  42. #define COH901318_BE_INT_STATUS1 (0x0020)
  43. #define COH901318_BE_INT_STATUS2 (0x0024)
  44. /* BE_INT_CLEAR - Bus Error Interrupt Clear Registers 32bit (-/W) */
  45. #define COH901318_BE_INT_CLEAR1 (0x0028)
  46. #define COH901318_BE_INT_CLEAR2 (0x002C)
  47. /* RAW_BE_INT_STATUS - Raw Term Count Interrupt Status Registers 32bit (R/-) */
  48. #define COH901318_RAW_BE_INT_STATUS1 (0x0030)
  49. #define COH901318_RAW_BE_INT_STATUS2 (0x0034)
  50. /*
  51. * CX_CFG - Channel Configuration Registers 32bit (R/W)
  52. */
  53. #define COH901318_CX_CFG (0x0100)
  54. #define COH901318_CX_CFG_SPACING (0x04)
  55. /* Channel enable activates tha dma job */
  56. #define COH901318_CX_CFG_CH_ENABLE (0x00000001)
  57. #define COH901318_CX_CFG_CH_DISABLE (0x00000000)
  58. /* Request Mode */
  59. #define COH901318_CX_CFG_RM_MASK (0x00000006)
  60. #define COH901318_CX_CFG_RM_MEMORY_TO_MEMORY (0x0 << 1)
  61. #define COH901318_CX_CFG_RM_PRIMARY_TO_MEMORY (0x1 << 1)
  62. #define COH901318_CX_CFG_RM_MEMORY_TO_PRIMARY (0x1 << 1)
  63. #define COH901318_CX_CFG_RM_PRIMARY_TO_SECONDARY (0x3 << 1)
  64. #define COH901318_CX_CFG_RM_SECONDARY_TO_PRIMARY (0x3 << 1)
  65. /* Linked channel request field. RM must == 11 */
  66. #define COH901318_CX_CFG_LCRF_SHIFT 3
  67. #define COH901318_CX_CFG_LCRF_MASK (0x000001F8)
  68. #define COH901318_CX_CFG_LCR_DISABLE (0x00000000)
  69. /* Terminal Counter Interrupt Request Mask */
  70. #define COH901318_CX_CFG_TC_IRQ_ENABLE (0x00000200)
  71. #define COH901318_CX_CFG_TC_IRQ_DISABLE (0x00000000)
  72. /* Bus Error interrupt Mask */
  73. #define COH901318_CX_CFG_BE_IRQ_ENABLE (0x00000400)
  74. #define COH901318_CX_CFG_BE_IRQ_DISABLE (0x00000000)
  75. /*
  76. * CX_STAT - Channel Status Registers 32bit (R/-)
  77. */
  78. #define COH901318_CX_STAT (0x0200)
  79. #define COH901318_CX_STAT_SPACING (0x04)
  80. #define COH901318_CX_STAT_RBE_IRQ_IND (0x00000008)
  81. #define COH901318_CX_STAT_RTC_IRQ_IND (0x00000004)
  82. #define COH901318_CX_STAT_ACTIVE (0x00000002)
  83. #define COH901318_CX_STAT_ENABLED (0x00000001)
  84. /*
  85. * CX_CTRL - Channel Control Registers 32bit (R/W)
  86. */
  87. #define COH901318_CX_CTRL (0x0400)
  88. #define COH901318_CX_CTRL_SPACING (0x10)
  89. /* Transfer Count Enable */
  90. #define COH901318_CX_CTRL_TC_ENABLE (0x00001000)
  91. #define COH901318_CX_CTRL_TC_DISABLE (0x00000000)
  92. /* Transfer Count Value 0 - 4095 */
  93. #define COH901318_CX_CTRL_TC_VALUE_MASK (0x00000FFF)
  94. /* Burst count */
  95. #define COH901318_CX_CTRL_BURST_COUNT_MASK (0x0000E000)
  96. #define COH901318_CX_CTRL_BURST_COUNT_64_BYTES (0x7 << 13)
  97. #define COH901318_CX_CTRL_BURST_COUNT_48_BYTES (0x6 << 13)
  98. #define COH901318_CX_CTRL_BURST_COUNT_32_BYTES (0x5 << 13)
  99. #define COH901318_CX_CTRL_BURST_COUNT_16_BYTES (0x4 << 13)
  100. #define COH901318_CX_CTRL_BURST_COUNT_8_BYTES (0x3 << 13)
  101. #define COH901318_CX_CTRL_BURST_COUNT_4_BYTES (0x2 << 13)
  102. #define COH901318_CX_CTRL_BURST_COUNT_2_BYTES (0x1 << 13)
  103. #define COH901318_CX_CTRL_BURST_COUNT_1_BYTE (0x0 << 13)
  104. /* Source bus size */
  105. #define COH901318_CX_CTRL_SRC_BUS_SIZE_MASK (0x00030000)
  106. #define COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS (0x2 << 16)
  107. #define COH901318_CX_CTRL_SRC_BUS_SIZE_16_BITS (0x1 << 16)
  108. #define COH901318_CX_CTRL_SRC_BUS_SIZE_8_BITS (0x0 << 16)
  109. /* Source address increment */
  110. #define COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE (0x00040000)
  111. #define COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE (0x00000000)
  112. /* Destination Bus Size */
  113. #define COH901318_CX_CTRL_DST_BUS_SIZE_MASK (0x00180000)
  114. #define COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS (0x2 << 19)
  115. #define COH901318_CX_CTRL_DST_BUS_SIZE_16_BITS (0x1 << 19)
  116. #define COH901318_CX_CTRL_DST_BUS_SIZE_8_BITS (0x0 << 19)
  117. /* Destination address increment */
  118. #define COH901318_CX_CTRL_DST_ADDR_INC_ENABLE (0x00200000)
  119. #define COH901318_CX_CTRL_DST_ADDR_INC_DISABLE (0x00000000)
  120. /* Master Mode (Master2 is only connected to MSL) */
  121. #define COH901318_CX_CTRL_MASTER_MODE_MASK (0x00C00000)
  122. #define COH901318_CX_CTRL_MASTER_MODE_M2R_M1W (0x3 << 22)
  123. #define COH901318_CX_CTRL_MASTER_MODE_M1R_M2W (0x2 << 22)
  124. #define COH901318_CX_CTRL_MASTER_MODE_M2RW (0x1 << 22)
  125. #define COH901318_CX_CTRL_MASTER_MODE_M1RW (0x0 << 22)
  126. /* Terminal Count flag to PER enable */
  127. #define COH901318_CX_CTRL_TCP_ENABLE (0x01000000)
  128. #define COH901318_CX_CTRL_TCP_DISABLE (0x00000000)
  129. /* Terminal Count flags to CPU enable */
  130. #define COH901318_CX_CTRL_TC_IRQ_ENABLE (0x02000000)
  131. #define COH901318_CX_CTRL_TC_IRQ_DISABLE (0x00000000)
  132. /* Hand shake to peripheral */
  133. #define COH901318_CX_CTRL_HSP_ENABLE (0x04000000)
  134. #define COH901318_CX_CTRL_HSP_DISABLE (0x00000000)
  135. #define COH901318_CX_CTRL_HSS_ENABLE (0x08000000)
  136. #define COH901318_CX_CTRL_HSS_DISABLE (0x00000000)
  137. /* DMA mode */
  138. #define COH901318_CX_CTRL_DDMA_MASK (0x30000000)
  139. #define COH901318_CX_CTRL_DDMA_LEGACY (0x0 << 28)
  140. #define COH901318_CX_CTRL_DDMA_DEMAND_DMA1 (0x1 << 28)
  141. #define COH901318_CX_CTRL_DDMA_DEMAND_DMA2 (0x2 << 28)
  142. /* Primary Request Data Destination */
  143. #define COH901318_CX_CTRL_PRDD_MASK (0x40000000)
  144. #define COH901318_CX_CTRL_PRDD_DEST (0x1 << 30)
  145. #define COH901318_CX_CTRL_PRDD_SOURCE (0x0 << 30)
  146. /*
  147. * CX_SRC_ADDR - Channel Source Address Registers 32bit (R/W)
  148. */
  149. #define COH901318_CX_SRC_ADDR (0x0404)
  150. #define COH901318_CX_SRC_ADDR_SPACING (0x10)
  151. /*
  152. * CX_DST_ADDR - Channel Destination Address Registers 32bit R/W
  153. */
  154. #define COH901318_CX_DST_ADDR (0x0408)
  155. #define COH901318_CX_DST_ADDR_SPACING (0x10)
  156. /*
  157. * CX_LNK_ADDR - Channel Link Address Registers 32bit (R/W)
  158. */
  159. #define COH901318_CX_LNK_ADDR (0x040C)
  160. #define COH901318_CX_LNK_ADDR_SPACING (0x10)
  161. #define COH901318_CX_LNK_LINK_IMMEDIATE (0x00000001)
  162. /**
  163. * struct coh901318_params - parameters for DMAC configuration
  164. * @config: DMA config register
  165. * @ctrl_lli_last: DMA control register for the last lli in the list
  166. * @ctrl_lli: DMA control register for an lli
  167. * @ctrl_lli_chained: DMA control register for a chained lli
  168. */
  169. struct coh901318_params {
  170. u32 config;
  171. u32 ctrl_lli_last;
  172. u32 ctrl_lli;
  173. u32 ctrl_lli_chained;
  174. };
  175. /**
  176. * struct coh_dma_channel - dma channel base
  177. * @name: ascii name of dma channel
  178. * @number: channel id number
  179. * @desc_nbr_max: number of preallocated descriptors
  180. * @priority_high: prio of channel, 0 low otherwise high.
  181. * @param: configuration parameters
  182. */
  183. struct coh_dma_channel {
  184. const char name[32];
  185. const int number;
  186. const int desc_nbr_max;
  187. const int priority_high;
  188. const struct coh901318_params param;
  189. };
  190. /**
  191. * struct powersave - DMA power save structure
  192. * @lock: lock protecting data in this struct
  193. * @started_channels: bit mask indicating active dma channels
  194. */
  195. struct powersave {
  196. spinlock_t lock;
  197. u64 started_channels;
  198. };
  199. /* points out all dma slave channels.
  200. * Syntax is [A1, B1, A2, B2, .... ,-1,-1]
  201. * Select all channels from A to B, end of list is marked with -1,-1
  202. */
  203. static int dma_slave_channels[] = {
  204. U300_DMA_MSL_TX_0, U300_DMA_SPI_RX,
  205. U300_DMA_UART1_TX, U300_DMA_UART1_RX, -1, -1};
  206. /* points out all dma memcpy channels. */
  207. static int dma_memcpy_channels[] = {
  208. U300_DMA_GENERAL_PURPOSE_0, U300_DMA_GENERAL_PURPOSE_8, -1, -1};
  209. #define flags_memcpy_config (COH901318_CX_CFG_CH_DISABLE | \
  210. COH901318_CX_CFG_RM_MEMORY_TO_MEMORY | \
  211. COH901318_CX_CFG_LCR_DISABLE | \
  212. COH901318_CX_CFG_TC_IRQ_ENABLE | \
  213. COH901318_CX_CFG_BE_IRQ_ENABLE)
  214. #define flags_memcpy_lli_chained (COH901318_CX_CTRL_TC_ENABLE | \
  215. COH901318_CX_CTRL_BURST_COUNT_32_BYTES | \
  216. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS | \
  217. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE | \
  218. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS | \
  219. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE | \
  220. COH901318_CX_CTRL_MASTER_MODE_M1RW | \
  221. COH901318_CX_CTRL_TCP_DISABLE | \
  222. COH901318_CX_CTRL_TC_IRQ_DISABLE | \
  223. COH901318_CX_CTRL_HSP_DISABLE | \
  224. COH901318_CX_CTRL_HSS_DISABLE | \
  225. COH901318_CX_CTRL_DDMA_LEGACY | \
  226. COH901318_CX_CTRL_PRDD_SOURCE)
  227. #define flags_memcpy_lli (COH901318_CX_CTRL_TC_ENABLE | \
  228. COH901318_CX_CTRL_BURST_COUNT_32_BYTES | \
  229. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS | \
  230. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE | \
  231. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS | \
  232. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE | \
  233. COH901318_CX_CTRL_MASTER_MODE_M1RW | \
  234. COH901318_CX_CTRL_TCP_DISABLE | \
  235. COH901318_CX_CTRL_TC_IRQ_DISABLE | \
  236. COH901318_CX_CTRL_HSP_DISABLE | \
  237. COH901318_CX_CTRL_HSS_DISABLE | \
  238. COH901318_CX_CTRL_DDMA_LEGACY | \
  239. COH901318_CX_CTRL_PRDD_SOURCE)
  240. #define flags_memcpy_lli_last (COH901318_CX_CTRL_TC_ENABLE | \
  241. COH901318_CX_CTRL_BURST_COUNT_32_BYTES | \
  242. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS | \
  243. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE | \
  244. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS | \
  245. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE | \
  246. COH901318_CX_CTRL_MASTER_MODE_M1RW | \
  247. COH901318_CX_CTRL_TCP_DISABLE | \
  248. COH901318_CX_CTRL_TC_IRQ_ENABLE | \
  249. COH901318_CX_CTRL_HSP_DISABLE | \
  250. COH901318_CX_CTRL_HSS_DISABLE | \
  251. COH901318_CX_CTRL_DDMA_LEGACY | \
  252. COH901318_CX_CTRL_PRDD_SOURCE)
  253. const struct coh_dma_channel chan_config[U300_DMA_CHANNELS] = {
  254. {
  255. .number = U300_DMA_MSL_TX_0,
  256. .name = "MSL TX 0",
  257. .priority_high = 0,
  258. },
  259. {
  260. .number = U300_DMA_MSL_TX_1,
  261. .name = "MSL TX 1",
  262. .priority_high = 0,
  263. .param.config = COH901318_CX_CFG_CH_DISABLE |
  264. COH901318_CX_CFG_LCR_DISABLE |
  265. COH901318_CX_CFG_TC_IRQ_ENABLE |
  266. COH901318_CX_CFG_BE_IRQ_ENABLE,
  267. .param.ctrl_lli_chained = 0 |
  268. COH901318_CX_CTRL_TC_ENABLE |
  269. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  270. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  271. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  272. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  273. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  274. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  275. COH901318_CX_CTRL_TCP_DISABLE |
  276. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  277. COH901318_CX_CTRL_HSP_ENABLE |
  278. COH901318_CX_CTRL_HSS_DISABLE |
  279. COH901318_CX_CTRL_DDMA_LEGACY |
  280. COH901318_CX_CTRL_PRDD_SOURCE,
  281. .param.ctrl_lli = 0 |
  282. COH901318_CX_CTRL_TC_ENABLE |
  283. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  284. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  285. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  286. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  287. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  288. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  289. COH901318_CX_CTRL_TCP_ENABLE |
  290. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  291. COH901318_CX_CTRL_HSP_ENABLE |
  292. COH901318_CX_CTRL_HSS_DISABLE |
  293. COH901318_CX_CTRL_DDMA_LEGACY |
  294. COH901318_CX_CTRL_PRDD_SOURCE,
  295. .param.ctrl_lli_last = 0 |
  296. COH901318_CX_CTRL_TC_ENABLE |
  297. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  298. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  299. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  300. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  301. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  302. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  303. COH901318_CX_CTRL_TCP_ENABLE |
  304. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  305. COH901318_CX_CTRL_HSP_ENABLE |
  306. COH901318_CX_CTRL_HSS_DISABLE |
  307. COH901318_CX_CTRL_DDMA_LEGACY |
  308. COH901318_CX_CTRL_PRDD_SOURCE,
  309. },
  310. {
  311. .number = U300_DMA_MSL_TX_2,
  312. .name = "MSL TX 2",
  313. .priority_high = 0,
  314. .param.config = COH901318_CX_CFG_CH_DISABLE |
  315. COH901318_CX_CFG_LCR_DISABLE |
  316. COH901318_CX_CFG_TC_IRQ_ENABLE |
  317. COH901318_CX_CFG_BE_IRQ_ENABLE,
  318. .param.ctrl_lli_chained = 0 |
  319. COH901318_CX_CTRL_TC_ENABLE |
  320. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  321. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  322. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  323. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  324. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  325. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  326. COH901318_CX_CTRL_TCP_DISABLE |
  327. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  328. COH901318_CX_CTRL_HSP_ENABLE |
  329. COH901318_CX_CTRL_HSS_DISABLE |
  330. COH901318_CX_CTRL_DDMA_LEGACY |
  331. COH901318_CX_CTRL_PRDD_SOURCE,
  332. .param.ctrl_lli = 0 |
  333. COH901318_CX_CTRL_TC_ENABLE |
  334. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  335. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  336. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  337. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  338. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  339. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  340. COH901318_CX_CTRL_TCP_ENABLE |
  341. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  342. COH901318_CX_CTRL_HSP_ENABLE |
  343. COH901318_CX_CTRL_HSS_DISABLE |
  344. COH901318_CX_CTRL_DDMA_LEGACY |
  345. COH901318_CX_CTRL_PRDD_SOURCE,
  346. .param.ctrl_lli_last = 0 |
  347. COH901318_CX_CTRL_TC_ENABLE |
  348. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  349. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  350. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  351. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  352. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  353. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  354. COH901318_CX_CTRL_TCP_ENABLE |
  355. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  356. COH901318_CX_CTRL_HSP_ENABLE |
  357. COH901318_CX_CTRL_HSS_DISABLE |
  358. COH901318_CX_CTRL_DDMA_LEGACY |
  359. COH901318_CX_CTRL_PRDD_SOURCE,
  360. .desc_nbr_max = 10,
  361. },
  362. {
  363. .number = U300_DMA_MSL_TX_3,
  364. .name = "MSL TX 3",
  365. .priority_high = 0,
  366. .param.config = COH901318_CX_CFG_CH_DISABLE |
  367. COH901318_CX_CFG_LCR_DISABLE |
  368. COH901318_CX_CFG_TC_IRQ_ENABLE |
  369. COH901318_CX_CFG_BE_IRQ_ENABLE,
  370. .param.ctrl_lli_chained = 0 |
  371. COH901318_CX_CTRL_TC_ENABLE |
  372. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  373. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  374. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  375. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  376. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  377. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  378. COH901318_CX_CTRL_TCP_DISABLE |
  379. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  380. COH901318_CX_CTRL_HSP_ENABLE |
  381. COH901318_CX_CTRL_HSS_DISABLE |
  382. COH901318_CX_CTRL_DDMA_LEGACY |
  383. COH901318_CX_CTRL_PRDD_SOURCE,
  384. .param.ctrl_lli = 0 |
  385. COH901318_CX_CTRL_TC_ENABLE |
  386. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  387. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  388. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  389. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  390. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  391. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  392. COH901318_CX_CTRL_TCP_ENABLE |
  393. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  394. COH901318_CX_CTRL_HSP_ENABLE |
  395. COH901318_CX_CTRL_HSS_DISABLE |
  396. COH901318_CX_CTRL_DDMA_LEGACY |
  397. COH901318_CX_CTRL_PRDD_SOURCE,
  398. .param.ctrl_lli_last = 0 |
  399. COH901318_CX_CTRL_TC_ENABLE |
  400. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  401. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  402. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  403. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  404. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  405. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  406. COH901318_CX_CTRL_TCP_ENABLE |
  407. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  408. COH901318_CX_CTRL_HSP_ENABLE |
  409. COH901318_CX_CTRL_HSS_DISABLE |
  410. COH901318_CX_CTRL_DDMA_LEGACY |
  411. COH901318_CX_CTRL_PRDD_SOURCE,
  412. },
  413. {
  414. .number = U300_DMA_MSL_TX_4,
  415. .name = "MSL TX 4",
  416. .priority_high = 0,
  417. .param.config = COH901318_CX_CFG_CH_DISABLE |
  418. COH901318_CX_CFG_LCR_DISABLE |
  419. COH901318_CX_CFG_TC_IRQ_ENABLE |
  420. COH901318_CX_CFG_BE_IRQ_ENABLE,
  421. .param.ctrl_lli_chained = 0 |
  422. COH901318_CX_CTRL_TC_ENABLE |
  423. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  424. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  425. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  426. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  427. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  428. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  429. COH901318_CX_CTRL_TCP_DISABLE |
  430. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  431. COH901318_CX_CTRL_HSP_ENABLE |
  432. COH901318_CX_CTRL_HSS_DISABLE |
  433. COH901318_CX_CTRL_DDMA_LEGACY |
  434. COH901318_CX_CTRL_PRDD_SOURCE,
  435. .param.ctrl_lli = 0 |
  436. COH901318_CX_CTRL_TC_ENABLE |
  437. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  438. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  439. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  440. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  441. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  442. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  443. COH901318_CX_CTRL_TCP_ENABLE |
  444. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  445. COH901318_CX_CTRL_HSP_ENABLE |
  446. COH901318_CX_CTRL_HSS_DISABLE |
  447. COH901318_CX_CTRL_DDMA_LEGACY |
  448. COH901318_CX_CTRL_PRDD_SOURCE,
  449. .param.ctrl_lli_last = 0 |
  450. COH901318_CX_CTRL_TC_ENABLE |
  451. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  452. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  453. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  454. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  455. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  456. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  457. COH901318_CX_CTRL_TCP_ENABLE |
  458. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  459. COH901318_CX_CTRL_HSP_ENABLE |
  460. COH901318_CX_CTRL_HSS_DISABLE |
  461. COH901318_CX_CTRL_DDMA_LEGACY |
  462. COH901318_CX_CTRL_PRDD_SOURCE,
  463. },
  464. {
  465. .number = U300_DMA_MSL_TX_5,
  466. .name = "MSL TX 5",
  467. .priority_high = 0,
  468. },
  469. {
  470. .number = U300_DMA_MSL_TX_6,
  471. .name = "MSL TX 6",
  472. .priority_high = 0,
  473. },
  474. {
  475. .number = U300_DMA_MSL_RX_0,
  476. .name = "MSL RX 0",
  477. .priority_high = 0,
  478. },
  479. {
  480. .number = U300_DMA_MSL_RX_1,
  481. .name = "MSL RX 1",
  482. .priority_high = 0,
  483. .param.config = COH901318_CX_CFG_CH_DISABLE |
  484. COH901318_CX_CFG_LCR_DISABLE |
  485. COH901318_CX_CFG_TC_IRQ_ENABLE |
  486. COH901318_CX_CFG_BE_IRQ_ENABLE,
  487. .param.ctrl_lli_chained = 0 |
  488. COH901318_CX_CTRL_TC_ENABLE |
  489. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  490. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  491. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  492. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  493. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  494. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  495. COH901318_CX_CTRL_TCP_DISABLE |
  496. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  497. COH901318_CX_CTRL_HSP_ENABLE |
  498. COH901318_CX_CTRL_HSS_DISABLE |
  499. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  500. COH901318_CX_CTRL_PRDD_DEST,
  501. .param.ctrl_lli = 0,
  502. .param.ctrl_lli_last = 0 |
  503. COH901318_CX_CTRL_TC_ENABLE |
  504. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  505. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  506. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  507. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  508. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  509. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  510. COH901318_CX_CTRL_TCP_DISABLE |
  511. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  512. COH901318_CX_CTRL_HSP_ENABLE |
  513. COH901318_CX_CTRL_HSS_DISABLE |
  514. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  515. COH901318_CX_CTRL_PRDD_DEST,
  516. },
  517. {
  518. .number = U300_DMA_MSL_RX_2,
  519. .name = "MSL RX 2",
  520. .priority_high = 0,
  521. .param.config = COH901318_CX_CFG_CH_DISABLE |
  522. COH901318_CX_CFG_LCR_DISABLE |
  523. COH901318_CX_CFG_TC_IRQ_ENABLE |
  524. COH901318_CX_CFG_BE_IRQ_ENABLE,
  525. .param.ctrl_lli_chained = 0 |
  526. COH901318_CX_CTRL_TC_ENABLE |
  527. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  528. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  529. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  530. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  531. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  532. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  533. COH901318_CX_CTRL_TCP_DISABLE |
  534. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  535. COH901318_CX_CTRL_HSP_ENABLE |
  536. COH901318_CX_CTRL_HSS_DISABLE |
  537. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  538. COH901318_CX_CTRL_PRDD_DEST,
  539. .param.ctrl_lli = 0 |
  540. COH901318_CX_CTRL_TC_ENABLE |
  541. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  542. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  543. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  544. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  545. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  546. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  547. COH901318_CX_CTRL_TCP_DISABLE |
  548. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  549. COH901318_CX_CTRL_HSP_ENABLE |
  550. COH901318_CX_CTRL_HSS_DISABLE |
  551. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  552. COH901318_CX_CTRL_PRDD_DEST,
  553. .param.ctrl_lli_last = 0 |
  554. COH901318_CX_CTRL_TC_ENABLE |
  555. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  556. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  557. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  558. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  559. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  560. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  561. COH901318_CX_CTRL_TCP_DISABLE |
  562. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  563. COH901318_CX_CTRL_HSP_ENABLE |
  564. COH901318_CX_CTRL_HSS_DISABLE |
  565. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  566. COH901318_CX_CTRL_PRDD_DEST,
  567. },
  568. {
  569. .number = U300_DMA_MSL_RX_3,
  570. .name = "MSL RX 3",
  571. .priority_high = 0,
  572. .param.config = COH901318_CX_CFG_CH_DISABLE |
  573. COH901318_CX_CFG_LCR_DISABLE |
  574. COH901318_CX_CFG_TC_IRQ_ENABLE |
  575. COH901318_CX_CFG_BE_IRQ_ENABLE,
  576. .param.ctrl_lli_chained = 0 |
  577. COH901318_CX_CTRL_TC_ENABLE |
  578. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  579. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  580. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  581. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  582. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  583. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  584. COH901318_CX_CTRL_TCP_DISABLE |
  585. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  586. COH901318_CX_CTRL_HSP_ENABLE |
  587. COH901318_CX_CTRL_HSS_DISABLE |
  588. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  589. COH901318_CX_CTRL_PRDD_DEST,
  590. .param.ctrl_lli = 0 |
  591. COH901318_CX_CTRL_TC_ENABLE |
  592. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  593. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  594. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  595. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  596. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  597. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  598. COH901318_CX_CTRL_TCP_DISABLE |
  599. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  600. COH901318_CX_CTRL_HSP_ENABLE |
  601. COH901318_CX_CTRL_HSS_DISABLE |
  602. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  603. COH901318_CX_CTRL_PRDD_DEST,
  604. .param.ctrl_lli_last = 0 |
  605. COH901318_CX_CTRL_TC_ENABLE |
  606. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  607. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  608. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  609. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  610. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  611. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  612. COH901318_CX_CTRL_TCP_DISABLE |
  613. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  614. COH901318_CX_CTRL_HSP_ENABLE |
  615. COH901318_CX_CTRL_HSS_DISABLE |
  616. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  617. COH901318_CX_CTRL_PRDD_DEST,
  618. },
  619. {
  620. .number = U300_DMA_MSL_RX_4,
  621. .name = "MSL RX 4",
  622. .priority_high = 0,
  623. .param.config = COH901318_CX_CFG_CH_DISABLE |
  624. COH901318_CX_CFG_LCR_DISABLE |
  625. COH901318_CX_CFG_TC_IRQ_ENABLE |
  626. COH901318_CX_CFG_BE_IRQ_ENABLE,
  627. .param.ctrl_lli_chained = 0 |
  628. COH901318_CX_CTRL_TC_ENABLE |
  629. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  630. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  631. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  632. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  633. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  634. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  635. COH901318_CX_CTRL_TCP_DISABLE |
  636. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  637. COH901318_CX_CTRL_HSP_ENABLE |
  638. COH901318_CX_CTRL_HSS_DISABLE |
  639. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  640. COH901318_CX_CTRL_PRDD_DEST,
  641. .param.ctrl_lli = 0 |
  642. COH901318_CX_CTRL_TC_ENABLE |
  643. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  644. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  645. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  646. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  647. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  648. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  649. COH901318_CX_CTRL_TCP_DISABLE |
  650. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  651. COH901318_CX_CTRL_HSP_ENABLE |
  652. COH901318_CX_CTRL_HSS_DISABLE |
  653. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  654. COH901318_CX_CTRL_PRDD_DEST,
  655. .param.ctrl_lli_last = 0 |
  656. COH901318_CX_CTRL_TC_ENABLE |
  657. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  658. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  659. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  660. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  661. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  662. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  663. COH901318_CX_CTRL_TCP_DISABLE |
  664. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  665. COH901318_CX_CTRL_HSP_ENABLE |
  666. COH901318_CX_CTRL_HSS_DISABLE |
  667. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  668. COH901318_CX_CTRL_PRDD_DEST,
  669. },
  670. {
  671. .number = U300_DMA_MSL_RX_5,
  672. .name = "MSL RX 5",
  673. .priority_high = 0,
  674. .param.config = COH901318_CX_CFG_CH_DISABLE |
  675. COH901318_CX_CFG_LCR_DISABLE |
  676. COH901318_CX_CFG_TC_IRQ_ENABLE |
  677. COH901318_CX_CFG_BE_IRQ_ENABLE,
  678. .param.ctrl_lli_chained = 0 |
  679. COH901318_CX_CTRL_TC_ENABLE |
  680. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  681. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  682. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  683. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  684. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  685. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  686. COH901318_CX_CTRL_TCP_DISABLE |
  687. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  688. COH901318_CX_CTRL_HSP_ENABLE |
  689. COH901318_CX_CTRL_HSS_DISABLE |
  690. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  691. COH901318_CX_CTRL_PRDD_DEST,
  692. .param.ctrl_lli = 0 |
  693. COH901318_CX_CTRL_TC_ENABLE |
  694. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  695. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  696. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  697. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  698. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  699. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  700. COH901318_CX_CTRL_TCP_DISABLE |
  701. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  702. COH901318_CX_CTRL_HSP_ENABLE |
  703. COH901318_CX_CTRL_HSS_DISABLE |
  704. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  705. COH901318_CX_CTRL_PRDD_DEST,
  706. .param.ctrl_lli_last = 0 |
  707. COH901318_CX_CTRL_TC_ENABLE |
  708. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  709. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  710. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  711. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  712. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  713. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  714. COH901318_CX_CTRL_TCP_DISABLE |
  715. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  716. COH901318_CX_CTRL_HSP_ENABLE |
  717. COH901318_CX_CTRL_HSS_DISABLE |
  718. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  719. COH901318_CX_CTRL_PRDD_DEST,
  720. },
  721. {
  722. .number = U300_DMA_MSL_RX_6,
  723. .name = "MSL RX 6",
  724. .priority_high = 0,
  725. },
  726. /*
  727. * Don't set up device address, burst count or size of src
  728. * or dst bus for this peripheral - handled by PrimeCell
  729. * DMA extension.
  730. */
  731. {
  732. .number = U300_DMA_MMCSD_RX_TX,
  733. .name = "MMCSD RX TX",
  734. .priority_high = 0,
  735. .param.config = COH901318_CX_CFG_CH_DISABLE |
  736. COH901318_CX_CFG_LCR_DISABLE |
  737. COH901318_CX_CFG_TC_IRQ_ENABLE |
  738. COH901318_CX_CFG_BE_IRQ_ENABLE,
  739. .param.ctrl_lli_chained = 0 |
  740. COH901318_CX_CTRL_TC_ENABLE |
  741. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  742. COH901318_CX_CTRL_TCP_ENABLE |
  743. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  744. COH901318_CX_CTRL_HSP_ENABLE |
  745. COH901318_CX_CTRL_HSS_DISABLE |
  746. COH901318_CX_CTRL_DDMA_LEGACY,
  747. .param.ctrl_lli = 0 |
  748. COH901318_CX_CTRL_TC_ENABLE |
  749. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  750. COH901318_CX_CTRL_TCP_ENABLE |
  751. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  752. COH901318_CX_CTRL_HSP_ENABLE |
  753. COH901318_CX_CTRL_HSS_DISABLE |
  754. COH901318_CX_CTRL_DDMA_LEGACY,
  755. .param.ctrl_lli_last = 0 |
  756. COH901318_CX_CTRL_TC_ENABLE |
  757. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  758. COH901318_CX_CTRL_TCP_DISABLE |
  759. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  760. COH901318_CX_CTRL_HSP_ENABLE |
  761. COH901318_CX_CTRL_HSS_DISABLE |
  762. COH901318_CX_CTRL_DDMA_LEGACY,
  763. },
  764. {
  765. .number = U300_DMA_MSPRO_TX,
  766. .name = "MSPRO TX",
  767. .priority_high = 0,
  768. },
  769. {
  770. .number = U300_DMA_MSPRO_RX,
  771. .name = "MSPRO RX",
  772. .priority_high = 0,
  773. },
  774. /*
  775. * Don't set up device address, burst count or size of src
  776. * or dst bus for this peripheral - handled by PrimeCell
  777. * DMA extension.
  778. */
  779. {
  780. .number = U300_DMA_UART0_TX,
  781. .name = "UART0 TX",
  782. .priority_high = 0,
  783. .param.config = COH901318_CX_CFG_CH_DISABLE |
  784. COH901318_CX_CFG_LCR_DISABLE |
  785. COH901318_CX_CFG_TC_IRQ_ENABLE |
  786. COH901318_CX_CFG_BE_IRQ_ENABLE,
  787. .param.ctrl_lli_chained = 0 |
  788. COH901318_CX_CTRL_TC_ENABLE |
  789. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  790. COH901318_CX_CTRL_TCP_ENABLE |
  791. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  792. COH901318_CX_CTRL_HSP_ENABLE |
  793. COH901318_CX_CTRL_HSS_DISABLE |
  794. COH901318_CX_CTRL_DDMA_LEGACY,
  795. .param.ctrl_lli = 0 |
  796. COH901318_CX_CTRL_TC_ENABLE |
  797. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  798. COH901318_CX_CTRL_TCP_ENABLE |
  799. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  800. COH901318_CX_CTRL_HSP_ENABLE |
  801. COH901318_CX_CTRL_HSS_DISABLE |
  802. COH901318_CX_CTRL_DDMA_LEGACY,
  803. .param.ctrl_lli_last = 0 |
  804. COH901318_CX_CTRL_TC_ENABLE |
  805. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  806. COH901318_CX_CTRL_TCP_ENABLE |
  807. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  808. COH901318_CX_CTRL_HSP_ENABLE |
  809. COH901318_CX_CTRL_HSS_DISABLE |
  810. COH901318_CX_CTRL_DDMA_LEGACY,
  811. },
  812. {
  813. .number = U300_DMA_UART0_RX,
  814. .name = "UART0 RX",
  815. .priority_high = 0,
  816. .param.config = COH901318_CX_CFG_CH_DISABLE |
  817. COH901318_CX_CFG_LCR_DISABLE |
  818. COH901318_CX_CFG_TC_IRQ_ENABLE |
  819. COH901318_CX_CFG_BE_IRQ_ENABLE,
  820. .param.ctrl_lli_chained = 0 |
  821. COH901318_CX_CTRL_TC_ENABLE |
  822. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  823. COH901318_CX_CTRL_TCP_ENABLE |
  824. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  825. COH901318_CX_CTRL_HSP_ENABLE |
  826. COH901318_CX_CTRL_HSS_DISABLE |
  827. COH901318_CX_CTRL_DDMA_LEGACY,
  828. .param.ctrl_lli = 0 |
  829. COH901318_CX_CTRL_TC_ENABLE |
  830. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  831. COH901318_CX_CTRL_TCP_ENABLE |
  832. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  833. COH901318_CX_CTRL_HSP_ENABLE |
  834. COH901318_CX_CTRL_HSS_DISABLE |
  835. COH901318_CX_CTRL_DDMA_LEGACY,
  836. .param.ctrl_lli_last = 0 |
  837. COH901318_CX_CTRL_TC_ENABLE |
  838. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  839. COH901318_CX_CTRL_TCP_ENABLE |
  840. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  841. COH901318_CX_CTRL_HSP_ENABLE |
  842. COH901318_CX_CTRL_HSS_DISABLE |
  843. COH901318_CX_CTRL_DDMA_LEGACY,
  844. },
  845. {
  846. .number = U300_DMA_APEX_TX,
  847. .name = "APEX TX",
  848. .priority_high = 0,
  849. },
  850. {
  851. .number = U300_DMA_APEX_RX,
  852. .name = "APEX RX",
  853. .priority_high = 0,
  854. },
  855. {
  856. .number = U300_DMA_PCM_I2S0_TX,
  857. .name = "PCM I2S0 TX",
  858. .priority_high = 1,
  859. .param.config = COH901318_CX_CFG_CH_DISABLE |
  860. COH901318_CX_CFG_LCR_DISABLE |
  861. COH901318_CX_CFG_TC_IRQ_ENABLE |
  862. COH901318_CX_CFG_BE_IRQ_ENABLE,
  863. .param.ctrl_lli_chained = 0 |
  864. COH901318_CX_CTRL_TC_ENABLE |
  865. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  866. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  867. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  868. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  869. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  870. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  871. COH901318_CX_CTRL_TCP_DISABLE |
  872. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  873. COH901318_CX_CTRL_HSP_ENABLE |
  874. COH901318_CX_CTRL_HSS_DISABLE |
  875. COH901318_CX_CTRL_DDMA_LEGACY |
  876. COH901318_CX_CTRL_PRDD_SOURCE,
  877. .param.ctrl_lli = 0 |
  878. COH901318_CX_CTRL_TC_ENABLE |
  879. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  880. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  881. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  882. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  883. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  884. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  885. COH901318_CX_CTRL_TCP_ENABLE |
  886. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  887. COH901318_CX_CTRL_HSP_ENABLE |
  888. COH901318_CX_CTRL_HSS_DISABLE |
  889. COH901318_CX_CTRL_DDMA_LEGACY |
  890. COH901318_CX_CTRL_PRDD_SOURCE,
  891. .param.ctrl_lli_last = 0 |
  892. COH901318_CX_CTRL_TC_ENABLE |
  893. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  894. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  895. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  896. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  897. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  898. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  899. COH901318_CX_CTRL_TCP_ENABLE |
  900. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  901. COH901318_CX_CTRL_HSP_ENABLE |
  902. COH901318_CX_CTRL_HSS_DISABLE |
  903. COH901318_CX_CTRL_DDMA_LEGACY |
  904. COH901318_CX_CTRL_PRDD_SOURCE,
  905. },
  906. {
  907. .number = U300_DMA_PCM_I2S0_RX,
  908. .name = "PCM I2S0 RX",
  909. .priority_high = 1,
  910. .param.config = COH901318_CX_CFG_CH_DISABLE |
  911. COH901318_CX_CFG_LCR_DISABLE |
  912. COH901318_CX_CFG_TC_IRQ_ENABLE |
  913. COH901318_CX_CFG_BE_IRQ_ENABLE,
  914. .param.ctrl_lli_chained = 0 |
  915. COH901318_CX_CTRL_TC_ENABLE |
  916. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  917. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  918. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  919. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  920. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  921. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  922. COH901318_CX_CTRL_TCP_DISABLE |
  923. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  924. COH901318_CX_CTRL_HSP_ENABLE |
  925. COH901318_CX_CTRL_HSS_DISABLE |
  926. COH901318_CX_CTRL_DDMA_LEGACY |
  927. COH901318_CX_CTRL_PRDD_DEST,
  928. .param.ctrl_lli = 0 |
  929. COH901318_CX_CTRL_TC_ENABLE |
  930. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  931. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  932. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  933. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  934. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  935. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  936. COH901318_CX_CTRL_TCP_ENABLE |
  937. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  938. COH901318_CX_CTRL_HSP_ENABLE |
  939. COH901318_CX_CTRL_HSS_DISABLE |
  940. COH901318_CX_CTRL_DDMA_LEGACY |
  941. COH901318_CX_CTRL_PRDD_DEST,
  942. .param.ctrl_lli_last = 0 |
  943. COH901318_CX_CTRL_TC_ENABLE |
  944. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  945. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  946. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  947. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  948. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  949. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  950. COH901318_CX_CTRL_TCP_ENABLE |
  951. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  952. COH901318_CX_CTRL_HSP_ENABLE |
  953. COH901318_CX_CTRL_HSS_DISABLE |
  954. COH901318_CX_CTRL_DDMA_LEGACY |
  955. COH901318_CX_CTRL_PRDD_DEST,
  956. },
  957. {
  958. .number = U300_DMA_PCM_I2S1_TX,
  959. .name = "PCM I2S1 TX",
  960. .priority_high = 1,
  961. .param.config = COH901318_CX_CFG_CH_DISABLE |
  962. COH901318_CX_CFG_LCR_DISABLE |
  963. COH901318_CX_CFG_TC_IRQ_ENABLE |
  964. COH901318_CX_CFG_BE_IRQ_ENABLE,
  965. .param.ctrl_lli_chained = 0 |
  966. COH901318_CX_CTRL_TC_ENABLE |
  967. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  968. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  969. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  970. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  971. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  972. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  973. COH901318_CX_CTRL_TCP_DISABLE |
  974. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  975. COH901318_CX_CTRL_HSP_ENABLE |
  976. COH901318_CX_CTRL_HSS_DISABLE |
  977. COH901318_CX_CTRL_DDMA_LEGACY |
  978. COH901318_CX_CTRL_PRDD_SOURCE,
  979. .param.ctrl_lli = 0 |
  980. COH901318_CX_CTRL_TC_ENABLE |
  981. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  982. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  983. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  984. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  985. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  986. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  987. COH901318_CX_CTRL_TCP_ENABLE |
  988. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  989. COH901318_CX_CTRL_HSP_ENABLE |
  990. COH901318_CX_CTRL_HSS_DISABLE |
  991. COH901318_CX_CTRL_DDMA_LEGACY |
  992. COH901318_CX_CTRL_PRDD_SOURCE,
  993. .param.ctrl_lli_last = 0 |
  994. COH901318_CX_CTRL_TC_ENABLE |
  995. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  996. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  997. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  998. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  999. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  1000. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1001. COH901318_CX_CTRL_TCP_ENABLE |
  1002. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1003. COH901318_CX_CTRL_HSP_ENABLE |
  1004. COH901318_CX_CTRL_HSS_DISABLE |
  1005. COH901318_CX_CTRL_DDMA_LEGACY |
  1006. COH901318_CX_CTRL_PRDD_SOURCE,
  1007. },
  1008. {
  1009. .number = U300_DMA_PCM_I2S1_RX,
  1010. .name = "PCM I2S1 RX",
  1011. .priority_high = 1,
  1012. .param.config = COH901318_CX_CFG_CH_DISABLE |
  1013. COH901318_CX_CFG_LCR_DISABLE |
  1014. COH901318_CX_CFG_TC_IRQ_ENABLE |
  1015. COH901318_CX_CFG_BE_IRQ_ENABLE,
  1016. .param.ctrl_lli_chained = 0 |
  1017. COH901318_CX_CTRL_TC_ENABLE |
  1018. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  1019. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  1020. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  1021. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  1022. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  1023. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1024. COH901318_CX_CTRL_TCP_DISABLE |
  1025. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  1026. COH901318_CX_CTRL_HSP_ENABLE |
  1027. COH901318_CX_CTRL_HSS_DISABLE |
  1028. COH901318_CX_CTRL_DDMA_LEGACY |
  1029. COH901318_CX_CTRL_PRDD_DEST,
  1030. .param.ctrl_lli = 0 |
  1031. COH901318_CX_CTRL_TC_ENABLE |
  1032. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  1033. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  1034. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  1035. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  1036. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  1037. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1038. COH901318_CX_CTRL_TCP_ENABLE |
  1039. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  1040. COH901318_CX_CTRL_HSP_ENABLE |
  1041. COH901318_CX_CTRL_HSS_DISABLE |
  1042. COH901318_CX_CTRL_DDMA_LEGACY |
  1043. COH901318_CX_CTRL_PRDD_DEST,
  1044. .param.ctrl_lli_last = 0 |
  1045. COH901318_CX_CTRL_TC_ENABLE |
  1046. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  1047. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  1048. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  1049. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  1050. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  1051. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1052. COH901318_CX_CTRL_TCP_ENABLE |
  1053. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1054. COH901318_CX_CTRL_HSP_ENABLE |
  1055. COH901318_CX_CTRL_HSS_DISABLE |
  1056. COH901318_CX_CTRL_DDMA_LEGACY |
  1057. COH901318_CX_CTRL_PRDD_DEST,
  1058. },
  1059. {
  1060. .number = U300_DMA_XGAM_CDI,
  1061. .name = "XGAM CDI",
  1062. .priority_high = 0,
  1063. },
  1064. {
  1065. .number = U300_DMA_XGAM_PDI,
  1066. .name = "XGAM PDI",
  1067. .priority_high = 0,
  1068. },
  1069. /*
  1070. * Don't set up device address, burst count or size of src
  1071. * or dst bus for this peripheral - handled by PrimeCell
  1072. * DMA extension.
  1073. */
  1074. {
  1075. .number = U300_DMA_SPI_TX,
  1076. .name = "SPI TX",
  1077. .priority_high = 0,
  1078. .param.config = COH901318_CX_CFG_CH_DISABLE |
  1079. COH901318_CX_CFG_LCR_DISABLE |
  1080. COH901318_CX_CFG_TC_IRQ_ENABLE |
  1081. COH901318_CX_CFG_BE_IRQ_ENABLE,
  1082. .param.ctrl_lli_chained = 0 |
  1083. COH901318_CX_CTRL_TC_ENABLE |
  1084. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1085. COH901318_CX_CTRL_TCP_DISABLE |
  1086. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  1087. COH901318_CX_CTRL_HSP_ENABLE |
  1088. COH901318_CX_CTRL_HSS_DISABLE |
  1089. COH901318_CX_CTRL_DDMA_LEGACY,
  1090. .param.ctrl_lli = 0 |
  1091. COH901318_CX_CTRL_TC_ENABLE |
  1092. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1093. COH901318_CX_CTRL_TCP_DISABLE |
  1094. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1095. COH901318_CX_CTRL_HSP_ENABLE |
  1096. COH901318_CX_CTRL_HSS_DISABLE |
  1097. COH901318_CX_CTRL_DDMA_LEGACY,
  1098. .param.ctrl_lli_last = 0 |
  1099. COH901318_CX_CTRL_TC_ENABLE |
  1100. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1101. COH901318_CX_CTRL_TCP_DISABLE |
  1102. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1103. COH901318_CX_CTRL_HSP_ENABLE |
  1104. COH901318_CX_CTRL_HSS_DISABLE |
  1105. COH901318_CX_CTRL_DDMA_LEGACY,
  1106. },
  1107. {
  1108. .number = U300_DMA_SPI_RX,
  1109. .name = "SPI RX",
  1110. .priority_high = 0,
  1111. .param.config = COH901318_CX_CFG_CH_DISABLE |
  1112. COH901318_CX_CFG_LCR_DISABLE |
  1113. COH901318_CX_CFG_TC_IRQ_ENABLE |
  1114. COH901318_CX_CFG_BE_IRQ_ENABLE,
  1115. .param.ctrl_lli_chained = 0 |
  1116. COH901318_CX_CTRL_TC_ENABLE |
  1117. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1118. COH901318_CX_CTRL_TCP_DISABLE |
  1119. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  1120. COH901318_CX_CTRL_HSP_ENABLE |
  1121. COH901318_CX_CTRL_HSS_DISABLE |
  1122. COH901318_CX_CTRL_DDMA_LEGACY,
  1123. .param.ctrl_lli = 0 |
  1124. COH901318_CX_CTRL_TC_ENABLE |
  1125. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1126. COH901318_CX_CTRL_TCP_DISABLE |
  1127. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1128. COH901318_CX_CTRL_HSP_ENABLE |
  1129. COH901318_CX_CTRL_HSS_DISABLE |
  1130. COH901318_CX_CTRL_DDMA_LEGACY,
  1131. .param.ctrl_lli_last = 0 |
  1132. COH901318_CX_CTRL_TC_ENABLE |
  1133. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1134. COH901318_CX_CTRL_TCP_DISABLE |
  1135. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1136. COH901318_CX_CTRL_HSP_ENABLE |
  1137. COH901318_CX_CTRL_HSS_DISABLE |
  1138. COH901318_CX_CTRL_DDMA_LEGACY,
  1139. },
  1140. {
  1141. .number = U300_DMA_GENERAL_PURPOSE_0,
  1142. .name = "GENERAL 00",
  1143. .priority_high = 0,
  1144. .param.config = flags_memcpy_config,
  1145. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1146. .param.ctrl_lli = flags_memcpy_lli,
  1147. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1148. },
  1149. {
  1150. .number = U300_DMA_GENERAL_PURPOSE_1,
  1151. .name = "GENERAL 01",
  1152. .priority_high = 0,
  1153. .param.config = flags_memcpy_config,
  1154. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1155. .param.ctrl_lli = flags_memcpy_lli,
  1156. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1157. },
  1158. {
  1159. .number = U300_DMA_GENERAL_PURPOSE_2,
  1160. .name = "GENERAL 02",
  1161. .priority_high = 0,
  1162. .param.config = flags_memcpy_config,
  1163. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1164. .param.ctrl_lli = flags_memcpy_lli,
  1165. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1166. },
  1167. {
  1168. .number = U300_DMA_GENERAL_PURPOSE_3,
  1169. .name = "GENERAL 03",
  1170. .priority_high = 0,
  1171. .param.config = flags_memcpy_config,
  1172. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1173. .param.ctrl_lli = flags_memcpy_lli,
  1174. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1175. },
  1176. {
  1177. .number = U300_DMA_GENERAL_PURPOSE_4,
  1178. .name = "GENERAL 04",
  1179. .priority_high = 0,
  1180. .param.config = flags_memcpy_config,
  1181. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1182. .param.ctrl_lli = flags_memcpy_lli,
  1183. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1184. },
  1185. {
  1186. .number = U300_DMA_GENERAL_PURPOSE_5,
  1187. .name = "GENERAL 05",
  1188. .priority_high = 0,
  1189. .param.config = flags_memcpy_config,
  1190. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1191. .param.ctrl_lli = flags_memcpy_lli,
  1192. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1193. },
  1194. {
  1195. .number = U300_DMA_GENERAL_PURPOSE_6,
  1196. .name = "GENERAL 06",
  1197. .priority_high = 0,
  1198. .param.config = flags_memcpy_config,
  1199. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1200. .param.ctrl_lli = flags_memcpy_lli,
  1201. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1202. },
  1203. {
  1204. .number = U300_DMA_GENERAL_PURPOSE_7,
  1205. .name = "GENERAL 07",
  1206. .priority_high = 0,
  1207. .param.config = flags_memcpy_config,
  1208. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1209. .param.ctrl_lli = flags_memcpy_lli,
  1210. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1211. },
  1212. {
  1213. .number = U300_DMA_GENERAL_PURPOSE_8,
  1214. .name = "GENERAL 08",
  1215. .priority_high = 0,
  1216. .param.config = flags_memcpy_config,
  1217. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1218. .param.ctrl_lli = flags_memcpy_lli,
  1219. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1220. },
  1221. {
  1222. .number = U300_DMA_UART1_TX,
  1223. .name = "UART1 TX",
  1224. .priority_high = 0,
  1225. },
  1226. {
  1227. .number = U300_DMA_UART1_RX,
  1228. .name = "UART1 RX",
  1229. .priority_high = 0,
  1230. }
  1231. };
  1232. #define COHC_2_DEV(cohc) (&cohc->chan.dev->device)
  1233. #ifdef VERBOSE_DEBUG
  1234. #define COH_DBG(x) ({ if (1) x; 0; })
  1235. #else
  1236. #define COH_DBG(x) ({ if (0) x; 0; })
  1237. #endif
  1238. struct coh901318_desc {
  1239. struct dma_async_tx_descriptor desc;
  1240. struct list_head node;
  1241. struct scatterlist *sg;
  1242. unsigned int sg_len;
  1243. struct coh901318_lli *lli;
  1244. enum dma_transfer_direction dir;
  1245. unsigned long flags;
  1246. u32 head_config;
  1247. u32 head_ctrl;
  1248. };
  1249. struct coh901318_base {
  1250. struct device *dev;
  1251. void __iomem *virtbase;
  1252. struct coh901318_pool pool;
  1253. struct powersave pm;
  1254. struct dma_device dma_slave;
  1255. struct dma_device dma_memcpy;
  1256. struct coh901318_chan *chans;
  1257. };
  1258. struct coh901318_chan {
  1259. spinlock_t lock;
  1260. int allocated;
  1261. int id;
  1262. int stopped;
  1263. struct work_struct free_work;
  1264. struct dma_chan chan;
  1265. struct tasklet_struct tasklet;
  1266. struct list_head active;
  1267. struct list_head queue;
  1268. struct list_head free;
  1269. unsigned long nbr_active_done;
  1270. unsigned long busy;
  1271. u32 addr;
  1272. u32 ctrl;
  1273. struct coh901318_base *base;
  1274. };
  1275. static void coh901318_list_print(struct coh901318_chan *cohc,
  1276. struct coh901318_lli *lli)
  1277. {
  1278. struct coh901318_lli *l = lli;
  1279. int i = 0;
  1280. while (l) {
  1281. dev_vdbg(COHC_2_DEV(cohc), "i %d, lli %p, ctrl 0x%x, src 0x%x"
  1282. ", dst 0x%x, link 0x%x virt_link_addr 0x%p\n",
  1283. i, l, l->control, l->src_addr, l->dst_addr,
  1284. l->link_addr, l->virt_link_addr);
  1285. i++;
  1286. l = l->virt_link_addr;
  1287. }
  1288. }
  1289. #ifdef CONFIG_DEBUG_FS
  1290. #define COH901318_DEBUGFS_ASSIGN(x, y) (x = y)
  1291. static struct coh901318_base *debugfs_dma_base;
  1292. static struct dentry *dma_dentry;
  1293. static int coh901318_debugfs_read(struct file *file, char __user *buf,
  1294. size_t count, loff_t *f_pos)
  1295. {
  1296. u64 started_channels = debugfs_dma_base->pm.started_channels;
  1297. int pool_count = debugfs_dma_base->pool.debugfs_pool_counter;
  1298. char *dev_buf;
  1299. char *tmp;
  1300. int ret;
  1301. int i;
  1302. dev_buf = kmalloc(4*1024, GFP_KERNEL);
  1303. if (dev_buf == NULL)
  1304. return -ENOMEM;
  1305. tmp = dev_buf;
  1306. tmp += sprintf(tmp, "DMA -- enabled dma channels\n");
  1307. for (i = 0; i < U300_DMA_CHANNELS; i++)
  1308. if (started_channels & (1 << i))
  1309. tmp += sprintf(tmp, "channel %d\n", i);
  1310. tmp += sprintf(tmp, "Pool alloc nbr %d\n", pool_count);
  1311. ret = simple_read_from_buffer(buf, count, f_pos, dev_buf,
  1312. tmp - dev_buf);
  1313. kfree(dev_buf);
  1314. return ret;
  1315. }
  1316. static const struct file_operations coh901318_debugfs_status_operations = {
  1317. .owner = THIS_MODULE,
  1318. .open = simple_open,
  1319. .read = coh901318_debugfs_read,
  1320. .llseek = default_llseek,
  1321. };
  1322. static int __init init_coh901318_debugfs(void)
  1323. {
  1324. dma_dentry = debugfs_create_dir("dma", NULL);
  1325. (void) debugfs_create_file("status",
  1326. S_IFREG | S_IRUGO,
  1327. dma_dentry, NULL,
  1328. &coh901318_debugfs_status_operations);
  1329. return 0;
  1330. }
  1331. static void __exit exit_coh901318_debugfs(void)
  1332. {
  1333. debugfs_remove_recursive(dma_dentry);
  1334. }
  1335. module_init(init_coh901318_debugfs);
  1336. module_exit(exit_coh901318_debugfs);
  1337. #else
  1338. #define COH901318_DEBUGFS_ASSIGN(x, y)
  1339. #endif /* CONFIG_DEBUG_FS */
  1340. static inline struct coh901318_chan *to_coh901318_chan(struct dma_chan *chan)
  1341. {
  1342. return container_of(chan, struct coh901318_chan, chan);
  1343. }
  1344. static inline const struct coh901318_params *
  1345. cohc_chan_param(struct coh901318_chan *cohc)
  1346. {
  1347. return &chan_config[cohc->id].param;
  1348. }
  1349. static inline const struct coh_dma_channel *
  1350. cohc_chan_conf(struct coh901318_chan *cohc)
  1351. {
  1352. return &chan_config[cohc->id];
  1353. }
  1354. static void enable_powersave(struct coh901318_chan *cohc)
  1355. {
  1356. unsigned long flags;
  1357. struct powersave *pm = &cohc->base->pm;
  1358. spin_lock_irqsave(&pm->lock, flags);
  1359. pm->started_channels &= ~(1ULL << cohc->id);
  1360. spin_unlock_irqrestore(&pm->lock, flags);
  1361. }
  1362. static void disable_powersave(struct coh901318_chan *cohc)
  1363. {
  1364. unsigned long flags;
  1365. struct powersave *pm = &cohc->base->pm;
  1366. spin_lock_irqsave(&pm->lock, flags);
  1367. pm->started_channels |= (1ULL << cohc->id);
  1368. spin_unlock_irqrestore(&pm->lock, flags);
  1369. }
  1370. static inline int coh901318_set_ctrl(struct coh901318_chan *cohc, u32 control)
  1371. {
  1372. int channel = cohc->id;
  1373. void __iomem *virtbase = cohc->base->virtbase;
  1374. writel(control,
  1375. virtbase + COH901318_CX_CTRL +
  1376. COH901318_CX_CTRL_SPACING * channel);
  1377. return 0;
  1378. }
  1379. static inline int coh901318_set_conf(struct coh901318_chan *cohc, u32 conf)
  1380. {
  1381. int channel = cohc->id;
  1382. void __iomem *virtbase = cohc->base->virtbase;
  1383. writel(conf,
  1384. virtbase + COH901318_CX_CFG +
  1385. COH901318_CX_CFG_SPACING*channel);
  1386. return 0;
  1387. }
  1388. static int coh901318_start(struct coh901318_chan *cohc)
  1389. {
  1390. u32 val;
  1391. int channel = cohc->id;
  1392. void __iomem *virtbase = cohc->base->virtbase;
  1393. disable_powersave(cohc);
  1394. val = readl(virtbase + COH901318_CX_CFG +
  1395. COH901318_CX_CFG_SPACING * channel);
  1396. /* Enable channel */
  1397. val |= COH901318_CX_CFG_CH_ENABLE;
  1398. writel(val, virtbase + COH901318_CX_CFG +
  1399. COH901318_CX_CFG_SPACING * channel);
  1400. return 0;
  1401. }
  1402. static int coh901318_prep_linked_list(struct coh901318_chan *cohc,
  1403. struct coh901318_lli *lli)
  1404. {
  1405. int channel = cohc->id;
  1406. void __iomem *virtbase = cohc->base->virtbase;
  1407. BUG_ON(readl(virtbase + COH901318_CX_STAT +
  1408. COH901318_CX_STAT_SPACING*channel) &
  1409. COH901318_CX_STAT_ACTIVE);
  1410. writel(lli->src_addr,
  1411. virtbase + COH901318_CX_SRC_ADDR +
  1412. COH901318_CX_SRC_ADDR_SPACING * channel);
  1413. writel(lli->dst_addr, virtbase +
  1414. COH901318_CX_DST_ADDR +
  1415. COH901318_CX_DST_ADDR_SPACING * channel);
  1416. writel(lli->link_addr, virtbase + COH901318_CX_LNK_ADDR +
  1417. COH901318_CX_LNK_ADDR_SPACING * channel);
  1418. writel(lli->control, virtbase + COH901318_CX_CTRL +
  1419. COH901318_CX_CTRL_SPACING * channel);
  1420. return 0;
  1421. }
  1422. static struct coh901318_desc *
  1423. coh901318_desc_get(struct coh901318_chan *cohc)
  1424. {
  1425. struct coh901318_desc *desc;
  1426. if (list_empty(&cohc->free)) {
  1427. /* alloc new desc because we're out of used ones
  1428. * TODO: alloc a pile of descs instead of just one,
  1429. * avoid many small allocations.
  1430. */
  1431. desc = kzalloc(sizeof(struct coh901318_desc), GFP_NOWAIT);
  1432. if (desc == NULL)
  1433. goto out;
  1434. INIT_LIST_HEAD(&desc->node);
  1435. dma_async_tx_descriptor_init(&desc->desc, &cohc->chan);
  1436. } else {
  1437. /* Reuse an old desc. */
  1438. desc = list_first_entry(&cohc->free,
  1439. struct coh901318_desc,
  1440. node);
  1441. list_del(&desc->node);
  1442. /* Initialize it a bit so it's not insane */
  1443. desc->sg = NULL;
  1444. desc->sg_len = 0;
  1445. desc->desc.callback = NULL;
  1446. desc->desc.callback_param = NULL;
  1447. }
  1448. out:
  1449. return desc;
  1450. }
  1451. static void
  1452. coh901318_desc_free(struct coh901318_chan *cohc, struct coh901318_desc *cohd)
  1453. {
  1454. list_add_tail(&cohd->node, &cohc->free);
  1455. }
  1456. /* call with irq lock held */
  1457. static void
  1458. coh901318_desc_submit(struct coh901318_chan *cohc, struct coh901318_desc *desc)
  1459. {
  1460. list_add_tail(&desc->node, &cohc->active);
  1461. }
  1462. static struct coh901318_desc *
  1463. coh901318_first_active_get(struct coh901318_chan *cohc)
  1464. {
  1465. struct coh901318_desc *d;
  1466. if (list_empty(&cohc->active))
  1467. return NULL;
  1468. d = list_first_entry(&cohc->active,
  1469. struct coh901318_desc,
  1470. node);
  1471. return d;
  1472. }
  1473. static void
  1474. coh901318_desc_remove(struct coh901318_desc *cohd)
  1475. {
  1476. list_del(&cohd->node);
  1477. }
  1478. static void
  1479. coh901318_desc_queue(struct coh901318_chan *cohc, struct coh901318_desc *desc)
  1480. {
  1481. list_add_tail(&desc->node, &cohc->queue);
  1482. }
  1483. static struct coh901318_desc *
  1484. coh901318_first_queued(struct coh901318_chan *cohc)
  1485. {
  1486. struct coh901318_desc *d;
  1487. if (list_empty(&cohc->queue))
  1488. return NULL;
  1489. d = list_first_entry(&cohc->queue,
  1490. struct coh901318_desc,
  1491. node);
  1492. return d;
  1493. }
  1494. static inline u32 coh901318_get_bytes_in_lli(struct coh901318_lli *in_lli)
  1495. {
  1496. struct coh901318_lli *lli = in_lli;
  1497. u32 bytes = 0;
  1498. while (lli) {
  1499. bytes += lli->control & COH901318_CX_CTRL_TC_VALUE_MASK;
  1500. lli = lli->virt_link_addr;
  1501. }
  1502. return bytes;
  1503. }
  1504. /*
  1505. * Get the number of bytes left to transfer on this channel,
  1506. * it is unwise to call this before stopping the channel for
  1507. * absolute measures, but for a rough guess you can still call
  1508. * it.
  1509. */
  1510. static u32 coh901318_get_bytes_left(struct dma_chan *chan)
  1511. {
  1512. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1513. struct coh901318_desc *cohd;
  1514. struct list_head *pos;
  1515. unsigned long flags;
  1516. u32 left = 0;
  1517. int i = 0;
  1518. spin_lock_irqsave(&cohc->lock, flags);
  1519. /*
  1520. * If there are many queued jobs, we iterate and add the
  1521. * size of them all. We take a special look on the first
  1522. * job though, since it is probably active.
  1523. */
  1524. list_for_each(pos, &cohc->active) {
  1525. /*
  1526. * The first job in the list will be working on the
  1527. * hardware. The job can be stopped but still active,
  1528. * so that the transfer counter is somewhere inside
  1529. * the buffer.
  1530. */
  1531. cohd = list_entry(pos, struct coh901318_desc, node);
  1532. if (i == 0) {
  1533. struct coh901318_lli *lli;
  1534. dma_addr_t ladd;
  1535. /* Read current transfer count value */
  1536. left = readl(cohc->base->virtbase +
  1537. COH901318_CX_CTRL +
  1538. COH901318_CX_CTRL_SPACING * cohc->id) &
  1539. COH901318_CX_CTRL_TC_VALUE_MASK;
  1540. /* See if the transfer is linked... */
  1541. ladd = readl(cohc->base->virtbase +
  1542. COH901318_CX_LNK_ADDR +
  1543. COH901318_CX_LNK_ADDR_SPACING *
  1544. cohc->id) &
  1545. ~COH901318_CX_LNK_LINK_IMMEDIATE;
  1546. /* Single transaction */
  1547. if (!ladd)
  1548. continue;
  1549. /*
  1550. * Linked transaction, follow the lli, find the
  1551. * currently processing lli, and proceed to the next
  1552. */
  1553. lli = cohd->lli;
  1554. while (lli && lli->link_addr != ladd)
  1555. lli = lli->virt_link_addr;
  1556. if (lli)
  1557. lli = lli->virt_link_addr;
  1558. /*
  1559. * Follow remaining lli links around to count the total
  1560. * number of bytes left
  1561. */
  1562. left += coh901318_get_bytes_in_lli(lli);
  1563. } else {
  1564. left += coh901318_get_bytes_in_lli(cohd->lli);
  1565. }
  1566. i++;
  1567. }
  1568. /* Also count bytes in the queued jobs */
  1569. list_for_each(pos, &cohc->queue) {
  1570. cohd = list_entry(pos, struct coh901318_desc, node);
  1571. left += coh901318_get_bytes_in_lli(cohd->lli);
  1572. }
  1573. spin_unlock_irqrestore(&cohc->lock, flags);
  1574. return left;
  1575. }
  1576. /*
  1577. * Pauses a transfer without losing data. Enables power save.
  1578. * Use this function in conjunction with coh901318_resume.
  1579. */
  1580. static int coh901318_pause(struct dma_chan *chan)
  1581. {
  1582. u32 val;
  1583. unsigned long flags;
  1584. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1585. int channel = cohc->id;
  1586. void __iomem *virtbase = cohc->base->virtbase;
  1587. spin_lock_irqsave(&cohc->lock, flags);
  1588. /* Disable channel in HW */
  1589. val = readl(virtbase + COH901318_CX_CFG +
  1590. COH901318_CX_CFG_SPACING * channel);
  1591. /* Stopping infinite transfer */
  1592. if ((val & COH901318_CX_CTRL_TC_ENABLE) == 0 &&
  1593. (val & COH901318_CX_CFG_CH_ENABLE))
  1594. cohc->stopped = 1;
  1595. val &= ~COH901318_CX_CFG_CH_ENABLE;
  1596. /* Enable twice, HW bug work around */
  1597. writel(val, virtbase + COH901318_CX_CFG +
  1598. COH901318_CX_CFG_SPACING * channel);
  1599. writel(val, virtbase + COH901318_CX_CFG +
  1600. COH901318_CX_CFG_SPACING * channel);
  1601. /* Spin-wait for it to actually go inactive */
  1602. while (readl(virtbase + COH901318_CX_STAT+COH901318_CX_STAT_SPACING *
  1603. channel) & COH901318_CX_STAT_ACTIVE)
  1604. cpu_relax();
  1605. /* Check if we stopped an active job */
  1606. if ((readl(virtbase + COH901318_CX_CTRL+COH901318_CX_CTRL_SPACING *
  1607. channel) & COH901318_CX_CTRL_TC_VALUE_MASK) > 0)
  1608. cohc->stopped = 1;
  1609. enable_powersave(cohc);
  1610. spin_unlock_irqrestore(&cohc->lock, flags);
  1611. return 0;
  1612. }
  1613. /* Resumes a transfer that has been stopped via 300_dma_stop(..).
  1614. Power save is handled.
  1615. */
  1616. static int coh901318_resume(struct dma_chan *chan)
  1617. {
  1618. u32 val;
  1619. unsigned long flags;
  1620. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1621. int channel = cohc->id;
  1622. spin_lock_irqsave(&cohc->lock, flags);
  1623. disable_powersave(cohc);
  1624. if (cohc->stopped) {
  1625. /* Enable channel in HW */
  1626. val = readl(cohc->base->virtbase + COH901318_CX_CFG +
  1627. COH901318_CX_CFG_SPACING * channel);
  1628. val |= COH901318_CX_CFG_CH_ENABLE;
  1629. writel(val, cohc->base->virtbase + COH901318_CX_CFG +
  1630. COH901318_CX_CFG_SPACING*channel);
  1631. cohc->stopped = 0;
  1632. }
  1633. spin_unlock_irqrestore(&cohc->lock, flags);
  1634. return 0;
  1635. }
  1636. bool coh901318_filter_id(struct dma_chan *chan, void *chan_id)
  1637. {
  1638. unsigned int ch_nr = (unsigned int) chan_id;
  1639. if (ch_nr == to_coh901318_chan(chan)->id)
  1640. return true;
  1641. return false;
  1642. }
  1643. EXPORT_SYMBOL(coh901318_filter_id);
  1644. struct coh901318_filter_args {
  1645. struct coh901318_base *base;
  1646. unsigned int ch_nr;
  1647. };
  1648. static bool coh901318_filter_base_and_id(struct dma_chan *chan, void *data)
  1649. {
  1650. struct coh901318_filter_args *args = data;
  1651. if (&args->base->dma_slave == chan->device &&
  1652. args->ch_nr == to_coh901318_chan(chan)->id)
  1653. return true;
  1654. return false;
  1655. }
  1656. static struct dma_chan *coh901318_xlate(struct of_phandle_args *dma_spec,
  1657. struct of_dma *ofdma)
  1658. {
  1659. struct coh901318_filter_args args = {
  1660. .base = ofdma->of_dma_data,
  1661. .ch_nr = dma_spec->args[0],
  1662. };
  1663. dma_cap_mask_t cap;
  1664. dma_cap_zero(cap);
  1665. dma_cap_set(DMA_SLAVE, cap);
  1666. return dma_request_channel(cap, coh901318_filter_base_and_id, &args);
  1667. }
  1668. /*
  1669. * DMA channel allocation
  1670. */
  1671. static int coh901318_config(struct coh901318_chan *cohc,
  1672. struct coh901318_params *param)
  1673. {
  1674. unsigned long flags;
  1675. const struct coh901318_params *p;
  1676. int channel = cohc->id;
  1677. void __iomem *virtbase = cohc->base->virtbase;
  1678. spin_lock_irqsave(&cohc->lock, flags);
  1679. if (param)
  1680. p = param;
  1681. else
  1682. p = cohc_chan_param(cohc);
  1683. /* Clear any pending BE or TC interrupt */
  1684. if (channel < 32) {
  1685. writel(1 << channel, virtbase + COH901318_BE_INT_CLEAR1);
  1686. writel(1 << channel, virtbase + COH901318_TC_INT_CLEAR1);
  1687. } else {
  1688. writel(1 << (channel - 32), virtbase +
  1689. COH901318_BE_INT_CLEAR2);
  1690. writel(1 << (channel - 32), virtbase +
  1691. COH901318_TC_INT_CLEAR2);
  1692. }
  1693. coh901318_set_conf(cohc, p->config);
  1694. coh901318_set_ctrl(cohc, p->ctrl_lli_last);
  1695. spin_unlock_irqrestore(&cohc->lock, flags);
  1696. return 0;
  1697. }
  1698. /* must lock when calling this function
  1699. * start queued jobs, if any
  1700. * TODO: start all queued jobs in one go
  1701. *
  1702. * Returns descriptor if queued job is started otherwise NULL.
  1703. * If the queue is empty NULL is returned.
  1704. */
  1705. static struct coh901318_desc *coh901318_queue_start(struct coh901318_chan *cohc)
  1706. {
  1707. struct coh901318_desc *cohd;
  1708. /*
  1709. * start queued jobs, if any
  1710. * TODO: transmit all queued jobs in one go
  1711. */
  1712. cohd = coh901318_first_queued(cohc);
  1713. if (cohd != NULL) {
  1714. /* Remove from queue */
  1715. coh901318_desc_remove(cohd);
  1716. /* initiate DMA job */
  1717. cohc->busy = 1;
  1718. coh901318_desc_submit(cohc, cohd);
  1719. /* Program the transaction head */
  1720. coh901318_set_conf(cohc, cohd->head_config);
  1721. coh901318_set_ctrl(cohc, cohd->head_ctrl);
  1722. coh901318_prep_linked_list(cohc, cohd->lli);
  1723. /* start dma job on this channel */
  1724. coh901318_start(cohc);
  1725. }
  1726. return cohd;
  1727. }
  1728. /*
  1729. * This tasklet is called from the interrupt handler to
  1730. * handle each descriptor (DMA job) that is sent to a channel.
  1731. */
  1732. static void dma_tasklet(unsigned long data)
  1733. {
  1734. struct coh901318_chan *cohc = (struct coh901318_chan *) data;
  1735. struct coh901318_desc *cohd_fin;
  1736. unsigned long flags;
  1737. dma_async_tx_callback callback;
  1738. void *callback_param;
  1739. dev_vdbg(COHC_2_DEV(cohc), "[%s] chan_id %d"
  1740. " nbr_active_done %ld\n", __func__,
  1741. cohc->id, cohc->nbr_active_done);
  1742. spin_lock_irqsave(&cohc->lock, flags);
  1743. /* get first active descriptor entry from list */
  1744. cohd_fin = coh901318_first_active_get(cohc);
  1745. if (cohd_fin == NULL)
  1746. goto err;
  1747. /* locate callback to client */
  1748. callback = cohd_fin->desc.callback;
  1749. callback_param = cohd_fin->desc.callback_param;
  1750. /* sign this job as completed on the channel */
  1751. dma_cookie_complete(&cohd_fin->desc);
  1752. /* release the lli allocation and remove the descriptor */
  1753. coh901318_lli_free(&cohc->base->pool, &cohd_fin->lli);
  1754. /* return desc to free-list */
  1755. coh901318_desc_remove(cohd_fin);
  1756. coh901318_desc_free(cohc, cohd_fin);
  1757. spin_unlock_irqrestore(&cohc->lock, flags);
  1758. /* Call the callback when we're done */
  1759. if (callback)
  1760. callback(callback_param);
  1761. spin_lock_irqsave(&cohc->lock, flags);
  1762. /*
  1763. * If another interrupt fired while the tasklet was scheduling,
  1764. * we don't get called twice, so we have this number of active
  1765. * counter that keep track of the number of IRQs expected to
  1766. * be handled for this channel. If there happen to be more than
  1767. * one IRQ to be ack:ed, we simply schedule this tasklet again.
  1768. */
  1769. cohc->nbr_active_done--;
  1770. if (cohc->nbr_active_done) {
  1771. dev_dbg(COHC_2_DEV(cohc), "scheduling tasklet again, new IRQs "
  1772. "came in while we were scheduling this tasklet\n");
  1773. if (cohc_chan_conf(cohc)->priority_high)
  1774. tasklet_hi_schedule(&cohc->tasklet);
  1775. else
  1776. tasklet_schedule(&cohc->tasklet);
  1777. }
  1778. spin_unlock_irqrestore(&cohc->lock, flags);
  1779. return;
  1780. err:
  1781. spin_unlock_irqrestore(&cohc->lock, flags);
  1782. dev_err(COHC_2_DEV(cohc), "[%s] No active dma desc\n", __func__);
  1783. }
  1784. /* called from interrupt context */
  1785. static void dma_tc_handle(struct coh901318_chan *cohc)
  1786. {
  1787. /*
  1788. * If the channel is not allocated, then we shouldn't have
  1789. * any TC interrupts on it.
  1790. */
  1791. if (!cohc->allocated) {
  1792. dev_err(COHC_2_DEV(cohc), "spurious interrupt from "
  1793. "unallocated channel\n");
  1794. return;
  1795. }
  1796. spin_lock(&cohc->lock);
  1797. /*
  1798. * When we reach this point, at least one queue item
  1799. * should have been moved over from cohc->queue to
  1800. * cohc->active and run to completion, that is why we're
  1801. * getting a terminal count interrupt is it not?
  1802. * If you get this BUG() the most probable cause is that
  1803. * the individual nodes in the lli chain have IRQ enabled,
  1804. * so check your platform config for lli chain ctrl.
  1805. */
  1806. BUG_ON(list_empty(&cohc->active));
  1807. cohc->nbr_active_done++;
  1808. /*
  1809. * This attempt to take a job from cohc->queue, put it
  1810. * into cohc->active and start it.
  1811. */
  1812. if (coh901318_queue_start(cohc) == NULL)
  1813. cohc->busy = 0;
  1814. spin_unlock(&cohc->lock);
  1815. /*
  1816. * This tasklet will remove items from cohc->active
  1817. * and thus terminates them.
  1818. */
  1819. if (cohc_chan_conf(cohc)->priority_high)
  1820. tasklet_hi_schedule(&cohc->tasklet);
  1821. else
  1822. tasklet_schedule(&cohc->tasklet);
  1823. }
  1824. static irqreturn_t dma_irq_handler(int irq, void *dev_id)
  1825. {
  1826. u32 status1;
  1827. u32 status2;
  1828. int i;
  1829. int ch;
  1830. struct coh901318_base *base = dev_id;
  1831. struct coh901318_chan *cohc;
  1832. void __iomem *virtbase = base->virtbase;
  1833. status1 = readl(virtbase + COH901318_INT_STATUS1);
  1834. status2 = readl(virtbase + COH901318_INT_STATUS2);
  1835. if (unlikely(status1 == 0 && status2 == 0)) {
  1836. dev_warn(base->dev, "spurious DMA IRQ from no channel!\n");
  1837. return IRQ_HANDLED;
  1838. }
  1839. /* TODO: consider handle IRQ in tasklet here to
  1840. * minimize interrupt latency */
  1841. /* Check the first 32 DMA channels for IRQ */
  1842. while (status1) {
  1843. /* Find first bit set, return as a number. */
  1844. i = ffs(status1) - 1;
  1845. ch = i;
  1846. cohc = &base->chans[ch];
  1847. spin_lock(&cohc->lock);
  1848. /* Mask off this bit */
  1849. status1 &= ~(1 << i);
  1850. /* Check the individual channel bits */
  1851. if (test_bit(i, virtbase + COH901318_BE_INT_STATUS1)) {
  1852. dev_crit(COHC_2_DEV(cohc),
  1853. "DMA bus error on channel %d!\n", ch);
  1854. BUG_ON(1);
  1855. /* Clear BE interrupt */
  1856. __set_bit(i, virtbase + COH901318_BE_INT_CLEAR1);
  1857. } else {
  1858. /* Caused by TC, really? */
  1859. if (unlikely(!test_bit(i, virtbase +
  1860. COH901318_TC_INT_STATUS1))) {
  1861. dev_warn(COHC_2_DEV(cohc),
  1862. "ignoring interrupt not caused by terminal count on channel %d\n", ch);
  1863. /* Clear TC interrupt */
  1864. BUG_ON(1);
  1865. __set_bit(i, virtbase + COH901318_TC_INT_CLEAR1);
  1866. } else {
  1867. /* Enable powersave if transfer has finished */
  1868. if (!(readl(virtbase + COH901318_CX_STAT +
  1869. COH901318_CX_STAT_SPACING*ch) &
  1870. COH901318_CX_STAT_ENABLED)) {
  1871. enable_powersave(cohc);
  1872. }
  1873. /* Must clear TC interrupt before calling
  1874. * dma_tc_handle
  1875. * in case tc_handle initiate a new dma job
  1876. */
  1877. __set_bit(i, virtbase + COH901318_TC_INT_CLEAR1);
  1878. dma_tc_handle(cohc);
  1879. }
  1880. }
  1881. spin_unlock(&cohc->lock);
  1882. }
  1883. /* Check the remaining 32 DMA channels for IRQ */
  1884. while (status2) {
  1885. /* Find first bit set, return as a number. */
  1886. i = ffs(status2) - 1;
  1887. ch = i + 32;
  1888. cohc = &base->chans[ch];
  1889. spin_lock(&cohc->lock);
  1890. /* Mask off this bit */
  1891. status2 &= ~(1 << i);
  1892. /* Check the individual channel bits */
  1893. if (test_bit(i, virtbase + COH901318_BE_INT_STATUS2)) {
  1894. dev_crit(COHC_2_DEV(cohc),
  1895. "DMA bus error on channel %d!\n", ch);
  1896. /* Clear BE interrupt */
  1897. BUG_ON(1);
  1898. __set_bit(i, virtbase + COH901318_BE_INT_CLEAR2);
  1899. } else {
  1900. /* Caused by TC, really? */
  1901. if (unlikely(!test_bit(i, virtbase +
  1902. COH901318_TC_INT_STATUS2))) {
  1903. dev_warn(COHC_2_DEV(cohc),
  1904. "ignoring interrupt not caused by terminal count on channel %d\n", ch);
  1905. /* Clear TC interrupt */
  1906. __set_bit(i, virtbase + COH901318_TC_INT_CLEAR2);
  1907. BUG_ON(1);
  1908. } else {
  1909. /* Enable powersave if transfer has finished */
  1910. if (!(readl(virtbase + COH901318_CX_STAT +
  1911. COH901318_CX_STAT_SPACING*ch) &
  1912. COH901318_CX_STAT_ENABLED)) {
  1913. enable_powersave(cohc);
  1914. }
  1915. /* Must clear TC interrupt before calling
  1916. * dma_tc_handle
  1917. * in case tc_handle initiate a new dma job
  1918. */
  1919. __set_bit(i, virtbase + COH901318_TC_INT_CLEAR2);
  1920. dma_tc_handle(cohc);
  1921. }
  1922. }
  1923. spin_unlock(&cohc->lock);
  1924. }
  1925. return IRQ_HANDLED;
  1926. }
  1927. static int coh901318_terminate_all(struct dma_chan *chan)
  1928. {
  1929. unsigned long flags;
  1930. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1931. struct coh901318_desc *cohd;
  1932. void __iomem *virtbase = cohc->base->virtbase;
  1933. /* The remainder of this function terminates the transfer */
  1934. coh901318_pause(chan);
  1935. spin_lock_irqsave(&cohc->lock, flags);
  1936. /* Clear any pending BE or TC interrupt */
  1937. if (cohc->id < 32) {
  1938. writel(1 << cohc->id, virtbase + COH901318_BE_INT_CLEAR1);
  1939. writel(1 << cohc->id, virtbase + COH901318_TC_INT_CLEAR1);
  1940. } else {
  1941. writel(1 << (cohc->id - 32), virtbase +
  1942. COH901318_BE_INT_CLEAR2);
  1943. writel(1 << (cohc->id - 32), virtbase +
  1944. COH901318_TC_INT_CLEAR2);
  1945. }
  1946. enable_powersave(cohc);
  1947. while ((cohd = coh901318_first_active_get(cohc))) {
  1948. /* release the lli allocation*/
  1949. coh901318_lli_free(&cohc->base->pool, &cohd->lli);
  1950. /* return desc to free-list */
  1951. coh901318_desc_remove(cohd);
  1952. coh901318_desc_free(cohc, cohd);
  1953. }
  1954. while ((cohd = coh901318_first_queued(cohc))) {
  1955. /* release the lli allocation*/
  1956. coh901318_lli_free(&cohc->base->pool, &cohd->lli);
  1957. /* return desc to free-list */
  1958. coh901318_desc_remove(cohd);
  1959. coh901318_desc_free(cohc, cohd);
  1960. }
  1961. cohc->nbr_active_done = 0;
  1962. cohc->busy = 0;
  1963. spin_unlock_irqrestore(&cohc->lock, flags);
  1964. return 0;
  1965. }
  1966. static int coh901318_alloc_chan_resources(struct dma_chan *chan)
  1967. {
  1968. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1969. unsigned long flags;
  1970. dev_vdbg(COHC_2_DEV(cohc), "[%s] DMA channel %d\n",
  1971. __func__, cohc->id);
  1972. if (chan->client_count > 1)
  1973. return -EBUSY;
  1974. spin_lock_irqsave(&cohc->lock, flags);
  1975. coh901318_config(cohc, NULL);
  1976. cohc->allocated = 1;
  1977. dma_cookie_init(chan);
  1978. spin_unlock_irqrestore(&cohc->lock, flags);
  1979. return 1;
  1980. }
  1981. static void
  1982. coh901318_free_chan_resources(struct dma_chan *chan)
  1983. {
  1984. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1985. int channel = cohc->id;
  1986. unsigned long flags;
  1987. spin_lock_irqsave(&cohc->lock, flags);
  1988. /* Disable HW */
  1989. writel(0x00000000U, cohc->base->virtbase + COH901318_CX_CFG +
  1990. COH901318_CX_CFG_SPACING*channel);
  1991. writel(0x00000000U, cohc->base->virtbase + COH901318_CX_CTRL +
  1992. COH901318_CX_CTRL_SPACING*channel);
  1993. cohc->allocated = 0;
  1994. spin_unlock_irqrestore(&cohc->lock, flags);
  1995. coh901318_terminate_all(chan);
  1996. }
  1997. static dma_cookie_t
  1998. coh901318_tx_submit(struct dma_async_tx_descriptor *tx)
  1999. {
  2000. struct coh901318_desc *cohd = container_of(tx, struct coh901318_desc,
  2001. desc);
  2002. struct coh901318_chan *cohc = to_coh901318_chan(tx->chan);
  2003. unsigned long flags;
  2004. dma_cookie_t cookie;
  2005. spin_lock_irqsave(&cohc->lock, flags);
  2006. cookie = dma_cookie_assign(tx);
  2007. coh901318_desc_queue(cohc, cohd);
  2008. spin_unlock_irqrestore(&cohc->lock, flags);
  2009. return cookie;
  2010. }
  2011. static struct dma_async_tx_descriptor *
  2012. coh901318_prep_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
  2013. size_t size, unsigned long flags)
  2014. {
  2015. struct coh901318_lli *lli;
  2016. struct coh901318_desc *cohd;
  2017. unsigned long flg;
  2018. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2019. int lli_len;
  2020. u32 ctrl_last = cohc_chan_param(cohc)->ctrl_lli_last;
  2021. int ret;
  2022. spin_lock_irqsave(&cohc->lock, flg);
  2023. dev_vdbg(COHC_2_DEV(cohc),
  2024. "[%s] channel %d src 0x%x dest 0x%x size %d\n",
  2025. __func__, cohc->id, src, dest, size);
  2026. if (flags & DMA_PREP_INTERRUPT)
  2027. /* Trigger interrupt after last lli */
  2028. ctrl_last |= COH901318_CX_CTRL_TC_IRQ_ENABLE;
  2029. lli_len = size >> MAX_DMA_PACKET_SIZE_SHIFT;
  2030. if ((lli_len << MAX_DMA_PACKET_SIZE_SHIFT) < size)
  2031. lli_len++;
  2032. lli = coh901318_lli_alloc(&cohc->base->pool, lli_len);
  2033. if (lli == NULL)
  2034. goto err;
  2035. ret = coh901318_lli_fill_memcpy(
  2036. &cohc->base->pool, lli, src, size, dest,
  2037. cohc_chan_param(cohc)->ctrl_lli_chained,
  2038. ctrl_last);
  2039. if (ret)
  2040. goto err;
  2041. COH_DBG(coh901318_list_print(cohc, lli));
  2042. /* Pick a descriptor to handle this transfer */
  2043. cohd = coh901318_desc_get(cohc);
  2044. cohd->lli = lli;
  2045. cohd->flags = flags;
  2046. cohd->desc.tx_submit = coh901318_tx_submit;
  2047. spin_unlock_irqrestore(&cohc->lock, flg);
  2048. return &cohd->desc;
  2049. err:
  2050. spin_unlock_irqrestore(&cohc->lock, flg);
  2051. return NULL;
  2052. }
  2053. static struct dma_async_tx_descriptor *
  2054. coh901318_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
  2055. unsigned int sg_len, enum dma_transfer_direction direction,
  2056. unsigned long flags, void *context)
  2057. {
  2058. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2059. struct coh901318_lli *lli;
  2060. struct coh901318_desc *cohd;
  2061. const struct coh901318_params *params;
  2062. struct scatterlist *sg;
  2063. int len = 0;
  2064. int size;
  2065. int i;
  2066. u32 ctrl_chained = cohc_chan_param(cohc)->ctrl_lli_chained;
  2067. u32 ctrl = cohc_chan_param(cohc)->ctrl_lli;
  2068. u32 ctrl_last = cohc_chan_param(cohc)->ctrl_lli_last;
  2069. u32 config;
  2070. unsigned long flg;
  2071. int ret;
  2072. if (!sgl)
  2073. goto out;
  2074. if (sg_dma_len(sgl) == 0)
  2075. goto out;
  2076. spin_lock_irqsave(&cohc->lock, flg);
  2077. dev_vdbg(COHC_2_DEV(cohc), "[%s] sg_len %d dir %d\n",
  2078. __func__, sg_len, direction);
  2079. if (flags & DMA_PREP_INTERRUPT)
  2080. /* Trigger interrupt after last lli */
  2081. ctrl_last |= COH901318_CX_CTRL_TC_IRQ_ENABLE;
  2082. params = cohc_chan_param(cohc);
  2083. config = params->config;
  2084. /*
  2085. * Add runtime-specific control on top, make
  2086. * sure the bits you set per peripheral channel are
  2087. * cleared in the default config from the platform.
  2088. */
  2089. ctrl_chained |= cohc->ctrl;
  2090. ctrl_last |= cohc->ctrl;
  2091. ctrl |= cohc->ctrl;
  2092. if (direction == DMA_MEM_TO_DEV) {
  2093. u32 tx_flags = COH901318_CX_CTRL_PRDD_SOURCE |
  2094. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE;
  2095. config |= COH901318_CX_CFG_RM_MEMORY_TO_PRIMARY;
  2096. ctrl_chained |= tx_flags;
  2097. ctrl_last |= tx_flags;
  2098. ctrl |= tx_flags;
  2099. } else if (direction == DMA_DEV_TO_MEM) {
  2100. u32 rx_flags = COH901318_CX_CTRL_PRDD_DEST |
  2101. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE;
  2102. config |= COH901318_CX_CFG_RM_PRIMARY_TO_MEMORY;
  2103. ctrl_chained |= rx_flags;
  2104. ctrl_last |= rx_flags;
  2105. ctrl |= rx_flags;
  2106. } else
  2107. goto err_direction;
  2108. /* The dma only supports transmitting packages up to
  2109. * MAX_DMA_PACKET_SIZE. Calculate to total number of
  2110. * dma elemts required to send the entire sg list
  2111. */
  2112. for_each_sg(sgl, sg, sg_len, i) {
  2113. unsigned int factor;
  2114. size = sg_dma_len(sg);
  2115. if (size <= MAX_DMA_PACKET_SIZE) {
  2116. len++;
  2117. continue;
  2118. }
  2119. factor = size >> MAX_DMA_PACKET_SIZE_SHIFT;
  2120. if ((factor << MAX_DMA_PACKET_SIZE_SHIFT) < size)
  2121. factor++;
  2122. len += factor;
  2123. }
  2124. pr_debug("Allocate %d lli:s for this transfer\n", len);
  2125. lli = coh901318_lli_alloc(&cohc->base->pool, len);
  2126. if (lli == NULL)
  2127. goto err_dma_alloc;
  2128. /* initiate allocated lli list */
  2129. ret = coh901318_lli_fill_sg(&cohc->base->pool, lli, sgl, sg_len,
  2130. cohc->addr,
  2131. ctrl_chained,
  2132. ctrl,
  2133. ctrl_last,
  2134. direction, COH901318_CX_CTRL_TC_IRQ_ENABLE);
  2135. if (ret)
  2136. goto err_lli_fill;
  2137. COH_DBG(coh901318_list_print(cohc, lli));
  2138. /* Pick a descriptor to handle this transfer */
  2139. cohd = coh901318_desc_get(cohc);
  2140. cohd->head_config = config;
  2141. /*
  2142. * Set the default head ctrl for the channel to the one from the
  2143. * lli, things may have changed due to odd buffer alignment
  2144. * etc.
  2145. */
  2146. cohd->head_ctrl = lli->control;
  2147. cohd->dir = direction;
  2148. cohd->flags = flags;
  2149. cohd->desc.tx_submit = coh901318_tx_submit;
  2150. cohd->lli = lli;
  2151. spin_unlock_irqrestore(&cohc->lock, flg);
  2152. return &cohd->desc;
  2153. err_lli_fill:
  2154. err_dma_alloc:
  2155. err_direction:
  2156. spin_unlock_irqrestore(&cohc->lock, flg);
  2157. out:
  2158. return NULL;
  2159. }
  2160. static enum dma_status
  2161. coh901318_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
  2162. struct dma_tx_state *txstate)
  2163. {
  2164. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2165. enum dma_status ret;
  2166. ret = dma_cookie_status(chan, cookie, txstate);
  2167. if (ret == DMA_COMPLETE)
  2168. return ret;
  2169. dma_set_residue(txstate, coh901318_get_bytes_left(chan));
  2170. if (ret == DMA_IN_PROGRESS && cohc->stopped)
  2171. ret = DMA_PAUSED;
  2172. return ret;
  2173. }
  2174. static void
  2175. coh901318_issue_pending(struct dma_chan *chan)
  2176. {
  2177. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2178. unsigned long flags;
  2179. spin_lock_irqsave(&cohc->lock, flags);
  2180. /*
  2181. * Busy means that pending jobs are already being processed,
  2182. * and then there is no point in starting the queue: the
  2183. * terminal count interrupt on the channel will take the next
  2184. * job on the queue and execute it anyway.
  2185. */
  2186. if (!cohc->busy)
  2187. coh901318_queue_start(cohc);
  2188. spin_unlock_irqrestore(&cohc->lock, flags);
  2189. }
  2190. /*
  2191. * Here we wrap in the runtime dma control interface
  2192. */
  2193. struct burst_table {
  2194. int burst_8bit;
  2195. int burst_16bit;
  2196. int burst_32bit;
  2197. u32 reg;
  2198. };
  2199. static const struct burst_table burst_sizes[] = {
  2200. {
  2201. .burst_8bit = 64,
  2202. .burst_16bit = 32,
  2203. .burst_32bit = 16,
  2204. .reg = COH901318_CX_CTRL_BURST_COUNT_64_BYTES,
  2205. },
  2206. {
  2207. .burst_8bit = 48,
  2208. .burst_16bit = 24,
  2209. .burst_32bit = 12,
  2210. .reg = COH901318_CX_CTRL_BURST_COUNT_48_BYTES,
  2211. },
  2212. {
  2213. .burst_8bit = 32,
  2214. .burst_16bit = 16,
  2215. .burst_32bit = 8,
  2216. .reg = COH901318_CX_CTRL_BURST_COUNT_32_BYTES,
  2217. },
  2218. {
  2219. .burst_8bit = 16,
  2220. .burst_16bit = 8,
  2221. .burst_32bit = 4,
  2222. .reg = COH901318_CX_CTRL_BURST_COUNT_16_BYTES,
  2223. },
  2224. {
  2225. .burst_8bit = 8,
  2226. .burst_16bit = 4,
  2227. .burst_32bit = 2,
  2228. .reg = COH901318_CX_CTRL_BURST_COUNT_8_BYTES,
  2229. },
  2230. {
  2231. .burst_8bit = 4,
  2232. .burst_16bit = 2,
  2233. .burst_32bit = 1,
  2234. .reg = COH901318_CX_CTRL_BURST_COUNT_4_BYTES,
  2235. },
  2236. {
  2237. .burst_8bit = 2,
  2238. .burst_16bit = 1,
  2239. .burst_32bit = 0,
  2240. .reg = COH901318_CX_CTRL_BURST_COUNT_2_BYTES,
  2241. },
  2242. {
  2243. .burst_8bit = 1,
  2244. .burst_16bit = 0,
  2245. .burst_32bit = 0,
  2246. .reg = COH901318_CX_CTRL_BURST_COUNT_1_BYTE,
  2247. },
  2248. };
  2249. static int coh901318_dma_set_runtimeconfig(struct dma_chan *chan,
  2250. struct dma_slave_config *config)
  2251. {
  2252. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2253. dma_addr_t addr;
  2254. enum dma_slave_buswidth addr_width;
  2255. u32 maxburst;
  2256. u32 ctrl = 0;
  2257. int i = 0;
  2258. /* We only support mem to per or per to mem transfers */
  2259. if (config->direction == DMA_DEV_TO_MEM) {
  2260. addr = config->src_addr;
  2261. addr_width = config->src_addr_width;
  2262. maxburst = config->src_maxburst;
  2263. } else if (config->direction == DMA_MEM_TO_DEV) {
  2264. addr = config->dst_addr;
  2265. addr_width = config->dst_addr_width;
  2266. maxburst = config->dst_maxburst;
  2267. } else {
  2268. dev_err(COHC_2_DEV(cohc), "illegal channel mode\n");
  2269. return -EINVAL;
  2270. }
  2271. dev_dbg(COHC_2_DEV(cohc), "configure channel for %d byte transfers\n",
  2272. addr_width);
  2273. switch (addr_width) {
  2274. case DMA_SLAVE_BUSWIDTH_1_BYTE:
  2275. ctrl |=
  2276. COH901318_CX_CTRL_SRC_BUS_SIZE_8_BITS |
  2277. COH901318_CX_CTRL_DST_BUS_SIZE_8_BITS;
  2278. while (i < ARRAY_SIZE(burst_sizes)) {
  2279. if (burst_sizes[i].burst_8bit <= maxburst)
  2280. break;
  2281. i++;
  2282. }
  2283. break;
  2284. case DMA_SLAVE_BUSWIDTH_2_BYTES:
  2285. ctrl |=
  2286. COH901318_CX_CTRL_SRC_BUS_SIZE_16_BITS |
  2287. COH901318_CX_CTRL_DST_BUS_SIZE_16_BITS;
  2288. while (i < ARRAY_SIZE(burst_sizes)) {
  2289. if (burst_sizes[i].burst_16bit <= maxburst)
  2290. break;
  2291. i++;
  2292. }
  2293. break;
  2294. case DMA_SLAVE_BUSWIDTH_4_BYTES:
  2295. /* Direction doesn't matter here, it's 32/32 bits */
  2296. ctrl |=
  2297. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  2298. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS;
  2299. while (i < ARRAY_SIZE(burst_sizes)) {
  2300. if (burst_sizes[i].burst_32bit <= maxburst)
  2301. break;
  2302. i++;
  2303. }
  2304. break;
  2305. default:
  2306. dev_err(COHC_2_DEV(cohc),
  2307. "bad runtimeconfig: alien address width\n");
  2308. return -EINVAL;
  2309. }
  2310. ctrl |= burst_sizes[i].reg;
  2311. dev_dbg(COHC_2_DEV(cohc),
  2312. "selected burst size %d bytes for address width %d bytes, maxburst %d\n",
  2313. burst_sizes[i].burst_8bit, addr_width, maxburst);
  2314. cohc->addr = addr;
  2315. cohc->ctrl = ctrl;
  2316. return 0;
  2317. }
  2318. static void coh901318_base_init(struct dma_device *dma, const int *pick_chans,
  2319. struct coh901318_base *base)
  2320. {
  2321. int chans_i;
  2322. int i = 0;
  2323. struct coh901318_chan *cohc;
  2324. INIT_LIST_HEAD(&dma->channels);
  2325. for (chans_i = 0; pick_chans[chans_i] != -1; chans_i += 2) {
  2326. for (i = pick_chans[chans_i]; i <= pick_chans[chans_i+1]; i++) {
  2327. cohc = &base->chans[i];
  2328. cohc->base = base;
  2329. cohc->chan.device = dma;
  2330. cohc->id = i;
  2331. /* TODO: do we really need this lock if only one
  2332. * client is connected to each channel?
  2333. */
  2334. spin_lock_init(&cohc->lock);
  2335. cohc->nbr_active_done = 0;
  2336. cohc->busy = 0;
  2337. INIT_LIST_HEAD(&cohc->free);
  2338. INIT_LIST_HEAD(&cohc->active);
  2339. INIT_LIST_HEAD(&cohc->queue);
  2340. tasklet_init(&cohc->tasklet, dma_tasklet,
  2341. (unsigned long) cohc);
  2342. list_add_tail(&cohc->chan.device_node,
  2343. &dma->channels);
  2344. }
  2345. }
  2346. }
  2347. static int __init coh901318_probe(struct platform_device *pdev)
  2348. {
  2349. int err = 0;
  2350. struct coh901318_base *base;
  2351. int irq;
  2352. struct resource *io;
  2353. io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  2354. if (!io)
  2355. return -ENODEV;
  2356. /* Map DMA controller registers to virtual memory */
  2357. if (devm_request_mem_region(&pdev->dev,
  2358. io->start,
  2359. resource_size(io),
  2360. pdev->dev.driver->name) == NULL)
  2361. return -ENOMEM;
  2362. base = devm_kzalloc(&pdev->dev,
  2363. ALIGN(sizeof(struct coh901318_base), 4) +
  2364. U300_DMA_CHANNELS *
  2365. sizeof(struct coh901318_chan),
  2366. GFP_KERNEL);
  2367. if (!base)
  2368. return -ENOMEM;
  2369. base->chans = ((void *)base) + ALIGN(sizeof(struct coh901318_base), 4);
  2370. base->virtbase = devm_ioremap(&pdev->dev, io->start, resource_size(io));
  2371. if (!base->virtbase)
  2372. return -ENOMEM;
  2373. base->dev = &pdev->dev;
  2374. spin_lock_init(&base->pm.lock);
  2375. base->pm.started_channels = 0;
  2376. COH901318_DEBUGFS_ASSIGN(debugfs_dma_base, base);
  2377. irq = platform_get_irq(pdev, 0);
  2378. if (irq < 0)
  2379. return irq;
  2380. err = devm_request_irq(&pdev->dev, irq, dma_irq_handler, 0,
  2381. "coh901318", base);
  2382. if (err)
  2383. return err;
  2384. err = coh901318_pool_create(&base->pool, &pdev->dev,
  2385. sizeof(struct coh901318_lli),
  2386. 32);
  2387. if (err)
  2388. return err;
  2389. /* init channels for device transfers */
  2390. coh901318_base_init(&base->dma_slave, dma_slave_channels,
  2391. base);
  2392. dma_cap_zero(base->dma_slave.cap_mask);
  2393. dma_cap_set(DMA_SLAVE, base->dma_slave.cap_mask);
  2394. base->dma_slave.device_alloc_chan_resources = coh901318_alloc_chan_resources;
  2395. base->dma_slave.device_free_chan_resources = coh901318_free_chan_resources;
  2396. base->dma_slave.device_prep_slave_sg = coh901318_prep_slave_sg;
  2397. base->dma_slave.device_tx_status = coh901318_tx_status;
  2398. base->dma_slave.device_issue_pending = coh901318_issue_pending;
  2399. base->dma_slave.device_config = coh901318_dma_set_runtimeconfig;
  2400. base->dma_slave.device_pause = coh901318_pause;
  2401. base->dma_slave.device_resume = coh901318_resume;
  2402. base->dma_slave.device_terminate_all = coh901318_terminate_all;
  2403. base->dma_slave.dev = &pdev->dev;
  2404. err = dma_async_device_register(&base->dma_slave);
  2405. if (err)
  2406. goto err_register_slave;
  2407. /* init channels for memcpy */
  2408. coh901318_base_init(&base->dma_memcpy, dma_memcpy_channels,
  2409. base);
  2410. dma_cap_zero(base->dma_memcpy.cap_mask);
  2411. dma_cap_set(DMA_MEMCPY, base->dma_memcpy.cap_mask);
  2412. base->dma_memcpy.device_alloc_chan_resources = coh901318_alloc_chan_resources;
  2413. base->dma_memcpy.device_free_chan_resources = coh901318_free_chan_resources;
  2414. base->dma_memcpy.device_prep_dma_memcpy = coh901318_prep_memcpy;
  2415. base->dma_memcpy.device_tx_status = coh901318_tx_status;
  2416. base->dma_memcpy.device_issue_pending = coh901318_issue_pending;
  2417. base->dma_memcpy.device_config = coh901318_dma_set_runtimeconfig;
  2418. base->dma_memcpy.device_pause = coh901318_pause;
  2419. base->dma_memcpy.device_resume = coh901318_resume;
  2420. base->dma_memcpy.device_terminate_all = coh901318_terminate_all;
  2421. base->dma_memcpy.dev = &pdev->dev;
  2422. /*
  2423. * This controller can only access address at even 32bit boundaries,
  2424. * i.e. 2^2
  2425. */
  2426. base->dma_memcpy.copy_align = 2;
  2427. err = dma_async_device_register(&base->dma_memcpy);
  2428. if (err)
  2429. goto err_register_memcpy;
  2430. err = of_dma_controller_register(pdev->dev.of_node, coh901318_xlate,
  2431. base);
  2432. if (err)
  2433. goto err_register_of_dma;
  2434. platform_set_drvdata(pdev, base);
  2435. dev_info(&pdev->dev, "Initialized COH901318 DMA on virtual base 0x%08x\n",
  2436. (u32) base->virtbase);
  2437. return err;
  2438. err_register_of_dma:
  2439. dma_async_device_unregister(&base->dma_memcpy);
  2440. err_register_memcpy:
  2441. dma_async_device_unregister(&base->dma_slave);
  2442. err_register_slave:
  2443. coh901318_pool_destroy(&base->pool);
  2444. return err;
  2445. }
  2446. static int coh901318_remove(struct platform_device *pdev)
  2447. {
  2448. struct coh901318_base *base = platform_get_drvdata(pdev);
  2449. of_dma_controller_free(pdev->dev.of_node);
  2450. dma_async_device_unregister(&base->dma_memcpy);
  2451. dma_async_device_unregister(&base->dma_slave);
  2452. coh901318_pool_destroy(&base->pool);
  2453. return 0;
  2454. }
  2455. static const struct of_device_id coh901318_dt_match[] = {
  2456. { .compatible = "stericsson,coh901318" },
  2457. {},
  2458. };
  2459. static struct platform_driver coh901318_driver = {
  2460. .remove = coh901318_remove,
  2461. .driver = {
  2462. .name = "coh901318",
  2463. .of_match_table = coh901318_dt_match,
  2464. },
  2465. };
  2466. int __init coh901318_init(void)
  2467. {
  2468. return platform_driver_probe(&coh901318_driver, coh901318_probe);
  2469. }
  2470. subsys_initcall(coh901318_init);
  2471. void __exit coh901318_exit(void)
  2472. {
  2473. platform_driver_unregister(&coh901318_driver);
  2474. }
  2475. module_exit(coh901318_exit);
  2476. MODULE_LICENSE("GPL");
  2477. MODULE_AUTHOR("Per Friden");