blob: b097592a862e1231d22826e2a989c9b765d3013c [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>
21#include <linux/sched.h>
22#include <linux/init.h>
23#include <linux/module.h>
24#include <linux/interrupt.h>
25#include <linux/platform_device.h>
26#include <linux/spinlock.h>
27#include <linux/compiler.h>
28#include <linux/io.h>
29
30#include <mach/cputype.h>
31#include <mach/memory.h>
32#include <mach/hardware.h>
33#include <mach/irqs.h>
34#include <mach/edma.h>
35#include <mach/mux.h>
36
37
38/* Offsets matching "struct edmacc_param" */
39#define PARM_OPT 0x00
40#define PARM_SRC 0x04
41#define PARM_A_B_CNT 0x08
42#define PARM_DST 0x0c
43#define PARM_SRC_DST_BIDX 0x10
44#define PARM_LINK_BCNTRLD 0x14
45#define PARM_SRC_DST_CIDX 0x18
46#define PARM_CCNT 0x1c
47
48#define PARM_SIZE 0x20
49
50/* Offsets for EDMA CC global channel registers and their shadows */
51#define SH_ER 0x00 /* 64 bits */
52#define SH_ECR 0x08 /* 64 bits */
53#define SH_ESR 0x10 /* 64 bits */
54#define SH_CER 0x18 /* 64 bits */
55#define SH_EER 0x20 /* 64 bits */
56#define SH_EECR 0x28 /* 64 bits */
57#define SH_EESR 0x30 /* 64 bits */
58#define SH_SER 0x38 /* 64 bits */
59#define SH_SECR 0x40 /* 64 bits */
60#define SH_IER 0x50 /* 64 bits */
61#define SH_IECR 0x58 /* 64 bits */
62#define SH_IESR 0x60 /* 64 bits */
63#define SH_IPR 0x68 /* 64 bits */
64#define SH_ICR 0x70 /* 64 bits */
65#define SH_IEVAL 0x78
66#define SH_QER 0x80
67#define SH_QEER 0x84
68#define SH_QEECR 0x88
69#define SH_QEESR 0x8c
70#define SH_QSER 0x90
71#define SH_QSECR 0x94
72#define SH_SIZE 0x200
73
74/* Offsets for EDMA CC global registers */
75#define EDMA_REV 0x0000
76#define EDMA_CCCFG 0x0004
77#define EDMA_QCHMAP 0x0200 /* 8 registers */
78#define EDMA_DMAQNUM 0x0240 /* 8 registers (4 on OMAP-L1xx) */
79#define EDMA_QDMAQNUM 0x0260
80#define EDMA_QUETCMAP 0x0280
81#define EDMA_QUEPRI 0x0284
82#define EDMA_EMR 0x0300 /* 64 bits */
83#define EDMA_EMCR 0x0308 /* 64 bits */
84#define EDMA_QEMR 0x0310
85#define EDMA_QEMCR 0x0314
86#define EDMA_CCERR 0x0318
87#define EDMA_CCERRCLR 0x031c
88#define EDMA_EEVAL 0x0320
89#define EDMA_DRAE 0x0340 /* 4 x 64 bits*/
90#define EDMA_QRAE 0x0380 /* 4 registers */
91#define EDMA_QUEEVTENTRY 0x0400 /* 2 x 16 registers */
92#define EDMA_QSTAT 0x0600 /* 2 registers */
93#define EDMA_QWMTHRA 0x0620
94#define EDMA_QWMTHRB 0x0624
95#define EDMA_CCSTAT 0x0640
96
97#define EDMA_M 0x1000 /* global channel registers */
98#define EDMA_ECR 0x1008
99#define EDMA_ECRH 0x100C
100#define EDMA_SHADOW0 0x2000 /* 4 regions shadowing global channels */
101#define EDMA_PARM 0x4000 /* 128 param entries */
102
Kevin Hilmana4768d22009-04-14 07:18:14 -0500103#define PARM_OFFSET(param_no) (EDMA_PARM + ((param_no) << 5))
104
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400105#define EDMA_DCHMAP 0x0100 /* 64 registers */
106#define CHMAP_EXIST BIT(24)
107
Kevin Hilmana4768d22009-04-14 07:18:14 -0500108#define EDMA_MAX_DMACH 64
109#define EDMA_MAX_PARAMENTRY 512
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400110#define EDMA_MAX_CC 2
Kevin Hilmana4768d22009-04-14 07:18:14 -0500111
112
113/*****************************************************************************/
114
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400115static void __iomem *edmacc_regs_base[EDMA_MAX_CC];
Kevin Hilmana4768d22009-04-14 07:18:14 -0500116
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400117static inline unsigned int edma_read(unsigned ctlr, int offset)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500118{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400119 return (unsigned int)__raw_readl(edmacc_regs_base[ctlr] + offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500120}
121
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400122static inline void edma_write(unsigned ctlr, int offset, int val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500123{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400124 __raw_writel(val, edmacc_regs_base[ctlr] + offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500125}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400126static inline void edma_modify(unsigned ctlr, int offset, unsigned and,
127 unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500128{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400129 unsigned val = edma_read(ctlr, offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500130 val &= and;
131 val |= or;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400132 edma_write(ctlr, offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500133}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400134static inline void edma_and(unsigned ctlr, int offset, unsigned and)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500135{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400136 unsigned val = edma_read(ctlr, offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500137 val &= and;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400138 edma_write(ctlr, offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500139}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400140static inline void edma_or(unsigned ctlr, int offset, unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500141{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400142 unsigned val = edma_read(ctlr, offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500143 val |= or;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400144 edma_write(ctlr, offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500145}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400146static inline unsigned int edma_read_array(unsigned ctlr, int offset, int i)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500147{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400148 return edma_read(ctlr, offset + (i << 2));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500149}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400150static inline void edma_write_array(unsigned ctlr, int offset, int i,
151 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500152{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400153 edma_write(ctlr, offset + (i << 2), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500154}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400155static inline void edma_modify_array(unsigned ctlr, int offset, int i,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500156 unsigned and, unsigned or)
157{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400158 edma_modify(ctlr, offset + (i << 2), and, or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500159}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400160static inline void edma_or_array(unsigned ctlr, int offset, int i, unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500161{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400162 edma_or(ctlr, offset + (i << 2), or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500163}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400164static inline void edma_or_array2(unsigned ctlr, int offset, int i, int j,
165 unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500166{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400167 edma_or(ctlr, offset + ((i*2 + j) << 2), or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500168}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400169static inline void edma_write_array2(unsigned ctlr, int offset, int i, int j,
170 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500171{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400172 edma_write(ctlr, offset + ((i*2 + j) << 2), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500173}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400174static inline unsigned int edma_shadow0_read(unsigned ctlr, int offset)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500175{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400176 return edma_read(ctlr, EDMA_SHADOW0 + offset);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500177}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400178static inline unsigned int edma_shadow0_read_array(unsigned ctlr, int offset,
179 int i)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500180{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400181 return edma_read(ctlr, EDMA_SHADOW0 + offset + (i << 2));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500182}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400183static inline void edma_shadow0_write(unsigned ctlr, int offset, unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500184{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400185 edma_write(ctlr, EDMA_SHADOW0 + offset, val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500186}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400187static inline void edma_shadow0_write_array(unsigned ctlr, int offset, int i,
188 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500189{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400190 edma_write(ctlr, EDMA_SHADOW0 + offset + (i << 2), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500191}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400192static inline unsigned int edma_parm_read(unsigned ctlr, int offset,
193 int param_no)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500194{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400195 return edma_read(ctlr, EDMA_PARM + offset + (param_no << 5));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500196}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400197static inline void edma_parm_write(unsigned ctlr, int offset, int param_no,
198 unsigned val)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500199{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400200 edma_write(ctlr, EDMA_PARM + offset + (param_no << 5), val);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500201}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400202static inline void edma_parm_modify(unsigned ctlr, int offset, int param_no,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500203 unsigned and, unsigned or)
204{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400205 edma_modify(ctlr, EDMA_PARM + offset + (param_no << 5), and, or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500206}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400207static inline void edma_parm_and(unsigned ctlr, int offset, int param_no,
208 unsigned and)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500209{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400210 edma_and(ctlr, EDMA_PARM + offset + (param_no << 5), and);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500211}
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400212static inline void edma_parm_or(unsigned ctlr, int offset, int param_no,
213 unsigned or)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500214{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400215 edma_or(ctlr, EDMA_PARM + offset + (param_no << 5), or);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500216}
217
218/*****************************************************************************/
219
220/* actual number of DMA channels and slots on this silicon */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400221struct edma {
222 /* how many dma resources of each type */
223 unsigned num_channels;
224 unsigned num_region;
225 unsigned num_slots;
226 unsigned num_tc;
227 unsigned num_cc;
Sandeep Paulraja0f02022009-07-27 09:57:07 -0400228 enum dma_event_q default_queue;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500229
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400230 /* list of channels with no even trigger; terminated by "-1" */
231 const s8 *noevent;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500232
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400233 /* The edma_inuse bit for each PaRAM slot is clear unless the
234 * channel is in use ... by ARM or DSP, for QDMA, or whatever.
235 */
236 DECLARE_BITMAP(edma_inuse, EDMA_MAX_PARAMENTRY);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500237
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400238 /* The edma_noevent bit for each channel is clear unless
239 * it doesn't trigger DMA events on this platform. It uses a
240 * bit of SOC-specific initialization code.
241 */
242 DECLARE_BITMAP(edma_noevent, EDMA_MAX_DMACH);
243
244 unsigned irq_res_start;
245 unsigned irq_res_end;
246
247 struct dma_interrupt_data {
248 void (*callback)(unsigned channel, unsigned short ch_status,
249 void *data);
250 void *data;
251 } intr_data[EDMA_MAX_DMACH];
252};
253
254static struct edma *edma_info[EDMA_MAX_CC];
Kevin Hilmana4768d22009-04-14 07:18:14 -0500255
256/* dummy param set used to (re)initialize parameter RAM slots */
257static const struct edmacc_param dummy_paramset = {
258 .link_bcntrld = 0xffff,
259 .ccnt = 1,
260};
261
Kevin Hilmana4768d22009-04-14 07:18:14 -0500262/*****************************************************************************/
263
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400264static void map_dmach_queue(unsigned ctlr, unsigned ch_no,
265 enum dma_event_q queue_no)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500266{
267 int bit = (ch_no & 0x7) * 4;
268
269 /* default to low priority queue */
270 if (queue_no == EVENTQ_DEFAULT)
Sandeep Paulraja0f02022009-07-27 09:57:07 -0400271 queue_no = edma_info[ctlr]->default_queue;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500272
273 queue_no &= 7;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400274 edma_modify_array(ctlr, EDMA_DMAQNUM, (ch_no >> 3),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500275 ~(0x7 << bit), queue_no << bit);
276}
277
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400278static void __init map_queue_tc(unsigned ctlr, int queue_no, int tc_no)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500279{
280 int bit = queue_no * 4;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400281 edma_modify(ctlr, EDMA_QUETCMAP, ~(0x7 << bit), ((tc_no & 0x7) << bit));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500282}
283
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400284static void __init assign_priority_to_queue(unsigned ctlr, int queue_no,
285 int priority)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500286{
287 int bit = queue_no * 4;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400288 edma_modify(ctlr, EDMA_QUEPRI, ~(0x7 << bit),
289 ((priority & 0x7) << bit));
290}
291
292/**
293 * map_dmach_param - Maps channel number to param entry number
294 *
295 * This maps the dma channel number to param entry numberter. In
296 * other words using the DMA channel mapping registers a param entry
297 * can be mapped to any channel
298 *
299 * Callers are responsible for ensuring the channel mapping logic is
300 * included in that particular EDMA variant (Eg : dm646x)
301 *
302 */
303static void __init map_dmach_param(unsigned ctlr)
304{
305 int i;
306 for (i = 0; i < EDMA_MAX_DMACH; i++)
307 edma_write_array(ctlr, EDMA_DCHMAP , i , (i << 5));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500308}
309
310static inline void
311setup_dma_interrupt(unsigned lch,
312 void (*callback)(unsigned channel, u16 ch_status, void *data),
313 void *data)
314{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400315 unsigned ctlr;
316
317 ctlr = EDMA_CTLR(lch);
318 lch = EDMA_CHAN_SLOT(lch);
319
Kevin Hilmana4768d22009-04-14 07:18:14 -0500320 if (!callback) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400321 edma_shadow0_write_array(ctlr, SH_IECR, lch >> 5,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500322 (1 << (lch & 0x1f)));
323 }
324
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400325 edma_info[ctlr]->intr_data[lch].callback = callback;
326 edma_info[ctlr]->intr_data[lch].data = data;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500327
328 if (callback) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400329 edma_shadow0_write_array(ctlr, SH_ICR, lch >> 5,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500330 (1 << (lch & 0x1f)));
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400331 edma_shadow0_write_array(ctlr, SH_IESR, lch >> 5,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500332 (1 << (lch & 0x1f)));
333 }
334}
335
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400336static int irq2ctlr(int irq)
337{
338 if (irq >= edma_info[0]->irq_res_start &&
339 irq <= edma_info[0]->irq_res_end)
340 return 0;
341 else if (irq >= edma_info[1]->irq_res_start &&
342 irq <= edma_info[1]->irq_res_end)
343 return 1;
344
345 return -1;
346}
347
Kevin Hilmana4768d22009-04-14 07:18:14 -0500348/******************************************************************************
349 *
350 * DMA interrupt handler
351 *
352 *****************************************************************************/
353static irqreturn_t dma_irq_handler(int irq, void *data)
354{
355 int i;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400356 unsigned ctlr;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500357 unsigned int cnt = 0;
358
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400359 ctlr = irq2ctlr(irq);
360
Kevin Hilmana4768d22009-04-14 07:18:14 -0500361 dev_dbg(data, "dma_irq_handler\n");
362
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400363 if ((edma_shadow0_read_array(ctlr, SH_IPR, 0) == 0)
364 && (edma_shadow0_read_array(ctlr, SH_IPR, 1) == 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500365 return IRQ_NONE;
366
367 while (1) {
368 int j;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400369 if (edma_shadow0_read_array(ctlr, SH_IPR, 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500370 j = 0;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400371 else if (edma_shadow0_read_array(ctlr, SH_IPR, 1))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500372 j = 1;
373 else
374 break;
375 dev_dbg(data, "IPR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400376 edma_shadow0_read_array(ctlr, SH_IPR, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500377 for (i = 0; i < 32; i++) {
378 int k = (j << 5) + i;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400379 if (edma_shadow0_read_array(ctlr, SH_IPR, j) &
380 (1 << i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500381 /* Clear the corresponding IPR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400382 edma_shadow0_write_array(ctlr, SH_ICR, j,
383 (1 << i));
384 if (edma_info[ctlr]->intr_data[k].callback) {
385 edma_info[ctlr]->intr_data[k].callback(
386 k, DMA_COMPLETE,
387 edma_info[ctlr]->intr_data[k].
388 data);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500389 }
390 }
391 }
392 cnt++;
393 if (cnt > 10)
394 break;
395 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400396 edma_shadow0_write(ctlr, SH_IEVAL, 1);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500397 return IRQ_HANDLED;
398}
399
400/******************************************************************************
401 *
402 * DMA error interrupt handler
403 *
404 *****************************************************************************/
405static irqreturn_t dma_ccerr_handler(int irq, void *data)
406{
407 int i;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400408 unsigned ctlr;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500409 unsigned int cnt = 0;
410
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400411 ctlr = irq2ctlr(irq);
412
Kevin Hilmana4768d22009-04-14 07:18:14 -0500413 dev_dbg(data, "dma_ccerr_handler\n");
414
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400415 if ((edma_read_array(ctlr, EDMA_EMR, 0) == 0) &&
416 (edma_read_array(ctlr, EDMA_EMR, 1) == 0) &&
417 (edma_read(ctlr, EDMA_QEMR) == 0) &&
418 (edma_read(ctlr, EDMA_CCERR) == 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500419 return IRQ_NONE;
420
421 while (1) {
422 int j = -1;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400423 if (edma_read_array(ctlr, EDMA_EMR, 0))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500424 j = 0;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400425 else if (edma_read_array(ctlr, EDMA_EMR, 1))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500426 j = 1;
427 if (j >= 0) {
428 dev_dbg(data, "EMR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400429 edma_read_array(ctlr, EDMA_EMR, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500430 for (i = 0; i < 32; i++) {
431 int k = (j << 5) + i;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400432 if (edma_read_array(ctlr, EDMA_EMR, j) &
433 (1 << i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500434 /* Clear the corresponding EMR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400435 edma_write_array(ctlr, EDMA_EMCR, j,
436 1 << i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500437 /* Clear any SER */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400438 edma_shadow0_write_array(ctlr, SH_SECR,
439 j, (1 << i));
440 if (edma_info[ctlr]->intr_data[k].
441 callback) {
442 edma_info[ctlr]->intr_data[k].
443 callback(k,
444 DMA_CC_ERROR,
445 edma_info[ctlr]->intr_data
446 [k].data);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500447 }
448 }
449 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400450 } else if (edma_read(ctlr, EDMA_QEMR)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500451 dev_dbg(data, "QEMR %02x\n",
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400452 edma_read(ctlr, EDMA_QEMR));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500453 for (i = 0; i < 8; i++) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400454 if (edma_read(ctlr, EDMA_QEMR) & (1 << i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500455 /* Clear the corresponding IPR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400456 edma_write(ctlr, EDMA_QEMCR, 1 << i);
457 edma_shadow0_write(ctlr, SH_QSECR,
458 (1 << i));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500459
460 /* NOTE: not reported!! */
461 }
462 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400463 } else if (edma_read(ctlr, EDMA_CCERR)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500464 dev_dbg(data, "CCERR %08x\n",
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400465 edma_read(ctlr, EDMA_CCERR));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500466 /* FIXME: CCERR.BIT(16) ignored! much better
467 * to just write CCERRCLR with CCERR value...
468 */
469 for (i = 0; i < 8; i++) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400470 if (edma_read(ctlr, EDMA_CCERR) & (1 << i)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500471 /* Clear the corresponding IPR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400472 edma_write(ctlr, EDMA_CCERRCLR, 1 << i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500473
474 /* NOTE: not reported!! */
475 }
476 }
477 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400478 if ((edma_read_array(ctlr, EDMA_EMR, 0) == 0)
479 && (edma_read_array(ctlr, EDMA_EMR, 1) == 0)
480 && (edma_read(ctlr, EDMA_QEMR) == 0)
481 && (edma_read(ctlr, EDMA_CCERR) == 0)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500482 break;
483 }
484 cnt++;
485 if (cnt > 10)
486 break;
487 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400488 edma_write(ctlr, EDMA_EEVAL, 1);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500489 return IRQ_HANDLED;
490}
491
492/******************************************************************************
493 *
494 * Transfer controller error interrupt handlers
495 *
496 *****************************************************************************/
497
498#define tc_errs_handled false /* disabled as long as they're NOPs */
499
500static irqreturn_t dma_tc0err_handler(int irq, void *data)
501{
502 dev_dbg(data, "dma_tc0err_handler\n");
503 return IRQ_HANDLED;
504}
505
506static irqreturn_t dma_tc1err_handler(int irq, void *data)
507{
508 dev_dbg(data, "dma_tc1err_handler\n");
509 return IRQ_HANDLED;
510}
511
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400512static int reserve_contiguous_params(int ctlr, unsigned int id,
513 unsigned int num_params,
514 unsigned int start_param)
515{
516 int i, j;
517 unsigned int count = num_params;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400518 int stop_param = start_param;
519 DECLARE_BITMAP(tmp_inuse, EDMA_MAX_PARAMENTRY);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400520
521 for (i = start_param; i < edma_info[ctlr]->num_slots; ++i) {
522 j = EDMA_CHAN_SLOT(i);
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400523 if (!test_and_set_bit(j, edma_info[ctlr]->edma_inuse)) {
524 /* Record our current beginning slot */
525 if (count == num_params)
526 stop_param = i;
527
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400528 count--;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400529 set_bit(j, tmp_inuse);
530
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400531 if (count == 0)
532 break;
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400533 } else {
534 clear_bit(j, tmp_inuse);
535
536 if (id == EDMA_CONT_PARAMS_FIXED_EXACT) {
537 stop_param = i;
538 break;
539 } else
540 count = num_params;
541 }
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400542 }
543
544 /*
545 * We have to clear any bits that we set
546 * if we run out parameter RAMs, i.e we do find a set
547 * of contiguous parameter RAMs but do not find the exact number
548 * requested as we may reach the total number of parameter RAMs
549 */
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400550 if (i == edma_info[ctlr]->num_slots)
551 stop_param = i;
552
553 for (j = start_param; j < stop_param; j++)
554 if (test_bit(j, tmp_inuse))
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400555 clear_bit(j, edma_info[ctlr]->edma_inuse);
556
Sandeep Paulrajcc93fc32009-09-20 13:47:03 -0400557 if (count)
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400558 return -EBUSY;
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400559
560 for (j = i - num_params + 1; j <= i; ++j)
561 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(j),
562 &dummy_paramset, PARM_SIZE);
563
564 return EDMA_CTLR_CHAN(ctlr, i - num_params + 1);
565}
566
Kevin Hilmana4768d22009-04-14 07:18:14 -0500567/*-----------------------------------------------------------------------*/
568
569/* Resource alloc/free: dma channels, parameter RAM slots */
570
571/**
572 * edma_alloc_channel - allocate DMA channel and paired parameter RAM
573 * @channel: specific channel to allocate; negative for "any unmapped channel"
574 * @callback: optional; to be issued on DMA completion or errors
575 * @data: passed to callback
576 * @eventq_no: an EVENTQ_* constant, used to choose which Transfer
577 * Controller (TC) executes requests using this channel. Use
578 * EVENTQ_DEFAULT unless you really need a high priority queue.
579 *
580 * This allocates a DMA channel and its associated parameter RAM slot.
581 * The parameter RAM is initialized to hold a dummy transfer.
582 *
583 * Normal use is to pass a specific channel number as @channel, to make
584 * use of hardware events mapped to that channel. When the channel will
585 * be used only for software triggering or event chaining, channels not
586 * mapped to hardware events (or mapped to unused events) are preferable.
587 *
588 * DMA transfers start from a channel using edma_start(), or by
589 * chaining. When the transfer described in that channel's parameter RAM
590 * slot completes, that slot's data may be reloaded through a link.
591 *
592 * DMA errors are only reported to the @callback associated with the
593 * channel driving that transfer, but transfer completion callbacks can
594 * be sent to another channel under control of the TCC field in
595 * the option word of the transfer's parameter RAM set. Drivers must not
596 * use DMA transfer completion callbacks for channels they did not allocate.
597 * (The same applies to TCC codes used in transfer chaining.)
598 *
599 * Returns the number of the channel, else negative errno.
600 */
601int edma_alloc_channel(int channel,
602 void (*callback)(unsigned channel, u16 ch_status, void *data),
603 void *data,
604 enum dma_event_q eventq_no)
605{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400606 unsigned i, done, ctlr = 0;
607
608 if (channel >= 0) {
609 ctlr = EDMA_CTLR(channel);
610 channel = EDMA_CHAN_SLOT(channel);
611 }
612
Kevin Hilmana4768d22009-04-14 07:18:14 -0500613 if (channel < 0) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400614 for (i = 0; i < EDMA_MAX_CC; i++) {
615 channel = 0;
616 for (;;) {
617 channel = find_next_bit(edma_info[i]->
618 edma_noevent,
619 edma_info[i]->num_channels,
620 channel);
621 if (channel == edma_info[i]->num_channels)
622 return -ENOMEM;
623 if (!test_and_set_bit(channel,
624 edma_info[i]->edma_inuse)) {
625 done = 1;
626 ctlr = i;
627 break;
628 }
629 channel++;
630 }
631 if (done)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500632 break;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500633 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400634 } else if (channel >= edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500635 return -EINVAL;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400636 } else if (test_and_set_bit(channel, edma_info[ctlr]->edma_inuse)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500637 return -EBUSY;
638 }
639
640 /* ensure access through shadow region 0 */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400641 edma_or_array2(ctlr, EDMA_DRAE, 0, channel >> 5, 1 << (channel & 0x1f));
Kevin Hilmana4768d22009-04-14 07:18:14 -0500642
643 /* ensure no events are pending */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400644 edma_stop(EDMA_CTLR_CHAN(ctlr, channel));
645 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(channel),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500646 &dummy_paramset, PARM_SIZE);
647
648 if (callback)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400649 setup_dma_interrupt(EDMA_CTLR_CHAN(ctlr, channel),
650 callback, data);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500651
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400652 map_dmach_queue(ctlr, channel, eventq_no);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500653
654 return channel;
655}
656EXPORT_SYMBOL(edma_alloc_channel);
657
658
659/**
660 * edma_free_channel - deallocate DMA channel
661 * @channel: dma channel returned from edma_alloc_channel()
662 *
663 * This deallocates the DMA channel and associated parameter RAM slot
664 * allocated by edma_alloc_channel().
665 *
666 * Callers are responsible for ensuring the channel is inactive, and
667 * will not be reactivated by linking, chaining, or software calls to
668 * edma_start().
669 */
670void edma_free_channel(unsigned channel)
671{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400672 unsigned ctlr;
673
674 ctlr = EDMA_CTLR(channel);
675 channel = EDMA_CHAN_SLOT(channel);
676
677 if (channel >= edma_info[ctlr]->num_channels)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500678 return;
679
680 setup_dma_interrupt(channel, NULL, NULL);
681 /* REVISIT should probably take out of shadow region 0 */
682
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400683 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(channel),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500684 &dummy_paramset, PARM_SIZE);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400685 clear_bit(channel, edma_info[ctlr]->edma_inuse);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500686}
687EXPORT_SYMBOL(edma_free_channel);
688
689/**
690 * edma_alloc_slot - allocate DMA parameter RAM
691 * @slot: specific slot to allocate; negative for "any unused slot"
692 *
693 * This allocates a parameter RAM slot, initializing it to hold a
694 * dummy transfer. Slots allocated using this routine have not been
695 * mapped to a hardware DMA channel, and will normally be used by
696 * linking to them from a slot associated with a DMA channel.
697 *
698 * Normal use is to pass EDMA_SLOT_ANY as the @slot, but specific
699 * slots may be allocated on behalf of DSP firmware.
700 *
701 * Returns the number of the slot, else negative errno.
702 */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400703int edma_alloc_slot(unsigned ctlr, int slot)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500704{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400705 if (slot >= 0)
706 slot = EDMA_CHAN_SLOT(slot);
707
Kevin Hilmana4768d22009-04-14 07:18:14 -0500708 if (slot < 0) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400709 slot = edma_info[ctlr]->num_channels;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500710 for (;;) {
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400711 slot = find_next_zero_bit(edma_info[ctlr]->edma_inuse,
712 edma_info[ctlr]->num_slots, slot);
713 if (slot == edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500714 return -ENOMEM;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400715 if (!test_and_set_bit(slot,
716 edma_info[ctlr]->edma_inuse))
Kevin Hilmana4768d22009-04-14 07:18:14 -0500717 break;
718 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400719 } else if (slot < edma_info[ctlr]->num_channels ||
720 slot >= edma_info[ctlr]->num_slots) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500721 return -EINVAL;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400722 } else if (test_and_set_bit(slot, edma_info[ctlr]->edma_inuse)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -0500723 return -EBUSY;
724 }
725
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400726 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500727 &dummy_paramset, PARM_SIZE);
728
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400729 return EDMA_CTLR_CHAN(ctlr, slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500730}
731EXPORT_SYMBOL(edma_alloc_slot);
732
733/**
734 * edma_free_slot - deallocate DMA parameter RAM
735 * @slot: parameter RAM slot returned from edma_alloc_slot()
736 *
737 * This deallocates the parameter RAM slot allocated by edma_alloc_slot().
738 * Callers are responsible for ensuring the slot is inactive, and will
739 * not be activated.
740 */
741void edma_free_slot(unsigned slot)
742{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400743 unsigned ctlr;
744
745 ctlr = EDMA_CTLR(slot);
746 slot = EDMA_CHAN_SLOT(slot);
747
748 if (slot < edma_info[ctlr]->num_channels ||
749 slot >= edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -0500750 return;
751
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400752 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot),
Kevin Hilmana4768d22009-04-14 07:18:14 -0500753 &dummy_paramset, PARM_SIZE);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400754 clear_bit(slot, edma_info[ctlr]->edma_inuse);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500755}
756EXPORT_SYMBOL(edma_free_slot);
757
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400758
759/**
760 * edma_alloc_cont_slots- alloc contiguous parameter RAM slots
761 * The API will return the starting point of a set of
762 * contiguous PARAM's that have been requested
763 *
764 * @id: can only be EDMA_CONT_PARAMS_ANY or EDMA_CONT_PARAMS_FIXED_EXACT
765 * or EDMA_CONT_PARAMS_FIXED_NOT_EXACT
766 * @count: number of contiguous Paramter RAM's
767 * @param - the start value of Parameter RAM that should be passed if id
768 * is EDMA_CONT_PARAMS_FIXED_EXACT or EDMA_CONT_PARAMS_FIXED_NOT_EXACT
769 *
770 * If id is EDMA_CONT_PARAMS_ANY then the API starts looking for a set of
771 * contiguous Parameter RAMs from parameter RAM 64 in the case of DaVinci SOCs
772 * and 32 in the case of Primus
773 *
774 * If id is EDMA_CONT_PARAMS_FIXED_EXACT then the API starts looking for a
775 * set of contiguous parameter RAMs from the "param" that is passed as an
776 * argument to the API.
777 *
778 * If id is EDMA_CONT_PARAMS_FIXED_NOT_EXACT then the API initially tries
779 * starts looking for a set of contiguous parameter RAMs from the "param"
780 * that is passed as an argument to the API. On failure the API will try to
781 * find a set of contiguous Parameter RAMs in the remaining Parameter RAMs
782 */
783int edma_alloc_cont_slots(unsigned ctlr, unsigned int id, int slot, int count)
784{
785 /*
786 * The start slot requested should be greater than
787 * the number of channels and lesser than the total number
788 * of slots
789 */
Sandeep Paulraj6b0cf4e2009-09-16 18:17:43 -0400790 if ((id != EDMA_CONT_PARAMS_ANY) &&
791 (slot < edma_info[ctlr]->num_channels ||
792 slot >= edma_info[ctlr]->num_slots))
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400793 return -EINVAL;
794
795 /*
796 * The number of parameter RAMs requested cannot be less than 1
797 * and cannot be more than the number of slots minus the number of
798 * channels
799 */
800 if (count < 1 || count >
801 (edma_info[ctlr]->num_slots - edma_info[ctlr]->num_channels))
802 return -EINVAL;
803
804 switch (id) {
805 case EDMA_CONT_PARAMS_ANY:
806 return reserve_contiguous_params(ctlr, id, count,
807 edma_info[ctlr]->num_channels);
808 case EDMA_CONT_PARAMS_FIXED_EXACT:
809 case EDMA_CONT_PARAMS_FIXED_NOT_EXACT:
810 return reserve_contiguous_params(ctlr, id, count, slot);
811 default:
812 return -EINVAL;
813 }
814
815}
816EXPORT_SYMBOL(edma_alloc_cont_slots);
817
818/**
819 * edma_free_cont_slots - deallocate DMA parameter RAMs
820 * @slot: first parameter RAM of a set of parameter RAMs to be freed
821 * @count: the number of contiguous parameter RAMs to be freed
822 *
823 * This deallocates the parameter RAM slots allocated by
824 * edma_alloc_cont_slots.
825 * Callers/applications need to keep track of sets of contiguous
826 * parameter RAMs that have been allocated using the edma_alloc_cont_slots
827 * API.
828 * Callers are responsible for ensuring the slots are inactive, and will
829 * not be activated.
830 */
831int edma_free_cont_slots(unsigned slot, int count)
832{
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400833 unsigned ctlr, slot_to_free;
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400834 int i;
835
836 ctlr = EDMA_CTLR(slot);
837 slot = EDMA_CHAN_SLOT(slot);
838
839 if (slot < edma_info[ctlr]->num_channels ||
840 slot >= edma_info[ctlr]->num_slots ||
841 count < 1)
842 return -EINVAL;
843
844 for (i = slot; i < slot + count; ++i) {
845 ctlr = EDMA_CTLR(i);
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400846 slot_to_free = EDMA_CHAN_SLOT(i);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400847
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400848 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot_to_free),
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400849 &dummy_paramset, PARM_SIZE);
Sandeep Paulraj51c99e02009-09-16 18:09:59 -0400850 clear_bit(slot_to_free, edma_info[ctlr]->edma_inuse);
Sandeep Paulraj213765d2009-07-27 15:10:36 -0400851 }
852
853 return 0;
854}
855EXPORT_SYMBOL(edma_free_cont_slots);
856
Kevin Hilmana4768d22009-04-14 07:18:14 -0500857/*-----------------------------------------------------------------------*/
858
859/* Parameter RAM operations (i) -- read/write partial slots */
860
861/**
862 * edma_set_src - set initial DMA source address in parameter RAM slot
863 * @slot: parameter RAM slot being configured
864 * @src_port: physical address of source (memory, controller FIFO, etc)
865 * @addressMode: INCR, except in very rare cases
866 * @fifoWidth: ignored unless @addressMode is FIFO, else specifies the
867 * width to use when addressing the fifo (e.g. W8BIT, W32BIT)
868 *
869 * Note that the source address is modified during the DMA transfer
870 * according to edma_set_src_index().
871 */
872void edma_set_src(unsigned slot, dma_addr_t src_port,
873 enum address_mode mode, enum fifo_width width)
874{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400875 unsigned ctlr;
876
877 ctlr = EDMA_CTLR(slot);
878 slot = EDMA_CHAN_SLOT(slot);
879
880 if (slot < edma_info[ctlr]->num_slots) {
881 unsigned int i = edma_parm_read(ctlr, PARM_OPT, slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500882
883 if (mode) {
884 /* set SAM and program FWID */
885 i = (i & ~(EDMA_FWID)) | (SAM | ((width & 0x7) << 8));
886 } else {
887 /* clear SAM */
888 i &= ~SAM;
889 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400890 edma_parm_write(ctlr, PARM_OPT, slot, i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500891
892 /* set the source port address
893 in source register of param structure */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400894 edma_parm_write(ctlr, PARM_SRC, slot, src_port);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500895 }
896}
897EXPORT_SYMBOL(edma_set_src);
898
899/**
900 * edma_set_dest - set initial DMA destination address in parameter RAM slot
901 * @slot: parameter RAM slot being configured
902 * @dest_port: physical address of destination (memory, controller FIFO, etc)
903 * @addressMode: INCR, except in very rare cases
904 * @fifoWidth: ignored unless @addressMode is FIFO, else specifies the
905 * width to use when addressing the fifo (e.g. W8BIT, W32BIT)
906 *
907 * Note that the destination address is modified during the DMA transfer
908 * according to edma_set_dest_index().
909 */
910void edma_set_dest(unsigned slot, dma_addr_t dest_port,
911 enum address_mode mode, enum fifo_width width)
912{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400913 unsigned ctlr;
914
915 ctlr = EDMA_CTLR(slot);
916 slot = EDMA_CHAN_SLOT(slot);
917
918 if (slot < edma_info[ctlr]->num_slots) {
919 unsigned int i = edma_parm_read(ctlr, PARM_OPT, slot);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500920
921 if (mode) {
922 /* set DAM and program FWID */
923 i = (i & ~(EDMA_FWID)) | (DAM | ((width & 0x7) << 8));
924 } else {
925 /* clear DAM */
926 i &= ~DAM;
927 }
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400928 edma_parm_write(ctlr, PARM_OPT, slot, i);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500929 /* set the destination port address
930 in dest register of param structure */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400931 edma_parm_write(ctlr, PARM_DST, slot, dest_port);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500932 }
933}
934EXPORT_SYMBOL(edma_set_dest);
935
936/**
937 * edma_get_position - returns the current transfer points
938 * @slot: parameter RAM slot being examined
939 * @src: pointer to source port position
940 * @dst: pointer to destination port position
941 *
942 * Returns current source and destination addresses for a particular
943 * parameter RAM slot. Its channel should not be active when this is called.
944 */
945void edma_get_position(unsigned slot, dma_addr_t *src, dma_addr_t *dst)
946{
947 struct edmacc_param temp;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400948 unsigned ctlr;
Kevin Hilmana4768d22009-04-14 07:18:14 -0500949
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400950 ctlr = EDMA_CTLR(slot);
951 slot = EDMA_CHAN_SLOT(slot);
952
953 edma_read_slot(EDMA_CTLR_CHAN(ctlr, slot), &temp);
Kevin Hilmana4768d22009-04-14 07:18:14 -0500954 if (src != NULL)
955 *src = temp.src;
956 if (dst != NULL)
957 *dst = temp.dst;
958}
959EXPORT_SYMBOL(edma_get_position);
960
961/**
962 * edma_set_src_index - configure DMA source address indexing
963 * @slot: parameter RAM slot being configured
964 * @src_bidx: byte offset between source arrays in a frame
965 * @src_cidx: byte offset between source frames in a block
966 *
967 * Offsets are specified to support either contiguous or discontiguous
968 * memory transfers, or repeated access to a hardware register, as needed.
969 * When accessing hardware registers, both offsets are normally zero.
970 */
971void edma_set_src_index(unsigned slot, s16 src_bidx, s16 src_cidx)
972{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400973 unsigned ctlr;
974
975 ctlr = EDMA_CTLR(slot);
976 slot = EDMA_CHAN_SLOT(slot);
977
978 if (slot < edma_info[ctlr]->num_slots) {
979 edma_parm_modify(ctlr, PARM_SRC_DST_BIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500980 0xffff0000, src_bidx);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400981 edma_parm_modify(ctlr, PARM_SRC_DST_CIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -0500982 0xffff0000, src_cidx);
983 }
984}
985EXPORT_SYMBOL(edma_set_src_index);
986
987/**
988 * edma_set_dest_index - configure DMA destination address indexing
989 * @slot: parameter RAM slot being configured
990 * @dest_bidx: byte offset between destination arrays in a frame
991 * @dest_cidx: byte offset between destination frames in a block
992 *
993 * Offsets are specified to support either contiguous or discontiguous
994 * memory transfers, or repeated access to a hardware register, as needed.
995 * When accessing hardware registers, both offsets are normally zero.
996 */
997void edma_set_dest_index(unsigned slot, s16 dest_bidx, s16 dest_cidx)
998{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -0400999 unsigned ctlr;
1000
1001 ctlr = EDMA_CTLR(slot);
1002 slot = EDMA_CHAN_SLOT(slot);
1003
1004 if (slot < edma_info[ctlr]->num_slots) {
1005 edma_parm_modify(ctlr, PARM_SRC_DST_BIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001006 0x0000ffff, dest_bidx << 16);
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001007 edma_parm_modify(ctlr, PARM_SRC_DST_CIDX, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001008 0x0000ffff, dest_cidx << 16);
1009 }
1010}
1011EXPORT_SYMBOL(edma_set_dest_index);
1012
1013/**
1014 * edma_set_transfer_params - configure DMA transfer parameters
1015 * @slot: parameter RAM slot being configured
1016 * @acnt: how many bytes per array (at least one)
1017 * @bcnt: how many arrays per frame (at least one)
1018 * @ccnt: how many frames per block (at least one)
1019 * @bcnt_rld: used only for A-Synchronized transfers; this specifies
1020 * the value to reload into bcnt when it decrements to zero
1021 * @sync_mode: ASYNC or ABSYNC
1022 *
1023 * See the EDMA3 documentation to understand how to configure and link
1024 * transfers using the fields in PaRAM slots. If you are not doing it
1025 * all at once with edma_write_slot(), you will use this routine
1026 * plus two calls each for source and destination, setting the initial
1027 * address and saying how to index that address.
1028 *
1029 * An example of an A-Synchronized transfer is a serial link using a
1030 * single word shift register. In that case, @acnt would be equal to
1031 * that word size; the serial controller issues a DMA synchronization
1032 * event to transfer each word, and memory access by the DMA transfer
1033 * controller will be word-at-a-time.
1034 *
1035 * An example of an AB-Synchronized transfer is a device using a FIFO.
1036 * In that case, @acnt equals the FIFO width and @bcnt equals its depth.
1037 * The controller with the FIFO issues DMA synchronization events when
1038 * the FIFO threshold is reached, and the DMA transfer controller will
1039 * transfer one frame to (or from) the FIFO. It will probably use
1040 * efficient burst modes to access memory.
1041 */
1042void edma_set_transfer_params(unsigned slot,
1043 u16 acnt, u16 bcnt, u16 ccnt,
1044 u16 bcnt_rld, enum sync_dimension sync_mode)
1045{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001046 unsigned ctlr;
1047
1048 ctlr = EDMA_CTLR(slot);
1049 slot = EDMA_CHAN_SLOT(slot);
1050
1051 if (slot < edma_info[ctlr]->num_slots) {
1052 edma_parm_modify(ctlr, PARM_LINK_BCNTRLD, slot,
Kevin Hilmana4768d22009-04-14 07:18:14 -05001053 0x0000ffff, bcnt_rld << 16);
1054 if (sync_mode == ASYNC)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001055 edma_parm_and(ctlr, PARM_OPT, slot, ~SYNCDIM);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001056 else
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001057 edma_parm_or(ctlr, PARM_OPT, slot, SYNCDIM);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001058 /* Set the acount, bcount, ccount registers */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001059 edma_parm_write(ctlr, PARM_A_B_CNT, slot, (bcnt << 16) | acnt);
1060 edma_parm_write(ctlr, PARM_CCNT, slot, ccnt);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001061 }
1062}
1063EXPORT_SYMBOL(edma_set_transfer_params);
1064
1065/**
1066 * edma_link - link one parameter RAM slot to another
1067 * @from: parameter RAM slot originating the link
1068 * @to: parameter RAM slot which is the link target
1069 *
1070 * The originating slot should not be part of any active DMA transfer.
1071 */
1072void edma_link(unsigned from, unsigned to)
1073{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001074 unsigned ctlr_from, ctlr_to;
1075
1076 ctlr_from = EDMA_CTLR(from);
1077 from = EDMA_CHAN_SLOT(from);
1078 ctlr_to = EDMA_CTLR(to);
1079 to = EDMA_CHAN_SLOT(to);
1080
1081 if (from >= edma_info[ctlr_from]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001082 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001083 if (to >= edma_info[ctlr_to]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001084 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001085 edma_parm_modify(ctlr_from, PARM_LINK_BCNTRLD, from, 0xffff0000,
1086 PARM_OFFSET(to));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001087}
1088EXPORT_SYMBOL(edma_link);
1089
1090/**
1091 * edma_unlink - cut link from one parameter RAM slot
1092 * @from: parameter RAM slot originating the link
1093 *
1094 * The originating slot should not be part of any active DMA transfer.
1095 * Its link is set to 0xffff.
1096 */
1097void edma_unlink(unsigned from)
1098{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001099 unsigned ctlr;
1100
1101 ctlr = EDMA_CTLR(from);
1102 from = EDMA_CHAN_SLOT(from);
1103
1104 if (from >= edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001105 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001106 edma_parm_or(ctlr, PARM_LINK_BCNTRLD, from, 0xffff);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001107}
1108EXPORT_SYMBOL(edma_unlink);
1109
1110/*-----------------------------------------------------------------------*/
1111
1112/* Parameter RAM operations (ii) -- read/write whole parameter sets */
1113
1114/**
1115 * edma_write_slot - write parameter RAM data for slot
1116 * @slot: number of parameter RAM slot being modified
1117 * @param: data to be written into parameter RAM slot
1118 *
1119 * Use this to assign all parameters of a transfer at once. This
1120 * allows more efficient setup of transfers than issuing multiple
1121 * calls to set up those parameters in small pieces, and provides
1122 * complete control over all transfer options.
1123 */
1124void edma_write_slot(unsigned slot, const struct edmacc_param *param)
1125{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001126 unsigned ctlr;
1127
1128 ctlr = EDMA_CTLR(slot);
1129 slot = EDMA_CHAN_SLOT(slot);
1130
1131 if (slot >= edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001132 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001133 memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot), param,
1134 PARM_SIZE);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001135}
1136EXPORT_SYMBOL(edma_write_slot);
1137
1138/**
1139 * edma_read_slot - read parameter RAM data from slot
1140 * @slot: number of parameter RAM slot being copied
1141 * @param: where to store copy of parameter RAM data
1142 *
1143 * Use this to read data from a parameter RAM slot, perhaps to
1144 * save them as a template for later reuse.
1145 */
1146void edma_read_slot(unsigned slot, struct edmacc_param *param)
1147{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001148 unsigned ctlr;
1149
1150 ctlr = EDMA_CTLR(slot);
1151 slot = EDMA_CHAN_SLOT(slot);
1152
1153 if (slot >= edma_info[ctlr]->num_slots)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001154 return;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001155 memcpy_fromio(param, edmacc_regs_base[ctlr] + PARM_OFFSET(slot),
1156 PARM_SIZE);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001157}
1158EXPORT_SYMBOL(edma_read_slot);
1159
1160/*-----------------------------------------------------------------------*/
1161
1162/* Various EDMA channel control operations */
1163
1164/**
1165 * edma_pause - pause dma on a channel
1166 * @channel: on which edma_start() has been called
1167 *
1168 * This temporarily disables EDMA hardware events on the specified channel,
1169 * preventing them from triggering new transfers on its behalf
1170 */
1171void edma_pause(unsigned channel)
1172{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001173 unsigned ctlr;
1174
1175 ctlr = EDMA_CTLR(channel);
1176 channel = EDMA_CHAN_SLOT(channel);
1177
1178 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001179 unsigned int mask = (1 << (channel & 0x1f));
1180
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001181 edma_shadow0_write_array(ctlr, SH_EECR, channel >> 5, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001182 }
1183}
1184EXPORT_SYMBOL(edma_pause);
1185
1186/**
1187 * edma_resume - resumes dma on a paused channel
1188 * @channel: on which edma_pause() has been called
1189 *
1190 * This re-enables EDMA hardware events on the specified channel.
1191 */
1192void edma_resume(unsigned channel)
1193{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001194 unsigned ctlr;
1195
1196 ctlr = EDMA_CTLR(channel);
1197 channel = EDMA_CHAN_SLOT(channel);
1198
1199 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001200 unsigned int mask = (1 << (channel & 0x1f));
1201
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001202 edma_shadow0_write_array(ctlr, SH_EESR, channel >> 5, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001203 }
1204}
1205EXPORT_SYMBOL(edma_resume);
1206
1207/**
1208 * edma_start - start dma on a channel
1209 * @channel: channel being activated
1210 *
1211 * Channels with event associations will be triggered by their hardware
1212 * events, and channels without such associations will be triggered by
1213 * software. (At this writing there is no interface for using software
1214 * triggers except with channels that don't support hardware triggers.)
1215 *
1216 * Returns zero on success, else negative errno.
1217 */
1218int edma_start(unsigned channel)
1219{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001220 unsigned ctlr;
1221
1222 ctlr = EDMA_CTLR(channel);
1223 channel = EDMA_CHAN_SLOT(channel);
1224
1225 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001226 int j = channel >> 5;
1227 unsigned int mask = (1 << (channel & 0x1f));
1228
1229 /* EDMA channels without event association */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001230 if (test_bit(channel, edma_info[ctlr]->edma_noevent)) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001231 pr_debug("EDMA: ESR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001232 edma_shadow0_read_array(ctlr, SH_ESR, j));
1233 edma_shadow0_write_array(ctlr, SH_ESR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001234 return 0;
1235 }
1236
1237 /* EDMA channel with event association */
1238 pr_debug("EDMA: ER%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001239 edma_shadow0_read_array(ctlr, SH_ER, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001240 /* Clear any pending error */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001241 edma_write_array(ctlr, EDMA_EMCR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001242 /* Clear any SER */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001243 edma_shadow0_write_array(ctlr, SH_SECR, j, mask);
1244 edma_shadow0_write_array(ctlr, SH_EESR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001245 pr_debug("EDMA: EER%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001246 edma_shadow0_read_array(ctlr, SH_EER, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001247 return 0;
1248 }
1249
1250 return -EINVAL;
1251}
1252EXPORT_SYMBOL(edma_start);
1253
1254/**
1255 * edma_stop - stops dma on the channel passed
1256 * @channel: channel being deactivated
1257 *
1258 * When @lch is a channel, any active transfer is paused and
1259 * all pending hardware events are cleared. The current transfer
1260 * may not be resumed, and the channel's Parameter RAM should be
1261 * reinitialized before being reused.
1262 */
1263void edma_stop(unsigned channel)
1264{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001265 unsigned ctlr;
1266
1267 ctlr = EDMA_CTLR(channel);
1268 channel = EDMA_CHAN_SLOT(channel);
1269
1270 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001271 int j = channel >> 5;
1272 unsigned int mask = (1 << (channel & 0x1f));
1273
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001274 edma_shadow0_write_array(ctlr, SH_EECR, j, mask);
1275 edma_shadow0_write_array(ctlr, SH_ECR, j, mask);
1276 edma_shadow0_write_array(ctlr, SH_SECR, j, mask);
1277 edma_write_array(ctlr, EDMA_EMCR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001278
1279 pr_debug("EDMA: EER%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001280 edma_shadow0_read_array(ctlr, SH_EER, j));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001281
1282 /* REVISIT: consider guarding against inappropriate event
1283 * chaining by overwriting with dummy_paramset.
1284 */
1285 }
1286}
1287EXPORT_SYMBOL(edma_stop);
1288
1289/******************************************************************************
1290 *
1291 * It cleans ParamEntry qand bring back EDMA to initial state if media has
1292 * been removed before EDMA has finished.It is usedful for removable media.
1293 * Arguments:
1294 * ch_no - channel no
1295 *
1296 * Return: zero on success, or corresponding error no on failure
1297 *
1298 * FIXME this should not be needed ... edma_stop() should suffice.
1299 *
1300 *****************************************************************************/
1301
1302void edma_clean_channel(unsigned channel)
1303{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001304 unsigned ctlr;
1305
1306 ctlr = EDMA_CTLR(channel);
1307 channel = EDMA_CHAN_SLOT(channel);
1308
1309 if (channel < edma_info[ctlr]->num_channels) {
Kevin Hilmana4768d22009-04-14 07:18:14 -05001310 int j = (channel >> 5);
1311 unsigned int mask = 1 << (channel & 0x1f);
1312
1313 pr_debug("EDMA: EMR%d %08x\n", j,
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001314 edma_read_array(ctlr, EDMA_EMR, j));
1315 edma_shadow0_write_array(ctlr, SH_ECR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001316 /* Clear the corresponding EMR bits */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001317 edma_write_array(ctlr, EDMA_EMCR, j, mask);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001318 /* Clear any SER */
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001319 edma_shadow0_write_array(ctlr, SH_SECR, j, mask);
1320 edma_write(ctlr, EDMA_CCERRCLR, (1 << 16) | 0x3);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001321 }
1322}
1323EXPORT_SYMBOL(edma_clean_channel);
1324
1325/*
1326 * edma_clear_event - clear an outstanding event on the DMA channel
1327 * Arguments:
1328 * channel - channel number
1329 */
1330void edma_clear_event(unsigned channel)
1331{
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001332 unsigned ctlr;
1333
1334 ctlr = EDMA_CTLR(channel);
1335 channel = EDMA_CHAN_SLOT(channel);
1336
1337 if (channel >= edma_info[ctlr]->num_channels)
Kevin Hilmana4768d22009-04-14 07:18:14 -05001338 return;
1339 if (channel < 32)
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001340 edma_write(ctlr, EDMA_ECR, 1 << channel);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001341 else
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001342 edma_write(ctlr, EDMA_ECRH, 1 << (channel - 32));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001343}
1344EXPORT_SYMBOL(edma_clear_event);
1345
1346/*-----------------------------------------------------------------------*/
1347
1348static int __init edma_probe(struct platform_device *pdev)
1349{
1350 struct edma_soc_info *info = pdev->dev.platform_data;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001351 const s8 (*queue_priority_mapping)[2];
1352 const s8 (*queue_tc_mapping)[2];
1353 int i, j, found = 0;
1354 int status = -1;
Kevin Hilmana4768d22009-04-14 07:18:14 -05001355 const s8 *noevent;
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001356 int irq[EDMA_MAX_CC] = {0, 0};
1357 int err_irq[EDMA_MAX_CC] = {0, 0};
1358 struct resource *r[EDMA_MAX_CC] = {NULL};
1359 resource_size_t len[EDMA_MAX_CC];
1360 char res_name[10];
1361 char irq_name[10];
Kevin Hilmana4768d22009-04-14 07:18:14 -05001362
1363 if (!info)
1364 return -ENODEV;
1365
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001366 for (j = 0; j < EDMA_MAX_CC; j++) {
1367 sprintf(res_name, "edma_cc%d", j);
1368 r[j] = platform_get_resource_byname(pdev, IORESOURCE_MEM,
1369 res_name);
1370 if (!r[j]) {
1371 if (found)
1372 break;
1373 else
1374 return -ENODEV;
1375 } else
1376 found = 1;
Kevin Hilmana4768d22009-04-14 07:18:14 -05001377
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001378 len[j] = resource_size(r[j]);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001379
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001380 r[j] = request_mem_region(r[j]->start, len[j],
1381 dev_name(&pdev->dev));
1382 if (!r[j]) {
1383 status = -EBUSY;
1384 goto fail1;
1385 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001386
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001387 edmacc_regs_base[j] = ioremap(r[j]->start, len[j]);
1388 if (!edmacc_regs_base[j]) {
1389 status = -EBUSY;
1390 goto fail1;
1391 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001392
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001393 edma_info[j] = kmalloc(sizeof(struct edma), GFP_KERNEL);
1394 if (!edma_info[j]) {
1395 status = -ENOMEM;
1396 goto fail1;
1397 }
1398 memset(edma_info[j], 0, sizeof(struct edma));
Kevin Hilmana4768d22009-04-14 07:18:14 -05001399
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001400 edma_info[j]->num_channels = min_t(unsigned, info[j].n_channel,
1401 EDMA_MAX_DMACH);
1402 edma_info[j]->num_slots = min_t(unsigned, info[j].n_slot,
1403 EDMA_MAX_PARAMENTRY);
1404 edma_info[j]->num_cc = min_t(unsigned, info[j].n_cc,
1405 EDMA_MAX_CC);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001406
Sandeep Paulraja0f02022009-07-27 09:57:07 -04001407 edma_info[j]->default_queue = info[j].default_queue;
1408 if (!edma_info[j]->default_queue)
1409 edma_info[j]->default_queue = EVENTQ_1;
1410
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001411 dev_dbg(&pdev->dev, "DMA REG BASE ADDR=%p\n",
1412 edmacc_regs_base[j]);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001413
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001414 for (i = 0; i < edma_info[j]->num_slots; i++)
1415 memcpy_toio(edmacc_regs_base[j] + PARM_OFFSET(i),
1416 &dummy_paramset, PARM_SIZE);
Kevin Hilmana4768d22009-04-14 07:18:14 -05001417
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001418 noevent = info[j].noevent;
1419 if (noevent) {
1420 while (*noevent != -1)
1421 set_bit(*noevent++, edma_info[j]->edma_noevent);
1422 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001423
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001424 sprintf(irq_name, "edma%d", j);
1425 irq[j] = platform_get_irq_byname(pdev, irq_name);
1426 edma_info[j]->irq_res_start = irq[j];
1427 status = request_irq(irq[j], dma_irq_handler, 0, "edma",
1428 &pdev->dev);
1429 if (status < 0) {
1430 dev_dbg(&pdev->dev, "request_irq %d failed --> %d\n",
1431 irq[j], status);
1432 goto fail;
1433 }
1434
1435 sprintf(irq_name, "edma%d_err", j);
1436 err_irq[j] = platform_get_irq_byname(pdev, irq_name);
1437 edma_info[j]->irq_res_end = err_irq[j];
1438 status = request_irq(err_irq[j], dma_ccerr_handler, 0,
1439 "edma_error", &pdev->dev);
1440 if (status < 0) {
1441 dev_dbg(&pdev->dev, "request_irq %d failed --> %d\n",
1442 err_irq[j], status);
1443 goto fail;
1444 }
1445
1446 /* Everything lives on transfer controller 1 until otherwise
1447 * specified. This way, long transfers on the low priority queue
1448 * started by the codec engine will not cause audio defects.
1449 */
1450 for (i = 0; i < edma_info[j]->num_channels; i++)
1451 map_dmach_queue(j, i, EVENTQ_1);
1452
1453 queue_tc_mapping = info[j].queue_tc_mapping;
1454 queue_priority_mapping = info[j].queue_priority_mapping;
1455
1456 /* Event queue to TC mapping */
1457 for (i = 0; queue_tc_mapping[i][0] != -1; i++)
1458 map_queue_tc(j, queue_tc_mapping[i][0],
1459 queue_tc_mapping[i][1]);
1460
1461 /* Event queue priority mapping */
1462 for (i = 0; queue_priority_mapping[i][0] != -1; i++)
1463 assign_priority_to_queue(j,
1464 queue_priority_mapping[i][0],
1465 queue_priority_mapping[i][1]);
1466
1467 /* Map the channel to param entry if channel mapping logic
1468 * exist
1469 */
1470 if (edma_read(j, EDMA_CCCFG) & CHMAP_EXIST)
1471 map_dmach_param(j);
1472
1473 for (i = 0; i < info[j].n_region; i++) {
1474 edma_write_array2(j, EDMA_DRAE, i, 0, 0x0);
1475 edma_write_array2(j, EDMA_DRAE, i, 1, 0x0);
1476 edma_write_array(j, EDMA_QRAE, i, 0x0);
1477 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001478 }
1479
1480 if (tc_errs_handled) {
1481 status = request_irq(IRQ_TCERRINT0, dma_tc0err_handler, 0,
1482 "edma_tc0", &pdev->dev);
1483 if (status < 0) {
1484 dev_dbg(&pdev->dev, "request_irq %d failed --> %d\n",
1485 IRQ_TCERRINT0, status);
1486 return status;
1487 }
1488 status = request_irq(IRQ_TCERRINT, dma_tc1err_handler, 0,
1489 "edma_tc1", &pdev->dev);
1490 if (status < 0) {
1491 dev_dbg(&pdev->dev, "request_irq %d --> %d\n",
1492 IRQ_TCERRINT, status);
1493 return status;
1494 }
1495 }
1496
Kevin Hilmana4768d22009-04-14 07:18:14 -05001497 return 0;
1498
1499fail:
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001500 for (i = 0; i < EDMA_MAX_CC; i++) {
1501 if (err_irq[i])
1502 free_irq(err_irq[i], &pdev->dev);
1503 if (irq[i])
1504 free_irq(irq[i], &pdev->dev);
1505 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001506fail1:
Sudhakar Rajashekhara60902a22009-05-21 07:41:35 -04001507 for (i = 0; i < EDMA_MAX_CC; i++) {
1508 if (r[i])
1509 release_mem_region(r[i]->start, len[i]);
1510 if (edmacc_regs_base[i])
1511 iounmap(edmacc_regs_base[i]);
1512 kfree(edma_info[i]);
1513 }
Kevin Hilmana4768d22009-04-14 07:18:14 -05001514 return status;
1515}
1516
1517
1518static struct platform_driver edma_driver = {
1519 .driver.name = "edma",
1520};
1521
1522static int __init edma_init(void)
1523{
1524 return platform_driver_probe(&edma_driver, edma_probe);
1525}
1526arch_initcall(edma_init);
1527