blob: 89a3dccde19fe57805bea5c537f21630df742498 [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 */
20#include <linux/kernel.h>
Kevin Hilmana4768d22009-04-14 07:18:14 -050021#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/interrupt.h>
24#include <linux/platform_device.h>
Kevin Hilmana4768d22009-04-14 07:18:14 -050025#include <linux/io.h>
26
Kevin Hilmana4768d22009-04-14 07:18:14 -050027#include <mach/edma.h>
Kevin Hilmana4768d22009-04-14 07:18:14 -050028
29/* Offsets matching "struct edmacc_param" */
30#define PARM_OPT 0x00
31#define PARM_SRC 0x04
32#define PARM_A_B_CNT 0x08
33#define PARM_DST 0x0c
34#define PARM_SRC_DST_BIDX 0x10
35#define PARM_LINK_BCNTRLD 0x14
36#define PARM_SRC_DST_CIDX 0x18
37#define PARM_CCNT 0x1c
38
39#define PARM_SIZE 0x20
40
41/* Offsets for EDMA CC global channel registers and their shadows */
42#define SH_ER 0x00 /* 64 bits */
43#define SH_ECR 0x08 /* 64 bits */
44#define SH_ESR 0x10 /* 64 bits */
45#define SH_CER 0x18 /* 64 bits */
46#define SH_EER 0x20 /* 64 bits */
47#define SH_EECR 0x28 /* 64 bits */
48#define SH_EESR 0x30 /* 64 bits */
49#define SH_SER 0x38 /* 64 bits */
50#define SH_SECR 0x40 /* 64 bits */
51#define SH_IER 0x50 /* 64 bits */
52#define SH_IECR 0x58 /* 64 bits */
53#define SH_IESR 0x60 /* 64 bits */
54#define SH_IPR 0x68 /* 64 bits */
55#define SH_ICR 0x70 /* 64 bits */
56#define SH_IEVAL 0x78
57#define SH_QER 0x80
58#define SH_QEER 0x84
59#define SH_QEECR 0x88
60#define SH_QEESR 0x8c
61#define SH_QSER 0x90
62#define SH_QSECR 0x94
63#define SH_SIZE 0x200
64
65/* Offsets for EDMA CC global registers */
66#define EDMA_REV 0x0000
67#define EDMA_CCCFG 0x0004
68#define EDMA_QCHMAP 0x0200 /* 8 registers */
69#define EDMA_DMAQNUM 0x0240 /* 8 registers (4 on OMAP-L1xx) */
70#define EDMA_QDMAQNUM 0x0260
71#define EDMA_QUETCMAP 0x0280
72#define EDMA_QUEPRI 0x0284
73#define EDMA_EMR 0x0300 /* 64 bits */
74#define EDMA_EMCR 0x0308 /* 64 bits */
75#define EDMA_QEMR 0x0310
76#define EDMA_QEMCR 0x0314
77#define EDMA_CCERR 0x0318
78#define EDMA_CCERRCLR 0x031c
79#define EDMA_EEVAL 0x0320
80#define EDMA_DRAE 0x0340 /* 4 x 64 bits*/
81#define EDMA_QRAE 0x0380 /* 4 registers */
82#define EDMA_QUEEVTENTRY 0x0400 /* 2 x 16 registers */
83#define EDMA_QSTAT 0x0600 /* 2 registers */
84#define EDMA_QWMTHRA 0x0620
85#define EDMA_QWMTHRB 0x0624
86#define EDMA_CCSTAT 0x0640
87
88#define EDMA_M 0x1000 /* global channel registers */
89#define EDMA_ECR 0x1008
90#define EDMA_ECRH 0x100C
91#define EDMA_SHADOW0 0x2000 /* 4 regions shadowing global channels */
92#define EDMA_PARM 0x4000 /* 128 param entries */
93
Kevin Hilmana4768d22009-04-14 07:18:14 -050094#define PARM_OFFSET(param_no) (EDMA_PARM + ((param_no) << 5))
95
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -040096#define EDMA_DCHMAP 0x0100 /* 64 registers */
97#define CHMAP_EXIST BIT(24)
98
Kevin Hilmana4768d22009-04-14 07:18:14 -050099#define EDMA_MAX_DMACH 64
100#define EDMA_MAX_PARAMENTRY 512
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400101#define EDMA_MAX_CC 2
Kevin Hilmana4768d22009-04-14 07:18:14 -0500102
103
104/*****************************************************************************/
105
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400106static void __iomem *edmacc_regs_base[EDMA_MAX_CC];
Kevin Hilmana4768d22009-04-14 07:18:14 -0500107
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400108static inline unsigned int edma_read(unsigned ctlr, int offset)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500109{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400110 return (unsigned int)__raw_readl(edmacc_regs_base[ctlr] + offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500111}
112
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400113static inline void edma_write(unsigned ctlr, int offset, int val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500114{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400115 __raw_writel(val, edmacc_regs_base[ctlr] + offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500116}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400117static inline void edma_modify(unsigned ctlr, int offset, unsigned and,
118 unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500119{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400120 unsigned val = edma_read(ctlr, offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500121 val &= and;
122 val |= or;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400123 edma_write(ctlr, offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500124}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400125static inline void edma_and(unsigned ctlr, int offset, unsigned and)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500126{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400127 unsigned val = edma_read(ctlr, offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500128 val &= and;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400129 edma_write(ctlr, offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500130}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400131static inline void edma_or(unsigned ctlr, int offset, unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500132{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400133 unsigned val = edma_read(ctlr, offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500134 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 unsigned int edma_read_array(unsigned ctlr, int offset, int i)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500138{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400139 return edma_read(ctlr, offset + (i << 2));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500140}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400141static inline void edma_write_array(unsigned ctlr, int offset, int i,
142 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500143{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400144 edma_write(ctlr, offset + (i << 2), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500145}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400146static inline void edma_modify_array(unsigned ctlr, int offset, int i,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500147 unsigned and, unsigned or)
148{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400149 edma_modify(ctlr, offset + (i << 2), and, or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500150}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400151static inline void edma_or_array(unsigned ctlr, int offset, int i, unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500152{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400153 edma_or(ctlr, offset + (i << 2), or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500154}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400155static inline void edma_or_array2(unsigned ctlr, int offset, int i, int j,
156 unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500157{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400158 edma_or(ctlr, offset + ((i*2 + j) << 2), or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500159}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400160static inline void edma_write_array2(unsigned ctlr, int offset, int i, int j,
161 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500162{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400163 edma_write(ctlr, offset + ((i*2 + j) << 2), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500164}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400165static inline unsigned int edma_shadow0_read(unsigned ctlr, int offset)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500166{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400167 return edma_read(ctlr, EDMA_SHADOW0 + offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500168}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400169static inline unsigned int edma_shadow0_read_array(unsigned ctlr, int offset,
170 int i)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500171{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400172 return edma_read(ctlr, EDMA_SHADOW0 + offset + (i << 2));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500173}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400174static inline void edma_shadow0_write(unsigned ctlr, int offset, unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500175{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400176 edma_write(ctlr, EDMA_SHADOW0 + offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500177}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400178static inline void edma_shadow0_write_array(unsigned ctlr, int offset, int i,
179 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500180{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400181 edma_write(ctlr, EDMA_SHADOW0 + offset + (i << 2), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500182}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400183static inline unsigned int edma_parm_read(unsigned ctlr, int offset,
184 int param_no)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500185{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400186 return edma_read(ctlr, EDMA_PARM + offset + (param_no << 5));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500187}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400188static inline void edma_parm_write(unsigned ctlr, int offset, int param_no,
189 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500190{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400191 edma_write(ctlr, EDMA_PARM + offset + (param_no << 5), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500192}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400193static inline void edma_parm_modify(unsigned ctlr, int offset, int param_no,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500194 unsigned and, unsigned or)
195{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400196 edma_modify(ctlr, EDMA_PARM + offset + (param_no << 5), and, or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500197}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400198static inline void edma_parm_and(unsigned ctlr, int offset, int param_no,
199 unsigned and)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500200{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400201 edma_and(ctlr, EDMA_PARM + offset + (param_no << 5), and);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500202}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400203static inline void edma_parm_or(unsigned ctlr, int offset, int param_no,
204 unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500205{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400206 edma_or(ctlr, EDMA_PARM + offset + (param_no << 5), or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500207}
208
209/*****************************************************************************/
210
211/* actual number of DMA channels and slots on this silicon */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400212struct edma {
213 /* how many dma resources of each type */
214 unsigned num_channels;
215 unsigned num_region;
216 unsigned num_slots;
217 unsigned num_tc;
218 unsigned num_cc;
Sandeep Paulraja0f02022009-07-27 09:57:07 -0400219 enum dma_event_q default_queue;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500220
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400221 /* list of channels with no even trigger; terminated by "-1" */
222 const s8 *noevent;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500223
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400224 /* The edma_inuse bit for each PaRAM slot is clear unless the
225 * channel is in use ... by ARM or DSP, for QDMA, or whatever.
226 */
227 DECLARE_BITMAP(edma_inuse, EDMA_MAX_PARAMENTRY);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500228
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400229 /* The edma_noevent bit for each channel is clear unless
230 * it doesn't trigger DMA events on this platform. It uses a
231 * bit of SOC-specific initialization code.
232 */
233 DECLARE_BITMAP(edma_noevent, EDMA_MAX_DMACH);
234
235 unsigned irq_res_start;
236 unsigned irq_res_end;
237
238 struct dma_interrupt_data {
239 void (*callback)(unsigned channel, unsigned short ch_status,
240 void *data);
241 void *data;
242 } intr_data[EDMA_MAX_DMACH];
243};
244
245static struct edma *edma_info[EDMA_MAX_CC];
Sudhakar Rajashekhara2d517502010-01-06 17:28:44 +0530246static int arch_num_cc;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500247
248/* dummy param set used to (re)initialize parameter RAM slots */
249static const struct edmacc_param dummy_paramset = {
250 .link_bcntrld = 0xffff,
251 .ccnt = 1,
252};
253
Kevin Hilmana4768d22009-04-14 07:18:14 -0500254/*****************************************************************************/
255
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400256static void map_dmach_queue(unsigned ctlr, unsigned ch_no,
257 enum dma_event_q queue_no)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500258{
259 int bit = (ch_no & 0x7) * 4;
260
261 /* default to low priority queue */
262 if (queue_no == EVENTQ_DEFAULT)
Sandeep Paulraja0f02022009-07-27 09:57:07 -0400263 queue_no = edma_info[ctlr]->default_queue;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500264
265 queue_no &= 7;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400266 edma_modify_array(ctlr, EDMA_DMAQNUM, (ch_no >> 3),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500267 ~(0x7 << bit), queue_no << bit);
268}
269
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400270static void __init map_queue_tc(unsigned ctlr, int queue_no, int tc_no)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500271{
272 int bit = queue_no * 4;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400273 edma_modify(ctlr, EDMA_QUETCMAP, ~(0x7 << bit), ((tc_no & 0x7) << bit));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500274}
275
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400276static void __init assign_priority_to_queue(unsigned ctlr, int queue_no,
277 int priority)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500278{
279 int bit = queue_no * 4;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400280 edma_modify(ctlr, EDMA_QUEPRI, ~(0x7 << bit),
281 ((priority & 0x7) << bit));
282}
283
284/**
285 * map_dmach_param - Maps channel number to param entry number
286 *
287 * This maps the dma channel number to param entry numberter. In
288 * other words using the DMA channel mapping registers a param entry
289 * can be mapped to any channel
290 *
291 * Callers are responsible for ensuring the channel mapping logic is
292 * included in that particular EDMA variant (Eg : dm646x)
293 *
294 */
295static void __init map_dmach_param(unsigned ctlr)
296{
297 int i;
298 for (i = 0; i < EDMA_MAX_DMACH; i++)
299 edma_write_array(ctlr, EDMA_DCHMAP , i , (i << 5));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500300}
301
302static inline void
303setup_dma_interrupt(unsigned lch,
304 void (*callback)(unsigned channel, u16 ch_status, void *data),
305 void *data)
306{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400307 unsigned ctlr;
308
309 ctlr = EDMA_CTLR(lch);
310 lch = EDMA_CHAN_SLOT(lch);
311
Kevin Hilmana4768d22009-04-14 07:18:14 -0500312 if (!callback) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400313 edma_shadow0_write_array(ctlr, SH_IECR, lch >> 5,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500314 (1 << (lch & 0x1f)));
315 }
316
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400317 edma_info[ctlr]->intr_data[lch].callback = callback;
318 edma_info[ctlr]->intr_data[lch].data = data;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500319
320 if (callback) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400321 edma_shadow0_write_array(ctlr, SH_ICR, lch >> 5,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500322 (1 << (lch & 0x1f)));
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400323 edma_shadow0_write_array(ctlr, SH_IESR, lch >> 5,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500324 (1 << (lch & 0x1f)));
325 }
326}
327
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400328static int irq2ctlr(int irq)
329{
330 if (irq >= edma_info[0]->irq_res_start &&
331 irq <= edma_info[0]->irq_res_end)
332 return 0;
333 else if (irq >= edma_info[1]->irq_res_start &&
334 irq <= edma_info[1]->irq_res_end)
335 return 1;
336
337 return -1;
338}
339
Kevin Hilmana4768d22009-04-14 07:18:14 -0500340/******************************************************************************
341 *
342 * DMA interrupt handler
343 *
344 *****************************************************************************/
345static irqreturn_t dma_irq_handler(int irq, void *data)
346{
347 int i;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400348 unsigned ctlr;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500349 unsigned int cnt = 0;
350
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400351 ctlr = irq2ctlr(irq);
352
Kevin Hilmana4768d22009-04-14 07:18:14 -0500353 dev_dbg(data, "dma_irq_handler\n");
354
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400355 if ((edma_shadow0_read_array(ctlr, SH_IPR, 0) == 0)
356 && (edma_shadow0_read_array(ctlr, SH_IPR, 1) == 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500357 return IRQ_NONE;
358
359 while (1) {
360 int j;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400361 if (edma_shadow0_read_array(ctlr, SH_IPR, 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500362 j = 0;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400363 else if (edma_shadow0_read_array(ctlr, SH_IPR, 1))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500364 j = 1;
365 else
366 break;
367 dev_dbg(data, "IPR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400368 edma_shadow0_read_array(ctlr, SH_IPR, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500369 for (i = 0; i < 32; i++) {
370 int k = (j << 5) + i;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400371 if (edma_shadow0_read_array(ctlr, SH_IPR, j) &
372 (1 << i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500373 /* Clear the corresponding IPR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400374 edma_shadow0_write_array(ctlr, SH_ICR, j,
375 (1 << i));
376 if (edma_info[ctlr]->intr_data[k].callback) {
377 edma_info[ctlr]->intr_data[k].callback(
378 k, DMA_COMPLETE,
379 edma_info[ctlr]->intr_data[k].
380 data);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500381 }
382 }
383 }
384 cnt++;
385 if (cnt > 10)
386 break;
387 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400388 edma_shadow0_write(ctlr, SH_IEVAL, 1);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500389 return IRQ_HANDLED;
390}
391
392/******************************************************************************
393 *
394 * DMA error interrupt handler
395 *
396 *****************************************************************************/
397static irqreturn_t dma_ccerr_handler(int irq, void *data)
398{
399 int i;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400400 unsigned ctlr;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500401 unsigned int cnt = 0;
402
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400403 ctlr = irq2ctlr(irq);
404
Kevin Hilmana4768d22009-04-14 07:18:14 -0500405 dev_dbg(data, "dma_ccerr_handler\n");
406
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400407 if ((edma_read_array(ctlr, EDMA_EMR, 0) == 0) &&
408 (edma_read_array(ctlr, EDMA_EMR, 1) == 0) &&
409 (edma_read(ctlr, EDMA_QEMR) == 0) &&
410 (edma_read(ctlr, EDMA_CCERR) == 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500411 return IRQ_NONE;
412
413 while (1) {
414 int j = -1;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400415 if (edma_read_array(ctlr, EDMA_EMR, 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500416 j = 0;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400417 else if (edma_read_array(ctlr, EDMA_EMR, 1))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500418 j = 1;
419 if (j >= 0) {
420 dev_dbg(data, "EMR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400421 edma_read_array(ctlr, EDMA_EMR, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500422 for (i = 0; i < 32; i++) {
423 int k = (j << 5) + i;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400424 if (edma_read_array(ctlr, EDMA_EMR, j) &
425 (1 << i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500426 /* Clear the corresponding EMR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400427 edma_write_array(ctlr, EDMA_EMCR, j,
428 1 << i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500429 /* Clear any SER */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400430 edma_shadow0_write_array(ctlr, SH_SECR,
431 j, (1 << i));
432 if (edma_info[ctlr]->intr_data[k].
433 callback) {
434 edma_info[ctlr]->intr_data[k].
435 callback(k,
436 DMA_CC_ERROR,
437 edma_info[ctlr]->intr_data
438 [k].data);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500439 }
440 }
441 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400442 } else if (edma_read(ctlr, EDMA_QEMR)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500443 dev_dbg(data, "QEMR %02x\n",
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400444 edma_read(ctlr, EDMA_QEMR));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500445 for (i = 0; i < 8; i++) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400446 if (edma_read(ctlr, EDMA_QEMR) & (1 << i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500447 /* Clear the corresponding IPR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400448 edma_write(ctlr, EDMA_QEMCR, 1 << i);
449 edma_shadow0_write(ctlr, SH_QSECR,
450 (1 << i));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500451
452 /* NOTE: not reported!! */
453 }
454 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400455 } else if (edma_read(ctlr, EDMA_CCERR)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500456 dev_dbg(data, "CCERR %08x\n",
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400457 edma_read(ctlr, EDMA_CCERR));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500458 /* FIXME: CCERR.BIT(16) ignored! much better
459 * to just write CCERRCLR with CCERR value...
460 */
461 for (i = 0; i < 8; i++) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400462 if (edma_read(ctlr, EDMA_CCERR) & (1 << i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500463 /* Clear the corresponding IPR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400464 edma_write(ctlr, EDMA_CCERRCLR, 1 << i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500465
466 /* NOTE: not reported!! */
467 }
468 }
469 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400470 if ((edma_read_array(ctlr, EDMA_EMR, 0) == 0)
471 && (edma_read_array(ctlr, EDMA_EMR, 1) == 0)
472 && (edma_read(ctlr, EDMA_QEMR) == 0)
473 && (edma_read(ctlr, EDMA_CCERR) == 0)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500474 break;
475 }
476 cnt++;
477 if (cnt > 10)
478 break;
479 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400480 edma_write(ctlr, EDMA_EEVAL, 1);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500481 return IRQ_HANDLED;
482}
483
484/******************************************************************************
485 *
486 * Transfer controller error interrupt handlers
487 *
488 *****************************************************************************/
489
490#define tc_errs_handled false /* disabled as long as they're NOPs */
491
492static irqreturn_t dma_tc0err_handler(int irq, void *data)
493{
494 dev_dbg(data, "dma_tc0err_handler\n");
495 return IRQ_HANDLED;
496}
497
498static irqreturn_t dma_tc1err_handler(int irq, void *data)
499{
500 dev_dbg(data, "dma_tc1err_handler\n");
501 return IRQ_HANDLED;
502}
503
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400504static int reserve_contiguous_slots(int ctlr, unsigned int id,
505 unsigned int num_slots,
506 unsigned int start_slot)
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400507{
508 int i, j;
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400509 unsigned int count = num_slots;
510 int stop_slot = start_slot;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400511 DECLARE_BITMAP(tmp_inuse, EDMA_MAX_PARAMENTRY);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400512
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400513 for (i = start_slot; i < edma_info[ctlr]->num_slots; ++i) {
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400514 j = EDMA_CHAN_SLOT(i);
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400515 if (!test_and_set_bit(j, edma_info[ctlr]->edma_inuse)) {
516 /* Record our current beginning slot */
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400517 if (count == num_slots)
518 stop_slot = i;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400519
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400520 count--;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400521 set_bit(j, tmp_inuse);
522
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400523 if (count == 0)
524 break;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400525 } else {
526 clear_bit(j, tmp_inuse);
527
528 if (id == EDMA_CONT_PARAMS_FIXED_EXACT) {
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400529 stop_slot = i;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400530 break;
531 } else
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400532 count = num_slots;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400533 }
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400534 }
535
536 /*
537 * We have to clear any bits that we set
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400538 * if we run out parameter RAM slots, i.e we do find a set
539 * of contiguous parameter RAM slots but do not find the exact number
540 * requested as we may reach the total number of parameter RAM slots
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400541 */
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400542 if (i == edma_info[ctlr]->num_slots)
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400543 stop_slot = i;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400544
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400545 for (j = start_slot; j < stop_slot; j++)
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400546 if (test_bit(j, tmp_inuse))
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400547 clear_bit(j, edma_info[ctlr]->edma_inuse);
548
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400549 if (count)
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400550 return -EBUSY;
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400551
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400552 for (j = i - num_slots + 1; j <= i; ++j)
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400553 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(j),
554 &dummy_paramset, PARM_SIZE);
555
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400556 return EDMA_CTLR_CHAN(ctlr, i - num_slots + 1);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400557}
558
Kevin Hilmana4768d22009-04-14 07:18:14 -0500559/*-----------------------------------------------------------------------*/
560
561/* Resource alloc/free: dma channels, parameter RAM slots */
562
563/**
564 * edma_alloc_channel - allocate DMA channel and paired parameter RAM
565 * @channel: specific channel to allocate; negative for "any unmapped channel"
566 * @callback: optional; to be issued on DMA completion or errors
567 * @data: passed to callback
568 * @eventq_no: an EVENTQ_* constant, used to choose which Transfer
569 * Controller (TC) executes requests using this channel. Use
570 * EVENTQ_DEFAULT unless you really need a high priority queue.
571 *
572 * This allocates a DMA channel and its associated parameter RAM slot.
573 * The parameter RAM is initialized to hold a dummy transfer.
574 *
575 * Normal use is to pass a specific channel number as @channel, to make
576 * use of hardware events mapped to that channel. When the channel will
577 * be used only for software triggering or event chaining, channels not
578 * mapped to hardware events (or mapped to unused events) are preferable.
579 *
580 * DMA transfers start from a channel using edma_start(), or by
581 * chaining. When the transfer described in that channel's parameter RAM
582 * slot completes, that slot's data may be reloaded through a link.
583 *
584 * DMA errors are only reported to the @callback associated with the
585 * channel driving that transfer, but transfer completion callbacks can
586 * be sent to another channel under control of the TCC field in
587 * the option word of the transfer's parameter RAM set. Drivers must not
588 * use DMA transfer completion callbacks for channels they did not allocate.
589 * (The same applies to TCC codes used in transfer chaining.)
590 *
591 * Returns the number of the channel, else negative errno.
592 */
593int edma_alloc_channel(int channel,
594 void (*callback)(unsigned channel, u16 ch_status, void *data),
595 void *data,
596 enum dma_event_q eventq_no)
597{
Sudhakar Rajashekhara447f18f2010-01-06 17:29:11 +0530598 unsigned i, done = 0, ctlr = 0;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400599
600 if (channel >= 0) {
601 ctlr = EDMA_CTLR(channel);
602 channel = EDMA_CHAN_SLOT(channel);
603 }
604
Kevin Hilmana4768d22009-04-14 07:18:14 -0500605 if (channel < 0) {
Sudhakar Rajashekhara2d517502010-01-06 17:28:44 +0530606 for (i = 0; i < arch_num_cc; i++) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400607 channel = 0;
608 for (;;) {
609 channel = find_next_bit(edma_info[i]->
610 edma_noevent,
611 edma_info[i]->num_channels,
612 channel);
613 if (channel == edma_info[i]->num_channels)
Sudhakar Rajashekhara447f18f2010-01-06 17:29:11 +0530614 break;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400615 if (!test_and_set_bit(channel,
616 edma_info[i]->edma_inuse)) {
617 done = 1;
618 ctlr = i;
619 break;
620 }
621 channel++;
622 }
623 if (done)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500624 break;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500625 }
Sudhakar Rajashekhara447f18f2010-01-06 17:29:11 +0530626 if (!done)
627 return -ENOMEM;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400628 } else if (channel >= edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500629 return -EINVAL;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400630 } else if (test_and_set_bit(channel, edma_info[ctlr]->edma_inuse)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500631 return -EBUSY;
632 }
633
634 /* ensure access through shadow region 0 */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400635 edma_or_array2(ctlr, EDMA_DRAE, 0, channel >> 5, 1 << (channel & 0x1f));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500636
637 /* ensure no events are pending */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400638 edma_stop(EDMA_CTLR_CHAN(ctlr, channel));
639 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(channel),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500640 &dummy_paramset, PARM_SIZE);
641
642 if (callback)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400643 setup_dma_interrupt(EDMA_CTLR_CHAN(ctlr, channel),
644 callback, data);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500645
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400646 map_dmach_queue(ctlr, channel, eventq_no);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500647
Sudhakar Rajashekhara0e6cb8d2010-01-06 17:28:36 +0530648 return EDMA_CTLR_CHAN(ctlr, channel);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500649}
650EXPORT_SYMBOL(edma_alloc_channel);
651
652
653/**
654 * edma_free_channel - deallocate DMA channel
655 * @channel: dma channel returned from edma_alloc_channel()
656 *
657 * This deallocates the DMA channel and associated parameter RAM slot
658 * allocated by edma_alloc_channel().
659 *
660 * Callers are responsible for ensuring the channel is inactive, and
661 * will not be reactivated by linking, chaining, or software calls to
662 * edma_start().
663 */
664void edma_free_channel(unsigned channel)
665{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400666 unsigned ctlr;
667
668 ctlr = EDMA_CTLR(channel);
669 channel = EDMA_CHAN_SLOT(channel);
670
671 if (channel >= edma_info[ctlr]->num_channels)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500672 return;
673
674 setup_dma_interrupt(channel, NULL, NULL);
675 /* REVISIT should probably take out of shadow region 0 */
676
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400677 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(channel),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500678 &dummy_paramset, PARM_SIZE);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400679 clear_bit(channel, edma_info[ctlr]->edma_inuse);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500680}
681EXPORT_SYMBOL(edma_free_channel);
682
683/**
684 * edma_alloc_slot - allocate DMA parameter RAM
685 * @slot: specific slot to allocate; negative for "any unused slot"
686 *
687 * This allocates a parameter RAM slot, initializing it to hold a
688 * dummy transfer. Slots allocated using this routine have not been
689 * mapped to a hardware DMA channel, and will normally be used by
690 * linking to them from a slot associated with a DMA channel.
691 *
692 * Normal use is to pass EDMA_SLOT_ANY as the @slot, but specific
693 * slots may be allocated on behalf of DSP firmware.
694 *
695 * Returns the number of the slot, else negative errno.
696 */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400697int edma_alloc_slot(unsigned ctlr, int slot)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500698{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400699 if (slot >= 0)
700 slot = EDMA_CHAN_SLOT(slot);
701
Kevin Hilmana4768d22009-04-14 07:18:14 -0500702 if (slot < 0) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400703 slot = edma_info[ctlr]->num_channels;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500704 for (;;) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400705 slot = find_next_zero_bit(edma_info[ctlr]->edma_inuse,
706 edma_info[ctlr]->num_slots, slot);
707 if (slot == edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500708 return -ENOMEM;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400709 if (!test_and_set_bit(slot,
710 edma_info[ctlr]->edma_inuse))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500711 break;
712 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400713 } else if (slot < edma_info[ctlr]->num_channels ||
714 slot >= edma_info[ctlr]->num_slots) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500715 return -EINVAL;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400716 } else if (test_and_set_bit(slot, edma_info[ctlr]->edma_inuse)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500717 return -EBUSY;
718 }
719
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400720 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500721 &dummy_paramset, PARM_SIZE);
722
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400723 return EDMA_CTLR_CHAN(ctlr, slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500724}
725EXPORT_SYMBOL(edma_alloc_slot);
726
727/**
728 * edma_free_slot - deallocate DMA parameter RAM
729 * @slot: parameter RAM slot returned from edma_alloc_slot()
730 *
731 * This deallocates the parameter RAM slot allocated by edma_alloc_slot().
732 * Callers are responsible for ensuring the slot is inactive, and will
733 * not be activated.
734 */
735void edma_free_slot(unsigned slot)
736{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400737 unsigned ctlr;
738
739 ctlr = EDMA_CTLR(slot);
740 slot = EDMA_CHAN_SLOT(slot);
741
742 if (slot < edma_info[ctlr]->num_channels ||
743 slot >= edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500744 return;
745
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400746 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500747 &dummy_paramset, PARM_SIZE);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400748 clear_bit(slot, edma_info[ctlr]->edma_inuse);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500749}
750EXPORT_SYMBOL(edma_free_slot);
751
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400752
753/**
754 * edma_alloc_cont_slots- alloc contiguous parameter RAM slots
755 * The API will return the starting point of a set of
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400756 * contiguous parameter RAM slots that have been requested
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400757 *
758 * @id: can only be EDMA_CONT_PARAMS_ANY or EDMA_CONT_PARAMS_FIXED_EXACT
759 * or EDMA_CONT_PARAMS_FIXED_NOT_EXACT
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400760 * @count: number of contiguous Paramter RAM slots
761 * @slot - the start value of Parameter RAM slot that should be passed if id
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400762 * is EDMA_CONT_PARAMS_FIXED_EXACT or EDMA_CONT_PARAMS_FIXED_NOT_EXACT
763 *
764 * If id is EDMA_CONT_PARAMS_ANY then the API starts looking for a set of
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400765 * contiguous Parameter RAM slots from parameter RAM 64 in the case of
766 * DaVinci SOCs and 32 in the case of DA8xx SOCs.
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400767 *
768 * If id is EDMA_CONT_PARAMS_FIXED_EXACT then the API starts looking for a
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400769 * set of contiguous parameter RAM slots from the "slot" that is passed as an
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400770 * argument to the API.
771 *
772 * If id is EDMA_CONT_PARAMS_FIXED_NOT_EXACT then the API initially tries
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400773 * starts looking for a set of contiguous parameter RAMs from the "slot"
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400774 * that is passed as an argument to the API. On failure the API will try to
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400775 * find a set of contiguous Parameter RAM slots from the remaining Parameter
776 * RAM slots
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400777 */
778int edma_alloc_cont_slots(unsigned ctlr, unsigned int id, int slot, int count)
779{
780 /*
781 * The start slot requested should be greater than
782 * the number of channels and lesser than the total number
783 * of slots
784 */
Sandeep Paulraj6b0cf4e2009-09-16 18:17:43 -0400785 if ((id != EDMA_CONT_PARAMS_ANY) &&
786 (slot < edma_info[ctlr]->num_channels ||
787 slot >= edma_info[ctlr]->num_slots))
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400788 return -EINVAL;
789
790 /*
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400791 * The number of parameter RAM slots requested cannot be less than 1
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400792 * and cannot be more than the number of slots minus the number of
793 * channels
794 */
795 if (count < 1 || count >
796 (edma_info[ctlr]->num_slots - edma_info[ctlr]->num_channels))
797 return -EINVAL;
798
799 switch (id) {
800 case EDMA_CONT_PARAMS_ANY:
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400801 return reserve_contiguous_slots(ctlr, id, count,
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400802 edma_info[ctlr]->num_channels);
803 case EDMA_CONT_PARAMS_FIXED_EXACT:
804 case EDMA_CONT_PARAMS_FIXED_NOT_EXACT:
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400805 return reserve_contiguous_slots(ctlr, id, count, slot);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400806 default:
807 return -EINVAL;
808 }
809
810}
811EXPORT_SYMBOL(edma_alloc_cont_slots);
812
813/**
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400814 * edma_free_cont_slots - deallocate DMA parameter RAM slots
815 * @slot: first parameter RAM of a set of parameter RAM slots to be freed
816 * @count: the number of contiguous parameter RAM slots to be freed
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400817 *
818 * This deallocates the parameter RAM slots allocated by
819 * edma_alloc_cont_slots.
820 * Callers/applications need to keep track of sets of contiguous
Sandeep Paulraj134ce222009-09-20 14:06:33 -0400821 * parameter RAM slots that have been allocated using the edma_alloc_cont_slots
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400822 * API.
823 * Callers are responsible for ensuring the slots are inactive, and will
824 * not be activated.
825 */
826int edma_free_cont_slots(unsigned slot, int count)
827{
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400828 unsigned ctlr, slot_to_free;
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400829 int i;
830
831 ctlr = EDMA_CTLR(slot);
832 slot = EDMA_CHAN_SLOT(slot);
833
834 if (slot < edma_info[ctlr]->num_channels ||
835 slot >= edma_info[ctlr]->num_slots ||
836 count < 1)
837 return -EINVAL;
838
839 for (i = slot; i < slot + count; ++i) {
840 ctlr = EDMA_CTLR(i);
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400841 slot_to_free = EDMA_CHAN_SLOT(i);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400842
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400843 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot_to_free),
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400844 &dummy_paramset, PARM_SIZE);
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400845 clear_bit(slot_to_free, edma_info[ctlr]->edma_inuse);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400846 }
847
848 return 0;
849}
850EXPORT_SYMBOL(edma_free_cont_slots);
851
Kevin Hilmana4768d22009-04-14 07:18:14 -0500852/*-----------------------------------------------------------------------*/
853
854/* Parameter RAM operations (i) -- read/write partial slots */
855
856/**
857 * edma_set_src - set initial DMA source address in parameter RAM slot
858 * @slot: parameter RAM slot being configured
859 * @src_port: physical address of source (memory, controller FIFO, etc)
860 * @addressMode: INCR, except in very rare cases
861 * @fifoWidth: ignored unless @addressMode is FIFO, else specifies the
862 * width to use when addressing the fifo (e.g. W8BIT, W32BIT)
863 *
864 * Note that the source address is modified during the DMA transfer
865 * according to edma_set_src_index().
866 */
867void edma_set_src(unsigned slot, dma_addr_t src_port,
868 enum address_mode mode, enum fifo_width width)
869{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400870 unsigned ctlr;
871
872 ctlr = EDMA_CTLR(slot);
873 slot = EDMA_CHAN_SLOT(slot);
874
875 if (slot < edma_info[ctlr]->num_slots) {
876 unsigned int i = edma_parm_read(ctlr, PARM_OPT, slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500877
878 if (mode) {
879 /* set SAM and program FWID */
880 i = (i & ~(EDMA_FWID)) | (SAM | ((width & 0x7) << 8));
881 } else {
882 /* clear SAM */
883 i &= ~SAM;
884 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400885 edma_parm_write(ctlr, PARM_OPT, slot, i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500886
887 /* set the source port address
888 in source register of param structure */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400889 edma_parm_write(ctlr, PARM_SRC, slot, src_port);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500890 }
891}
892EXPORT_SYMBOL(edma_set_src);
893
894/**
895 * edma_set_dest - set initial DMA destination address in parameter RAM slot
896 * @slot: parameter RAM slot being configured
897 * @dest_port: physical address of destination (memory, controller FIFO, etc)
898 * @addressMode: INCR, except in very rare cases
899 * @fifoWidth: ignored unless @addressMode is FIFO, else specifies the
900 * width to use when addressing the fifo (e.g. W8BIT, W32BIT)
901 *
902 * Note that the destination address is modified during the DMA transfer
903 * according to edma_set_dest_index().
904 */
905void edma_set_dest(unsigned slot, dma_addr_t dest_port,
906 enum address_mode mode, enum fifo_width width)
907{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400908 unsigned ctlr;
909
910 ctlr = EDMA_CTLR(slot);
911 slot = EDMA_CHAN_SLOT(slot);
912
913 if (slot < edma_info[ctlr]->num_slots) {
914 unsigned int i = edma_parm_read(ctlr, PARM_OPT, slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500915
916 if (mode) {
917 /* set DAM and program FWID */
918 i = (i & ~(EDMA_FWID)) | (DAM | ((width & 0x7) << 8));
919 } else {
920 /* clear DAM */
921 i &= ~DAM;
922 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400923 edma_parm_write(ctlr, PARM_OPT, slot, i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500924 /* set the destination port address
925 in dest register of param structure */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400926 edma_parm_write(ctlr, PARM_DST, slot, dest_port);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500927 }
928}
929EXPORT_SYMBOL(edma_set_dest);
930
931/**
932 * edma_get_position - returns the current transfer points
933 * @slot: parameter RAM slot being examined
934 * @src: pointer to source port position
935 * @dst: pointer to destination port position
936 *
937 * Returns current source and destination addresses for a particular
938 * parameter RAM slot. Its channel should not be active when this is called.
939 */
940void edma_get_position(unsigned slot, dma_addr_t *src, dma_addr_t *dst)
941{
942 struct edmacc_param temp;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400943 unsigned ctlr;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500944
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400945 ctlr = EDMA_CTLR(slot);
946 slot = EDMA_CHAN_SLOT(slot);
947
948 edma_read_slot(EDMA_CTLR_CHAN(ctlr, slot), &temp);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500949 if (src != NULL)
950 *src = temp.src;
951 if (dst != NULL)
952 *dst = temp.dst;
953}
954EXPORT_SYMBOL(edma_get_position);
955
956/**
957 * edma_set_src_index - configure DMA source address indexing
958 * @slot: parameter RAM slot being configured
959 * @src_bidx: byte offset between source arrays in a frame
960 * @src_cidx: byte offset between source frames in a block
961 *
962 * Offsets are specified to support either contiguous or discontiguous
963 * memory transfers, or repeated access to a hardware register, as needed.
964 * When accessing hardware registers, both offsets are normally zero.
965 */
966void edma_set_src_index(unsigned slot, s16 src_bidx, s16 src_cidx)
967{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400968 unsigned ctlr;
969
970 ctlr = EDMA_CTLR(slot);
971 slot = EDMA_CHAN_SLOT(slot);
972
973 if (slot < edma_info[ctlr]->num_slots) {
974 edma_parm_modify(ctlr, PARM_SRC_DST_BIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500975 0xffff0000, src_bidx);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400976 edma_parm_modify(ctlr, PARM_SRC_DST_CIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500977 0xffff0000, src_cidx);
978 }
979}
980EXPORT_SYMBOL(edma_set_src_index);
981
982/**
983 * edma_set_dest_index - configure DMA destination address indexing
984 * @slot: parameter RAM slot being configured
985 * @dest_bidx: byte offset between destination arrays in a frame
986 * @dest_cidx: byte offset between destination frames in a block
987 *
988 * Offsets are specified to support either contiguous or discontiguous
989 * memory transfers, or repeated access to a hardware register, as needed.
990 * When accessing hardware registers, both offsets are normally zero.
991 */
992void edma_set_dest_index(unsigned slot, s16 dest_bidx, s16 dest_cidx)
993{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400994 unsigned ctlr;
995
996 ctlr = EDMA_CTLR(slot);
997 slot = EDMA_CHAN_SLOT(slot);
998
999 if (slot < edma_info[ctlr]->num_slots) {
1000 edma_parm_modify(ctlr, PARM_SRC_DST_BIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001001 0x0000ffff, dest_bidx << 16);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001002 edma_parm_modify(ctlr, PARM_SRC_DST_CIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001003 0x0000ffff, dest_cidx << 16);
1004 }
1005}
1006EXPORT_SYMBOL(edma_set_dest_index);
1007
1008/**
1009 * edma_set_transfer_params - configure DMA transfer parameters
1010 * @slot: parameter RAM slot being configured
1011 * @acnt: how many bytes per array (at least one)
1012 * @bcnt: how many arrays per frame (at least one)
1013 * @ccnt: how many frames per block (at least one)
1014 * @bcnt_rld: used only for A-Synchronized transfers; this specifies
1015 * the value to reload into bcnt when it decrements to zero
1016 * @sync_mode: ASYNC or ABSYNC
1017 *
1018 * See the EDMA3 documentation to understand how to configure and link
1019 * transfers using the fields in PaRAM slots. If you are not doing it
1020 * all at once with edma_write_slot(), you will use this routine
1021 * plus two calls each for source and destination, setting the initial
1022 * address and saying how to index that address.
1023 *
1024 * An example of an A-Synchronized transfer is a serial link using a
1025 * single word shift register. In that case, @acnt would be equal to
1026 * that word size; the serial controller issues a DMA synchronization
1027 * event to transfer each word, and memory access by the DMA transfer
1028 * controller will be word-at-a-time.
1029 *
1030 * An example of an AB-Synchronized transfer is a device using a FIFO.
1031 * In that case, @acnt equals the FIFO width and @bcnt equals its depth.
1032 * The controller with the FIFO issues DMA synchronization events when
1033 * the FIFO threshold is reached, and the DMA transfer controller will
1034 * transfer one frame to (or from) the FIFO. It will probably use
1035 * efficient burst modes to access memory.
1036 */
1037void edma_set_transfer_params(unsigned slot,
1038 u16 acnt, u16 bcnt, u16 ccnt,
1039 u16 bcnt_rld, enum sync_dimension sync_mode)
1040{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001041 unsigned ctlr;
1042
1043 ctlr = EDMA_CTLR(slot);
1044 slot = EDMA_CHAN_SLOT(slot);
1045
1046 if (slot < edma_info[ctlr]->num_slots) {
1047 edma_parm_modify(ctlr, PARM_LINK_BCNTRLD, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001048 0x0000ffff, bcnt_rld << 16);
1049 if (sync_mode == ASYNC)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001050 edma_parm_and(ctlr, PARM_OPT, slot, ~SYNCDIM);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001051 else
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001052 edma_parm_or(ctlr, PARM_OPT, slot, SYNCDIM);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001053 /* Set the acount, bcount, ccount registers */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001054 edma_parm_write(ctlr, PARM_A_B_CNT, slot, (bcnt << 16) | acnt);
1055 edma_parm_write(ctlr, PARM_CCNT, slot, ccnt);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001056 }
1057}
1058EXPORT_SYMBOL(edma_set_transfer_params);
1059
1060/**
1061 * edma_link - link one parameter RAM slot to another
1062 * @from: parameter RAM slot originating the link
1063 * @to: parameter RAM slot which is the link target
1064 *
1065 * The originating slot should not be part of any active DMA transfer.
1066 */
1067void edma_link(unsigned from, unsigned to)
1068{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001069 unsigned ctlr_from, ctlr_to;
1070
1071 ctlr_from = EDMA_CTLR(from);
1072 from = EDMA_CHAN_SLOT(from);
1073 ctlr_to = EDMA_CTLR(to);
1074 to = EDMA_CHAN_SLOT(to);
1075
1076 if (from >= edma_info[ctlr_from]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001077 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001078 if (to >= edma_info[ctlr_to]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001079 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001080 edma_parm_modify(ctlr_from, PARM_LINK_BCNTRLD, from, 0xffff0000,
1081 PARM_OFFSET(to));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001082}
1083EXPORT_SYMBOL(edma_link);
1084
1085/**
1086 * edma_unlink - cut link from one parameter RAM slot
1087 * @from: parameter RAM slot originating the link
1088 *
1089 * The originating slot should not be part of any active DMA transfer.
1090 * Its link is set to 0xffff.
1091 */
1092void edma_unlink(unsigned from)
1093{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001094 unsigned ctlr;
1095
1096 ctlr = EDMA_CTLR(from);
1097 from = EDMA_CHAN_SLOT(from);
1098
1099 if (from >= edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001100 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001101 edma_parm_or(ctlr, PARM_LINK_BCNTRLD, from, 0xffff);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001102}
1103EXPORT_SYMBOL(edma_unlink);
1104
1105/*-----------------------------------------------------------------------*/
1106
1107/* Parameter RAM operations (ii) -- read/write whole parameter sets */
1108
1109/**
1110 * edma_write_slot - write parameter RAM data for slot
1111 * @slot: number of parameter RAM slot being modified
1112 * @param: data to be written into parameter RAM slot
1113 *
1114 * Use this to assign all parameters of a transfer at once. This
1115 * allows more efficient setup of transfers than issuing multiple
1116 * calls to set up those parameters in small pieces, and provides
1117 * complete control over all transfer options.
1118 */
1119void edma_write_slot(unsigned slot, const struct edmacc_param *param)
1120{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001121 unsigned ctlr;
1122
1123 ctlr = EDMA_CTLR(slot);
1124 slot = EDMA_CHAN_SLOT(slot);
1125
1126 if (slot >= edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001127 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001128 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot), param,
1129 PARM_SIZE);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001130}
1131EXPORT_SYMBOL(edma_write_slot);
1132
1133/**
1134 * edma_read_slot - read parameter RAM data from slot
1135 * @slot: number of parameter RAM slot being copied
1136 * @param: where to store copy of parameter RAM data
1137 *
1138 * Use this to read data from a parameter RAM slot, perhaps to
1139 * save them as a template for later reuse.
1140 */
1141void edma_read_slot(unsigned slot, struct edmacc_param *param)
1142{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001143 unsigned ctlr;
1144
1145 ctlr = EDMA_CTLR(slot);
1146 slot = EDMA_CHAN_SLOT(slot);
1147
1148 if (slot >= edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001149 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001150 memcpy_fromio(param, edmacc_regs_base[ctlr] + PARM_OFFSET(slot),
1151 PARM_SIZE);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001152}
1153EXPORT_SYMBOL(edma_read_slot);
1154
1155/*-----------------------------------------------------------------------*/
1156
1157/* Various EDMA channel control operations */
1158
1159/**
1160 * edma_pause - pause dma on a channel
1161 * @channel: on which edma_start() has been called
1162 *
1163 * This temporarily disables EDMA hardware events on the specified channel,
1164 * preventing them from triggering new transfers on its behalf
1165 */
1166void edma_pause(unsigned channel)
1167{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001168 unsigned ctlr;
1169
1170 ctlr = EDMA_CTLR(channel);
1171 channel = EDMA_CHAN_SLOT(channel);
1172
1173 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001174 unsigned int mask = (1 << (channel & 0x1f));
1175
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001176 edma_shadow0_write_array(ctlr, SH_EECR, channel >> 5, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001177 }
1178}
1179EXPORT_SYMBOL(edma_pause);
1180
1181/**
1182 * edma_resume - resumes dma on a paused channel
1183 * @channel: on which edma_pause() has been called
1184 *
1185 * This re-enables EDMA hardware events on the specified channel.
1186 */
1187void edma_resume(unsigned channel)
1188{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001189 unsigned ctlr;
1190
1191 ctlr = EDMA_CTLR(channel);
1192 channel = EDMA_CHAN_SLOT(channel);
1193
1194 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001195 unsigned int mask = (1 << (channel & 0x1f));
1196
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001197 edma_shadow0_write_array(ctlr, SH_EESR, channel >> 5, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001198 }
1199}
1200EXPORT_SYMBOL(edma_resume);
1201
1202/**
1203 * edma_start - start dma on a channel
1204 * @channel: channel being activated
1205 *
1206 * Channels with event associations will be triggered by their hardware
1207 * events, and channels without such associations will be triggered by
1208 * software. (At this writing there is no interface for using software
1209 * triggers except with channels that don't support hardware triggers.)
1210 *
1211 * Returns zero on success, else negative errno.
1212 */
1213int edma_start(unsigned channel)
1214{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001215 unsigned ctlr;
1216
1217 ctlr = EDMA_CTLR(channel);
1218 channel = EDMA_CHAN_SLOT(channel);
1219
1220 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001221 int j = channel >> 5;
1222 unsigned int mask = (1 << (channel & 0x1f));
1223
1224 /* EDMA channels without event association */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001225 if (test_bit(channel, edma_info[ctlr]->edma_noevent)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001226 pr_debug("EDMA: ESR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001227 edma_shadow0_read_array(ctlr, SH_ESR, j));
1228 edma_shadow0_write_array(ctlr, SH_ESR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001229 return 0;
1230 }
1231
1232 /* EDMA channel with event association */
1233 pr_debug("EDMA: ER%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001234 edma_shadow0_read_array(ctlr, SH_ER, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001235 /* Clear any pending error */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001236 edma_write_array(ctlr, EDMA_EMCR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001237 /* Clear any SER */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001238 edma_shadow0_write_array(ctlr, SH_SECR, j, mask);
1239 edma_shadow0_write_array(ctlr, SH_EESR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001240 pr_debug("EDMA: EER%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001241 edma_shadow0_read_array(ctlr, SH_EER, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001242 return 0;
1243 }
1244
1245 return -EINVAL;
1246}
1247EXPORT_SYMBOL(edma_start);
1248
1249/**
1250 * edma_stop - stops dma on the channel passed
1251 * @channel: channel being deactivated
1252 *
1253 * When @lch is a channel, any active transfer is paused and
1254 * all pending hardware events are cleared. The current transfer
1255 * may not be resumed, and the channel's Parameter RAM should be
1256 * reinitialized before being reused.
1257 */
1258void edma_stop(unsigned channel)
1259{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001260 unsigned ctlr;
1261
1262 ctlr = EDMA_CTLR(channel);
1263 channel = EDMA_CHAN_SLOT(channel);
1264
1265 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001266 int j = channel >> 5;
1267 unsigned int mask = (1 << (channel & 0x1f));
1268
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001269 edma_shadow0_write_array(ctlr, SH_EECR, j, mask);
1270 edma_shadow0_write_array(ctlr, SH_ECR, j, mask);
1271 edma_shadow0_write_array(ctlr, SH_SECR, j, mask);
1272 edma_write_array(ctlr, EDMA_EMCR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001273
1274 pr_debug("EDMA: EER%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001275 edma_shadow0_read_array(ctlr, SH_EER, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001276
1277 /* REVISIT: consider guarding against inappropriate event
1278 * chaining by overwriting with dummy_paramset.
1279 */
1280 }
1281}
1282EXPORT_SYMBOL(edma_stop);
1283
1284/******************************************************************************
1285 *
1286 * It cleans ParamEntry qand bring back EDMA to initial state if media has
1287 * been removed before EDMA has finished.It is usedful for removable media.
1288 * Arguments:
1289 * ch_no - channel no
1290 *
1291 * Return: zero on success, or corresponding error no on failure
1292 *
1293 * FIXME this should not be needed ... edma_stop() should suffice.
1294 *
1295 *****************************************************************************/
1296
1297void edma_clean_channel(unsigned channel)
1298{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001299 unsigned ctlr;
1300
1301 ctlr = EDMA_CTLR(channel);
1302 channel = EDMA_CHAN_SLOT(channel);
1303
1304 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001305 int j = (channel >> 5);
1306 unsigned int mask = 1 << (channel & 0x1f);
1307
1308 pr_debug("EDMA: EMR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001309 edma_read_array(ctlr, EDMA_EMR, j));
1310 edma_shadow0_write_array(ctlr, SH_ECR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001311 /* Clear the corresponding EMR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001312 edma_write_array(ctlr, EDMA_EMCR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001313 /* Clear any SER */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001314 edma_shadow0_write_array(ctlr, SH_SECR, j, mask);
1315 edma_write(ctlr, EDMA_CCERRCLR, (1 << 16) | 0x3);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001316 }
1317}
1318EXPORT_SYMBOL(edma_clean_channel);
1319
1320/*
1321 * edma_clear_event - clear an outstanding event on the DMA channel
1322 * Arguments:
1323 * channel - channel number
1324 */
1325void edma_clear_event(unsigned channel)
1326{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001327 unsigned ctlr;
1328
1329 ctlr = EDMA_CTLR(channel);
1330 channel = EDMA_CHAN_SLOT(channel);
1331
1332 if (channel >= edma_info[ctlr]->num_channels)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001333 return;
1334 if (channel < 32)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001335 edma_write(ctlr, EDMA_ECR, 1 << channel);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001336 else
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001337 edma_write(ctlr, EDMA_ECRH, 1 << (channel - 32));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001338}
1339EXPORT_SYMBOL(edma_clear_event);
1340
1341/*-----------------------------------------------------------------------*/
1342
1343static int __init edma_probe(struct platform_device *pdev)
1344{
1345 struct edma_soc_info *info = pdev->dev.platform_data;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001346 const s8 (*queue_priority_mapping)[2];
1347 const s8 (*queue_tc_mapping)[2];
1348 int i, j, found = 0;
1349 int status = -1;
Kevin Hilmana4768d22009-04-14 07:18:14 -05001350 const s8 *noevent;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001351 int irq[EDMA_MAX_CC] = {0, 0};
1352 int err_irq[EDMA_MAX_CC] = {0, 0};
1353 struct resource *r[EDMA_MAX_CC] = {NULL};
1354 resource_size_t len[EDMA_MAX_CC];
1355 char res_name[10];
1356 char irq_name[10];
Kevin Hilmana4768d22009-04-14 07:18:14 -05001357
1358 if (!info)
1359 return -ENODEV;
1360
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001361 for (j = 0; j < EDMA_MAX_CC; j++) {
1362 sprintf(res_name, "edma_cc%d", j);
1363 r[j] = platform_get_resource_byname(pdev, IORESOURCE_MEM,
1364 res_name);
1365 if (!r[j]) {
1366 if (found)
1367 break;
1368 else
1369 return -ENODEV;
1370 } else
1371 found = 1;
Kevin Hilmana4768d22009-04-14 07:18:14 -05001372
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001373 len[j] = resource_size(r[j]);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001374
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001375 r[j] = request_mem_region(r[j]->start, len[j],
1376 dev_name(&pdev->dev));
1377 if (!r[j]) {
1378 status = -EBUSY;
1379 goto fail1;
1380 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001381
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001382 edmacc_regs_base[j] = ioremap(r[j]->start, len[j]);
1383 if (!edmacc_regs_base[j]) {
1384 status = -EBUSY;
1385 goto fail1;
1386 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001387
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001388 edma_info[j] = kmalloc(sizeof(struct edma), GFP_KERNEL);
1389 if (!edma_info[j]) {
1390 status = -ENOMEM;
1391 goto fail1;
1392 }
1393 memset(edma_info[j], 0, sizeof(struct edma));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001394
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001395 edma_info[j]->num_channels = min_t(unsigned, info[j].n_channel,
1396 EDMA_MAX_DMACH);
1397 edma_info[j]->num_slots = min_t(unsigned, info[j].n_slot,
1398 EDMA_MAX_PARAMENTRY);
1399 edma_info[j]->num_cc = min_t(unsigned, info[j].n_cc,
1400 EDMA_MAX_CC);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001401
Sandeep Paulraja0f02022009-07-27 09:57:07 -04001402 edma_info[j]->default_queue = info[j].default_queue;
1403 if (!edma_info[j]->default_queue)
1404 edma_info[j]->default_queue = EVENTQ_1;
1405
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001406 dev_dbg(&pdev->dev, "DMA REG BASE ADDR=%p\n",
1407 edmacc_regs_base[j]);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001408
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001409 for (i = 0; i < edma_info[j]->num_slots; i++)
1410 memcpy_toio(edmacc_regs_base[j] + PARM_OFFSET(i),
1411 &dummy_paramset, PARM_SIZE);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001412
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001413 noevent = info[j].noevent;
1414 if (noevent) {
1415 while (*noevent != -1)
1416 set_bit(*noevent++, edma_info[j]->edma_noevent);
1417 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001418
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001419 sprintf(irq_name, "edma%d", j);
1420 irq[j] = platform_get_irq_byname(pdev, irq_name);
1421 edma_info[j]->irq_res_start = irq[j];
1422 status = request_irq(irq[j], dma_irq_handler, 0, "edma",
1423 &pdev->dev);
1424 if (status < 0) {
1425 dev_dbg(&pdev->dev, "request_irq %d failed --> %d\n",
1426 irq[j], status);
1427 goto fail;
1428 }
1429
1430 sprintf(irq_name, "edma%d_err", j);
1431 err_irq[j] = platform_get_irq_byname(pdev, irq_name);
1432 edma_info[j]->irq_res_end = err_irq[j];
1433 status = request_irq(err_irq[j], dma_ccerr_handler, 0,
1434 "edma_error", &pdev->dev);
1435 if (status < 0) {
1436 dev_dbg(&pdev->dev, "request_irq %d failed --> %d\n",
1437 err_irq[j], status);
1438 goto fail;
1439 }
1440
1441 /* Everything lives on transfer controller 1 until otherwise
1442 * specified. This way, long transfers on the low priority queue
1443 * started by the codec engine will not cause audio defects.
1444 */
1445 for (i = 0; i < edma_info[j]->num_channels; i++)
1446 map_dmach_queue(j, i, EVENTQ_1);
1447
1448 queue_tc_mapping = info[j].queue_tc_mapping;
1449 queue_priority_mapping = info[j].queue_priority_mapping;
1450
1451 /* Event queue to TC mapping */
1452 for (i = 0; queue_tc_mapping[i][0] != -1; i++)
1453 map_queue_tc(j, queue_tc_mapping[i][0],
1454 queue_tc_mapping[i][1]);
1455
1456 /* Event queue priority mapping */
1457 for (i = 0; queue_priority_mapping[i][0] != -1; i++)
1458 assign_priority_to_queue(j,
1459 queue_priority_mapping[i][0],
1460 queue_priority_mapping[i][1]);
1461
1462 /* Map the channel to param entry if channel mapping logic
1463 * exist
1464 */
1465 if (edma_read(j, EDMA_CCCFG) & CHMAP_EXIST)
1466 map_dmach_param(j);
1467
1468 for (i = 0; i < info[j].n_region; i++) {
1469 edma_write_array2(j, EDMA_DRAE, i, 0, 0x0);
1470 edma_write_array2(j, EDMA_DRAE, i, 1, 0x0);
1471 edma_write_array(j, EDMA_QRAE, i, 0x0);
1472 }
Sudhakar Rajashekhara2d517502010-01-06 17:28:44 +05301473 arch_num_cc++;
Kevin Hilmana4768d22009-04-14 07:18:14 -05001474 }
1475
1476 if (tc_errs_handled) {
1477 status = request_irq(IRQ_TCERRINT0, dma_tc0err_handler, 0,
1478 "edma_tc0", &pdev->dev);
1479 if (status < 0) {
1480 dev_dbg(&pdev->dev, "request_irq %d failed --> %d\n",
1481 IRQ_TCERRINT0, status);
1482 return status;
1483 }
1484 status = request_irq(IRQ_TCERRINT, dma_tc1err_handler, 0,
1485 "edma_tc1", &pdev->dev);
1486 if (status < 0) {
1487 dev_dbg(&pdev->dev, "request_irq %d --> %d\n",
1488 IRQ_TCERRINT, status);
1489 return status;
1490 }
1491 }
1492
Kevin Hilmana4768d22009-04-14 07:18:14 -05001493 return 0;
1494
1495fail:
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001496 for (i = 0; i < EDMA_MAX_CC; i++) {
1497 if (err_irq[i])
1498 free_irq(err_irq[i], &pdev->dev);
1499 if (irq[i])
1500 free_irq(irq[i], &pdev->dev);
1501 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001502fail1:
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001503 for (i = 0; i < EDMA_MAX_CC; i++) {
1504 if (r[i])
1505 release_mem_region(r[i]->start, len[i]);
1506 if (edmacc_regs_base[i])
1507 iounmap(edmacc_regs_base[i]);
1508 kfree(edma_info[i]);
1509 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001510 return status;
1511}
1512
1513
1514static struct platform_driver edma_driver = {
1515 .driver.name = "edma",
1516};
1517
1518static int __init edma_init(void)
1519{
1520 return platform_driver_probe(&edma_driver, edma_probe);
1521}
1522arch_initcall(edma_init);
1523