blob: 2283c500f4ceb6bfe300b1aee36a339061cc3a7c [file] [log] [blame]
Thomas Gleixneraf873fc2019-05-28 09:57:21 -07001// SPDX-License-Identifier: GPL-2.0-only
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02002/*
3 * Driver for STM32 DMA controller
4 *
5 * Inspired by dma-jz4740.c and tegra20-apb-dma.c
6 *
7 * Copyright (C) M'boumba Cedric Madianga 2015
8 * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01009 * Pierre-Yves Mordret <pierre-yves.mordret@st.com>
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +020010 */
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>
Amelie Delaunay409ffc42020-01-29 16:36:27 +010018#include <linux/iopoll.h>
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +020019#include <linux/jiffies.h>
20#include <linux/list.h>
21#include <linux/module.h>
22#include <linux/of.h>
23#include <linux/of_device.h>
24#include <linux/of_dma.h>
25#include <linux/platform_device.h>
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +010026#include <linux/pm_runtime.h>
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +020027#include <linux/reset.h>
28#include <linux/sched.h>
29#include <linux/slab.h>
30
31#include "virt-dma.h"
32
33#define STM32_DMA_LISR 0x0000 /* DMA Low Int Status Reg */
34#define STM32_DMA_HISR 0x0004 /* DMA High Int Status Reg */
35#define STM32_DMA_LIFCR 0x0008 /* DMA Low Int Flag Clear Reg */
36#define STM32_DMA_HIFCR 0x000c /* DMA High Int Flag Clear Reg */
37#define STM32_DMA_TCI BIT(5) /* Transfer Complete Interrupt */
Pierre Yves MORDRETc2d86b12018-03-13 17:42:03 +010038#define STM32_DMA_HTI BIT(4) /* Half Transfer Interrupt */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +020039#define STM32_DMA_TEI BIT(3) /* Transfer Error Interrupt */
40#define STM32_DMA_DMEI BIT(2) /* Direct Mode Error Interrupt */
41#define STM32_DMA_FEI BIT(0) /* FIFO Error Interrupt */
Pierre Yves MORDRET9df3bd52018-03-13 17:42:05 +010042#define STM32_DMA_MASKI (STM32_DMA_TCI \
43 | STM32_DMA_TEI \
44 | STM32_DMA_DMEI \
45 | STM32_DMA_FEI)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +020046
47/* DMA Stream x Configuration Register */
48#define STM32_DMA_SCR(x) (0x0010 + 0x18 * (x)) /* x = 0..7 */
49#define STM32_DMA_SCR_REQ(n) ((n & 0x7) << 25)
50#define STM32_DMA_SCR_MBURST_MASK GENMASK(24, 23)
51#define STM32_DMA_SCR_MBURST(n) ((n & 0x3) << 23)
52#define STM32_DMA_SCR_PBURST_MASK GENMASK(22, 21)
53#define STM32_DMA_SCR_PBURST(n) ((n & 0x3) << 21)
54#define STM32_DMA_SCR_PL_MASK GENMASK(17, 16)
55#define STM32_DMA_SCR_PL(n) ((n & 0x3) << 16)
56#define STM32_DMA_SCR_MSIZE_MASK GENMASK(14, 13)
57#define STM32_DMA_SCR_MSIZE(n) ((n & 0x3) << 13)
58#define STM32_DMA_SCR_PSIZE_MASK GENMASK(12, 11)
59#define STM32_DMA_SCR_PSIZE(n) ((n & 0x3) << 11)
60#define STM32_DMA_SCR_PSIZE_GET(n) ((n & STM32_DMA_SCR_PSIZE_MASK) >> 11)
61#define STM32_DMA_SCR_DIR_MASK GENMASK(7, 6)
62#define STM32_DMA_SCR_DIR(n) ((n & 0x3) << 6)
Amelie Delaunay2b5b7402021-06-24 11:39:59 +020063#define STM32_DMA_SCR_TRBUFF BIT(20) /* Bufferable transfer for USART/UART */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +020064#define STM32_DMA_SCR_CT BIT(19) /* Target in double buffer */
65#define STM32_DMA_SCR_DBM BIT(18) /* Double Buffer Mode */
66#define STM32_DMA_SCR_PINCOS BIT(15) /* Peripheral inc offset size */
67#define STM32_DMA_SCR_MINC BIT(10) /* Memory increment mode */
68#define STM32_DMA_SCR_PINC BIT(9) /* Peripheral increment mode */
69#define STM32_DMA_SCR_CIRC BIT(8) /* Circular mode */
70#define STM32_DMA_SCR_PFCTRL BIT(5) /* Peripheral Flow Controller */
Pierre Yves MORDRET249d5532018-03-13 17:42:07 +010071#define STM32_DMA_SCR_TCIE BIT(4) /* Transfer Complete Int Enable
72 */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +020073#define STM32_DMA_SCR_TEIE BIT(2) /* Transfer Error Int Enable */
74#define STM32_DMA_SCR_DMEIE BIT(1) /* Direct Mode Err Int Enable */
75#define STM32_DMA_SCR_EN BIT(0) /* Stream Enable */
76#define STM32_DMA_SCR_CFG_MASK (STM32_DMA_SCR_PINC \
77 | STM32_DMA_SCR_MINC \
78 | STM32_DMA_SCR_PINCOS \
79 | STM32_DMA_SCR_PL_MASK)
80#define STM32_DMA_SCR_IRQ_MASK (STM32_DMA_SCR_TCIE \
81 | STM32_DMA_SCR_TEIE \
82 | STM32_DMA_SCR_DMEIE)
83
84/* DMA Stream x number of data register */
85#define STM32_DMA_SNDTR(x) (0x0014 + 0x18 * (x))
86
87/* DMA stream peripheral address register */
88#define STM32_DMA_SPAR(x) (0x0018 + 0x18 * (x))
89
90/* DMA stream x memory 0 address register */
91#define STM32_DMA_SM0AR(x) (0x001c + 0x18 * (x))
92
93/* DMA stream x memory 1 address register */
94#define STM32_DMA_SM1AR(x) (0x0020 + 0x18 * (x))
95
96/* DMA stream x FIFO control register */
97#define STM32_DMA_SFCR(x) (0x0024 + 0x18 * (x))
98#define STM32_DMA_SFCR_FTH_MASK GENMASK(1, 0)
99#define STM32_DMA_SFCR_FTH(n) (n & STM32_DMA_SFCR_FTH_MASK)
100#define STM32_DMA_SFCR_FEIE BIT(7) /* FIFO error interrupt enable */
101#define STM32_DMA_SFCR_DMDIS BIT(2) /* Direct mode disable */
102#define STM32_DMA_SFCR_MASK (STM32_DMA_SFCR_FEIE \
103 | STM32_DMA_SFCR_DMDIS)
104
105/* DMA direction */
106#define STM32_DMA_DEV_TO_MEM 0x00
107#define STM32_DMA_MEM_TO_DEV 0x01
108#define STM32_DMA_MEM_TO_MEM 0x02
109
110/* DMA priority level */
111#define STM32_DMA_PRIORITY_LOW 0x00
112#define STM32_DMA_PRIORITY_MEDIUM 0x01
113#define STM32_DMA_PRIORITY_HIGH 0x02
114#define STM32_DMA_PRIORITY_VERY_HIGH 0x03
115
116/* DMA FIFO threshold selection */
117#define STM32_DMA_FIFO_THRESHOLD_1QUARTERFULL 0x00
118#define STM32_DMA_FIFO_THRESHOLD_HALFFULL 0x01
119#define STM32_DMA_FIFO_THRESHOLD_3QUARTERSFULL 0x02
120#define STM32_DMA_FIFO_THRESHOLD_FULL 0x03
Amelie Delaunay955b1762020-04-22 12:29:04 +0200121#define STM32_DMA_FIFO_THRESHOLD_NONE 0x04
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200122
123#define STM32_DMA_MAX_DATA_ITEMS 0xffff
Pierre Yves MORDRET80a76952018-03-13 17:42:04 +0100124/*
125 * Valid transfer starts from @0 to @0xFFFE leading to unaligned scatter
126 * gather at boundary. Thus it's safer to round down this value on FIFO
127 * size (16 Bytes)
128 */
129#define STM32_DMA_ALIGNED_MAX_DATA_ITEMS \
130 ALIGN_DOWN(STM32_DMA_MAX_DATA_ITEMS, 16)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200131#define STM32_DMA_MAX_CHANNELS 0x08
132#define STM32_DMA_MAX_REQUEST_ID 0x08
133#define STM32_DMA_MAX_DATA_PARAM 0x03
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100134#define STM32_DMA_FIFO_SIZE 16 /* FIFO is 16 bytes */
135#define STM32_DMA_MIN_BURST 4
M'boumba Cedric Madianga276b0042016-12-13 14:40:51 +0100136#define STM32_DMA_MAX_BURST 16
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200137
Pierre Yves MORDRET951f44c2018-03-13 17:42:01 +0100138/* DMA Features */
139#define STM32_DMA_THRESHOLD_FTR_MASK GENMASK(1, 0)
140#define STM32_DMA_THRESHOLD_FTR_GET(n) ((n) & STM32_DMA_THRESHOLD_FTR_MASK)
Amelie Delaunay955b1762020-04-22 12:29:04 +0200141#define STM32_DMA_DIRECT_MODE_MASK BIT(2)
Amelie Delaunay2b5b7402021-06-24 11:39:59 +0200142#define STM32_DMA_DIRECT_MODE_GET(n) (((n) & STM32_DMA_DIRECT_MODE_MASK) >> 2)
143#define STM32_DMA_ALT_ACK_MODE_MASK BIT(4)
144#define STM32_DMA_ALT_ACK_MODE_GET(n) (((n) & STM32_DMA_ALT_ACK_MODE_MASK) >> 4)
Pierre Yves MORDRET951f44c2018-03-13 17:42:01 +0100145
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200146enum stm32_dma_width {
147 STM32_DMA_BYTE,
148 STM32_DMA_HALF_WORD,
149 STM32_DMA_WORD,
150};
151
152enum stm32_dma_burst_size {
153 STM32_DMA_BURST_SINGLE,
154 STM32_DMA_BURST_INCR4,
155 STM32_DMA_BURST_INCR8,
156 STM32_DMA_BURST_INCR16,
157};
158
Pierre Yves MORDRET951f44c2018-03-13 17:42:01 +0100159/**
160 * struct stm32_dma_cfg - STM32 DMA custom configuration
161 * @channel_id: channel ID
162 * @request_line: DMA request
163 * @stream_config: 32bit mask specifying the DMA channel configuration
164 * @features: 32bit mask specifying the DMA Feature list
165 */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200166struct stm32_dma_cfg {
167 u32 channel_id;
168 u32 request_line;
169 u32 stream_config;
Pierre Yves MORDRET951f44c2018-03-13 17:42:01 +0100170 u32 features;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200171};
172
173struct stm32_dma_chan_reg {
174 u32 dma_lisr;
175 u32 dma_hisr;
176 u32 dma_lifcr;
177 u32 dma_hifcr;
178 u32 dma_scr;
179 u32 dma_sndtr;
180 u32 dma_spar;
181 u32 dma_sm0ar;
182 u32 dma_sm1ar;
183 u32 dma_sfcr;
184};
185
186struct stm32_dma_sg_req {
187 u32 len;
188 struct stm32_dma_chan_reg chan_reg;
189};
190
191struct stm32_dma_desc {
192 struct virt_dma_desc vdesc;
193 bool cyclic;
194 u32 num_sgs;
195 struct stm32_dma_sg_req sg_req[];
196};
197
198struct stm32_dma_chan {
199 struct virt_dma_chan vchan;
200 bool config_init;
201 bool busy;
202 u32 id;
203 u32 irq;
204 struct stm32_dma_desc *desc;
205 u32 next_sg;
206 struct dma_slave_config dma_sconfig;
207 struct stm32_dma_chan_reg chan_reg;
Pierre Yves MORDRET951f44c2018-03-13 17:42:01 +0100208 u32 threshold;
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100209 u32 mem_burst;
210 u32 mem_width;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200211};
212
213struct stm32_dma_device {
214 struct dma_device ddev;
215 void __iomem *base;
216 struct clk *clk;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200217 bool mem2mem;
218 struct stm32_dma_chan chan[STM32_DMA_MAX_CHANNELS];
219};
220
221static struct stm32_dma_device *stm32_dma_get_dev(struct stm32_dma_chan *chan)
222{
223 return container_of(chan->vchan.chan.device, struct stm32_dma_device,
224 ddev);
225}
226
227static struct stm32_dma_chan *to_stm32_dma_chan(struct dma_chan *c)
228{
229 return container_of(c, struct stm32_dma_chan, vchan.chan);
230}
231
232static struct stm32_dma_desc *to_stm32_dma_desc(struct virt_dma_desc *vdesc)
233{
234 return container_of(vdesc, struct stm32_dma_desc, vdesc);
235}
236
237static struct device *chan2dev(struct stm32_dma_chan *chan)
238{
239 return &chan->vchan.chan.dev->device;
240}
241
242static u32 stm32_dma_read(struct stm32_dma_device *dmadev, u32 reg)
243{
244 return readl_relaxed(dmadev->base + reg);
245}
246
247static void stm32_dma_write(struct stm32_dma_device *dmadev, u32 reg, u32 val)
248{
249 writel_relaxed(val, dmadev->base + reg);
250}
251
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200252static int stm32_dma_get_width(struct stm32_dma_chan *chan,
253 enum dma_slave_buswidth width)
254{
255 switch (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;
262 default:
263 dev_err(chan2dev(chan), "Dma bus width not supported\n");
264 return -EINVAL;
265 }
266}
267
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100268static enum dma_slave_buswidth stm32_dma_get_max_width(u32 buf_len,
Amelie Delaunaye0ebdbd2020-11-20 15:33:19 +0100269 dma_addr_t buf_addr,
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100270 u32 threshold)
271{
272 enum dma_slave_buswidth max_width;
273
274 if (threshold == STM32_DMA_FIFO_THRESHOLD_FULL)
275 max_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
276 else
277 max_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
278
279 while ((buf_len < max_width || buf_len % max_width) &&
280 max_width > DMA_SLAVE_BUSWIDTH_1_BYTE)
281 max_width = max_width >> 1;
282
Amelie Delaunayb20fd5f2021-10-11 11:42:58 +0200283 if (buf_addr % max_width)
Amelie Delaunaye0ebdbd2020-11-20 15:33:19 +0100284 max_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
285
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100286 return max_width;
287}
288
289static bool stm32_dma_fifo_threshold_is_allowed(u32 burst, u32 threshold,
290 enum dma_slave_buswidth width)
291{
292 u32 remaining;
293
Amelie Delaunay955b1762020-04-22 12:29:04 +0200294 if (threshold == STM32_DMA_FIFO_THRESHOLD_NONE)
295 return false;
296
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100297 if (width != DMA_SLAVE_BUSWIDTH_UNDEFINED) {
298 if (burst != 0) {
299 /*
300 * If number of beats fit in several whole bursts
301 * this configuration is allowed.
302 */
303 remaining = ((STM32_DMA_FIFO_SIZE / width) *
304 (threshold + 1) / 4) % burst;
305
306 if (remaining == 0)
307 return true;
308 } else {
309 return true;
310 }
311 }
312
313 return false;
314}
315
316static bool stm32_dma_is_burst_possible(u32 buf_len, u32 threshold)
317{
Amelie Delaunay955b1762020-04-22 12:29:04 +0200318 /* If FIFO direct mode, burst is not possible */
319 if (threshold == STM32_DMA_FIFO_THRESHOLD_NONE)
320 return false;
321
Pierre-Yves MORDRETcc832dc2018-09-11 09:31:16 +0200322 /*
323 * Buffer or period length has to be aligned on FIFO depth.
324 * Otherwise bytes may be stuck within FIFO at buffer or period
325 * length.
326 */
327 return ((buf_len % ((threshold + 1) * 4)) == 0);
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100328}
329
330static u32 stm32_dma_get_best_burst(u32 buf_len, u32 max_burst, u32 threshold,
331 enum dma_slave_buswidth width)
332{
333 u32 best_burst = max_burst;
334
335 if (best_burst == 1 || !stm32_dma_is_burst_possible(buf_len, threshold))
336 return 0;
337
338 while ((buf_len < best_burst * width && best_burst > 1) ||
339 !stm32_dma_fifo_threshold_is_allowed(best_burst, threshold,
340 width)) {
341 if (best_burst > STM32_DMA_MIN_BURST)
342 best_burst = best_burst >> 1;
343 else
344 best_burst = 0;
345 }
346
347 return best_burst;
348}
349
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200350static int stm32_dma_get_burst(struct stm32_dma_chan *chan, u32 maxburst)
351{
352 switch (maxburst) {
353 case 0:
354 case 1:
355 return STM32_DMA_BURST_SINGLE;
356 case 4:
357 return STM32_DMA_BURST_INCR4;
358 case 8:
359 return STM32_DMA_BURST_INCR8;
360 case 16:
361 return STM32_DMA_BURST_INCR16;
362 default:
363 dev_err(chan2dev(chan), "Dma burst size not supported\n");
364 return -EINVAL;
365 }
366}
367
368static void stm32_dma_set_fifo_config(struct stm32_dma_chan *chan,
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100369 u32 src_burst, u32 dst_burst)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200370{
371 chan->chan_reg.dma_sfcr &= ~STM32_DMA_SFCR_MASK;
372 chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_DMEIE;
373
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100374 if (!src_burst && !dst_burst) {
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200375 /* Using direct mode */
376 chan->chan_reg.dma_scr |= STM32_DMA_SCR_DMEIE;
377 } else {
378 /* Using FIFO mode */
379 chan->chan_reg.dma_sfcr |= STM32_DMA_SFCR_MASK;
380 }
381}
382
383static int stm32_dma_slave_config(struct dma_chan *c,
384 struct dma_slave_config *config)
385{
386 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
387
388 memcpy(&chan->dma_sconfig, config, sizeof(*config));
389
390 chan->config_init = true;
391
392 return 0;
393}
394
395static u32 stm32_dma_irq_status(struct stm32_dma_chan *chan)
396{
397 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
398 u32 flags, dma_isr;
399
400 /*
401 * Read "flags" from DMA_xISR register corresponding to the selected
402 * DMA channel at the correct bit offset inside that register.
403 *
404 * If (ch % 4) is 2 or 3, left shift the mask by 16 bits.
405 * If (ch % 4) is 1 or 3, additionally left shift the mask by 6 bits.
406 */
407
408 if (chan->id & 4)
409 dma_isr = stm32_dma_read(dmadev, STM32_DMA_HISR);
410 else
411 dma_isr = stm32_dma_read(dmadev, STM32_DMA_LISR);
412
413 flags = dma_isr >> (((chan->id & 2) << 3) | ((chan->id & 1) * 6));
414
Pierre Yves MORDRET9df3bd52018-03-13 17:42:05 +0100415 return flags & STM32_DMA_MASKI;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200416}
417
418static void stm32_dma_irq_clear(struct stm32_dma_chan *chan, u32 flags)
419{
420 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
421 u32 dma_ifcr;
422
423 /*
424 * Write "flags" to the DMA_xIFCR register corresponding to the selected
425 * DMA channel at the correct bit offset inside that register.
426 *
427 * If (ch % 4) is 2 or 3, left shift the mask by 16 bits.
428 * If (ch % 4) is 1 or 3, additionally left shift the mask by 6 bits.
429 */
Pierre Yves MORDRET9df3bd52018-03-13 17:42:05 +0100430 flags &= STM32_DMA_MASKI;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200431 dma_ifcr = flags << (((chan->id & 2) << 3) | ((chan->id & 1) * 6));
432
433 if (chan->id & 4)
434 stm32_dma_write(dmadev, STM32_DMA_HIFCR, dma_ifcr);
435 else
436 stm32_dma_write(dmadev, STM32_DMA_LIFCR, dma_ifcr);
437}
438
439static int stm32_dma_disable_chan(struct stm32_dma_chan *chan)
440{
441 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
Amelie Delaunay409ffc42020-01-29 16:36:27 +0100442 u32 dma_scr, id, reg;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200443
444 id = chan->id;
Amelie Delaunay409ffc42020-01-29 16:36:27 +0100445 reg = STM32_DMA_SCR(id);
446 dma_scr = stm32_dma_read(dmadev, reg);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200447
448 if (dma_scr & STM32_DMA_SCR_EN) {
449 dma_scr &= ~STM32_DMA_SCR_EN;
Amelie Delaunay409ffc42020-01-29 16:36:27 +0100450 stm32_dma_write(dmadev, reg, dma_scr);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200451
Amelie Delaunay409ffc42020-01-29 16:36:27 +0100452 return readl_relaxed_poll_timeout_atomic(dmadev->base + reg,
453 dma_scr, !(dma_scr & STM32_DMA_SCR_EN),
454 10, 1000000);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200455 }
456
457 return 0;
458}
459
460static void stm32_dma_stop(struct stm32_dma_chan *chan)
461{
462 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
463 u32 dma_scr, dma_sfcr, status;
464 int ret;
465
466 /* Disable interrupts */
467 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
468 dma_scr &= ~STM32_DMA_SCR_IRQ_MASK;
469 stm32_dma_write(dmadev, STM32_DMA_SCR(chan->id), dma_scr);
470 dma_sfcr = stm32_dma_read(dmadev, STM32_DMA_SFCR(chan->id));
471 dma_sfcr &= ~STM32_DMA_SFCR_FEIE;
472 stm32_dma_write(dmadev, STM32_DMA_SFCR(chan->id), dma_sfcr);
473
474 /* Disable DMA */
475 ret = stm32_dma_disable_chan(chan);
476 if (ret < 0)
477 return;
478
479 /* Clear interrupt status if it is there */
480 status = stm32_dma_irq_status(chan);
481 if (status) {
482 dev_dbg(chan2dev(chan), "%s(): clearing interrupt: 0x%08x\n",
483 __func__, status);
484 stm32_dma_irq_clear(chan, status);
485 }
486
487 chan->busy = false;
488}
489
490static int stm32_dma_terminate_all(struct dma_chan *c)
491{
492 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
493 unsigned long flags;
494 LIST_HEAD(head);
495
496 spin_lock_irqsave(&chan->vchan.lock, flags);
497
Amelie Delaunayd80cbef2020-01-29 16:36:28 +0100498 if (chan->desc) {
Amelie Delaunay79e40b02021-10-11 11:42:57 +0200499 dma_cookie_complete(&chan->desc->vdesc.tx);
Amelie Delaunayd80cbef2020-01-29 16:36:28 +0100500 vchan_terminate_vdesc(&chan->desc->vdesc);
501 if (chan->busy)
502 stm32_dma_stop(chan);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200503 chan->desc = NULL;
504 }
505
506 vchan_get_all_descriptors(&chan->vchan, &head);
507 spin_unlock_irqrestore(&chan->vchan.lock, flags);
508 vchan_dma_desc_free_list(&chan->vchan, &head);
509
510 return 0;
511}
512
M'boumba Cedric Madiangadc808672016-12-13 14:40:50 +0100513static void stm32_dma_synchronize(struct dma_chan *c)
514{
515 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
516
517 vchan_synchronize(&chan->vchan);
518}
519
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200520static void stm32_dma_dump_reg(struct stm32_dma_chan *chan)
521{
522 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
523 u32 scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
524 u32 ndtr = stm32_dma_read(dmadev, STM32_DMA_SNDTR(chan->id));
525 u32 spar = stm32_dma_read(dmadev, STM32_DMA_SPAR(chan->id));
526 u32 sm0ar = stm32_dma_read(dmadev, STM32_DMA_SM0AR(chan->id));
527 u32 sm1ar = stm32_dma_read(dmadev, STM32_DMA_SM1AR(chan->id));
528 u32 sfcr = stm32_dma_read(dmadev, STM32_DMA_SFCR(chan->id));
529
530 dev_dbg(chan2dev(chan), "SCR: 0x%08x\n", scr);
531 dev_dbg(chan2dev(chan), "NDTR: 0x%08x\n", ndtr);
532 dev_dbg(chan2dev(chan), "SPAR: 0x%08x\n", spar);
533 dev_dbg(chan2dev(chan), "SM0AR: 0x%08x\n", sm0ar);
534 dev_dbg(chan2dev(chan), "SM1AR: 0x%08x\n", sm1ar);
535 dev_dbg(chan2dev(chan), "SFCR: 0x%08x\n", sfcr);
536}
537
Pierre Yves MORDRETe57cb3b2018-03-13 17:42:06 +0100538static void stm32_dma_configure_next_sg(struct stm32_dma_chan *chan);
539
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100540static void stm32_dma_start_transfer(struct stm32_dma_chan *chan)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200541{
542 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
543 struct virt_dma_desc *vdesc;
544 struct stm32_dma_sg_req *sg_req;
545 struct stm32_dma_chan_reg *reg;
546 u32 status;
547 int ret;
548
549 ret = stm32_dma_disable_chan(chan);
550 if (ret < 0)
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100551 return;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200552
553 if (!chan->desc) {
554 vdesc = vchan_next_desc(&chan->vchan);
555 if (!vdesc)
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100556 return;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200557
Amelie Delaunayd80cbef2020-01-29 16:36:28 +0100558 list_del(&vdesc->node);
559
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200560 chan->desc = to_stm32_dma_desc(vdesc);
561 chan->next_sg = 0;
562 }
563
564 if (chan->next_sg == chan->desc->num_sgs)
565 chan->next_sg = 0;
566
567 sg_req = &chan->desc->sg_req[chan->next_sg];
568 reg = &sg_req->chan_reg;
569
Pierre-Yves MORDRET22a0bb22020-01-29 16:36:24 +0100570 reg->dma_scr &= ~STM32_DMA_SCR_EN;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200571 stm32_dma_write(dmadev, STM32_DMA_SCR(chan->id), reg->dma_scr);
572 stm32_dma_write(dmadev, STM32_DMA_SPAR(chan->id), reg->dma_spar);
573 stm32_dma_write(dmadev, STM32_DMA_SM0AR(chan->id), reg->dma_sm0ar);
574 stm32_dma_write(dmadev, STM32_DMA_SFCR(chan->id), reg->dma_sfcr);
575 stm32_dma_write(dmadev, STM32_DMA_SM1AR(chan->id), reg->dma_sm1ar);
576 stm32_dma_write(dmadev, STM32_DMA_SNDTR(chan->id), reg->dma_sndtr);
577
578 chan->next_sg++;
579
580 /* Clear interrupt status if it is there */
581 status = stm32_dma_irq_status(chan);
582 if (status)
583 stm32_dma_irq_clear(chan, status);
584
Pierre Yves MORDRETe57cb3b2018-03-13 17:42:06 +0100585 if (chan->desc->cyclic)
586 stm32_dma_configure_next_sg(chan);
587
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200588 stm32_dma_dump_reg(chan);
589
590 /* Start DMA */
591 reg->dma_scr |= STM32_DMA_SCR_EN;
592 stm32_dma_write(dmadev, STM32_DMA_SCR(chan->id), reg->dma_scr);
593
594 chan->busy = true;
595
Benjamin Gaignard90ec93c2018-07-06 15:02:20 +0200596 dev_dbg(chan2dev(chan), "vchan %pK: started\n", &chan->vchan);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200597}
598
599static void stm32_dma_configure_next_sg(struct stm32_dma_chan *chan)
600{
601 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
602 struct stm32_dma_sg_req *sg_req;
603 u32 dma_scr, dma_sm0ar, dma_sm1ar, id;
604
605 id = chan->id;
606 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(id));
607
608 if (dma_scr & STM32_DMA_SCR_DBM) {
609 if (chan->next_sg == chan->desc->num_sgs)
610 chan->next_sg = 0;
611
612 sg_req = &chan->desc->sg_req[chan->next_sg];
613
614 if (dma_scr & STM32_DMA_SCR_CT) {
615 dma_sm0ar = sg_req->chan_reg.dma_sm0ar;
616 stm32_dma_write(dmadev, STM32_DMA_SM0AR(id), dma_sm0ar);
617 dev_dbg(chan2dev(chan), "CT=1 <=> SM0AR: 0x%08x\n",
618 stm32_dma_read(dmadev, STM32_DMA_SM0AR(id)));
619 } else {
620 dma_sm1ar = sg_req->chan_reg.dma_sm1ar;
621 stm32_dma_write(dmadev, STM32_DMA_SM1AR(id), dma_sm1ar);
622 dev_dbg(chan2dev(chan), "CT=0 <=> SM1AR: 0x%08x\n",
623 stm32_dma_read(dmadev, STM32_DMA_SM1AR(id)));
624 }
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200625 }
626}
627
628static void stm32_dma_handle_chan_done(struct stm32_dma_chan *chan)
629{
630 if (chan->desc) {
631 if (chan->desc->cyclic) {
632 vchan_cyclic_callback(&chan->desc->vdesc);
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +0100633 chan->next_sg++;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200634 stm32_dma_configure_next_sg(chan);
635 } else {
636 chan->busy = false;
637 if (chan->next_sg == chan->desc->num_sgs) {
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200638 vchan_cookie_complete(&chan->desc->vdesc);
639 chan->desc = NULL;
640 }
641 stm32_dma_start_transfer(chan);
642 }
643 }
644}
645
646static irqreturn_t stm32_dma_chan_irq(int irq, void *devid)
647{
648 struct stm32_dma_chan *chan = devid;
649 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
Pierre-Yves MORDRETca4c72c2019-01-03 11:17:29 +0100650 u32 status, scr, sfcr;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200651
652 spin_lock(&chan->vchan.lock);
653
654 status = stm32_dma_irq_status(chan);
655 scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
Pierre-Yves MORDRETca4c72c2019-01-03 11:17:29 +0100656 sfcr = stm32_dma_read(dmadev, STM32_DMA_SFCR(chan->id));
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200657
Pierre Yves MORDRETc2d86b12018-03-13 17:42:03 +0100658 if (status & STM32_DMA_FEI) {
659 stm32_dma_irq_clear(chan, STM32_DMA_FEI);
660 status &= ~STM32_DMA_FEI;
Pierre-Yves MORDRETca4c72c2019-01-03 11:17:29 +0100661 if (sfcr & STM32_DMA_SFCR_FEIE) {
Amelie Delaunaya44d9d72020-11-20 15:33:17 +0100662 if (!(scr & STM32_DMA_SCR_EN) &&
663 !(status & STM32_DMA_TCI))
Pierre-Yves MORDRETca4c72c2019-01-03 11:17:29 +0100664 dev_err(chan2dev(chan), "FIFO Error\n");
665 else
666 dev_dbg(chan2dev(chan), "FIFO over/underrun\n");
667 }
Pierre Yves MORDRETc2d86b12018-03-13 17:42:03 +0100668 }
Amelie Delaunay955b1762020-04-22 12:29:04 +0200669 if (status & STM32_DMA_DMEI) {
670 stm32_dma_irq_clear(chan, STM32_DMA_DMEI);
671 status &= ~STM32_DMA_DMEI;
672 if (sfcr & STM32_DMA_SCR_DMEIE)
673 dev_dbg(chan2dev(chan), "Direct mode overrun\n");
674 }
Amelie Delaunaya44d9d72020-11-20 15:33:17 +0100675
676 if (status & STM32_DMA_TCI) {
677 stm32_dma_irq_clear(chan, STM32_DMA_TCI);
678 if (scr & STM32_DMA_SCR_TCIE)
679 stm32_dma_handle_chan_done(chan);
680 status &= ~STM32_DMA_TCI;
681 }
682
683 if (status & STM32_DMA_HTI) {
684 stm32_dma_irq_clear(chan, STM32_DMA_HTI);
685 status &= ~STM32_DMA_HTI;
686 }
687
Pierre Yves MORDRETc2d86b12018-03-13 17:42:03 +0100688 if (status) {
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200689 stm32_dma_irq_clear(chan, status);
690 dev_err(chan2dev(chan), "DMA error: status=0x%08x\n", status);
Pierre Yves MORDRETc2d86b12018-03-13 17:42:03 +0100691 if (!(scr & STM32_DMA_SCR_EN))
692 dev_err(chan2dev(chan), "chan disabled by HW\n");
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200693 }
694
695 spin_unlock(&chan->vchan.lock);
696
697 return IRQ_HANDLED;
698}
699
700static void stm32_dma_issue_pending(struct dma_chan *c)
701{
702 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
703 unsigned long flags;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200704
705 spin_lock_irqsave(&chan->vchan.lock, flags);
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100706 if (vchan_issue_pending(&chan->vchan) && !chan->desc && !chan->busy) {
Benjamin Gaignard90ec93c2018-07-06 15:02:20 +0200707 dev_dbg(chan2dev(chan), "vchan %pK: issued\n", &chan->vchan);
M'boumba Cedric Madianga8d1b76f2016-12-13 14:40:47 +0100708 stm32_dma_start_transfer(chan);
Pierre Yves MORDRETe57cb3b2018-03-13 17:42:06 +0100709
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200710 }
711 spin_unlock_irqrestore(&chan->vchan.lock, flags);
712}
713
714static int stm32_dma_set_xfer_param(struct stm32_dma_chan *chan,
715 enum dma_transfer_direction direction,
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100716 enum dma_slave_buswidth *buswidth,
Amelie Delaunaye0ebdbd2020-11-20 15:33:19 +0100717 u32 buf_len, dma_addr_t buf_addr)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200718{
719 enum dma_slave_buswidth src_addr_width, dst_addr_width;
720 int src_bus_width, dst_bus_width;
721 int src_burst_size, dst_burst_size;
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100722 u32 src_maxburst, dst_maxburst, src_best_burst, dst_best_burst;
Amelie Delaunay955b1762020-04-22 12:29:04 +0200723 u32 dma_scr, fifoth;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200724
725 src_addr_width = chan->dma_sconfig.src_addr_width;
726 dst_addr_width = chan->dma_sconfig.dst_addr_width;
727 src_maxburst = chan->dma_sconfig.src_maxburst;
728 dst_maxburst = chan->dma_sconfig.dst_maxburst;
Amelie Delaunay955b1762020-04-22 12:29:04 +0200729 fifoth = chan->threshold;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200730
731 switch (direction) {
732 case DMA_MEM_TO_DEV:
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100733 /* Set device data size */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200734 dst_bus_width = stm32_dma_get_width(chan, dst_addr_width);
735 if (dst_bus_width < 0)
736 return dst_bus_width;
737
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100738 /* Set device burst size */
739 dst_best_burst = stm32_dma_get_best_burst(buf_len,
740 dst_maxburst,
Amelie Delaunay955b1762020-04-22 12:29:04 +0200741 fifoth,
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100742 dst_addr_width);
743
744 dst_burst_size = stm32_dma_get_burst(chan, dst_best_burst);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200745 if (dst_burst_size < 0)
746 return dst_burst_size;
747
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100748 /* Set memory data size */
Amelie Delaunaye0ebdbd2020-11-20 15:33:19 +0100749 src_addr_width = stm32_dma_get_max_width(buf_len, buf_addr,
750 fifoth);
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100751 chan->mem_width = src_addr_width;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200752 src_bus_width = stm32_dma_get_width(chan, src_addr_width);
753 if (src_bus_width < 0)
754 return src_bus_width;
755
Amelie Delaunayaf229d22021-10-11 11:42:59 +0200756 /*
757 * Set memory burst size - burst not possible if address is not aligned on
758 * the address boundary equal to the size of the transfer
759 */
760 if (buf_addr % buf_len)
761 src_maxburst = 1;
762 else
763 src_maxburst = STM32_DMA_MAX_BURST;
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100764 src_best_burst = stm32_dma_get_best_burst(buf_len,
765 src_maxburst,
Amelie Delaunay955b1762020-04-22 12:29:04 +0200766 fifoth,
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100767 src_addr_width);
768 src_burst_size = stm32_dma_get_burst(chan, src_best_burst);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200769 if (src_burst_size < 0)
770 return src_burst_size;
771
772 dma_scr = STM32_DMA_SCR_DIR(STM32_DMA_MEM_TO_DEV) |
773 STM32_DMA_SCR_PSIZE(dst_bus_width) |
774 STM32_DMA_SCR_MSIZE(src_bus_width) |
775 STM32_DMA_SCR_PBURST(dst_burst_size) |
776 STM32_DMA_SCR_MBURST(src_burst_size);
777
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100778 /* Set FIFO threshold */
779 chan->chan_reg.dma_sfcr &= ~STM32_DMA_SFCR_FTH_MASK;
Amelie Delaunay955b1762020-04-22 12:29:04 +0200780 if (fifoth != STM32_DMA_FIFO_THRESHOLD_NONE)
781 chan->chan_reg.dma_sfcr |= STM32_DMA_SFCR_FTH(fifoth);
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100782
783 /* Set peripheral address */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200784 chan->chan_reg.dma_spar = chan->dma_sconfig.dst_addr;
785 *buswidth = dst_addr_width;
786 break;
787
788 case DMA_DEV_TO_MEM:
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100789 /* Set device data size */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200790 src_bus_width = stm32_dma_get_width(chan, src_addr_width);
791 if (src_bus_width < 0)
792 return src_bus_width;
793
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100794 /* Set device burst size */
795 src_best_burst = stm32_dma_get_best_burst(buf_len,
796 src_maxburst,
Amelie Delaunay955b1762020-04-22 12:29:04 +0200797 fifoth,
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100798 src_addr_width);
799 chan->mem_burst = src_best_burst;
800 src_burst_size = stm32_dma_get_burst(chan, src_best_burst);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200801 if (src_burst_size < 0)
802 return src_burst_size;
803
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100804 /* Set memory data size */
Amelie Delaunaye0ebdbd2020-11-20 15:33:19 +0100805 dst_addr_width = stm32_dma_get_max_width(buf_len, buf_addr,
806 fifoth);
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100807 chan->mem_width = dst_addr_width;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200808 dst_bus_width = stm32_dma_get_width(chan, dst_addr_width);
809 if (dst_bus_width < 0)
810 return dst_bus_width;
811
Amelie Delaunayaf229d22021-10-11 11:42:59 +0200812 /*
813 * Set memory burst size - burst not possible if address is not aligned on
814 * the address boundary equal to the size of the transfer
815 */
816 if (buf_addr % buf_len)
817 dst_maxburst = 1;
818 else
819 dst_maxburst = STM32_DMA_MAX_BURST;
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100820 dst_best_burst = stm32_dma_get_best_burst(buf_len,
821 dst_maxburst,
Amelie Delaunay955b1762020-04-22 12:29:04 +0200822 fifoth,
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100823 dst_addr_width);
824 chan->mem_burst = dst_best_burst;
825 dst_burst_size = stm32_dma_get_burst(chan, dst_best_burst);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200826 if (dst_burst_size < 0)
827 return dst_burst_size;
828
829 dma_scr = STM32_DMA_SCR_DIR(STM32_DMA_DEV_TO_MEM) |
830 STM32_DMA_SCR_PSIZE(src_bus_width) |
831 STM32_DMA_SCR_MSIZE(dst_bus_width) |
832 STM32_DMA_SCR_PBURST(src_burst_size) |
833 STM32_DMA_SCR_MBURST(dst_burst_size);
834
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100835 /* Set FIFO threshold */
836 chan->chan_reg.dma_sfcr &= ~STM32_DMA_SFCR_FTH_MASK;
Amelie Delaunay955b1762020-04-22 12:29:04 +0200837 if (fifoth != STM32_DMA_FIFO_THRESHOLD_NONE)
838 chan->chan_reg.dma_sfcr |= STM32_DMA_SFCR_FTH(fifoth);
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100839
840 /* Set peripheral address */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200841 chan->chan_reg.dma_spar = chan->dma_sconfig.src_addr;
842 *buswidth = chan->dma_sconfig.src_addr_width;
843 break;
844
845 default:
846 dev_err(chan2dev(chan), "Dma direction is not supported\n");
847 return -EINVAL;
848 }
849
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100850 stm32_dma_set_fifo_config(chan, src_best_burst, dst_best_burst);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200851
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100852 /* Set DMA control register */
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200853 chan->chan_reg.dma_scr &= ~(STM32_DMA_SCR_DIR_MASK |
854 STM32_DMA_SCR_PSIZE_MASK | STM32_DMA_SCR_MSIZE_MASK |
855 STM32_DMA_SCR_PBURST_MASK | STM32_DMA_SCR_MBURST_MASK);
856 chan->chan_reg.dma_scr |= dma_scr;
857
858 return 0;
859}
860
861static void stm32_dma_clear_reg(struct stm32_dma_chan_reg *regs)
862{
863 memset(regs, 0, sizeof(struct stm32_dma_chan_reg));
864}
865
866static struct dma_async_tx_descriptor *stm32_dma_prep_slave_sg(
867 struct dma_chan *c, struct scatterlist *sgl,
868 u32 sg_len, enum dma_transfer_direction direction,
869 unsigned long flags, void *context)
870{
871 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
872 struct stm32_dma_desc *desc;
873 struct scatterlist *sg;
874 enum dma_slave_buswidth buswidth;
875 u32 nb_data_items;
876 int i, ret;
877
878 if (!chan->config_init) {
879 dev_err(chan2dev(chan), "dma channel is not configured\n");
880 return NULL;
881 }
882
883 if (sg_len < 1) {
884 dev_err(chan2dev(chan), "Invalid segment length %d\n", sg_len);
885 return NULL;
886 }
887
Gustavo A. R. Silva402096c2019-08-30 11:14:23 -0500888 desc = kzalloc(struct_size(desc, sg_req, sg_len), GFP_NOWAIT);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200889 if (!desc)
890 return NULL;
891
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200892 /* Set peripheral flow controller */
893 if (chan->dma_sconfig.device_fc)
894 chan->chan_reg.dma_scr |= STM32_DMA_SCR_PFCTRL;
895 else
896 chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_PFCTRL;
897
898 for_each_sg(sgl, sg, sg_len, i) {
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100899 ret = stm32_dma_set_xfer_param(chan, direction, &buswidth,
Amelie Delaunaye0ebdbd2020-11-20 15:33:19 +0100900 sg_dma_len(sg),
901 sg_dma_address(sg));
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +0100902 if (ret < 0)
903 goto err;
904
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200905 desc->sg_req[i].len = sg_dma_len(sg);
906
907 nb_data_items = desc->sg_req[i].len / buswidth;
Pierre Yves MORDRET80a76952018-03-13 17:42:04 +0100908 if (nb_data_items > STM32_DMA_ALIGNED_MAX_DATA_ITEMS) {
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200909 dev_err(chan2dev(chan), "nb items not supported\n");
910 goto err;
911 }
912
913 stm32_dma_clear_reg(&desc->sg_req[i].chan_reg);
914 desc->sg_req[i].chan_reg.dma_scr = chan->chan_reg.dma_scr;
915 desc->sg_req[i].chan_reg.dma_sfcr = chan->chan_reg.dma_sfcr;
916 desc->sg_req[i].chan_reg.dma_spar = chan->chan_reg.dma_spar;
917 desc->sg_req[i].chan_reg.dma_sm0ar = sg_dma_address(sg);
918 desc->sg_req[i].chan_reg.dma_sm1ar = sg_dma_address(sg);
919 desc->sg_req[i].chan_reg.dma_sndtr = nb_data_items;
920 }
921
922 desc->num_sgs = sg_len;
923 desc->cyclic = false;
924
925 return vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
926
927err:
928 kfree(desc);
929 return NULL;
930}
931
932static struct dma_async_tx_descriptor *stm32_dma_prep_dma_cyclic(
933 struct dma_chan *c, dma_addr_t buf_addr, size_t buf_len,
934 size_t period_len, enum dma_transfer_direction direction,
935 unsigned long flags)
936{
937 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
938 struct stm32_dma_desc *desc;
939 enum dma_slave_buswidth buswidth;
940 u32 num_periods, nb_data_items;
941 int i, ret;
942
943 if (!buf_len || !period_len) {
944 dev_err(chan2dev(chan), "Invalid buffer/period len\n");
945 return NULL;
946 }
947
948 if (!chan->config_init) {
949 dev_err(chan2dev(chan), "dma channel is not configured\n");
950 return NULL;
951 }
952
953 if (buf_len % period_len) {
954 dev_err(chan2dev(chan), "buf_len not multiple of period_len\n");
955 return NULL;
956 }
957
958 /*
959 * We allow to take more number of requests till DMA is
960 * not started. The driver will loop over all requests.
961 * Once DMA is started then new requests can be queued only after
962 * terminating the DMA.
963 */
964 if (chan->busy) {
965 dev_err(chan2dev(chan), "Request not allowed when dma busy\n");
966 return NULL;
967 }
968
Amelie Delaunaye0ebdbd2020-11-20 15:33:19 +0100969 ret = stm32_dma_set_xfer_param(chan, direction, &buswidth, period_len,
970 buf_addr);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200971 if (ret < 0)
972 return NULL;
973
974 nb_data_items = period_len / buswidth;
Pierre Yves MORDRET80a76952018-03-13 17:42:04 +0100975 if (nb_data_items > STM32_DMA_ALIGNED_MAX_DATA_ITEMS) {
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200976 dev_err(chan2dev(chan), "number of items not supported\n");
977 return NULL;
978 }
979
980 /* Enable Circular mode or double buffer mode */
981 if (buf_len == period_len)
982 chan->chan_reg.dma_scr |= STM32_DMA_SCR_CIRC;
983 else
984 chan->chan_reg.dma_scr |= STM32_DMA_SCR_DBM;
985
986 /* Clear periph ctrl if client set it */
987 chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_PFCTRL;
988
989 num_periods = buf_len / period_len;
990
Gustavo A. R. Silva402096c2019-08-30 11:14:23 -0500991 desc = kzalloc(struct_size(desc, sg_req, num_periods), GFP_NOWAIT);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +0200992 if (!desc)
993 return NULL;
994
995 for (i = 0; i < num_periods; i++) {
996 desc->sg_req[i].len = period_len;
997
998 stm32_dma_clear_reg(&desc->sg_req[i].chan_reg);
999 desc->sg_req[i].chan_reg.dma_scr = chan->chan_reg.dma_scr;
1000 desc->sg_req[i].chan_reg.dma_sfcr = chan->chan_reg.dma_sfcr;
1001 desc->sg_req[i].chan_reg.dma_spar = chan->chan_reg.dma_spar;
1002 desc->sg_req[i].chan_reg.dma_sm0ar = buf_addr;
1003 desc->sg_req[i].chan_reg.dma_sm1ar = buf_addr;
1004 desc->sg_req[i].chan_reg.dma_sndtr = nb_data_items;
1005 buf_addr += period_len;
1006 }
1007
1008 desc->num_sgs = num_periods;
1009 desc->cyclic = true;
1010
1011 return vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
1012}
1013
1014static struct dma_async_tx_descriptor *stm32_dma_prep_dma_memcpy(
1015 struct dma_chan *c, dma_addr_t dest,
1016 dma_addr_t src, size_t len, unsigned long flags)
1017{
1018 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001019 enum dma_slave_buswidth max_width;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001020 struct stm32_dma_desc *desc;
1021 size_t xfer_count, offset;
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001022 u32 num_sgs, best_burst, dma_burst, threshold;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001023 int i;
1024
Pierre Yves MORDRET80a76952018-03-13 17:42:04 +01001025 num_sgs = DIV_ROUND_UP(len, STM32_DMA_ALIGNED_MAX_DATA_ITEMS);
Gustavo A. R. Silva402096c2019-08-30 11:14:23 -05001026 desc = kzalloc(struct_size(desc, sg_req, num_sgs), GFP_NOWAIT);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001027 if (!desc)
1028 return NULL;
1029
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001030 threshold = chan->threshold;
1031
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001032 for (offset = 0, i = 0; offset < len; offset += xfer_count, i++) {
1033 xfer_count = min_t(size_t, len - offset,
Pierre Yves MORDRET80a76952018-03-13 17:42:04 +01001034 STM32_DMA_ALIGNED_MAX_DATA_ITEMS);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001035
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001036 /* Compute best burst size */
1037 max_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1038 best_burst = stm32_dma_get_best_burst(len, STM32_DMA_MAX_BURST,
1039 threshold, max_width);
1040 dma_burst = stm32_dma_get_burst(chan, best_burst);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001041
1042 stm32_dma_clear_reg(&desc->sg_req[i].chan_reg);
1043 desc->sg_req[i].chan_reg.dma_scr =
1044 STM32_DMA_SCR_DIR(STM32_DMA_MEM_TO_MEM) |
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001045 STM32_DMA_SCR_PBURST(dma_burst) |
1046 STM32_DMA_SCR_MBURST(dma_burst) |
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001047 STM32_DMA_SCR_MINC |
1048 STM32_DMA_SCR_PINC |
1049 STM32_DMA_SCR_TCIE |
1050 STM32_DMA_SCR_TEIE;
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001051 desc->sg_req[i].chan_reg.dma_sfcr |= STM32_DMA_SFCR_MASK;
1052 desc->sg_req[i].chan_reg.dma_sfcr |=
1053 STM32_DMA_SFCR_FTH(threshold);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001054 desc->sg_req[i].chan_reg.dma_spar = src + offset;
1055 desc->sg_req[i].chan_reg.dma_sm0ar = dest + offset;
1056 desc->sg_req[i].chan_reg.dma_sndtr = xfer_count;
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001057 desc->sg_req[i].len = xfer_count;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001058 }
1059
1060 desc->num_sgs = num_sgs;
1061 desc->cyclic = false;
1062
1063 return vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
1064}
1065
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +01001066static u32 stm32_dma_get_remaining_bytes(struct stm32_dma_chan *chan)
1067{
1068 u32 dma_scr, width, ndtr;
1069 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
1070
1071 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(chan->id));
1072 width = STM32_DMA_SCR_PSIZE_GET(dma_scr);
1073 ndtr = stm32_dma_read(dmadev, STM32_DMA_SNDTR(chan->id));
1074
1075 return ndtr << width;
1076}
1077
Arnaud Pouliquen2a4885a2019-05-02 11:28:42 +02001078/**
1079 * stm32_dma_is_current_sg - check that expected sg_req is currently transferred
1080 * @chan: dma channel
1081 *
1082 * This function called when IRQ are disable, checks that the hardware has not
1083 * switched on the next transfer in double buffer mode. The test is done by
1084 * comparing the next_sg memory address with the hardware related register
1085 * (based on CT bit value).
1086 *
1087 * Returns true if expected current transfer is still running or double
1088 * buffer mode is not activated.
1089 */
1090static bool stm32_dma_is_current_sg(struct stm32_dma_chan *chan)
1091{
1092 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
1093 struct stm32_dma_sg_req *sg_req;
1094 u32 dma_scr, dma_smar, id;
1095
1096 id = chan->id;
1097 dma_scr = stm32_dma_read(dmadev, STM32_DMA_SCR(id));
1098
1099 if (!(dma_scr & STM32_DMA_SCR_DBM))
1100 return true;
1101
1102 sg_req = &chan->desc->sg_req[chan->next_sg];
1103
1104 if (dma_scr & STM32_DMA_SCR_CT) {
1105 dma_smar = stm32_dma_read(dmadev, STM32_DMA_SM0AR(id));
1106 return (dma_smar == sg_req->chan_reg.dma_sm0ar);
1107 }
1108
1109 dma_smar = stm32_dma_read(dmadev, STM32_DMA_SM1AR(id));
1110
1111 return (dma_smar == sg_req->chan_reg.dma_sm1ar);
1112}
1113
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001114static size_t stm32_dma_desc_residue(struct stm32_dma_chan *chan,
1115 struct stm32_dma_desc *desc,
1116 u32 next_sg)
1117{
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001118 u32 modulo, burst_size;
Arnaud Pouliquen2a4885a2019-05-02 11:28:42 +02001119 u32 residue;
1120 u32 n_sg = next_sg;
1121 struct stm32_dma_sg_req *sg_req = &chan->desc->sg_req[chan->next_sg];
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001122 int i;
1123
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +01001124 /*
Arnaud Pouliquen2a4885a2019-05-02 11:28:42 +02001125 * Calculate the residue means compute the descriptors
1126 * information:
1127 * - the sg_req currently transferred
1128 * - the Hardware remaining position in this sg (NDTR bits field).
1129 *
1130 * A race condition may occur if DMA is running in cyclic or double
1131 * buffer mode, since the DMA register are automatically reloaded at end
1132 * of period transfer. The hardware may have switched to the next
1133 * transfer (CT bit updated) just before the position (SxNDTR reg) is
1134 * read.
1135 * In this case the SxNDTR reg could (or not) correspond to the new
1136 * transfer position, and not the expected one.
1137 * The strategy implemented in the stm32 driver is to:
1138 * - read the SxNDTR register
1139 * - crosscheck that hardware is still in current transfer.
1140 * In case of switch, we can assume that the DMA is at the beginning of
1141 * the next transfer. So we approximate the residue in consequence, by
1142 * pointing on the beginning of next transfer.
1143 *
1144 * This race condition doesn't apply for none cyclic mode, as double
1145 * buffer is not used. In such situation registers are updated by the
1146 * software.
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +01001147 */
Arnaud Pouliquen2a4885a2019-05-02 11:28:42 +02001148
1149 residue = stm32_dma_get_remaining_bytes(chan);
1150
1151 if (!stm32_dma_is_current_sg(chan)) {
1152 n_sg++;
1153 if (n_sg == chan->desc->num_sgs)
1154 n_sg = 0;
1155 residue = sg_req->len;
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001156 }
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001157
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +01001158 /*
Arnaud Pouliquen2a4885a2019-05-02 11:28:42 +02001159 * In cyclic mode, for the last period, residue = remaining bytes
1160 * from NDTR,
1161 * else for all other periods in cyclic mode, and in sg mode,
1162 * residue = remaining bytes from NDTR + remaining
1163 * periods/sg to be transferred
M'boumba Cedric Madianga2b12c5582016-12-13 14:40:48 +01001164 */
Arnaud Pouliquen2a4885a2019-05-02 11:28:42 +02001165 if (!chan->desc->cyclic || n_sg != 0)
1166 for (i = n_sg; i < desc->num_sgs; i++)
1167 residue += desc->sg_req[i].len;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001168
Pierre Yves MORDRETa2b61032018-03-13 17:42:02 +01001169 if (!chan->mem_burst)
1170 return residue;
1171
1172 burst_size = chan->mem_burst * chan->mem_width;
1173 modulo = residue % burst_size;
1174 if (modulo)
1175 residue = residue - modulo + burst_size;
1176
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001177 return residue;
1178}
1179
1180static enum dma_status stm32_dma_tx_status(struct dma_chan *c,
1181 dma_cookie_t cookie,
1182 struct dma_tx_state *state)
1183{
1184 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
1185 struct virt_dma_desc *vdesc;
1186 enum dma_status status;
1187 unsigned long flags;
M'boumba Cedric Madianga57b5a322016-12-13 14:40:46 +01001188 u32 residue = 0;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001189
1190 status = dma_cookie_status(c, cookie, state);
Pierre Yves MORDRET249d5532018-03-13 17:42:07 +01001191 if (status == DMA_COMPLETE || !state)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001192 return status;
1193
1194 spin_lock_irqsave(&chan->vchan.lock, flags);
1195 vdesc = vchan_find_desc(&chan->vchan, cookie);
M'boumba Cedric Madianga57b5a322016-12-13 14:40:46 +01001196 if (chan->desc && cookie == chan->desc->vdesc.tx.cookie)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001197 residue = stm32_dma_desc_residue(chan, chan->desc,
1198 chan->next_sg);
M'boumba Cedric Madianga57b5a322016-12-13 14:40:46 +01001199 else if (vdesc)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001200 residue = stm32_dma_desc_residue(chan,
1201 to_stm32_dma_desc(vdesc), 0);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001202 dma_set_residue(state, residue);
1203
1204 spin_unlock_irqrestore(&chan->vchan.lock, flags);
1205
1206 return status;
1207}
1208
1209static int stm32_dma_alloc_chan_resources(struct dma_chan *c)
1210{
1211 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
1212 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
1213 int ret;
1214
1215 chan->config_init = false;
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001216
Zhang Qilongd54db742021-06-07 14:46:38 +08001217 ret = pm_runtime_resume_and_get(dmadev->ddev.dev);
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001218 if (ret < 0)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001219 return ret;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001220
1221 ret = stm32_dma_disable_chan(chan);
1222 if (ret < 0)
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001223 pm_runtime_put(dmadev->ddev.dev);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001224
1225 return ret;
1226}
1227
1228static void stm32_dma_free_chan_resources(struct dma_chan *c)
1229{
1230 struct stm32_dma_chan *chan = to_stm32_dma_chan(c);
1231 struct stm32_dma_device *dmadev = stm32_dma_get_dev(chan);
1232 unsigned long flags;
1233
1234 dev_dbg(chan2dev(chan), "Freeing channel %d\n", chan->id);
1235
1236 if (chan->busy) {
1237 spin_lock_irqsave(&chan->vchan.lock, flags);
1238 stm32_dma_stop(chan);
1239 chan->desc = NULL;
1240 spin_unlock_irqrestore(&chan->vchan.lock, flags);
1241 }
1242
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001243 pm_runtime_put(dmadev->ddev.dev);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001244
1245 vchan_free_chan_resources(to_virt_chan(c));
Amelie Delaunay5d4d4df2020-11-20 15:33:18 +01001246 stm32_dma_clear_reg(&chan->chan_reg);
1247 chan->threshold = 0;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001248}
1249
1250static void stm32_dma_desc_free(struct virt_dma_desc *vdesc)
1251{
1252 kfree(container_of(vdesc, struct stm32_dma_desc, vdesc));
1253}
1254
Vinod Koule97adb42016-09-02 15:59:10 +05301255static void stm32_dma_set_config(struct stm32_dma_chan *chan,
Pierre Yves MORDRET249d5532018-03-13 17:42:07 +01001256 struct stm32_dma_cfg *cfg)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001257{
1258 stm32_dma_clear_reg(&chan->chan_reg);
1259
1260 chan->chan_reg.dma_scr = cfg->stream_config & STM32_DMA_SCR_CFG_MASK;
1261 chan->chan_reg.dma_scr |= STM32_DMA_SCR_REQ(cfg->request_line);
1262
1263 /* Enable Interrupts */
1264 chan->chan_reg.dma_scr |= STM32_DMA_SCR_TEIE | STM32_DMA_SCR_TCIE;
1265
Pierre Yves MORDRET951f44c2018-03-13 17:42:01 +01001266 chan->threshold = STM32_DMA_THRESHOLD_FTR_GET(cfg->features);
Amelie Delaunay955b1762020-04-22 12:29:04 +02001267 if (STM32_DMA_DIRECT_MODE_GET(cfg->features))
1268 chan->threshold = STM32_DMA_FIFO_THRESHOLD_NONE;
Amelie Delaunay2b5b7402021-06-24 11:39:59 +02001269 if (STM32_DMA_ALT_ACK_MODE_GET(cfg->features))
1270 chan->chan_reg.dma_scr |= STM32_DMA_SCR_TRBUFF;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001271}
1272
1273static struct dma_chan *stm32_dma_of_xlate(struct of_phandle_args *dma_spec,
1274 struct of_dma *ofdma)
1275{
1276 struct stm32_dma_device *dmadev = ofdma->of_dma_data;
M'boumba Cedric Madianga5df4eb42017-01-05 09:09:40 +01001277 struct device *dev = dmadev->ddev.dev;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001278 struct stm32_dma_cfg cfg;
1279 struct stm32_dma_chan *chan;
1280 struct dma_chan *c;
1281
M'boumba Cedric Madianga5df4eb42017-01-05 09:09:40 +01001282 if (dma_spec->args_count < 4) {
1283 dev_err(dev, "Bad number of cells\n");
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001284 return NULL;
M'boumba Cedric Madianga5df4eb42017-01-05 09:09:40 +01001285 }
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001286
1287 cfg.channel_id = dma_spec->args[0];
1288 cfg.request_line = dma_spec->args[1];
1289 cfg.stream_config = dma_spec->args[2];
Pierre Yves MORDRET951f44c2018-03-13 17:42:01 +01001290 cfg.features = dma_spec->args[3];
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001291
Pierre Yves MORDRET249d5532018-03-13 17:42:07 +01001292 if (cfg.channel_id >= STM32_DMA_MAX_CHANNELS ||
1293 cfg.request_line >= STM32_DMA_MAX_REQUEST_ID) {
M'boumba Cedric Madianga5df4eb42017-01-05 09:09:40 +01001294 dev_err(dev, "Bad channel and/or request id\n");
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001295 return NULL;
M'boumba Cedric Madianga5df4eb42017-01-05 09:09:40 +01001296 }
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001297
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001298 chan = &dmadev->chan[cfg.channel_id];
1299
1300 c = dma_get_slave_channel(&chan->vchan.chan);
M'boumba Cedric Madianga5df4eb42017-01-05 09:09:40 +01001301 if (!c) {
Colin Ian King041cf7e2017-02-21 18:30:45 +00001302 dev_err(dev, "No more channels available\n");
M'boumba Cedric Madianga5df4eb42017-01-05 09:09:40 +01001303 return NULL;
1304 }
1305
1306 stm32_dma_set_config(chan, &cfg);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001307
1308 return c;
1309}
1310
1311static const struct of_device_id stm32_dma_of_match[] = {
1312 { .compatible = "st,stm32-dma", },
1313 { /* sentinel */ },
1314};
1315MODULE_DEVICE_TABLE(of, stm32_dma_of_match);
1316
1317static int stm32_dma_probe(struct platform_device *pdev)
1318{
1319 struct stm32_dma_chan *chan;
1320 struct stm32_dma_device *dmadev;
1321 struct dma_device *dd;
1322 const struct of_device_id *match;
1323 struct resource *res;
Etienne Carriere8cf1e0f2020-01-29 16:36:22 +01001324 struct reset_control *rst;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001325 int i, ret;
1326
1327 match = of_match_device(stm32_dma_of_match, &pdev->dev);
1328 if (!match) {
1329 dev_err(&pdev->dev, "Error: No device match found\n");
1330 return -ENODEV;
1331 }
1332
1333 dmadev = devm_kzalloc(&pdev->dev, sizeof(*dmadev), GFP_KERNEL);
1334 if (!dmadev)
1335 return -ENOMEM;
1336
1337 dd = &dmadev->ddev;
1338
1339 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1340 dmadev->base = devm_ioremap_resource(&pdev->dev, res);
1341 if (IS_ERR(dmadev->base))
1342 return PTR_ERR(dmadev->base);
1343
1344 dmadev->clk = devm_clk_get(&pdev->dev, NULL);
Krzysztof Kozlowski1c966e12020-08-28 17:26:36 +02001345 if (IS_ERR(dmadev->clk))
1346 return dev_err_probe(&pdev->dev, PTR_ERR(dmadev->clk), "Can't get clock\n");
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001347
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001348 ret = clk_prepare_enable(dmadev->clk);
1349 if (ret < 0) {
1350 dev_err(&pdev->dev, "clk_prep_enable error: %d\n", ret);
1351 return ret;
1352 }
1353
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001354 dmadev->mem2mem = of_property_read_bool(pdev->dev.of_node,
1355 "st,mem2mem");
1356
Etienne Carriere8cf1e0f2020-01-29 16:36:22 +01001357 rst = devm_reset_control_get(&pdev->dev, NULL);
Etienne Carriere615eee22020-01-29 16:36:23 +01001358 if (IS_ERR(rst)) {
1359 ret = PTR_ERR(rst);
1360 if (ret == -EPROBE_DEFER)
1361 goto clk_free;
1362 } else {
Etienne Carriere8cf1e0f2020-01-29 16:36:22 +01001363 reset_control_assert(rst);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001364 udelay(2);
Etienne Carriere8cf1e0f2020-01-29 16:36:22 +01001365 reset_control_deassert(rst);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001366 }
1367
Amelie Delaunayd7a9e422020-01-29 16:36:25 +01001368 dma_set_max_seg_size(&pdev->dev, STM32_DMA_ALIGNED_MAX_DATA_ITEMS);
1369
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001370 dma_cap_set(DMA_SLAVE, dd->cap_mask);
1371 dma_cap_set(DMA_PRIVATE, dd->cap_mask);
1372 dma_cap_set(DMA_CYCLIC, dd->cap_mask);
1373 dd->device_alloc_chan_resources = stm32_dma_alloc_chan_resources;
1374 dd->device_free_chan_resources = stm32_dma_free_chan_resources;
1375 dd->device_tx_status = stm32_dma_tx_status;
1376 dd->device_issue_pending = stm32_dma_issue_pending;
1377 dd->device_prep_slave_sg = stm32_dma_prep_slave_sg;
1378 dd->device_prep_dma_cyclic = stm32_dma_prep_dma_cyclic;
1379 dd->device_config = stm32_dma_slave_config;
1380 dd->device_terminate_all = stm32_dma_terminate_all;
M'boumba Cedric Madiangadc808672016-12-13 14:40:50 +01001381 dd->device_synchronize = stm32_dma_synchronize;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001382 dd->src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1383 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1384 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
1385 dd->dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1386 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1387 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
1388 dd->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
1389 dd->residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
Amelie Delaunay32ce1082020-01-29 16:36:26 +01001390 dd->copy_align = DMAENGINE_ALIGN_32_BYTES;
M'boumba Cedric Madianga276b0042016-12-13 14:40:51 +01001391 dd->max_burst = STM32_DMA_MAX_BURST;
Pierre-Yves MORDRET22a0bb22020-01-29 16:36:24 +01001392 dd->descriptor_reuse = true;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001393 dd->dev = &pdev->dev;
1394 INIT_LIST_HEAD(&dd->channels);
1395
1396 if (dmadev->mem2mem) {
1397 dma_cap_set(DMA_MEMCPY, dd->cap_mask);
1398 dd->device_prep_dma_memcpy = stm32_dma_prep_dma_memcpy;
1399 dd->directions |= BIT(DMA_MEM_TO_MEM);
1400 }
1401
1402 for (i = 0; i < STM32_DMA_MAX_CHANNELS; i++) {
1403 chan = &dmadev->chan[i];
1404 chan->id = i;
1405 chan->vchan.desc_free = stm32_dma_desc_free;
1406 vchan_init(&chan->vchan, dd);
1407 }
1408
1409 ret = dma_async_device_register(dd);
1410 if (ret)
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001411 goto clk_free;
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001412
1413 for (i = 0; i < STM32_DMA_MAX_CHANNELS; i++) {
1414 chan = &dmadev->chan[i];
Vinod Koulc6504be2019-04-26 22:30:27 +05301415 ret = platform_get_irq(pdev, i);
Stephen Boyde17be6e2019-07-30 11:15:10 -07001416 if (ret < 0)
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001417 goto err_unregister;
Vinod Koulc6504be2019-04-26 22:30:27 +05301418 chan->irq = ret;
1419
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001420 ret = devm_request_irq(&pdev->dev, chan->irq,
1421 stm32_dma_chan_irq, 0,
1422 dev_name(chan2dev(chan)), chan);
1423 if (ret) {
1424 dev_err(&pdev->dev,
1425 "request_irq failed with err %d channel %d\n",
1426 ret, i);
1427 goto err_unregister;
1428 }
1429 }
1430
1431 ret = of_dma_controller_register(pdev->dev.of_node,
1432 stm32_dma_of_xlate, dmadev);
1433 if (ret < 0) {
1434 dev_err(&pdev->dev,
1435 "STM32 DMA DMA OF registration failed %d\n", ret);
1436 goto err_unregister;
1437 }
1438
1439 platform_set_drvdata(pdev, dmadev);
1440
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001441 pm_runtime_set_active(&pdev->dev);
1442 pm_runtime_enable(&pdev->dev);
1443 pm_runtime_get_noresume(&pdev->dev);
1444 pm_runtime_put(&pdev->dev);
1445
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001446 dev_info(&pdev->dev, "STM32 DMA driver registered\n");
1447
1448 return 0;
1449
1450err_unregister:
1451 dma_async_device_unregister(dd);
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001452clk_free:
1453 clk_disable_unprepare(dmadev->clk);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001454
1455 return ret;
1456}
1457
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001458#ifdef CONFIG_PM
1459static int stm32_dma_runtime_suspend(struct device *dev)
1460{
1461 struct stm32_dma_device *dmadev = dev_get_drvdata(dev);
1462
1463 clk_disable_unprepare(dmadev->clk);
1464
1465 return 0;
1466}
1467
1468static int stm32_dma_runtime_resume(struct device *dev)
1469{
1470 struct stm32_dma_device *dmadev = dev_get_drvdata(dev);
1471 int ret;
1472
1473 ret = clk_prepare_enable(dmadev->clk);
1474 if (ret) {
1475 dev_err(dev, "failed to prepare_enable clock\n");
1476 return ret;
1477 }
1478
1479 return 0;
1480}
1481#endif
1482
Pierre-Yves MORDRET05f87402020-01-29 16:36:21 +01001483#ifdef CONFIG_PM_SLEEP
1484static int stm32_dma_suspend(struct device *dev)
1485{
1486 struct stm32_dma_device *dmadev = dev_get_drvdata(dev);
1487 int id, ret, scr;
1488
Zhang Qilongd54db742021-06-07 14:46:38 +08001489 ret = pm_runtime_resume_and_get(dev);
Pierre-Yves MORDRET05f87402020-01-29 16:36:21 +01001490 if (ret < 0)
1491 return ret;
1492
1493 for (id = 0; id < STM32_DMA_MAX_CHANNELS; id++) {
1494 scr = stm32_dma_read(dmadev, STM32_DMA_SCR(id));
1495 if (scr & STM32_DMA_SCR_EN) {
1496 dev_warn(dev, "Suspend is prevented by Chan %i\n", id);
1497 return -EBUSY;
1498 }
1499 }
1500
1501 pm_runtime_put_sync(dev);
1502
1503 pm_runtime_force_suspend(dev);
1504
1505 return 0;
1506}
1507
1508static int stm32_dma_resume(struct device *dev)
1509{
1510 return pm_runtime_force_resume(dev);
1511}
1512#endif
1513
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001514static const struct dev_pm_ops stm32_dma_pm_ops = {
Pierre-Yves MORDRET05f87402020-01-29 16:36:21 +01001515 SET_SYSTEM_SLEEP_PM_OPS(stm32_dma_suspend, stm32_dma_resume)
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001516 SET_RUNTIME_PM_OPS(stm32_dma_runtime_suspend,
1517 stm32_dma_runtime_resume, NULL)
1518};
1519
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001520static struct platform_driver stm32_dma_driver = {
1521 .driver = {
1522 .name = "stm32-dma",
1523 .of_match_table = stm32_dma_of_match,
Pierre-Yves MORDRET48bc73b2019-01-03 11:17:08 +01001524 .pm = &stm32_dma_pm_ops,
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001525 },
Etienne Carriere615eee22020-01-29 16:36:23 +01001526 .probe = stm32_dma_probe,
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001527};
1528
1529static int __init stm32_dma_init(void)
1530{
Etienne Carriere615eee22020-01-29 16:36:23 +01001531 return platform_driver_register(&stm32_dma_driver);
M'boumba Cedric Madiangad8b46832015-10-16 15:59:14 +02001532}
1533subsys_initcall(stm32_dma_init);