dw_dmac.c 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620
  1. /*
  2. * Driver for the Synopsys DesignWare DMA Controller (aka DMACA on
  3. * AVR32 systems.)
  4. *
  5. * Copyright (C) 2007-2008 Atmel Corporation
  6. * Copyright (C) 2010-2011 ST Microelectronics
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/bitops.h>
  13. #include <linux/clk.h>
  14. #include <linux/delay.h>
  15. #include <linux/dmaengine.h>
  16. #include <linux/dma-mapping.h>
  17. #include <linux/init.h>
  18. #include <linux/interrupt.h>
  19. #include <linux/io.h>
  20. #include <linux/mm.h>
  21. #include <linux/module.h>
  22. #include <linux/platform_device.h>
  23. #include <linux/slab.h>
  24. #include "dw_dmac_regs.h"
  25. #include "dmaengine.h"
  26. /*
  27. * This supports the Synopsys "DesignWare AHB Central DMA Controller",
  28. * (DW_ahb_dmac) which is used with various AMBA 2.0 systems (not all
  29. * of which use ARM any more). See the "Databook" from Synopsys for
  30. * information beyond what licensees probably provide.
  31. *
  32. * The driver has currently been tested only with the Atmel AT32AP7000,
  33. * which does not support descriptor writeback.
  34. */
  35. #define DWC_DEFAULT_CTLLO(_chan) ({ \
  36. struct dw_dma_slave *__slave = (_chan->private); \
  37. struct dw_dma_chan *_dwc = to_dw_dma_chan(_chan); \
  38. struct dma_slave_config *_sconfig = &_dwc->dma_sconfig; \
  39. int _dms = __slave ? __slave->dst_master : 0; \
  40. int _sms = __slave ? __slave->src_master : 1; \
  41. u8 _smsize = __slave ? _sconfig->src_maxburst : \
  42. DW_DMA_MSIZE_16; \
  43. u8 _dmsize = __slave ? _sconfig->dst_maxburst : \
  44. DW_DMA_MSIZE_16; \
  45. \
  46. (DWC_CTLL_DST_MSIZE(_dmsize) \
  47. | DWC_CTLL_SRC_MSIZE(_smsize) \
  48. | DWC_CTLL_LLP_D_EN \
  49. | DWC_CTLL_LLP_S_EN \
  50. | DWC_CTLL_DMS(_dms) \
  51. | DWC_CTLL_SMS(_sms)); \
  52. })
  53. /*
  54. * This is configuration-dependent and usually a funny size like 4095.
  55. *
  56. * Note that this is a transfer count, i.e. if we transfer 32-bit
  57. * words, we can do 16380 bytes per descriptor.
  58. *
  59. * This parameter is also system-specific.
  60. */
  61. #define DWC_MAX_COUNT 4095U
  62. /*
  63. * Number of descriptors to allocate for each channel. This should be
  64. * made configurable somehow; preferably, the clients (at least the
  65. * ones using slave transfers) should be able to give us a hint.
  66. */
  67. #define NR_DESCS_PER_CHANNEL 64
  68. /*----------------------------------------------------------------------*/
  69. /*
  70. * Because we're not relying on writeback from the controller (it may not
  71. * even be configured into the core!) we don't need to use dma_pool. These
  72. * descriptors -- and associated data -- are cacheable. We do need to make
  73. * sure their dcache entries are written back before handing them off to
  74. * the controller, though.
  75. */
  76. static struct device *chan2dev(struct dma_chan *chan)
  77. {
  78. return &chan->dev->device;
  79. }
  80. static struct device *chan2parent(struct dma_chan *chan)
  81. {
  82. return chan->dev->device.parent;
  83. }
  84. static struct dw_desc *dwc_first_active(struct dw_dma_chan *dwc)
  85. {
  86. return list_entry(dwc->active_list.next, struct dw_desc, desc_node);
  87. }
  88. static struct dw_desc *dwc_desc_get(struct dw_dma_chan *dwc)
  89. {
  90. struct dw_desc *desc, *_desc;
  91. struct dw_desc *ret = NULL;
  92. unsigned int i = 0;
  93. unsigned long flags;
  94. spin_lock_irqsave(&dwc->lock, flags);
  95. list_for_each_entry_safe(desc, _desc, &dwc->free_list, desc_node) {
  96. if (async_tx_test_ack(&desc->txd)) {
  97. list_del(&desc->desc_node);
  98. ret = desc;
  99. break;
  100. }
  101. dev_dbg(chan2dev(&dwc->chan), "desc %p not ACKed\n", desc);
  102. i++;
  103. }
  104. spin_unlock_irqrestore(&dwc->lock, flags);
  105. dev_vdbg(chan2dev(&dwc->chan), "scanned %u descriptors on freelist\n", i);
  106. return ret;
  107. }
  108. static void dwc_sync_desc_for_cpu(struct dw_dma_chan *dwc, struct dw_desc *desc)
  109. {
  110. struct dw_desc *child;
  111. list_for_each_entry(child, &desc->tx_list, desc_node)
  112. dma_sync_single_for_cpu(chan2parent(&dwc->chan),
  113. child->txd.phys, sizeof(child->lli),
  114. DMA_TO_DEVICE);
  115. dma_sync_single_for_cpu(chan2parent(&dwc->chan),
  116. desc->txd.phys, sizeof(desc->lli),
  117. DMA_TO_DEVICE);
  118. }
  119. /*
  120. * Move a descriptor, including any children, to the free list.
  121. * `desc' must not be on any lists.
  122. */
  123. static void dwc_desc_put(struct dw_dma_chan *dwc, struct dw_desc *desc)
  124. {
  125. unsigned long flags;
  126. if (desc) {
  127. struct dw_desc *child;
  128. dwc_sync_desc_for_cpu(dwc, desc);
  129. spin_lock_irqsave(&dwc->lock, flags);
  130. list_for_each_entry(child, &desc->tx_list, desc_node)
  131. dev_vdbg(chan2dev(&dwc->chan),
  132. "moving child desc %p to freelist\n",
  133. child);
  134. list_splice_init(&desc->tx_list, &dwc->free_list);
  135. dev_vdbg(chan2dev(&dwc->chan), "moving desc %p to freelist\n", desc);
  136. list_add(&desc->desc_node, &dwc->free_list);
  137. spin_unlock_irqrestore(&dwc->lock, flags);
  138. }
  139. }
  140. static void dwc_initialize(struct dw_dma_chan *dwc)
  141. {
  142. struct dw_dma *dw = to_dw_dma(dwc->chan.device);
  143. struct dw_dma_slave *dws = dwc->chan.private;
  144. u32 cfghi = DWC_CFGH_FIFO_MODE;
  145. u32 cfglo = DWC_CFGL_CH_PRIOR(dwc->priority);
  146. if (dwc->initialized == true)
  147. return;
  148. if (dws) {
  149. /*
  150. * We need controller-specific data to set up slave
  151. * transfers.
  152. */
  153. BUG_ON(!dws->dma_dev || dws->dma_dev != dw->dma.dev);
  154. cfghi = dws->cfg_hi;
  155. cfglo |= dws->cfg_lo & ~DWC_CFGL_CH_PRIOR_MASK;
  156. }
  157. channel_writel(dwc, CFG_LO, cfglo);
  158. channel_writel(dwc, CFG_HI, cfghi);
  159. /* Enable interrupts */
  160. channel_set_bit(dw, MASK.XFER, dwc->mask);
  161. channel_set_bit(dw, MASK.ERROR, dwc->mask);
  162. dwc->initialized = true;
  163. }
  164. /*----------------------------------------------------------------------*/
  165. /* Called with dwc->lock held and bh disabled */
  166. static void dwc_dostart(struct dw_dma_chan *dwc, struct dw_desc *first)
  167. {
  168. struct dw_dma *dw = to_dw_dma(dwc->chan.device);
  169. /* ASSERT: channel is idle */
  170. if (dma_readl(dw, CH_EN) & dwc->mask) {
  171. dev_err(chan2dev(&dwc->chan),
  172. "BUG: Attempted to start non-idle channel\n");
  173. dev_err(chan2dev(&dwc->chan),
  174. " SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
  175. channel_readl(dwc, SAR),
  176. channel_readl(dwc, DAR),
  177. channel_readl(dwc, LLP),
  178. channel_readl(dwc, CTL_HI),
  179. channel_readl(dwc, CTL_LO));
  180. /* The tasklet will hopefully advance the queue... */
  181. return;
  182. }
  183. dwc_initialize(dwc);
  184. channel_writel(dwc, LLP, first->txd.phys);
  185. channel_writel(dwc, CTL_LO,
  186. DWC_CTLL_LLP_D_EN | DWC_CTLL_LLP_S_EN);
  187. channel_writel(dwc, CTL_HI, 0);
  188. channel_set_bit(dw, CH_EN, dwc->mask);
  189. }
  190. /*----------------------------------------------------------------------*/
  191. static void
  192. dwc_descriptor_complete(struct dw_dma_chan *dwc, struct dw_desc *desc,
  193. bool callback_required)
  194. {
  195. dma_async_tx_callback callback = NULL;
  196. void *param = NULL;
  197. struct dma_async_tx_descriptor *txd = &desc->txd;
  198. struct dw_desc *child;
  199. unsigned long flags;
  200. dev_vdbg(chan2dev(&dwc->chan), "descriptor %u complete\n", txd->cookie);
  201. spin_lock_irqsave(&dwc->lock, flags);
  202. dma_cookie_complete(txd);
  203. if (callback_required) {
  204. callback = txd->callback;
  205. param = txd->callback_param;
  206. }
  207. dwc_sync_desc_for_cpu(dwc, desc);
  208. /* async_tx_ack */
  209. list_for_each_entry(child, &desc->tx_list, desc_node)
  210. async_tx_ack(&child->txd);
  211. async_tx_ack(&desc->txd);
  212. list_splice_init(&desc->tx_list, &dwc->free_list);
  213. list_move(&desc->desc_node, &dwc->free_list);
  214. if (!dwc->chan.private) {
  215. struct device *parent = chan2parent(&dwc->chan);
  216. if (!(txd->flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
  217. if (txd->flags & DMA_COMPL_DEST_UNMAP_SINGLE)
  218. dma_unmap_single(parent, desc->lli.dar,
  219. desc->len, DMA_FROM_DEVICE);
  220. else
  221. dma_unmap_page(parent, desc->lli.dar,
  222. desc->len, DMA_FROM_DEVICE);
  223. }
  224. if (!(txd->flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
  225. if (txd->flags & DMA_COMPL_SRC_UNMAP_SINGLE)
  226. dma_unmap_single(parent, desc->lli.sar,
  227. desc->len, DMA_TO_DEVICE);
  228. else
  229. dma_unmap_page(parent, desc->lli.sar,
  230. desc->len, DMA_TO_DEVICE);
  231. }
  232. }
  233. spin_unlock_irqrestore(&dwc->lock, flags);
  234. if (callback_required && callback)
  235. callback(param);
  236. }
  237. static void dwc_complete_all(struct dw_dma *dw, struct dw_dma_chan *dwc)
  238. {
  239. struct dw_desc *desc, *_desc;
  240. LIST_HEAD(list);
  241. unsigned long flags;
  242. spin_lock_irqsave(&dwc->lock, flags);
  243. if (dma_readl(dw, CH_EN) & dwc->mask) {
  244. dev_err(chan2dev(&dwc->chan),
  245. "BUG: XFER bit set, but channel not idle!\n");
  246. /* Try to continue after resetting the channel... */
  247. channel_clear_bit(dw, CH_EN, dwc->mask);
  248. while (dma_readl(dw, CH_EN) & dwc->mask)
  249. cpu_relax();
  250. }
  251. /*
  252. * Submit queued descriptors ASAP, i.e. before we go through
  253. * the completed ones.
  254. */
  255. list_splice_init(&dwc->active_list, &list);
  256. if (!list_empty(&dwc->queue)) {
  257. list_move(dwc->queue.next, &dwc->active_list);
  258. dwc_dostart(dwc, dwc_first_active(dwc));
  259. }
  260. spin_unlock_irqrestore(&dwc->lock, flags);
  261. list_for_each_entry_safe(desc, _desc, &list, desc_node)
  262. dwc_descriptor_complete(dwc, desc, true);
  263. }
  264. static void dwc_scan_descriptors(struct dw_dma *dw, struct dw_dma_chan *dwc)
  265. {
  266. dma_addr_t llp;
  267. struct dw_desc *desc, *_desc;
  268. struct dw_desc *child;
  269. u32 status_xfer;
  270. unsigned long flags;
  271. spin_lock_irqsave(&dwc->lock, flags);
  272. llp = channel_readl(dwc, LLP);
  273. status_xfer = dma_readl(dw, RAW.XFER);
  274. if (status_xfer & dwc->mask) {
  275. /* Everything we've submitted is done */
  276. dma_writel(dw, CLEAR.XFER, dwc->mask);
  277. spin_unlock_irqrestore(&dwc->lock, flags);
  278. dwc_complete_all(dw, dwc);
  279. return;
  280. }
  281. if (list_empty(&dwc->active_list)) {
  282. spin_unlock_irqrestore(&dwc->lock, flags);
  283. return;
  284. }
  285. dev_vdbg(chan2dev(&dwc->chan), "scan_descriptors: llp=0x%x\n", llp);
  286. list_for_each_entry_safe(desc, _desc, &dwc->active_list, desc_node) {
  287. /* check first descriptors addr */
  288. if (desc->txd.phys == llp) {
  289. spin_unlock_irqrestore(&dwc->lock, flags);
  290. return;
  291. }
  292. /* check first descriptors llp */
  293. if (desc->lli.llp == llp) {
  294. /* This one is currently in progress */
  295. spin_unlock_irqrestore(&dwc->lock, flags);
  296. return;
  297. }
  298. list_for_each_entry(child, &desc->tx_list, desc_node)
  299. if (child->lli.llp == llp) {
  300. /* Currently in progress */
  301. spin_unlock_irqrestore(&dwc->lock, flags);
  302. return;
  303. }
  304. /*
  305. * No descriptors so far seem to be in progress, i.e.
  306. * this one must be done.
  307. */
  308. spin_unlock_irqrestore(&dwc->lock, flags);
  309. dwc_descriptor_complete(dwc, desc, true);
  310. spin_lock_irqsave(&dwc->lock, flags);
  311. }
  312. dev_err(chan2dev(&dwc->chan),
  313. "BUG: All descriptors done, but channel not idle!\n");
  314. /* Try to continue after resetting the channel... */
  315. channel_clear_bit(dw, CH_EN, dwc->mask);
  316. while (dma_readl(dw, CH_EN) & dwc->mask)
  317. cpu_relax();
  318. if (!list_empty(&dwc->queue)) {
  319. list_move(dwc->queue.next, &dwc->active_list);
  320. dwc_dostart(dwc, dwc_first_active(dwc));
  321. }
  322. spin_unlock_irqrestore(&dwc->lock, flags);
  323. }
  324. static void dwc_dump_lli(struct dw_dma_chan *dwc, struct dw_lli *lli)
  325. {
  326. dev_printk(KERN_CRIT, chan2dev(&dwc->chan),
  327. " desc: s0x%x d0x%x l0x%x c0x%x:%x\n",
  328. lli->sar, lli->dar, lli->llp,
  329. lli->ctlhi, lli->ctllo);
  330. }
  331. static void dwc_handle_error(struct dw_dma *dw, struct dw_dma_chan *dwc)
  332. {
  333. struct dw_desc *bad_desc;
  334. struct dw_desc *child;
  335. unsigned long flags;
  336. dwc_scan_descriptors(dw, dwc);
  337. spin_lock_irqsave(&dwc->lock, flags);
  338. /*
  339. * The descriptor currently at the head of the active list is
  340. * borked. Since we don't have any way to report errors, we'll
  341. * just have to scream loudly and try to carry on.
  342. */
  343. bad_desc = dwc_first_active(dwc);
  344. list_del_init(&bad_desc->desc_node);
  345. list_move(dwc->queue.next, dwc->active_list.prev);
  346. /* Clear the error flag and try to restart the controller */
  347. dma_writel(dw, CLEAR.ERROR, dwc->mask);
  348. if (!list_empty(&dwc->active_list))
  349. dwc_dostart(dwc, dwc_first_active(dwc));
  350. /*
  351. * KERN_CRITICAL may seem harsh, but since this only happens
  352. * when someone submits a bad physical address in a
  353. * descriptor, we should consider ourselves lucky that the
  354. * controller flagged an error instead of scribbling over
  355. * random memory locations.
  356. */
  357. dev_printk(KERN_CRIT, chan2dev(&dwc->chan),
  358. "Bad descriptor submitted for DMA!\n");
  359. dev_printk(KERN_CRIT, chan2dev(&dwc->chan),
  360. " cookie: %d\n", bad_desc->txd.cookie);
  361. dwc_dump_lli(dwc, &bad_desc->lli);
  362. list_for_each_entry(child, &bad_desc->tx_list, desc_node)
  363. dwc_dump_lli(dwc, &child->lli);
  364. spin_unlock_irqrestore(&dwc->lock, flags);
  365. /* Pretend the descriptor completed successfully */
  366. dwc_descriptor_complete(dwc, bad_desc, true);
  367. }
  368. /* --------------------- Cyclic DMA API extensions -------------------- */
  369. inline dma_addr_t dw_dma_get_src_addr(struct dma_chan *chan)
  370. {
  371. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  372. return channel_readl(dwc, SAR);
  373. }
  374. EXPORT_SYMBOL(dw_dma_get_src_addr);
  375. inline dma_addr_t dw_dma_get_dst_addr(struct dma_chan *chan)
  376. {
  377. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  378. return channel_readl(dwc, DAR);
  379. }
  380. EXPORT_SYMBOL(dw_dma_get_dst_addr);
  381. /* called with dwc->lock held and all DMAC interrupts disabled */
  382. static void dwc_handle_cyclic(struct dw_dma *dw, struct dw_dma_chan *dwc,
  383. u32 status_err, u32 status_xfer)
  384. {
  385. unsigned long flags;
  386. if (dwc->mask) {
  387. void (*callback)(void *param);
  388. void *callback_param;
  389. dev_vdbg(chan2dev(&dwc->chan), "new cyclic period llp 0x%08x\n",
  390. channel_readl(dwc, LLP));
  391. callback = dwc->cdesc->period_callback;
  392. callback_param = dwc->cdesc->period_callback_param;
  393. if (callback)
  394. callback(callback_param);
  395. }
  396. /*
  397. * Error and transfer complete are highly unlikely, and will most
  398. * likely be due to a configuration error by the user.
  399. */
  400. if (unlikely(status_err & dwc->mask) ||
  401. unlikely(status_xfer & dwc->mask)) {
  402. int i;
  403. dev_err(chan2dev(&dwc->chan), "cyclic DMA unexpected %s "
  404. "interrupt, stopping DMA transfer\n",
  405. status_xfer ? "xfer" : "error");
  406. spin_lock_irqsave(&dwc->lock, flags);
  407. dev_err(chan2dev(&dwc->chan),
  408. " SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
  409. channel_readl(dwc, SAR),
  410. channel_readl(dwc, DAR),
  411. channel_readl(dwc, LLP),
  412. channel_readl(dwc, CTL_HI),
  413. channel_readl(dwc, CTL_LO));
  414. channel_clear_bit(dw, CH_EN, dwc->mask);
  415. while (dma_readl(dw, CH_EN) & dwc->mask)
  416. cpu_relax();
  417. /* make sure DMA does not restart by loading a new list */
  418. channel_writel(dwc, LLP, 0);
  419. channel_writel(dwc, CTL_LO, 0);
  420. channel_writel(dwc, CTL_HI, 0);
  421. dma_writel(dw, CLEAR.ERROR, dwc->mask);
  422. dma_writel(dw, CLEAR.XFER, dwc->mask);
  423. for (i = 0; i < dwc->cdesc->periods; i++)
  424. dwc_dump_lli(dwc, &dwc->cdesc->desc[i]->lli);
  425. spin_unlock_irqrestore(&dwc->lock, flags);
  426. }
  427. }
  428. /* ------------------------------------------------------------------------- */
  429. static void dw_dma_tasklet(unsigned long data)
  430. {
  431. struct dw_dma *dw = (struct dw_dma *)data;
  432. struct dw_dma_chan *dwc;
  433. u32 status_xfer;
  434. u32 status_err;
  435. int i;
  436. status_xfer = dma_readl(dw, RAW.XFER);
  437. status_err = dma_readl(dw, RAW.ERROR);
  438. dev_vdbg(dw->dma.dev, "tasklet: status_err=%x\n", status_err);
  439. for (i = 0; i < dw->dma.chancnt; i++) {
  440. dwc = &dw->chan[i];
  441. if (test_bit(DW_DMA_IS_CYCLIC, &dwc->flags))
  442. dwc_handle_cyclic(dw, dwc, status_err, status_xfer);
  443. else if (status_err & (1 << i))
  444. dwc_handle_error(dw, dwc);
  445. else if (status_xfer & (1 << i))
  446. dwc_scan_descriptors(dw, dwc);
  447. }
  448. /*
  449. * Re-enable interrupts.
  450. */
  451. channel_set_bit(dw, MASK.XFER, dw->all_chan_mask);
  452. channel_set_bit(dw, MASK.ERROR, dw->all_chan_mask);
  453. }
  454. static irqreturn_t dw_dma_interrupt(int irq, void *dev_id)
  455. {
  456. struct dw_dma *dw = dev_id;
  457. u32 status;
  458. dev_vdbg(dw->dma.dev, "interrupt: status=0x%x\n",
  459. dma_readl(dw, STATUS_INT));
  460. /*
  461. * Just disable the interrupts. We'll turn them back on in the
  462. * softirq handler.
  463. */
  464. channel_clear_bit(dw, MASK.XFER, dw->all_chan_mask);
  465. channel_clear_bit(dw, MASK.ERROR, dw->all_chan_mask);
  466. status = dma_readl(dw, STATUS_INT);
  467. if (status) {
  468. dev_err(dw->dma.dev,
  469. "BUG: Unexpected interrupts pending: 0x%x\n",
  470. status);
  471. /* Try to recover */
  472. channel_clear_bit(dw, MASK.XFER, (1 << 8) - 1);
  473. channel_clear_bit(dw, MASK.SRC_TRAN, (1 << 8) - 1);
  474. channel_clear_bit(dw, MASK.DST_TRAN, (1 << 8) - 1);
  475. channel_clear_bit(dw, MASK.ERROR, (1 << 8) - 1);
  476. }
  477. tasklet_schedule(&dw->tasklet);
  478. return IRQ_HANDLED;
  479. }
  480. /*----------------------------------------------------------------------*/
  481. static dma_cookie_t dwc_tx_submit(struct dma_async_tx_descriptor *tx)
  482. {
  483. struct dw_desc *desc = txd_to_dw_desc(tx);
  484. struct dw_dma_chan *dwc = to_dw_dma_chan(tx->chan);
  485. dma_cookie_t cookie;
  486. unsigned long flags;
  487. spin_lock_irqsave(&dwc->lock, flags);
  488. cookie = dma_cookie_assign(tx);
  489. /*
  490. * REVISIT: We should attempt to chain as many descriptors as
  491. * possible, perhaps even appending to those already submitted
  492. * for DMA. But this is hard to do in a race-free manner.
  493. */
  494. if (list_empty(&dwc->active_list)) {
  495. dev_vdbg(chan2dev(tx->chan), "tx_submit: started %u\n",
  496. desc->txd.cookie);
  497. list_add_tail(&desc->desc_node, &dwc->active_list);
  498. dwc_dostart(dwc, dwc_first_active(dwc));
  499. } else {
  500. dev_vdbg(chan2dev(tx->chan), "tx_submit: queued %u\n",
  501. desc->txd.cookie);
  502. list_add_tail(&desc->desc_node, &dwc->queue);
  503. }
  504. spin_unlock_irqrestore(&dwc->lock, flags);
  505. return cookie;
  506. }
  507. static struct dma_async_tx_descriptor *
  508. dwc_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
  509. size_t len, unsigned long flags)
  510. {
  511. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  512. struct dw_desc *desc;
  513. struct dw_desc *first;
  514. struct dw_desc *prev;
  515. size_t xfer_count;
  516. size_t offset;
  517. unsigned int src_width;
  518. unsigned int dst_width;
  519. u32 ctllo;
  520. dev_vdbg(chan2dev(chan), "prep_dma_memcpy d0x%x s0x%x l0x%zx f0x%lx\n",
  521. dest, src, len, flags);
  522. if (unlikely(!len)) {
  523. dev_dbg(chan2dev(chan), "prep_dma_memcpy: length is zero!\n");
  524. return NULL;
  525. }
  526. /*
  527. * We can be a lot more clever here, but this should take care
  528. * of the most common optimization.
  529. */
  530. if (!((src | dest | len) & 7))
  531. src_width = dst_width = 3;
  532. else if (!((src | dest | len) & 3))
  533. src_width = dst_width = 2;
  534. else if (!((src | dest | len) & 1))
  535. src_width = dst_width = 1;
  536. else
  537. src_width = dst_width = 0;
  538. ctllo = DWC_DEFAULT_CTLLO(chan)
  539. | DWC_CTLL_DST_WIDTH(dst_width)
  540. | DWC_CTLL_SRC_WIDTH(src_width)
  541. | DWC_CTLL_DST_INC
  542. | DWC_CTLL_SRC_INC
  543. | DWC_CTLL_FC_M2M;
  544. prev = first = NULL;
  545. for (offset = 0; offset < len; offset += xfer_count << src_width) {
  546. xfer_count = min_t(size_t, (len - offset) >> src_width,
  547. DWC_MAX_COUNT);
  548. desc = dwc_desc_get(dwc);
  549. if (!desc)
  550. goto err_desc_get;
  551. desc->lli.sar = src + offset;
  552. desc->lli.dar = dest + offset;
  553. desc->lli.ctllo = ctllo;
  554. desc->lli.ctlhi = xfer_count;
  555. if (!first) {
  556. first = desc;
  557. } else {
  558. prev->lli.llp = desc->txd.phys;
  559. dma_sync_single_for_device(chan2parent(chan),
  560. prev->txd.phys, sizeof(prev->lli),
  561. DMA_TO_DEVICE);
  562. list_add_tail(&desc->desc_node,
  563. &first->tx_list);
  564. }
  565. prev = desc;
  566. }
  567. if (flags & DMA_PREP_INTERRUPT)
  568. /* Trigger interrupt after last block */
  569. prev->lli.ctllo |= DWC_CTLL_INT_EN;
  570. prev->lli.llp = 0;
  571. dma_sync_single_for_device(chan2parent(chan),
  572. prev->txd.phys, sizeof(prev->lli),
  573. DMA_TO_DEVICE);
  574. first->txd.flags = flags;
  575. first->len = len;
  576. return &first->txd;
  577. err_desc_get:
  578. dwc_desc_put(dwc, first);
  579. return NULL;
  580. }
  581. static struct dma_async_tx_descriptor *
  582. dwc_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
  583. unsigned int sg_len, enum dma_transfer_direction direction,
  584. unsigned long flags, void *context)
  585. {
  586. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  587. struct dw_dma_slave *dws = chan->private;
  588. struct dma_slave_config *sconfig = &dwc->dma_sconfig;
  589. struct dw_desc *prev;
  590. struct dw_desc *first;
  591. u32 ctllo;
  592. dma_addr_t reg;
  593. unsigned int reg_width;
  594. unsigned int mem_width;
  595. unsigned int i;
  596. struct scatterlist *sg;
  597. size_t total_len = 0;
  598. dev_vdbg(chan2dev(chan), "prep_dma_slave\n");
  599. if (unlikely(!dws || !sg_len))
  600. return NULL;
  601. prev = first = NULL;
  602. switch (direction) {
  603. case DMA_MEM_TO_DEV:
  604. reg_width = __fls(sconfig->dst_addr_width);
  605. reg = sconfig->dst_addr;
  606. ctllo = (DWC_DEFAULT_CTLLO(chan)
  607. | DWC_CTLL_DST_WIDTH(reg_width)
  608. | DWC_CTLL_DST_FIX
  609. | DWC_CTLL_SRC_INC);
  610. ctllo |= sconfig->device_fc ? DWC_CTLL_FC(DW_DMA_FC_P_M2P) :
  611. DWC_CTLL_FC(DW_DMA_FC_D_M2P);
  612. for_each_sg(sgl, sg, sg_len, i) {
  613. struct dw_desc *desc;
  614. u32 len, dlen, mem;
  615. mem = sg_phys(sg);
  616. len = sg_dma_len(sg);
  617. if (!((mem | len) & 7))
  618. mem_width = 3;
  619. else if (!((mem | len) & 3))
  620. mem_width = 2;
  621. else if (!((mem | len) & 1))
  622. mem_width = 1;
  623. else
  624. mem_width = 0;
  625. slave_sg_todev_fill_desc:
  626. desc = dwc_desc_get(dwc);
  627. if (!desc) {
  628. dev_err(chan2dev(chan),
  629. "not enough descriptors available\n");
  630. goto err_desc_get;
  631. }
  632. desc->lli.sar = mem;
  633. desc->lli.dar = reg;
  634. desc->lli.ctllo = ctllo | DWC_CTLL_SRC_WIDTH(mem_width);
  635. if ((len >> mem_width) > DWC_MAX_COUNT) {
  636. dlen = DWC_MAX_COUNT << mem_width;
  637. mem += dlen;
  638. len -= dlen;
  639. } else {
  640. dlen = len;
  641. len = 0;
  642. }
  643. desc->lli.ctlhi = dlen >> mem_width;
  644. if (!first) {
  645. first = desc;
  646. } else {
  647. prev->lli.llp = desc->txd.phys;
  648. dma_sync_single_for_device(chan2parent(chan),
  649. prev->txd.phys,
  650. sizeof(prev->lli),
  651. DMA_TO_DEVICE);
  652. list_add_tail(&desc->desc_node,
  653. &first->tx_list);
  654. }
  655. prev = desc;
  656. total_len += dlen;
  657. if (len)
  658. goto slave_sg_todev_fill_desc;
  659. }
  660. break;
  661. case DMA_DEV_TO_MEM:
  662. reg_width = __fls(sconfig->src_addr_width);
  663. reg = sconfig->src_addr;
  664. ctllo = (DWC_DEFAULT_CTLLO(chan)
  665. | DWC_CTLL_SRC_WIDTH(reg_width)
  666. | DWC_CTLL_DST_INC
  667. | DWC_CTLL_SRC_FIX);
  668. ctllo |= sconfig->device_fc ? DWC_CTLL_FC(DW_DMA_FC_P_P2M) :
  669. DWC_CTLL_FC(DW_DMA_FC_D_P2M);
  670. for_each_sg(sgl, sg, sg_len, i) {
  671. struct dw_desc *desc;
  672. u32 len, dlen, mem;
  673. mem = sg_phys(sg);
  674. len = sg_dma_len(sg);
  675. if (!((mem | len) & 7))
  676. mem_width = 3;
  677. else if (!((mem | len) & 3))
  678. mem_width = 2;
  679. else if (!((mem | len) & 1))
  680. mem_width = 1;
  681. else
  682. mem_width = 0;
  683. slave_sg_fromdev_fill_desc:
  684. desc = dwc_desc_get(dwc);
  685. if (!desc) {
  686. dev_err(chan2dev(chan),
  687. "not enough descriptors available\n");
  688. goto err_desc_get;
  689. }
  690. desc->lli.sar = reg;
  691. desc->lli.dar = mem;
  692. desc->lli.ctllo = ctllo | DWC_CTLL_DST_WIDTH(mem_width);
  693. if ((len >> reg_width) > DWC_MAX_COUNT) {
  694. dlen = DWC_MAX_COUNT << reg_width;
  695. mem += dlen;
  696. len -= dlen;
  697. } else {
  698. dlen = len;
  699. len = 0;
  700. }
  701. desc->lli.ctlhi = dlen >> reg_width;
  702. if (!first) {
  703. first = desc;
  704. } else {
  705. prev->lli.llp = desc->txd.phys;
  706. dma_sync_single_for_device(chan2parent(chan),
  707. prev->txd.phys,
  708. sizeof(prev->lli),
  709. DMA_TO_DEVICE);
  710. list_add_tail(&desc->desc_node,
  711. &first->tx_list);
  712. }
  713. prev = desc;
  714. total_len += dlen;
  715. if (len)
  716. goto slave_sg_fromdev_fill_desc;
  717. }
  718. break;
  719. default:
  720. return NULL;
  721. }
  722. if (flags & DMA_PREP_INTERRUPT)
  723. /* Trigger interrupt after last block */
  724. prev->lli.ctllo |= DWC_CTLL_INT_EN;
  725. prev->lli.llp = 0;
  726. dma_sync_single_for_device(chan2parent(chan),
  727. prev->txd.phys, sizeof(prev->lli),
  728. DMA_TO_DEVICE);
  729. first->len = total_len;
  730. return &first->txd;
  731. err_desc_get:
  732. dwc_desc_put(dwc, first);
  733. return NULL;
  734. }
  735. /*
  736. * Fix sconfig's burst size according to dw_dmac. We need to convert them as:
  737. * 1 -> 0, 4 -> 1, 8 -> 2, 16 -> 3.
  738. *
  739. * NOTE: burst size 2 is not supported by controller.
  740. *
  741. * This can be done by finding least significant bit set: n & (n - 1)
  742. */
  743. static inline void convert_burst(u32 *maxburst)
  744. {
  745. if (*maxburst > 1)
  746. *maxburst = fls(*maxburst) - 2;
  747. else
  748. *maxburst = 0;
  749. }
  750. static int
  751. set_runtime_config(struct dma_chan *chan, struct dma_slave_config *sconfig)
  752. {
  753. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  754. /* Check if it is chan is configured for slave transfers */
  755. if (!chan->private)
  756. return -EINVAL;
  757. memcpy(&dwc->dma_sconfig, sconfig, sizeof(*sconfig));
  758. convert_burst(&dwc->dma_sconfig.src_maxburst);
  759. convert_burst(&dwc->dma_sconfig.dst_maxburst);
  760. return 0;
  761. }
  762. static int dwc_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
  763. unsigned long arg)
  764. {
  765. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  766. struct dw_dma *dw = to_dw_dma(chan->device);
  767. struct dw_desc *desc, *_desc;
  768. unsigned long flags;
  769. u32 cfglo;
  770. LIST_HEAD(list);
  771. if (cmd == DMA_PAUSE) {
  772. spin_lock_irqsave(&dwc->lock, flags);
  773. cfglo = channel_readl(dwc, CFG_LO);
  774. channel_writel(dwc, CFG_LO, cfglo | DWC_CFGL_CH_SUSP);
  775. while (!(channel_readl(dwc, CFG_LO) & DWC_CFGL_FIFO_EMPTY))
  776. cpu_relax();
  777. dwc->paused = true;
  778. spin_unlock_irqrestore(&dwc->lock, flags);
  779. } else if (cmd == DMA_RESUME) {
  780. if (!dwc->paused)
  781. return 0;
  782. spin_lock_irqsave(&dwc->lock, flags);
  783. cfglo = channel_readl(dwc, CFG_LO);
  784. channel_writel(dwc, CFG_LO, cfglo & ~DWC_CFGL_CH_SUSP);
  785. dwc->paused = false;
  786. spin_unlock_irqrestore(&dwc->lock, flags);
  787. } else if (cmd == DMA_TERMINATE_ALL) {
  788. spin_lock_irqsave(&dwc->lock, flags);
  789. channel_clear_bit(dw, CH_EN, dwc->mask);
  790. while (dma_readl(dw, CH_EN) & dwc->mask)
  791. cpu_relax();
  792. dwc->paused = false;
  793. /* active_list entries will end up before queued entries */
  794. list_splice_init(&dwc->queue, &list);
  795. list_splice_init(&dwc->active_list, &list);
  796. spin_unlock_irqrestore(&dwc->lock, flags);
  797. /* Flush all pending and queued descriptors */
  798. list_for_each_entry_safe(desc, _desc, &list, desc_node)
  799. dwc_descriptor_complete(dwc, desc, false);
  800. } else if (cmd == DMA_SLAVE_CONFIG) {
  801. return set_runtime_config(chan, (struct dma_slave_config *)arg);
  802. } else {
  803. return -ENXIO;
  804. }
  805. return 0;
  806. }
  807. static enum dma_status
  808. dwc_tx_status(struct dma_chan *chan,
  809. dma_cookie_t cookie,
  810. struct dma_tx_state *txstate)
  811. {
  812. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  813. enum dma_status ret;
  814. ret = dma_cookie_status(chan, cookie, txstate);
  815. if (ret != DMA_SUCCESS) {
  816. dwc_scan_descriptors(to_dw_dma(chan->device), dwc);
  817. ret = dma_cookie_status(chan, cookie, txstate);
  818. }
  819. if (ret != DMA_SUCCESS)
  820. dma_set_residue(txstate, dwc_first_active(dwc)->len);
  821. if (dwc->paused)
  822. return DMA_PAUSED;
  823. return ret;
  824. }
  825. static void dwc_issue_pending(struct dma_chan *chan)
  826. {
  827. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  828. if (!list_empty(&dwc->queue))
  829. dwc_scan_descriptors(to_dw_dma(chan->device), dwc);
  830. }
  831. static int dwc_alloc_chan_resources(struct dma_chan *chan)
  832. {
  833. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  834. struct dw_dma *dw = to_dw_dma(chan->device);
  835. struct dw_desc *desc;
  836. int i;
  837. unsigned long flags;
  838. dev_vdbg(chan2dev(chan), "alloc_chan_resources\n");
  839. /* ASSERT: channel is idle */
  840. if (dma_readl(dw, CH_EN) & dwc->mask) {
  841. dev_dbg(chan2dev(chan), "DMA channel not idle?\n");
  842. return -EIO;
  843. }
  844. dma_cookie_init(chan);
  845. /*
  846. * NOTE: some controllers may have additional features that we
  847. * need to initialize here, like "scatter-gather" (which
  848. * doesn't mean what you think it means), and status writeback.
  849. */
  850. spin_lock_irqsave(&dwc->lock, flags);
  851. i = dwc->descs_allocated;
  852. while (dwc->descs_allocated < NR_DESCS_PER_CHANNEL) {
  853. spin_unlock_irqrestore(&dwc->lock, flags);
  854. desc = kzalloc(sizeof(struct dw_desc), GFP_KERNEL);
  855. if (!desc) {
  856. dev_info(chan2dev(chan),
  857. "only allocated %d descriptors\n", i);
  858. spin_lock_irqsave(&dwc->lock, flags);
  859. break;
  860. }
  861. INIT_LIST_HEAD(&desc->tx_list);
  862. dma_async_tx_descriptor_init(&desc->txd, chan);
  863. desc->txd.tx_submit = dwc_tx_submit;
  864. desc->txd.flags = DMA_CTRL_ACK;
  865. desc->txd.phys = dma_map_single(chan2parent(chan), &desc->lli,
  866. sizeof(desc->lli), DMA_TO_DEVICE);
  867. dwc_desc_put(dwc, desc);
  868. spin_lock_irqsave(&dwc->lock, flags);
  869. i = ++dwc->descs_allocated;
  870. }
  871. spin_unlock_irqrestore(&dwc->lock, flags);
  872. dev_dbg(chan2dev(chan),
  873. "alloc_chan_resources allocated %d descriptors\n", i);
  874. return i;
  875. }
  876. static void dwc_free_chan_resources(struct dma_chan *chan)
  877. {
  878. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  879. struct dw_dma *dw = to_dw_dma(chan->device);
  880. struct dw_desc *desc, *_desc;
  881. unsigned long flags;
  882. LIST_HEAD(list);
  883. dev_dbg(chan2dev(chan), "free_chan_resources (descs allocated=%u)\n",
  884. dwc->descs_allocated);
  885. /* ASSERT: channel is idle */
  886. BUG_ON(!list_empty(&dwc->active_list));
  887. BUG_ON(!list_empty(&dwc->queue));
  888. BUG_ON(dma_readl(to_dw_dma(chan->device), CH_EN) & dwc->mask);
  889. spin_lock_irqsave(&dwc->lock, flags);
  890. list_splice_init(&dwc->free_list, &list);
  891. dwc->descs_allocated = 0;
  892. dwc->initialized = false;
  893. /* Disable interrupts */
  894. channel_clear_bit(dw, MASK.XFER, dwc->mask);
  895. channel_clear_bit(dw, MASK.ERROR, dwc->mask);
  896. spin_unlock_irqrestore(&dwc->lock, flags);
  897. list_for_each_entry_safe(desc, _desc, &list, desc_node) {
  898. dev_vdbg(chan2dev(chan), " freeing descriptor %p\n", desc);
  899. dma_unmap_single(chan2parent(chan), desc->txd.phys,
  900. sizeof(desc->lli), DMA_TO_DEVICE);
  901. kfree(desc);
  902. }
  903. dev_vdbg(chan2dev(chan), "free_chan_resources done\n");
  904. }
  905. /* --------------------- Cyclic DMA API extensions -------------------- */
  906. /**
  907. * dw_dma_cyclic_start - start the cyclic DMA transfer
  908. * @chan: the DMA channel to start
  909. *
  910. * Must be called with soft interrupts disabled. Returns zero on success or
  911. * -errno on failure.
  912. */
  913. int dw_dma_cyclic_start(struct dma_chan *chan)
  914. {
  915. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  916. struct dw_dma *dw = to_dw_dma(dwc->chan.device);
  917. unsigned long flags;
  918. if (!test_bit(DW_DMA_IS_CYCLIC, &dwc->flags)) {
  919. dev_err(chan2dev(&dwc->chan), "missing prep for cyclic DMA\n");
  920. return -ENODEV;
  921. }
  922. spin_lock_irqsave(&dwc->lock, flags);
  923. /* assert channel is idle */
  924. if (dma_readl(dw, CH_EN) & dwc->mask) {
  925. dev_err(chan2dev(&dwc->chan),
  926. "BUG: Attempted to start non-idle channel\n");
  927. dev_err(chan2dev(&dwc->chan),
  928. " SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
  929. channel_readl(dwc, SAR),
  930. channel_readl(dwc, DAR),
  931. channel_readl(dwc, LLP),
  932. channel_readl(dwc, CTL_HI),
  933. channel_readl(dwc, CTL_LO));
  934. spin_unlock_irqrestore(&dwc->lock, flags);
  935. return -EBUSY;
  936. }
  937. dma_writel(dw, CLEAR.ERROR, dwc->mask);
  938. dma_writel(dw, CLEAR.XFER, dwc->mask);
  939. /* setup DMAC channel registers */
  940. channel_writel(dwc, LLP, dwc->cdesc->desc[0]->txd.phys);
  941. channel_writel(dwc, CTL_LO, DWC_CTLL_LLP_D_EN | DWC_CTLL_LLP_S_EN);
  942. channel_writel(dwc, CTL_HI, 0);
  943. channel_set_bit(dw, CH_EN, dwc->mask);
  944. spin_unlock_irqrestore(&dwc->lock, flags);
  945. return 0;
  946. }
  947. EXPORT_SYMBOL(dw_dma_cyclic_start);
  948. /**
  949. * dw_dma_cyclic_stop - stop the cyclic DMA transfer
  950. * @chan: the DMA channel to stop
  951. *
  952. * Must be called with soft interrupts disabled.
  953. */
  954. void dw_dma_cyclic_stop(struct dma_chan *chan)
  955. {
  956. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  957. struct dw_dma *dw = to_dw_dma(dwc->chan.device);
  958. unsigned long flags;
  959. spin_lock_irqsave(&dwc->lock, flags);
  960. channel_clear_bit(dw, CH_EN, dwc->mask);
  961. while (dma_readl(dw, CH_EN) & dwc->mask)
  962. cpu_relax();
  963. spin_unlock_irqrestore(&dwc->lock, flags);
  964. }
  965. EXPORT_SYMBOL(dw_dma_cyclic_stop);
  966. /**
  967. * dw_dma_cyclic_prep - prepare the cyclic DMA transfer
  968. * @chan: the DMA channel to prepare
  969. * @buf_addr: physical DMA address where the buffer starts
  970. * @buf_len: total number of bytes for the entire buffer
  971. * @period_len: number of bytes for each period
  972. * @direction: transfer direction, to or from device
  973. *
  974. * Must be called before trying to start the transfer. Returns a valid struct
  975. * dw_cyclic_desc if successful or an ERR_PTR(-errno) if not successful.
  976. */
  977. struct dw_cyclic_desc *dw_dma_cyclic_prep(struct dma_chan *chan,
  978. dma_addr_t buf_addr, size_t buf_len, size_t period_len,
  979. enum dma_transfer_direction direction)
  980. {
  981. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  982. struct dma_slave_config *sconfig = &dwc->dma_sconfig;
  983. struct dw_cyclic_desc *cdesc;
  984. struct dw_cyclic_desc *retval = NULL;
  985. struct dw_desc *desc;
  986. struct dw_desc *last = NULL;
  987. unsigned long was_cyclic;
  988. unsigned int reg_width;
  989. unsigned int periods;
  990. unsigned int i;
  991. unsigned long flags;
  992. spin_lock_irqsave(&dwc->lock, flags);
  993. if (!list_empty(&dwc->queue) || !list_empty(&dwc->active_list)) {
  994. spin_unlock_irqrestore(&dwc->lock, flags);
  995. dev_dbg(chan2dev(&dwc->chan),
  996. "queue and/or active list are not empty\n");
  997. return ERR_PTR(-EBUSY);
  998. }
  999. was_cyclic = test_and_set_bit(DW_DMA_IS_CYCLIC, &dwc->flags);
  1000. spin_unlock_irqrestore(&dwc->lock, flags);
  1001. if (was_cyclic) {
  1002. dev_dbg(chan2dev(&dwc->chan),
  1003. "channel already prepared for cyclic DMA\n");
  1004. return ERR_PTR(-EBUSY);
  1005. }
  1006. retval = ERR_PTR(-EINVAL);
  1007. if (direction == DMA_MEM_TO_DEV)
  1008. reg_width = __ffs(sconfig->dst_addr_width);
  1009. else
  1010. reg_width = __ffs(sconfig->src_addr_width);
  1011. periods = buf_len / period_len;
  1012. /* Check for too big/unaligned periods and unaligned DMA buffer. */
  1013. if (period_len > (DWC_MAX_COUNT << reg_width))
  1014. goto out_err;
  1015. if (unlikely(period_len & ((1 << reg_width) - 1)))
  1016. goto out_err;
  1017. if (unlikely(buf_addr & ((1 << reg_width) - 1)))
  1018. goto out_err;
  1019. if (unlikely(!(direction & (DMA_MEM_TO_DEV | DMA_DEV_TO_MEM))))
  1020. goto out_err;
  1021. retval = ERR_PTR(-ENOMEM);
  1022. if (periods > NR_DESCS_PER_CHANNEL)
  1023. goto out_err;
  1024. cdesc = kzalloc(sizeof(struct dw_cyclic_desc), GFP_KERNEL);
  1025. if (!cdesc)
  1026. goto out_err;
  1027. cdesc->desc = kzalloc(sizeof(struct dw_desc *) * periods, GFP_KERNEL);
  1028. if (!cdesc->desc)
  1029. goto out_err_alloc;
  1030. for (i = 0; i < periods; i++) {
  1031. desc = dwc_desc_get(dwc);
  1032. if (!desc)
  1033. goto out_err_desc_get;
  1034. switch (direction) {
  1035. case DMA_MEM_TO_DEV:
  1036. desc->lli.dar = sconfig->dst_addr;
  1037. desc->lli.sar = buf_addr + (period_len * i);
  1038. desc->lli.ctllo = (DWC_DEFAULT_CTLLO(chan)
  1039. | DWC_CTLL_DST_WIDTH(reg_width)
  1040. | DWC_CTLL_SRC_WIDTH(reg_width)
  1041. | DWC_CTLL_DST_FIX
  1042. | DWC_CTLL_SRC_INC
  1043. | DWC_CTLL_INT_EN);
  1044. desc->lli.ctllo |= sconfig->device_fc ?
  1045. DWC_CTLL_FC(DW_DMA_FC_P_M2P) :
  1046. DWC_CTLL_FC(DW_DMA_FC_D_M2P);
  1047. break;
  1048. case DMA_DEV_TO_MEM:
  1049. desc->lli.dar = buf_addr + (period_len * i);
  1050. desc->lli.sar = sconfig->src_addr;
  1051. desc->lli.ctllo = (DWC_DEFAULT_CTLLO(chan)
  1052. | DWC_CTLL_SRC_WIDTH(reg_width)
  1053. | DWC_CTLL_DST_WIDTH(reg_width)
  1054. | DWC_CTLL_DST_INC
  1055. | DWC_CTLL_SRC_FIX
  1056. | DWC_CTLL_INT_EN);
  1057. desc->lli.ctllo |= sconfig->device_fc ?
  1058. DWC_CTLL_FC(DW_DMA_FC_P_P2M) :
  1059. DWC_CTLL_FC(DW_DMA_FC_D_P2M);
  1060. break;
  1061. default:
  1062. break;
  1063. }
  1064. desc->lli.ctlhi = (period_len >> reg_width);
  1065. cdesc->desc[i] = desc;
  1066. if (last) {
  1067. last->lli.llp = desc->txd.phys;
  1068. dma_sync_single_for_device(chan2parent(chan),
  1069. last->txd.phys, sizeof(last->lli),
  1070. DMA_TO_DEVICE);
  1071. }
  1072. last = desc;
  1073. }
  1074. /* lets make a cyclic list */
  1075. last->lli.llp = cdesc->desc[0]->txd.phys;
  1076. dma_sync_single_for_device(chan2parent(chan), last->txd.phys,
  1077. sizeof(last->lli), DMA_TO_DEVICE);
  1078. dev_dbg(chan2dev(&dwc->chan), "cyclic prepared buf 0x%08x len %zu "
  1079. "period %zu periods %d\n", buf_addr, buf_len,
  1080. period_len, periods);
  1081. cdesc->periods = periods;
  1082. dwc->cdesc = cdesc;
  1083. return cdesc;
  1084. out_err_desc_get:
  1085. while (i--)
  1086. dwc_desc_put(dwc, cdesc->desc[i]);
  1087. out_err_alloc:
  1088. kfree(cdesc);
  1089. out_err:
  1090. clear_bit(DW_DMA_IS_CYCLIC, &dwc->flags);
  1091. return (struct dw_cyclic_desc *)retval;
  1092. }
  1093. EXPORT_SYMBOL(dw_dma_cyclic_prep);
  1094. /**
  1095. * dw_dma_cyclic_free - free a prepared cyclic DMA transfer
  1096. * @chan: the DMA channel to free
  1097. */
  1098. void dw_dma_cyclic_free(struct dma_chan *chan)
  1099. {
  1100. struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
  1101. struct dw_dma *dw = to_dw_dma(dwc->chan.device);
  1102. struct dw_cyclic_desc *cdesc = dwc->cdesc;
  1103. int i;
  1104. unsigned long flags;
  1105. dev_dbg(chan2dev(&dwc->chan), "cyclic free\n");
  1106. if (!cdesc)
  1107. return;
  1108. spin_lock_irqsave(&dwc->lock, flags);
  1109. channel_clear_bit(dw, CH_EN, dwc->mask);
  1110. while (dma_readl(dw, CH_EN) & dwc->mask)
  1111. cpu_relax();
  1112. dma_writel(dw, CLEAR.ERROR, dwc->mask);
  1113. dma_writel(dw, CLEAR.XFER, dwc->mask);
  1114. spin_unlock_irqrestore(&dwc->lock, flags);
  1115. for (i = 0; i < cdesc->periods; i++)
  1116. dwc_desc_put(dwc, cdesc->desc[i]);
  1117. kfree(cdesc->desc);
  1118. kfree(cdesc);
  1119. clear_bit(DW_DMA_IS_CYCLIC, &dwc->flags);
  1120. }
  1121. EXPORT_SYMBOL(dw_dma_cyclic_free);
  1122. /*----------------------------------------------------------------------*/
  1123. static void dw_dma_off(struct dw_dma *dw)
  1124. {
  1125. int i;
  1126. dma_writel(dw, CFG, 0);
  1127. channel_clear_bit(dw, MASK.XFER, dw->all_chan_mask);
  1128. channel_clear_bit(dw, MASK.SRC_TRAN, dw->all_chan_mask);
  1129. channel_clear_bit(dw, MASK.DST_TRAN, dw->all_chan_mask);
  1130. channel_clear_bit(dw, MASK.ERROR, dw->all_chan_mask);
  1131. while (dma_readl(dw, CFG) & DW_CFG_DMA_EN)
  1132. cpu_relax();
  1133. for (i = 0; i < dw->dma.chancnt; i++)
  1134. dw->chan[i].initialized = false;
  1135. }
  1136. static int __init dw_probe(struct platform_device *pdev)
  1137. {
  1138. struct dw_dma_platform_data *pdata;
  1139. struct resource *io;
  1140. struct dw_dma *dw;
  1141. size_t size;
  1142. int irq;
  1143. int err;
  1144. int i;
  1145. pdata = dev_get_platdata(&pdev->dev);
  1146. if (!pdata || pdata->nr_channels > DW_DMA_MAX_NR_CHANNELS)
  1147. return -EINVAL;
  1148. io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1149. if (!io)
  1150. return -EINVAL;
  1151. irq = platform_get_irq(pdev, 0);
  1152. if (irq < 0)
  1153. return irq;
  1154. size = sizeof(struct dw_dma);
  1155. size += pdata->nr_channels * sizeof(struct dw_dma_chan);
  1156. dw = kzalloc(size, GFP_KERNEL);
  1157. if (!dw)
  1158. return -ENOMEM;
  1159. if (!request_mem_region(io->start, DW_REGLEN, pdev->dev.driver->name)) {
  1160. err = -EBUSY;
  1161. goto err_kfree;
  1162. }
  1163. dw->regs = ioremap(io->start, DW_REGLEN);
  1164. if (!dw->regs) {
  1165. err = -ENOMEM;
  1166. goto err_release_r;
  1167. }
  1168. dw->clk = clk_get(&pdev->dev, "hclk");
  1169. if (IS_ERR(dw->clk)) {
  1170. err = PTR_ERR(dw->clk);
  1171. goto err_clk;
  1172. }
  1173. clk_enable(dw->clk);
  1174. /* force dma off, just in case */
  1175. dw_dma_off(dw);
  1176. err = request_irq(irq, dw_dma_interrupt, 0, "dw_dmac", dw);
  1177. if (err)
  1178. goto err_irq;
  1179. platform_set_drvdata(pdev, dw);
  1180. tasklet_init(&dw->tasklet, dw_dma_tasklet, (unsigned long)dw);
  1181. dw->all_chan_mask = (1 << pdata->nr_channels) - 1;
  1182. INIT_LIST_HEAD(&dw->dma.channels);
  1183. for (i = 0; i < pdata->nr_channels; i++) {
  1184. struct dw_dma_chan *dwc = &dw->chan[i];
  1185. dwc->chan.device = &dw->dma;
  1186. dma_cookie_init(&dwc->chan);
  1187. if (pdata->chan_allocation_order == CHAN_ALLOCATION_ASCENDING)
  1188. list_add_tail(&dwc->chan.device_node,
  1189. &dw->dma.channels);
  1190. else
  1191. list_add(&dwc->chan.device_node, &dw->dma.channels);
  1192. /* 7 is highest priority & 0 is lowest. */
  1193. if (pdata->chan_priority == CHAN_PRIORITY_ASCENDING)
  1194. dwc->priority = pdata->nr_channels - i - 1;
  1195. else
  1196. dwc->priority = i;
  1197. dwc->ch_regs = &__dw_regs(dw)->CHAN[i];
  1198. spin_lock_init(&dwc->lock);
  1199. dwc->mask = 1 << i;
  1200. INIT_LIST_HEAD(&dwc->active_list);
  1201. INIT_LIST_HEAD(&dwc->queue);
  1202. INIT_LIST_HEAD(&dwc->free_list);
  1203. channel_clear_bit(dw, CH_EN, dwc->mask);
  1204. }
  1205. /* Clear/disable all interrupts on all channels. */
  1206. dma_writel(dw, CLEAR.XFER, dw->all_chan_mask);
  1207. dma_writel(dw, CLEAR.SRC_TRAN, dw->all_chan_mask);
  1208. dma_writel(dw, CLEAR.DST_TRAN, dw->all_chan_mask);
  1209. dma_writel(dw, CLEAR.ERROR, dw->all_chan_mask);
  1210. channel_clear_bit(dw, MASK.XFER, dw->all_chan_mask);
  1211. channel_clear_bit(dw, MASK.SRC_TRAN, dw->all_chan_mask);
  1212. channel_clear_bit(dw, MASK.DST_TRAN, dw->all_chan_mask);
  1213. channel_clear_bit(dw, MASK.ERROR, dw->all_chan_mask);
  1214. dma_cap_set(DMA_MEMCPY, dw->dma.cap_mask);
  1215. dma_cap_set(DMA_SLAVE, dw->dma.cap_mask);
  1216. if (pdata->is_private)
  1217. dma_cap_set(DMA_PRIVATE, dw->dma.cap_mask);
  1218. dw->dma.dev = &pdev->dev;
  1219. dw->dma.device_alloc_chan_resources = dwc_alloc_chan_resources;
  1220. dw->dma.device_free_chan_resources = dwc_free_chan_resources;
  1221. dw->dma.device_prep_dma_memcpy = dwc_prep_dma_memcpy;
  1222. dw->dma.device_prep_slave_sg = dwc_prep_slave_sg;
  1223. dw->dma.device_control = dwc_control;
  1224. dw->dma.device_tx_status = dwc_tx_status;
  1225. dw->dma.device_issue_pending = dwc_issue_pending;
  1226. dma_writel(dw, CFG, DW_CFG_DMA_EN);
  1227. printk(KERN_INFO "%s: DesignWare DMA Controller, %d channels\n",
  1228. dev_name(&pdev->dev), pdata->nr_channels);
  1229. dma_async_device_register(&dw->dma);
  1230. return 0;
  1231. err_irq:
  1232. clk_disable(dw->clk);
  1233. clk_put(dw->clk);
  1234. err_clk:
  1235. iounmap(dw->regs);
  1236. dw->regs = NULL;
  1237. err_release_r:
  1238. release_resource(io);
  1239. err_kfree:
  1240. kfree(dw);
  1241. return err;
  1242. }
  1243. static int __exit dw_remove(struct platform_device *pdev)
  1244. {
  1245. struct dw_dma *dw = platform_get_drvdata(pdev);
  1246. struct dw_dma_chan *dwc, *_dwc;
  1247. struct resource *io;
  1248. dw_dma_off(dw);
  1249. dma_async_device_unregister(&dw->dma);
  1250. free_irq(platform_get_irq(pdev, 0), dw);
  1251. tasklet_kill(&dw->tasklet);
  1252. list_for_each_entry_safe(dwc, _dwc, &dw->dma.channels,
  1253. chan.device_node) {
  1254. list_del(&dwc->chan.device_node);
  1255. channel_clear_bit(dw, CH_EN, dwc->mask);
  1256. }
  1257. clk_disable(dw->clk);
  1258. clk_put(dw->clk);
  1259. iounmap(dw->regs);
  1260. dw->regs = NULL;
  1261. io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1262. release_mem_region(io->start, DW_REGLEN);
  1263. kfree(dw);
  1264. return 0;
  1265. }
  1266. static void dw_shutdown(struct platform_device *pdev)
  1267. {
  1268. struct dw_dma *dw = platform_get_drvdata(pdev);
  1269. dw_dma_off(platform_get_drvdata(pdev));
  1270. clk_disable(dw->clk);
  1271. }
  1272. static int dw_suspend_noirq(struct device *dev)
  1273. {
  1274. struct platform_device *pdev = to_platform_device(dev);
  1275. struct dw_dma *dw = platform_get_drvdata(pdev);
  1276. dw_dma_off(platform_get_drvdata(pdev));
  1277. clk_disable(dw->clk);
  1278. return 0;
  1279. }
  1280. static int dw_resume_noirq(struct device *dev)
  1281. {
  1282. struct platform_device *pdev = to_platform_device(dev);
  1283. struct dw_dma *dw = platform_get_drvdata(pdev);
  1284. clk_enable(dw->clk);
  1285. dma_writel(dw, CFG, DW_CFG_DMA_EN);
  1286. return 0;
  1287. }
  1288. static const struct dev_pm_ops dw_dev_pm_ops = {
  1289. .suspend_noirq = dw_suspend_noirq,
  1290. .resume_noirq = dw_resume_noirq,
  1291. .freeze_noirq = dw_suspend_noirq,
  1292. .thaw_noirq = dw_resume_noirq,
  1293. .restore_noirq = dw_resume_noirq,
  1294. .poweroff_noirq = dw_suspend_noirq,
  1295. };
  1296. static struct platform_driver dw_driver = {
  1297. .remove = __exit_p(dw_remove),
  1298. .shutdown = dw_shutdown,
  1299. .driver = {
  1300. .name = "dw_dmac",
  1301. .pm = &dw_dev_pm_ops,
  1302. },
  1303. };
  1304. static int __init dw_init(void)
  1305. {
  1306. return platform_driver_probe(&dw_driver, dw_probe);
  1307. }
  1308. subsys_initcall(dw_init);
  1309. static void __exit dw_exit(void)
  1310. {
  1311. platform_driver_unregister(&dw_driver);
  1312. }
  1313. module_exit(dw_exit);
  1314. MODULE_LICENSE("GPL v2");
  1315. MODULE_DESCRIPTION("Synopsys DesignWare DMA Controller driver");
  1316. MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
  1317. MODULE_AUTHOR("Viresh Kumar <viresh.kumar@st.com>");