blob: cbeadeeed9c08e268d6331c24e0551cbfb9b6a0f [file] [log] [blame]
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001/*
2 * Driver for the Atmel Extensible DMA Controller (aka XDMAC on AT91 systems)
3 *
4 * Copyright (C) 2014 Atmel Corporation
5 *
6 * Author: Ludovic Desroches <ludovic.desroches@atmel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <asm/barrier.h>
22#include <dt-bindings/dma/at91.h>
23#include <linux/clk.h>
24#include <linux/dmaengine.h>
25#include <linux/dmapool.h>
26#include <linux/interrupt.h>
27#include <linux/irq.h>
Ludovic Desroches6d3a7d92015-01-27 16:30:32 +010028#include <linux/kernel.h>
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +020029#include <linux/list.h>
30#include <linux/module.h>
31#include <linux/of_dma.h>
32#include <linux/of_platform.h>
33#include <linux/platform_device.h>
34#include <linux/pm.h>
35
36#include "dmaengine.h"
37
38/* Global registers */
39#define AT_XDMAC_GTYPE 0x00 /* Global Type Register */
40#define AT_XDMAC_NB_CH(i) (((i) & 0x1F) + 1) /* Number of Channels Minus One */
41#define AT_XDMAC_FIFO_SZ(i) (((i) >> 5) & 0x7FF) /* Number of Bytes */
42#define AT_XDMAC_NB_REQ(i) ((((i) >> 16) & 0x3F) + 1) /* Number of Peripheral Requests Minus One */
43#define AT_XDMAC_GCFG 0x04 /* Global Configuration Register */
44#define AT_XDMAC_GWAC 0x08 /* Global Weighted Arbiter Configuration Register */
45#define AT_XDMAC_GIE 0x0C /* Global Interrupt Enable Register */
46#define AT_XDMAC_GID 0x10 /* Global Interrupt Disable Register */
47#define AT_XDMAC_GIM 0x14 /* Global Interrupt Mask Register */
48#define AT_XDMAC_GIS 0x18 /* Global Interrupt Status Register */
49#define AT_XDMAC_GE 0x1C /* Global Channel Enable Register */
50#define AT_XDMAC_GD 0x20 /* Global Channel Disable Register */
51#define AT_XDMAC_GS 0x24 /* Global Channel Status Register */
52#define AT_XDMAC_GRS 0x28 /* Global Channel Read Suspend Register */
53#define AT_XDMAC_GWS 0x2C /* Global Write Suspend Register */
54#define AT_XDMAC_GRWS 0x30 /* Global Channel Read Write Suspend Register */
55#define AT_XDMAC_GRWR 0x34 /* Global Channel Read Write Resume Register */
56#define AT_XDMAC_GSWR 0x38 /* Global Channel Software Request Register */
57#define AT_XDMAC_GSWS 0x3C /* Global channel Software Request Status Register */
58#define AT_XDMAC_GSWF 0x40 /* Global Channel Software Flush Request Register */
59#define AT_XDMAC_VERSION 0xFFC /* XDMAC Version Register */
60
61/* Channel relative registers offsets */
62#define AT_XDMAC_CIE 0x00 /* Channel Interrupt Enable Register */
63#define AT_XDMAC_CIE_BIE BIT(0) /* End of Block Interrupt Enable Bit */
64#define AT_XDMAC_CIE_LIE BIT(1) /* End of Linked List Interrupt Enable Bit */
65#define AT_XDMAC_CIE_DIE BIT(2) /* End of Disable Interrupt Enable Bit */
66#define AT_XDMAC_CIE_FIE BIT(3) /* End of Flush Interrupt Enable Bit */
67#define AT_XDMAC_CIE_RBEIE BIT(4) /* Read Bus Error Interrupt Enable Bit */
68#define AT_XDMAC_CIE_WBEIE BIT(5) /* Write Bus Error Interrupt Enable Bit */
69#define AT_XDMAC_CIE_ROIE BIT(6) /* Request Overflow Interrupt Enable Bit */
70#define AT_XDMAC_CID 0x04 /* Channel Interrupt Disable Register */
71#define AT_XDMAC_CID_BID BIT(0) /* End of Block Interrupt Disable Bit */
72#define AT_XDMAC_CID_LID BIT(1) /* End of Linked List Interrupt Disable Bit */
73#define AT_XDMAC_CID_DID BIT(2) /* End of Disable Interrupt Disable Bit */
74#define AT_XDMAC_CID_FID BIT(3) /* End of Flush Interrupt Disable Bit */
75#define AT_XDMAC_CID_RBEID BIT(4) /* Read Bus Error Interrupt Disable Bit */
76#define AT_XDMAC_CID_WBEID BIT(5) /* Write Bus Error Interrupt Disable Bit */
77#define AT_XDMAC_CID_ROID BIT(6) /* Request Overflow Interrupt Disable Bit */
78#define AT_XDMAC_CIM 0x08 /* Channel Interrupt Mask Register */
79#define AT_XDMAC_CIM_BIM BIT(0) /* End of Block Interrupt Mask Bit */
80#define AT_XDMAC_CIM_LIM BIT(1) /* End of Linked List Interrupt Mask Bit */
81#define AT_XDMAC_CIM_DIM BIT(2) /* End of Disable Interrupt Mask Bit */
82#define AT_XDMAC_CIM_FIM BIT(3) /* End of Flush Interrupt Mask Bit */
83#define AT_XDMAC_CIM_RBEIM BIT(4) /* Read Bus Error Interrupt Mask Bit */
84#define AT_XDMAC_CIM_WBEIM BIT(5) /* Write Bus Error Interrupt Mask Bit */
85#define AT_XDMAC_CIM_ROIM BIT(6) /* Request Overflow Interrupt Mask Bit */
86#define AT_XDMAC_CIS 0x0C /* Channel Interrupt Status Register */
87#define AT_XDMAC_CIS_BIS BIT(0) /* End of Block Interrupt Status Bit */
88#define AT_XDMAC_CIS_LIS BIT(1) /* End of Linked List Interrupt Status Bit */
89#define AT_XDMAC_CIS_DIS BIT(2) /* End of Disable Interrupt Status Bit */
90#define AT_XDMAC_CIS_FIS BIT(3) /* End of Flush Interrupt Status Bit */
91#define AT_XDMAC_CIS_RBEIS BIT(4) /* Read Bus Error Interrupt Status Bit */
92#define AT_XDMAC_CIS_WBEIS BIT(5) /* Write Bus Error Interrupt Status Bit */
93#define AT_XDMAC_CIS_ROIS BIT(6) /* Request Overflow Interrupt Status Bit */
94#define AT_XDMAC_CSA 0x10 /* Channel Source Address Register */
95#define AT_XDMAC_CDA 0x14 /* Channel Destination Address Register */
96#define AT_XDMAC_CNDA 0x18 /* Channel Next Descriptor Address Register */
97#define AT_XDMAC_CNDA_NDAIF(i) ((i) & 0x1) /* Channel x Next Descriptor Interface */
98#define AT_XDMAC_CNDA_NDA(i) ((i) & 0xfffffffc) /* Channel x Next Descriptor Address */
99#define AT_XDMAC_CNDC 0x1C /* Channel Next Descriptor Control Register */
100#define AT_XDMAC_CNDC_NDE (0x1 << 0) /* Channel x Next Descriptor Enable */
101#define AT_XDMAC_CNDC_NDSUP (0x1 << 1) /* Channel x Next Descriptor Source Update */
102#define AT_XDMAC_CNDC_NDDUP (0x1 << 2) /* Channel x Next Descriptor Destination Update */
103#define AT_XDMAC_CNDC_NDVIEW_NDV0 (0x0 << 3) /* Channel x Next Descriptor View 0 */
104#define AT_XDMAC_CNDC_NDVIEW_NDV1 (0x1 << 3) /* Channel x Next Descriptor View 1 */
105#define AT_XDMAC_CNDC_NDVIEW_NDV2 (0x2 << 3) /* Channel x Next Descriptor View 2 */
106#define AT_XDMAC_CNDC_NDVIEW_NDV3 (0x3 << 3) /* Channel x Next Descriptor View 3 */
107#define AT_XDMAC_CUBC 0x20 /* Channel Microblock Control Register */
108#define AT_XDMAC_CBC 0x24 /* Channel Block Control Register */
109#define AT_XDMAC_CC 0x28 /* Channel Configuration Register */
110#define AT_XDMAC_CC_TYPE (0x1 << 0) /* Channel Transfer Type */
111#define AT_XDMAC_CC_TYPE_MEM_TRAN (0x0 << 0) /* Memory to Memory Transfer */
112#define AT_XDMAC_CC_TYPE_PER_TRAN (0x1 << 0) /* Peripheral to Memory or Memory to Peripheral Transfer */
113#define AT_XDMAC_CC_MBSIZE_MASK (0x3 << 1)
114#define AT_XDMAC_CC_MBSIZE_SINGLE (0x0 << 1)
115#define AT_XDMAC_CC_MBSIZE_FOUR (0x1 << 1)
116#define AT_XDMAC_CC_MBSIZE_EIGHT (0x2 << 1)
117#define AT_XDMAC_CC_MBSIZE_SIXTEEN (0x3 << 1)
118#define AT_XDMAC_CC_DSYNC (0x1 << 4) /* Channel Synchronization */
119#define AT_XDMAC_CC_DSYNC_PER2MEM (0x0 << 4)
120#define AT_XDMAC_CC_DSYNC_MEM2PER (0x1 << 4)
121#define AT_XDMAC_CC_PROT (0x1 << 5) /* Channel Protection */
122#define AT_XDMAC_CC_PROT_SEC (0x0 << 5)
123#define AT_XDMAC_CC_PROT_UNSEC (0x1 << 5)
124#define AT_XDMAC_CC_SWREQ (0x1 << 6) /* Channel Software Request Trigger */
125#define AT_XDMAC_CC_SWREQ_HWR_CONNECTED (0x0 << 6)
126#define AT_XDMAC_CC_SWREQ_SWR_CONNECTED (0x1 << 6)
127#define AT_XDMAC_CC_MEMSET (0x1 << 7) /* Channel Fill Block of memory */
128#define AT_XDMAC_CC_MEMSET_NORMAL_MODE (0x0 << 7)
129#define AT_XDMAC_CC_MEMSET_HW_MODE (0x1 << 7)
130#define AT_XDMAC_CC_CSIZE(i) ((0x7 & (i)) << 8) /* Channel Chunk Size */
131#define AT_XDMAC_CC_DWIDTH_OFFSET 11
132#define AT_XDMAC_CC_DWIDTH_MASK (0x3 << AT_XDMAC_CC_DWIDTH_OFFSET)
133#define AT_XDMAC_CC_DWIDTH(i) ((0x3 & (i)) << AT_XDMAC_CC_DWIDTH_OFFSET) /* Channel Data Width */
134#define AT_XDMAC_CC_DWIDTH_BYTE 0x0
135#define AT_XDMAC_CC_DWIDTH_HALFWORD 0x1
136#define AT_XDMAC_CC_DWIDTH_WORD 0x2
137#define AT_XDMAC_CC_DWIDTH_DWORD 0x3
138#define AT_XDMAC_CC_SIF(i) ((0x1 & (i)) << 13) /* Channel Source Interface Identifier */
139#define AT_XDMAC_CC_DIF(i) ((0x1 & (i)) << 14) /* Channel Destination Interface Identifier */
140#define AT_XDMAC_CC_SAM_MASK (0x3 << 16) /* Channel Source Addressing Mode */
141#define AT_XDMAC_CC_SAM_FIXED_AM (0x0 << 16)
142#define AT_XDMAC_CC_SAM_INCREMENTED_AM (0x1 << 16)
143#define AT_XDMAC_CC_SAM_UBS_AM (0x2 << 16)
144#define AT_XDMAC_CC_SAM_UBS_DS_AM (0x3 << 16)
145#define AT_XDMAC_CC_DAM_MASK (0x3 << 18) /* Channel Source Addressing Mode */
146#define AT_XDMAC_CC_DAM_FIXED_AM (0x0 << 18)
147#define AT_XDMAC_CC_DAM_INCREMENTED_AM (0x1 << 18)
148#define AT_XDMAC_CC_DAM_UBS_AM (0x2 << 18)
149#define AT_XDMAC_CC_DAM_UBS_DS_AM (0x3 << 18)
150#define AT_XDMAC_CC_INITD (0x1 << 21) /* Channel Initialization Terminated (read only) */
151#define AT_XDMAC_CC_INITD_TERMINATED (0x0 << 21)
152#define AT_XDMAC_CC_INITD_IN_PROGRESS (0x1 << 21)
153#define AT_XDMAC_CC_RDIP (0x1 << 22) /* Read in Progress (read only) */
154#define AT_XDMAC_CC_RDIP_DONE (0x0 << 22)
155#define AT_XDMAC_CC_RDIP_IN_PROGRESS (0x1 << 22)
156#define AT_XDMAC_CC_WRIP (0x1 << 23) /* Write in Progress (read only) */
157#define AT_XDMAC_CC_WRIP_DONE (0x0 << 23)
158#define AT_XDMAC_CC_WRIP_IN_PROGRESS (0x1 << 23)
159#define AT_XDMAC_CC_PERID(i) (0x7f & (h) << 24) /* Channel Peripheral Identifier */
160#define AT_XDMAC_CDS_MSP 0x2C /* Channel Data Stride Memory Set Pattern */
161#define AT_XDMAC_CSUS 0x30 /* Channel Source Microblock Stride */
162#define AT_XDMAC_CDUS 0x34 /* Channel Destination Microblock Stride */
163
164#define AT_XDMAC_CHAN_REG_BASE 0x50 /* Channel registers base address */
165
166/* Microblock control members */
167#define AT_XDMAC_MBR_UBC_UBLEN_MAX 0xFFFFFFUL /* Maximum Microblock Length */
168#define AT_XDMAC_MBR_UBC_NDE (0x1 << 24) /* Next Descriptor Enable */
169#define AT_XDMAC_MBR_UBC_NSEN (0x1 << 25) /* Next Descriptor Source Update */
170#define AT_XDMAC_MBR_UBC_NDEN (0x1 << 26) /* Next Descriptor Destination Update */
171#define AT_XDMAC_MBR_UBC_NDV0 (0x0 << 27) /* Next Descriptor View 0 */
172#define AT_XDMAC_MBR_UBC_NDV1 (0x1 << 27) /* Next Descriptor View 1 */
173#define AT_XDMAC_MBR_UBC_NDV2 (0x2 << 27) /* Next Descriptor View 2 */
174#define AT_XDMAC_MBR_UBC_NDV3 (0x3 << 27) /* Next Descriptor View 3 */
175
176#define AT_XDMAC_MAX_CHAN 0x20
177
Ludovic Desroches8ac82f82014-11-17 14:42:44 +0100178#define AT_XDMAC_DMA_BUSWIDTHS\
179 (BIT(DMA_SLAVE_BUSWIDTH_UNDEFINED) |\
180 BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |\
181 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |\
182 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) |\
183 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES))
184
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200185enum atc_status {
186 AT_XDMAC_CHAN_IS_CYCLIC = 0,
187 AT_XDMAC_CHAN_IS_PAUSED,
188};
189
190/* ----- Channels ----- */
191struct at_xdmac_chan {
192 struct dma_chan chan;
193 void __iomem *ch_regs;
194 u32 mask; /* Channel Mask */
Ludovic Desrochesbe835072015-01-27 16:30:31 +0100195 u32 cfg[2]; /* Channel Configuration Register */
196 #define AT_XDMAC_DEV_TO_MEM_CFG 0 /* Predifined dev to mem channel conf */
197 #define AT_XDMAC_MEM_TO_DEV_CFG 1 /* Predifined mem to dev channel conf */
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200198 u8 perid; /* Peripheral ID */
199 u8 perif; /* Peripheral Interface */
200 u8 memif; /* Memory Interface */
201 u32 per_src_addr;
202 u32 per_dst_addr;
Ludovic Desroches734bb9a2015-01-27 16:30:30 +0100203 u32 save_cc;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200204 u32 save_cim;
205 u32 save_cnda;
206 u32 save_cndc;
207 unsigned long status;
208 struct tasklet_struct tasklet;
209
210 spinlock_t lock;
211
212 struct list_head xfers_list;
213 struct list_head free_descs_list;
214};
215
216
217/* ----- Controller ----- */
218struct at_xdmac {
219 struct dma_device dma;
220 void __iomem *regs;
221 int irq;
222 struct clk *clk;
223 u32 save_gim;
224 u32 save_gs;
225 struct dma_pool *at_xdmac_desc_pool;
226 struct at_xdmac_chan chan[0];
227};
228
229
230/* ----- Descriptors ----- */
231
232/* Linked List Descriptor */
233struct at_xdmac_lld {
234 dma_addr_t mbr_nda; /* Next Descriptor Member */
235 u32 mbr_ubc; /* Microblock Control Member */
236 dma_addr_t mbr_sa; /* Source Address Member */
237 dma_addr_t mbr_da; /* Destination Address Member */
238 u32 mbr_cfg; /* Configuration Register */
Maxime Ripardee0fe352015-05-07 17:38:08 +0200239 u32 mbr_bc; /* Block Control Register */
240 u32 mbr_ds; /* Data Stride Register */
241 u32 mbr_sus; /* Source Microblock Stride Register */
242 u32 mbr_dus; /* Destination Microblock Stride Register */
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200243};
244
245
246struct at_xdmac_desc {
247 struct at_xdmac_lld lld;
248 enum dma_transfer_direction direction;
249 struct dma_async_tx_descriptor tx_dma_desc;
250 struct list_head desc_node;
251 /* Following members are only used by the first descriptor */
252 bool active_xfer;
253 unsigned int xfer_size;
254 struct list_head descs_list;
255 struct list_head xfer_node;
256};
257
258static inline void __iomem *at_xdmac_chan_reg_base(struct at_xdmac *atxdmac, unsigned int chan_nb)
259{
260 return atxdmac->regs + (AT_XDMAC_CHAN_REG_BASE + chan_nb * 0x40);
261}
262
Ludovic Desroches6e5ae292014-11-13 11:52:39 +0100263#define at_xdmac_read(atxdmac, reg) readl_relaxed((atxdmac)->regs + (reg))
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200264#define at_xdmac_write(atxdmac, reg, value) \
Ludovic Desroches6e5ae292014-11-13 11:52:39 +0100265 writel_relaxed((value), (atxdmac)->regs + (reg))
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200266
Ludovic Desroches6e5ae292014-11-13 11:52:39 +0100267#define at_xdmac_chan_read(atchan, reg) readl_relaxed((atchan)->ch_regs + (reg))
268#define at_xdmac_chan_write(atchan, reg, value) writel_relaxed((value), (atchan)->ch_regs + (reg))
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200269
270static inline struct at_xdmac_chan *to_at_xdmac_chan(struct dma_chan *dchan)
271{
272 return container_of(dchan, struct at_xdmac_chan, chan);
273}
274
275static struct device *chan2dev(struct dma_chan *chan)
276{
277 return &chan->dev->device;
278}
279
280static inline struct at_xdmac *to_at_xdmac(struct dma_device *ddev)
281{
282 return container_of(ddev, struct at_xdmac, dma);
283}
284
285static inline struct at_xdmac_desc *txd_to_at_desc(struct dma_async_tx_descriptor *txd)
286{
287 return container_of(txd, struct at_xdmac_desc, tx_dma_desc);
288}
289
290static inline int at_xdmac_chan_is_cyclic(struct at_xdmac_chan *atchan)
291{
292 return test_bit(AT_XDMAC_CHAN_IS_CYCLIC, &atchan->status);
293}
294
295static inline int at_xdmac_chan_is_paused(struct at_xdmac_chan *atchan)
296{
297 return test_bit(AT_XDMAC_CHAN_IS_PAUSED, &atchan->status);
298}
299
300static inline int at_xdmac_csize(u32 maxburst)
301{
302 int csize;
303
304 csize = ffs(maxburst) - 1;
305 if (csize > 4)
306 csize = -EINVAL;
307
308 return csize;
309};
310
311static inline u8 at_xdmac_get_dwidth(u32 cfg)
312{
313 return (cfg & AT_XDMAC_CC_DWIDTH_MASK) >> AT_XDMAC_CC_DWIDTH_OFFSET;
314};
315
316static unsigned int init_nr_desc_per_channel = 64;
317module_param(init_nr_desc_per_channel, uint, 0644);
318MODULE_PARM_DESC(init_nr_desc_per_channel,
319 "initial descriptors per channel (default: 64)");
320
321
322static bool at_xdmac_chan_is_enabled(struct at_xdmac_chan *atchan)
323{
324 return at_xdmac_chan_read(atchan, AT_XDMAC_GS) & atchan->mask;
325}
326
327static void at_xdmac_off(struct at_xdmac *atxdmac)
328{
329 at_xdmac_write(atxdmac, AT_XDMAC_GD, -1L);
330
331 /* Wait that all chans are disabled. */
332 while (at_xdmac_read(atxdmac, AT_XDMAC_GS))
333 cpu_relax();
334
335 at_xdmac_write(atxdmac, AT_XDMAC_GID, -1L);
336}
337
338/* Call with lock hold. */
339static void at_xdmac_start_xfer(struct at_xdmac_chan *atchan,
340 struct at_xdmac_desc *first)
341{
342 struct at_xdmac *atxdmac = to_at_xdmac(atchan->chan.device);
343 u32 reg;
344
345 dev_vdbg(chan2dev(&atchan->chan), "%s: desc 0x%p\n", __func__, first);
346
347 if (at_xdmac_chan_is_enabled(atchan))
348 return;
349
350 /* Set transfer as active to not try to start it again. */
351 first->active_xfer = true;
352
353 /* Tell xdmac where to get the first descriptor. */
354 reg = AT_XDMAC_CNDA_NDA(first->tx_dma_desc.phys)
355 | AT_XDMAC_CNDA_NDAIF(atchan->memif);
356 at_xdmac_chan_write(atchan, AT_XDMAC_CNDA, reg);
357
358 /*
Ludovic Desroches6d3a7d92015-01-27 16:30:32 +0100359 * When doing non cyclic transfer we need to use the next
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200360 * descriptor view 2 since some fields of the configuration register
361 * depend on transfer size and src/dest addresses.
362 */
Ludovic Desroches6d3a7d92015-01-27 16:30:32 +0100363 if (at_xdmac_chan_is_cyclic(atchan)) {
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200364 reg = AT_XDMAC_CNDC_NDVIEW_NDV1;
Ludovic Desrochesbe835072015-01-27 16:30:31 +0100365 at_xdmac_chan_write(atchan, AT_XDMAC_CC, first->lld.mbr_cfg);
Maxime Ripardee0fe352015-05-07 17:38:08 +0200366 } else if (first->lld.mbr_ubc & AT_XDMAC_MBR_UBC_NDV3) {
367 reg = AT_XDMAC_CNDC_NDVIEW_NDV3;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200368 } else {
369 /*
370 * No need to write AT_XDMAC_CC reg, it will be done when the
371 * descriptor is fecthed.
372 */
373 reg = AT_XDMAC_CNDC_NDVIEW_NDV2;
374 }
375
376 reg |= AT_XDMAC_CNDC_NDDUP
377 | AT_XDMAC_CNDC_NDSUP
378 | AT_XDMAC_CNDC_NDE;
379 at_xdmac_chan_write(atchan, AT_XDMAC_CNDC, reg);
380
381 dev_vdbg(chan2dev(&atchan->chan),
382 "%s: CC=0x%08x CNDA=0x%08x, CNDC=0x%08x, CSA=0x%08x, CDA=0x%08x, CUBC=0x%08x\n",
383 __func__, at_xdmac_chan_read(atchan, AT_XDMAC_CC),
384 at_xdmac_chan_read(atchan, AT_XDMAC_CNDA),
385 at_xdmac_chan_read(atchan, AT_XDMAC_CNDC),
386 at_xdmac_chan_read(atchan, AT_XDMAC_CSA),
387 at_xdmac_chan_read(atchan, AT_XDMAC_CDA),
388 at_xdmac_chan_read(atchan, AT_XDMAC_CUBC));
389
390 at_xdmac_chan_write(atchan, AT_XDMAC_CID, 0xffffffff);
391 reg = AT_XDMAC_CIE_RBEIE | AT_XDMAC_CIE_WBEIE | AT_XDMAC_CIE_ROIE;
392 /*
393 * There is no end of list when doing cyclic dma, we need to get
394 * an interrupt after each periods.
395 */
396 if (at_xdmac_chan_is_cyclic(atchan))
397 at_xdmac_chan_write(atchan, AT_XDMAC_CIE,
398 reg | AT_XDMAC_CIE_BIE);
399 else
400 at_xdmac_chan_write(atchan, AT_XDMAC_CIE,
401 reg | AT_XDMAC_CIE_LIE);
402 at_xdmac_write(atxdmac, AT_XDMAC_GIE, atchan->mask);
403 dev_vdbg(chan2dev(&atchan->chan),
404 "%s: enable channel (0x%08x)\n", __func__, atchan->mask);
405 wmb();
406 at_xdmac_write(atxdmac, AT_XDMAC_GE, atchan->mask);
407
408 dev_vdbg(chan2dev(&atchan->chan),
409 "%s: CC=0x%08x CNDA=0x%08x, CNDC=0x%08x, CSA=0x%08x, CDA=0x%08x, CUBC=0x%08x\n",
410 __func__, at_xdmac_chan_read(atchan, AT_XDMAC_CC),
411 at_xdmac_chan_read(atchan, AT_XDMAC_CNDA),
412 at_xdmac_chan_read(atchan, AT_XDMAC_CNDC),
413 at_xdmac_chan_read(atchan, AT_XDMAC_CSA),
414 at_xdmac_chan_read(atchan, AT_XDMAC_CDA),
415 at_xdmac_chan_read(atchan, AT_XDMAC_CUBC));
416
417}
418
419static dma_cookie_t at_xdmac_tx_submit(struct dma_async_tx_descriptor *tx)
420{
421 struct at_xdmac_desc *desc = txd_to_at_desc(tx);
422 struct at_xdmac_chan *atchan = to_at_xdmac_chan(tx->chan);
423 dma_cookie_t cookie;
424
425 spin_lock_bh(&atchan->lock);
426 cookie = dma_cookie_assign(tx);
427
428 dev_vdbg(chan2dev(tx->chan), "%s: atchan 0x%p, add desc 0x%p to xfers_list\n",
429 __func__, atchan, desc);
430 list_add_tail(&desc->xfer_node, &atchan->xfers_list);
431 if (list_is_singular(&atchan->xfers_list))
432 at_xdmac_start_xfer(atchan, desc);
433
434 spin_unlock_bh(&atchan->lock);
435 return cookie;
436}
437
438static struct at_xdmac_desc *at_xdmac_alloc_desc(struct dma_chan *chan,
439 gfp_t gfp_flags)
440{
441 struct at_xdmac_desc *desc;
442 struct at_xdmac *atxdmac = to_at_xdmac(chan->device);
443 dma_addr_t phys;
444
445 desc = dma_pool_alloc(atxdmac->at_xdmac_desc_pool, gfp_flags, &phys);
446 if (desc) {
447 memset(desc, 0, sizeof(*desc));
448 INIT_LIST_HEAD(&desc->descs_list);
449 dma_async_tx_descriptor_init(&desc->tx_dma_desc, chan);
450 desc->tx_dma_desc.tx_submit = at_xdmac_tx_submit;
451 desc->tx_dma_desc.phys = phys;
452 }
453
454 return desc;
455}
456
457/* Call must be protected by lock. */
458static struct at_xdmac_desc *at_xdmac_get_desc(struct at_xdmac_chan *atchan)
459{
460 struct at_xdmac_desc *desc;
461
462 if (list_empty(&atchan->free_descs_list)) {
463 desc = at_xdmac_alloc_desc(&atchan->chan, GFP_NOWAIT);
464 } else {
465 desc = list_first_entry(&atchan->free_descs_list,
466 struct at_xdmac_desc, desc_node);
467 list_del(&desc->desc_node);
468 desc->active_xfer = false;
469 }
470
471 return desc;
472}
473
474static struct dma_chan *at_xdmac_xlate(struct of_phandle_args *dma_spec,
475 struct of_dma *of_dma)
476{
477 struct at_xdmac *atxdmac = of_dma->of_dma_data;
478 struct at_xdmac_chan *atchan;
479 struct dma_chan *chan;
480 struct device *dev = atxdmac->dma.dev;
481
482 if (dma_spec->args_count != 1) {
483 dev_err(dev, "dma phandler args: bad number of args\n");
484 return NULL;
485 }
486
487 chan = dma_get_any_slave_channel(&atxdmac->dma);
488 if (!chan) {
489 dev_err(dev, "can't get a dma channel\n");
490 return NULL;
491 }
492
493 atchan = to_at_xdmac_chan(chan);
494 atchan->memif = AT91_XDMAC_DT_GET_MEM_IF(dma_spec->args[0]);
495 atchan->perif = AT91_XDMAC_DT_GET_PER_IF(dma_spec->args[0]);
496 atchan->perid = AT91_XDMAC_DT_GET_PERID(dma_spec->args[0]);
497 dev_dbg(dev, "chan dt cfg: memif=%u perif=%u perid=%u\n",
498 atchan->memif, atchan->perif, atchan->perid);
499
500 return chan;
501}
502
503static int at_xdmac_set_slave_config(struct dma_chan *chan,
504 struct dma_slave_config *sconfig)
505{
506 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
507 u8 dwidth;
508 int csize;
509
510 atchan->cfg[AT_XDMAC_DEV_TO_MEM_CFG] =
511 AT91_XDMAC_DT_PERID(atchan->perid)
512 | AT_XDMAC_CC_DAM_INCREMENTED_AM
513 | AT_XDMAC_CC_SAM_FIXED_AM
514 | AT_XDMAC_CC_DIF(atchan->memif)
515 | AT_XDMAC_CC_SIF(atchan->perif)
516 | AT_XDMAC_CC_SWREQ_HWR_CONNECTED
517 | AT_XDMAC_CC_DSYNC_PER2MEM
518 | AT_XDMAC_CC_MBSIZE_SIXTEEN
519 | AT_XDMAC_CC_TYPE_PER_TRAN;
520 csize = at_xdmac_csize(sconfig->src_maxburst);
521 if (csize < 0) {
522 dev_err(chan2dev(chan), "invalid src maxburst value\n");
523 return -EINVAL;
524 }
525 atchan->cfg[AT_XDMAC_DEV_TO_MEM_CFG] |= AT_XDMAC_CC_CSIZE(csize);
526 dwidth = ffs(sconfig->src_addr_width) - 1;
527 atchan->cfg[AT_XDMAC_DEV_TO_MEM_CFG] |= AT_XDMAC_CC_DWIDTH(dwidth);
528
529
530 atchan->cfg[AT_XDMAC_MEM_TO_DEV_CFG] =
531 AT91_XDMAC_DT_PERID(atchan->perid)
532 | AT_XDMAC_CC_DAM_FIXED_AM
533 | AT_XDMAC_CC_SAM_INCREMENTED_AM
534 | AT_XDMAC_CC_DIF(atchan->perif)
535 | AT_XDMAC_CC_SIF(atchan->memif)
536 | AT_XDMAC_CC_SWREQ_HWR_CONNECTED
537 | AT_XDMAC_CC_DSYNC_MEM2PER
538 | AT_XDMAC_CC_MBSIZE_SIXTEEN
539 | AT_XDMAC_CC_TYPE_PER_TRAN;
540 csize = at_xdmac_csize(sconfig->dst_maxburst);
541 if (csize < 0) {
542 dev_err(chan2dev(chan), "invalid src maxburst value\n");
543 return -EINVAL;
544 }
545 atchan->cfg[AT_XDMAC_MEM_TO_DEV_CFG] |= AT_XDMAC_CC_CSIZE(csize);
546 dwidth = ffs(sconfig->dst_addr_width) - 1;
547 atchan->cfg[AT_XDMAC_MEM_TO_DEV_CFG] |= AT_XDMAC_CC_DWIDTH(dwidth);
548
549 /* Src and dst addr are needed to configure the link list descriptor. */
550 atchan->per_src_addr = sconfig->src_addr;
551 atchan->per_dst_addr = sconfig->dst_addr;
552
553 dev_dbg(chan2dev(chan),
554 "%s: cfg[dev2mem]=0x%08x, cfg[mem2dev]=0x%08x, per_src_addr=0x%08x, per_dst_addr=0x%08x\n",
555 __func__, atchan->cfg[AT_XDMAC_DEV_TO_MEM_CFG],
556 atchan->cfg[AT_XDMAC_MEM_TO_DEV_CFG],
557 atchan->per_src_addr, atchan->per_dst_addr);
558
559 return 0;
560}
561
562static struct dma_async_tx_descriptor *
563at_xdmac_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
564 unsigned int sg_len, enum dma_transfer_direction direction,
565 unsigned long flags, void *context)
566{
567 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
568 struct at_xdmac_desc *first = NULL, *prev = NULL;
569 struct scatterlist *sg;
570 int i;
Cyrille Pitchen57819272014-11-13 11:52:42 +0100571 unsigned int xfer_size = 0;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200572
573 if (!sgl)
574 return NULL;
575
576 if (!is_slave_direction(direction)) {
577 dev_err(chan2dev(chan), "invalid DMA direction\n");
578 return NULL;
579 }
580
581 dev_dbg(chan2dev(chan), "%s: sg_len=%d, dir=%s, flags=0x%lx\n",
582 __func__, sg_len,
583 direction == DMA_MEM_TO_DEV ? "to device" : "from device",
584 flags);
585
586 /* Protect dma_sconfig field that can be modified by set_slave_conf. */
587 spin_lock_bh(&atchan->lock);
588
589 /* Prepare descriptors. */
590 for_each_sg(sgl, sg, sg_len, i) {
591 struct at_xdmac_desc *desc = NULL;
Ludovic Desroches6d3a7d92015-01-27 16:30:32 +0100592 u32 len, mem, dwidth, fixed_dwidth;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200593
594 len = sg_dma_len(sg);
595 mem = sg_dma_address(sg);
596 if (unlikely(!len)) {
597 dev_err(chan2dev(chan), "sg data length is zero\n");
598 spin_unlock_bh(&atchan->lock);
599 return NULL;
600 }
601 dev_dbg(chan2dev(chan), "%s: * sg%d len=%u, mem=0x%08x\n",
602 __func__, i, len, mem);
603
604 desc = at_xdmac_get_desc(atchan);
605 if (!desc) {
606 dev_err(chan2dev(chan), "can't get descriptor\n");
607 if (first)
608 list_splice_init(&first->descs_list, &atchan->free_descs_list);
609 spin_unlock_bh(&atchan->lock);
610 return NULL;
611 }
612
613 /* Linked list descriptor setup. */
614 if (direction == DMA_DEV_TO_MEM) {
615 desc->lld.mbr_sa = atchan->per_src_addr;
616 desc->lld.mbr_da = mem;
Ludovic Desrochesbe835072015-01-27 16:30:31 +0100617 desc->lld.mbr_cfg = atchan->cfg[AT_XDMAC_DEV_TO_MEM_CFG];
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200618 } else {
619 desc->lld.mbr_sa = mem;
620 desc->lld.mbr_da = atchan->per_dst_addr;
Ludovic Desrochesbe835072015-01-27 16:30:31 +0100621 desc->lld.mbr_cfg = atchan->cfg[AT_XDMAC_MEM_TO_DEV_CFG];
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200622 }
Ludovic Desroches6d3a7d92015-01-27 16:30:32 +0100623 dwidth = at_xdmac_get_dwidth(desc->lld.mbr_cfg);
624 fixed_dwidth = IS_ALIGNED(len, 1 << dwidth)
625 ? at_xdmac_get_dwidth(desc->lld.mbr_cfg)
626 : AT_XDMAC_CC_DWIDTH_BYTE;
627 desc->lld.mbr_ubc = AT_XDMAC_MBR_UBC_NDV2 /* next descriptor view */
Ludovic Desrochesbe835072015-01-27 16:30:31 +0100628 | AT_XDMAC_MBR_UBC_NDEN /* next descriptor dst parameter update */
629 | AT_XDMAC_MBR_UBC_NSEN /* next descriptor src parameter update */
630 | (i == sg_len - 1 ? 0 : AT_XDMAC_MBR_UBC_NDE) /* descriptor fetch */
Ludovic Desroches6d3a7d92015-01-27 16:30:32 +0100631 | (len >> fixed_dwidth); /* microblock length */
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200632 dev_dbg(chan2dev(chan),
Vinod Koul82e24242014-11-06 18:02:52 +0530633 "%s: lld: mbr_sa=%pad, mbr_da=%pad, mbr_ubc=0x%08x\n",
634 __func__, &desc->lld.mbr_sa, &desc->lld.mbr_da, desc->lld.mbr_ubc);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200635
636 /* Chain lld. */
637 if (prev) {
638 prev->lld.mbr_nda = desc->tx_dma_desc.phys;
639 dev_dbg(chan2dev(chan),
Vinod Koul82e24242014-11-06 18:02:52 +0530640 "%s: chain lld: prev=0x%p, mbr_nda=%pad\n",
641 __func__, prev, &prev->lld.mbr_nda);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200642 }
643
644 prev = desc;
645 if (!first)
646 first = desc;
647
648 dev_dbg(chan2dev(chan), "%s: add desc 0x%p to descs_list 0x%p\n",
649 __func__, desc, first);
650 list_add_tail(&desc->desc_node, &first->descs_list);
Cyrille Pitchen57819272014-11-13 11:52:42 +0100651 xfer_size += len;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200652 }
653
654 spin_unlock_bh(&atchan->lock);
655
656 first->tx_dma_desc.flags = flags;
Cyrille Pitchen57819272014-11-13 11:52:42 +0100657 first->xfer_size = xfer_size;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200658 first->direction = direction;
659
660 return &first->tx_dma_desc;
661}
662
663static struct dma_async_tx_descriptor *
664at_xdmac_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t buf_addr,
665 size_t buf_len, size_t period_len,
666 enum dma_transfer_direction direction,
667 unsigned long flags)
668{
669 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
670 struct at_xdmac_desc *first = NULL, *prev = NULL;
671 unsigned int periods = buf_len / period_len;
672 int i;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200673
Vinod Koul82e24242014-11-06 18:02:52 +0530674 dev_dbg(chan2dev(chan), "%s: buf_addr=%pad, buf_len=%zd, period_len=%zd, dir=%s, flags=0x%lx\n",
675 __func__, &buf_addr, buf_len, period_len,
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200676 direction == DMA_MEM_TO_DEV ? "mem2per" : "per2mem", flags);
677
678 if (!is_slave_direction(direction)) {
679 dev_err(chan2dev(chan), "invalid DMA direction\n");
680 return NULL;
681 }
682
683 if (test_and_set_bit(AT_XDMAC_CHAN_IS_CYCLIC, &atchan->status)) {
684 dev_err(chan2dev(chan), "channel currently used\n");
685 return NULL;
686 }
687
688 for (i = 0; i < periods; i++) {
689 struct at_xdmac_desc *desc = NULL;
690
691 spin_lock_bh(&atchan->lock);
692 desc = at_xdmac_get_desc(atchan);
693 if (!desc) {
694 dev_err(chan2dev(chan), "can't get descriptor\n");
695 if (first)
696 list_splice_init(&first->descs_list, &atchan->free_descs_list);
697 spin_unlock_bh(&atchan->lock);
698 return NULL;
699 }
700 spin_unlock_bh(&atchan->lock);
701 dev_dbg(chan2dev(chan),
Vinod Koul82e24242014-11-06 18:02:52 +0530702 "%s: desc=0x%p, tx_dma_desc.phys=%pad\n",
703 __func__, desc, &desc->tx_dma_desc.phys);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200704
705 if (direction == DMA_DEV_TO_MEM) {
706 desc->lld.mbr_sa = atchan->per_src_addr;
707 desc->lld.mbr_da = buf_addr + i * period_len;
Ludovic Desroches6eb9d3c2015-02-12 16:30:30 +0100708 desc->lld.mbr_cfg = atchan->cfg[AT_XDMAC_DEV_TO_MEM_CFG];
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200709 } else {
710 desc->lld.mbr_sa = buf_addr + i * period_len;
711 desc->lld.mbr_da = atchan->per_dst_addr;
Ludovic Desroches6eb9d3c2015-02-12 16:30:30 +0100712 desc->lld.mbr_cfg = atchan->cfg[AT_XDMAC_MEM_TO_DEV_CFG];
kbuild test robot5ac7d582014-11-06 17:28:08 +0800713 }
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200714 desc->lld.mbr_ubc = AT_XDMAC_MBR_UBC_NDV1
715 | AT_XDMAC_MBR_UBC_NDEN
716 | AT_XDMAC_MBR_UBC_NSEN
717 | AT_XDMAC_MBR_UBC_NDE
Ludovic Desroches6eb9d3c2015-02-12 16:30:30 +0100718 | period_len >> at_xdmac_get_dwidth(desc->lld.mbr_cfg);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200719
720 dev_dbg(chan2dev(chan),
Vinod Koul82e24242014-11-06 18:02:52 +0530721 "%s: lld: mbr_sa=%pad, mbr_da=%pad, mbr_ubc=0x%08x\n",
722 __func__, &desc->lld.mbr_sa, &desc->lld.mbr_da, desc->lld.mbr_ubc);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200723
724 /* Chain lld. */
725 if (prev) {
726 prev->lld.mbr_nda = desc->tx_dma_desc.phys;
727 dev_dbg(chan2dev(chan),
Vinod Koul82e24242014-11-06 18:02:52 +0530728 "%s: chain lld: prev=0x%p, mbr_nda=%pad\n",
729 __func__, prev, &prev->lld.mbr_nda);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200730 }
731
732 prev = desc;
733 if (!first)
734 first = desc;
735
736 dev_dbg(chan2dev(chan), "%s: add desc 0x%p to descs_list 0x%p\n",
737 __func__, desc, first);
738 list_add_tail(&desc->desc_node, &first->descs_list);
739 }
740
741 prev->lld.mbr_nda = first->tx_dma_desc.phys;
742 dev_dbg(chan2dev(chan),
Vinod Koul82e24242014-11-06 18:02:52 +0530743 "%s: chain lld: prev=0x%p, mbr_nda=%pad\n",
744 __func__, prev, &prev->lld.mbr_nda);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200745 first->tx_dma_desc.flags = flags;
746 first->xfer_size = buf_len;
747 first->direction = direction;
748
749 return &first->tx_dma_desc;
750}
751
Maxime Ripardf0816a32015-05-07 17:38:09 +0200752static inline u32 at_xdmac_align_width(struct dma_chan *chan, dma_addr_t addr)
753{
754 u32 width;
755
756 /*
757 * Check address alignment to select the greater data width we
758 * can use.
759 *
760 * Some XDMAC implementations don't provide dword transfer, in
761 * this case selecting dword has the same behavior as
762 * selecting word transfers.
763 */
764 if (!(addr & 7)) {
765 width = AT_XDMAC_CC_DWIDTH_DWORD;
766 dev_dbg(chan2dev(chan), "%s: dwidth: double word\n", __func__);
767 } else if (!(addr & 3)) {
768 width = AT_XDMAC_CC_DWIDTH_WORD;
769 dev_dbg(chan2dev(chan), "%s: dwidth: word\n", __func__);
770 } else if (!(addr & 1)) {
771 width = AT_XDMAC_CC_DWIDTH_HALFWORD;
772 dev_dbg(chan2dev(chan), "%s: dwidth: half word\n", __func__);
773 } else {
774 width = AT_XDMAC_CC_DWIDTH_BYTE;
775 dev_dbg(chan2dev(chan), "%s: dwidth: byte\n", __func__);
776 }
777
778 return width;
779}
780
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200781static struct dma_async_tx_descriptor *
782at_xdmac_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
783 size_t len, unsigned long flags)
784{
785 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
786 struct at_xdmac_desc *first = NULL, *prev = NULL;
787 size_t remaining_size = len, xfer_size = 0, ublen;
788 dma_addr_t src_addr = src, dst_addr = dest;
789 u32 dwidth;
790 /*
791 * WARNING: We don't know the direction, it involves we can't
792 * dynamically set the source and dest interface so we have to use the
793 * same one. Only interface 0 allows EBI access. Hopefully we can
794 * access DDR through both ports (at least on SAMA5D4x), so we can use
795 * the same interface for source and dest, that solves the fact we
796 * don't know the direction.
797 */
798 u32 chan_cc = AT_XDMAC_CC_DAM_INCREMENTED_AM
799 | AT_XDMAC_CC_SAM_INCREMENTED_AM
800 | AT_XDMAC_CC_DIF(0)
801 | AT_XDMAC_CC_SIF(0)
802 | AT_XDMAC_CC_MBSIZE_SIXTEEN
803 | AT_XDMAC_CC_TYPE_MEM_TRAN;
804
Vinod Koul82e24242014-11-06 18:02:52 +0530805 dev_dbg(chan2dev(chan), "%s: src=%pad, dest=%pad, len=%zd, flags=0x%lx\n",
806 __func__, &src, &dest, len, flags);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200807
808 if (unlikely(!len))
809 return NULL;
810
Maxime Ripardf0816a32015-05-07 17:38:09 +0200811 dwidth = at_xdmac_align_width(chan, src_addr | dst_addr);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200812
813 /* Prepare descriptors. */
814 while (remaining_size) {
815 struct at_xdmac_desc *desc = NULL;
816
Vinod Koulc66ec042014-11-06 17:37:48 +0530817 dev_dbg(chan2dev(chan), "%s: remaining_size=%zu\n", __func__, remaining_size);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200818
819 spin_lock_bh(&atchan->lock);
820 desc = at_xdmac_get_desc(atchan);
821 spin_unlock_bh(&atchan->lock);
822 if (!desc) {
823 dev_err(chan2dev(chan), "can't get descriptor\n");
824 if (first)
825 list_splice_init(&first->descs_list, &atchan->free_descs_list);
826 return NULL;
827 }
828
829 /* Update src and dest addresses. */
830 src_addr += xfer_size;
831 dst_addr += xfer_size;
832
833 if (remaining_size >= AT_XDMAC_MBR_UBC_UBLEN_MAX << dwidth)
834 xfer_size = AT_XDMAC_MBR_UBC_UBLEN_MAX << dwidth;
835 else
836 xfer_size = remaining_size;
837
Vinod Koulc66ec042014-11-06 17:37:48 +0530838 dev_dbg(chan2dev(chan), "%s: xfer_size=%zu\n", __func__, xfer_size);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200839
840 /* Check remaining length and change data width if needed. */
Maxime Ripardf0816a32015-05-07 17:38:09 +0200841 dwidth = at_xdmac_align_width(chan,
842 src_addr | dst_addr | xfer_size);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200843 chan_cc |= AT_XDMAC_CC_DWIDTH(dwidth);
844
845 ublen = xfer_size >> dwidth;
846 remaining_size -= xfer_size;
847
848 desc->lld.mbr_sa = src_addr;
849 desc->lld.mbr_da = dst_addr;
850 desc->lld.mbr_ubc = AT_XDMAC_MBR_UBC_NDV2
851 | AT_XDMAC_MBR_UBC_NDEN
852 | AT_XDMAC_MBR_UBC_NSEN
853 | (remaining_size ? AT_XDMAC_MBR_UBC_NDE : 0)
854 | ublen;
855 desc->lld.mbr_cfg = chan_cc;
856
857 dev_dbg(chan2dev(chan),
Vinod Koul82e24242014-11-06 18:02:52 +0530858 "%s: lld: mbr_sa=%pad, mbr_da=%pad, mbr_ubc=0x%08x, mbr_cfg=0x%08x\n",
859 __func__, &desc->lld.mbr_sa, &desc->lld.mbr_da, desc->lld.mbr_ubc, desc->lld.mbr_cfg);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200860
861 /* Chain lld. */
862 if (prev) {
863 prev->lld.mbr_nda = desc->tx_dma_desc.phys;
864 dev_dbg(chan2dev(chan),
865 "%s: chain lld: prev=0x%p, mbr_nda=0x%08x\n",
866 __func__, prev, prev->lld.mbr_nda);
867 }
868
869 prev = desc;
870 if (!first)
871 first = desc;
872
873 dev_dbg(chan2dev(chan), "%s: add desc 0x%p to descs_list 0x%p\n",
874 __func__, desc, first);
875 list_add_tail(&desc->desc_node, &first->descs_list);
876 }
877
878 first->tx_dma_desc.flags = flags;
879 first->xfer_size = len;
880
881 return &first->tx_dma_desc;
882}
883
884static enum dma_status
885at_xdmac_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
886 struct dma_tx_state *txstate)
887{
888 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
889 struct at_xdmac *atxdmac = to_at_xdmac(atchan->chan.device);
890 struct at_xdmac_desc *desc, *_desc;
891 struct list_head *descs_list;
892 enum dma_status ret;
893 int residue;
Cyrille Pitchen4e097822014-11-13 11:52:41 +0100894 u32 cur_nda, mask, value;
Ludovic Desrochesbe835072015-01-27 16:30:31 +0100895 u8 dwidth = 0;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200896
897 ret = dma_cookie_status(chan, cookie, txstate);
898 if (ret == DMA_COMPLETE)
899 return ret;
900
901 if (!txstate)
902 return ret;
903
904 spin_lock_bh(&atchan->lock);
905
906 desc = list_first_entry(&atchan->xfers_list, struct at_xdmac_desc, xfer_node);
907
908 /*
909 * If the transfer has not been started yet, don't need to compute the
910 * residue, it's the transfer length.
911 */
912 if (!desc->active_xfer) {
913 dma_set_residue(txstate, desc->xfer_size);
Ludovic Desroches87809832014-11-13 11:52:43 +0100914 spin_unlock_bh(&atchan->lock);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200915 return ret;
916 }
917
918 residue = desc->xfer_size;
Cyrille Pitchen4e097822014-11-13 11:52:41 +0100919 /*
920 * Flush FIFO: only relevant when the transfer is source peripheral
921 * synchronized.
922 */
923 mask = AT_XDMAC_CC_TYPE | AT_XDMAC_CC_DSYNC;
924 value = AT_XDMAC_CC_TYPE_PER_TRAN | AT_XDMAC_CC_DSYNC_PER2MEM;
Ludovic Desrochesbe835072015-01-27 16:30:31 +0100925 if ((desc->lld.mbr_cfg & mask) == value) {
Cyrille Pitchen4e097822014-11-13 11:52:41 +0100926 at_xdmac_write(atxdmac, AT_XDMAC_GSWF, atchan->mask);
927 while (!(at_xdmac_chan_read(atchan, AT_XDMAC_CIS) & AT_XDMAC_CIS_FIS))
928 cpu_relax();
929 }
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200930
931 cur_nda = at_xdmac_chan_read(atchan, AT_XDMAC_CNDA) & 0xfffffffc;
932 /*
933 * Remove size of all microblocks already transferred and the current
934 * one. Then add the remaining size to transfer of the current
935 * microblock.
936 */
937 descs_list = &desc->descs_list;
938 list_for_each_entry_safe(desc, _desc, descs_list, desc_node) {
Ludovic Desrochesbe835072015-01-27 16:30:31 +0100939 dwidth = at_xdmac_get_dwidth(desc->lld.mbr_cfg);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200940 residue -= (desc->lld.mbr_ubc & 0xffffff) << dwidth;
941 if ((desc->lld.mbr_nda & 0xfffffffc) == cur_nda)
942 break;
943 }
944 residue += at_xdmac_chan_read(atchan, AT_XDMAC_CUBC) << dwidth;
945
946 spin_unlock_bh(&atchan->lock);
947
948 dma_set_residue(txstate, residue);
949
950 dev_dbg(chan2dev(chan),
Vinod Koul82e24242014-11-06 18:02:52 +0530951 "%s: desc=0x%p, tx_dma_desc.phys=%pad, tx_status=%d, cookie=%d, residue=%d\n",
952 __func__, desc, &desc->tx_dma_desc.phys, ret, cookie, residue);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +0200953
954 return ret;
955}
956
957/* Call must be protected by lock. */
958static void at_xdmac_remove_xfer(struct at_xdmac_chan *atchan,
959 struct at_xdmac_desc *desc)
960{
961 dev_dbg(chan2dev(&atchan->chan), "%s: desc 0x%p\n", __func__, desc);
962
963 /*
964 * Remove the transfer from the transfer list then move the transfer
965 * descriptors into the free descriptors list.
966 */
967 list_del(&desc->xfer_node);
968 list_splice_init(&desc->descs_list, &atchan->free_descs_list);
969}
970
971static void at_xdmac_advance_work(struct at_xdmac_chan *atchan)
972{
973 struct at_xdmac_desc *desc;
974
975 spin_lock_bh(&atchan->lock);
976
977 /*
978 * If channel is enabled, do nothing, advance_work will be triggered
979 * after the interruption.
980 */
981 if (!at_xdmac_chan_is_enabled(atchan) && !list_empty(&atchan->xfers_list)) {
982 desc = list_first_entry(&atchan->xfers_list,
983 struct at_xdmac_desc,
984 xfer_node);
985 dev_vdbg(chan2dev(&atchan->chan), "%s: desc 0x%p\n", __func__, desc);
986 if (!desc->active_xfer)
987 at_xdmac_start_xfer(atchan, desc);
988 }
989
990 spin_unlock_bh(&atchan->lock);
991}
992
993static void at_xdmac_handle_cyclic(struct at_xdmac_chan *atchan)
994{
995 struct at_xdmac_desc *desc;
996 struct dma_async_tx_descriptor *txd;
997
998 desc = list_first_entry(&atchan->xfers_list, struct at_xdmac_desc, xfer_node);
999 txd = &desc->tx_dma_desc;
1000
1001 if (txd->callback && (txd->flags & DMA_PREP_INTERRUPT))
1002 txd->callback(txd->callback_param);
1003}
1004
1005static void at_xdmac_tasklet(unsigned long data)
1006{
1007 struct at_xdmac_chan *atchan = (struct at_xdmac_chan *)data;
1008 struct at_xdmac_desc *desc;
1009 u32 error_mask;
1010
1011 dev_dbg(chan2dev(&atchan->chan), "%s: status=0x%08lx\n",
1012 __func__, atchan->status);
1013
1014 error_mask = AT_XDMAC_CIS_RBEIS
1015 | AT_XDMAC_CIS_WBEIS
1016 | AT_XDMAC_CIS_ROIS;
1017
1018 if (at_xdmac_chan_is_cyclic(atchan)) {
1019 at_xdmac_handle_cyclic(atchan);
1020 } else if ((atchan->status & AT_XDMAC_CIS_LIS)
1021 || (atchan->status & error_mask)) {
1022 struct dma_async_tx_descriptor *txd;
1023
1024 if (atchan->status & AT_XDMAC_CIS_RBEIS)
1025 dev_err(chan2dev(&atchan->chan), "read bus error!!!");
1026 if (atchan->status & AT_XDMAC_CIS_WBEIS)
1027 dev_err(chan2dev(&atchan->chan), "write bus error!!!");
1028 if (atchan->status & AT_XDMAC_CIS_ROIS)
1029 dev_err(chan2dev(&atchan->chan), "request overflow error!!!");
1030
1031 spin_lock_bh(&atchan->lock);
1032 desc = list_first_entry(&atchan->xfers_list,
1033 struct at_xdmac_desc,
1034 xfer_node);
1035 dev_vdbg(chan2dev(&atchan->chan), "%s: desc 0x%p\n", __func__, desc);
1036 BUG_ON(!desc->active_xfer);
1037
1038 txd = &desc->tx_dma_desc;
1039
1040 at_xdmac_remove_xfer(atchan, desc);
1041 spin_unlock_bh(&atchan->lock);
1042
1043 if (!at_xdmac_chan_is_cyclic(atchan)) {
1044 dma_cookie_complete(txd);
1045 if (txd->callback && (txd->flags & DMA_PREP_INTERRUPT))
1046 txd->callback(txd->callback_param);
1047 }
1048
1049 dma_run_dependencies(txd);
1050
1051 at_xdmac_advance_work(atchan);
1052 }
1053}
1054
1055static irqreturn_t at_xdmac_interrupt(int irq, void *dev_id)
1056{
1057 struct at_xdmac *atxdmac = (struct at_xdmac *)dev_id;
1058 struct at_xdmac_chan *atchan;
1059 u32 imr, status, pending;
1060 u32 chan_imr, chan_status;
1061 int i, ret = IRQ_NONE;
1062
1063 do {
1064 imr = at_xdmac_read(atxdmac, AT_XDMAC_GIM);
1065 status = at_xdmac_read(atxdmac, AT_XDMAC_GIS);
1066 pending = status & imr;
1067
1068 dev_vdbg(atxdmac->dma.dev,
1069 "%s: status=0x%08x, imr=0x%08x, pending=0x%08x\n",
1070 __func__, status, imr, pending);
1071
1072 if (!pending)
1073 break;
1074
1075 /* We have to find which channel has generated the interrupt. */
1076 for (i = 0; i < atxdmac->dma.chancnt; i++) {
1077 if (!((1 << i) & pending))
1078 continue;
1079
1080 atchan = &atxdmac->chan[i];
1081 chan_imr = at_xdmac_chan_read(atchan, AT_XDMAC_CIM);
1082 chan_status = at_xdmac_chan_read(atchan, AT_XDMAC_CIS);
1083 atchan->status = chan_status & chan_imr;
1084 dev_vdbg(atxdmac->dma.dev,
1085 "%s: chan%d: imr=0x%x, status=0x%x\n",
1086 __func__, i, chan_imr, chan_status);
1087 dev_vdbg(chan2dev(&atchan->chan),
1088 "%s: CC=0x%08x CNDA=0x%08x, CNDC=0x%08x, CSA=0x%08x, CDA=0x%08x, CUBC=0x%08x\n",
1089 __func__,
1090 at_xdmac_chan_read(atchan, AT_XDMAC_CC),
1091 at_xdmac_chan_read(atchan, AT_XDMAC_CNDA),
1092 at_xdmac_chan_read(atchan, AT_XDMAC_CNDC),
1093 at_xdmac_chan_read(atchan, AT_XDMAC_CSA),
1094 at_xdmac_chan_read(atchan, AT_XDMAC_CDA),
1095 at_xdmac_chan_read(atchan, AT_XDMAC_CUBC));
1096
1097 if (atchan->status & (AT_XDMAC_CIS_RBEIS | AT_XDMAC_CIS_WBEIS))
1098 at_xdmac_write(atxdmac, AT_XDMAC_GD, atchan->mask);
1099
1100 tasklet_schedule(&atchan->tasklet);
1101 ret = IRQ_HANDLED;
1102 }
1103
1104 } while (pending);
1105
1106 return ret;
1107}
1108
1109static void at_xdmac_issue_pending(struct dma_chan *chan)
1110{
1111 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
1112
1113 dev_dbg(chan2dev(&atchan->chan), "%s\n", __func__);
1114
1115 if (!at_xdmac_chan_is_cyclic(atchan))
1116 at_xdmac_advance_work(atchan);
1117
1118 return;
1119}
1120
Ludovic Desroches3d138872014-11-17 14:42:07 +01001121static int at_xdmac_device_config(struct dma_chan *chan,
1122 struct dma_slave_config *config)
1123{
1124 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
1125 int ret;
1126
1127 dev_dbg(chan2dev(chan), "%s\n", __func__);
1128
1129 spin_lock_bh(&atchan->lock);
1130 ret = at_xdmac_set_slave_config(chan, config);
1131 spin_unlock_bh(&atchan->lock);
1132
1133 return ret;
1134}
1135
1136static int at_xdmac_device_pause(struct dma_chan *chan)
1137{
1138 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
1139 struct at_xdmac *atxdmac = to_at_xdmac(atchan->chan.device);
1140
1141 dev_dbg(chan2dev(chan), "%s\n", __func__);
1142
Cyrille Pitchencbb85e62015-01-27 16:30:29 +01001143 if (test_and_set_bit(AT_XDMAC_CHAN_IS_PAUSED, &atchan->status))
1144 return 0;
1145
Ludovic Desroches3d138872014-11-17 14:42:07 +01001146 spin_lock_bh(&atchan->lock);
1147 at_xdmac_write(atxdmac, AT_XDMAC_GRWS, atchan->mask);
Cyrille Pitchencbb85e62015-01-27 16:30:29 +01001148 while (at_xdmac_chan_read(atchan, AT_XDMAC_CC)
1149 & (AT_XDMAC_CC_WRIP | AT_XDMAC_CC_RDIP))
1150 cpu_relax();
Ludovic Desroches3d138872014-11-17 14:42:07 +01001151 spin_unlock_bh(&atchan->lock);
1152
1153 return 0;
1154}
1155
1156static int at_xdmac_device_resume(struct dma_chan *chan)
1157{
1158 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
1159 struct at_xdmac *atxdmac = to_at_xdmac(atchan->chan.device);
1160
1161 dev_dbg(chan2dev(chan), "%s\n", __func__);
1162
1163 spin_lock_bh(&atchan->lock);
Niklas Cassel0434a232015-04-07 16:42:45 +02001164 if (!at_xdmac_chan_is_paused(atchan)) {
1165 spin_unlock_bh(&atchan->lock);
Ludovic Desroches3d138872014-11-17 14:42:07 +01001166 return 0;
Niklas Cassel0434a232015-04-07 16:42:45 +02001167 }
Ludovic Desroches3d138872014-11-17 14:42:07 +01001168
1169 at_xdmac_write(atxdmac, AT_XDMAC_GRWR, atchan->mask);
1170 clear_bit(AT_XDMAC_CHAN_IS_PAUSED, &atchan->status);
1171 spin_unlock_bh(&atchan->lock);
1172
1173 return 0;
1174}
1175
1176static int at_xdmac_device_terminate_all(struct dma_chan *chan)
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001177{
1178 struct at_xdmac_desc *desc, *_desc;
1179 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
1180 struct at_xdmac *atxdmac = to_at_xdmac(atchan->chan.device);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001181
Ludovic Desroches3d138872014-11-17 14:42:07 +01001182 dev_dbg(chan2dev(chan), "%s\n", __func__);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001183
1184 spin_lock_bh(&atchan->lock);
Ludovic Desroches3d138872014-11-17 14:42:07 +01001185 at_xdmac_write(atxdmac, AT_XDMAC_GD, atchan->mask);
1186 while (at_xdmac_read(atxdmac, AT_XDMAC_GS) & atchan->mask)
1187 cpu_relax();
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001188
Ludovic Desroches3d138872014-11-17 14:42:07 +01001189 /* Cancel all pending transfers. */
1190 list_for_each_entry_safe(desc, _desc, &atchan->xfers_list, xfer_node)
1191 at_xdmac_remove_xfer(atchan, desc);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001192
Ludovic Desroches3d138872014-11-17 14:42:07 +01001193 clear_bit(AT_XDMAC_CHAN_IS_CYCLIC, &atchan->status);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001194 spin_unlock_bh(&atchan->lock);
1195
Ludovic Desroches3d138872014-11-17 14:42:07 +01001196 return 0;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001197}
1198
1199static int at_xdmac_alloc_chan_resources(struct dma_chan *chan)
1200{
1201 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
1202 struct at_xdmac_desc *desc;
1203 int i;
1204
1205 spin_lock_bh(&atchan->lock);
1206
1207 if (at_xdmac_chan_is_enabled(atchan)) {
1208 dev_err(chan2dev(chan),
1209 "can't allocate channel resources (channel enabled)\n");
1210 i = -EIO;
1211 goto spin_unlock;
1212 }
1213
1214 if (!list_empty(&atchan->free_descs_list)) {
1215 dev_err(chan2dev(chan),
1216 "can't allocate channel resources (channel not free from a previous use)\n");
1217 i = -EIO;
1218 goto spin_unlock;
1219 }
1220
1221 for (i = 0; i < init_nr_desc_per_channel; i++) {
1222 desc = at_xdmac_alloc_desc(chan, GFP_ATOMIC);
1223 if (!desc) {
1224 dev_warn(chan2dev(chan),
1225 "only %d descriptors have been allocated\n", i);
1226 break;
1227 }
1228 list_add_tail(&desc->desc_node, &atchan->free_descs_list);
1229 }
1230
1231 dma_cookie_init(chan);
1232
1233 dev_dbg(chan2dev(chan), "%s: allocated %d descriptors\n", __func__, i);
1234
1235spin_unlock:
1236 spin_unlock_bh(&atchan->lock);
1237 return i;
1238}
1239
1240static void at_xdmac_free_chan_resources(struct dma_chan *chan)
1241{
1242 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
1243 struct at_xdmac *atxdmac = to_at_xdmac(chan->device);
1244 struct at_xdmac_desc *desc, *_desc;
1245
1246 list_for_each_entry_safe(desc, _desc, &atchan->free_descs_list, desc_node) {
1247 dev_dbg(chan2dev(chan), "%s: freeing descriptor %p\n", __func__, desc);
1248 list_del(&desc->desc_node);
1249 dma_pool_free(atxdmac->at_xdmac_desc_pool, desc, desc->tx_dma_desc.phys);
1250 }
1251
1252 return;
1253}
1254
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001255#ifdef CONFIG_PM
1256static int atmel_xdmac_prepare(struct device *dev)
1257{
1258 struct platform_device *pdev = to_platform_device(dev);
1259 struct at_xdmac *atxdmac = platform_get_drvdata(pdev);
1260 struct dma_chan *chan, *_chan;
1261
1262 list_for_each_entry_safe(chan, _chan, &atxdmac->dma.channels, device_node) {
1263 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
1264
1265 /* Wait for transfer completion, except in cyclic case. */
1266 if (at_xdmac_chan_is_enabled(atchan) && !at_xdmac_chan_is_cyclic(atchan))
1267 return -EAGAIN;
1268 }
1269 return 0;
1270}
1271#else
1272# define atmel_xdmac_prepare NULL
1273#endif
1274
1275#ifdef CONFIG_PM_SLEEP
1276static int atmel_xdmac_suspend(struct device *dev)
1277{
1278 struct platform_device *pdev = to_platform_device(dev);
1279 struct at_xdmac *atxdmac = platform_get_drvdata(pdev);
1280 struct dma_chan *chan, *_chan;
1281
1282 list_for_each_entry_safe(chan, _chan, &atxdmac->dma.channels, device_node) {
1283 struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan);
1284
Ludovic Desroches734bb9a2015-01-27 16:30:30 +01001285 atchan->save_cc = at_xdmac_chan_read(atchan, AT_XDMAC_CC);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001286 if (at_xdmac_chan_is_cyclic(atchan)) {
1287 if (!at_xdmac_chan_is_paused(atchan))
Ludovic Desroches3d138872014-11-17 14:42:07 +01001288 at_xdmac_device_pause(chan);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001289 atchan->save_cim = at_xdmac_chan_read(atchan, AT_XDMAC_CIM);
1290 atchan->save_cnda = at_xdmac_chan_read(atchan, AT_XDMAC_CNDA);
1291 atchan->save_cndc = at_xdmac_chan_read(atchan, AT_XDMAC_CNDC);
1292 }
1293 }
1294 atxdmac->save_gim = at_xdmac_read(atxdmac, AT_XDMAC_GIM);
1295
1296 at_xdmac_off(atxdmac);
1297 clk_disable_unprepare(atxdmac->clk);
1298 return 0;
1299}
1300
1301static int atmel_xdmac_resume(struct device *dev)
1302{
1303 struct platform_device *pdev = to_platform_device(dev);
1304 struct at_xdmac *atxdmac = platform_get_drvdata(pdev);
1305 struct at_xdmac_chan *atchan;
1306 struct dma_chan *chan, *_chan;
1307 int i;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001308
1309 clk_prepare_enable(atxdmac->clk);
1310
1311 /* Clear pending interrupts. */
1312 for (i = 0; i < atxdmac->dma.chancnt; i++) {
1313 atchan = &atxdmac->chan[i];
1314 while (at_xdmac_chan_read(atchan, AT_XDMAC_CIS))
1315 cpu_relax();
1316 }
1317
1318 at_xdmac_write(atxdmac, AT_XDMAC_GIE, atxdmac->save_gim);
1319 at_xdmac_write(atxdmac, AT_XDMAC_GE, atxdmac->save_gs);
1320 list_for_each_entry_safe(chan, _chan, &atxdmac->dma.channels, device_node) {
1321 atchan = to_at_xdmac_chan(chan);
Ludovic Desroches734bb9a2015-01-27 16:30:30 +01001322 at_xdmac_chan_write(atchan, AT_XDMAC_CC, atchan->save_cc);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001323 if (at_xdmac_chan_is_cyclic(atchan)) {
1324 at_xdmac_chan_write(atchan, AT_XDMAC_CNDA, atchan->save_cnda);
1325 at_xdmac_chan_write(atchan, AT_XDMAC_CNDC, atchan->save_cndc);
1326 at_xdmac_chan_write(atchan, AT_XDMAC_CIE, atchan->save_cim);
1327 wmb();
1328 at_xdmac_write(atxdmac, AT_XDMAC_GE, atchan->mask);
1329 }
1330 }
1331 return 0;
1332}
1333#endif /* CONFIG_PM_SLEEP */
1334
1335static int at_xdmac_probe(struct platform_device *pdev)
1336{
1337 struct resource *res;
1338 struct at_xdmac *atxdmac;
1339 int irq, size, nr_channels, i, ret;
1340 void __iomem *base;
1341 u32 reg;
1342
1343 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1344 if (!res)
1345 return -EINVAL;
1346
1347 irq = platform_get_irq(pdev, 0);
1348 if (irq < 0)
1349 return irq;
1350
1351 base = devm_ioremap_resource(&pdev->dev, res);
1352 if (IS_ERR(base))
1353 return PTR_ERR(base);
1354
1355 /*
1356 * Read number of xdmac channels, read helper function can't be used
1357 * since atxdmac is not yet allocated and we need to know the number
1358 * of channels to do the allocation.
1359 */
1360 reg = readl_relaxed(base + AT_XDMAC_GTYPE);
1361 nr_channels = AT_XDMAC_NB_CH(reg);
1362 if (nr_channels > AT_XDMAC_MAX_CHAN) {
1363 dev_err(&pdev->dev, "invalid number of channels (%u)\n",
1364 nr_channels);
1365 return -EINVAL;
1366 }
1367
1368 size = sizeof(*atxdmac);
1369 size += nr_channels * sizeof(struct at_xdmac_chan);
1370 atxdmac = devm_kzalloc(&pdev->dev, size, GFP_KERNEL);
1371 if (!atxdmac) {
1372 dev_err(&pdev->dev, "can't allocate at_xdmac structure\n");
1373 return -ENOMEM;
1374 }
1375
1376 atxdmac->regs = base;
1377 atxdmac->irq = irq;
1378
1379 atxdmac->clk = devm_clk_get(&pdev->dev, "dma_clk");
1380 if (IS_ERR(atxdmac->clk)) {
1381 dev_err(&pdev->dev, "can't get dma_clk\n");
1382 return PTR_ERR(atxdmac->clk);
1383 }
1384
1385 /* Do not use dev res to prevent races with tasklet */
1386 ret = request_irq(atxdmac->irq, at_xdmac_interrupt, 0, "at_xdmac", atxdmac);
1387 if (ret) {
1388 dev_err(&pdev->dev, "can't request irq\n");
1389 return ret;
1390 }
1391
1392 ret = clk_prepare_enable(atxdmac->clk);
1393 if (ret) {
1394 dev_err(&pdev->dev, "can't prepare or enable clock\n");
1395 goto err_free_irq;
1396 }
1397
1398 atxdmac->at_xdmac_desc_pool =
1399 dmam_pool_create(dev_name(&pdev->dev), &pdev->dev,
1400 sizeof(struct at_xdmac_desc), 4, 0);
1401 if (!atxdmac->at_xdmac_desc_pool) {
1402 dev_err(&pdev->dev, "no memory for descriptors dma pool\n");
1403 ret = -ENOMEM;
1404 goto err_clk_disable;
1405 }
1406
1407 dma_cap_set(DMA_CYCLIC, atxdmac->dma.cap_mask);
1408 dma_cap_set(DMA_MEMCPY, atxdmac->dma.cap_mask);
1409 dma_cap_set(DMA_SLAVE, atxdmac->dma.cap_mask);
Ludovic Desrochesfef4cbf2014-11-13 11:52:45 +01001410 /*
1411 * Without DMA_PRIVATE the driver is not able to allocate more than
1412 * one channel, second allocation fails in private_candidate.
1413 */
1414 dma_cap_set(DMA_PRIVATE, atxdmac->dma.cap_mask);
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001415 atxdmac->dma.dev = &pdev->dev;
1416 atxdmac->dma.device_alloc_chan_resources = at_xdmac_alloc_chan_resources;
1417 atxdmac->dma.device_free_chan_resources = at_xdmac_free_chan_resources;
1418 atxdmac->dma.device_tx_status = at_xdmac_tx_status;
1419 atxdmac->dma.device_issue_pending = at_xdmac_issue_pending;
1420 atxdmac->dma.device_prep_dma_cyclic = at_xdmac_prep_dma_cyclic;
1421 atxdmac->dma.device_prep_dma_memcpy = at_xdmac_prep_dma_memcpy;
1422 atxdmac->dma.device_prep_slave_sg = at_xdmac_prep_slave_sg;
Ludovic Desroches3d138872014-11-17 14:42:07 +01001423 atxdmac->dma.device_config = at_xdmac_device_config;
1424 atxdmac->dma.device_pause = at_xdmac_device_pause;
1425 atxdmac->dma.device_resume = at_xdmac_device_resume;
1426 atxdmac->dma.device_terminate_all = at_xdmac_device_terminate_all;
Ludovic Desroches8ac82f82014-11-17 14:42:44 +01001427 atxdmac->dma.src_addr_widths = AT_XDMAC_DMA_BUSWIDTHS;
1428 atxdmac->dma.dst_addr_widths = AT_XDMAC_DMA_BUSWIDTHS;
1429 atxdmac->dma.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
1430 atxdmac->dma.residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001431
1432 /* Disable all chans and interrupts. */
1433 at_xdmac_off(atxdmac);
1434
1435 /* Init channels. */
1436 INIT_LIST_HEAD(&atxdmac->dma.channels);
1437 for (i = 0; i < nr_channels; i++) {
1438 struct at_xdmac_chan *atchan = &atxdmac->chan[i];
1439
1440 atchan->chan.device = &atxdmac->dma;
1441 list_add_tail(&atchan->chan.device_node,
1442 &atxdmac->dma.channels);
1443
1444 atchan->ch_regs = at_xdmac_chan_reg_base(atxdmac, i);
1445 atchan->mask = 1 << i;
1446
1447 spin_lock_init(&atchan->lock);
1448 INIT_LIST_HEAD(&atchan->xfers_list);
1449 INIT_LIST_HEAD(&atchan->free_descs_list);
1450 tasklet_init(&atchan->tasklet, at_xdmac_tasklet,
1451 (unsigned long)atchan);
1452
1453 /* Clear pending interrupts. */
1454 while (at_xdmac_chan_read(atchan, AT_XDMAC_CIS))
1455 cpu_relax();
1456 }
1457 platform_set_drvdata(pdev, atxdmac);
1458
1459 ret = dma_async_device_register(&atxdmac->dma);
1460 if (ret) {
1461 dev_err(&pdev->dev, "fail to register DMA engine device\n");
1462 goto err_clk_disable;
1463 }
1464
1465 ret = of_dma_controller_register(pdev->dev.of_node,
1466 at_xdmac_xlate, atxdmac);
1467 if (ret) {
1468 dev_err(&pdev->dev, "could not register of dma controller\n");
1469 goto err_dma_unregister;
1470 }
1471
1472 dev_info(&pdev->dev, "%d channels, mapped at 0x%p\n",
1473 nr_channels, atxdmac->regs);
1474
1475 return 0;
1476
1477err_dma_unregister:
1478 dma_async_device_unregister(&atxdmac->dma);
1479err_clk_disable:
1480 clk_disable_unprepare(atxdmac->clk);
1481err_free_irq:
1482 free_irq(atxdmac->irq, atxdmac->dma.dev);
1483 return ret;
1484}
1485
1486static int at_xdmac_remove(struct platform_device *pdev)
1487{
1488 struct at_xdmac *atxdmac = (struct at_xdmac *)platform_get_drvdata(pdev);
1489 int i;
1490
1491 at_xdmac_off(atxdmac);
1492 of_dma_controller_free(pdev->dev.of_node);
1493 dma_async_device_unregister(&atxdmac->dma);
1494 clk_disable_unprepare(atxdmac->clk);
1495
1496 synchronize_irq(atxdmac->irq);
1497
1498 free_irq(atxdmac->irq, atxdmac->dma.dev);
1499
1500 for (i = 0; i < atxdmac->dma.chancnt; i++) {
1501 struct at_xdmac_chan *atchan = &atxdmac->chan[i];
1502
1503 tasklet_kill(&atchan->tasklet);
1504 at_xdmac_free_chan_resources(&atchan->chan);
1505 }
1506
1507 return 0;
1508}
1509
1510static const struct dev_pm_ops atmel_xdmac_dev_pm_ops = {
1511 .prepare = atmel_xdmac_prepare,
1512 SET_LATE_SYSTEM_SLEEP_PM_OPS(atmel_xdmac_suspend, atmel_xdmac_resume)
1513};
1514
1515static const struct of_device_id atmel_xdmac_dt_ids[] = {
1516 {
1517 .compatible = "atmel,sama5d4-dma",
1518 }, {
1519 /* sentinel */
1520 }
1521};
1522MODULE_DEVICE_TABLE(of, atmel_xdmac_dt_ids);
1523
1524static struct platform_driver at_xdmac_driver = {
1525 .probe = at_xdmac_probe,
1526 .remove = at_xdmac_remove,
1527 .driver = {
1528 .name = "at_xdmac",
Ludovic Desrochese1f7c9e2014-10-22 17:22:18 +02001529 .of_match_table = of_match_ptr(atmel_xdmac_dt_ids),
1530 .pm = &atmel_xdmac_dev_pm_ops,
1531 }
1532};
1533
1534static int __init at_xdmac_init(void)
1535{
1536 return platform_driver_probe(&at_xdmac_driver, at_xdmac_probe);
1537}
1538subsys_initcall(at_xdmac_init);
1539
1540MODULE_DESCRIPTION("Atmel Extended DMA Controller driver");
1541MODULE_AUTHOR("Ludovic Desroches <ludovic.desroches@atmel.com>");
1542MODULE_LICENSE("GPL");