blob: 8a29b028d39ed189ddbd8162ec59543f0978364a [file] [log] [blame]
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001/*
2 * Driver for STM32 DMA controller
3 *
4 * Inspired by dma-jz4740.c and tegra20-apb-dma.c
5 *
6 * Copyright (C) M'boumba Cedric Madianga 2015
7 * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
8 *
9 * License terms: GNU General Public License (GPL), version 2
10 */
11
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>
21#include <linux/of.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>
28
29#include "virt-dma.h"
30
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 */
39
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)
74
75/* DMA Stream x number of data register */
76#define STM32_DMA_SNDTR(x) (0x0014 + 0x18 * (x))
77
78/* DMA stream peripheral address register */
79#define STM32_DMA_SPAR(x) (0x0018 + 0x18 * (x))
80
81/* DMA stream x memory 0 address register */
82#define STM32_DMA_SM0AR(x) (0x001c + 0x18 * (x))
83
84/* DMA stream x memory 1 address register */
85#define STM32_DMA_SM1AR(x) (0x0020 + 0x18 * (x))
86
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)
95
96/* DMA direction */
97#define STM32_DMA_DEV_TO_MEM 0x00
98#define STM32_DMA_MEM_TO_DEV 0x01
99#define STM32_DMA_MEM_TO_MEM 0x02
100
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
106
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
112
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
117
118enum stm32_dma_width {
119 STM32_DMA_BYTE,
120 STM32_DMA_HALF_WORD,
121 STM32_DMA_WORD,
122};
123
124enum stm32_dma_burst_size {
125 STM32_DMA_BURST_SINGLE,
126 STM32_DMA_BURST_INCR4,
127 STM32_DMA_BURST_INCR8,
128 STM32_DMA_BURST_INCR16,
129};
130
131struct stm32_dma_cfg {
132 u32 channel_id;
133 u32 request_line;
134 u32 stream_config;
135 u32 threshold;
136};
137
138struct stm32_dma_chan_reg {
139 u32 dma_lisr;
140 u32 dma_hisr;
141 u32 dma_lifcr;
142 u32 dma_hifcr;
143 u32 dma_scr;
144 u32 dma_sndtr;
145 u32 dma_spar;
146 u32 dma_sm0ar;
147 u32 dma_sm1ar;
148 u32 dma_sfcr;
149};
150
151struct stm32_dma_sg_req {
152 u32 len;
153 struct stm32_dma_chan_reg chan_reg;
154};
155
156struct stm32_dma_desc {
157 struct virt_dma_desc vdesc;
158 bool cyclic;
159 u32 num_sgs;
160 struct stm32_dma_sg_req sg_req[];
161};
162
163struct stm32_dma_chan {
164 struct virt_dma_chan vchan;
165 bool config_init;
166 bool busy;
167 u32 id;
168 u32 irq;
169 struct stm32_dma_desc *desc;
170 u32 next_sg;
171 struct dma_slave_config dma_sconfig;
172 struct stm32_dma_chan_reg chan_reg;
173};
174
175struct stm32_dma_device {
176 struct dma_device ddev;
177 void __iomem *base;
178 struct clk *clk;
179 struct reset_control *rst;
180 bool mem2mem;
181 struct stm32_dma_chan chan[STM32_DMA_MAX_CHANNELS];
182};
183
184static struct stm32_dma_device *stm32_dma_get_dev(struct stm32_dma_chan *chan)
185{
186 return container_of(chan->vchan.chan.device, struct stm32_dma_device,
187 ddev);
188}
189
190static struct stm32_dma_chan *to_stm32_dma_chan(struct dma_chan *c)
191{
192 return container_of(c, struct stm32_dma_chan, vchan.chan);
193}
194
195static struct stm32_dma_desc *to_stm32_dma_desc(struct virt_dma_desc *vdesc)
196{
197 return container_of(vdesc, struct stm32_dma_desc, vdesc);
198}
199
200static struct device *chan2dev(struct stm32_dma_chan *chan)
201{
202 return &chan->vchan.chan.dev->device;
203}
204
205static u32 stm32_dma_read(struct stm32_dma_device *dmadev, u32 reg)
206{
207 return readl_relaxed(dmadev->base + reg);
208}
209
210static void stm32_dma_write(struct stm32_dma_device *dmadev, u32 reg, u32 val)
211{
212 writel_relaxed(val, dmadev->base + reg);
213}
214
215static struct stm32_dma_desc *stm32_dma_alloc_desc(u32 num_sgs)
216{
217 return kzalloc(sizeof(struct stm32_dma_desc) +
218 sizeof(struct stm32_dma_sg_req) * num_sgs, GFP_NOWAIT);
219}
220
221static int stm32_dma_get_width(struct stm32_dma_chan *chan,
222 enum dma_slave_buswidth width)
223{
224 switch (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;
231 default:
232 dev_err(chan2dev(chan), "Dma bus width not supported\n");
233 return -EINVAL;
234 }
235}
236
237static int stm32_dma_get_burst(struct stm32_dma_chan *chan, u32 maxburst)
238{
239 switch (maxburst) {
240 case 0:
241 case 1:
242 return STM32_DMA_BURST_SINGLE;
243 case 4:
244 return STM32_DMA_BURST_INCR4;
245 case 8:
246 return STM32_DMA_BURST_INCR8;
247 case 16:
248 return STM32_DMA_BURST_INCR16;
249 default:
250 dev_err(chan2dev(chan), "Dma burst size not supported\n");
251 return -EINVAL;
252 }
253}
254
255static void stm32_dma_set_fifo_config(struct stm32_dma_chan *chan,
256 u32 src_maxburst, u32 dst_maxburst)
257{
258 chan->chan_reg.dma_sfcr &= ~STM32_DMA_SFCR_MASK;
259 chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_DMEIE;
260
261 if ((!src_maxburst) && (!dst_maxburst)) {
262 /* Using direct mode */
263 chan->chan_reg.dma_scr |= STM32_DMA_SCR_DMEIE;
264 } else {
265 /* Using FIFO mode */
266 chan->chan_reg.dma_sfcr |= STM32_DMA_SFCR_MASK;
267 }
268}
269
270static int stm32_dma_slave_config(struct dma_chan *c,
271 struct dma_slave_config *config)
272{
273 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
274
275 memcpy(&chan->dma_sconfig, config, sizeof(*config));
276
277 chan->config_init = true;
278
279 return 0;
280}
281
282static u32 stm32_dma_irq_status(struct stm32_dma_chan *chan)
283{
284 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
285 u32 flags, dma_isr;
286
287 /*
288 * Read "flags" from DMA_xISR register corresponding to the selected
289 * DMA channel at the correct bit offset inside that register.
290 *
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.
293 */
294
295 if (chan->id & 4)
296 dma_isr = stm32_dma_read(dmadev, STM32_DMA_HISR);
297 else
298 dma_isr = stm32_dma_read(dmadev, STM32_DMA_LISR);
299
300 flags = dma_isr >> (((chan->id & 2) << 3) | ((chan->id & 1) * 6));
301
302 return flags;
303}
304
305static void stm32_dma_irq_clear(struct stm32_dma_chan *chan, u32 flags)
306{
307 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
308 u32 dma_ifcr;
309
310 /*
311 * Write "flags" to the DMA_xIFCR register corresponding to the selected
312 * DMA channel at the correct bit offset inside that register.
313 *
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.
316 */
317 dma_ifcr = flags << (((chan->id & 2) << 3) | ((chan->id & 1) * 6));
318
319 if (chan->id & 4)
320 stm32_dma_write(dmadev, STM32_DMA_HIFCR, dma_ifcr);
321 else
322 stm32_dma_write(dmadev, STM32_DMA_LIFCR, dma_ifcr);
323}
324
325static int stm32_dma_disable_chan(struct stm32_dma_chan *chan)
326{
327 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
328 unsigned long timeout = jiffies + msecs_to_jiffies(5000);
329 u32 dma_scr, id;
330
331 id = chan->id;
332 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(id));
333
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);
337
338 do {
339 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(id));
340 dma_scr &= STM32_DMA_SCR_EN;
341 if (!dma_scr)
342 break;
343
344 if (time_after_eq(jiffies, timeout)) {
345 dev_err(chan2dev(chan), "%s: timeout!\n",
346 __func__);
347 return -EBUSY;
348 }
349 cond_resched();
350 } while (1);
351 }
352
353 return 0;
354}
355
356static void stm32_dma_stop(struct stm32_dma_chan *chan)
357{
358 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
359 u32 dma_scr, dma_sfcr, status;
360 int ret;
361
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);
369
370 /* Disable DMA */
371 ret = stm32_dma_disable_chan(chan);
372 if (ret < 0)
373 return;
374
375 /* Clear interrupt status if it is there */
376 status = stm32_dma_irq_status(chan);
377 if (status) {
378 dev_dbg(chan2dev(chan), "%s(): clearing interrupt: 0x%08x\n",
379 __func__, status);
380 stm32_dma_irq_clear(chan, status);
381 }
382
383 chan->busy = false;
384}
385
386static int stm32_dma_terminate_all(struct dma_chan *c)
387{
388 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
389 unsigned long flags;
390 LIST_HEAD(head);
391
392 spin_lock_irqsave(&chan->vchan.lock, flags);
393
394 if (chan->busy) {
395 stm32_dma_stop(chan);
396 chan->desc = NULL;
397 }
398
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);
402
403 return 0;
404}
405
406static void stm32_dma_dump_reg(struct stm32_dma_chan *chan)
407{
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));
415
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);
422}
423
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100424static void stm32_dma_start_transfer(struct stm32_dma_chan *chan)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200425{
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;
430 u32 status;
431 int ret;
432
433 ret = stm32_dma_disable_chan(chan);
434 if (ret < 0)
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100435 return;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200436
437 if (!chan->desc) {
438 vdesc = vchan_next_desc(&chan->vchan);
439 if (!vdesc)
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100440 return;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200441
442 chan->desc = to_stm32_dma_desc(vdesc);
443 chan->next_sg = 0;
444 }
445
446 if (chan->next_sg == chan->desc->num_sgs)
447 chan->next_sg = 0;
448
449 sg_req = &chan->desc->sg_req[chan->next_sg];
450 reg = &sg_req->chan_reg;
451
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);
458
459 chan->next_sg++;
460
461 /* Clear interrupt status if it is there */
462 status = stm32_dma_irq_status(chan);
463 if (status)
464 stm32_dma_irq_clear(chan, status);
465
466 stm32_dma_dump_reg(chan);
467
468 /* Start DMA */
469 reg->dma_scr |= STM32_DMA_SCR_EN;
470 stm32_dma_write(dmadev, STM32_DMA_SCR(chan->id), reg->dma_scr);
471
472 chan->busy = true;
473
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100474 dev_dbg(chan2dev(chan), "vchan %p: started\n", &chan->vchan);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200475}
476
477static void stm32_dma_configure_next_sg(struct stm32_dma_chan *chan)
478{
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;
482
483 id = chan->id;
484 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(id));
485
486 if (dma_scr & STM32_DMA_SCR_DBM) {
487 if (chan->next_sg == chan->desc->num_sgs)
488 chan->next_sg = 0;
489
490 sg_req = &chan->desc->sg_req[chan->next_sg];
491
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)));
497 } else {
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)));
502 }
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200503 }
504}
505
506static void stm32_dma_handle_chan_done(struct stm32_dma_chan *chan)
507{
508 if (chan->desc) {
509 if (chan->desc->cyclic) {
510 vchan_cyclic_callback(&chan->desc->vdesc);
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +0100511 chan->next_sg++;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200512 stm32_dma_configure_next_sg(chan);
513 } else {
514 chan->busy = false;
515 if (chan->next_sg == chan->desc->num_sgs) {
516 list_del(&chan->desc->vdesc.node);
517 vchan_cookie_complete(&chan->desc->vdesc);
518 chan->desc = NULL;
519 }
520 stm32_dma_start_transfer(chan);
521 }
522 }
523}
524
525static irqreturn_t stm32_dma_chan_irq(int irq, void *devid)
526{
527 struct stm32_dma_chan *chan = devid;
528 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
Vinod Koul1bc4f062016-12-09 15:24:12 +0530529 u32 status, scr;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200530
531 spin_lock(&chan->vchan.lock);
532
533 status = stm32_dma_irq_status(chan);
534 scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200535
536 if ((status & STM32_DMA_TCI) && (scr & STM32_DMA_SCR_TCIE)) {
537 stm32_dma_irq_clear(chan, STM32_DMA_TCI);
538 stm32_dma_handle_chan_done(chan);
539
540 } else {
541 stm32_dma_irq_clear(chan, status);
542 dev_err(chan2dev(chan), "DMA error: status=0x%08x\n", status);
543 }
544
545 spin_unlock(&chan->vchan.lock);
546
547 return IRQ_HANDLED;
548}
549
550static void stm32_dma_issue_pending(struct dma_chan *c)
551{
552 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
553 unsigned long flags;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200554
555 spin_lock_irqsave(&chan->vchan.lock, flags);
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100556 if (vchan_issue_pending(&chan->vchan) && !chan->desc && !chan->busy) {
557 dev_dbg(chan2dev(chan), "vchan %p: issued\n", &chan->vchan);
558 stm32_dma_start_transfer(chan);
559 if (chan->desc->cyclic)
560 stm32_dma_configure_next_sg(chan);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200561 }
562 spin_unlock_irqrestore(&chan->vchan.lock, flags);
563}
564
565static int stm32_dma_set_xfer_param(struct stm32_dma_chan *chan,
566 enum dma_transfer_direction direction,
567 enum dma_slave_buswidth *buswidth)
568{
569 enum dma_slave_buswidth src_addr_width, dst_addr_width;
570 int src_bus_width, dst_bus_width;
571 int src_burst_size, dst_burst_size;
572 u32 src_maxburst, dst_maxburst;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200573 u32 dma_scr = 0;
574
575 src_addr_width = chan->dma_sconfig.src_addr_width;
576 dst_addr_width = chan->dma_sconfig.dst_addr_width;
577 src_maxburst = chan->dma_sconfig.src_maxburst;
578 dst_maxburst = chan->dma_sconfig.dst_maxburst;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200579
580 switch (direction) {
581 case DMA_MEM_TO_DEV:
582 dst_bus_width = stm32_dma_get_width(chan, dst_addr_width);
583 if (dst_bus_width < 0)
584 return dst_bus_width;
585
586 dst_burst_size = stm32_dma_get_burst(chan, dst_maxburst);
587 if (dst_burst_size < 0)
588 return dst_burst_size;
589
590 if (!src_addr_width)
591 src_addr_width = dst_addr_width;
592
593 src_bus_width = stm32_dma_get_width(chan, src_addr_width);
594 if (src_bus_width < 0)
595 return src_bus_width;
596
597 src_burst_size = stm32_dma_get_burst(chan, src_maxburst);
598 if (src_burst_size < 0)
599 return src_burst_size;
600
601 dma_scr = STM32_DMA_SCR_DIR(STM32_DMA_MEM_TO_DEV) |
602 STM32_DMA_SCR_PSIZE(dst_bus_width) |
603 STM32_DMA_SCR_MSIZE(src_bus_width) |
604 STM32_DMA_SCR_PBURST(dst_burst_size) |
605 STM32_DMA_SCR_MBURST(src_burst_size);
606
607 chan->chan_reg.dma_spar = chan->dma_sconfig.dst_addr;
608 *buswidth = dst_addr_width;
609 break;
610
611 case DMA_DEV_TO_MEM:
612 src_bus_width = stm32_dma_get_width(chan, src_addr_width);
613 if (src_bus_width < 0)
614 return src_bus_width;
615
616 src_burst_size = stm32_dma_get_burst(chan, src_maxburst);
617 if (src_burst_size < 0)
618 return src_burst_size;
619
620 if (!dst_addr_width)
621 dst_addr_width = src_addr_width;
622
623 dst_bus_width = stm32_dma_get_width(chan, dst_addr_width);
624 if (dst_bus_width < 0)
625 return dst_bus_width;
626
627 dst_burst_size = stm32_dma_get_burst(chan, dst_maxburst);
628 if (dst_burst_size < 0)
629 return dst_burst_size;
630
631 dma_scr = STM32_DMA_SCR_DIR(STM32_DMA_DEV_TO_MEM) |
632 STM32_DMA_SCR_PSIZE(src_bus_width) |
633 STM32_DMA_SCR_MSIZE(dst_bus_width) |
634 STM32_DMA_SCR_PBURST(src_burst_size) |
635 STM32_DMA_SCR_MBURST(dst_burst_size);
636
637 chan->chan_reg.dma_spar = chan->dma_sconfig.src_addr;
638 *buswidth = chan->dma_sconfig.src_addr_width;
639 break;
640
641 default:
642 dev_err(chan2dev(chan), "Dma direction is not supported\n");
643 return -EINVAL;
644 }
645
646 stm32_dma_set_fifo_config(chan, src_maxburst, dst_maxburst);
647
648 chan->chan_reg.dma_scr &= ~(STM32_DMA_SCR_DIR_MASK |
649 STM32_DMA_SCR_PSIZE_MASK | STM32_DMA_SCR_MSIZE_MASK |
650 STM32_DMA_SCR_PBURST_MASK | STM32_DMA_SCR_MBURST_MASK);
651 chan->chan_reg.dma_scr |= dma_scr;
652
653 return 0;
654}
655
656static void stm32_dma_clear_reg(struct stm32_dma_chan_reg *regs)
657{
658 memset(regs, 0, sizeof(struct stm32_dma_chan_reg));
659}
660
661static struct dma_async_tx_descriptor *stm32_dma_prep_slave_sg(
662 struct dma_chan *c, struct scatterlist *sgl,
663 u32 sg_len, enum dma_transfer_direction direction,
664 unsigned long flags, void *context)
665{
666 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
667 struct stm32_dma_desc *desc;
668 struct scatterlist *sg;
669 enum dma_slave_buswidth buswidth;
670 u32 nb_data_items;
671 int i, ret;
672
673 if (!chan->config_init) {
674 dev_err(chan2dev(chan), "dma channel is not configured\n");
675 return NULL;
676 }
677
678 if (sg_len < 1) {
679 dev_err(chan2dev(chan), "Invalid segment length %d\n", sg_len);
680 return NULL;
681 }
682
683 desc = stm32_dma_alloc_desc(sg_len);
684 if (!desc)
685 return NULL;
686
687 ret = stm32_dma_set_xfer_param(chan, direction, &buswidth);
688 if (ret < 0)
689 goto err;
690
691 /* Set peripheral flow controller */
692 if (chan->dma_sconfig.device_fc)
693 chan->chan_reg.dma_scr |= STM32_DMA_SCR_PFCTRL;
694 else
695 chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_PFCTRL;
696
697 for_each_sg(sgl, sg, sg_len, i) {
698 desc->sg_req[i].len = sg_dma_len(sg);
699
700 nb_data_items = desc->sg_req[i].len / buswidth;
701 if (nb_data_items > STM32_DMA_MAX_DATA_ITEMS) {
702 dev_err(chan2dev(chan), "nb items not supported\n");
703 goto err;
704 }
705
706 stm32_dma_clear_reg(&desc->sg_req[i].chan_reg);
707 desc->sg_req[i].chan_reg.dma_scr = chan->chan_reg.dma_scr;
708 desc->sg_req[i].chan_reg.dma_sfcr = chan->chan_reg.dma_sfcr;
709 desc->sg_req[i].chan_reg.dma_spar = chan->chan_reg.dma_spar;
710 desc->sg_req[i].chan_reg.dma_sm0ar = sg_dma_address(sg);
711 desc->sg_req[i].chan_reg.dma_sm1ar = sg_dma_address(sg);
712 desc->sg_req[i].chan_reg.dma_sndtr = nb_data_items;
713 }
714
715 desc->num_sgs = sg_len;
716 desc->cyclic = false;
717
718 return vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
719
720err:
721 kfree(desc);
722 return NULL;
723}
724
725static struct dma_async_tx_descriptor *stm32_dma_prep_dma_cyclic(
726 struct dma_chan *c, dma_addr_t buf_addr, size_t buf_len,
727 size_t period_len, enum dma_transfer_direction direction,
728 unsigned long flags)
729{
730 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
731 struct stm32_dma_desc *desc;
732 enum dma_slave_buswidth buswidth;
733 u32 num_periods, nb_data_items;
734 int i, ret;
735
736 if (!buf_len || !period_len) {
737 dev_err(chan2dev(chan), "Invalid buffer/period len\n");
738 return NULL;
739 }
740
741 if (!chan->config_init) {
742 dev_err(chan2dev(chan), "dma channel is not configured\n");
743 return NULL;
744 }
745
746 if (buf_len % period_len) {
747 dev_err(chan2dev(chan), "buf_len not multiple of period_len\n");
748 return NULL;
749 }
750
751 /*
752 * We allow to take more number of requests till DMA is
753 * not started. The driver will loop over all requests.
754 * Once DMA is started then new requests can be queued only after
755 * terminating the DMA.
756 */
757 if (chan->busy) {
758 dev_err(chan2dev(chan), "Request not allowed when dma busy\n");
759 return NULL;
760 }
761
762 ret = stm32_dma_set_xfer_param(chan, direction, &buswidth);
763 if (ret < 0)
764 return NULL;
765
766 nb_data_items = period_len / buswidth;
767 if (nb_data_items > STM32_DMA_MAX_DATA_ITEMS) {
768 dev_err(chan2dev(chan), "number of items not supported\n");
769 return NULL;
770 }
771
772 /* Enable Circular mode or double buffer mode */
773 if (buf_len == period_len)
774 chan->chan_reg.dma_scr |= STM32_DMA_SCR_CIRC;
775 else
776 chan->chan_reg.dma_scr |= STM32_DMA_SCR_DBM;
777
778 /* Clear periph ctrl if client set it */
779 chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_PFCTRL;
780
781 num_periods = buf_len / period_len;
782
783 desc = stm32_dma_alloc_desc(num_periods);
784 if (!desc)
785 return NULL;
786
787 for (i = 0; i < num_periods; i++) {
788 desc->sg_req[i].len = period_len;
789
790 stm32_dma_clear_reg(&desc->sg_req[i].chan_reg);
791 desc->sg_req[i].chan_reg.dma_scr = chan->chan_reg.dma_scr;
792 desc->sg_req[i].chan_reg.dma_sfcr = chan->chan_reg.dma_sfcr;
793 desc->sg_req[i].chan_reg.dma_spar = chan->chan_reg.dma_spar;
794 desc->sg_req[i].chan_reg.dma_sm0ar = buf_addr;
795 desc->sg_req[i].chan_reg.dma_sm1ar = buf_addr;
796 desc->sg_req[i].chan_reg.dma_sndtr = nb_data_items;
797 buf_addr += period_len;
798 }
799
800 desc->num_sgs = num_periods;
801 desc->cyclic = true;
802
803 return vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
804}
805
806static struct dma_async_tx_descriptor *stm32_dma_prep_dma_memcpy(
807 struct dma_chan *c, dma_addr_t dest,
808 dma_addr_t src, size_t len, unsigned long flags)
809{
810 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
811 u32 num_sgs;
812 struct stm32_dma_desc *desc;
813 size_t xfer_count, offset;
814 int i;
815
816 num_sgs = DIV_ROUND_UP(len, STM32_DMA_MAX_DATA_ITEMS);
817 desc = stm32_dma_alloc_desc(num_sgs);
818 if (!desc)
819 return NULL;
820
821 for (offset = 0, i = 0; offset < len; offset += xfer_count, i++) {
822 xfer_count = min_t(size_t, len - offset,
823 STM32_DMA_MAX_DATA_ITEMS);
824
825 desc->sg_req[i].len = xfer_count;
826
827 stm32_dma_clear_reg(&desc->sg_req[i].chan_reg);
828 desc->sg_req[i].chan_reg.dma_scr =
829 STM32_DMA_SCR_DIR(STM32_DMA_MEM_TO_MEM) |
830 STM32_DMA_SCR_MINC |
831 STM32_DMA_SCR_PINC |
832 STM32_DMA_SCR_TCIE |
833 STM32_DMA_SCR_TEIE;
834 desc->sg_req[i].chan_reg.dma_sfcr = STM32_DMA_SFCR_DMDIS |
835 STM32_DMA_SFCR_FTH(STM32_DMA_FIFO_THRESHOLD_FULL) |
836 STM32_DMA_SFCR_FEIE;
837 desc->sg_req[i].chan_reg.dma_spar = src + offset;
838 desc->sg_req[i].chan_reg.dma_sm0ar = dest + offset;
839 desc->sg_req[i].chan_reg.dma_sndtr = xfer_count;
840 }
841
842 desc->num_sgs = num_sgs;
843 desc->cyclic = false;
844
845 return vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
846}
847
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +0100848static u32 stm32_dma_get_remaining_bytes(struct stm32_dma_chan *chan)
849{
850 u32 dma_scr, width, ndtr;
851 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
852
853 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
854 width = STM32_DMA_SCR_PSIZE_GET(dma_scr);
855 ndtr = stm32_dma_read(dmadev, STM32_DMA_SNDTR(chan->id));
856
857 return ndtr << width;
858}
859
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200860static size_t stm32_dma_desc_residue(struct stm32_dma_chan *chan,
861 struct stm32_dma_desc *desc,
862 u32 next_sg)
863{
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +0100864 u32 residue = 0;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200865 int i;
866
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +0100867 /*
868 * In cyclic mode, for the last period, residue = remaining bytes from
869 * NDTR
870 */
871 if (chan->desc->cyclic && next_sg == 0)
872 return stm32_dma_get_remaining_bytes(chan);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200873
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +0100874 /*
875 * For all other periods in cyclic mode, and in sg mode,
876 * residue = remaining bytes from NDTR + remaining periods/sg to be
877 * transferred
878 */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200879 for (i = next_sg; i < desc->num_sgs; i++)
880 residue += desc->sg_req[i].len;
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +0100881 residue += stm32_dma_get_remaining_bytes(chan);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200882
883 return residue;
884}
885
886static enum dma_status stm32_dma_tx_status(struct dma_chan *c,
887 dma_cookie_t cookie,
888 struct dma_tx_state *state)
889{
890 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
891 struct virt_dma_desc *vdesc;
892 enum dma_status status;
893 unsigned long flags;
894 u32 residue;
895
896 status = dma_cookie_status(c, cookie, state);
897 if ((status == DMA_COMPLETE) || (!state))
898 return status;
899
900 spin_lock_irqsave(&chan->vchan.lock, flags);
901 vdesc = vchan_find_desc(&chan->vchan, cookie);
902 if (cookie == chan->desc->vdesc.tx.cookie) {
903 residue = stm32_dma_desc_residue(chan, chan->desc,
904 chan->next_sg);
905 } else if (vdesc) {
906 residue = stm32_dma_desc_residue(chan,
907 to_stm32_dma_desc(vdesc), 0);
908 } else {
909 residue = 0;
910 }
911
912 dma_set_residue(state, residue);
913
914 spin_unlock_irqrestore(&chan->vchan.lock, flags);
915
916 return status;
917}
918
919static int stm32_dma_alloc_chan_resources(struct dma_chan *c)
920{
921 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
922 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
923 int ret;
924
925 chan->config_init = false;
926 ret = clk_prepare_enable(dmadev->clk);
927 if (ret < 0) {
928 dev_err(chan2dev(chan), "clk_prepare_enable failed: %d\n", ret);
929 return ret;
930 }
931
932 ret = stm32_dma_disable_chan(chan);
933 if (ret < 0)
934 clk_disable_unprepare(dmadev->clk);
935
936 return ret;
937}
938
939static void stm32_dma_free_chan_resources(struct dma_chan *c)
940{
941 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
942 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
943 unsigned long flags;
944
945 dev_dbg(chan2dev(chan), "Freeing channel %d\n", chan->id);
946
947 if (chan->busy) {
948 spin_lock_irqsave(&chan->vchan.lock, flags);
949 stm32_dma_stop(chan);
950 chan->desc = NULL;
951 spin_unlock_irqrestore(&chan->vchan.lock, flags);
952 }
953
954 clk_disable_unprepare(dmadev->clk);
955
956 vchan_free_chan_resources(to_virt_chan(c));
957}
958
959static void stm32_dma_desc_free(struct virt_dma_desc *vdesc)
960{
961 kfree(container_of(vdesc, struct stm32_dma_desc, vdesc));
962}
963
Vinod Koule97adb42016-09-02 15:59:10 +0530964static void stm32_dma_set_config(struct stm32_dma_chan *chan,
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200965 struct stm32_dma_cfg *cfg)
966{
967 stm32_dma_clear_reg(&chan->chan_reg);
968
969 chan->chan_reg.dma_scr = cfg->stream_config & STM32_DMA_SCR_CFG_MASK;
970 chan->chan_reg.dma_scr |= STM32_DMA_SCR_REQ(cfg->request_line);
971
972 /* Enable Interrupts */
973 chan->chan_reg.dma_scr |= STM32_DMA_SCR_TEIE | STM32_DMA_SCR_TCIE;
974
975 chan->chan_reg.dma_sfcr = cfg->threshold & STM32_DMA_SFCR_FTH_MASK;
976}
977
978static struct dma_chan *stm32_dma_of_xlate(struct of_phandle_args *dma_spec,
979 struct of_dma *ofdma)
980{
981 struct stm32_dma_device *dmadev = ofdma->of_dma_data;
982 struct stm32_dma_cfg cfg;
983 struct stm32_dma_chan *chan;
984 struct dma_chan *c;
985
986 if (dma_spec->args_count < 3)
987 return NULL;
988
989 cfg.channel_id = dma_spec->args[0];
990 cfg.request_line = dma_spec->args[1];
991 cfg.stream_config = dma_spec->args[2];
992 cfg.threshold = 0;
993
994 if ((cfg.channel_id >= STM32_DMA_MAX_CHANNELS) || (cfg.request_line >=
995 STM32_DMA_MAX_REQUEST_ID))
996 return NULL;
997
998 if (dma_spec->args_count > 3)
999 cfg.threshold = dma_spec->args[3];
1000
1001 chan = &dmadev->chan[cfg.channel_id];
1002
1003 c = dma_get_slave_channel(&chan->vchan.chan);
1004 if (c)
1005 stm32_dma_set_config(chan, &cfg);
1006
1007 return c;
1008}
1009
1010static const struct of_device_id stm32_dma_of_match[] = {
1011 { .compatible = "st,stm32-dma", },
1012 { /* sentinel */ },
1013};
1014MODULE_DEVICE_TABLE(of, stm32_dma_of_match);
1015
1016static int stm32_dma_probe(struct platform_device *pdev)
1017{
1018 struct stm32_dma_chan *chan;
1019 struct stm32_dma_device *dmadev;
1020 struct dma_device *dd;
1021 const struct of_device_id *match;
1022 struct resource *res;
1023 int i, ret;
1024
1025 match = of_match_device(stm32_dma_of_match, &pdev->dev);
1026 if (!match) {
1027 dev_err(&pdev->dev, "Error: No device match found\n");
1028 return -ENODEV;
1029 }
1030
1031 dmadev = devm_kzalloc(&pdev->dev, sizeof(*dmadev), GFP_KERNEL);
1032 if (!dmadev)
1033 return -ENOMEM;
1034
1035 dd = &dmadev->ddev;
1036
1037 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1038 dmadev->base = devm_ioremap_resource(&pdev->dev, res);
1039 if (IS_ERR(dmadev->base))
1040 return PTR_ERR(dmadev->base);
1041
1042 dmadev->clk = devm_clk_get(&pdev->dev, NULL);
1043 if (IS_ERR(dmadev->clk)) {
1044 dev_err(&pdev->dev, "Error: Missing controller clock\n");
1045 return PTR_ERR(dmadev->clk);
1046 }
1047
1048 dmadev->mem2mem = of_property_read_bool(pdev->dev.of_node,
1049 "st,mem2mem");
1050
1051 dmadev->rst = devm_reset_control_get(&pdev->dev, NULL);
1052 if (!IS_ERR(dmadev->rst)) {
1053 reset_control_assert(dmadev->rst);
1054 udelay(2);
1055 reset_control_deassert(dmadev->rst);
1056 }
1057
1058 dma_cap_set(DMA_SLAVE, dd->cap_mask);
1059 dma_cap_set(DMA_PRIVATE, dd->cap_mask);
1060 dma_cap_set(DMA_CYCLIC, dd->cap_mask);
1061 dd->device_alloc_chan_resources = stm32_dma_alloc_chan_resources;
1062 dd->device_free_chan_resources = stm32_dma_free_chan_resources;
1063 dd->device_tx_status = stm32_dma_tx_status;
1064 dd->device_issue_pending = stm32_dma_issue_pending;
1065 dd->device_prep_slave_sg = stm32_dma_prep_slave_sg;
1066 dd->device_prep_dma_cyclic = stm32_dma_prep_dma_cyclic;
1067 dd->device_config = stm32_dma_slave_config;
1068 dd->device_terminate_all = stm32_dma_terminate_all;
1069 dd->src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1070 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1071 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
1072 dd->dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1073 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1074 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
1075 dd->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
1076 dd->residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
1077 dd->dev = &pdev->dev;
1078 INIT_LIST_HEAD(&dd->channels);
1079
1080 if (dmadev->mem2mem) {
1081 dma_cap_set(DMA_MEMCPY, dd->cap_mask);
1082 dd->device_prep_dma_memcpy = stm32_dma_prep_dma_memcpy;
1083 dd->directions |= BIT(DMA_MEM_TO_MEM);
1084 }
1085
1086 for (i = 0; i < STM32_DMA_MAX_CHANNELS; i++) {
1087 chan = &dmadev->chan[i];
1088 chan->id = i;
1089 chan->vchan.desc_free = stm32_dma_desc_free;
1090 vchan_init(&chan->vchan, dd);
1091 }
1092
1093 ret = dma_async_device_register(dd);
1094 if (ret)
1095 return ret;
1096
1097 for (i = 0; i < STM32_DMA_MAX_CHANNELS; i++) {
1098 chan = &dmadev->chan[i];
1099 res = platform_get_resource(pdev, IORESOURCE_IRQ, i);
1100 if (!res) {
1101 ret = -EINVAL;
1102 dev_err(&pdev->dev, "No irq resource for chan %d\n", i);
1103 goto err_unregister;
1104 }
1105 chan->irq = res->start;
1106 ret = devm_request_irq(&pdev->dev, chan->irq,
1107 stm32_dma_chan_irq, 0,
1108 dev_name(chan2dev(chan)), chan);
1109 if (ret) {
1110 dev_err(&pdev->dev,
1111 "request_irq failed with err %d channel %d\n",
1112 ret, i);
1113 goto err_unregister;
1114 }
1115 }
1116
1117 ret = of_dma_controller_register(pdev->dev.of_node,
1118 stm32_dma_of_xlate, dmadev);
1119 if (ret < 0) {
1120 dev_err(&pdev->dev,
1121 "STM32 DMA DMA OF registration failed %d\n", ret);
1122 goto err_unregister;
1123 }
1124
1125 platform_set_drvdata(pdev, dmadev);
1126
1127 dev_info(&pdev->dev, "STM32 DMA driver registered\n");
1128
1129 return 0;
1130
1131err_unregister:
1132 dma_async_device_unregister(dd);
1133
1134 return ret;
1135}
1136
1137static struct platform_driver stm32_dma_driver = {
1138 .driver = {
1139 .name = "stm32-dma",
1140 .of_match_table = stm32_dma_of_match,
1141 },
1142};
1143
1144static int __init stm32_dma_init(void)
1145{
1146 return platform_driver_probe(&stm32_dma_driver, stm32_dma_probe);
1147}
1148subsys_initcall(stm32_dma_init);