2 * Driver for STM32 DMA controller
4 * Inspired by dma-jz4740.c and tegra20-apb-dma.c
6 * Copyright (C) M'boumba Cedric Madianga 2015
7 * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
9 * License terms: GNU General Public License (GPL), version 2
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/dmaengine.h>
15 #include <linux/dma-mapping.h>
16 #include <linux/err.h>
17 #include <linux/init.h>
18 #include <linux/jiffies.h>
19 #include <linux/list.h>
20 #include <linux/module.h>
22 #include <linux/of_device.h>
23 #include <linux/of_dma.h>
24 #include <linux/platform_device.h>
25 #include <linux/reset.h>
26 #include <linux/sched.h>
27 #include <linux/slab.h>
31 #define STM32_DMA_LISR 0x0000 /* DMA Low Int Status Reg */
32 #define STM32_DMA_HISR 0x0004 /* DMA High Int Status Reg */
33 #define STM32_DMA_LIFCR 0x0008 /* DMA Low Int Flag Clear Reg */
34 #define STM32_DMA_HIFCR 0x000c /* DMA High Int Flag Clear Reg */
35 #define STM32_DMA_TCI BIT(5) /* Transfer Complete Interrupt */
36 #define STM32_DMA_TEI BIT(3) /* Transfer Error Interrupt */
37 #define STM32_DMA_DMEI BIT(2) /* Direct Mode Error Interrupt */
38 #define STM32_DMA_FEI BIT(0) /* FIFO Error Interrupt */
40 /* DMA Stream x Configuration Register */
41 #define STM32_DMA_SCR(x) (0x0010 + 0x18 * (x)) /* x = 0..7 */
42 #define STM32_DMA_SCR_REQ(n) ((n & 0x7) << 25)
43 #define STM32_DMA_SCR_MBURST_MASK GENMASK(24, 23)
44 #define STM32_DMA_SCR_MBURST(n) ((n & 0x3) << 23)
45 #define STM32_DMA_SCR_PBURST_MASK GENMASK(22, 21)
46 #define STM32_DMA_SCR_PBURST(n) ((n & 0x3) << 21)
47 #define STM32_DMA_SCR_PL_MASK GENMASK(17, 16)
48 #define STM32_DMA_SCR_PL(n) ((n & 0x3) << 16)
49 #define STM32_DMA_SCR_MSIZE_MASK GENMASK(14, 13)
50 #define STM32_DMA_SCR_MSIZE(n) ((n & 0x3) << 13)
51 #define STM32_DMA_SCR_PSIZE_MASK GENMASK(12, 11)
52 #define STM32_DMA_SCR_PSIZE(n) ((n & 0x3) << 11)
53 #define STM32_DMA_SCR_PSIZE_GET(n) ((n & STM32_DMA_SCR_PSIZE_MASK) >> 11)
54 #define STM32_DMA_SCR_DIR_MASK GENMASK(7, 6)
55 #define STM32_DMA_SCR_DIR(n) ((n & 0x3) << 6)
56 #define STM32_DMA_SCR_CT BIT(19) /* Target in double buffer */
57 #define STM32_DMA_SCR_DBM BIT(18) /* Double Buffer Mode */
58 #define STM32_DMA_SCR_PINCOS BIT(15) /* Peripheral inc offset size */
59 #define STM32_DMA_SCR_MINC BIT(10) /* Memory increment mode */
60 #define STM32_DMA_SCR_PINC BIT(9) /* Peripheral increment mode */
61 #define STM32_DMA_SCR_CIRC BIT(8) /* Circular mode */
62 #define STM32_DMA_SCR_PFCTRL BIT(5) /* Peripheral Flow Controller */
63 #define STM32_DMA_SCR_TCIE BIT(4) /* Transfer Cplete Int Enable*/
64 #define STM32_DMA_SCR_TEIE BIT(2) /* Transfer Error Int Enable */
65 #define STM32_DMA_SCR_DMEIE BIT(1) /* Direct Mode Err Int Enable */
66 #define STM32_DMA_SCR_EN BIT(0) /* Stream Enable */
67 #define STM32_DMA_SCR_CFG_MASK (STM32_DMA_SCR_PINC \
68 | STM32_DMA_SCR_MINC \
69 | STM32_DMA_SCR_PINCOS \
70 | STM32_DMA_SCR_PL_MASK)
71 #define STM32_DMA_SCR_IRQ_MASK (STM32_DMA_SCR_TCIE \
72 | STM32_DMA_SCR_TEIE \
73 | STM32_DMA_SCR_DMEIE)
75 /* DMA Stream x number of data register */
76 #define STM32_DMA_SNDTR(x) (0x0014 + 0x18 * (x))
78 /* DMA stream peripheral address register */
79 #define STM32_DMA_SPAR(x) (0x0018 + 0x18 * (x))
81 /* DMA stream x memory 0 address register */
82 #define STM32_DMA_SM0AR(x) (0x001c + 0x18 * (x))
84 /* DMA stream x memory 1 address register */
85 #define STM32_DMA_SM1AR(x) (0x0020 + 0x18 * (x))
87 /* DMA stream x FIFO control register */
88 #define STM32_DMA_SFCR(x) (0x0024 + 0x18 * (x))
89 #define STM32_DMA_SFCR_FTH_MASK GENMASK(1, 0)
90 #define STM32_DMA_SFCR_FTH(n) (n & STM32_DMA_SFCR_FTH_MASK)
91 #define STM32_DMA_SFCR_FEIE BIT(7) /* FIFO error interrupt enable */
92 #define STM32_DMA_SFCR_DMDIS BIT(2) /* Direct mode disable */
93 #define STM32_DMA_SFCR_MASK (STM32_DMA_SFCR_FEIE \
94 | STM32_DMA_SFCR_DMDIS)
97 #define STM32_DMA_DEV_TO_MEM 0x00
98 #define STM32_DMA_MEM_TO_DEV 0x01
99 #define STM32_DMA_MEM_TO_MEM 0x02
101 /* DMA priority level */
102 #define STM32_DMA_PRIORITY_LOW 0x00
103 #define STM32_DMA_PRIORITY_MEDIUM 0x01
104 #define STM32_DMA_PRIORITY_HIGH 0x02
105 #define STM32_DMA_PRIORITY_VERY_HIGH 0x03
107 /* DMA FIFO threshold selection */
108 #define STM32_DMA_FIFO_THRESHOLD_1QUARTERFULL 0x00
109 #define STM32_DMA_FIFO_THRESHOLD_HALFFULL 0x01
110 #define STM32_DMA_FIFO_THRESHOLD_3QUARTERSFULL 0x02
111 #define STM32_DMA_FIFO_THRESHOLD_FULL 0x03
113 #define STM32_DMA_MAX_DATA_ITEMS 0xffff
114 #define STM32_DMA_MAX_CHANNELS 0x08
115 #define STM32_DMA_MAX_REQUEST_ID 0x08
116 #define STM32_DMA_MAX_DATA_PARAM 0x03
118 enum stm32_dma_width {
124 enum stm32_dma_burst_size {
125 STM32_DMA_BURST_SINGLE,
126 STM32_DMA_BURST_INCR4,
127 STM32_DMA_BURST_INCR8,
128 STM32_DMA_BURST_INCR16,
131 struct stm32_dma_cfg {
138 struct stm32_dma_chan_reg {
151 struct stm32_dma_sg_req {
153 struct stm32_dma_chan_reg chan_reg;
156 struct stm32_dma_desc {
157 struct virt_dma_desc vdesc;
160 struct stm32_dma_sg_req sg_req[];
163 struct stm32_dma_chan {
164 struct virt_dma_chan vchan;
169 struct stm32_dma_desc *desc;
171 struct dma_slave_config dma_sconfig;
172 struct stm32_dma_chan_reg chan_reg;
175 struct stm32_dma_device {
176 struct dma_device ddev;
179 struct reset_control *rst;
181 struct stm32_dma_chan chan[STM32_DMA_MAX_CHANNELS];
184 static struct stm32_dma_device *stm32_dma_get_dev(struct stm32_dma_chan *chan)
186 return container_of(chan->vchan.chan.device, struct stm32_dma_device,
190 static struct stm32_dma_chan *to_stm32_dma_chan(struct dma_chan *c)
192 return container_of(c, struct stm32_dma_chan, vchan.chan);
195 static struct stm32_dma_desc *to_stm32_dma_desc(struct virt_dma_desc *vdesc)
197 return container_of(vdesc, struct stm32_dma_desc, vdesc);
200 static struct device *chan2dev(struct stm32_dma_chan *chan)
202 return &chan->vchan.chan.dev->device;
205 static u32 stm32_dma_read(struct stm32_dma_device *dmadev, u32 reg)
207 return readl_relaxed(dmadev->base + reg);
210 static void stm32_dma_write(struct stm32_dma_device *dmadev, u32 reg, u32 val)
212 writel_relaxed(val, dmadev->base + reg);
215 static struct stm32_dma_desc *stm32_dma_alloc_desc(u32 num_sgs)
217 return kzalloc(sizeof(struct stm32_dma_desc) +
218 sizeof(struct stm32_dma_sg_req) * num_sgs, GFP_NOWAIT);
221 static int stm32_dma_get_width(struct stm32_dma_chan *chan,
222 enum dma_slave_buswidth width)
225 case DMA_SLAVE_BUSWIDTH_1_BYTE:
226 return STM32_DMA_BYTE;
227 case DMA_SLAVE_BUSWIDTH_2_BYTES:
228 return STM32_DMA_HALF_WORD;
229 case DMA_SLAVE_BUSWIDTH_4_BYTES:
230 return STM32_DMA_WORD;
232 dev_err(chan2dev(chan), "Dma bus width not supported\n");
237 static int stm32_dma_get_burst(struct stm32_dma_chan *chan, u32 maxburst)
242 return STM32_DMA_BURST_SINGLE;
244 return STM32_DMA_BURST_INCR4;
246 return STM32_DMA_BURST_INCR8;
248 return STM32_DMA_BURST_INCR16;
250 dev_err(chan2dev(chan), "Dma burst size not supported\n");
255 static void stm32_dma_set_fifo_config(struct stm32_dma_chan *chan,
256 u32 src_maxburst, u32 dst_maxburst)
258 chan->chan_reg.dma_sfcr &= ~STM32_DMA_SFCR_MASK;
259 chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_DMEIE;
261 if ((!src_maxburst) && (!dst_maxburst)) {
262 /* Using direct mode */
263 chan->chan_reg.dma_scr |= STM32_DMA_SCR_DMEIE;
265 /* Using FIFO mode */
266 chan->chan_reg.dma_sfcr |= STM32_DMA_SFCR_MASK;
270 static int stm32_dma_slave_config(struct dma_chan *c,
271 struct dma_slave_config *config)
273 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
275 memcpy(&chan->dma_sconfig, config, sizeof(*config));
277 chan->config_init = true;
282 static u32 stm32_dma_irq_status(struct stm32_dma_chan *chan)
284 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
288 * Read "flags" from DMA_xISR register corresponding to the selected
289 * DMA channel at the correct bit offset inside that register.
291 * If (ch % 4) is 2 or 3, left shift the mask by 16 bits.
292 * If (ch % 4) is 1 or 3, additionally left shift the mask by 6 bits.
296 dma_isr = stm32_dma_read(dmadev, STM32_DMA_HISR);
298 dma_isr = stm32_dma_read(dmadev, STM32_DMA_LISR);
300 flags = dma_isr >> (((chan->id & 2) << 3) | ((chan->id & 1) * 6));
305 static void stm32_dma_irq_clear(struct stm32_dma_chan *chan, u32 flags)
307 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
311 * Write "flags" to the DMA_xIFCR register corresponding to the selected
312 * DMA channel at the correct bit offset inside that register.
314 * If (ch % 4) is 2 or 3, left shift the mask by 16 bits.
315 * If (ch % 4) is 1 or 3, additionally left shift the mask by 6 bits.
317 dma_ifcr = flags << (((chan->id & 2) << 3) | ((chan->id & 1) * 6));
320 stm32_dma_write(dmadev, STM32_DMA_HIFCR, dma_ifcr);
322 stm32_dma_write(dmadev, STM32_DMA_LIFCR, dma_ifcr);
325 static int stm32_dma_disable_chan(struct stm32_dma_chan *chan)
327 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
328 unsigned long timeout = jiffies + msecs_to_jiffies(5000);
332 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(id));
334 if (dma_scr & STM32_DMA_SCR_EN) {
335 dma_scr &= ~STM32_DMA_SCR_EN;
336 stm32_dma_write(dmadev, STM32_DMA_SCR(id), dma_scr);
339 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(id));
340 dma_scr &= STM32_DMA_SCR_EN;
344 if (time_after_eq(jiffies, timeout)) {
345 dev_err(chan2dev(chan), "%s: timeout!\n",
356 static void stm32_dma_stop(struct stm32_dma_chan *chan)
358 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
359 u32 dma_scr, dma_sfcr, status;
362 /* Disable interrupts */
363 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
364 dma_scr &= ~STM32_DMA_SCR_IRQ_MASK;
365 stm32_dma_write(dmadev, STM32_DMA_SCR(chan->id), dma_scr);
366 dma_sfcr = stm32_dma_read(dmadev, STM32_DMA_SFCR(chan->id));
367 dma_sfcr &= ~STM32_DMA_SFCR_FEIE;
368 stm32_dma_write(dmadev, STM32_DMA_SFCR(chan->id), dma_sfcr);
371 ret = stm32_dma_disable_chan(chan);
375 /* Clear interrupt status if it is there */
376 status = stm32_dma_irq_status(chan);
378 dev_dbg(chan2dev(chan), "%s(): clearing interrupt: 0x%08x\n",
380 stm32_dma_irq_clear(chan, status);
386 static int stm32_dma_terminate_all(struct dma_chan *c)
388 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
392 spin_lock_irqsave(&chan->vchan.lock, flags);
395 stm32_dma_stop(chan);
399 vchan_get_all_descriptors(&chan->vchan, &head);
400 spin_unlock_irqrestore(&chan->vchan.lock, flags);
401 vchan_dma_desc_free_list(&chan->vchan, &head);
406 static void stm32_dma_dump_reg(struct stm32_dma_chan *chan)
408 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
409 u32 scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
410 u32 ndtr = stm32_dma_read(dmadev, STM32_DMA_SNDTR(chan->id));
411 u32 spar = stm32_dma_read(dmadev, STM32_DMA_SPAR(chan->id));
412 u32 sm0ar = stm32_dma_read(dmadev, STM32_DMA_SM0AR(chan->id));
413 u32 sm1ar = stm32_dma_read(dmadev, STM32_DMA_SM1AR(chan->id));
414 u32 sfcr = stm32_dma_read(dmadev, STM32_DMA_SFCR(chan->id));
416 dev_dbg(chan2dev(chan), "SCR: 0x%08x\n", scr);
417 dev_dbg(chan2dev(chan), "NDTR: 0x%08x\n", ndtr);
418 dev_dbg(chan2dev(chan), "SPAR: 0x%08x\n", spar);
419 dev_dbg(chan2dev(chan), "SM0AR: 0x%08x\n", sm0ar);
420 dev_dbg(chan2dev(chan), "SM1AR: 0x%08x\n", sm1ar);
421 dev_dbg(chan2dev(chan), "SFCR: 0x%08x\n", sfcr);
424 static int stm32_dma_start_transfer(struct stm32_dma_chan *chan)
426 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
427 struct virt_dma_desc *vdesc;
428 struct stm32_dma_sg_req *sg_req;
429 struct stm32_dma_chan_reg *reg;
433 ret = stm32_dma_disable_chan(chan);
438 vdesc = vchan_next_desc(&chan->vchan);
442 chan->desc = to_stm32_dma_desc(vdesc);
446 if (chan->next_sg == chan->desc->num_sgs)
449 sg_req = &chan->desc->sg_req[chan->next_sg];
450 reg = &sg_req->chan_reg;
452 stm32_dma_write(dmadev, STM32_DMA_SCR(chan->id), reg->dma_scr);
453 stm32_dma_write(dmadev, STM32_DMA_SPAR(chan->id), reg->dma_spar);
454 stm32_dma_write(dmadev, STM32_DMA_SM0AR(chan->id), reg->dma_sm0ar);
455 stm32_dma_write(dmadev, STM32_DMA_SFCR(chan->id), reg->dma_sfcr);
456 stm32_dma_write(dmadev, STM32_DMA_SM1AR(chan->id), reg->dma_sm1ar);
457 stm32_dma_write(dmadev, STM32_DMA_SNDTR(chan->id), reg->dma_sndtr);
461 /* Clear interrupt status if it is there */
462 status = stm32_dma_irq_status(chan);
464 stm32_dma_irq_clear(chan, status);
466 stm32_dma_dump_reg(chan);
469 reg->dma_scr |= STM32_DMA_SCR_EN;
470 stm32_dma_write(dmadev, STM32_DMA_SCR(chan->id), reg->dma_scr);
477 static void stm32_dma_configure_next_sg(struct stm32_dma_chan *chan)
479 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
480 struct stm32_dma_sg_req *sg_req;
481 u32 dma_scr, dma_sm0ar, dma_sm1ar, id;
484 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(id));
486 if (dma_scr & STM32_DMA_SCR_DBM) {
487 if (chan->next_sg == chan->desc->num_sgs)
490 sg_req = &chan->desc->sg_req[chan->next_sg];
492 if (dma_scr & STM32_DMA_SCR_CT) {
493 dma_sm0ar = sg_req->chan_reg.dma_sm0ar;
494 stm32_dma_write(dmadev, STM32_DMA_SM0AR(id), dma_sm0ar);
495 dev_dbg(chan2dev(chan), "CT=1 <=> SM0AR: 0x%08x\n",
496 stm32_dma_read(dmadev, STM32_DMA_SM0AR(id)));
498 dma_sm1ar = sg_req->chan_reg.dma_sm1ar;
499 stm32_dma_write(dmadev, STM32_DMA_SM1AR(id), dma_sm1ar);
500 dev_dbg(chan2dev(chan), "CT=0 <=> SM1AR: 0x%08x\n",
501 stm32_dma_read(dmadev, STM32_DMA_SM1AR(id)));
508 static void stm32_dma_handle_chan_done(struct stm32_dma_chan *chan)
511 if (chan->desc->cyclic) {
512 vchan_cyclic_callback(&chan->desc->vdesc);
513 stm32_dma_configure_next_sg(chan);
516 if (chan->next_sg == chan->desc->num_sgs) {
517 list_del(&chan->desc->vdesc.node);
518 vchan_cookie_complete(&chan->desc->vdesc);
521 stm32_dma_start_transfer(chan);
526 static irqreturn_t stm32_dma_chan_irq(int irq, void *devid)
528 struct stm32_dma_chan *chan = devid;
529 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
532 spin_lock(&chan->vchan.lock);
534 status = stm32_dma_irq_status(chan);
535 scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
537 if ((status & STM32_DMA_TCI) && (scr & STM32_DMA_SCR_TCIE)) {
538 stm32_dma_irq_clear(chan, STM32_DMA_TCI);
539 stm32_dma_handle_chan_done(chan);
542 stm32_dma_irq_clear(chan, status);
543 dev_err(chan2dev(chan), "DMA error: status=0x%08x\n", status);
546 spin_unlock(&chan->vchan.lock);
551 static void stm32_dma_issue_pending(struct dma_chan *c)
553 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
557 spin_lock_irqsave(&chan->vchan.lock, flags);
559 if (vchan_issue_pending(&chan->vchan) && !chan->desc) {
560 ret = stm32_dma_start_transfer(chan);
561 if ((!ret) && (chan->desc->cyclic))
562 stm32_dma_configure_next_sg(chan);
565 spin_unlock_irqrestore(&chan->vchan.lock, flags);
568 static int stm32_dma_set_xfer_param(struct stm32_dma_chan *chan,
569 enum dma_transfer_direction direction,
570 enum dma_slave_buswidth *buswidth)
572 enum dma_slave_buswidth src_addr_width, dst_addr_width;
573 int src_bus_width, dst_bus_width;
574 int src_burst_size, dst_burst_size;
575 u32 src_maxburst, dst_maxburst;
579 src_addr_width = chan->dma_sconfig.src_addr_width;
580 dst_addr_width = chan->dma_sconfig.dst_addr_width;
581 src_maxburst = chan->dma_sconfig.src_maxburst;
582 dst_maxburst = chan->dma_sconfig.dst_maxburst;
583 src_addr = chan->dma_sconfig.src_addr;
587 dst_bus_width = stm32_dma_get_width(chan, dst_addr_width);
588 if (dst_bus_width < 0)
589 return dst_bus_width;
591 dst_burst_size = stm32_dma_get_burst(chan, dst_maxburst);
592 if (dst_burst_size < 0)
593 return dst_burst_size;
596 src_addr_width = dst_addr_width;
598 src_bus_width = stm32_dma_get_width(chan, src_addr_width);
599 if (src_bus_width < 0)
600 return src_bus_width;
602 src_burst_size = stm32_dma_get_burst(chan, src_maxburst);
603 if (src_burst_size < 0)
604 return src_burst_size;
606 dma_scr = STM32_DMA_SCR_DIR(STM32_DMA_MEM_TO_DEV) |
607 STM32_DMA_SCR_PSIZE(dst_bus_width) |
608 STM32_DMA_SCR_MSIZE(src_bus_width) |
609 STM32_DMA_SCR_PBURST(dst_burst_size) |
610 STM32_DMA_SCR_MBURST(src_burst_size);
612 chan->chan_reg.dma_spar = chan->dma_sconfig.dst_addr;
613 *buswidth = dst_addr_width;
617 src_bus_width = stm32_dma_get_width(chan, src_addr_width);
618 if (src_bus_width < 0)
619 return src_bus_width;
621 src_burst_size = stm32_dma_get_burst(chan, src_maxburst);
622 if (src_burst_size < 0)
623 return src_burst_size;
626 dst_addr_width = src_addr_width;
628 dst_bus_width = stm32_dma_get_width(chan, dst_addr_width);
629 if (dst_bus_width < 0)
630 return dst_bus_width;
632 dst_burst_size = stm32_dma_get_burst(chan, dst_maxburst);
633 if (dst_burst_size < 0)
634 return dst_burst_size;
636 dma_scr = STM32_DMA_SCR_DIR(STM32_DMA_DEV_TO_MEM) |
637 STM32_DMA_SCR_PSIZE(src_bus_width) |
638 STM32_DMA_SCR_MSIZE(dst_bus_width) |
639 STM32_DMA_SCR_PBURST(src_burst_size) |
640 STM32_DMA_SCR_MBURST(dst_burst_size);
642 chan->chan_reg.dma_spar = chan->dma_sconfig.src_addr;
643 *buswidth = chan->dma_sconfig.src_addr_width;
647 dev_err(chan2dev(chan), "Dma direction is not supported\n");
651 stm32_dma_set_fifo_config(chan, src_maxburst, dst_maxburst);
653 chan->chan_reg.dma_scr &= ~(STM32_DMA_SCR_DIR_MASK |
654 STM32_DMA_SCR_PSIZE_MASK | STM32_DMA_SCR_MSIZE_MASK |
655 STM32_DMA_SCR_PBURST_MASK | STM32_DMA_SCR_MBURST_MASK);
656 chan->chan_reg.dma_scr |= dma_scr;
661 static void stm32_dma_clear_reg(struct stm32_dma_chan_reg *regs)
663 memset(regs, 0, sizeof(struct stm32_dma_chan_reg));
666 static struct dma_async_tx_descriptor *stm32_dma_prep_slave_sg(
667 struct dma_chan *c, struct scatterlist *sgl,
668 u32 sg_len, enum dma_transfer_direction direction,
669 unsigned long flags, void *context)
671 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
672 struct stm32_dma_desc *desc;
673 struct scatterlist *sg;
674 enum dma_slave_buswidth buswidth;
678 if (!chan->config_init) {
679 dev_err(chan2dev(chan), "dma channel is not configured\n");
684 dev_err(chan2dev(chan), "Invalid segment length %d\n", sg_len);
688 desc = stm32_dma_alloc_desc(sg_len);
692 ret = stm32_dma_set_xfer_param(chan, direction, &buswidth);
696 /* Set peripheral flow controller */
697 if (chan->dma_sconfig.device_fc)
698 chan->chan_reg.dma_scr |= STM32_DMA_SCR_PFCTRL;
700 chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_PFCTRL;
702 for_each_sg(sgl, sg, sg_len, i) {
703 desc->sg_req[i].len = sg_dma_len(sg);
705 nb_data_items = desc->sg_req[i].len / buswidth;
706 if (nb_data_items > STM32_DMA_MAX_DATA_ITEMS) {
707 dev_err(chan2dev(chan), "nb items not supported\n");
711 stm32_dma_clear_reg(&desc->sg_req[i].chan_reg);
712 desc->sg_req[i].chan_reg.dma_scr = chan->chan_reg.dma_scr;
713 desc->sg_req[i].chan_reg.dma_sfcr = chan->chan_reg.dma_sfcr;
714 desc->sg_req[i].chan_reg.dma_spar = chan->chan_reg.dma_spar;
715 desc->sg_req[i].chan_reg.dma_sm0ar = sg_dma_address(sg);
716 desc->sg_req[i].chan_reg.dma_sm1ar = sg_dma_address(sg);
717 desc->sg_req[i].chan_reg.dma_sndtr = nb_data_items;
720 desc->num_sgs = sg_len;
721 desc->cyclic = false;
723 return vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
730 static struct dma_async_tx_descriptor *stm32_dma_prep_dma_cyclic(
731 struct dma_chan *c, dma_addr_t buf_addr, size_t buf_len,
732 size_t period_len, enum dma_transfer_direction direction,
735 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
736 struct stm32_dma_desc *desc;
737 enum dma_slave_buswidth buswidth;
738 u32 num_periods, nb_data_items;
741 if (!buf_len || !period_len) {
742 dev_err(chan2dev(chan), "Invalid buffer/period len\n");
746 if (!chan->config_init) {
747 dev_err(chan2dev(chan), "dma channel is not configured\n");
751 if (buf_len % period_len) {
752 dev_err(chan2dev(chan), "buf_len not multiple of period_len\n");
757 * We allow to take more number of requests till DMA is
758 * not started. The driver will loop over all requests.
759 * Once DMA is started then new requests can be queued only after
760 * terminating the DMA.
763 dev_err(chan2dev(chan), "Request not allowed when dma busy\n");
767 ret = stm32_dma_set_xfer_param(chan, direction, &buswidth);
771 nb_data_items = period_len / buswidth;
772 if (nb_data_items > STM32_DMA_MAX_DATA_ITEMS) {
773 dev_err(chan2dev(chan), "number of items not supported\n");
777 /* Enable Circular mode or double buffer mode */
778 if (buf_len == period_len)
779 chan->chan_reg.dma_scr |= STM32_DMA_SCR_CIRC;
781 chan->chan_reg.dma_scr |= STM32_DMA_SCR_DBM;
783 /* Clear periph ctrl if client set it */
784 chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_PFCTRL;
786 num_periods = buf_len / period_len;
788 desc = stm32_dma_alloc_desc(num_periods);
792 for (i = 0; i < num_periods; i++) {
793 desc->sg_req[i].len = period_len;
795 stm32_dma_clear_reg(&desc->sg_req[i].chan_reg);
796 desc->sg_req[i].chan_reg.dma_scr = chan->chan_reg.dma_scr;
797 desc->sg_req[i].chan_reg.dma_sfcr = chan->chan_reg.dma_sfcr;
798 desc->sg_req[i].chan_reg.dma_spar = chan->chan_reg.dma_spar;
799 desc->sg_req[i].chan_reg.dma_sm0ar = buf_addr;
800 desc->sg_req[i].chan_reg.dma_sm1ar = buf_addr;
801 desc->sg_req[i].chan_reg.dma_sndtr = nb_data_items;
802 buf_addr += period_len;
805 desc->num_sgs = num_periods;
808 return vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
811 static struct dma_async_tx_descriptor *stm32_dma_prep_dma_memcpy(
812 struct dma_chan *c, dma_addr_t dest,
813 dma_addr_t src, size_t len, unsigned long flags)
815 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
817 struct stm32_dma_desc *desc;
818 size_t xfer_count, offset;
821 num_sgs = DIV_ROUND_UP(len, STM32_DMA_MAX_DATA_ITEMS);
822 desc = stm32_dma_alloc_desc(num_sgs);
826 for (offset = 0, i = 0; offset < len; offset += xfer_count, i++) {
827 xfer_count = min_t(size_t, len - offset,
828 STM32_DMA_MAX_DATA_ITEMS);
830 desc->sg_req[i].len = xfer_count;
832 stm32_dma_clear_reg(&desc->sg_req[i].chan_reg);
833 desc->sg_req[i].chan_reg.dma_scr =
834 STM32_DMA_SCR_DIR(STM32_DMA_MEM_TO_MEM) |
839 desc->sg_req[i].chan_reg.dma_sfcr = STM32_DMA_SFCR_DMDIS |
840 STM32_DMA_SFCR_FTH(STM32_DMA_FIFO_THRESHOLD_FULL) |
842 desc->sg_req[i].chan_reg.dma_spar = src + offset;
843 desc->sg_req[i].chan_reg.dma_sm0ar = dest + offset;
844 desc->sg_req[i].chan_reg.dma_sndtr = xfer_count;
847 desc->num_sgs = num_sgs;
848 desc->cyclic = false;
850 return vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
853 static size_t stm32_dma_desc_residue(struct stm32_dma_chan *chan,
854 struct stm32_dma_desc *desc,
857 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
858 u32 dma_scr, width, residue, count;
863 for (i = next_sg; i < desc->num_sgs; i++)
864 residue += desc->sg_req[i].len;
867 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
868 width = STM32_DMA_SCR_PSIZE_GET(dma_scr);
869 count = stm32_dma_read(dmadev, STM32_DMA_SNDTR(chan->id));
871 residue += count << width;
877 static enum dma_status stm32_dma_tx_status(struct dma_chan *c,
879 struct dma_tx_state *state)
881 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
882 struct virt_dma_desc *vdesc;
883 enum dma_status status;
887 status = dma_cookie_status(c, cookie, state);
888 if ((status == DMA_COMPLETE) || (!state))
891 spin_lock_irqsave(&chan->vchan.lock, flags);
892 vdesc = vchan_find_desc(&chan->vchan, cookie);
893 if (cookie == chan->desc->vdesc.tx.cookie) {
894 residue = stm32_dma_desc_residue(chan, chan->desc,
897 residue = stm32_dma_desc_residue(chan,
898 to_stm32_dma_desc(vdesc), 0);
903 dma_set_residue(state, residue);
905 spin_unlock_irqrestore(&chan->vchan.lock, flags);
910 static int stm32_dma_alloc_chan_resources(struct dma_chan *c)
912 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
913 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
916 chan->config_init = false;
917 ret = clk_prepare_enable(dmadev->clk);
919 dev_err(chan2dev(chan), "clk_prepare_enable failed: %d\n", ret);
923 ret = stm32_dma_disable_chan(chan);
925 clk_disable_unprepare(dmadev->clk);
930 static void stm32_dma_free_chan_resources(struct dma_chan *c)
932 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
933 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
936 dev_dbg(chan2dev(chan), "Freeing channel %d\n", chan->id);
939 spin_lock_irqsave(&chan->vchan.lock, flags);
940 stm32_dma_stop(chan);
942 spin_unlock_irqrestore(&chan->vchan.lock, flags);
945 clk_disable_unprepare(dmadev->clk);
947 vchan_free_chan_resources(to_virt_chan(c));
950 static void stm32_dma_desc_free(struct virt_dma_desc *vdesc)
952 kfree(container_of(vdesc, struct stm32_dma_desc, vdesc));
955 static void stm32_dma_set_config(struct stm32_dma_chan *chan,
956 struct stm32_dma_cfg *cfg)
958 stm32_dma_clear_reg(&chan->chan_reg);
960 chan->chan_reg.dma_scr = cfg->stream_config & STM32_DMA_SCR_CFG_MASK;
961 chan->chan_reg.dma_scr |= STM32_DMA_SCR_REQ(cfg->request_line);
963 /* Enable Interrupts */
964 chan->chan_reg.dma_scr |= STM32_DMA_SCR_TEIE | STM32_DMA_SCR_TCIE;
966 chan->chan_reg.dma_sfcr = cfg->threshold & STM32_DMA_SFCR_FTH_MASK;
969 static struct dma_chan *stm32_dma_of_xlate(struct of_phandle_args *dma_spec,
970 struct of_dma *ofdma)
972 struct stm32_dma_device *dmadev = ofdma->of_dma_data;
973 struct stm32_dma_cfg cfg;
974 struct stm32_dma_chan *chan;
977 if (dma_spec->args_count < 3)
980 cfg.channel_id = dma_spec->args[0];
981 cfg.request_line = dma_spec->args[1];
982 cfg.stream_config = dma_spec->args[2];
985 if ((cfg.channel_id >= STM32_DMA_MAX_CHANNELS) || (cfg.request_line >=
986 STM32_DMA_MAX_REQUEST_ID))
989 if (dma_spec->args_count > 3)
990 cfg.threshold = dma_spec->args[3];
992 chan = &dmadev->chan[cfg.channel_id];
994 c = dma_get_slave_channel(&chan->vchan.chan);
996 stm32_dma_set_config(chan, &cfg);
1001 static const struct of_device_id stm32_dma_of_match[] = {
1002 { .compatible = "st,stm32-dma", },
1005 MODULE_DEVICE_TABLE(of, stm32_dma_of_match);
1007 static int stm32_dma_probe(struct platform_device *pdev)
1009 struct stm32_dma_chan *chan;
1010 struct stm32_dma_device *dmadev;
1011 struct dma_device *dd;
1012 const struct of_device_id *match;
1013 struct resource *res;
1016 match = of_match_device(stm32_dma_of_match, &pdev->dev);
1018 dev_err(&pdev->dev, "Error: No device match found\n");
1022 dmadev = devm_kzalloc(&pdev->dev, sizeof(*dmadev), GFP_KERNEL);
1028 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1029 dmadev->base = devm_ioremap_resource(&pdev->dev, res);
1030 if (IS_ERR(dmadev->base))
1031 return PTR_ERR(dmadev->base);
1033 dmadev->clk = devm_clk_get(&pdev->dev, NULL);
1034 if (IS_ERR(dmadev->clk)) {
1035 dev_err(&pdev->dev, "Error: Missing controller clock\n");
1036 return PTR_ERR(dmadev->clk);
1039 dmadev->mem2mem = of_property_read_bool(pdev->dev.of_node,
1042 dmadev->rst = devm_reset_control_get(&pdev->dev, NULL);
1043 if (!IS_ERR(dmadev->rst)) {
1044 reset_control_assert(dmadev->rst);
1046 reset_control_deassert(dmadev->rst);
1049 dma_cap_set(DMA_SLAVE, dd->cap_mask);
1050 dma_cap_set(DMA_PRIVATE, dd->cap_mask);
1051 dma_cap_set(DMA_CYCLIC, dd->cap_mask);
1052 dd->device_alloc_chan_resources = stm32_dma_alloc_chan_resources;
1053 dd->device_free_chan_resources = stm32_dma_free_chan_resources;
1054 dd->device_tx_status = stm32_dma_tx_status;
1055 dd->device_issue_pending = stm32_dma_issue_pending;
1056 dd->device_prep_slave_sg = stm32_dma_prep_slave_sg;
1057 dd->device_prep_dma_cyclic = stm32_dma_prep_dma_cyclic;
1058 dd->device_config = stm32_dma_slave_config;
1059 dd->device_terminate_all = stm32_dma_terminate_all;
1060 dd->src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1061 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1062 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
1063 dd->dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1064 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1065 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
1066 dd->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
1067 dd->residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
1068 dd->dev = &pdev->dev;
1069 INIT_LIST_HEAD(&dd->channels);
1071 if (dmadev->mem2mem) {
1072 dma_cap_set(DMA_MEMCPY, dd->cap_mask);
1073 dd->device_prep_dma_memcpy = stm32_dma_prep_dma_memcpy;
1074 dd->directions |= BIT(DMA_MEM_TO_MEM);
1077 for (i = 0; i < STM32_DMA_MAX_CHANNELS; i++) {
1078 chan = &dmadev->chan[i];
1080 chan->vchan.desc_free = stm32_dma_desc_free;
1081 vchan_init(&chan->vchan, dd);
1084 ret = dma_async_device_register(dd);
1088 for (i = 0; i < STM32_DMA_MAX_CHANNELS; i++) {
1089 chan = &dmadev->chan[i];
1090 res = platform_get_resource(pdev, IORESOURCE_IRQ, i);
1093 dev_err(&pdev->dev, "No irq resource for chan %d\n", i);
1094 goto err_unregister;
1096 chan->irq = res->start;
1097 ret = devm_request_irq(&pdev->dev, chan->irq,
1098 stm32_dma_chan_irq, 0,
1099 dev_name(chan2dev(chan)), chan);
1102 "request_irq failed with err %d channel %d\n",
1104 goto err_unregister;
1108 ret = of_dma_controller_register(pdev->dev.of_node,
1109 stm32_dma_of_xlate, dmadev);
1112 "STM32 DMA DMA OF registration failed %d\n", ret);
1113 goto err_unregister;
1116 platform_set_drvdata(pdev, dmadev);
1118 dev_info(&pdev->dev, "STM32 DMA driver registered\n");
1123 dma_async_device_unregister(dd);
1128 static struct platform_driver stm32_dma_driver = {
1130 .name = "stm32-dma",
1131 .of_match_table = stm32_dma_of_match,
1135 static int __init stm32_dma_init(void)
1137 return platform_driver_probe(&stm32_dma_driver, stm32_dma_probe);
1139 subsys_initcall(stm32_dma_init);