1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for STM32 DMA controller
5 * Inspired by dma-jz4740.c and tegra20-apb-dma.c
7 * Copyright (C) M'boumba Cedric Madianga 2015
8 * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
9 * Pierre-Yves Mordret <pierre-yves.mordret@st.com>
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/pm_runtime.h>
26 #include <linux/reset.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
32 #define STM32_DMA_LISR 0x0000 /* DMA Low Int Status Reg */
33 #define STM32_DMA_HISR 0x0004 /* DMA High Int Status Reg */
34 #define STM32_DMA_LIFCR 0x0008 /* DMA Low Int Flag Clear Reg */
35 #define STM32_DMA_HIFCR 0x000c /* DMA High Int Flag Clear Reg */
36 #define STM32_DMA_TCI BIT(5) /* Transfer Complete Interrupt */
37 #define STM32_DMA_HTI BIT(4) /* Half Transfer Interrupt */
38 #define STM32_DMA_TEI BIT(3) /* Transfer Error Interrupt */
39 #define STM32_DMA_DMEI BIT(2) /* Direct Mode Error Interrupt */
40 #define STM32_DMA_FEI BIT(0) /* FIFO Error Interrupt */
41 #define STM32_DMA_MASKI (STM32_DMA_TCI \
46 /* DMA Stream x Configuration Register */
47 #define STM32_DMA_SCR(x) (0x0010 + 0x18 * (x)) /* x = 0..7 */
48 #define STM32_DMA_SCR_REQ(n) ((n & 0x7) << 25)
49 #define STM32_DMA_SCR_MBURST_MASK GENMASK(24, 23)
50 #define STM32_DMA_SCR_MBURST(n) ((n & 0x3) << 23)
51 #define STM32_DMA_SCR_PBURST_MASK GENMASK(22, 21)
52 #define STM32_DMA_SCR_PBURST(n) ((n & 0x3) << 21)
53 #define STM32_DMA_SCR_PL_MASK GENMASK(17, 16)
54 #define STM32_DMA_SCR_PL(n) ((n & 0x3) << 16)
55 #define STM32_DMA_SCR_MSIZE_MASK GENMASK(14, 13)
56 #define STM32_DMA_SCR_MSIZE(n) ((n & 0x3) << 13)
57 #define STM32_DMA_SCR_PSIZE_MASK GENMASK(12, 11)
58 #define STM32_DMA_SCR_PSIZE(n) ((n & 0x3) << 11)
59 #define STM32_DMA_SCR_PSIZE_GET(n) ((n & STM32_DMA_SCR_PSIZE_MASK) >> 11)
60 #define STM32_DMA_SCR_DIR_MASK GENMASK(7, 6)
61 #define STM32_DMA_SCR_DIR(n) ((n & 0x3) << 6)
62 #define STM32_DMA_SCR_CT BIT(19) /* Target in double buffer */
63 #define STM32_DMA_SCR_DBM BIT(18) /* Double Buffer Mode */
64 #define STM32_DMA_SCR_PINCOS BIT(15) /* Peripheral inc offset size */
65 #define STM32_DMA_SCR_MINC BIT(10) /* Memory increment mode */
66 #define STM32_DMA_SCR_PINC BIT(9) /* Peripheral increment mode */
67 #define STM32_DMA_SCR_CIRC BIT(8) /* Circular mode */
68 #define STM32_DMA_SCR_PFCTRL BIT(5) /* Peripheral Flow Controller */
69 #define STM32_DMA_SCR_TCIE BIT(4) /* Transfer Complete Int Enable
71 #define STM32_DMA_SCR_TEIE BIT(2) /* Transfer Error Int Enable */
72 #define STM32_DMA_SCR_DMEIE BIT(1) /* Direct Mode Err Int Enable */
73 #define STM32_DMA_SCR_EN BIT(0) /* Stream Enable */
74 #define STM32_DMA_SCR_CFG_MASK (STM32_DMA_SCR_PINC \
75 | STM32_DMA_SCR_MINC \
76 | STM32_DMA_SCR_PINCOS \
77 | STM32_DMA_SCR_PL_MASK)
78 #define STM32_DMA_SCR_IRQ_MASK (STM32_DMA_SCR_TCIE \
79 | STM32_DMA_SCR_TEIE \
80 | STM32_DMA_SCR_DMEIE)
82 /* DMA Stream x number of data register */
83 #define STM32_DMA_SNDTR(x) (0x0014 + 0x18 * (x))
85 /* DMA stream peripheral address register */
86 #define STM32_DMA_SPAR(x) (0x0018 + 0x18 * (x))
88 /* DMA stream x memory 0 address register */
89 #define STM32_DMA_SM0AR(x) (0x001c + 0x18 * (x))
91 /* DMA stream x memory 1 address register */
92 #define STM32_DMA_SM1AR(x) (0x0020 + 0x18 * (x))
94 /* DMA stream x FIFO control register */
95 #define STM32_DMA_SFCR(x) (0x0024 + 0x18 * (x))
96 #define STM32_DMA_SFCR_FTH_MASK GENMASK(1, 0)
97 #define STM32_DMA_SFCR_FTH(n) (n & STM32_DMA_SFCR_FTH_MASK)
98 #define STM32_DMA_SFCR_FEIE BIT(7) /* FIFO error interrupt enable */
99 #define STM32_DMA_SFCR_DMDIS BIT(2) /* Direct mode disable */
100 #define STM32_DMA_SFCR_MASK (STM32_DMA_SFCR_FEIE \
101 | STM32_DMA_SFCR_DMDIS)
104 #define STM32_DMA_DEV_TO_MEM 0x00
105 #define STM32_DMA_MEM_TO_DEV 0x01
106 #define STM32_DMA_MEM_TO_MEM 0x02
108 /* DMA priority level */
109 #define STM32_DMA_PRIORITY_LOW 0x00
110 #define STM32_DMA_PRIORITY_MEDIUM 0x01
111 #define STM32_DMA_PRIORITY_HIGH 0x02
112 #define STM32_DMA_PRIORITY_VERY_HIGH 0x03
114 /* DMA FIFO threshold selection */
115 #define STM32_DMA_FIFO_THRESHOLD_1QUARTERFULL 0x00
116 #define STM32_DMA_FIFO_THRESHOLD_HALFFULL 0x01
117 #define STM32_DMA_FIFO_THRESHOLD_3QUARTERSFULL 0x02
118 #define STM32_DMA_FIFO_THRESHOLD_FULL 0x03
120 #define STM32_DMA_MAX_DATA_ITEMS 0xffff
122 * Valid transfer starts from @0 to @0xFFFE leading to unaligned scatter
123 * gather at boundary. Thus it's safer to round down this value on FIFO
126 #define STM32_DMA_ALIGNED_MAX_DATA_ITEMS \
127 ALIGN_DOWN(STM32_DMA_MAX_DATA_ITEMS, 16)
128 #define STM32_DMA_MAX_CHANNELS 0x08
129 #define STM32_DMA_MAX_REQUEST_ID 0x08
130 #define STM32_DMA_MAX_DATA_PARAM 0x03
131 #define STM32_DMA_FIFO_SIZE 16 /* FIFO is 16 bytes */
132 #define STM32_DMA_MIN_BURST 4
133 #define STM32_DMA_MAX_BURST 16
136 #define STM32_DMA_THRESHOLD_FTR_MASK GENMASK(1, 0)
137 #define STM32_DMA_THRESHOLD_FTR_GET(n) ((n) & STM32_DMA_THRESHOLD_FTR_MASK)
139 enum stm32_dma_width
{
145 enum stm32_dma_burst_size
{
146 STM32_DMA_BURST_SINGLE
,
147 STM32_DMA_BURST_INCR4
,
148 STM32_DMA_BURST_INCR8
,
149 STM32_DMA_BURST_INCR16
,
153 * struct stm32_dma_cfg - STM32 DMA custom configuration
154 * @channel_id: channel ID
155 * @request_line: DMA request
156 * @stream_config: 32bit mask specifying the DMA channel configuration
157 * @features: 32bit mask specifying the DMA Feature list
159 struct stm32_dma_cfg
{
166 struct stm32_dma_chan_reg
{
179 struct stm32_dma_sg_req
{
181 struct stm32_dma_chan_reg chan_reg
;
184 struct stm32_dma_desc
{
185 struct virt_dma_desc vdesc
;
188 struct stm32_dma_sg_req sg_req
[];
191 struct stm32_dma_chan
{
192 struct virt_dma_chan vchan
;
197 struct stm32_dma_desc
*desc
;
199 struct dma_slave_config dma_sconfig
;
200 struct stm32_dma_chan_reg chan_reg
;
206 struct stm32_dma_device
{
207 struct dma_device ddev
;
210 struct reset_control
*rst
;
212 struct stm32_dma_chan chan
[STM32_DMA_MAX_CHANNELS
];
215 static struct stm32_dma_device
*stm32_dma_get_dev(struct stm32_dma_chan
*chan
)
217 return container_of(chan
->vchan
.chan
.device
, struct stm32_dma_device
,
221 static struct stm32_dma_chan
*to_stm32_dma_chan(struct dma_chan
*c
)
223 return container_of(c
, struct stm32_dma_chan
, vchan
.chan
);
226 static struct stm32_dma_desc
*to_stm32_dma_desc(struct virt_dma_desc
*vdesc
)
228 return container_of(vdesc
, struct stm32_dma_desc
, vdesc
);
231 static struct device
*chan2dev(struct stm32_dma_chan
*chan
)
233 return &chan
->vchan
.chan
.dev
->device
;
236 static u32
stm32_dma_read(struct stm32_dma_device
*dmadev
, u32 reg
)
238 return readl_relaxed(dmadev
->base
+ reg
);
241 static void stm32_dma_write(struct stm32_dma_device
*dmadev
, u32 reg
, u32 val
)
243 writel_relaxed(val
, dmadev
->base
+ reg
);
246 static struct stm32_dma_desc
*stm32_dma_alloc_desc(u32 num_sgs
)
248 return kzalloc(sizeof(struct stm32_dma_desc
) +
249 sizeof(struct stm32_dma_sg_req
) * num_sgs
, GFP_NOWAIT
);
252 static int stm32_dma_get_width(struct stm32_dma_chan
*chan
,
253 enum dma_slave_buswidth width
)
256 case DMA_SLAVE_BUSWIDTH_1_BYTE
:
257 return STM32_DMA_BYTE
;
258 case DMA_SLAVE_BUSWIDTH_2_BYTES
:
259 return STM32_DMA_HALF_WORD
;
260 case DMA_SLAVE_BUSWIDTH_4_BYTES
:
261 return STM32_DMA_WORD
;
263 dev_err(chan2dev(chan
), "Dma bus width not supported\n");
268 static enum dma_slave_buswidth
stm32_dma_get_max_width(u32 buf_len
,
271 enum dma_slave_buswidth max_width
;
273 if (threshold
== STM32_DMA_FIFO_THRESHOLD_FULL
)
274 max_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
276 max_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
;
278 while ((buf_len
< max_width
|| buf_len
% max_width
) &&
279 max_width
> DMA_SLAVE_BUSWIDTH_1_BYTE
)
280 max_width
= max_width
>> 1;
285 static bool stm32_dma_fifo_threshold_is_allowed(u32 burst
, u32 threshold
,
286 enum dma_slave_buswidth width
)
290 if (width
!= DMA_SLAVE_BUSWIDTH_UNDEFINED
) {
293 * If number of beats fit in several whole bursts
294 * this configuration is allowed.
296 remaining
= ((STM32_DMA_FIFO_SIZE
/ width
) *
297 (threshold
+ 1) / 4) % burst
;
309 static bool stm32_dma_is_burst_possible(u32 buf_len
, u32 threshold
)
312 * Buffer or period length has to be aligned on FIFO depth.
313 * Otherwise bytes may be stuck within FIFO at buffer or period
316 return ((buf_len
% ((threshold
+ 1) * 4)) == 0);
319 static u32
stm32_dma_get_best_burst(u32 buf_len
, u32 max_burst
, u32 threshold
,
320 enum dma_slave_buswidth width
)
322 u32 best_burst
= max_burst
;
324 if (best_burst
== 1 || !stm32_dma_is_burst_possible(buf_len
, threshold
))
327 while ((buf_len
< best_burst
* width
&& best_burst
> 1) ||
328 !stm32_dma_fifo_threshold_is_allowed(best_burst
, threshold
,
330 if (best_burst
> STM32_DMA_MIN_BURST
)
331 best_burst
= best_burst
>> 1;
339 static int stm32_dma_get_burst(struct stm32_dma_chan
*chan
, u32 maxburst
)
344 return STM32_DMA_BURST_SINGLE
;
346 return STM32_DMA_BURST_INCR4
;
348 return STM32_DMA_BURST_INCR8
;
350 return STM32_DMA_BURST_INCR16
;
352 dev_err(chan2dev(chan
), "Dma burst size not supported\n");
357 static void stm32_dma_set_fifo_config(struct stm32_dma_chan
*chan
,
358 u32 src_burst
, u32 dst_burst
)
360 chan
->chan_reg
.dma_sfcr
&= ~STM32_DMA_SFCR_MASK
;
361 chan
->chan_reg
.dma_scr
&= ~STM32_DMA_SCR_DMEIE
;
363 if (!src_burst
&& !dst_burst
) {
364 /* Using direct mode */
365 chan
->chan_reg
.dma_scr
|= STM32_DMA_SCR_DMEIE
;
367 /* Using FIFO mode */
368 chan
->chan_reg
.dma_sfcr
|= STM32_DMA_SFCR_MASK
;
372 static int stm32_dma_slave_config(struct dma_chan
*c
,
373 struct dma_slave_config
*config
)
375 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
377 memcpy(&chan
->dma_sconfig
, config
, sizeof(*config
));
379 chan
->config_init
= true;
384 static u32
stm32_dma_irq_status(struct stm32_dma_chan
*chan
)
386 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
390 * Read "flags" from DMA_xISR register corresponding to the selected
391 * DMA channel at the correct bit offset inside that register.
393 * If (ch % 4) is 2 or 3, left shift the mask by 16 bits.
394 * If (ch % 4) is 1 or 3, additionally left shift the mask by 6 bits.
398 dma_isr
= stm32_dma_read(dmadev
, STM32_DMA_HISR
);
400 dma_isr
= stm32_dma_read(dmadev
, STM32_DMA_LISR
);
402 flags
= dma_isr
>> (((chan
->id
& 2) << 3) | ((chan
->id
& 1) * 6));
404 return flags
& STM32_DMA_MASKI
;
407 static void stm32_dma_irq_clear(struct stm32_dma_chan
*chan
, u32 flags
)
409 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
413 * Write "flags" to the DMA_xIFCR register corresponding to the selected
414 * DMA channel at the correct bit offset inside that register.
416 * If (ch % 4) is 2 or 3, left shift the mask by 16 bits.
417 * If (ch % 4) is 1 or 3, additionally left shift the mask by 6 bits.
419 flags
&= STM32_DMA_MASKI
;
420 dma_ifcr
= flags
<< (((chan
->id
& 2) << 3) | ((chan
->id
& 1) * 6));
423 stm32_dma_write(dmadev
, STM32_DMA_HIFCR
, dma_ifcr
);
425 stm32_dma_write(dmadev
, STM32_DMA_LIFCR
, dma_ifcr
);
428 static int stm32_dma_disable_chan(struct stm32_dma_chan
*chan
)
430 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
431 unsigned long timeout
= jiffies
+ msecs_to_jiffies(5000);
435 dma_scr
= stm32_dma_read(dmadev
, STM32_DMA_SCR(id
));
437 if (dma_scr
& STM32_DMA_SCR_EN
) {
438 dma_scr
&= ~STM32_DMA_SCR_EN
;
439 stm32_dma_write(dmadev
, STM32_DMA_SCR(id
), dma_scr
);
442 dma_scr
= stm32_dma_read(dmadev
, STM32_DMA_SCR(id
));
443 dma_scr
&= STM32_DMA_SCR_EN
;
447 if (time_after_eq(jiffies
, timeout
)) {
448 dev_err(chan2dev(chan
), "%s: timeout!\n",
459 static void stm32_dma_stop(struct stm32_dma_chan
*chan
)
461 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
462 u32 dma_scr
, dma_sfcr
, status
;
465 /* Disable interrupts */
466 dma_scr
= stm32_dma_read(dmadev
, STM32_DMA_SCR(chan
->id
));
467 dma_scr
&= ~STM32_DMA_SCR_IRQ_MASK
;
468 stm32_dma_write(dmadev
, STM32_DMA_SCR(chan
->id
), dma_scr
);
469 dma_sfcr
= stm32_dma_read(dmadev
, STM32_DMA_SFCR(chan
->id
));
470 dma_sfcr
&= ~STM32_DMA_SFCR_FEIE
;
471 stm32_dma_write(dmadev
, STM32_DMA_SFCR(chan
->id
), dma_sfcr
);
474 ret
= stm32_dma_disable_chan(chan
);
478 /* Clear interrupt status if it is there */
479 status
= stm32_dma_irq_status(chan
);
481 dev_dbg(chan2dev(chan
), "%s(): clearing interrupt: 0x%08x\n",
483 stm32_dma_irq_clear(chan
, status
);
489 static int stm32_dma_terminate_all(struct dma_chan
*c
)
491 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
495 spin_lock_irqsave(&chan
->vchan
.lock
, flags
);
498 stm32_dma_stop(chan
);
502 vchan_get_all_descriptors(&chan
->vchan
, &head
);
503 spin_unlock_irqrestore(&chan
->vchan
.lock
, flags
);
504 vchan_dma_desc_free_list(&chan
->vchan
, &head
);
509 static void stm32_dma_synchronize(struct dma_chan
*c
)
511 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
513 vchan_synchronize(&chan
->vchan
);
516 static void stm32_dma_dump_reg(struct stm32_dma_chan
*chan
)
518 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
519 u32 scr
= stm32_dma_read(dmadev
, STM32_DMA_SCR(chan
->id
));
520 u32 ndtr
= stm32_dma_read(dmadev
, STM32_DMA_SNDTR(chan
->id
));
521 u32 spar
= stm32_dma_read(dmadev
, STM32_DMA_SPAR(chan
->id
));
522 u32 sm0ar
= stm32_dma_read(dmadev
, STM32_DMA_SM0AR(chan
->id
));
523 u32 sm1ar
= stm32_dma_read(dmadev
, STM32_DMA_SM1AR(chan
->id
));
524 u32 sfcr
= stm32_dma_read(dmadev
, STM32_DMA_SFCR(chan
->id
));
526 dev_dbg(chan2dev(chan
), "SCR: 0x%08x\n", scr
);
527 dev_dbg(chan2dev(chan
), "NDTR: 0x%08x\n", ndtr
);
528 dev_dbg(chan2dev(chan
), "SPAR: 0x%08x\n", spar
);
529 dev_dbg(chan2dev(chan
), "SM0AR: 0x%08x\n", sm0ar
);
530 dev_dbg(chan2dev(chan
), "SM1AR: 0x%08x\n", sm1ar
);
531 dev_dbg(chan2dev(chan
), "SFCR: 0x%08x\n", sfcr
);
534 static void stm32_dma_configure_next_sg(struct stm32_dma_chan
*chan
);
536 static void stm32_dma_start_transfer(struct stm32_dma_chan
*chan
)
538 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
539 struct virt_dma_desc
*vdesc
;
540 struct stm32_dma_sg_req
*sg_req
;
541 struct stm32_dma_chan_reg
*reg
;
545 ret
= stm32_dma_disable_chan(chan
);
550 vdesc
= vchan_next_desc(&chan
->vchan
);
554 chan
->desc
= to_stm32_dma_desc(vdesc
);
558 if (chan
->next_sg
== chan
->desc
->num_sgs
)
561 sg_req
= &chan
->desc
->sg_req
[chan
->next_sg
];
562 reg
= &sg_req
->chan_reg
;
564 stm32_dma_write(dmadev
, STM32_DMA_SCR(chan
->id
), reg
->dma_scr
);
565 stm32_dma_write(dmadev
, STM32_DMA_SPAR(chan
->id
), reg
->dma_spar
);
566 stm32_dma_write(dmadev
, STM32_DMA_SM0AR(chan
->id
), reg
->dma_sm0ar
);
567 stm32_dma_write(dmadev
, STM32_DMA_SFCR(chan
->id
), reg
->dma_sfcr
);
568 stm32_dma_write(dmadev
, STM32_DMA_SM1AR(chan
->id
), reg
->dma_sm1ar
);
569 stm32_dma_write(dmadev
, STM32_DMA_SNDTR(chan
->id
), reg
->dma_sndtr
);
573 /* Clear interrupt status if it is there */
574 status
= stm32_dma_irq_status(chan
);
576 stm32_dma_irq_clear(chan
, status
);
578 if (chan
->desc
->cyclic
)
579 stm32_dma_configure_next_sg(chan
);
581 stm32_dma_dump_reg(chan
);
584 reg
->dma_scr
|= STM32_DMA_SCR_EN
;
585 stm32_dma_write(dmadev
, STM32_DMA_SCR(chan
->id
), reg
->dma_scr
);
589 dev_dbg(chan2dev(chan
), "vchan %pK: started\n", &chan
->vchan
);
592 static void stm32_dma_configure_next_sg(struct stm32_dma_chan
*chan
)
594 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
595 struct stm32_dma_sg_req
*sg_req
;
596 u32 dma_scr
, dma_sm0ar
, dma_sm1ar
, id
;
599 dma_scr
= stm32_dma_read(dmadev
, STM32_DMA_SCR(id
));
601 if (dma_scr
& STM32_DMA_SCR_DBM
) {
602 if (chan
->next_sg
== chan
->desc
->num_sgs
)
605 sg_req
= &chan
->desc
->sg_req
[chan
->next_sg
];
607 if (dma_scr
& STM32_DMA_SCR_CT
) {
608 dma_sm0ar
= sg_req
->chan_reg
.dma_sm0ar
;
609 stm32_dma_write(dmadev
, STM32_DMA_SM0AR(id
), dma_sm0ar
);
610 dev_dbg(chan2dev(chan
), "CT=1 <=> SM0AR: 0x%08x\n",
611 stm32_dma_read(dmadev
, STM32_DMA_SM0AR(id
)));
613 dma_sm1ar
= sg_req
->chan_reg
.dma_sm1ar
;
614 stm32_dma_write(dmadev
, STM32_DMA_SM1AR(id
), dma_sm1ar
);
615 dev_dbg(chan2dev(chan
), "CT=0 <=> SM1AR: 0x%08x\n",
616 stm32_dma_read(dmadev
, STM32_DMA_SM1AR(id
)));
621 static void stm32_dma_handle_chan_done(struct stm32_dma_chan
*chan
)
624 if (chan
->desc
->cyclic
) {
625 vchan_cyclic_callback(&chan
->desc
->vdesc
);
627 stm32_dma_configure_next_sg(chan
);
630 if (chan
->next_sg
== chan
->desc
->num_sgs
) {
631 list_del(&chan
->desc
->vdesc
.node
);
632 vchan_cookie_complete(&chan
->desc
->vdesc
);
635 stm32_dma_start_transfer(chan
);
640 static irqreturn_t
stm32_dma_chan_irq(int irq
, void *devid
)
642 struct stm32_dma_chan
*chan
= devid
;
643 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
644 u32 status
, scr
, sfcr
;
646 spin_lock(&chan
->vchan
.lock
);
648 status
= stm32_dma_irq_status(chan
);
649 scr
= stm32_dma_read(dmadev
, STM32_DMA_SCR(chan
->id
));
650 sfcr
= stm32_dma_read(dmadev
, STM32_DMA_SFCR(chan
->id
));
652 if (status
& STM32_DMA_TCI
) {
653 stm32_dma_irq_clear(chan
, STM32_DMA_TCI
);
654 if (scr
& STM32_DMA_SCR_TCIE
)
655 stm32_dma_handle_chan_done(chan
);
656 status
&= ~STM32_DMA_TCI
;
658 if (status
& STM32_DMA_HTI
) {
659 stm32_dma_irq_clear(chan
, STM32_DMA_HTI
);
660 status
&= ~STM32_DMA_HTI
;
662 if (status
& STM32_DMA_FEI
) {
663 stm32_dma_irq_clear(chan
, STM32_DMA_FEI
);
664 status
&= ~STM32_DMA_FEI
;
665 if (sfcr
& STM32_DMA_SFCR_FEIE
) {
666 if (!(scr
& STM32_DMA_SCR_EN
))
667 dev_err(chan2dev(chan
), "FIFO Error\n");
669 dev_dbg(chan2dev(chan
), "FIFO over/underrun\n");
673 stm32_dma_irq_clear(chan
, status
);
674 dev_err(chan2dev(chan
), "DMA error: status=0x%08x\n", status
);
675 if (!(scr
& STM32_DMA_SCR_EN
))
676 dev_err(chan2dev(chan
), "chan disabled by HW\n");
679 spin_unlock(&chan
->vchan
.lock
);
684 static void stm32_dma_issue_pending(struct dma_chan
*c
)
686 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
689 spin_lock_irqsave(&chan
->vchan
.lock
, flags
);
690 if (vchan_issue_pending(&chan
->vchan
) && !chan
->desc
&& !chan
->busy
) {
691 dev_dbg(chan2dev(chan
), "vchan %pK: issued\n", &chan
->vchan
);
692 stm32_dma_start_transfer(chan
);
695 spin_unlock_irqrestore(&chan
->vchan
.lock
, flags
);
698 static int stm32_dma_set_xfer_param(struct stm32_dma_chan
*chan
,
699 enum dma_transfer_direction direction
,
700 enum dma_slave_buswidth
*buswidth
,
703 enum dma_slave_buswidth src_addr_width
, dst_addr_width
;
704 int src_bus_width
, dst_bus_width
;
705 int src_burst_size
, dst_burst_size
;
706 u32 src_maxburst
, dst_maxburst
, src_best_burst
, dst_best_burst
;
707 u32 dma_scr
, threshold
;
709 src_addr_width
= chan
->dma_sconfig
.src_addr_width
;
710 dst_addr_width
= chan
->dma_sconfig
.dst_addr_width
;
711 src_maxburst
= chan
->dma_sconfig
.src_maxburst
;
712 dst_maxburst
= chan
->dma_sconfig
.dst_maxburst
;
713 threshold
= chan
->threshold
;
717 /* Set device data size */
718 dst_bus_width
= stm32_dma_get_width(chan
, dst_addr_width
);
719 if (dst_bus_width
< 0)
720 return dst_bus_width
;
722 /* Set device burst size */
723 dst_best_burst
= stm32_dma_get_best_burst(buf_len
,
728 dst_burst_size
= stm32_dma_get_burst(chan
, dst_best_burst
);
729 if (dst_burst_size
< 0)
730 return dst_burst_size
;
732 /* Set memory data size */
733 src_addr_width
= stm32_dma_get_max_width(buf_len
, threshold
);
734 chan
->mem_width
= src_addr_width
;
735 src_bus_width
= stm32_dma_get_width(chan
, src_addr_width
);
736 if (src_bus_width
< 0)
737 return src_bus_width
;
739 /* Set memory burst size */
740 src_maxburst
= STM32_DMA_MAX_BURST
;
741 src_best_burst
= stm32_dma_get_best_burst(buf_len
,
745 src_burst_size
= stm32_dma_get_burst(chan
, src_best_burst
);
746 if (src_burst_size
< 0)
747 return src_burst_size
;
749 dma_scr
= STM32_DMA_SCR_DIR(STM32_DMA_MEM_TO_DEV
) |
750 STM32_DMA_SCR_PSIZE(dst_bus_width
) |
751 STM32_DMA_SCR_MSIZE(src_bus_width
) |
752 STM32_DMA_SCR_PBURST(dst_burst_size
) |
753 STM32_DMA_SCR_MBURST(src_burst_size
);
755 /* Set FIFO threshold */
756 chan
->chan_reg
.dma_sfcr
&= ~STM32_DMA_SFCR_FTH_MASK
;
757 chan
->chan_reg
.dma_sfcr
|= STM32_DMA_SFCR_FTH(threshold
);
759 /* Set peripheral address */
760 chan
->chan_reg
.dma_spar
= chan
->dma_sconfig
.dst_addr
;
761 *buswidth
= dst_addr_width
;
765 /* Set device data size */
766 src_bus_width
= stm32_dma_get_width(chan
, src_addr_width
);
767 if (src_bus_width
< 0)
768 return src_bus_width
;
770 /* Set device burst size */
771 src_best_burst
= stm32_dma_get_best_burst(buf_len
,
775 chan
->mem_burst
= src_best_burst
;
776 src_burst_size
= stm32_dma_get_burst(chan
, src_best_burst
);
777 if (src_burst_size
< 0)
778 return src_burst_size
;
780 /* Set memory data size */
781 dst_addr_width
= stm32_dma_get_max_width(buf_len
, threshold
);
782 chan
->mem_width
= dst_addr_width
;
783 dst_bus_width
= stm32_dma_get_width(chan
, dst_addr_width
);
784 if (dst_bus_width
< 0)
785 return dst_bus_width
;
787 /* Set memory burst size */
788 dst_maxburst
= STM32_DMA_MAX_BURST
;
789 dst_best_burst
= stm32_dma_get_best_burst(buf_len
,
793 chan
->mem_burst
= dst_best_burst
;
794 dst_burst_size
= stm32_dma_get_burst(chan
, dst_best_burst
);
795 if (dst_burst_size
< 0)
796 return dst_burst_size
;
798 dma_scr
= STM32_DMA_SCR_DIR(STM32_DMA_DEV_TO_MEM
) |
799 STM32_DMA_SCR_PSIZE(src_bus_width
) |
800 STM32_DMA_SCR_MSIZE(dst_bus_width
) |
801 STM32_DMA_SCR_PBURST(src_burst_size
) |
802 STM32_DMA_SCR_MBURST(dst_burst_size
);
804 /* Set FIFO threshold */
805 chan
->chan_reg
.dma_sfcr
&= ~STM32_DMA_SFCR_FTH_MASK
;
806 chan
->chan_reg
.dma_sfcr
|= STM32_DMA_SFCR_FTH(threshold
);
808 /* Set peripheral address */
809 chan
->chan_reg
.dma_spar
= chan
->dma_sconfig
.src_addr
;
810 *buswidth
= chan
->dma_sconfig
.src_addr_width
;
814 dev_err(chan2dev(chan
), "Dma direction is not supported\n");
818 stm32_dma_set_fifo_config(chan
, src_best_burst
, dst_best_burst
);
820 /* Set DMA control register */
821 chan
->chan_reg
.dma_scr
&= ~(STM32_DMA_SCR_DIR_MASK
|
822 STM32_DMA_SCR_PSIZE_MASK
| STM32_DMA_SCR_MSIZE_MASK
|
823 STM32_DMA_SCR_PBURST_MASK
| STM32_DMA_SCR_MBURST_MASK
);
824 chan
->chan_reg
.dma_scr
|= dma_scr
;
829 static void stm32_dma_clear_reg(struct stm32_dma_chan_reg
*regs
)
831 memset(regs
, 0, sizeof(struct stm32_dma_chan_reg
));
834 static struct dma_async_tx_descriptor
*stm32_dma_prep_slave_sg(
835 struct dma_chan
*c
, struct scatterlist
*sgl
,
836 u32 sg_len
, enum dma_transfer_direction direction
,
837 unsigned long flags
, void *context
)
839 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
840 struct stm32_dma_desc
*desc
;
841 struct scatterlist
*sg
;
842 enum dma_slave_buswidth buswidth
;
846 if (!chan
->config_init
) {
847 dev_err(chan2dev(chan
), "dma channel is not configured\n");
852 dev_err(chan2dev(chan
), "Invalid segment length %d\n", sg_len
);
856 desc
= stm32_dma_alloc_desc(sg_len
);
860 /* Set peripheral flow controller */
861 if (chan
->dma_sconfig
.device_fc
)
862 chan
->chan_reg
.dma_scr
|= STM32_DMA_SCR_PFCTRL
;
864 chan
->chan_reg
.dma_scr
&= ~STM32_DMA_SCR_PFCTRL
;
866 for_each_sg(sgl
, sg
, sg_len
, i
) {
867 ret
= stm32_dma_set_xfer_param(chan
, direction
, &buswidth
,
872 desc
->sg_req
[i
].len
= sg_dma_len(sg
);
874 nb_data_items
= desc
->sg_req
[i
].len
/ buswidth
;
875 if (nb_data_items
> STM32_DMA_ALIGNED_MAX_DATA_ITEMS
) {
876 dev_err(chan2dev(chan
), "nb items not supported\n");
880 stm32_dma_clear_reg(&desc
->sg_req
[i
].chan_reg
);
881 desc
->sg_req
[i
].chan_reg
.dma_scr
= chan
->chan_reg
.dma_scr
;
882 desc
->sg_req
[i
].chan_reg
.dma_sfcr
= chan
->chan_reg
.dma_sfcr
;
883 desc
->sg_req
[i
].chan_reg
.dma_spar
= chan
->chan_reg
.dma_spar
;
884 desc
->sg_req
[i
].chan_reg
.dma_sm0ar
= sg_dma_address(sg
);
885 desc
->sg_req
[i
].chan_reg
.dma_sm1ar
= sg_dma_address(sg
);
886 desc
->sg_req
[i
].chan_reg
.dma_sndtr
= nb_data_items
;
889 desc
->num_sgs
= sg_len
;
890 desc
->cyclic
= false;
892 return vchan_tx_prep(&chan
->vchan
, &desc
->vdesc
, flags
);
899 static struct dma_async_tx_descriptor
*stm32_dma_prep_dma_cyclic(
900 struct dma_chan
*c
, dma_addr_t buf_addr
, size_t buf_len
,
901 size_t period_len
, enum dma_transfer_direction direction
,
904 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
905 struct stm32_dma_desc
*desc
;
906 enum dma_slave_buswidth buswidth
;
907 u32 num_periods
, nb_data_items
;
910 if (!buf_len
|| !period_len
) {
911 dev_err(chan2dev(chan
), "Invalid buffer/period len\n");
915 if (!chan
->config_init
) {
916 dev_err(chan2dev(chan
), "dma channel is not configured\n");
920 if (buf_len
% period_len
) {
921 dev_err(chan2dev(chan
), "buf_len not multiple of period_len\n");
926 * We allow to take more number of requests till DMA is
927 * not started. The driver will loop over all requests.
928 * Once DMA is started then new requests can be queued only after
929 * terminating the DMA.
932 dev_err(chan2dev(chan
), "Request not allowed when dma busy\n");
936 ret
= stm32_dma_set_xfer_param(chan
, direction
, &buswidth
, period_len
);
940 nb_data_items
= period_len
/ buswidth
;
941 if (nb_data_items
> STM32_DMA_ALIGNED_MAX_DATA_ITEMS
) {
942 dev_err(chan2dev(chan
), "number of items not supported\n");
946 /* Enable Circular mode or double buffer mode */
947 if (buf_len
== period_len
)
948 chan
->chan_reg
.dma_scr
|= STM32_DMA_SCR_CIRC
;
950 chan
->chan_reg
.dma_scr
|= STM32_DMA_SCR_DBM
;
952 /* Clear periph ctrl if client set it */
953 chan
->chan_reg
.dma_scr
&= ~STM32_DMA_SCR_PFCTRL
;
955 num_periods
= buf_len
/ period_len
;
957 desc
= stm32_dma_alloc_desc(num_periods
);
961 for (i
= 0; i
< num_periods
; i
++) {
962 desc
->sg_req
[i
].len
= period_len
;
964 stm32_dma_clear_reg(&desc
->sg_req
[i
].chan_reg
);
965 desc
->sg_req
[i
].chan_reg
.dma_scr
= chan
->chan_reg
.dma_scr
;
966 desc
->sg_req
[i
].chan_reg
.dma_sfcr
= chan
->chan_reg
.dma_sfcr
;
967 desc
->sg_req
[i
].chan_reg
.dma_spar
= chan
->chan_reg
.dma_spar
;
968 desc
->sg_req
[i
].chan_reg
.dma_sm0ar
= buf_addr
;
969 desc
->sg_req
[i
].chan_reg
.dma_sm1ar
= buf_addr
;
970 desc
->sg_req
[i
].chan_reg
.dma_sndtr
= nb_data_items
;
971 buf_addr
+= period_len
;
974 desc
->num_sgs
= num_periods
;
977 return vchan_tx_prep(&chan
->vchan
, &desc
->vdesc
, flags
);
980 static struct dma_async_tx_descriptor
*stm32_dma_prep_dma_memcpy(
981 struct dma_chan
*c
, dma_addr_t dest
,
982 dma_addr_t src
, size_t len
, unsigned long flags
)
984 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
985 enum dma_slave_buswidth max_width
;
986 struct stm32_dma_desc
*desc
;
987 size_t xfer_count
, offset
;
988 u32 num_sgs
, best_burst
, dma_burst
, threshold
;
991 num_sgs
= DIV_ROUND_UP(len
, STM32_DMA_ALIGNED_MAX_DATA_ITEMS
);
992 desc
= stm32_dma_alloc_desc(num_sgs
);
996 threshold
= chan
->threshold
;
998 for (offset
= 0, i
= 0; offset
< len
; offset
+= xfer_count
, i
++) {
999 xfer_count
= min_t(size_t, len
- offset
,
1000 STM32_DMA_ALIGNED_MAX_DATA_ITEMS
);
1002 /* Compute best burst size */
1003 max_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
1004 best_burst
= stm32_dma_get_best_burst(len
, STM32_DMA_MAX_BURST
,
1005 threshold
, max_width
);
1006 dma_burst
= stm32_dma_get_burst(chan
, best_burst
);
1008 stm32_dma_clear_reg(&desc
->sg_req
[i
].chan_reg
);
1009 desc
->sg_req
[i
].chan_reg
.dma_scr
=
1010 STM32_DMA_SCR_DIR(STM32_DMA_MEM_TO_MEM
) |
1011 STM32_DMA_SCR_PBURST(dma_burst
) |
1012 STM32_DMA_SCR_MBURST(dma_burst
) |
1013 STM32_DMA_SCR_MINC
|
1014 STM32_DMA_SCR_PINC
|
1015 STM32_DMA_SCR_TCIE
|
1017 desc
->sg_req
[i
].chan_reg
.dma_sfcr
|= STM32_DMA_SFCR_MASK
;
1018 desc
->sg_req
[i
].chan_reg
.dma_sfcr
|=
1019 STM32_DMA_SFCR_FTH(threshold
);
1020 desc
->sg_req
[i
].chan_reg
.dma_spar
= src
+ offset
;
1021 desc
->sg_req
[i
].chan_reg
.dma_sm0ar
= dest
+ offset
;
1022 desc
->sg_req
[i
].chan_reg
.dma_sndtr
= xfer_count
;
1023 desc
->sg_req
[i
].len
= xfer_count
;
1026 desc
->num_sgs
= num_sgs
;
1027 desc
->cyclic
= false;
1029 return vchan_tx_prep(&chan
->vchan
, &desc
->vdesc
, flags
);
1032 static u32
stm32_dma_get_remaining_bytes(struct stm32_dma_chan
*chan
)
1034 u32 dma_scr
, width
, ndtr
;
1035 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
1037 dma_scr
= stm32_dma_read(dmadev
, STM32_DMA_SCR(chan
->id
));
1038 width
= STM32_DMA_SCR_PSIZE_GET(dma_scr
);
1039 ndtr
= stm32_dma_read(dmadev
, STM32_DMA_SNDTR(chan
->id
));
1041 return ndtr
<< width
;
1045 * stm32_dma_is_current_sg - check that expected sg_req is currently transferred
1046 * @chan: dma channel
1048 * This function called when IRQ are disable, checks that the hardware has not
1049 * switched on the next transfer in double buffer mode. The test is done by
1050 * comparing the next_sg memory address with the hardware related register
1051 * (based on CT bit value).
1053 * Returns true if expected current transfer is still running or double
1054 * buffer mode is not activated.
1056 static bool stm32_dma_is_current_sg(struct stm32_dma_chan
*chan
)
1058 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
1059 struct stm32_dma_sg_req
*sg_req
;
1060 u32 dma_scr
, dma_smar
, id
;
1063 dma_scr
= stm32_dma_read(dmadev
, STM32_DMA_SCR(id
));
1065 if (!(dma_scr
& STM32_DMA_SCR_DBM
))
1068 sg_req
= &chan
->desc
->sg_req
[chan
->next_sg
];
1070 if (dma_scr
& STM32_DMA_SCR_CT
) {
1071 dma_smar
= stm32_dma_read(dmadev
, STM32_DMA_SM0AR(id
));
1072 return (dma_smar
== sg_req
->chan_reg
.dma_sm0ar
);
1075 dma_smar
= stm32_dma_read(dmadev
, STM32_DMA_SM1AR(id
));
1077 return (dma_smar
== sg_req
->chan_reg
.dma_sm1ar
);
1080 static size_t stm32_dma_desc_residue(struct stm32_dma_chan
*chan
,
1081 struct stm32_dma_desc
*desc
,
1084 u32 modulo
, burst_size
;
1087 struct stm32_dma_sg_req
*sg_req
= &chan
->desc
->sg_req
[chan
->next_sg
];
1091 * Calculate the residue means compute the descriptors
1093 * - the sg_req currently transferred
1094 * - the Hardware remaining position in this sg (NDTR bits field).
1096 * A race condition may occur if DMA is running in cyclic or double
1097 * buffer mode, since the DMA register are automatically reloaded at end
1098 * of period transfer. The hardware may have switched to the next
1099 * transfer (CT bit updated) just before the position (SxNDTR reg) is
1101 * In this case the SxNDTR reg could (or not) correspond to the new
1102 * transfer position, and not the expected one.
1103 * The strategy implemented in the stm32 driver is to:
1104 * - read the SxNDTR register
1105 * - crosscheck that hardware is still in current transfer.
1106 * In case of switch, we can assume that the DMA is at the beginning of
1107 * the next transfer. So we approximate the residue in consequence, by
1108 * pointing on the beginning of next transfer.
1110 * This race condition doesn't apply for none cyclic mode, as double
1111 * buffer is not used. In such situation registers are updated by the
1115 residue
= stm32_dma_get_remaining_bytes(chan
);
1117 if (!stm32_dma_is_current_sg(chan
)) {
1119 if (n_sg
== chan
->desc
->num_sgs
)
1121 residue
= sg_req
->len
;
1125 * In cyclic mode, for the last period, residue = remaining bytes
1127 * else for all other periods in cyclic mode, and in sg mode,
1128 * residue = remaining bytes from NDTR + remaining
1129 * periods/sg to be transferred
1131 if (!chan
->desc
->cyclic
|| n_sg
!= 0)
1132 for (i
= n_sg
; i
< desc
->num_sgs
; i
++)
1133 residue
+= desc
->sg_req
[i
].len
;
1135 if (!chan
->mem_burst
)
1138 burst_size
= chan
->mem_burst
* chan
->mem_width
;
1139 modulo
= residue
% burst_size
;
1141 residue
= residue
- modulo
+ burst_size
;
1146 static enum dma_status
stm32_dma_tx_status(struct dma_chan
*c
,
1147 dma_cookie_t cookie
,
1148 struct dma_tx_state
*state
)
1150 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
1151 struct virt_dma_desc
*vdesc
;
1152 enum dma_status status
;
1153 unsigned long flags
;
1156 status
= dma_cookie_status(c
, cookie
, state
);
1157 if (status
== DMA_COMPLETE
|| !state
)
1160 spin_lock_irqsave(&chan
->vchan
.lock
, flags
);
1161 vdesc
= vchan_find_desc(&chan
->vchan
, cookie
);
1162 if (chan
->desc
&& cookie
== chan
->desc
->vdesc
.tx
.cookie
)
1163 residue
= stm32_dma_desc_residue(chan
, chan
->desc
,
1166 residue
= stm32_dma_desc_residue(chan
,
1167 to_stm32_dma_desc(vdesc
), 0);
1168 dma_set_residue(state
, residue
);
1170 spin_unlock_irqrestore(&chan
->vchan
.lock
, flags
);
1175 static int stm32_dma_alloc_chan_resources(struct dma_chan
*c
)
1177 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
1178 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
1181 chan
->config_init
= false;
1183 ret
= pm_runtime_get_sync(dmadev
->ddev
.dev
);
1187 ret
= stm32_dma_disable_chan(chan
);
1189 pm_runtime_put(dmadev
->ddev
.dev
);
1194 static void stm32_dma_free_chan_resources(struct dma_chan
*c
)
1196 struct stm32_dma_chan
*chan
= to_stm32_dma_chan(c
);
1197 struct stm32_dma_device
*dmadev
= stm32_dma_get_dev(chan
);
1198 unsigned long flags
;
1200 dev_dbg(chan2dev(chan
), "Freeing channel %d\n", chan
->id
);
1203 spin_lock_irqsave(&chan
->vchan
.lock
, flags
);
1204 stm32_dma_stop(chan
);
1206 spin_unlock_irqrestore(&chan
->vchan
.lock
, flags
);
1209 pm_runtime_put(dmadev
->ddev
.dev
);
1211 vchan_free_chan_resources(to_virt_chan(c
));
1214 static void stm32_dma_desc_free(struct virt_dma_desc
*vdesc
)
1216 kfree(container_of(vdesc
, struct stm32_dma_desc
, vdesc
));
1219 static void stm32_dma_set_config(struct stm32_dma_chan
*chan
,
1220 struct stm32_dma_cfg
*cfg
)
1222 stm32_dma_clear_reg(&chan
->chan_reg
);
1224 chan
->chan_reg
.dma_scr
= cfg
->stream_config
& STM32_DMA_SCR_CFG_MASK
;
1225 chan
->chan_reg
.dma_scr
|= STM32_DMA_SCR_REQ(cfg
->request_line
);
1227 /* Enable Interrupts */
1228 chan
->chan_reg
.dma_scr
|= STM32_DMA_SCR_TEIE
| STM32_DMA_SCR_TCIE
;
1230 chan
->threshold
= STM32_DMA_THRESHOLD_FTR_GET(cfg
->features
);
1233 static struct dma_chan
*stm32_dma_of_xlate(struct of_phandle_args
*dma_spec
,
1234 struct of_dma
*ofdma
)
1236 struct stm32_dma_device
*dmadev
= ofdma
->of_dma_data
;
1237 struct device
*dev
= dmadev
->ddev
.dev
;
1238 struct stm32_dma_cfg cfg
;
1239 struct stm32_dma_chan
*chan
;
1242 if (dma_spec
->args_count
< 4) {
1243 dev_err(dev
, "Bad number of cells\n");
1247 cfg
.channel_id
= dma_spec
->args
[0];
1248 cfg
.request_line
= dma_spec
->args
[1];
1249 cfg
.stream_config
= dma_spec
->args
[2];
1250 cfg
.features
= dma_spec
->args
[3];
1252 if (cfg
.channel_id
>= STM32_DMA_MAX_CHANNELS
||
1253 cfg
.request_line
>= STM32_DMA_MAX_REQUEST_ID
) {
1254 dev_err(dev
, "Bad channel and/or request id\n");
1258 chan
= &dmadev
->chan
[cfg
.channel_id
];
1260 c
= dma_get_slave_channel(&chan
->vchan
.chan
);
1262 dev_err(dev
, "No more channels available\n");
1266 stm32_dma_set_config(chan
, &cfg
);
1271 static const struct of_device_id stm32_dma_of_match
[] = {
1272 { .compatible
= "st,stm32-dma", },
1275 MODULE_DEVICE_TABLE(of
, stm32_dma_of_match
);
1277 static int stm32_dma_probe(struct platform_device
*pdev
)
1279 struct stm32_dma_chan
*chan
;
1280 struct stm32_dma_device
*dmadev
;
1281 struct dma_device
*dd
;
1282 const struct of_device_id
*match
;
1283 struct resource
*res
;
1286 match
= of_match_device(stm32_dma_of_match
, &pdev
->dev
);
1288 dev_err(&pdev
->dev
, "Error: No device match found\n");
1292 dmadev
= devm_kzalloc(&pdev
->dev
, sizeof(*dmadev
), GFP_KERNEL
);
1298 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1299 dmadev
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
1300 if (IS_ERR(dmadev
->base
))
1301 return PTR_ERR(dmadev
->base
);
1303 dmadev
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
1304 if (IS_ERR(dmadev
->clk
)) {
1305 dev_err(&pdev
->dev
, "Error: Missing controller clock\n");
1306 return PTR_ERR(dmadev
->clk
);
1309 ret
= clk_prepare_enable(dmadev
->clk
);
1311 dev_err(&pdev
->dev
, "clk_prep_enable error: %d\n", ret
);
1315 dmadev
->mem2mem
= of_property_read_bool(pdev
->dev
.of_node
,
1318 dmadev
->rst
= devm_reset_control_get(&pdev
->dev
, NULL
);
1319 if (!IS_ERR(dmadev
->rst
)) {
1320 reset_control_assert(dmadev
->rst
);
1322 reset_control_deassert(dmadev
->rst
);
1325 dma_cap_set(DMA_SLAVE
, dd
->cap_mask
);
1326 dma_cap_set(DMA_PRIVATE
, dd
->cap_mask
);
1327 dma_cap_set(DMA_CYCLIC
, dd
->cap_mask
);
1328 dd
->device_alloc_chan_resources
= stm32_dma_alloc_chan_resources
;
1329 dd
->device_free_chan_resources
= stm32_dma_free_chan_resources
;
1330 dd
->device_tx_status
= stm32_dma_tx_status
;
1331 dd
->device_issue_pending
= stm32_dma_issue_pending
;
1332 dd
->device_prep_slave_sg
= stm32_dma_prep_slave_sg
;
1333 dd
->device_prep_dma_cyclic
= stm32_dma_prep_dma_cyclic
;
1334 dd
->device_config
= stm32_dma_slave_config
;
1335 dd
->device_terminate_all
= stm32_dma_terminate_all
;
1336 dd
->device_synchronize
= stm32_dma_synchronize
;
1337 dd
->src_addr_widths
= BIT(DMA_SLAVE_BUSWIDTH_1_BYTE
) |
1338 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES
) |
1339 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES
);
1340 dd
->dst_addr_widths
= BIT(DMA_SLAVE_BUSWIDTH_1_BYTE
) |
1341 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES
) |
1342 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES
);
1343 dd
->directions
= BIT(DMA_DEV_TO_MEM
) | BIT(DMA_MEM_TO_DEV
);
1344 dd
->residue_granularity
= DMA_RESIDUE_GRANULARITY_BURST
;
1345 dd
->max_burst
= STM32_DMA_MAX_BURST
;
1346 dd
->dev
= &pdev
->dev
;
1347 INIT_LIST_HEAD(&dd
->channels
);
1349 if (dmadev
->mem2mem
) {
1350 dma_cap_set(DMA_MEMCPY
, dd
->cap_mask
);
1351 dd
->device_prep_dma_memcpy
= stm32_dma_prep_dma_memcpy
;
1352 dd
->directions
|= BIT(DMA_MEM_TO_MEM
);
1355 for (i
= 0; i
< STM32_DMA_MAX_CHANNELS
; i
++) {
1356 chan
= &dmadev
->chan
[i
];
1358 chan
->vchan
.desc_free
= stm32_dma_desc_free
;
1359 vchan_init(&chan
->vchan
, dd
);
1362 ret
= dma_async_device_register(dd
);
1366 for (i
= 0; i
< STM32_DMA_MAX_CHANNELS
; i
++) {
1367 chan
= &dmadev
->chan
[i
];
1368 ret
= platform_get_irq(pdev
, i
);
1370 if (ret
!= -EPROBE_DEFER
)
1372 "No irq resource for chan %d\n", i
);
1373 goto err_unregister
;
1377 ret
= devm_request_irq(&pdev
->dev
, chan
->irq
,
1378 stm32_dma_chan_irq
, 0,
1379 dev_name(chan2dev(chan
)), chan
);
1382 "request_irq failed with err %d channel %d\n",
1384 goto err_unregister
;
1388 ret
= of_dma_controller_register(pdev
->dev
.of_node
,
1389 stm32_dma_of_xlate
, dmadev
);
1392 "STM32 DMA DMA OF registration failed %d\n", ret
);
1393 goto err_unregister
;
1396 platform_set_drvdata(pdev
, dmadev
);
1398 pm_runtime_set_active(&pdev
->dev
);
1399 pm_runtime_enable(&pdev
->dev
);
1400 pm_runtime_get_noresume(&pdev
->dev
);
1401 pm_runtime_put(&pdev
->dev
);
1403 dev_info(&pdev
->dev
, "STM32 DMA driver registered\n");
1408 dma_async_device_unregister(dd
);
1410 clk_disable_unprepare(dmadev
->clk
);
1416 static int stm32_dma_runtime_suspend(struct device
*dev
)
1418 struct stm32_dma_device
*dmadev
= dev_get_drvdata(dev
);
1420 clk_disable_unprepare(dmadev
->clk
);
1425 static int stm32_dma_runtime_resume(struct device
*dev
)
1427 struct stm32_dma_device
*dmadev
= dev_get_drvdata(dev
);
1430 ret
= clk_prepare_enable(dmadev
->clk
);
1432 dev_err(dev
, "failed to prepare_enable clock\n");
1440 static const struct dev_pm_ops stm32_dma_pm_ops
= {
1441 SET_RUNTIME_PM_OPS(stm32_dma_runtime_suspend
,
1442 stm32_dma_runtime_resume
, NULL
)
1445 static struct platform_driver stm32_dma_driver
= {
1447 .name
= "stm32-dma",
1448 .of_match_table
= stm32_dma_of_match
,
1449 .pm
= &stm32_dma_pm_ops
,
1453 static int __init
stm32_dma_init(void)
1455 return platform_driver_probe(&stm32_dma_driver
, stm32_dma_probe
);
1457 subsys_initcall(stm32_dma_init
);