at_hdmac.c 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427
  1. /*
  2. * Driver for the Atmel AHB DMA Controller (aka HDMA or DMAC on AT91 systems)
  3. *
  4. * Copyright (C) 2008 Atmel Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. *
  12. * This supports the Atmel AHB DMA Controller,
  13. *
  14. * The driver has currently been tested with the Atmel AT91SAM9RL
  15. * and AT91SAM9G45 series.
  16. */
  17. #include <linux/clk.h>
  18. #include <linux/dmaengine.h>
  19. #include <linux/dma-mapping.h>
  20. #include <linux/dmapool.h>
  21. #include <linux/interrupt.h>
  22. #include <linux/module.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/slab.h>
  25. #include "at_hdmac_regs.h"
  26. /*
  27. * Glossary
  28. * --------
  29. *
  30. * at_hdmac : Name of the ATmel AHB DMA Controller
  31. * at_dma_ / atdma : ATmel DMA controller entity related
  32. * atc_ / atchan : ATmel DMA Channel entity related
  33. */
  34. #define ATC_DEFAULT_CFG (ATC_FIFOCFG_HALFFIFO)
  35. #define ATC_DEFAULT_CTRLA (0)
  36. #define ATC_DEFAULT_CTRLB (ATC_SIF(0) \
  37. |ATC_DIF(1))
  38. /*
  39. * Initial number of descriptors to allocate for each channel. This could
  40. * be increased during dma usage.
  41. */
  42. static unsigned int init_nr_desc_per_channel = 64;
  43. module_param(init_nr_desc_per_channel, uint, 0644);
  44. MODULE_PARM_DESC(init_nr_desc_per_channel,
  45. "initial descriptors per channel (default: 64)");
  46. /* prototypes */
  47. static dma_cookie_t atc_tx_submit(struct dma_async_tx_descriptor *tx);
  48. /*----------------------------------------------------------------------*/
  49. static struct at_desc *atc_first_active(struct at_dma_chan *atchan)
  50. {
  51. return list_first_entry(&atchan->active_list,
  52. struct at_desc, desc_node);
  53. }
  54. static struct at_desc *atc_first_queued(struct at_dma_chan *atchan)
  55. {
  56. return list_first_entry(&atchan->queue,
  57. struct at_desc, desc_node);
  58. }
  59. /**
  60. * atc_alloc_descriptor - allocate and return an initialized descriptor
  61. * @chan: the channel to allocate descriptors for
  62. * @gfp_flags: GFP allocation flags
  63. *
  64. * Note: The ack-bit is positioned in the descriptor flag at creation time
  65. * to make initial allocation more convenient. This bit will be cleared
  66. * and control will be given to client at usage time (during
  67. * preparation functions).
  68. */
  69. static struct at_desc *atc_alloc_descriptor(struct dma_chan *chan,
  70. gfp_t gfp_flags)
  71. {
  72. struct at_desc *desc = NULL;
  73. struct at_dma *atdma = to_at_dma(chan->device);
  74. dma_addr_t phys;
  75. desc = dma_pool_alloc(atdma->dma_desc_pool, gfp_flags, &phys);
  76. if (desc) {
  77. memset(desc, 0, sizeof(struct at_desc));
  78. INIT_LIST_HEAD(&desc->tx_list);
  79. dma_async_tx_descriptor_init(&desc->txd, chan);
  80. /* txd.flags will be overwritten in prep functions */
  81. desc->txd.flags = DMA_CTRL_ACK;
  82. desc->txd.tx_submit = atc_tx_submit;
  83. desc->txd.phys = phys;
  84. }
  85. return desc;
  86. }
  87. /**
  88. * atc_desc_get - get an unused descriptor from free_list
  89. * @atchan: channel we want a new descriptor for
  90. */
  91. static struct at_desc *atc_desc_get(struct at_dma_chan *atchan)
  92. {
  93. struct at_desc *desc, *_desc;
  94. struct at_desc *ret = NULL;
  95. unsigned int i = 0;
  96. LIST_HEAD(tmp_list);
  97. spin_lock_bh(&atchan->lock);
  98. list_for_each_entry_safe(desc, _desc, &atchan->free_list, desc_node) {
  99. i++;
  100. if (async_tx_test_ack(&desc->txd)) {
  101. list_del(&desc->desc_node);
  102. ret = desc;
  103. break;
  104. }
  105. dev_dbg(chan2dev(&atchan->chan_common),
  106. "desc %p not ACKed\n", desc);
  107. }
  108. spin_unlock_bh(&atchan->lock);
  109. dev_vdbg(chan2dev(&atchan->chan_common),
  110. "scanned %u descriptors on freelist\n", i);
  111. /* no more descriptor available in initial pool: create one more */
  112. if (!ret) {
  113. ret = atc_alloc_descriptor(&atchan->chan_common, GFP_ATOMIC);
  114. if (ret) {
  115. spin_lock_bh(&atchan->lock);
  116. atchan->descs_allocated++;
  117. spin_unlock_bh(&atchan->lock);
  118. } else {
  119. dev_err(chan2dev(&atchan->chan_common),
  120. "not enough descriptors available\n");
  121. }
  122. }
  123. return ret;
  124. }
  125. /**
  126. * atc_desc_put - move a descriptor, including any children, to the free list
  127. * @atchan: channel we work on
  128. * @desc: descriptor, at the head of a chain, to move to free list
  129. */
  130. static void atc_desc_put(struct at_dma_chan *atchan, struct at_desc *desc)
  131. {
  132. if (desc) {
  133. struct at_desc *child;
  134. spin_lock_bh(&atchan->lock);
  135. list_for_each_entry(child, &desc->tx_list, desc_node)
  136. dev_vdbg(chan2dev(&atchan->chan_common),
  137. "moving child desc %p to freelist\n",
  138. child);
  139. list_splice_init(&desc->tx_list, &atchan->free_list);
  140. dev_vdbg(chan2dev(&atchan->chan_common),
  141. "moving desc %p to freelist\n", desc);
  142. list_add(&desc->desc_node, &atchan->free_list);
  143. spin_unlock_bh(&atchan->lock);
  144. }
  145. }
  146. /**
  147. * atc_desc_chain - build chain adding a descripor
  148. * @first: address of first descripor of the chain
  149. * @prev: address of previous descripor of the chain
  150. * @desc: descriptor to queue
  151. *
  152. * Called from prep_* functions
  153. */
  154. static void atc_desc_chain(struct at_desc **first, struct at_desc **prev,
  155. struct at_desc *desc)
  156. {
  157. if (!(*first)) {
  158. *first = desc;
  159. } else {
  160. /* inform the HW lli about chaining */
  161. (*prev)->lli.dscr = desc->txd.phys;
  162. /* insert the link descriptor to the LD ring */
  163. list_add_tail(&desc->desc_node,
  164. &(*first)->tx_list);
  165. }
  166. *prev = desc;
  167. }
  168. /**
  169. * atc_assign_cookie - compute and assign new cookie
  170. * @atchan: channel we work on
  171. * @desc: descriptor to asign cookie for
  172. *
  173. * Called with atchan->lock held and bh disabled
  174. */
  175. static dma_cookie_t
  176. atc_assign_cookie(struct at_dma_chan *atchan, struct at_desc *desc)
  177. {
  178. dma_cookie_t cookie = atchan->chan_common.cookie;
  179. if (++cookie < 0)
  180. cookie = 1;
  181. atchan->chan_common.cookie = cookie;
  182. desc->txd.cookie = cookie;
  183. return cookie;
  184. }
  185. /**
  186. * atc_dostart - starts the DMA engine for real
  187. * @atchan: the channel we want to start
  188. * @first: first descriptor in the list we want to begin with
  189. *
  190. * Called with atchan->lock held and bh disabled
  191. */
  192. static void atc_dostart(struct at_dma_chan *atchan, struct at_desc *first)
  193. {
  194. struct at_dma *atdma = to_at_dma(atchan->chan_common.device);
  195. /* ASSERT: channel is idle */
  196. if (atc_chan_is_enabled(atchan)) {
  197. dev_err(chan2dev(&atchan->chan_common),
  198. "BUG: Attempted to start non-idle channel\n");
  199. dev_err(chan2dev(&atchan->chan_common),
  200. " channel: s0x%x d0x%x ctrl0x%x:0x%x l0x%x\n",
  201. channel_readl(atchan, SADDR),
  202. channel_readl(atchan, DADDR),
  203. channel_readl(atchan, CTRLA),
  204. channel_readl(atchan, CTRLB),
  205. channel_readl(atchan, DSCR));
  206. /* The tasklet will hopefully advance the queue... */
  207. return;
  208. }
  209. vdbg_dump_regs(atchan);
  210. /* clear any pending interrupt */
  211. while (dma_readl(atdma, EBCISR))
  212. cpu_relax();
  213. channel_writel(atchan, SADDR, 0);
  214. channel_writel(atchan, DADDR, 0);
  215. channel_writel(atchan, CTRLA, 0);
  216. channel_writel(atchan, CTRLB, 0);
  217. channel_writel(atchan, DSCR, first->txd.phys);
  218. dma_writel(atdma, CHER, atchan->mask);
  219. vdbg_dump_regs(atchan);
  220. }
  221. /**
  222. * atc_chain_complete - finish work for one transaction chain
  223. * @atchan: channel we work on
  224. * @desc: descriptor at the head of the chain we want do complete
  225. *
  226. * Called with atchan->lock held and bh disabled */
  227. static void
  228. atc_chain_complete(struct at_dma_chan *atchan, struct at_desc *desc)
  229. {
  230. struct dma_async_tx_descriptor *txd = &desc->txd;
  231. dev_vdbg(chan2dev(&atchan->chan_common),
  232. "descriptor %u complete\n", txd->cookie);
  233. atchan->completed_cookie = txd->cookie;
  234. /* move children to free_list */
  235. list_splice_init(&desc->tx_list, &atchan->free_list);
  236. /* move myself to free_list */
  237. list_move(&desc->desc_node, &atchan->free_list);
  238. /* unmap dma addresses (not on slave channels) */
  239. if (!atchan->chan_common.private) {
  240. struct device *parent = chan2parent(&atchan->chan_common);
  241. if (!(txd->flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
  242. if (txd->flags & DMA_COMPL_DEST_UNMAP_SINGLE)
  243. dma_unmap_single(parent,
  244. desc->lli.daddr,
  245. desc->len, DMA_FROM_DEVICE);
  246. else
  247. dma_unmap_page(parent,
  248. desc->lli.daddr,
  249. desc->len, DMA_FROM_DEVICE);
  250. }
  251. if (!(txd->flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
  252. if (txd->flags & DMA_COMPL_SRC_UNMAP_SINGLE)
  253. dma_unmap_single(parent,
  254. desc->lli.saddr,
  255. desc->len, DMA_TO_DEVICE);
  256. else
  257. dma_unmap_page(parent,
  258. desc->lli.saddr,
  259. desc->len, DMA_TO_DEVICE);
  260. }
  261. }
  262. /* for cyclic transfers,
  263. * no need to replay callback function while stopping */
  264. if (!test_bit(ATC_IS_CYCLIC, &atchan->status)) {
  265. dma_async_tx_callback callback = txd->callback;
  266. void *param = txd->callback_param;
  267. /*
  268. * The API requires that no submissions are done from a
  269. * callback, so we don't need to drop the lock here
  270. */
  271. if (callback)
  272. callback(param);
  273. }
  274. dma_run_dependencies(txd);
  275. }
  276. /**
  277. * atc_complete_all - finish work for all transactions
  278. * @atchan: channel to complete transactions for
  279. *
  280. * Eventually submit queued descriptors if any
  281. *
  282. * Assume channel is idle while calling this function
  283. * Called with atchan->lock held and bh disabled
  284. */
  285. static void atc_complete_all(struct at_dma_chan *atchan)
  286. {
  287. struct at_desc *desc, *_desc;
  288. LIST_HEAD(list);
  289. dev_vdbg(chan2dev(&atchan->chan_common), "complete all\n");
  290. BUG_ON(atc_chan_is_enabled(atchan));
  291. /*
  292. * Submit queued descriptors ASAP, i.e. before we go through
  293. * the completed ones.
  294. */
  295. if (!list_empty(&atchan->queue))
  296. atc_dostart(atchan, atc_first_queued(atchan));
  297. /* empty active_list now it is completed */
  298. list_splice_init(&atchan->active_list, &list);
  299. /* empty queue list by moving descriptors (if any) to active_list */
  300. list_splice_init(&atchan->queue, &atchan->active_list);
  301. list_for_each_entry_safe(desc, _desc, &list, desc_node)
  302. atc_chain_complete(atchan, desc);
  303. }
  304. /**
  305. * atc_cleanup_descriptors - cleanup up finished descriptors in active_list
  306. * @atchan: channel to be cleaned up
  307. *
  308. * Called with atchan->lock held and bh disabled
  309. */
  310. static void atc_cleanup_descriptors(struct at_dma_chan *atchan)
  311. {
  312. struct at_desc *desc, *_desc;
  313. struct at_desc *child;
  314. dev_vdbg(chan2dev(&atchan->chan_common), "cleanup descriptors\n");
  315. list_for_each_entry_safe(desc, _desc, &atchan->active_list, desc_node) {
  316. if (!(desc->lli.ctrla & ATC_DONE))
  317. /* This one is currently in progress */
  318. return;
  319. list_for_each_entry(child, &desc->tx_list, desc_node)
  320. if (!(child->lli.ctrla & ATC_DONE))
  321. /* Currently in progress */
  322. return;
  323. /*
  324. * No descriptors so far seem to be in progress, i.e.
  325. * this chain must be done.
  326. */
  327. atc_chain_complete(atchan, desc);
  328. }
  329. }
  330. /**
  331. * atc_advance_work - at the end of a transaction, move forward
  332. * @atchan: channel where the transaction ended
  333. *
  334. * Called with atchan->lock held and bh disabled
  335. */
  336. static void atc_advance_work(struct at_dma_chan *atchan)
  337. {
  338. dev_vdbg(chan2dev(&atchan->chan_common), "advance_work\n");
  339. if (list_empty(&atchan->active_list) ||
  340. list_is_singular(&atchan->active_list)) {
  341. atc_complete_all(atchan);
  342. } else {
  343. atc_chain_complete(atchan, atc_first_active(atchan));
  344. /* advance work */
  345. atc_dostart(atchan, atc_first_active(atchan));
  346. }
  347. }
  348. /**
  349. * atc_handle_error - handle errors reported by DMA controller
  350. * @atchan: channel where error occurs
  351. *
  352. * Called with atchan->lock held and bh disabled
  353. */
  354. static void atc_handle_error(struct at_dma_chan *atchan)
  355. {
  356. struct at_desc *bad_desc;
  357. struct at_desc *child;
  358. /*
  359. * The descriptor currently at the head of the active list is
  360. * broked. Since we don't have any way to report errors, we'll
  361. * just have to scream loudly and try to carry on.
  362. */
  363. bad_desc = atc_first_active(atchan);
  364. list_del_init(&bad_desc->desc_node);
  365. /* As we are stopped, take advantage to push queued descriptors
  366. * in active_list */
  367. list_splice_init(&atchan->queue, atchan->active_list.prev);
  368. /* Try to restart the controller */
  369. if (!list_empty(&atchan->active_list))
  370. atc_dostart(atchan, atc_first_active(atchan));
  371. /*
  372. * KERN_CRITICAL may seem harsh, but since this only happens
  373. * when someone submits a bad physical address in a
  374. * descriptor, we should consider ourselves lucky that the
  375. * controller flagged an error instead of scribbling over
  376. * random memory locations.
  377. */
  378. dev_crit(chan2dev(&atchan->chan_common),
  379. "Bad descriptor submitted for DMA!\n");
  380. dev_crit(chan2dev(&atchan->chan_common),
  381. " cookie: %d\n", bad_desc->txd.cookie);
  382. atc_dump_lli(atchan, &bad_desc->lli);
  383. list_for_each_entry(child, &bad_desc->tx_list, desc_node)
  384. atc_dump_lli(atchan, &child->lli);
  385. /* Pretend the descriptor completed successfully */
  386. atc_chain_complete(atchan, bad_desc);
  387. }
  388. /**
  389. * atc_handle_cyclic - at the end of a period, run callback function
  390. * @atchan: channel used for cyclic operations
  391. *
  392. * Called with atchan->lock held and bh disabled
  393. */
  394. static void atc_handle_cyclic(struct at_dma_chan *atchan)
  395. {
  396. struct at_desc *first = atc_first_active(atchan);
  397. struct dma_async_tx_descriptor *txd = &first->txd;
  398. dma_async_tx_callback callback = txd->callback;
  399. void *param = txd->callback_param;
  400. dev_vdbg(chan2dev(&atchan->chan_common),
  401. "new cyclic period llp 0x%08x\n",
  402. channel_readl(atchan, DSCR));
  403. if (callback)
  404. callback(param);
  405. }
  406. /*-- IRQ & Tasklet ---------------------------------------------------*/
  407. static void atc_tasklet(unsigned long data)
  408. {
  409. struct at_dma_chan *atchan = (struct at_dma_chan *)data;
  410. /* Channel cannot be enabled here */
  411. if (atc_chan_is_enabled(atchan)) {
  412. dev_err(chan2dev(&atchan->chan_common),
  413. "BUG: channel enabled in tasklet\n");
  414. return;
  415. }
  416. spin_lock(&atchan->lock);
  417. if (test_and_clear_bit(ATC_IS_ERROR, &atchan->status))
  418. atc_handle_error(atchan);
  419. else if (test_bit(ATC_IS_CYCLIC, &atchan->status))
  420. atc_handle_cyclic(atchan);
  421. else
  422. atc_advance_work(atchan);
  423. spin_unlock(&atchan->lock);
  424. }
  425. static irqreturn_t at_dma_interrupt(int irq, void *dev_id)
  426. {
  427. struct at_dma *atdma = (struct at_dma *)dev_id;
  428. struct at_dma_chan *atchan;
  429. int i;
  430. u32 status, pending, imr;
  431. int ret = IRQ_NONE;
  432. do {
  433. imr = dma_readl(atdma, EBCIMR);
  434. status = dma_readl(atdma, EBCISR);
  435. pending = status & imr;
  436. if (!pending)
  437. break;
  438. dev_vdbg(atdma->dma_common.dev,
  439. "interrupt: status = 0x%08x, 0x%08x, 0x%08x\n",
  440. status, imr, pending);
  441. for (i = 0; i < atdma->dma_common.chancnt; i++) {
  442. atchan = &atdma->chan[i];
  443. if (pending & (AT_DMA_BTC(i) | AT_DMA_ERR(i))) {
  444. if (pending & AT_DMA_ERR(i)) {
  445. /* Disable channel on AHB error */
  446. dma_writel(atdma, CHDR, atchan->mask);
  447. /* Give information to tasklet */
  448. set_bit(ATC_IS_ERROR, &atchan->status);
  449. }
  450. tasklet_schedule(&atchan->tasklet);
  451. ret = IRQ_HANDLED;
  452. }
  453. }
  454. } while (pending);
  455. return ret;
  456. }
  457. /*-- DMA Engine API --------------------------------------------------*/
  458. /**
  459. * atc_tx_submit - set the prepared descriptor(s) to be executed by the engine
  460. * @desc: descriptor at the head of the transaction chain
  461. *
  462. * Queue chain if DMA engine is working already
  463. *
  464. * Cookie increment and adding to active_list or queue must be atomic
  465. */
  466. static dma_cookie_t atc_tx_submit(struct dma_async_tx_descriptor *tx)
  467. {
  468. struct at_desc *desc = txd_to_at_desc(tx);
  469. struct at_dma_chan *atchan = to_at_dma_chan(tx->chan);
  470. dma_cookie_t cookie;
  471. spin_lock_bh(&atchan->lock);
  472. cookie = atc_assign_cookie(atchan, desc);
  473. if (list_empty(&atchan->active_list)) {
  474. dev_vdbg(chan2dev(tx->chan), "tx_submit: started %u\n",
  475. desc->txd.cookie);
  476. atc_dostart(atchan, desc);
  477. list_add_tail(&desc->desc_node, &atchan->active_list);
  478. } else {
  479. dev_vdbg(chan2dev(tx->chan), "tx_submit: queued %u\n",
  480. desc->txd.cookie);
  481. list_add_tail(&desc->desc_node, &atchan->queue);
  482. }
  483. spin_unlock_bh(&atchan->lock);
  484. return cookie;
  485. }
  486. /**
  487. * atc_prep_dma_memcpy - prepare a memcpy operation
  488. * @chan: the channel to prepare operation on
  489. * @dest: operation virtual destination address
  490. * @src: operation virtual source address
  491. * @len: operation length
  492. * @flags: tx descriptor status flags
  493. */
  494. static struct dma_async_tx_descriptor *
  495. atc_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
  496. size_t len, unsigned long flags)
  497. {
  498. struct at_dma_chan *atchan = to_at_dma_chan(chan);
  499. struct at_desc *desc = NULL;
  500. struct at_desc *first = NULL;
  501. struct at_desc *prev = NULL;
  502. size_t xfer_count;
  503. size_t offset;
  504. unsigned int src_width;
  505. unsigned int dst_width;
  506. u32 ctrla;
  507. u32 ctrlb;
  508. dev_vdbg(chan2dev(chan), "prep_dma_memcpy: d0x%x s0x%x l0x%zx f0x%lx\n",
  509. dest, src, len, flags);
  510. if (unlikely(!len)) {
  511. dev_dbg(chan2dev(chan), "prep_dma_memcpy: length is zero!\n");
  512. return NULL;
  513. }
  514. ctrla = ATC_DEFAULT_CTRLA;
  515. ctrlb = ATC_DEFAULT_CTRLB | ATC_IEN
  516. | ATC_SRC_ADDR_MODE_INCR
  517. | ATC_DST_ADDR_MODE_INCR
  518. | ATC_FC_MEM2MEM;
  519. /*
  520. * We can be a lot more clever here, but this should take care
  521. * of the most common optimization.
  522. */
  523. if (!((src | dest | len) & 3)) {
  524. ctrla |= ATC_SRC_WIDTH_WORD | ATC_DST_WIDTH_WORD;
  525. src_width = dst_width = 2;
  526. } else if (!((src | dest | len) & 1)) {
  527. ctrla |= ATC_SRC_WIDTH_HALFWORD | ATC_DST_WIDTH_HALFWORD;
  528. src_width = dst_width = 1;
  529. } else {
  530. ctrla |= ATC_SRC_WIDTH_BYTE | ATC_DST_WIDTH_BYTE;
  531. src_width = dst_width = 0;
  532. }
  533. for (offset = 0; offset < len; offset += xfer_count << src_width) {
  534. xfer_count = min_t(size_t, (len - offset) >> src_width,
  535. ATC_BTSIZE_MAX);
  536. desc = atc_desc_get(atchan);
  537. if (!desc)
  538. goto err_desc_get;
  539. desc->lli.saddr = src + offset;
  540. desc->lli.daddr = dest + offset;
  541. desc->lli.ctrla = ctrla | xfer_count;
  542. desc->lli.ctrlb = ctrlb;
  543. desc->txd.cookie = 0;
  544. if (!first) {
  545. first = desc;
  546. } else {
  547. /* inform the HW lli about chaining */
  548. prev->lli.dscr = desc->txd.phys;
  549. /* insert the link descriptor to the LD ring */
  550. list_add_tail(&desc->desc_node,
  551. &first->tx_list);
  552. }
  553. prev = desc;
  554. }
  555. /* First descriptor of the chain embedds additional information */
  556. first->txd.cookie = -EBUSY;
  557. first->len = len;
  558. /* set end-of-link to the last link descriptor of list*/
  559. set_desc_eol(desc);
  560. first->txd.flags = flags; /* client is in control of this ack */
  561. return &first->txd;
  562. err_desc_get:
  563. atc_desc_put(atchan, first);
  564. return NULL;
  565. }
  566. /**
  567. * atc_prep_slave_sg - prepare descriptors for a DMA_SLAVE transaction
  568. * @chan: DMA channel
  569. * @sgl: scatterlist to transfer to/from
  570. * @sg_len: number of entries in @scatterlist
  571. * @direction: DMA direction
  572. * @flags: tx descriptor status flags
  573. */
  574. static struct dma_async_tx_descriptor *
  575. atc_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
  576. unsigned int sg_len, enum dma_data_direction direction,
  577. unsigned long flags)
  578. {
  579. struct at_dma_chan *atchan = to_at_dma_chan(chan);
  580. struct at_dma_slave *atslave = chan->private;
  581. struct at_desc *first = NULL;
  582. struct at_desc *prev = NULL;
  583. u32 ctrla;
  584. u32 ctrlb;
  585. dma_addr_t reg;
  586. unsigned int reg_width;
  587. unsigned int mem_width;
  588. unsigned int i;
  589. struct scatterlist *sg;
  590. size_t total_len = 0;
  591. dev_vdbg(chan2dev(chan), "prep_slave_sg (%d): %s f0x%lx\n",
  592. sg_len,
  593. direction == DMA_TO_DEVICE ? "TO DEVICE" : "FROM DEVICE",
  594. flags);
  595. if (unlikely(!atslave || !sg_len)) {
  596. dev_dbg(chan2dev(chan), "prep_dma_memcpy: length is zero!\n");
  597. return NULL;
  598. }
  599. reg_width = atslave->reg_width;
  600. ctrla = ATC_DEFAULT_CTRLA | atslave->ctrla;
  601. ctrlb = ATC_DEFAULT_CTRLB | ATC_IEN;
  602. switch (direction) {
  603. case DMA_TO_DEVICE:
  604. ctrla |= ATC_DST_WIDTH(reg_width);
  605. ctrlb |= ATC_DST_ADDR_MODE_FIXED
  606. | ATC_SRC_ADDR_MODE_INCR
  607. | ATC_FC_MEM2PER;
  608. reg = atslave->tx_reg;
  609. for_each_sg(sgl, sg, sg_len, i) {
  610. struct at_desc *desc;
  611. u32 len;
  612. u32 mem;
  613. desc = atc_desc_get(atchan);
  614. if (!desc)
  615. goto err_desc_get;
  616. mem = sg_dma_address(sg);
  617. len = sg_dma_len(sg);
  618. mem_width = 2;
  619. if (unlikely(mem & 3 || len & 3))
  620. mem_width = 0;
  621. desc->lli.saddr = mem;
  622. desc->lli.daddr = reg;
  623. desc->lli.ctrla = ctrla
  624. | ATC_SRC_WIDTH(mem_width)
  625. | len >> mem_width;
  626. desc->lli.ctrlb = ctrlb;
  627. if (!first) {
  628. first = desc;
  629. } else {
  630. /* inform the HW lli about chaining */
  631. prev->lli.dscr = desc->txd.phys;
  632. /* insert the link descriptor to the LD ring */
  633. list_add_tail(&desc->desc_node,
  634. &first->tx_list);
  635. }
  636. prev = desc;
  637. total_len += len;
  638. }
  639. break;
  640. case DMA_FROM_DEVICE:
  641. ctrla |= ATC_SRC_WIDTH(reg_width);
  642. ctrlb |= ATC_DST_ADDR_MODE_INCR
  643. | ATC_SRC_ADDR_MODE_FIXED
  644. | ATC_FC_PER2MEM;
  645. reg = atslave->rx_reg;
  646. for_each_sg(sgl, sg, sg_len, i) {
  647. struct at_desc *desc;
  648. u32 len;
  649. u32 mem;
  650. desc = atc_desc_get(atchan);
  651. if (!desc)
  652. goto err_desc_get;
  653. mem = sg_dma_address(sg);
  654. len = sg_dma_len(sg);
  655. mem_width = 2;
  656. if (unlikely(mem & 3 || len & 3))
  657. mem_width = 0;
  658. desc->lli.saddr = reg;
  659. desc->lli.daddr = mem;
  660. desc->lli.ctrla = ctrla
  661. | ATC_DST_WIDTH(mem_width)
  662. | len >> reg_width;
  663. desc->lli.ctrlb = ctrlb;
  664. if (!first) {
  665. first = desc;
  666. } else {
  667. /* inform the HW lli about chaining */
  668. prev->lli.dscr = desc->txd.phys;
  669. /* insert the link descriptor to the LD ring */
  670. list_add_tail(&desc->desc_node,
  671. &first->tx_list);
  672. }
  673. prev = desc;
  674. total_len += len;
  675. }
  676. break;
  677. default:
  678. return NULL;
  679. }
  680. /* set end-of-link to the last link descriptor of list*/
  681. set_desc_eol(prev);
  682. /* First descriptor of the chain embedds additional information */
  683. first->txd.cookie = -EBUSY;
  684. first->len = total_len;
  685. /* first link descriptor of list is responsible of flags */
  686. first->txd.flags = flags; /* client is in control of this ack */
  687. return &first->txd;
  688. err_desc_get:
  689. dev_err(chan2dev(chan), "not enough descriptors available\n");
  690. atc_desc_put(atchan, first);
  691. return NULL;
  692. }
  693. /**
  694. * atc_dma_cyclic_check_values
  695. * Check for too big/unaligned periods and unaligned DMA buffer
  696. */
  697. static int
  698. atc_dma_cyclic_check_values(unsigned int reg_width, dma_addr_t buf_addr,
  699. size_t period_len, enum dma_data_direction direction)
  700. {
  701. if (period_len > (ATC_BTSIZE_MAX << reg_width))
  702. goto err_out;
  703. if (unlikely(period_len & ((1 << reg_width) - 1)))
  704. goto err_out;
  705. if (unlikely(buf_addr & ((1 << reg_width) - 1)))
  706. goto err_out;
  707. if (unlikely(!(direction & (DMA_TO_DEVICE | DMA_FROM_DEVICE))))
  708. goto err_out;
  709. return 0;
  710. err_out:
  711. return -EINVAL;
  712. }
  713. /**
  714. * atc_dma_cyclic_fill_desc - Fill one period decriptor
  715. */
  716. static int
  717. atc_dma_cyclic_fill_desc(struct at_dma_slave *atslave, struct at_desc *desc,
  718. unsigned int period_index, dma_addr_t buf_addr,
  719. size_t period_len, enum dma_data_direction direction)
  720. {
  721. u32 ctrla;
  722. unsigned int reg_width = atslave->reg_width;
  723. /* prepare common CRTLA value */
  724. ctrla = ATC_DEFAULT_CTRLA | atslave->ctrla
  725. | ATC_DST_WIDTH(reg_width)
  726. | ATC_SRC_WIDTH(reg_width)
  727. | period_len >> reg_width;
  728. switch (direction) {
  729. case DMA_TO_DEVICE:
  730. desc->lli.saddr = buf_addr + (period_len * period_index);
  731. desc->lli.daddr = atslave->tx_reg;
  732. desc->lli.ctrla = ctrla;
  733. desc->lli.ctrlb = ATC_DEFAULT_CTRLB
  734. | ATC_DST_ADDR_MODE_FIXED
  735. | ATC_SRC_ADDR_MODE_INCR
  736. | ATC_FC_MEM2PER;
  737. break;
  738. case DMA_FROM_DEVICE:
  739. desc->lli.saddr = atslave->rx_reg;
  740. desc->lli.daddr = buf_addr + (period_len * period_index);
  741. desc->lli.ctrla = ctrla;
  742. desc->lli.ctrlb = ATC_DEFAULT_CTRLB
  743. | ATC_DST_ADDR_MODE_INCR
  744. | ATC_SRC_ADDR_MODE_FIXED
  745. | ATC_FC_PER2MEM;
  746. break;
  747. default:
  748. return -EINVAL;
  749. }
  750. return 0;
  751. }
  752. /**
  753. * atc_prep_dma_cyclic - prepare the cyclic DMA transfer
  754. * @chan: the DMA channel to prepare
  755. * @buf_addr: physical DMA address where the buffer starts
  756. * @buf_len: total number of bytes for the entire buffer
  757. * @period_len: number of bytes for each period
  758. * @direction: transfer direction, to or from device
  759. */
  760. static struct dma_async_tx_descriptor *
  761. atc_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len,
  762. size_t period_len, enum dma_data_direction direction)
  763. {
  764. struct at_dma_chan *atchan = to_at_dma_chan(chan);
  765. struct at_dma_slave *atslave = chan->private;
  766. struct at_desc *first = NULL;
  767. struct at_desc *prev = NULL;
  768. unsigned long was_cyclic;
  769. unsigned int periods = buf_len / period_len;
  770. unsigned int i;
  771. dev_vdbg(chan2dev(chan), "prep_dma_cyclic: %s buf@0x%08x - %d (%d/%d)\n",
  772. direction == DMA_TO_DEVICE ? "TO DEVICE" : "FROM DEVICE",
  773. buf_addr,
  774. periods, buf_len, period_len);
  775. if (unlikely(!atslave || !buf_len || !period_len)) {
  776. dev_dbg(chan2dev(chan), "prep_dma_cyclic: length is zero!\n");
  777. return NULL;
  778. }
  779. was_cyclic = test_and_set_bit(ATC_IS_CYCLIC, &atchan->status);
  780. if (was_cyclic) {
  781. dev_dbg(chan2dev(chan), "prep_dma_cyclic: channel in use!\n");
  782. return NULL;
  783. }
  784. /* Check for too big/unaligned periods and unaligned DMA buffer */
  785. if (atc_dma_cyclic_check_values(atslave->reg_width, buf_addr,
  786. period_len, direction))
  787. goto err_out;
  788. /* build cyclic linked list */
  789. for (i = 0; i < periods; i++) {
  790. struct at_desc *desc;
  791. desc = atc_desc_get(atchan);
  792. if (!desc)
  793. goto err_desc_get;
  794. if (atc_dma_cyclic_fill_desc(atslave, desc, i, buf_addr,
  795. period_len, direction))
  796. goto err_desc_get;
  797. atc_desc_chain(&first, &prev, desc);
  798. }
  799. /* lets make a cyclic list */
  800. prev->lli.dscr = first->txd.phys;
  801. /* First descriptor of the chain embedds additional information */
  802. first->txd.cookie = -EBUSY;
  803. first->len = buf_len;
  804. return &first->txd;
  805. err_desc_get:
  806. dev_err(chan2dev(chan), "not enough descriptors available\n");
  807. atc_desc_put(atchan, first);
  808. err_out:
  809. clear_bit(ATC_IS_CYCLIC, &atchan->status);
  810. return NULL;
  811. }
  812. static int atc_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
  813. unsigned long arg)
  814. {
  815. struct at_dma_chan *atchan = to_at_dma_chan(chan);
  816. struct at_dma *atdma = to_at_dma(chan->device);
  817. struct at_desc *desc, *_desc;
  818. LIST_HEAD(list);
  819. /* Only supports DMA_TERMINATE_ALL */
  820. if (cmd != DMA_TERMINATE_ALL)
  821. return -ENXIO;
  822. /*
  823. * This is only called when something went wrong elsewhere, so
  824. * we don't really care about the data. Just disable the
  825. * channel. We still have to poll the channel enable bit due
  826. * to AHB/HSB limitations.
  827. */
  828. spin_lock_bh(&atchan->lock);
  829. dma_writel(atdma, CHDR, atchan->mask);
  830. /* confirm that this channel is disabled */
  831. while (dma_readl(atdma, CHSR) & atchan->mask)
  832. cpu_relax();
  833. /* active_list entries will end up before queued entries */
  834. list_splice_init(&atchan->queue, &list);
  835. list_splice_init(&atchan->active_list, &list);
  836. /* Flush all pending and queued descriptors */
  837. list_for_each_entry_safe(desc, _desc, &list, desc_node)
  838. atc_chain_complete(atchan, desc);
  839. /* if channel dedicated to cyclic operations, free it */
  840. clear_bit(ATC_IS_CYCLIC, &atchan->status);
  841. spin_unlock_bh(&atchan->lock);
  842. return 0;
  843. }
  844. /**
  845. * atc_tx_status - poll for transaction completion
  846. * @chan: DMA channel
  847. * @cookie: transaction identifier to check status of
  848. * @txstate: if not %NULL updated with transaction state
  849. *
  850. * If @txstate is passed in, upon return it reflect the driver
  851. * internal state and can be used with dma_async_is_complete() to check
  852. * the status of multiple cookies without re-checking hardware state.
  853. */
  854. static enum dma_status
  855. atc_tx_status(struct dma_chan *chan,
  856. dma_cookie_t cookie,
  857. struct dma_tx_state *txstate)
  858. {
  859. struct at_dma_chan *atchan = to_at_dma_chan(chan);
  860. dma_cookie_t last_used;
  861. dma_cookie_t last_complete;
  862. enum dma_status ret;
  863. spin_lock_bh(&atchan->lock);
  864. last_complete = atchan->completed_cookie;
  865. last_used = chan->cookie;
  866. ret = dma_async_is_complete(cookie, last_complete, last_used);
  867. if (ret != DMA_SUCCESS) {
  868. atc_cleanup_descriptors(atchan);
  869. last_complete = atchan->completed_cookie;
  870. last_used = chan->cookie;
  871. ret = dma_async_is_complete(cookie, last_complete, last_used);
  872. }
  873. spin_unlock_bh(&atchan->lock);
  874. dma_set_tx_state(txstate, last_complete, last_used, 0);
  875. dev_vdbg(chan2dev(chan), "tx_status: %d (d%d, u%d)\n",
  876. cookie, last_complete ? last_complete : 0,
  877. last_used ? last_used : 0);
  878. return ret;
  879. }
  880. /**
  881. * atc_issue_pending - try to finish work
  882. * @chan: target DMA channel
  883. */
  884. static void atc_issue_pending(struct dma_chan *chan)
  885. {
  886. struct at_dma_chan *atchan = to_at_dma_chan(chan);
  887. dev_vdbg(chan2dev(chan), "issue_pending\n");
  888. /* Not needed for cyclic transfers */
  889. if (test_bit(ATC_IS_CYCLIC, &atchan->status))
  890. return;
  891. spin_lock_bh(&atchan->lock);
  892. if (!atc_chan_is_enabled(atchan)) {
  893. atc_advance_work(atchan);
  894. }
  895. spin_unlock_bh(&atchan->lock);
  896. }
  897. /**
  898. * atc_alloc_chan_resources - allocate resources for DMA channel
  899. * @chan: allocate descriptor resources for this channel
  900. * @client: current client requesting the channel be ready for requests
  901. *
  902. * return - the number of allocated descriptors
  903. */
  904. static int atc_alloc_chan_resources(struct dma_chan *chan)
  905. {
  906. struct at_dma_chan *atchan = to_at_dma_chan(chan);
  907. struct at_dma *atdma = to_at_dma(chan->device);
  908. struct at_desc *desc;
  909. struct at_dma_slave *atslave;
  910. int i;
  911. u32 cfg;
  912. LIST_HEAD(tmp_list);
  913. dev_vdbg(chan2dev(chan), "alloc_chan_resources\n");
  914. /* ASSERT: channel is idle */
  915. if (atc_chan_is_enabled(atchan)) {
  916. dev_dbg(chan2dev(chan), "DMA channel not idle ?\n");
  917. return -EIO;
  918. }
  919. cfg = ATC_DEFAULT_CFG;
  920. atslave = chan->private;
  921. if (atslave) {
  922. /*
  923. * We need controller-specific data to set up slave
  924. * transfers.
  925. */
  926. BUG_ON(!atslave->dma_dev || atslave->dma_dev != atdma->dma_common.dev);
  927. /* if cfg configuration specified take it instad of default */
  928. if (atslave->cfg)
  929. cfg = atslave->cfg;
  930. }
  931. /* have we already been set up?
  932. * reconfigure channel but no need to reallocate descriptors */
  933. if (!list_empty(&atchan->free_list))
  934. return atchan->descs_allocated;
  935. /* Allocate initial pool of descriptors */
  936. for (i = 0; i < init_nr_desc_per_channel; i++) {
  937. desc = atc_alloc_descriptor(chan, GFP_KERNEL);
  938. if (!desc) {
  939. dev_err(atdma->dma_common.dev,
  940. "Only %d initial descriptors\n", i);
  941. break;
  942. }
  943. list_add_tail(&desc->desc_node, &tmp_list);
  944. }
  945. spin_lock_bh(&atchan->lock);
  946. atchan->descs_allocated = i;
  947. list_splice(&tmp_list, &atchan->free_list);
  948. atchan->completed_cookie = chan->cookie = 1;
  949. spin_unlock_bh(&atchan->lock);
  950. /* channel parameters */
  951. channel_writel(atchan, CFG, cfg);
  952. dev_dbg(chan2dev(chan),
  953. "alloc_chan_resources: allocated %d descriptors\n",
  954. atchan->descs_allocated);
  955. return atchan->descs_allocated;
  956. }
  957. /**
  958. * atc_free_chan_resources - free all channel resources
  959. * @chan: DMA channel
  960. */
  961. static void atc_free_chan_resources(struct dma_chan *chan)
  962. {
  963. struct at_dma_chan *atchan = to_at_dma_chan(chan);
  964. struct at_dma *atdma = to_at_dma(chan->device);
  965. struct at_desc *desc, *_desc;
  966. LIST_HEAD(list);
  967. dev_dbg(chan2dev(chan), "free_chan_resources: (descs allocated=%u)\n",
  968. atchan->descs_allocated);
  969. /* ASSERT: channel is idle */
  970. BUG_ON(!list_empty(&atchan->active_list));
  971. BUG_ON(!list_empty(&atchan->queue));
  972. BUG_ON(atc_chan_is_enabled(atchan));
  973. list_for_each_entry_safe(desc, _desc, &atchan->free_list, desc_node) {
  974. dev_vdbg(chan2dev(chan), " freeing descriptor %p\n", desc);
  975. list_del(&desc->desc_node);
  976. /* free link descriptor */
  977. dma_pool_free(atdma->dma_desc_pool, desc, desc->txd.phys);
  978. }
  979. list_splice_init(&atchan->free_list, &list);
  980. atchan->descs_allocated = 0;
  981. atchan->status = 0;
  982. dev_vdbg(chan2dev(chan), "free_chan_resources: done\n");
  983. }
  984. /*-- Module Management -----------------------------------------------*/
  985. /**
  986. * at_dma_off - disable DMA controller
  987. * @atdma: the Atmel HDAMC device
  988. */
  989. static void at_dma_off(struct at_dma *atdma)
  990. {
  991. dma_writel(atdma, EN, 0);
  992. /* disable all interrupts */
  993. dma_writel(atdma, EBCIDR, -1L);
  994. /* confirm that all channels are disabled */
  995. while (dma_readl(atdma, CHSR) & atdma->all_chan_mask)
  996. cpu_relax();
  997. }
  998. static int __init at_dma_probe(struct platform_device *pdev)
  999. {
  1000. struct at_dma_platform_data *pdata;
  1001. struct resource *io;
  1002. struct at_dma *atdma;
  1003. size_t size;
  1004. int irq;
  1005. int err;
  1006. int i;
  1007. /* get DMA Controller parameters from platform */
  1008. pdata = pdev->dev.platform_data;
  1009. if (!pdata || pdata->nr_channels > AT_DMA_MAX_NR_CHANNELS)
  1010. return -EINVAL;
  1011. io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1012. if (!io)
  1013. return -EINVAL;
  1014. irq = platform_get_irq(pdev, 0);
  1015. if (irq < 0)
  1016. return irq;
  1017. size = sizeof(struct at_dma);
  1018. size += pdata->nr_channels * sizeof(struct at_dma_chan);
  1019. atdma = kzalloc(size, GFP_KERNEL);
  1020. if (!atdma)
  1021. return -ENOMEM;
  1022. /* discover transaction capabilites from the platform data */
  1023. atdma->dma_common.cap_mask = pdata->cap_mask;
  1024. atdma->all_chan_mask = (1 << pdata->nr_channels) - 1;
  1025. size = io->end - io->start + 1;
  1026. if (!request_mem_region(io->start, size, pdev->dev.driver->name)) {
  1027. err = -EBUSY;
  1028. goto err_kfree;
  1029. }
  1030. atdma->regs = ioremap(io->start, size);
  1031. if (!atdma->regs) {
  1032. err = -ENOMEM;
  1033. goto err_release_r;
  1034. }
  1035. atdma->clk = clk_get(&pdev->dev, "dma_clk");
  1036. if (IS_ERR(atdma->clk)) {
  1037. err = PTR_ERR(atdma->clk);
  1038. goto err_clk;
  1039. }
  1040. clk_enable(atdma->clk);
  1041. /* force dma off, just in case */
  1042. at_dma_off(atdma);
  1043. err = request_irq(irq, at_dma_interrupt, 0, "at_hdmac", atdma);
  1044. if (err)
  1045. goto err_irq;
  1046. platform_set_drvdata(pdev, atdma);
  1047. /* create a pool of consistent memory blocks for hardware descriptors */
  1048. atdma->dma_desc_pool = dma_pool_create("at_hdmac_desc_pool",
  1049. &pdev->dev, sizeof(struct at_desc),
  1050. 4 /* word alignment */, 0);
  1051. if (!atdma->dma_desc_pool) {
  1052. dev_err(&pdev->dev, "No memory for descriptors dma pool\n");
  1053. err = -ENOMEM;
  1054. goto err_pool_create;
  1055. }
  1056. /* clear any pending interrupt */
  1057. while (dma_readl(atdma, EBCISR))
  1058. cpu_relax();
  1059. /* initialize channels related values */
  1060. INIT_LIST_HEAD(&atdma->dma_common.channels);
  1061. for (i = 0; i < pdata->nr_channels; i++, atdma->dma_common.chancnt++) {
  1062. struct at_dma_chan *atchan = &atdma->chan[i];
  1063. atchan->chan_common.device = &atdma->dma_common;
  1064. atchan->chan_common.cookie = atchan->completed_cookie = 1;
  1065. atchan->chan_common.chan_id = i;
  1066. list_add_tail(&atchan->chan_common.device_node,
  1067. &atdma->dma_common.channels);
  1068. atchan->ch_regs = atdma->regs + ch_regs(i);
  1069. spin_lock_init(&atchan->lock);
  1070. atchan->mask = 1 << i;
  1071. INIT_LIST_HEAD(&atchan->active_list);
  1072. INIT_LIST_HEAD(&atchan->queue);
  1073. INIT_LIST_HEAD(&atchan->free_list);
  1074. tasklet_init(&atchan->tasklet, atc_tasklet,
  1075. (unsigned long)atchan);
  1076. atc_enable_irq(atchan);
  1077. }
  1078. /* set base routines */
  1079. atdma->dma_common.device_alloc_chan_resources = atc_alloc_chan_resources;
  1080. atdma->dma_common.device_free_chan_resources = atc_free_chan_resources;
  1081. atdma->dma_common.device_tx_status = atc_tx_status;
  1082. atdma->dma_common.device_issue_pending = atc_issue_pending;
  1083. atdma->dma_common.dev = &pdev->dev;
  1084. /* set prep routines based on capability */
  1085. if (dma_has_cap(DMA_MEMCPY, atdma->dma_common.cap_mask))
  1086. atdma->dma_common.device_prep_dma_memcpy = atc_prep_dma_memcpy;
  1087. if (dma_has_cap(DMA_SLAVE, atdma->dma_common.cap_mask))
  1088. atdma->dma_common.device_prep_slave_sg = atc_prep_slave_sg;
  1089. if (dma_has_cap(DMA_CYCLIC, atdma->dma_common.cap_mask))
  1090. atdma->dma_common.device_prep_dma_cyclic = atc_prep_dma_cyclic;
  1091. if (dma_has_cap(DMA_SLAVE, atdma->dma_common.cap_mask) ||
  1092. dma_has_cap(DMA_CYCLIC, atdma->dma_common.cap_mask))
  1093. atdma->dma_common.device_control = atc_control;
  1094. dma_writel(atdma, EN, AT_DMA_ENABLE);
  1095. dev_info(&pdev->dev, "Atmel AHB DMA Controller ( %s%s), %d channels\n",
  1096. dma_has_cap(DMA_MEMCPY, atdma->dma_common.cap_mask) ? "cpy " : "",
  1097. dma_has_cap(DMA_SLAVE, atdma->dma_common.cap_mask) ? "slave " : "",
  1098. atdma->dma_common.chancnt);
  1099. dma_async_device_register(&atdma->dma_common);
  1100. return 0;
  1101. err_pool_create:
  1102. platform_set_drvdata(pdev, NULL);
  1103. free_irq(platform_get_irq(pdev, 0), atdma);
  1104. err_irq:
  1105. clk_disable(atdma->clk);
  1106. clk_put(atdma->clk);
  1107. err_clk:
  1108. iounmap(atdma->regs);
  1109. atdma->regs = NULL;
  1110. err_release_r:
  1111. release_mem_region(io->start, size);
  1112. err_kfree:
  1113. kfree(atdma);
  1114. return err;
  1115. }
  1116. static int __exit at_dma_remove(struct platform_device *pdev)
  1117. {
  1118. struct at_dma *atdma = platform_get_drvdata(pdev);
  1119. struct dma_chan *chan, *_chan;
  1120. struct resource *io;
  1121. at_dma_off(atdma);
  1122. dma_async_device_unregister(&atdma->dma_common);
  1123. dma_pool_destroy(atdma->dma_desc_pool);
  1124. platform_set_drvdata(pdev, NULL);
  1125. free_irq(platform_get_irq(pdev, 0), atdma);
  1126. list_for_each_entry_safe(chan, _chan, &atdma->dma_common.channels,
  1127. device_node) {
  1128. struct at_dma_chan *atchan = to_at_dma_chan(chan);
  1129. /* Disable interrupts */
  1130. atc_disable_irq(atchan);
  1131. tasklet_disable(&atchan->tasklet);
  1132. tasklet_kill(&atchan->tasklet);
  1133. list_del(&chan->device_node);
  1134. }
  1135. clk_disable(atdma->clk);
  1136. clk_put(atdma->clk);
  1137. iounmap(atdma->regs);
  1138. atdma->regs = NULL;
  1139. io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1140. release_mem_region(io->start, io->end - io->start + 1);
  1141. kfree(atdma);
  1142. return 0;
  1143. }
  1144. static void at_dma_shutdown(struct platform_device *pdev)
  1145. {
  1146. struct at_dma *atdma = platform_get_drvdata(pdev);
  1147. at_dma_off(platform_get_drvdata(pdev));
  1148. clk_disable(atdma->clk);
  1149. }
  1150. static int at_dma_suspend_noirq(struct device *dev)
  1151. {
  1152. struct platform_device *pdev = to_platform_device(dev);
  1153. struct at_dma *atdma = platform_get_drvdata(pdev);
  1154. at_dma_off(platform_get_drvdata(pdev));
  1155. clk_disable(atdma->clk);
  1156. return 0;
  1157. }
  1158. static int at_dma_resume_noirq(struct device *dev)
  1159. {
  1160. struct platform_device *pdev = to_platform_device(dev);
  1161. struct at_dma *atdma = platform_get_drvdata(pdev);
  1162. clk_enable(atdma->clk);
  1163. dma_writel(atdma, EN, AT_DMA_ENABLE);
  1164. return 0;
  1165. }
  1166. static const struct dev_pm_ops at_dma_dev_pm_ops = {
  1167. .suspend_noirq = at_dma_suspend_noirq,
  1168. .resume_noirq = at_dma_resume_noirq,
  1169. };
  1170. static struct platform_driver at_dma_driver = {
  1171. .remove = __exit_p(at_dma_remove),
  1172. .shutdown = at_dma_shutdown,
  1173. .driver = {
  1174. .name = "at_hdmac",
  1175. .pm = &at_dma_dev_pm_ops,
  1176. },
  1177. };
  1178. static int __init at_dma_init(void)
  1179. {
  1180. return platform_driver_probe(&at_dma_driver, at_dma_probe);
  1181. }
  1182. subsys_initcall(at_dma_init);
  1183. static void __exit at_dma_exit(void)
  1184. {
  1185. platform_driver_unregister(&at_dma_driver);
  1186. }
  1187. module_exit(at_dma_exit);
  1188. MODULE_DESCRIPTION("Atmel AHB DMA Controller driver");
  1189. MODULE_AUTHOR("Nicolas Ferre <nicolas.ferre@atmel.com>");
  1190. MODULE_LICENSE("GPL");
  1191. MODULE_ALIAS("platform:at_hdmac");