blob: e093f2fcee7a08e18af7a0a36246127eefbb5c92 [file] [log] [blame]
Kevin Hilmana4768d22009-04-14 07:18:14 -05001/*
2 * EDMA3 support for DaVinci
3 *
4 * Copyright (C) 2006-2009 Texas Instruments.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
Lad, Prabhakare7eff702013-06-17 20:27:58 +053020#include <linux/err.h>
Kevin Hilmana4768d22009-04-14 07:18:14 -050021#include <linux/kernel.h>
Kevin Hilmana4768d22009-04-14 07:18:14 -050022#include <linux/init.h>
23#include <linux/module.h>
24#include <linux/interrupt.h>
25#include <linux/platform_device.h>
Kevin Hilmana4768d22009-04-14 07:18:14 -050026#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Matt Porter6cba4352013-06-20 16:06:38 -050028#include <linux/edma.h>
Matt Porter6cba4352013-06-20 16:06:38 -050029#include <linux/of_address.h>
30#include <linux/of_device.h>
31#include <linux/of_dma.h>
32#include <linux/of_irq.h>
33#include <linux/pm_runtime.h>
Kevin Hilmana4768d22009-04-14 07:18:14 -050034
Matt Porter3ad7a422013-03-06 11:15:31 -050035#include <linux/platform_data/edma.h>
Kevin Hilmana4768d22009-04-14 07:18:14 -050036
37/* Offsets matching "struct edmacc_param" */
38#define PARM_OPT 0x00
39#define PARM_SRC 0x04
40#define PARM_A_B_CNT 0x08
41#define PARM_DST 0x0c
42#define PARM_SRC_DST_BIDX 0x10
43#define PARM_LINK_BCNTRLD 0x14
44#define PARM_SRC_DST_CIDX 0x18
45#define PARM_CCNT 0x1c
46
47#define PARM_SIZE 0x20
48
49/* Offsets for EDMA CC global channel registers and their shadows */
50#define SH_ER 0x00 /* 64 bits */
51#define SH_ECR 0x08 /* 64 bits */
52#define SH_ESR 0x10 /* 64 bits */
53#define SH_CER 0x18 /* 64 bits */
54#define SH_EER 0x20 /* 64 bits */
55#define SH_EECR 0x28 /* 64 bits */
56#define SH_EESR 0x30 /* 64 bits */
57#define SH_SER 0x38 /* 64 bits */
58#define SH_SECR 0x40 /* 64 bits */
59#define SH_IER 0x50 /* 64 bits */
60#define SH_IECR 0x58 /* 64 bits */
61#define SH_IESR 0x60 /* 64 bits */
62#define SH_IPR 0x68 /* 64 bits */
63#define SH_ICR 0x70 /* 64 bits */
64#define SH_IEVAL 0x78
65#define SH_QER 0x80
66#define SH_QEER 0x84
67#define SH_QEECR 0x88
68#define SH_QEESR 0x8c
69#define SH_QSER 0x90
70#define SH_QSECR 0x94
71#define SH_SIZE 0x200
72
73/* Offsets for EDMA CC global registers */
74#define EDMA_REV 0x0000
75#define EDMA_CCCFG 0x0004
76#define EDMA_QCHMAP 0x0200 /* 8 registers */
77#define EDMA_DMAQNUM 0x0240 /* 8 registers (4 on OMAP-L1xx) */
78#define EDMA_QDMAQNUM 0x0260
79#define EDMA_QUETCMAP 0x0280
80#define EDMA_QUEPRI 0x0284
81#define EDMA_EMR 0x0300 /* 64 bits */
82#define EDMA_EMCR 0x0308 /* 64 bits */
83#define EDMA_QEMR 0x0310
84#define EDMA_QEMCR 0x0314
85#define EDMA_CCERR 0x0318
86#define EDMA_CCERRCLR 0x031c
87#define EDMA_EEVAL 0x0320
88#define EDMA_DRAE 0x0340 /* 4 x 64 bits*/
89#define EDMA_QRAE 0x0380 /* 4 registers */
90#define EDMA_QUEEVTENTRY 0x0400 /* 2 x 16 registers */
91#define EDMA_QSTAT 0x0600 /* 2 registers */
92#define EDMA_QWMTHRA 0x0620
93#define EDMA_QWMTHRB 0x0624
94#define EDMA_CCSTAT 0x0640
95
96#define EDMA_M 0x1000 /* global channel registers */
97#define EDMA_ECR 0x1008
98#define EDMA_ECRH 0x100C
99#define EDMA_SHADOW0 0x2000 /* 4 regions shadowing global channels */
100#define EDMA_PARM 0x4000 /* 128 param entries */
101
Kevin Hilmana4768d22009-04-14 07:18:14 -0500102#define PARM_OFFSET(param_no) (EDMA_PARM + ((param_no) << 5))
103
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400104#define EDMA_DCHMAP 0x0100 /* 64 registers */
Peter Ujfalusi6d10c392014-05-16 15:17:15 +0300105
106/* CCCFG register */
107#define GET_NUM_DMACH(x) (x & 0x7) /* bits 0-2 */
108#define GET_NUM_PAENTRY(x) ((x & 0x7000) >> 12) /* bits 12-14 */
109#define GET_NUM_EVQUE(x) ((x & 0x70000) >> 16) /* bits 16-18 */
110#define GET_NUM_REGN(x) ((x & 0x300000) >> 20) /* bits 20-21 */
111#define CHMAP_EXIST BIT(24)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400112
Kevin Hilmana4768d22009-04-14 07:18:14 -0500113#define EDMA_MAX_DMACH 64
114#define EDMA_MAX_PARAMENTRY 512
Kevin Hilmana4768d22009-04-14 07:18:14 -0500115
116/*****************************************************************************/
117
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400118static void __iomem *edmacc_regs_base[EDMA_MAX_CC];
Kevin Hilmana4768d22009-04-14 07:18:14 -0500119
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400120static inline unsigned int edma_read(unsigned ctlr, int offset)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500121{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400122 return (unsigned int)__raw_readl(edmacc_regs_base[ctlr] + offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500123}
124
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400125static inline void edma_write(unsigned ctlr, int offset, int val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500126{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400127 __raw_writel(val, edmacc_regs_base[ctlr] + offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500128}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400129static inline void edma_modify(unsigned ctlr, int offset, unsigned and,
130 unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500131{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400132 unsigned val = edma_read(ctlr, offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500133 val &= and;
134 val |= or;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400135 edma_write(ctlr, offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500136}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400137static inline void edma_and(unsigned ctlr, int offset, unsigned and)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500138{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400139 unsigned val = edma_read(ctlr, offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500140 val &= and;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400141 edma_write(ctlr, offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500142}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400143static inline void edma_or(unsigned ctlr, int offset, unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500144{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400145 unsigned val = edma_read(ctlr, offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500146 val |= or;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400147 edma_write(ctlr, offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500148}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400149static inline unsigned int edma_read_array(unsigned ctlr, int offset, int i)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500150{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400151 return edma_read(ctlr, offset + (i << 2));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500152}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400153static inline void edma_write_array(unsigned ctlr, int offset, int i,
154 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500155{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400156 edma_write(ctlr, offset + (i << 2), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500157}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400158static inline void edma_modify_array(unsigned ctlr, int offset, int i,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500159 unsigned and, unsigned or)
160{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400161 edma_modify(ctlr, offset + (i << 2), and, or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500162}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400163static inline void edma_or_array(unsigned ctlr, int offset, int i, unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500164{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400165 edma_or(ctlr, offset + (i << 2), or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500166}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400167static inline void edma_or_array2(unsigned ctlr, int offset, int i, int j,
168 unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500169{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400170 edma_or(ctlr, offset + ((i*2 + j) << 2), or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500171}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400172static inline void edma_write_array2(unsigned ctlr, int offset, int i, int j,
173 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500174{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400175 edma_write(ctlr, offset + ((i*2 + j) << 2), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500176}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400177static inline unsigned int edma_shadow0_read(unsigned ctlr, int offset)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500178{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400179 return edma_read(ctlr, EDMA_SHADOW0 + offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500180}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400181static inline unsigned int edma_shadow0_read_array(unsigned ctlr, int offset,
182 int i)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500183{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400184 return edma_read(ctlr, EDMA_SHADOW0 + offset + (i << 2));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500185}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400186static inline void edma_shadow0_write(unsigned ctlr, int offset, unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500187{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400188 edma_write(ctlr, EDMA_SHADOW0 + offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500189}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400190static inline void edma_shadow0_write_array(unsigned ctlr, int offset, int i,
191 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500192{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400193 edma_write(ctlr, EDMA_SHADOW0 + offset + (i << 2), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500194}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400195static inline unsigned int edma_parm_read(unsigned ctlr, int offset,
196 int param_no)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500197{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400198 return edma_read(ctlr, EDMA_PARM + offset + (param_no << 5));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500199}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400200static inline void edma_parm_write(unsigned ctlr, int offset, int param_no,
201 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500202{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400203 edma_write(ctlr, EDMA_PARM + offset + (param_no << 5), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500204}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400205static inline void edma_parm_modify(unsigned ctlr, int offset, int param_no,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500206 unsigned and, unsigned or)
207{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400208 edma_modify(ctlr, EDMA_PARM + offset + (param_no << 5), and, or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500209}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400210static inline void edma_parm_and(unsigned ctlr, int offset, int param_no,
211 unsigned and)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500212{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400213 edma_and(ctlr, EDMA_PARM + offset + (param_no << 5), and);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500214}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400215static inline void edma_parm_or(unsigned ctlr, int offset, int param_no,
216 unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500217{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400218 edma_or(ctlr, EDMA_PARM + offset + (param_no << 5), or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500219}
220
Rajashekhara, Sudhakar90bd4e62010-06-29 11:35:13 +0530221static inline void set_bits(int offset, int len, unsigned long *p)
222{
223 for (; len > 0; len--)
224 set_bit(offset + (len - 1), p);
225}
226
227static inline void clear_bits(int offset, int len, unsigned long *p)
228{
229 for (; len > 0; len--)
230 clear_bit(offset + (len - 1), p);
231}
232
Kevin Hilmana4768d22009-04-14 07:18:14 -0500233/*****************************************************************************/
234
235/* actual number of DMA channels and slots on this silicon */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400236struct edma {
237 /* how many dma resources of each type */
238 unsigned num_channels;
239 unsigned num_region;
240 unsigned num_slots;
241 unsigned num_tc;
Sandeep Paulraja0f02022009-07-27 09:57:07 -0400242 enum dma_event_q default_queue;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500243
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400244 /* list of channels with no even trigger; terminated by "-1" */
245 const s8 *noevent;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500246
Daniel Macka2b11752014-08-26 10:52:53 +0200247 struct edma_soc_info *info;
248
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400249 /* The edma_inuse bit for each PaRAM slot is clear unless the
250 * channel is in use ... by ARM or DSP, for QDMA, or whatever.
251 */
252 DECLARE_BITMAP(edma_inuse, EDMA_MAX_PARAMENTRY);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500253
Sudhakar Rajashekharaf900d552010-01-06 17:29:49 +0530254 /* The edma_unused bit for each channel is clear unless
255 * it is not being used on this platform. It uses a bit
256 * of SOC-specific initialization code.
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400257 */
Sudhakar Rajashekharaf900d552010-01-06 17:29:49 +0530258 DECLARE_BITMAP(edma_unused, EDMA_MAX_DMACH);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400259
260 unsigned irq_res_start;
261 unsigned irq_res_end;
262
263 struct dma_interrupt_data {
264 void (*callback)(unsigned channel, unsigned short ch_status,
265 void *data);
266 void *data;
267 } intr_data[EDMA_MAX_DMACH];
268};
269
Sekhar Nori3f68b982010-05-04 14:11:35 +0530270static struct edma *edma_cc[EDMA_MAX_CC];
Sudhakar Rajashekhara2d517502010-01-06 17:28:44 +0530271static int arch_num_cc;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500272
273/* dummy param set used to (re)initialize parameter RAM slots */
274static const struct edmacc_param dummy_paramset = {
275 .link_bcntrld = 0xffff,
276 .ccnt = 1,
277};
278
Joel Fernandes6cdaca42013-09-26 16:55:46 -0500279static const struct of_device_id edma_of_ids[] = {
280 { .compatible = "ti,edma3", },
281 {}
282};
283
Kevin Hilmana4768d22009-04-14 07:18:14 -0500284/*****************************************************************************/
285
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400286static void map_dmach_queue(unsigned ctlr, unsigned ch_no,
287 enum dma_event_q queue_no)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500288{
289 int bit = (ch_no & 0x7) * 4;
290
291 /* default to low priority queue */
292 if (queue_no == EVENTQ_DEFAULT)
Sekhar Nori3f68b982010-05-04 14:11:35 +0530293 queue_no = edma_cc[ctlr]->default_queue;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500294
295 queue_no &= 7;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400296 edma_modify_array(ctlr, EDMA_DMAQNUM, (ch_no >> 3),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500297 ~(0x7 << bit), queue_no << bit);
298}
299
Daniel Macka2b11752014-08-26 10:52:53 +0200300static void assign_priority_to_queue(unsigned ctlr, int queue_no,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400301 int priority)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500302{
303 int bit = queue_no * 4;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400304 edma_modify(ctlr, EDMA_QUEPRI, ~(0x7 << bit),
305 ((priority & 0x7) << bit));
306}
307
308/**
309 * map_dmach_param - Maps channel number to param entry number
310 *
311 * This maps the dma channel number to param entry numberter. In
312 * other words using the DMA channel mapping registers a param entry
313 * can be mapped to any channel
314 *
315 * Callers are responsible for ensuring the channel mapping logic is
316 * included in that particular EDMA variant (Eg : dm646x)
317 *
318 */
Daniel Macka2b11752014-08-26 10:52:53 +0200319static void map_dmach_param(unsigned ctlr)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400320{
321 int i;
322 for (i = 0; i < EDMA_MAX_DMACH; i++)
323 edma_write_array(ctlr, EDMA_DCHMAP , i , (i << 5));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500324}
325
326static inline void
327setup_dma_interrupt(unsigned lch,
328 void (*callback)(unsigned channel, u16 ch_status, void *data),
329 void *data)
330{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400331 unsigned ctlr;
332
333 ctlr = EDMA_CTLR(lch);
334 lch = EDMA_CHAN_SLOT(lch);
335
Sekhar Nori243bc652010-05-04 14:11:36 +0530336 if (!callback)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400337 edma_shadow0_write_array(ctlr, SH_IECR, lch >> 5,
Sekhar Norid78a9492010-05-10 12:41:18 +0530338 BIT(lch & 0x1f));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500339
Sekhar Nori3f68b982010-05-04 14:11:35 +0530340 edma_cc[ctlr]->intr_data[lch].callback = callback;
341 edma_cc[ctlr]->intr_data[lch].data = data;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500342
343 if (callback) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400344 edma_shadow0_write_array(ctlr, SH_ICR, lch >> 5,
Sekhar Norid78a9492010-05-10 12:41:18 +0530345 BIT(lch & 0x1f));
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400346 edma_shadow0_write_array(ctlr, SH_IESR, lch >> 5,
Sekhar Norid78a9492010-05-10 12:41:18 +0530347 BIT(lch & 0x1f));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500348 }
349}
350
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400351static int irq2ctlr(int irq)
352{
Sekhar Nori3f68b982010-05-04 14:11:35 +0530353 if (irq >= edma_cc[0]->irq_res_start && irq <= edma_cc[0]->irq_res_end)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400354 return 0;
Sekhar Nori3f68b982010-05-04 14:11:35 +0530355 else if (irq >= edma_cc[1]->irq_res_start &&
356 irq <= edma_cc[1]->irq_res_end)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400357 return 1;
358
359 return -1;
360}
361
Kevin Hilmana4768d22009-04-14 07:18:14 -0500362/******************************************************************************
363 *
364 * DMA interrupt handler
365 *
366 *****************************************************************************/
367static irqreturn_t dma_irq_handler(int irq, void *data)
368{
Kulikov Vasiliy93fe23d2010-07-17 19:19:07 +0400369 int ctlr;
Sebastian Andrzej Siewiorbcd59b02012-02-09 13:28:26 +0100370 u32 sh_ier;
371 u32 sh_ipr;
372 u32 bank;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500373
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400374 ctlr = irq2ctlr(irq);
Kulikov Vasiliy93fe23d2010-07-17 19:19:07 +0400375 if (ctlr < 0)
376 return IRQ_NONE;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400377
Kevin Hilmana4768d22009-04-14 07:18:14 -0500378 dev_dbg(data, "dma_irq_handler\n");
379
Sebastian Andrzej Siewiorbcd59b02012-02-09 13:28:26 +0100380 sh_ipr = edma_shadow0_read_array(ctlr, SH_IPR, 0);
381 if (!sh_ipr) {
382 sh_ipr = edma_shadow0_read_array(ctlr, SH_IPR, 1);
383 if (!sh_ipr)
384 return IRQ_NONE;
385 sh_ier = edma_shadow0_read_array(ctlr, SH_IER, 1);
386 bank = 1;
387 } else {
388 sh_ier = edma_shadow0_read_array(ctlr, SH_IER, 0);
389 bank = 0;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500390 }
Sebastian Andrzej Siewiorbcd59b02012-02-09 13:28:26 +0100391
392 do {
393 u32 slot;
394 u32 channel;
395
396 dev_dbg(data, "IPR%d %08x\n", bank, sh_ipr);
397
398 slot = __ffs(sh_ipr);
399 sh_ipr &= ~(BIT(slot));
400
401 if (sh_ier & BIT(slot)) {
402 channel = (bank << 5) | slot;
403 /* Clear the corresponding IPR bits */
404 edma_shadow0_write_array(ctlr, SH_ICR, bank,
405 BIT(slot));
406 if (edma_cc[ctlr]->intr_data[channel].callback)
407 edma_cc[ctlr]->intr_data[channel].callback(
Vinod Kouldb60d8d2013-10-30 18:22:30 +0530408 channel, EDMA_DMA_COMPLETE,
Sebastian Andrzej Siewiorbcd59b02012-02-09 13:28:26 +0100409 edma_cc[ctlr]->intr_data[channel].data);
410 }
411 } while (sh_ipr);
412
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400413 edma_shadow0_write(ctlr, SH_IEVAL, 1);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500414 return IRQ_HANDLED;
415}
416
417/******************************************************************************
418 *
419 * DMA error interrupt handler
420 *
421 *****************************************************************************/
422static irqreturn_t dma_ccerr_handler(int irq, void *data)
423{
424 int i;
Kulikov Vasiliy93fe23d2010-07-17 19:19:07 +0400425 int ctlr;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500426 unsigned int cnt = 0;
427
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400428 ctlr = irq2ctlr(irq);
Kulikov Vasiliy93fe23d2010-07-17 19:19:07 +0400429 if (ctlr < 0)
430 return IRQ_NONE;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400431
Kevin Hilmana4768d22009-04-14 07:18:14 -0500432 dev_dbg(data, "dma_ccerr_handler\n");
433
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400434 if ((edma_read_array(ctlr, EDMA_EMR, 0) == 0) &&
435 (edma_read_array(ctlr, EDMA_EMR, 1) == 0) &&
436 (edma_read(ctlr, EDMA_QEMR) == 0) &&
437 (edma_read(ctlr, EDMA_CCERR) == 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500438 return IRQ_NONE;
439
440 while (1) {
441 int j = -1;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400442 if (edma_read_array(ctlr, EDMA_EMR, 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500443 j = 0;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400444 else if (edma_read_array(ctlr, EDMA_EMR, 1))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500445 j = 1;
446 if (j >= 0) {
447 dev_dbg(data, "EMR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400448 edma_read_array(ctlr, EDMA_EMR, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500449 for (i = 0; i < 32; i++) {
450 int k = (j << 5) + i;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400451 if (edma_read_array(ctlr, EDMA_EMR, j) &
Sekhar Norid78a9492010-05-10 12:41:18 +0530452 BIT(i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500453 /* Clear the corresponding EMR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400454 edma_write_array(ctlr, EDMA_EMCR, j,
Sekhar Norid78a9492010-05-10 12:41:18 +0530455 BIT(i));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500456 /* Clear any SER */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400457 edma_shadow0_write_array(ctlr, SH_SECR,
Sekhar Norid78a9492010-05-10 12:41:18 +0530458 j, BIT(i));
Sekhar Nori3f68b982010-05-04 14:11:35 +0530459 if (edma_cc[ctlr]->intr_data[k].
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400460 callback) {
Sekhar Nori3f68b982010-05-04 14:11:35 +0530461 edma_cc[ctlr]->intr_data[k].
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400462 callback(k,
Vinod Kouldb60d8d2013-10-30 18:22:30 +0530463 EDMA_DMA_CC_ERROR,
Sekhar Nori3f68b982010-05-04 14:11:35 +0530464 edma_cc[ctlr]->intr_data
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400465 [k].data);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500466 }
467 }
468 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400469 } else if (edma_read(ctlr, EDMA_QEMR)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500470 dev_dbg(data, "QEMR %02x\n",
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400471 edma_read(ctlr, EDMA_QEMR));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500472 for (i = 0; i < 8; i++) {
Sekhar Norid78a9492010-05-10 12:41:18 +0530473 if (edma_read(ctlr, EDMA_QEMR) & BIT(i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500474 /* Clear the corresponding IPR bits */
Sekhar Norid78a9492010-05-10 12:41:18 +0530475 edma_write(ctlr, EDMA_QEMCR, BIT(i));
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400476 edma_shadow0_write(ctlr, SH_QSECR,
Sekhar Norid78a9492010-05-10 12:41:18 +0530477 BIT(i));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500478
479 /* NOTE: not reported!! */
480 }
481 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400482 } else if (edma_read(ctlr, EDMA_CCERR)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500483 dev_dbg(data, "CCERR %08x\n",
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400484 edma_read(ctlr, EDMA_CCERR));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500485 /* FIXME: CCERR.BIT(16) ignored! much better
486 * to just write CCERRCLR with CCERR value...
487 */
488 for (i = 0; i < 8; i++) {
Sekhar Norid78a9492010-05-10 12:41:18 +0530489 if (edma_read(ctlr, EDMA_CCERR) & BIT(i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500490 /* Clear the corresponding IPR bits */
Sekhar Norid78a9492010-05-10 12:41:18 +0530491 edma_write(ctlr, EDMA_CCERRCLR, BIT(i));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500492
493 /* NOTE: not reported!! */
494 }
495 }
496 }
Sekhar Noria6374f52010-05-10 12:41:19 +0530497 if ((edma_read_array(ctlr, EDMA_EMR, 0) == 0) &&
498 (edma_read_array(ctlr, EDMA_EMR, 1) == 0) &&
499 (edma_read(ctlr, EDMA_QEMR) == 0) &&
500 (edma_read(ctlr, EDMA_CCERR) == 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500501 break;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500502 cnt++;
503 if (cnt > 10)
504 break;
505 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400506 edma_write(ctlr, EDMA_EEVAL, 1);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500507 return IRQ_HANDLED;
508}
509
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400510static int reserve_contiguous_slots(int ctlr, unsigned int id,
511 unsigned int num_slots,
512 unsigned int start_slot)
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400513{
514 int i, j;
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400515 unsigned int count = num_slots;
516 int stop_slot = start_slot;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400517 DECLARE_BITMAP(tmp_inuse, EDMA_MAX_PARAMENTRY);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400518
Sekhar Nori3f68b982010-05-04 14:11:35 +0530519 for (i = start_slot; i < edma_cc[ctlr]->num_slots; ++i) {
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400520 j = EDMA_CHAN_SLOT(i);
Sekhar Nori3f68b982010-05-04 14:11:35 +0530521 if (!test_and_set_bit(j, edma_cc[ctlr]->edma_inuse)) {
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400522 /* Record our current beginning slot */
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400523 if (count == num_slots)
524 stop_slot = i;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400525
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400526 count--;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400527 set_bit(j, tmp_inuse);
528
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400529 if (count == 0)
530 break;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400531 } else {
532 clear_bit(j, tmp_inuse);
533
534 if (id == EDMA_CONT_PARAMS_FIXED_EXACT) {
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400535 stop_slot = i;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400536 break;
Sekhar Nori243bc652010-05-04 14:11:36 +0530537 } else {
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400538 count = num_slots;
Sekhar Nori243bc652010-05-04 14:11:36 +0530539 }
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400540 }
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400541 }
542
543 /*
544 * We have to clear any bits that we set
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400545 * if we run out parameter RAM slots, i.e we do find a set
546 * of contiguous parameter RAM slots but do not find the exact number
547 * requested as we may reach the total number of parameter RAM slots
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400548 */
Sekhar Nori3f68b982010-05-04 14:11:35 +0530549 if (i == edma_cc[ctlr]->num_slots)
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400550 stop_slot = i;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400551
Akinobu Mita98e3b332012-04-11 20:36:53 +0900552 j = start_slot;
553 for_each_set_bit_from(j, tmp_inuse, stop_slot)
554 clear_bit(j, edma_cc[ctlr]->edma_inuse);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400555
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400556 if (count)
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400557 return -EBUSY;
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400558
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400559 for (j = i - num_slots + 1; j <= i; ++j)
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400560 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(j),
561 &dummy_paramset, PARM_SIZE);
562
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400563 return EDMA_CTLR_CHAN(ctlr, i - num_slots + 1);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400564}
565
Sudhakar Rajashekharaf900d552010-01-06 17:29:49 +0530566static int prepare_unused_channel_list(struct device *dev, void *data)
567{
568 struct platform_device *pdev = to_platform_device(dev);
Joel Fernandes6cdaca42013-09-26 16:55:46 -0500569 int i, count, ctlr;
570 struct of_phandle_args dma_spec;
Sudhakar Rajashekharaf900d552010-01-06 17:29:49 +0530571
Joel Fernandes6cdaca42013-09-26 16:55:46 -0500572 if (dev->of_node) {
573 count = of_property_count_strings(dev->of_node, "dma-names");
574 if (count < 0)
575 return 0;
576 for (i = 0; i < count; i++) {
577 if (of_parse_phandle_with_args(dev->of_node, "dmas",
578 "#dma-cells", i,
579 &dma_spec))
580 continue;
581
582 if (!of_match_node(edma_of_ids, dma_spec.np)) {
583 of_node_put(dma_spec.np);
584 continue;
585 }
586
587 clear_bit(EDMA_CHAN_SLOT(dma_spec.args[0]),
588 edma_cc[0]->edma_unused);
589 of_node_put(dma_spec.np);
590 }
591 return 0;
592 }
593
594 /* For non-OF case */
Sudhakar Rajashekharaf900d552010-01-06 17:29:49 +0530595 for (i = 0; i < pdev->num_resources; i++) {
596 if ((pdev->resource[i].flags & IORESOURCE_DMA) &&
597 (int)pdev->resource[i].start >= 0) {
598 ctlr = EDMA_CTLR(pdev->resource[i].start);
599 clear_bit(EDMA_CHAN_SLOT(pdev->resource[i].start),
Joel Fernandes6cdaca42013-09-26 16:55:46 -0500600 edma_cc[ctlr]->edma_unused);
Sudhakar Rajashekharaf900d552010-01-06 17:29:49 +0530601 }
602 }
603
604 return 0;
605}
606
Kevin Hilmana4768d22009-04-14 07:18:14 -0500607/*-----------------------------------------------------------------------*/
608
Sudhakar Rajashekharaf900d552010-01-06 17:29:49 +0530609static bool unused_chan_list_done;
610
Kevin Hilmana4768d22009-04-14 07:18:14 -0500611/* Resource alloc/free: dma channels, parameter RAM slots */
612
613/**
614 * edma_alloc_channel - allocate DMA channel and paired parameter RAM
615 * @channel: specific channel to allocate; negative for "any unmapped channel"
616 * @callback: optional; to be issued on DMA completion or errors
617 * @data: passed to callback
618 * @eventq_no: an EVENTQ_* constant, used to choose which Transfer
619 * Controller (TC) executes requests using this channel. Use
620 * EVENTQ_DEFAULT unless you really need a high priority queue.
621 *
622 * This allocates a DMA channel and its associated parameter RAM slot.
623 * The parameter RAM is initialized to hold a dummy transfer.
624 *
625 * Normal use is to pass a specific channel number as @channel, to make
626 * use of hardware events mapped to that channel. When the channel will
627 * be used only for software triggering or event chaining, channels not
628 * mapped to hardware events (or mapped to unused events) are preferable.
629 *
630 * DMA transfers start from a channel using edma_start(), or by
631 * chaining. When the transfer described in that channel's parameter RAM
632 * slot completes, that slot's data may be reloaded through a link.
633 *
634 * DMA errors are only reported to the @callback associated with the
635 * channel driving that transfer, but transfer completion callbacks can
636 * be sent to another channel under control of the TCC field in
637 * the option word of the transfer's parameter RAM set. Drivers must not
638 * use DMA transfer completion callbacks for channels they did not allocate.
639 * (The same applies to TCC codes used in transfer chaining.)
640 *
641 * Returns the number of the channel, else negative errno.
642 */
643int edma_alloc_channel(int channel,
644 void (*callback)(unsigned channel, u16 ch_status, void *data),
645 void *data,
646 enum dma_event_q eventq_no)
647{
Sudhakar Rajashekhara447f18f2010-01-06 17:29:11 +0530648 unsigned i, done = 0, ctlr = 0;
Sudhakar Rajashekharaf900d552010-01-06 17:29:49 +0530649 int ret = 0;
650
651 if (!unused_chan_list_done) {
652 /*
653 * Scan all the platform devices to find out the EDMA channels
654 * used and clear them in the unused list, making the rest
655 * available for ARM usage.
656 */
657 ret = bus_for_each_dev(&platform_bus_type, NULL, NULL,
658 prepare_unused_channel_list);
659 if (ret < 0)
660 return ret;
661
662 unused_chan_list_done = true;
663 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400664
665 if (channel >= 0) {
666 ctlr = EDMA_CTLR(channel);
667 channel = EDMA_CHAN_SLOT(channel);
668 }
669
Kevin Hilmana4768d22009-04-14 07:18:14 -0500670 if (channel < 0) {
Sudhakar Rajashekhara2d517502010-01-06 17:28:44 +0530671 for (i = 0; i < arch_num_cc; i++) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400672 channel = 0;
673 for (;;) {
Sekhar Nori3f68b982010-05-04 14:11:35 +0530674 channel = find_next_bit(edma_cc[i]->edma_unused,
675 edma_cc[i]->num_channels,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400676 channel);
Sekhar Nori3f68b982010-05-04 14:11:35 +0530677 if (channel == edma_cc[i]->num_channels)
Sudhakar Rajashekhara447f18f2010-01-06 17:29:11 +0530678 break;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400679 if (!test_and_set_bit(channel,
Sekhar Nori3f68b982010-05-04 14:11:35 +0530680 edma_cc[i]->edma_inuse)) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400681 done = 1;
682 ctlr = i;
683 break;
684 }
685 channel++;
686 }
687 if (done)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500688 break;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500689 }
Sudhakar Rajashekhara447f18f2010-01-06 17:29:11 +0530690 if (!done)
691 return -ENOMEM;
Sekhar Nori3f68b982010-05-04 14:11:35 +0530692 } else if (channel >= edma_cc[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500693 return -EINVAL;
Sekhar Nori3f68b982010-05-04 14:11:35 +0530694 } else if (test_and_set_bit(channel, edma_cc[ctlr]->edma_inuse)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500695 return -EBUSY;
696 }
697
698 /* ensure access through shadow region 0 */
Sekhar Norid78a9492010-05-10 12:41:18 +0530699 edma_or_array2(ctlr, EDMA_DRAE, 0, channel >> 5, BIT(channel & 0x1f));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500700
701 /* ensure no events are pending */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400702 edma_stop(EDMA_CTLR_CHAN(ctlr, channel));
703 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(channel),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500704 &dummy_paramset, PARM_SIZE);
705
706 if (callback)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400707 setup_dma_interrupt(EDMA_CTLR_CHAN(ctlr, channel),
708 callback, data);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500709
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400710 map_dmach_queue(ctlr, channel, eventq_no);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500711
Sudhakar Rajashekhara0e6cb8d2010-01-06 17:28:36 +0530712 return EDMA_CTLR_CHAN(ctlr, channel);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500713}
714EXPORT_SYMBOL(edma_alloc_channel);
715
716
717/**
718 * edma_free_channel - deallocate DMA channel
719 * @channel: dma channel returned from edma_alloc_channel()
720 *
721 * This deallocates the DMA channel and associated parameter RAM slot
722 * allocated by edma_alloc_channel().
723 *
724 * Callers are responsible for ensuring the channel is inactive, and
725 * will not be reactivated by linking, chaining, or software calls to
726 * edma_start().
727 */
728void edma_free_channel(unsigned channel)
729{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400730 unsigned ctlr;
731
732 ctlr = EDMA_CTLR(channel);
733 channel = EDMA_CHAN_SLOT(channel);
734
Sekhar Nori3f68b982010-05-04 14:11:35 +0530735 if (channel >= edma_cc[ctlr]->num_channels)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500736 return;
737
738 setup_dma_interrupt(channel, NULL, NULL);
739 /* REVISIT should probably take out of shadow region 0 */
740
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400741 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(channel),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500742 &dummy_paramset, PARM_SIZE);
Sekhar Nori3f68b982010-05-04 14:11:35 +0530743 clear_bit(channel, edma_cc[ctlr]->edma_inuse);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500744}
745EXPORT_SYMBOL(edma_free_channel);
746
747/**
748 * edma_alloc_slot - allocate DMA parameter RAM
749 * @slot: specific slot to allocate; negative for "any unused slot"
750 *
751 * This allocates a parameter RAM slot, initializing it to hold a
752 * dummy transfer. Slots allocated using this routine have not been
753 * mapped to a hardware DMA channel, and will normally be used by
754 * linking to them from a slot associated with a DMA channel.
755 *
756 * Normal use is to pass EDMA_SLOT_ANY as the @slot, but specific
757 * slots may be allocated on behalf of DSP firmware.
758 *
759 * Returns the number of the slot, else negative errno.
760 */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400761int edma_alloc_slot(unsigned ctlr, int slot)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500762{
Matt Porter06955272013-03-05 10:58:22 -0500763 if (!edma_cc[ctlr])
764 return -EINVAL;
765
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400766 if (slot >= 0)
767 slot = EDMA_CHAN_SLOT(slot);
768
Kevin Hilmana4768d22009-04-14 07:18:14 -0500769 if (slot < 0) {
Sekhar Nori3f68b982010-05-04 14:11:35 +0530770 slot = edma_cc[ctlr]->num_channels;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500771 for (;;) {
Sekhar Nori3f68b982010-05-04 14:11:35 +0530772 slot = find_next_zero_bit(edma_cc[ctlr]->edma_inuse,
773 edma_cc[ctlr]->num_slots, slot);
774 if (slot == edma_cc[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500775 return -ENOMEM;
Sekhar Nori3f68b982010-05-04 14:11:35 +0530776 if (!test_and_set_bit(slot, edma_cc[ctlr]->edma_inuse))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500777 break;
778 }
Sekhar Nori3f68b982010-05-04 14:11:35 +0530779 } else if (slot < edma_cc[ctlr]->num_channels ||
780 slot >= edma_cc[ctlr]->num_slots) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500781 return -EINVAL;
Sekhar Nori3f68b982010-05-04 14:11:35 +0530782 } else if (test_and_set_bit(slot, edma_cc[ctlr]->edma_inuse)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500783 return -EBUSY;
784 }
785
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400786 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500787 &dummy_paramset, PARM_SIZE);
788
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400789 return EDMA_CTLR_CHAN(ctlr, slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500790}
791EXPORT_SYMBOL(edma_alloc_slot);
792
793/**
794 * edma_free_slot - deallocate DMA parameter RAM
795 * @slot: parameter RAM slot returned from edma_alloc_slot()
796 *
797 * This deallocates the parameter RAM slot allocated by edma_alloc_slot().
798 * Callers are responsible for ensuring the slot is inactive, and will
799 * not be activated.
800 */
801void edma_free_slot(unsigned slot)
802{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400803 unsigned ctlr;
804
805 ctlr = EDMA_CTLR(slot);
806 slot = EDMA_CHAN_SLOT(slot);
807
Sekhar Nori3f68b982010-05-04 14:11:35 +0530808 if (slot < edma_cc[ctlr]->num_channels ||
809 slot >= edma_cc[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500810 return;
811
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400812 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500813 &dummy_paramset, PARM_SIZE);
Sekhar Nori3f68b982010-05-04 14:11:35 +0530814 clear_bit(slot, edma_cc[ctlr]->edma_inuse);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500815}
816EXPORT_SYMBOL(edma_free_slot);
817
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400818
819/**
820 * edma_alloc_cont_slots- alloc contiguous parameter RAM slots
821 * The API will return the starting point of a set of
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400822 * contiguous parameter RAM slots that have been requested
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400823 *
824 * @id: can only be EDMA_CONT_PARAMS_ANY or EDMA_CONT_PARAMS_FIXED_EXACT
825 * or EDMA_CONT_PARAMS_FIXED_NOT_EXACT
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400826 * @count: number of contiguous Paramter RAM slots
827 * @slot - the start value of Parameter RAM slot that should be passed if id
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400828 * is EDMA_CONT_PARAMS_FIXED_EXACT or EDMA_CONT_PARAMS_FIXED_NOT_EXACT
829 *
830 * If id is EDMA_CONT_PARAMS_ANY then the API starts looking for a set of
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400831 * contiguous Parameter RAM slots from parameter RAM 64 in the case of
832 * DaVinci SOCs and 32 in the case of DA8xx SOCs.
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400833 *
834 * If id is EDMA_CONT_PARAMS_FIXED_EXACT then the API starts looking for a
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400835 * set of contiguous parameter RAM slots from the "slot" that is passed as an
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400836 * argument to the API.
837 *
838 * If id is EDMA_CONT_PARAMS_FIXED_NOT_EXACT then the API initially tries
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400839 * starts looking for a set of contiguous parameter RAMs from the "slot"
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400840 * that is passed as an argument to the API. On failure the API will try to
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400841 * find a set of contiguous Parameter RAM slots from the remaining Parameter
842 * RAM slots
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400843 */
844int edma_alloc_cont_slots(unsigned ctlr, unsigned int id, int slot, int count)
845{
846 /*
847 * The start slot requested should be greater than
848 * the number of channels and lesser than the total number
849 * of slots
850 */
Sandeep Paulraj6b0cf4e2009-09-16 18:17:43 -0400851 if ((id != EDMA_CONT_PARAMS_ANY) &&
Sekhar Nori3f68b982010-05-04 14:11:35 +0530852 (slot < edma_cc[ctlr]->num_channels ||
853 slot >= edma_cc[ctlr]->num_slots))
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400854 return -EINVAL;
855
856 /*
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400857 * The number of parameter RAM slots requested cannot be less than 1
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400858 * and cannot be more than the number of slots minus the number of
859 * channels
860 */
861 if (count < 1 || count >
Sekhar Nori3f68b982010-05-04 14:11:35 +0530862 (edma_cc[ctlr]->num_slots - edma_cc[ctlr]->num_channels))
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400863 return -EINVAL;
864
865 switch (id) {
866 case EDMA_CONT_PARAMS_ANY:
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400867 return reserve_contiguous_slots(ctlr, id, count,
Sekhar Nori3f68b982010-05-04 14:11:35 +0530868 edma_cc[ctlr]->num_channels);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400869 case EDMA_CONT_PARAMS_FIXED_EXACT:
870 case EDMA_CONT_PARAMS_FIXED_NOT_EXACT:
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400871 return reserve_contiguous_slots(ctlr, id, count, slot);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400872 default:
873 return -EINVAL;
874 }
875
876}
877EXPORT_SYMBOL(edma_alloc_cont_slots);
878
879/**
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400880 * edma_free_cont_slots - deallocate DMA parameter RAM slots
881 * @slot: first parameter RAM of a set of parameter RAM slots to be freed
882 * @count: the number of contiguous parameter RAM slots to be freed
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400883 *
884 * This deallocates the parameter RAM slots allocated by
885 * edma_alloc_cont_slots.
886 * Callers/applications need to keep track of sets of contiguous
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400887 * parameter RAM slots that have been allocated using the edma_alloc_cont_slots
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400888 * API.
889 * Callers are responsible for ensuring the slots are inactive, and will
890 * not be activated.
891 */
892int edma_free_cont_slots(unsigned slot, int count)
893{
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400894 unsigned ctlr, slot_to_free;
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400895 int i;
896
897 ctlr = EDMA_CTLR(slot);
898 slot = EDMA_CHAN_SLOT(slot);
899
Sekhar Nori3f68b982010-05-04 14:11:35 +0530900 if (slot < edma_cc[ctlr]->num_channels ||
901 slot >= edma_cc[ctlr]->num_slots ||
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400902 count < 1)
903 return -EINVAL;
904
905 for (i = slot; i < slot + count; ++i) {
906 ctlr = EDMA_CTLR(i);
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400907 slot_to_free = EDMA_CHAN_SLOT(i);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400908
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400909 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot_to_free),
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400910 &dummy_paramset, PARM_SIZE);
Sekhar Nori3f68b982010-05-04 14:11:35 +0530911 clear_bit(slot_to_free, edma_cc[ctlr]->edma_inuse);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400912 }
913
914 return 0;
915}
916EXPORT_SYMBOL(edma_free_cont_slots);
917
Kevin Hilmana4768d22009-04-14 07:18:14 -0500918/*-----------------------------------------------------------------------*/
919
920/* Parameter RAM operations (i) -- read/write partial slots */
921
922/**
923 * edma_set_src - set initial DMA source address in parameter RAM slot
924 * @slot: parameter RAM slot being configured
925 * @src_port: physical address of source (memory, controller FIFO, etc)
926 * @addressMode: INCR, except in very rare cases
927 * @fifoWidth: ignored unless @addressMode is FIFO, else specifies the
928 * width to use when addressing the fifo (e.g. W8BIT, W32BIT)
929 *
930 * Note that the source address is modified during the DMA transfer
931 * according to edma_set_src_index().
932 */
933void edma_set_src(unsigned slot, dma_addr_t src_port,
934 enum address_mode mode, enum fifo_width width)
935{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400936 unsigned ctlr;
937
938 ctlr = EDMA_CTLR(slot);
939 slot = EDMA_CHAN_SLOT(slot);
940
Sekhar Nori3f68b982010-05-04 14:11:35 +0530941 if (slot < edma_cc[ctlr]->num_slots) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400942 unsigned int i = edma_parm_read(ctlr, PARM_OPT, slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500943
944 if (mode) {
945 /* set SAM and program FWID */
946 i = (i & ~(EDMA_FWID)) | (SAM | ((width & 0x7) << 8));
947 } else {
948 /* clear SAM */
949 i &= ~SAM;
950 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400951 edma_parm_write(ctlr, PARM_OPT, slot, i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500952
953 /* set the source port address
954 in source register of param structure */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400955 edma_parm_write(ctlr, PARM_SRC, slot, src_port);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500956 }
957}
958EXPORT_SYMBOL(edma_set_src);
959
960/**
961 * edma_set_dest - set initial DMA destination address in parameter RAM slot
962 * @slot: parameter RAM slot being configured
963 * @dest_port: physical address of destination (memory, controller FIFO, etc)
964 * @addressMode: INCR, except in very rare cases
965 * @fifoWidth: ignored unless @addressMode is FIFO, else specifies the
966 * width to use when addressing the fifo (e.g. W8BIT, W32BIT)
967 *
968 * Note that the destination address is modified during the DMA transfer
969 * according to edma_set_dest_index().
970 */
971void edma_set_dest(unsigned slot, dma_addr_t dest_port,
972 enum address_mode mode, enum fifo_width width)
973{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400974 unsigned ctlr;
975
976 ctlr = EDMA_CTLR(slot);
977 slot = EDMA_CHAN_SLOT(slot);
978
Sekhar Nori3f68b982010-05-04 14:11:35 +0530979 if (slot < edma_cc[ctlr]->num_slots) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400980 unsigned int i = edma_parm_read(ctlr, PARM_OPT, slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500981
982 if (mode) {
983 /* set DAM and program FWID */
984 i = (i & ~(EDMA_FWID)) | (DAM | ((width & 0x7) << 8));
985 } else {
986 /* clear DAM */
987 i &= ~DAM;
988 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400989 edma_parm_write(ctlr, PARM_OPT, slot, i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500990 /* set the destination port address
991 in dest register of param structure */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400992 edma_parm_write(ctlr, PARM_DST, slot, dest_port);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500993 }
994}
995EXPORT_SYMBOL(edma_set_dest);
996
997/**
Thomas Gleixnercdae05a2014-04-28 10:49:43 +0000998 * edma_get_position - returns the current transfer point
Kevin Hilmana4768d22009-04-14 07:18:14 -0500999 * @slot: parameter RAM slot being examined
Thomas Gleixnercdae05a2014-04-28 10:49:43 +00001000 * @dst: true selects the dest position, false the source
Kevin Hilmana4768d22009-04-14 07:18:14 -05001001 *
Thomas Gleixnercdae05a2014-04-28 10:49:43 +00001002 * Returns the position of the current active slot
Kevin Hilmana4768d22009-04-14 07:18:14 -05001003 */
Thomas Gleixnercdae05a2014-04-28 10:49:43 +00001004dma_addr_t edma_get_position(unsigned slot, bool dst)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001005{
Thomas Gleixnercdae05a2014-04-28 10:49:43 +00001006 u32 offs, ctlr = EDMA_CTLR(slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001007
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001008 slot = EDMA_CHAN_SLOT(slot);
1009
Thomas Gleixnercdae05a2014-04-28 10:49:43 +00001010 offs = PARM_OFFSET(slot);
1011 offs += dst ? PARM_DST : PARM_SRC;
1012
1013 return edma_read(ctlr, offs);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001014}
Kevin Hilmana4768d22009-04-14 07:18:14 -05001015
1016/**
1017 * edma_set_src_index - configure DMA source address indexing
1018 * @slot: parameter RAM slot being configured
1019 * @src_bidx: byte offset between source arrays in a frame
1020 * @src_cidx: byte offset between source frames in a block
1021 *
1022 * Offsets are specified to support either contiguous or discontiguous
1023 * memory transfers, or repeated access to a hardware register, as needed.
1024 * When accessing hardware registers, both offsets are normally zero.
1025 */
1026void edma_set_src_index(unsigned slot, s16 src_bidx, s16 src_cidx)
1027{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001028 unsigned ctlr;
1029
1030 ctlr = EDMA_CTLR(slot);
1031 slot = EDMA_CHAN_SLOT(slot);
1032
Sekhar Nori3f68b982010-05-04 14:11:35 +05301033 if (slot < edma_cc[ctlr]->num_slots) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001034 edma_parm_modify(ctlr, PARM_SRC_DST_BIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001035 0xffff0000, src_bidx);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001036 edma_parm_modify(ctlr, PARM_SRC_DST_CIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001037 0xffff0000, src_cidx);
1038 }
1039}
1040EXPORT_SYMBOL(edma_set_src_index);
1041
1042/**
1043 * edma_set_dest_index - configure DMA destination address indexing
1044 * @slot: parameter RAM slot being configured
1045 * @dest_bidx: byte offset between destination arrays in a frame
1046 * @dest_cidx: byte offset between destination frames in a block
1047 *
1048 * Offsets are specified to support either contiguous or discontiguous
1049 * memory transfers, or repeated access to a hardware register, as needed.
1050 * When accessing hardware registers, both offsets are normally zero.
1051 */
1052void edma_set_dest_index(unsigned slot, s16 dest_bidx, s16 dest_cidx)
1053{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001054 unsigned ctlr;
1055
1056 ctlr = EDMA_CTLR(slot);
1057 slot = EDMA_CHAN_SLOT(slot);
1058
Sekhar Nori3f68b982010-05-04 14:11:35 +05301059 if (slot < edma_cc[ctlr]->num_slots) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001060 edma_parm_modify(ctlr, PARM_SRC_DST_BIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001061 0x0000ffff, dest_bidx << 16);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001062 edma_parm_modify(ctlr, PARM_SRC_DST_CIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001063 0x0000ffff, dest_cidx << 16);
1064 }
1065}
1066EXPORT_SYMBOL(edma_set_dest_index);
1067
1068/**
1069 * edma_set_transfer_params - configure DMA transfer parameters
1070 * @slot: parameter RAM slot being configured
1071 * @acnt: how many bytes per array (at least one)
1072 * @bcnt: how many arrays per frame (at least one)
1073 * @ccnt: how many frames per block (at least one)
1074 * @bcnt_rld: used only for A-Synchronized transfers; this specifies
1075 * the value to reload into bcnt when it decrements to zero
1076 * @sync_mode: ASYNC or ABSYNC
1077 *
1078 * See the EDMA3 documentation to understand how to configure and link
1079 * transfers using the fields in PaRAM slots. If you are not doing it
1080 * all at once with edma_write_slot(), you will use this routine
1081 * plus two calls each for source and destination, setting the initial
1082 * address and saying how to index that address.
1083 *
1084 * An example of an A-Synchronized transfer is a serial link using a
1085 * single word shift register. In that case, @acnt would be equal to
1086 * that word size; the serial controller issues a DMA synchronization
1087 * event to transfer each word, and memory access by the DMA transfer
1088 * controller will be word-at-a-time.
1089 *
1090 * An example of an AB-Synchronized transfer is a device using a FIFO.
1091 * In that case, @acnt equals the FIFO width and @bcnt equals its depth.
1092 * The controller with the FIFO issues DMA synchronization events when
1093 * the FIFO threshold is reached, and the DMA transfer controller will
1094 * transfer one frame to (or from) the FIFO. It will probably use
1095 * efficient burst modes to access memory.
1096 */
1097void edma_set_transfer_params(unsigned slot,
1098 u16 acnt, u16 bcnt, u16 ccnt,
1099 u16 bcnt_rld, enum sync_dimension sync_mode)
1100{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001101 unsigned ctlr;
1102
1103 ctlr = EDMA_CTLR(slot);
1104 slot = EDMA_CHAN_SLOT(slot);
1105
Sekhar Nori3f68b982010-05-04 14:11:35 +05301106 if (slot < edma_cc[ctlr]->num_slots) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001107 edma_parm_modify(ctlr, PARM_LINK_BCNTRLD, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001108 0x0000ffff, bcnt_rld << 16);
1109 if (sync_mode == ASYNC)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001110 edma_parm_and(ctlr, PARM_OPT, slot, ~SYNCDIM);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001111 else
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001112 edma_parm_or(ctlr, PARM_OPT, slot, SYNCDIM);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001113 /* Set the acount, bcount, ccount registers */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001114 edma_parm_write(ctlr, PARM_A_B_CNT, slot, (bcnt << 16) | acnt);
1115 edma_parm_write(ctlr, PARM_CCNT, slot, ccnt);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001116 }
1117}
1118EXPORT_SYMBOL(edma_set_transfer_params);
1119
1120/**
1121 * edma_link - link one parameter RAM slot to another
1122 * @from: parameter RAM slot originating the link
1123 * @to: parameter RAM slot which is the link target
1124 *
1125 * The originating slot should not be part of any active DMA transfer.
1126 */
1127void edma_link(unsigned from, unsigned to)
1128{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001129 unsigned ctlr_from, ctlr_to;
1130
1131 ctlr_from = EDMA_CTLR(from);
1132 from = EDMA_CHAN_SLOT(from);
1133 ctlr_to = EDMA_CTLR(to);
1134 to = EDMA_CHAN_SLOT(to);
1135
Sekhar Nori3f68b982010-05-04 14:11:35 +05301136 if (from >= edma_cc[ctlr_from]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001137 return;
Sekhar Nori3f68b982010-05-04 14:11:35 +05301138 if (to >= edma_cc[ctlr_to]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001139 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001140 edma_parm_modify(ctlr_from, PARM_LINK_BCNTRLD, from, 0xffff0000,
1141 PARM_OFFSET(to));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001142}
1143EXPORT_SYMBOL(edma_link);
1144
1145/**
1146 * edma_unlink - cut link from one parameter RAM slot
1147 * @from: parameter RAM slot originating the link
1148 *
1149 * The originating slot should not be part of any active DMA transfer.
1150 * Its link is set to 0xffff.
1151 */
1152void edma_unlink(unsigned from)
1153{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001154 unsigned ctlr;
1155
1156 ctlr = EDMA_CTLR(from);
1157 from = EDMA_CHAN_SLOT(from);
1158
Sekhar Nori3f68b982010-05-04 14:11:35 +05301159 if (from >= edma_cc[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001160 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001161 edma_parm_or(ctlr, PARM_LINK_BCNTRLD, from, 0xffff);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001162}
1163EXPORT_SYMBOL(edma_unlink);
1164
1165/*-----------------------------------------------------------------------*/
1166
1167/* Parameter RAM operations (ii) -- read/write whole parameter sets */
1168
1169/**
1170 * edma_write_slot - write parameter RAM data for slot
1171 * @slot: number of parameter RAM slot being modified
1172 * @param: data to be written into parameter RAM slot
1173 *
1174 * Use this to assign all parameters of a transfer at once. This
1175 * allows more efficient setup of transfers than issuing multiple
1176 * calls to set up those parameters in small pieces, and provides
1177 * complete control over all transfer options.
1178 */
1179void edma_write_slot(unsigned slot, const struct edmacc_param *param)
1180{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001181 unsigned ctlr;
1182
1183 ctlr = EDMA_CTLR(slot);
1184 slot = EDMA_CHAN_SLOT(slot);
1185
Sekhar Nori3f68b982010-05-04 14:11:35 +05301186 if (slot >= edma_cc[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001187 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001188 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot), param,
1189 PARM_SIZE);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001190}
1191EXPORT_SYMBOL(edma_write_slot);
1192
1193/**
1194 * edma_read_slot - read parameter RAM data from slot
1195 * @slot: number of parameter RAM slot being copied
1196 * @param: where to store copy of parameter RAM data
1197 *
1198 * Use this to read data from a parameter RAM slot, perhaps to
1199 * save them as a template for later reuse.
1200 */
1201void edma_read_slot(unsigned slot, struct edmacc_param *param)
1202{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001203 unsigned ctlr;
1204
1205 ctlr = EDMA_CTLR(slot);
1206 slot = EDMA_CHAN_SLOT(slot);
1207
Sekhar Nori3f68b982010-05-04 14:11:35 +05301208 if (slot >= edma_cc[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001209 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001210 memcpy_fromio(param, edmacc_regs_base[ctlr] + PARM_OFFSET(slot),
1211 PARM_SIZE);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001212}
1213EXPORT_SYMBOL(edma_read_slot);
1214
1215/*-----------------------------------------------------------------------*/
1216
1217/* Various EDMA channel control operations */
1218
1219/**
1220 * edma_pause - pause dma on a channel
1221 * @channel: on which edma_start() has been called
1222 *
1223 * This temporarily disables EDMA hardware events on the specified channel,
1224 * preventing them from triggering new transfers on its behalf
1225 */
1226void edma_pause(unsigned channel)
1227{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001228 unsigned ctlr;
1229
1230 ctlr = EDMA_CTLR(channel);
1231 channel = EDMA_CHAN_SLOT(channel);
1232
Sekhar Nori3f68b982010-05-04 14:11:35 +05301233 if (channel < edma_cc[ctlr]->num_channels) {
Sekhar Norid78a9492010-05-10 12:41:18 +05301234 unsigned int mask = BIT(channel & 0x1f);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001235
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001236 edma_shadow0_write_array(ctlr, SH_EECR, channel >> 5, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001237 }
1238}
1239EXPORT_SYMBOL(edma_pause);
1240
1241/**
1242 * edma_resume - resumes dma on a paused channel
1243 * @channel: on which edma_pause() has been called
1244 *
1245 * This re-enables EDMA hardware events on the specified channel.
1246 */
1247void edma_resume(unsigned channel)
1248{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001249 unsigned ctlr;
1250
1251 ctlr = EDMA_CTLR(channel);
1252 channel = EDMA_CHAN_SLOT(channel);
1253
Sekhar Nori3f68b982010-05-04 14:11:35 +05301254 if (channel < edma_cc[ctlr]->num_channels) {
Sekhar Norid78a9492010-05-10 12:41:18 +05301255 unsigned int mask = BIT(channel & 0x1f);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001256
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001257 edma_shadow0_write_array(ctlr, SH_EESR, channel >> 5, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001258 }
1259}
1260EXPORT_SYMBOL(edma_resume);
1261
Joel Fernandes96874b92013-08-29 18:05:42 -05001262int edma_trigger_channel(unsigned channel)
1263{
1264 unsigned ctlr;
1265 unsigned int mask;
1266
1267 ctlr = EDMA_CTLR(channel);
1268 channel = EDMA_CHAN_SLOT(channel);
1269 mask = BIT(channel & 0x1f);
1270
1271 edma_shadow0_write_array(ctlr, SH_ESR, (channel >> 5), mask);
1272
1273 pr_debug("EDMA: ESR%d %08x\n", (channel >> 5),
1274 edma_shadow0_read_array(ctlr, SH_ESR, (channel >> 5)));
1275 return 0;
1276}
1277EXPORT_SYMBOL(edma_trigger_channel);
1278
Kevin Hilmana4768d22009-04-14 07:18:14 -05001279/**
1280 * edma_start - start dma on a channel
1281 * @channel: channel being activated
1282 *
1283 * Channels with event associations will be triggered by their hardware
1284 * events, and channels without such associations will be triggered by
1285 * software. (At this writing there is no interface for using software
1286 * triggers except with channels that don't support hardware triggers.)
1287 *
1288 * Returns zero on success, else negative errno.
1289 */
1290int edma_start(unsigned channel)
1291{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001292 unsigned ctlr;
1293
1294 ctlr = EDMA_CTLR(channel);
1295 channel = EDMA_CHAN_SLOT(channel);
1296
Sekhar Nori3f68b982010-05-04 14:11:35 +05301297 if (channel < edma_cc[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001298 int j = channel >> 5;
Sekhar Norid78a9492010-05-10 12:41:18 +05301299 unsigned int mask = BIT(channel & 0x1f);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001300
1301 /* EDMA channels without event association */
Sekhar Nori3f68b982010-05-04 14:11:35 +05301302 if (test_bit(channel, edma_cc[ctlr]->edma_unused)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001303 pr_debug("EDMA: ESR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001304 edma_shadow0_read_array(ctlr, SH_ESR, j));
1305 edma_shadow0_write_array(ctlr, SH_ESR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001306 return 0;
1307 }
1308
1309 /* EDMA channel with event association */
1310 pr_debug("EDMA: ER%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001311 edma_shadow0_read_array(ctlr, SH_ER, j));
Brian Niebuhrbb17ef12010-03-09 16:48:03 -06001312 /* Clear any pending event or error */
1313 edma_write_array(ctlr, EDMA_ECR, j, mask);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001314 edma_write_array(ctlr, EDMA_EMCR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001315 /* Clear any SER */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001316 edma_shadow0_write_array(ctlr, SH_SECR, j, mask);
1317 edma_shadow0_write_array(ctlr, SH_EESR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001318 pr_debug("EDMA: EER%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001319 edma_shadow0_read_array(ctlr, SH_EER, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001320 return 0;
1321 }
1322
1323 return -EINVAL;
1324}
1325EXPORT_SYMBOL(edma_start);
1326
1327/**
1328 * edma_stop - stops dma on the channel passed
1329 * @channel: channel being deactivated
1330 *
1331 * When @lch is a channel, any active transfer is paused and
1332 * all pending hardware events are cleared. The current transfer
1333 * may not be resumed, and the channel's Parameter RAM should be
1334 * reinitialized before being reused.
1335 */
1336void edma_stop(unsigned channel)
1337{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001338 unsigned ctlr;
1339
1340 ctlr = EDMA_CTLR(channel);
1341 channel = EDMA_CHAN_SLOT(channel);
1342
Sekhar Nori3f68b982010-05-04 14:11:35 +05301343 if (channel < edma_cc[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001344 int j = channel >> 5;
Sekhar Norid78a9492010-05-10 12:41:18 +05301345 unsigned int mask = BIT(channel & 0x1f);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001346
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001347 edma_shadow0_write_array(ctlr, SH_EECR, j, mask);
1348 edma_shadow0_write_array(ctlr, SH_ECR, j, mask);
1349 edma_shadow0_write_array(ctlr, SH_SECR, j, mask);
1350 edma_write_array(ctlr, EDMA_EMCR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001351
1352 pr_debug("EDMA: EER%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001353 edma_shadow0_read_array(ctlr, SH_EER, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001354
1355 /* REVISIT: consider guarding against inappropriate event
1356 * chaining by overwriting with dummy_paramset.
1357 */
1358 }
1359}
1360EXPORT_SYMBOL(edma_stop);
1361
1362/******************************************************************************
1363 *
1364 * It cleans ParamEntry qand bring back EDMA to initial state if media has
1365 * been removed before EDMA has finished.It is usedful for removable media.
1366 * Arguments:
1367 * ch_no - channel no
1368 *
1369 * Return: zero on success, or corresponding error no on failure
1370 *
1371 * FIXME this should not be needed ... edma_stop() should suffice.
1372 *
1373 *****************************************************************************/
1374
1375void edma_clean_channel(unsigned channel)
1376{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001377 unsigned ctlr;
1378
1379 ctlr = EDMA_CTLR(channel);
1380 channel = EDMA_CHAN_SLOT(channel);
1381
Sekhar Nori3f68b982010-05-04 14:11:35 +05301382 if (channel < edma_cc[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001383 int j = (channel >> 5);
Sekhar Norid78a9492010-05-10 12:41:18 +05301384 unsigned int mask = BIT(channel & 0x1f);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001385
1386 pr_debug("EDMA: EMR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001387 edma_read_array(ctlr, EDMA_EMR, j));
1388 edma_shadow0_write_array(ctlr, SH_ECR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001389 /* Clear the corresponding EMR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001390 edma_write_array(ctlr, EDMA_EMCR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001391 /* Clear any SER */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001392 edma_shadow0_write_array(ctlr, SH_SECR, j, mask);
Sekhar Norid78a9492010-05-10 12:41:18 +05301393 edma_write(ctlr, EDMA_CCERRCLR, BIT(16) | BIT(1) | BIT(0));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001394 }
1395}
1396EXPORT_SYMBOL(edma_clean_channel);
1397
1398/*
1399 * edma_clear_event - clear an outstanding event on the DMA channel
1400 * Arguments:
1401 * channel - channel number
1402 */
1403void edma_clear_event(unsigned channel)
1404{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001405 unsigned ctlr;
1406
1407 ctlr = EDMA_CTLR(channel);
1408 channel = EDMA_CHAN_SLOT(channel);
1409
Sekhar Nori3f68b982010-05-04 14:11:35 +05301410 if (channel >= edma_cc[ctlr]->num_channels)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001411 return;
1412 if (channel < 32)
Sekhar Norid78a9492010-05-10 12:41:18 +05301413 edma_write(ctlr, EDMA_ECR, BIT(channel));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001414 else
Sekhar Norid78a9492010-05-10 12:41:18 +05301415 edma_write(ctlr, EDMA_ECRH, BIT(channel - 32));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001416}
1417EXPORT_SYMBOL(edma_clear_event);
1418
Peter Ujfalusieb3fe7d2014-07-08 13:46:37 +03001419/*
1420 * edma_assign_channel_eventq - move given channel to desired eventq
1421 * Arguments:
1422 * channel - channel number
1423 * eventq_no - queue to move the channel
1424 *
1425 * Can be used to move a channel to a selected event queue.
1426 */
1427void edma_assign_channel_eventq(unsigned channel, enum dma_event_q eventq_no)
1428{
1429 unsigned ctlr;
1430
1431 ctlr = EDMA_CTLR(channel);
1432 channel = EDMA_CHAN_SLOT(channel);
1433
1434 if (channel >= edma_cc[ctlr]->num_channels)
1435 return;
1436
1437 /* default to low priority queue */
1438 if (eventq_no == EVENTQ_DEFAULT)
1439 eventq_no = edma_cc[ctlr]->default_queue;
1440 if (eventq_no >= edma_cc[ctlr]->num_tc)
1441 return;
1442
1443 map_dmach_queue(ctlr, channel, eventq_no);
1444}
1445EXPORT_SYMBOL(edma_assign_channel_eventq);
1446
Peter Ujfalusi6d10c392014-05-16 15:17:15 +03001447static int edma_setup_from_hw(struct device *dev, struct edma_soc_info *pdata,
Peter Ujfalusi929a0152014-08-04 15:26:56 +03001448 struct edma *edma_cc, int cc_id)
Peter Ujfalusi6d10c392014-05-16 15:17:15 +03001449{
1450 int i;
1451 u32 value, cccfg;
1452 s8 (*queue_priority_map)[2];
1453
1454 /* Decode the eDMA3 configuration from CCCFG register */
Peter Ujfalusi929a0152014-08-04 15:26:56 +03001455 cccfg = edma_read(cc_id, EDMA_CCCFG);
Peter Ujfalusi6d10c392014-05-16 15:17:15 +03001456
1457 value = GET_NUM_REGN(cccfg);
1458 edma_cc->num_region = BIT(value);
1459
1460 value = GET_NUM_DMACH(cccfg);
1461 edma_cc->num_channels = BIT(value + 1);
1462
1463 value = GET_NUM_PAENTRY(cccfg);
1464 edma_cc->num_slots = BIT(value + 4);
1465
1466 value = GET_NUM_EVQUE(cccfg);
1467 edma_cc->num_tc = value + 1;
1468
Peter Ujfalusi929a0152014-08-04 15:26:56 +03001469 dev_dbg(dev, "eDMA3 CC%d HW configuration (cccfg: 0x%08x):\n", cc_id,
1470 cccfg);
Peter Ujfalusi6d10c392014-05-16 15:17:15 +03001471 dev_dbg(dev, "num_region: %u\n", edma_cc->num_region);
1472 dev_dbg(dev, "num_channel: %u\n", edma_cc->num_channels);
1473 dev_dbg(dev, "num_slot: %u\n", edma_cc->num_slots);
1474 dev_dbg(dev, "num_tc: %u\n", edma_cc->num_tc);
1475
1476 /* Nothing need to be done if queue priority is provided */
1477 if (pdata->queue_priority_mapping)
1478 return 0;
1479
1480 /*
1481 * Configure TC/queue priority as follows:
1482 * Q0 - priority 0
1483 * Q1 - priority 1
1484 * Q2 - priority 2
1485 * ...
1486 * The meaning of priority numbers: 0 highest priority, 7 lowest
1487 * priority. So Q0 is the highest priority queue and the last queue has
1488 * the lowest priority.
1489 */
1490 queue_priority_map = devm_kzalloc(dev,
1491 (edma_cc->num_tc + 1) * sizeof(s8),
1492 GFP_KERNEL);
1493 if (!queue_priority_map)
1494 return -ENOMEM;
1495
1496 for (i = 0; i < edma_cc->num_tc; i++) {
1497 queue_priority_map[i][0] = i;
1498 queue_priority_map[i][1] = i;
1499 }
1500 queue_priority_map[i][0] = -1;
1501 queue_priority_map[i][1] = -1;
1502
1503 pdata->queue_priority_mapping = queue_priority_map;
Peter Ujfalusi85a70762014-07-08 13:46:36 +03001504 /* Default queue has the lowest priority */
1505 pdata->default_queue = i - 1;
Peter Ujfalusi6d10c392014-05-16 15:17:15 +03001506
1507 return 0;
1508}
1509
Matt Porter6cba4352013-06-20 16:06:38 -05001510#if IS_ENABLED(CONFIG_OF) && IS_ENABLED(CONFIG_DMADEVICES)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001511
Thomas Gleixnercf7eb972014-04-13 20:44:46 +02001512static int edma_xbar_event_map(struct device *dev, struct device_node *node,
1513 struct edma_soc_info *pdata, size_t sz)
Matt Porter2646a0e2013-06-20 16:06:39 -05001514{
Thomas Gleixnercf7eb972014-04-13 20:44:46 +02001515 const char pname[] = "ti,edma-xbar-event-map";
Matt Porter2646a0e2013-06-20 16:06:39 -05001516 struct resource res;
1517 void __iomem *xbar;
Thomas Gleixnercf7eb972014-04-13 20:44:46 +02001518 s16 (*xbar_chans)[2];
1519 size_t nelm = sz / sizeof(s16);
Matt Porter2646a0e2013-06-20 16:06:39 -05001520 u32 shift, offset, mux;
Thomas Gleixnercf7eb972014-04-13 20:44:46 +02001521 int ret, i;
Matt Porter2646a0e2013-06-20 16:06:39 -05001522
Thomas Gleixnercf7eb972014-04-13 20:44:46 +02001523 xbar_chans = devm_kzalloc(dev, (nelm + 2) * sizeof(s16), GFP_KERNEL);
Matt Porter2646a0e2013-06-20 16:06:39 -05001524 if (!xbar_chans)
1525 return -ENOMEM;
1526
1527 ret = of_address_to_resource(node, 1, &res);
1528 if (ret)
Thomas Gleixnercf7eb972014-04-13 20:44:46 +02001529 return -ENOMEM;
Matt Porter2646a0e2013-06-20 16:06:39 -05001530
1531 xbar = devm_ioremap(dev, res.start, resource_size(&res));
1532 if (!xbar)
1533 return -ENOMEM;
1534
Thomas Gleixnercf7eb972014-04-13 20:44:46 +02001535 ret = of_property_read_u16_array(node, pname, (u16 *)xbar_chans, nelm);
Matt Porter2646a0e2013-06-20 16:06:39 -05001536 if (ret)
1537 return -EIO;
1538
Thomas Gleixnercf7eb972014-04-13 20:44:46 +02001539 /* Invalidate last entry for the other user of this mess */
1540 nelm >>= 1;
1541 xbar_chans[nelm][0] = xbar_chans[nelm][1] = -1;
1542
1543 for (i = 0; i < nelm; i++) {
Matt Porter2646a0e2013-06-20 16:06:39 -05001544 shift = (xbar_chans[i][1] & 0x03) << 3;
1545 offset = xbar_chans[i][1] & 0xfffffffc;
1546 mux = readl(xbar + offset);
1547 mux &= ~(0xff << shift);
1548 mux |= xbar_chans[i][0] << shift;
1549 writel(mux, (xbar + offset));
1550 }
1551
Thomas Gleixnercf7eb972014-04-13 20:44:46 +02001552 pdata->xbar_chans = (const s16 (*)[2]) xbar_chans;
Matt Porter2646a0e2013-06-20 16:06:39 -05001553 return 0;
1554}
1555
Matt Porter6cba4352013-06-20 16:06:38 -05001556static int edma_of_parse_dt(struct device *dev,
1557 struct device_node *node,
1558 struct edma_soc_info *pdata)
1559{
Peter Ujfalusi6d10c392014-05-16 15:17:15 +03001560 int ret = 0;
Matt Porter2646a0e2013-06-20 16:06:39 -05001561 struct property *prop;
1562 size_t sz;
Matt Porter6cba4352013-06-20 16:06:38 -05001563 struct edma_rsv_info *rsv_info;
Matt Porter6cba4352013-06-20 16:06:38 -05001564
1565 rsv_info = devm_kzalloc(dev, sizeof(struct edma_rsv_info), GFP_KERNEL);
1566 if (!rsv_info)
1567 return -ENOMEM;
1568 pdata->rsv = rsv_info;
1569
Matt Porter2646a0e2013-06-20 16:06:39 -05001570 prop = of_find_property(node, "ti,edma-xbar-event-map", &sz);
1571 if (prop)
1572 ret = edma_xbar_event_map(dev, node, pdata, sz);
1573
Matt Porter6cba4352013-06-20 16:06:38 -05001574 return ret;
1575}
1576
1577static struct of_dma_filter_info edma_filter_info = {
1578 .filter_fn = edma_filter_fn,
1579};
1580
1581static struct edma_soc_info *edma_setup_info_from_dt(struct device *dev,
1582 struct device_node *node)
1583{
1584 struct edma_soc_info *info;
1585 int ret;
1586
1587 info = devm_kzalloc(dev, sizeof(struct edma_soc_info), GFP_KERNEL);
1588 if (!info)
1589 return ERR_PTR(-ENOMEM);
1590
1591 ret = edma_of_parse_dt(dev, node, info);
1592 if (ret)
1593 return ERR_PTR(ret);
1594
1595 dma_cap_set(DMA_SLAVE, edma_filter_info.dma_cap);
Peter Ujfalusi232b223d2014-04-14 14:42:00 +03001596 dma_cap_set(DMA_CYCLIC, edma_filter_info.dma_cap);
Matt Porter6cba4352013-06-20 16:06:38 -05001597 of_dma_controller_register(dev->of_node, of_dma_simple_xlate,
1598 &edma_filter_info);
1599
1600 return info;
1601}
1602#else
1603static struct edma_soc_info *edma_setup_info_from_dt(struct device *dev,
1604 struct device_node *node)
1605{
1606 return ERR_PTR(-ENOSYS);
1607}
1608#endif
1609
1610static int edma_probe(struct platform_device *pdev)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001611{
Sekhar Noribc3ac9f2010-06-29 11:35:12 +05301612 struct edma_soc_info **info = pdev->dev.platform_data;
Matt Porter6cba4352013-06-20 16:06:38 -05001613 struct edma_soc_info *ninfo[EDMA_MAX_CC] = {NULL};
1614 s8 (*queue_priority_mapping)[2];
Rajashekhara, Sudhakar90bd4e62010-06-29 11:35:13 +05301615 int i, j, off, ln, found = 0;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001616 int status = -1;
Rajashekhara, Sudhakar90bd4e62010-06-29 11:35:13 +05301617 const s16 (*rsv_chans)[2];
1618 const s16 (*rsv_slots)[2];
Matt Porter2646a0e2013-06-20 16:06:39 -05001619 const s16 (*xbar_chans)[2];
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001620 int irq[EDMA_MAX_CC] = {0, 0};
1621 int err_irq[EDMA_MAX_CC] = {0, 0};
1622 struct resource *r[EDMA_MAX_CC] = {NULL};
Matt Porter6cba4352013-06-20 16:06:38 -05001623 struct resource res[EDMA_MAX_CC];
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001624 char res_name[10];
Matt Porter6cba4352013-06-20 16:06:38 -05001625 struct device_node *node = pdev->dev.of_node;
1626 struct device *dev = &pdev->dev;
1627 int ret;
1628
1629 if (node) {
1630 /* Check if this is a second instance registered */
1631 if (arch_num_cc) {
1632 dev_err(dev, "only one EDMA instance is supported via DT\n");
1633 return -ENODEV;
1634 }
1635
1636 ninfo[0] = edma_setup_info_from_dt(dev, node);
1637 if (IS_ERR(ninfo[0])) {
1638 dev_err(dev, "failed to get DT data\n");
1639 return PTR_ERR(ninfo[0]);
1640 }
1641
1642 info = ninfo;
1643 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001644
1645 if (!info)
1646 return -ENODEV;
1647
Matt Porter6cba4352013-06-20 16:06:38 -05001648 pm_runtime_enable(dev);
1649 ret = pm_runtime_get_sync(dev);
1650 if (ret < 0) {
1651 dev_err(dev, "pm_runtime_get_sync() failed\n");
1652 return ret;
1653 }
1654
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001655 for (j = 0; j < EDMA_MAX_CC; j++) {
Matt Porter6cba4352013-06-20 16:06:38 -05001656 if (!info[j]) {
1657 if (!found)
1658 return -ENODEV;
1659 break;
1660 }
1661 if (node) {
1662 ret = of_address_to_resource(node, j, &res[j]);
1663 if (!ret)
1664 r[j] = &res[j];
1665 } else {
1666 sprintf(res_name, "edma_cc%d", j);
1667 r[j] = platform_get_resource_byname(pdev,
1668 IORESOURCE_MEM,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001669 res_name);
Matt Porter6cba4352013-06-20 16:06:38 -05001670 }
1671 if (!r[j]) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001672 if (found)
1673 break;
1674 else
1675 return -ENODEV;
Sekhar Nori243bc652010-05-04 14:11:36 +05301676 } else {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001677 found = 1;
Sekhar Nori243bc652010-05-04 14:11:36 +05301678 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001679
Lad, Prabhakare7eff702013-06-17 20:27:58 +05301680 edmacc_regs_base[j] = devm_ioremap_resource(&pdev->dev, r[j]);
1681 if (IS_ERR(edmacc_regs_base[j]))
1682 return PTR_ERR(edmacc_regs_base[j]);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001683
Lad, Prabhakare7eff702013-06-17 20:27:58 +05301684 edma_cc[j] = devm_kzalloc(&pdev->dev, sizeof(struct edma),
1685 GFP_KERNEL);
1686 if (!edma_cc[j])
1687 return -ENOMEM;
Kevin Hilmana4768d22009-04-14 07:18:14 -05001688
Peter Ujfalusi6d10c392014-05-16 15:17:15 +03001689 /* Get eDMA3 configuration from IP */
Peter Ujfalusi929a0152014-08-04 15:26:56 +03001690 ret = edma_setup_from_hw(dev, info[j], edma_cc[j], j);
Peter Ujfalusi6d10c392014-05-16 15:17:15 +03001691 if (ret)
1692 return ret;
Kevin Hilmana4768d22009-04-14 07:18:14 -05001693
Sekhar Noribc3ac9f2010-06-29 11:35:12 +05301694 edma_cc[j]->default_queue = info[j]->default_queue;
Sandeep Paulraja0f02022009-07-27 09:57:07 -04001695
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001696 dev_dbg(&pdev->dev, "DMA REG BASE ADDR=%p\n",
1697 edmacc_regs_base[j]);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001698
Sekhar Nori3f68b982010-05-04 14:11:35 +05301699 for (i = 0; i < edma_cc[j]->num_slots; i++)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001700 memcpy_toio(edmacc_regs_base[j] + PARM_OFFSET(i),
1701 &dummy_paramset, PARM_SIZE);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001702
Sudhakar Rajashekharaf900d552010-01-06 17:29:49 +05301703 /* Mark all channels as unused */
Sekhar Nori3f68b982010-05-04 14:11:35 +05301704 memset(edma_cc[j]->edma_unused, 0xff,
1705 sizeof(edma_cc[j]->edma_unused));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001706
Rajashekhara, Sudhakar90bd4e62010-06-29 11:35:13 +05301707 if (info[j]->rsv) {
1708
1709 /* Clear the reserved channels in unused list */
1710 rsv_chans = info[j]->rsv->rsv_chans;
1711 if (rsv_chans) {
1712 for (i = 0; rsv_chans[i][0] != -1; i++) {
1713 off = rsv_chans[i][0];
1714 ln = rsv_chans[i][1];
1715 clear_bits(off, ln,
Matt Porter6cba4352013-06-20 16:06:38 -05001716 edma_cc[j]->edma_unused);
Rajashekhara, Sudhakar90bd4e62010-06-29 11:35:13 +05301717 }
1718 }
1719
1720 /* Set the reserved slots in inuse list */
1721 rsv_slots = info[j]->rsv->rsv_slots;
1722 if (rsv_slots) {
1723 for (i = 0; rsv_slots[i][0] != -1; i++) {
1724 off = rsv_slots[i][0];
1725 ln = rsv_slots[i][1];
1726 set_bits(off, ln,
1727 edma_cc[j]->edma_inuse);
1728 }
1729 }
1730 }
1731
Matt Porter2646a0e2013-06-20 16:06:39 -05001732 /* Clear the xbar mapped channels in unused list */
1733 xbar_chans = info[j]->xbar_chans;
1734 if (xbar_chans) {
1735 for (i = 0; xbar_chans[i][1] != -1; i++) {
1736 off = xbar_chans[i][1];
1737 clear_bits(off, 1,
1738 edma_cc[j]->edma_unused);
1739 }
1740 }
Matt Porter6cba4352013-06-20 16:06:38 -05001741
1742 if (node) {
1743 irq[j] = irq_of_parse_and_map(node, 0);
Peter Ujfalusi44161762014-05-13 10:26:01 +03001744 err_irq[j] = irq_of_parse_and_map(node, 2);
Matt Porter6cba4352013-06-20 16:06:38 -05001745 } else {
Peter Ujfalusi44161762014-05-13 10:26:01 +03001746 char irq_name[10];
1747
Matt Porter6cba4352013-06-20 16:06:38 -05001748 sprintf(irq_name, "edma%d", j);
1749 irq[j] = platform_get_irq_byname(pdev, irq_name);
Peter Ujfalusi44161762014-05-13 10:26:01 +03001750
1751 sprintf(irq_name, "edma%d_err", j);
1752 err_irq[j] = platform_get_irq_byname(pdev, irq_name);
Matt Porter6cba4352013-06-20 16:06:38 -05001753 }
Sekhar Nori3f68b982010-05-04 14:11:35 +05301754 edma_cc[j]->irq_res_start = irq[j];
Peter Ujfalusi44161762014-05-13 10:26:01 +03001755 edma_cc[j]->irq_res_end = err_irq[j];
1756
1757 status = devm_request_irq(dev, irq[j], dma_irq_handler, 0,
1758 "edma", dev);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001759 if (status < 0) {
Lad, Prabhakare7eff702013-06-17 20:27:58 +05301760 dev_dbg(&pdev->dev,
1761 "devm_request_irq %d failed --> %d\n",
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001762 irq[j], status);
Lad, Prabhakare7eff702013-06-17 20:27:58 +05301763 return status;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001764 }
1765
Peter Ujfalusi44161762014-05-13 10:26:01 +03001766 status = devm_request_irq(dev, err_irq[j], dma_ccerr_handler, 0,
1767 "edma_error", dev);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001768 if (status < 0) {
Lad, Prabhakare7eff702013-06-17 20:27:58 +05301769 dev_dbg(&pdev->dev,
1770 "devm_request_irq %d failed --> %d\n",
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001771 err_irq[j], status);
Lad, Prabhakare7eff702013-06-17 20:27:58 +05301772 return status;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001773 }
1774
Sekhar Nori3f68b982010-05-04 14:11:35 +05301775 for (i = 0; i < edma_cc[j]->num_channels; i++)
Heiko Schocher0b7580b2012-01-19 08:05:21 +01001776 map_dmach_queue(j, i, info[j]->default_queue);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001777
Sekhar Noribc3ac9f2010-06-29 11:35:12 +05301778 queue_priority_mapping = info[j]->queue_priority_mapping;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001779
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001780 /* Event queue priority mapping */
1781 for (i = 0; queue_priority_mapping[i][0] != -1; i++)
1782 assign_priority_to_queue(j,
1783 queue_priority_mapping[i][0],
1784 queue_priority_mapping[i][1]);
1785
1786 /* Map the channel to param entry if channel mapping logic
1787 * exist
1788 */
1789 if (edma_read(j, EDMA_CCCFG) & CHMAP_EXIST)
1790 map_dmach_param(j);
1791
Peter Ujfalusi643efcf2014-05-16 15:17:14 +03001792 for (i = 0; i < edma_cc[j]->num_region; i++) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001793 edma_write_array2(j, EDMA_DRAE, i, 0, 0x0);
1794 edma_write_array2(j, EDMA_DRAE, i, 1, 0x0);
1795 edma_write_array(j, EDMA_QRAE, i, 0x0);
1796 }
Daniel Macka2b11752014-08-26 10:52:53 +02001797 edma_cc[j]->info = info[j];
Sudhakar Rajashekhara2d517502010-01-06 17:28:44 +05301798 arch_num_cc++;
Kevin Hilmana4768d22009-04-14 07:18:14 -05001799 }
1800
Kevin Hilmana4768d22009-04-14 07:18:14 -05001801 return 0;
Kevin Hilmana4768d22009-04-14 07:18:14 -05001802}
1803
Arnd Bergmanna850c422014-11-21 11:48:54 +01001804#ifdef CONFIG_PM_SLEEP
Daniel Macka2b11752014-08-26 10:52:53 +02001805static int edma_pm_resume(struct device *dev)
1806{
1807 int i, j;
1808
1809 for (j = 0; j < arch_num_cc; j++) {
1810 struct edma *cc = edma_cc[j];
1811
1812 s8 (*queue_priority_mapping)[2];
1813
1814 queue_priority_mapping = cc->info->queue_priority_mapping;
1815
1816 /* Event queue priority mapping */
1817 for (i = 0; queue_priority_mapping[i][0] != -1; i++)
1818 assign_priority_to_queue(j,
1819 queue_priority_mapping[i][0],
1820 queue_priority_mapping[i][1]);
1821
1822 /*
1823 * Map the channel to param entry if channel mapping logic
1824 * exist
1825 */
1826 if (edma_read(j, EDMA_CCCFG) & CHMAP_EXIST)
1827 map_dmach_param(j);
1828
1829 for (i = 0; i < cc->num_channels; i++) {
1830 if (test_bit(i, cc->edma_inuse)) {
1831 /* ensure access through shadow region 0 */
1832 edma_or_array2(j, EDMA_DRAE, 0, i >> 5,
1833 BIT(i & 0x1f));
1834
1835 setup_dma_interrupt(i,
1836 cc->intr_data[i].callback,
1837 cc->intr_data[i].data);
1838 }
1839 }
1840 }
1841
1842 return 0;
1843}
Arnd Bergmanna850c422014-11-21 11:48:54 +01001844#endif
Daniel Macka2b11752014-08-26 10:52:53 +02001845
1846static const struct dev_pm_ops edma_pm_ops = {
1847 SET_LATE_SYSTEM_SLEEP_PM_OPS(NULL, edma_pm_resume)
1848};
1849
Kevin Hilmana4768d22009-04-14 07:18:14 -05001850static struct platform_driver edma_driver = {
Matt Porter6cba4352013-06-20 16:06:38 -05001851 .driver = {
1852 .name = "edma",
Daniel Macka2b11752014-08-26 10:52:53 +02001853 .pm = &edma_pm_ops,
Matt Porter6cba4352013-06-20 16:06:38 -05001854 .of_match_table = edma_of_ids,
1855 },
1856 .probe = edma_probe,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001857};
1858
1859static int __init edma_init(void)
1860{
1861 return platform_driver_probe(&edma_driver, edma_probe);
1862}
1863arch_initcall(edma_init);
1864