blob: 3a5abb54d5052980c879e81d8ce983e576c2c9b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * BRIEF MODULE DESCRIPTION
4 * The Descriptor Based DMA channel manager that first appeared
5 * on the Au1550. I started with dma.c, but I think all that is
6 * left is this initial comment :-)
7 *
8 * Copyright 2004 Embedded Edge, LLC
9 * dan@embeddededge.com
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
19 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
22 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
23 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *
27 * You should have received a copy of the GNU General Public License along
28 * with this program; if not, write to the Free Software Foundation, Inc.,
29 * 675 Mass Ave, Cambridge, MA 02139, USA.
30 *
31 */
Pete Popove3ad1c22005-03-01 06:33:16 +000032
Manuel Lauss78814462009-10-07 20:15:15 +020033#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/slab.h>
36#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/interrupt.h>
Pete Popov2d32ffa2005-03-01 07:54:50 +000038#include <linux/module.h>
Manuel Laussadcb8622011-05-08 10:42:16 +020039#include <linux/syscore_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/mach-au1x00/au1000.h>
41#include <asm/mach-au1x00/au1xxx_dbdma.h>
Pete Popove3ad1c22005-03-01 06:33:16 +000042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#if defined(CONFIG_SOC_AU1550) || defined(CONFIG_SOC_AU1200)
44
45/*
46 * The Descriptor Based DMA supports up to 16 channels.
47 *
48 * There are 32 devices defined. We keep an internal structure
49 * of devices using these channels, along with additional
50 * information.
51 *
52 * We allocate the descriptors and allow access to them through various
53 * functions. The drivers allocate the data buffers and assign them
54 * to the descriptors.
55 */
Ralf Baechle2f69ddc2005-10-03 13:41:19 +010056static DEFINE_SPINLOCK(au1xxx_dbdma_spin_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040058/* I couldn't find a macro that did this... */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define ALIGN_ADDR(x, a) ((((u32)(x)) + (a-1)) & ~(a-1))
60
Manuel Laussadcb8622011-05-08 10:42:16 +020061static dbdma_global_t *dbdma_gptr =
62 (dbdma_global_t *)KSEG1ADDR(AU1550_DBDMA_CONF_PHYS_ADDR);
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040063static int dbdma_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static dbdev_tab_t dbdev_tab[] = {
66#ifdef CONFIG_SOC_AU1550
67 /* UARTS */
68 { DSCR_CMD0_UART0_TX, DEV_FLAGS_OUT, 0, 8, 0x11100004, 0, 0 },
69 { DSCR_CMD0_UART0_RX, DEV_FLAGS_IN, 0, 8, 0x11100000, 0, 0 },
70 { DSCR_CMD0_UART3_TX, DEV_FLAGS_OUT, 0, 8, 0x11400004, 0, 0 },
71 { DSCR_CMD0_UART3_RX, DEV_FLAGS_IN, 0, 8, 0x11400000, 0, 0 },
72
73 /* EXT DMA */
74 { DSCR_CMD0_DMA_REQ0, 0, 0, 0, 0x00000000, 0, 0 },
75 { DSCR_CMD0_DMA_REQ1, 0, 0, 0, 0x00000000, 0, 0 },
76 { DSCR_CMD0_DMA_REQ2, 0, 0, 0, 0x00000000, 0, 0 },
77 { DSCR_CMD0_DMA_REQ3, 0, 0, 0, 0x00000000, 0, 0 },
78
79 /* USB DEV */
80 { DSCR_CMD0_USBDEV_RX0, DEV_FLAGS_IN, 4, 8, 0x10200000, 0, 0 },
81 { DSCR_CMD0_USBDEV_TX0, DEV_FLAGS_OUT, 4, 8, 0x10200004, 0, 0 },
82 { DSCR_CMD0_USBDEV_TX1, DEV_FLAGS_OUT, 4, 8, 0x10200008, 0, 0 },
83 { DSCR_CMD0_USBDEV_TX2, DEV_FLAGS_OUT, 4, 8, 0x1020000c, 0, 0 },
84 { DSCR_CMD0_USBDEV_RX3, DEV_FLAGS_IN, 4, 8, 0x10200010, 0, 0 },
85 { DSCR_CMD0_USBDEV_RX4, DEV_FLAGS_IN, 4, 8, 0x10200014, 0, 0 },
86
87 /* PSC 0 */
88 { DSCR_CMD0_PSC0_TX, DEV_FLAGS_OUT, 0, 0, 0x11a0001c, 0, 0 },
89 { DSCR_CMD0_PSC0_RX, DEV_FLAGS_IN, 0, 0, 0x11a0001c, 0, 0 },
90
91 /* PSC 1 */
92 { DSCR_CMD0_PSC1_TX, DEV_FLAGS_OUT, 0, 0, 0x11b0001c, 0, 0 },
93 { DSCR_CMD0_PSC1_RX, DEV_FLAGS_IN, 0, 0, 0x11b0001c, 0, 0 },
94
95 /* PSC 2 */
96 { DSCR_CMD0_PSC2_TX, DEV_FLAGS_OUT, 0, 0, 0x10a0001c, 0, 0 },
97 { DSCR_CMD0_PSC2_RX, DEV_FLAGS_IN, 0, 0, 0x10a0001c, 0, 0 },
98
99 /* PSC 3 */
100 { DSCR_CMD0_PSC3_TX, DEV_FLAGS_OUT, 0, 0, 0x10b0001c, 0, 0 },
101 { DSCR_CMD0_PSC3_RX, DEV_FLAGS_IN, 0, 0, 0x10b0001c, 0, 0 },
102
103 { DSCR_CMD0_PCI_WRITE, 0, 0, 0, 0x00000000, 0, 0 }, /* PCI */
104 { DSCR_CMD0_NAND_FLASH, 0, 0, 0, 0x00000000, 0, 0 }, /* NAND */
105
106 /* MAC 0 */
107 { DSCR_CMD0_MAC0_RX, DEV_FLAGS_IN, 0, 0, 0x00000000, 0, 0 },
108 { DSCR_CMD0_MAC0_TX, DEV_FLAGS_OUT, 0, 0, 0x00000000, 0, 0 },
109
110 /* MAC 1 */
111 { DSCR_CMD0_MAC1_RX, DEV_FLAGS_IN, 0, 0, 0x00000000, 0, 0 },
112 { DSCR_CMD0_MAC1_TX, DEV_FLAGS_OUT, 0, 0, 0x00000000, 0, 0 },
113
114#endif /* CONFIG_SOC_AU1550 */
115
116#ifdef CONFIG_SOC_AU1200
117 { DSCR_CMD0_UART0_TX, DEV_FLAGS_OUT, 0, 8, 0x11100004, 0, 0 },
118 { DSCR_CMD0_UART0_RX, DEV_FLAGS_IN, 0, 8, 0x11100000, 0, 0 },
119 { DSCR_CMD0_UART1_TX, DEV_FLAGS_OUT, 0, 8, 0x11200004, 0, 0 },
120 { DSCR_CMD0_UART1_RX, DEV_FLAGS_IN, 0, 8, 0x11200000, 0, 0 },
121
122 { DSCR_CMD0_DMA_REQ0, 0, 0, 0, 0x00000000, 0, 0 },
123 { DSCR_CMD0_DMA_REQ1, 0, 0, 0, 0x00000000, 0, 0 },
124
125 { DSCR_CMD0_MAE_BE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 },
126 { DSCR_CMD0_MAE_FE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 },
127 { DSCR_CMD0_MAE_BOTH, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 },
128 { DSCR_CMD0_LCD, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 },
129
Pete Popove3ad1c22005-03-01 06:33:16 +0000130 { DSCR_CMD0_SDMS_TX0, DEV_FLAGS_OUT, 4, 8, 0x10600000, 0, 0 },
131 { DSCR_CMD0_SDMS_RX0, DEV_FLAGS_IN, 4, 8, 0x10600004, 0, 0 },
132 { DSCR_CMD0_SDMS_TX1, DEV_FLAGS_OUT, 4, 8, 0x10680000, 0, 0 },
133 { DSCR_CMD0_SDMS_RX1, DEV_FLAGS_IN, 4, 8, 0x10680004, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Pete Popove3ad1c22005-03-01 06:33:16 +0000135 { DSCR_CMD0_AES_RX, DEV_FLAGS_IN , 4, 32, 0x10300008, 0, 0 },
136 { DSCR_CMD0_AES_TX, DEV_FLAGS_OUT, 4, 32, 0x10300004, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Pete Popov13bb1992005-09-18 01:10:46 +0000138 { DSCR_CMD0_PSC0_TX, DEV_FLAGS_OUT, 0, 16, 0x11a0001c, 0, 0 },
139 { DSCR_CMD0_PSC0_RX, DEV_FLAGS_IN, 0, 16, 0x11a0001c, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 { DSCR_CMD0_PSC0_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 },
141
Pete Popov13bb1992005-09-18 01:10:46 +0000142 { DSCR_CMD0_PSC1_TX, DEV_FLAGS_OUT, 0, 16, 0x11b0001c, 0, 0 },
143 { DSCR_CMD0_PSC1_RX, DEV_FLAGS_IN, 0, 16, 0x11b0001c, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 { DSCR_CMD0_PSC1_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 },
145
Pete Popove3ad1c22005-03-01 06:33:16 +0000146 { DSCR_CMD0_CIM_RXA, DEV_FLAGS_IN, 0, 32, 0x14004020, 0, 0 },
147 { DSCR_CMD0_CIM_RXB, DEV_FLAGS_IN, 0, 32, 0x14004040, 0, 0 },
148 { DSCR_CMD0_CIM_RXC, DEV_FLAGS_IN, 0, 32, 0x14004060, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 { DSCR_CMD0_CIM_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 },
150
151 { DSCR_CMD0_NAND_FLASH, DEV_FLAGS_IN, 0, 0, 0x00000000, 0, 0 },
152
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400153#endif /* CONFIG_SOC_AU1200 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 { DSCR_CMD0_THROTTLE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 },
156 { DSCR_CMD0_ALWAYS, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 },
Pete Popove3ad1c22005-03-01 06:33:16 +0000157
158 /* Provide 16 user definable device types */
Wolfgang Ocker0ec734c2008-02-10 20:31:33 +0100159 { ~0, 0, 0, 0, 0, 0, 0 },
160 { ~0, 0, 0, 0, 0, 0, 0 },
161 { ~0, 0, 0, 0, 0, 0, 0 },
162 { ~0, 0, 0, 0, 0, 0, 0 },
163 { ~0, 0, 0, 0, 0, 0, 0 },
164 { ~0, 0, 0, 0, 0, 0, 0 },
165 { ~0, 0, 0, 0, 0, 0, 0 },
166 { ~0, 0, 0, 0, 0, 0, 0 },
167 { ~0, 0, 0, 0, 0, 0, 0 },
168 { ~0, 0, 0, 0, 0, 0, 0 },
169 { ~0, 0, 0, 0, 0, 0, 0 },
170 { ~0, 0, 0, 0, 0, 0, 0 },
171 { ~0, 0, 0, 0, 0, 0, 0 },
172 { ~0, 0, 0, 0, 0, 0, 0 },
173 { ~0, 0, 0, 0, 0, 0, 0 },
174 { ~0, 0, 0, 0, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175};
176
Alejandro Martinez Ruiz2b22c032007-10-22 21:36:44 +0200177#define DBDEV_TAB_SIZE ARRAY_SIZE(dbdev_tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Manuel Laussac15dad2008-12-21 09:26:26 +0100179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static chan_tab_t *chan_tab_ptr[NUM_DBDMA_CHANS];
181
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400182static dbdev_tab_t *find_dbdev_id(u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 int i;
185 dbdev_tab_t *p;
186 for (i = 0; i < DBDEV_TAB_SIZE; ++i) {
187 p = &dbdev_tab[i];
188 if (p->dev_id == id)
189 return p;
190 }
191 return NULL;
192}
193
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400194void *au1xxx_ddma_get_nextptr_virt(au1x_ddma_desc_t *dp)
Pete Popov26a940e2005-09-15 08:03:12 +0000195{
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400196 return phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr));
Pete Popov26a940e2005-09-15 08:03:12 +0000197}
198EXPORT_SYMBOL(au1xxx_ddma_get_nextptr_virt);
199
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400200u32 au1xxx_ddma_add_device(dbdev_tab_t *dev)
Pete Popove3ad1c22005-03-01 06:33:16 +0000201{
202 u32 ret = 0;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400203 dbdev_tab_t *p;
204 static u16 new_id = 0x1000;
Pete Popove3ad1c22005-03-01 06:33:16 +0000205
Wolfgang Ocker0ec734c2008-02-10 20:31:33 +0100206 p = find_dbdev_id(~0);
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400207 if (NULL != p) {
Pete Popove3ad1c22005-03-01 06:33:16 +0000208 memcpy(p, dev, sizeof(dbdev_tab_t));
Ralf Baechle21a151d2007-10-11 23:46:15 +0100209 p->dev_id = DSCR_DEV2CUSTOM_ID(new_id, dev->dev_id);
Pete Popove3ad1c22005-03-01 06:33:16 +0000210 ret = p->dev_id;
211 new_id++;
212#if 0
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400213 printk(KERN_DEBUG "add_device: id:%x flags:%x padd:%x\n",
214 p->dev_id, p->dev_flags, p->dev_physaddr);
Pete Popove3ad1c22005-03-01 06:33:16 +0000215#endif
216 }
217
218 return ret;
219}
220EXPORT_SYMBOL(au1xxx_ddma_add_device);
221
Manuel Laussccdb0032008-05-07 13:45:23 +0200222void au1xxx_ddma_del_device(u32 devid)
223{
224 dbdev_tab_t *p = find_dbdev_id(devid);
225
226 if (p != NULL) {
227 memset(p, 0, sizeof(dbdev_tab_t));
228 p->dev_id = ~0;
229 }
230}
231EXPORT_SYMBOL(au1xxx_ddma_del_device);
232
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400233/* Allocate a channel and return a non-zero descriptor if successful. */
234u32 au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid,
Ralf Baechle53e62d32006-09-25 23:32:10 -0700235 void (*callback)(int, void *), void *callparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 unsigned long flags;
Ralf Baechleda4afff2010-02-27 12:53:37 +0100238 u32 used, chan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 u32 dcp;
240 int i;
241 dbdev_tab_t *stp, *dtp;
242 chan_tab_t *ctp;
Pete Popove3ad1c22005-03-01 06:33:16 +0000243 au1x_dma_chan_t *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400245 /*
246 * We do the intialization on the first channel allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 * We have to wait because of the interrupt handler initialization
248 * which can't be done successfully during board set up.
249 */
250 if (!dbdma_initialized)
Manuel Lauss78814462009-10-07 20:15:15 +0200251 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400253 stp = find_dbdev_id(srcid);
254 if (stp == NULL)
Ralf Baechle53e62d32006-09-25 23:32:10 -0700255 return 0;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400256 dtp = find_dbdev_id(destid);
257 if (dtp == NULL)
Ralf Baechle53e62d32006-09-25 23:32:10 -0700258 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 used = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400262 /* Check to see if we can get both channels. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 spin_lock_irqsave(&au1xxx_dbdma_spin_lock, flags);
264 if (!(stp->dev_flags & DEV_FLAGS_INUSE) ||
265 (stp->dev_flags & DEV_FLAGS_ANYUSE)) {
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000266 /* Got source */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 stp->dev_flags |= DEV_FLAGS_INUSE;
268 if (!(dtp->dev_flags & DEV_FLAGS_INUSE) ||
269 (dtp->dev_flags & DEV_FLAGS_ANYUSE)) {
270 /* Got destination */
271 dtp->dev_flags |= DEV_FLAGS_INUSE;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400272 } else {
273 /* Can't get dest. Release src. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 stp->dev_flags &= ~DEV_FLAGS_INUSE;
275 used++;
276 }
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400277 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 used++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 spin_unlock_irqrestore(&au1xxx_dbdma_spin_lock, flags);
280
Ralf Baechleda4afff2010-02-27 12:53:37 +0100281 if (used)
282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Ralf Baechleda4afff2010-02-27 12:53:37 +0100284 /* Let's see if we can allocate a channel for it. */
285 ctp = NULL;
286 chan = 0;
287 spin_lock_irqsave(&au1xxx_dbdma_spin_lock, flags);
288 for (i = 0; i < NUM_DBDMA_CHANS; i++)
289 if (chan_tab_ptr[i] == NULL) {
290 /*
291 * If kmalloc fails, it is caught below same
292 * as a channel not available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 */
Ralf Baechleda4afff2010-02-27 12:53:37 +0100294 ctp = kmalloc(sizeof(chan_tab_t), GFP_ATOMIC);
295 chan_tab_ptr[i] = ctp;
296 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Ralf Baechleda4afff2010-02-27 12:53:37 +0100298 spin_unlock_irqrestore(&au1xxx_dbdma_spin_lock, flags);
299
300 if (ctp != NULL) {
301 memset(ctp, 0, sizeof(chan_tab_t));
302 ctp->chan_index = chan = i;
Manuel Laussadcb8622011-05-08 10:42:16 +0200303 dcp = KSEG1ADDR(AU1550_DBDMA_PHYS_ADDR);
Ralf Baechleda4afff2010-02-27 12:53:37 +0100304 dcp += (0x0100 * chan);
305 ctp->chan_ptr = (au1x_dma_chan_t *)dcp;
306 cp = (au1x_dma_chan_t *)dcp;
307 ctp->chan_src = stp;
308 ctp->chan_dest = dtp;
309 ctp->chan_callback = callback;
310 ctp->chan_callparam = callparam;
311
312 /* Initialize channel configuration. */
313 i = 0;
314 if (stp->dev_intlevel)
315 i |= DDMA_CFG_SED;
316 if (stp->dev_intpolarity)
317 i |= DDMA_CFG_SP;
318 if (dtp->dev_intlevel)
319 i |= DDMA_CFG_DED;
320 if (dtp->dev_intpolarity)
321 i |= DDMA_CFG_DP;
322 if ((stp->dev_flags & DEV_FLAGS_SYNC) ||
323 (dtp->dev_flags & DEV_FLAGS_SYNC))
324 i |= DDMA_CFG_SYNC;
325 cp->ddma_cfg = i;
326 au_sync();
327
328 /*
329 * Return a non-zero value that can be used to find the channel
330 * information in subsequent operations.
331 */
332 return (u32)(&chan_tab_ptr[chan]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Ralf Baechleda4afff2010-02-27 12:53:37 +0100334
335 /* Release devices */
336 stp->dev_flags &= ~DEV_FLAGS_INUSE;
337 dtp->dev_flags &= ~DEV_FLAGS_INUSE;
338
339 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
Pete Popove3ad1c22005-03-01 06:33:16 +0000341EXPORT_SYMBOL(au1xxx_dbdma_chan_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400343/*
344 * Set the device width if source or destination is a FIFO.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * Should be 8, 16, or 32 bits.
346 */
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400347u32 au1xxx_dbdma_set_devwidth(u32 chanid, int bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 u32 rv;
350 chan_tab_t *ctp;
351 dbdev_tab_t *stp, *dtp;
352
353 ctp = *((chan_tab_t **)chanid);
354 stp = ctp->chan_src;
355 dtp = ctp->chan_dest;
356 rv = 0;
357
358 if (stp->dev_flags & DEV_FLAGS_IN) { /* Source in fifo */
359 rv = stp->dev_devwidth;
360 stp->dev_devwidth = bits;
361 }
362 if (dtp->dev_flags & DEV_FLAGS_OUT) { /* Destination out fifo */
363 rv = dtp->dev_devwidth;
364 dtp->dev_devwidth = bits;
365 }
366
367 return rv;
368}
Pete Popove3ad1c22005-03-01 06:33:16 +0000369EXPORT_SYMBOL(au1xxx_dbdma_set_devwidth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400371/* Allocate a descriptor ring, initializing as much as possible. */
372u32 au1xxx_dbdma_ring_alloc(u32 chanid, int entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 int i;
375 u32 desc_base, srcid, destid;
376 u32 cmd0, cmd1, src1, dest1;
377 u32 src0, dest0;
378 chan_tab_t *ctp;
379 dbdev_tab_t *stp, *dtp;
380 au1x_ddma_desc_t *dp;
381
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400382 /*
383 * I guess we could check this to be within the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * range of the table......
385 */
386 ctp = *((chan_tab_t **)chanid);
387 stp = ctp->chan_src;
388 dtp = ctp->chan_dest;
389
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400390 /*
391 * The descriptors must be 32-byte aligned. There is a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 * possibility the allocation will give us such an address,
393 * and if we try that first we are likely to not waste larger
394 * slabs of memory.
395 */
Pete Popove3ad1c22005-03-01 06:33:16 +0000396 desc_base = (u32)kmalloc(entries * sizeof(au1x_ddma_desc_t),
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400397 GFP_KERNEL|GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (desc_base == 0)
399 return 0;
400
401 if (desc_base & 0x1f) {
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400402 /*
403 * Lost....do it again, allocate extra, and round
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 * the address base.
405 */
406 kfree((const void *)desc_base);
407 i = entries * sizeof(au1x_ddma_desc_t);
408 i += (sizeof(au1x_ddma_desc_t) - 1);
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400409 desc_base = (u32)kmalloc(i, GFP_KERNEL|GFP_DMA);
410 if (desc_base == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return 0;
412
Manuel Lauss22f4bb62010-01-26 20:39:33 +0100413 ctp->cdb_membase = desc_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 desc_base = ALIGN_ADDR(desc_base, sizeof(au1x_ddma_desc_t));
Manuel Lauss22f4bb62010-01-26 20:39:33 +0100415 } else
416 ctp->cdb_membase = desc_base;
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 dp = (au1x_ddma_desc_t *)desc_base;
419
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400420 /* Keep track of the base descriptor. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 ctp->chan_desc_base = dp;
422
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400423 /* Initialize the rings with as much information as we know. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 srcid = stp->dev_id;
425 destid = dtp->dev_id;
426
427 cmd0 = cmd1 = src1 = dest1 = 0;
428 src0 = dest0 = 0;
429
430 cmd0 |= DSCR_CMD0_SID(srcid);
431 cmd0 |= DSCR_CMD0_DID(destid);
432 cmd0 |= DSCR_CMD0_IE | DSCR_CMD0_CV;
Pete Popov13bb1992005-09-18 01:10:46 +0000433 cmd0 |= DSCR_CMD0_ST(DSCR_CMD0_ST_NOCHANGE);
434
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400435 /* Is it mem to mem transfer? */
436 if (((DSCR_CUSTOM2DEV_ID(srcid) == DSCR_CMD0_THROTTLE) ||
437 (DSCR_CUSTOM2DEV_ID(srcid) == DSCR_CMD0_ALWAYS)) &&
438 ((DSCR_CUSTOM2DEV_ID(destid) == DSCR_CMD0_THROTTLE) ||
439 (DSCR_CUSTOM2DEV_ID(destid) == DSCR_CMD0_ALWAYS)))
440 cmd0 |= DSCR_CMD0_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 switch (stp->dev_devwidth) {
443 case 8:
444 cmd0 |= DSCR_CMD0_SW(DSCR_CMD0_BYTE);
445 break;
446 case 16:
447 cmd0 |= DSCR_CMD0_SW(DSCR_CMD0_HALFWORD);
448 break;
449 case 32:
450 default:
451 cmd0 |= DSCR_CMD0_SW(DSCR_CMD0_WORD);
452 break;
453 }
454
455 switch (dtp->dev_devwidth) {
456 case 8:
457 cmd0 |= DSCR_CMD0_DW(DSCR_CMD0_BYTE);
458 break;
459 case 16:
460 cmd0 |= DSCR_CMD0_DW(DSCR_CMD0_HALFWORD);
461 break;
462 case 32:
463 default:
464 cmd0 |= DSCR_CMD0_DW(DSCR_CMD0_WORD);
465 break;
466 }
467
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400468 /*
469 * If the device is marked as an in/out FIFO, ensure it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 * set non-coherent.
471 */
472 if (stp->dev_flags & DEV_FLAGS_IN)
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400473 cmd0 |= DSCR_CMD0_SN; /* Source in FIFO */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (dtp->dev_flags & DEV_FLAGS_OUT)
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400475 cmd0 |= DSCR_CMD0_DN; /* Destination out FIFO */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400477 /*
478 * Set up source1. For now, assume no stride and increment.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 * A channel attribute update can change this later.
480 */
481 switch (stp->dev_tsize) {
482 case 1:
483 src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE1);
484 break;
485 case 2:
486 src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE2);
487 break;
488 case 4:
489 src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE4);
490 break;
491 case 8:
492 default:
493 src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE8);
494 break;
495 }
496
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400497 /* If source input is FIFO, set static address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (stp->dev_flags & DEV_FLAGS_IN) {
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400499 if (stp->dev_flags & DEV_FLAGS_BURSTABLE)
Pete Popove3ad1c22005-03-01 06:33:16 +0000500 src1 |= DSCR_SRC1_SAM(DSCR_xAM_BURST);
501 else
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400502 src1 |= DSCR_SRC1_SAM(DSCR_xAM_STATIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400504
Pete Popove3ad1c22005-03-01 06:33:16 +0000505 if (stp->dev_physaddr)
506 src0 = stp->dev_physaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400508 /*
509 * Set up dest1. For now, assume no stride and increment.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 * A channel attribute update can change this later.
511 */
512 switch (dtp->dev_tsize) {
513 case 1:
514 dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE1);
515 break;
516 case 2:
517 dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE2);
518 break;
519 case 4:
520 dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE4);
521 break;
522 case 8:
523 default:
524 dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE8);
525 break;
526 }
527
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400528 /* If destination output is FIFO, set static address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (dtp->dev_flags & DEV_FLAGS_OUT) {
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400530 if (dtp->dev_flags & DEV_FLAGS_BURSTABLE)
531 dest1 |= DSCR_DEST1_DAM(DSCR_xAM_BURST);
532 else
533 dest1 |= DSCR_DEST1_DAM(DSCR_xAM_STATIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400535
Pete Popove3ad1c22005-03-01 06:33:16 +0000536 if (dtp->dev_physaddr)
537 dest0 = dtp->dev_physaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Pete Popove3ad1c22005-03-01 06:33:16 +0000539#if 0
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400540 printk(KERN_DEBUG "did:%x sid:%x cmd0:%x cmd1:%x source0:%x "
541 "source1:%x dest0:%x dest1:%x\n",
542 dtp->dev_id, stp->dev_id, cmd0, cmd1, src0,
543 src1, dest0, dest1);
Pete Popove3ad1c22005-03-01 06:33:16 +0000544#endif
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400545 for (i = 0; i < entries; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 dp->dscr_cmd0 = cmd0;
547 dp->dscr_cmd1 = cmd1;
548 dp->dscr_source0 = src0;
549 dp->dscr_source1 = src1;
550 dp->dscr_dest0 = dest0;
551 dp->dscr_dest1 = dest1;
552 dp->dscr_stat = 0;
Pete Popov13bb1992005-09-18 01:10:46 +0000553 dp->sw_context = 0;
554 dp->sw_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 dp->dscr_nxtptr = DSCR_NXTPTR(virt_to_phys(dp + 1));
556 dp++;
557 }
558
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400559 /* Make last descrptor point to the first. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 dp--;
561 dp->dscr_nxtptr = DSCR_NXTPTR(virt_to_phys(ctp->chan_desc_base));
562 ctp->get_ptr = ctp->put_ptr = ctp->cur_ptr = ctp->chan_desc_base;
563
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400564 return (u32)ctp->chan_desc_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
Pete Popove3ad1c22005-03-01 06:33:16 +0000566EXPORT_SYMBOL(au1xxx_dbdma_ring_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400568/*
569 * Put a source buffer into the DMA ring.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * This updates the source pointer and byte count. Normally used
571 * for memory to fifo transfers.
572 */
Manuel Lauss963accb2009-10-13 20:22:35 +0200573u32 au1xxx_dbdma_put_source(u32 chanid, dma_addr_t buf, int nbytes, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 chan_tab_t *ctp;
576 au1x_ddma_desc_t *dp;
577
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400578 /*
579 * I guess we could check this to be within the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 * range of the table......
581 */
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400582 ctp = *(chan_tab_t **)chanid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400584 /*
585 * We should have multiple callers for a particular channel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 * an interrupt doesn't affect this pointer nor the descriptor,
587 * so no locking should be needed.
588 */
589 dp = ctp->put_ptr;
590
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400591 /*
592 * If the descriptor is valid, we are way ahead of the DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * engine, so just return an error condition.
594 */
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400595 if (dp->dscr_cmd0 & DSCR_CMD0_V)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400598 /* Load up buffer address and byte count. */
Manuel Lauss963accb2009-10-13 20:22:35 +0200599 dp->dscr_source0 = buf & ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 dp->dscr_cmd1 = nbytes;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400601 /* Check flags */
Pete Popove3ad1c22005-03-01 06:33:16 +0000602 if (flags & DDMA_FLAGS_IE)
603 dp->dscr_cmd0 |= DSCR_CMD0_IE;
604 if (flags & DDMA_FLAGS_NOIE)
605 dp->dscr_cmd0 &= ~DSCR_CMD0_IE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Pete Popove3ad1c22005-03-01 06:33:16 +0000607 /*
608 * There is an errata on the Au1200/Au1550 parts that could result
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400609 * in "stale" data being DMA'ed. It has to do with the snoop logic on
610 * the cache eviction buffer. DMA_NONCOHERENT is on by default for
611 * these parts. If it is fixed in the future, these dma_cache_inv will
Pete Popove3ad1c22005-03-01 06:33:16 +0000612 * just be nothing more than empty macros. See io.h.
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400613 */
Pete Popov2d32ffa2005-03-01 07:54:50 +0000614 dma_cache_wback_inv((unsigned long)buf, nbytes);
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400615 dp->dscr_cmd0 |= DSCR_CMD0_V; /* Let it rip */
Pete Popove3ad1c22005-03-01 06:33:16 +0000616 au_sync();
Julia Lawall42ecda12009-12-13 12:40:39 +0100617 dma_cache_wback_inv((unsigned long)dp, sizeof(*dp));
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400618 ctp->chan_ptr->ddma_dbell = 0;
Pete Popove3ad1c22005-03-01 06:33:16 +0000619
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400620 /* Get next descriptor pointer. */
Pete Popov13bb1992005-09-18 01:10:46 +0000621 ctp->put_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr));
622
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400623 /* Return something non-zero. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return nbytes;
625}
Manuel Laussea071cc2009-10-13 20:22:34 +0200626EXPORT_SYMBOL(au1xxx_dbdma_put_source);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628/* Put a destination buffer into the DMA ring.
629 * This updates the destination pointer and byte count. Normally used
630 * to place an empty buffer into the ring for fifo to memory transfers.
631 */
Manuel Lauss963accb2009-10-13 20:22:35 +0200632u32 au1xxx_dbdma_put_dest(u32 chanid, dma_addr_t buf, int nbytes, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 chan_tab_t *ctp;
635 au1x_ddma_desc_t *dp;
636
637 /* I guess we could check this to be within the
638 * range of the table......
639 */
640 ctp = *((chan_tab_t **)chanid);
641
642 /* We should have multiple callers for a particular channel,
643 * an interrupt doesn't affect this pointer nor the descriptor,
644 * so no locking should be needed.
645 */
646 dp = ctp->put_ptr;
647
648 /* If the descriptor is valid, we are way ahead of the DMA
649 * engine, so just return an error condition.
650 */
651 if (dp->dscr_cmd0 & DSCR_CMD0_V)
652 return 0;
653
Pete Popove3ad1c22005-03-01 06:33:16 +0000654 /* Load up buffer address and byte count */
655
656 /* Check flags */
657 if (flags & DDMA_FLAGS_IE)
658 dp->dscr_cmd0 |= DSCR_CMD0_IE;
659 if (flags & DDMA_FLAGS_NOIE)
660 dp->dscr_cmd0 &= ~DSCR_CMD0_IE;
661
Manuel Lauss963accb2009-10-13 20:22:35 +0200662 dp->dscr_dest0 = buf & ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 dp->dscr_cmd1 = nbytes;
Pete Popove3ad1c22005-03-01 06:33:16 +0000664#if 0
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400665 printk(KERN_DEBUG "cmd0:%x cmd1:%x source0:%x source1:%x dest0:%x dest1:%x\n",
666 dp->dscr_cmd0, dp->dscr_cmd1, dp->dscr_source0,
667 dp->dscr_source1, dp->dscr_dest0, dp->dscr_dest1);
Pete Popove3ad1c22005-03-01 06:33:16 +0000668#endif
669 /*
670 * There is an errata on the Au1200/Au1550 parts that could result in
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400671 * "stale" data being DMA'ed. It has to do with the snoop logic on the
672 * cache eviction buffer. DMA_NONCOHERENT is on by default for these
673 * parts. If it is fixed in the future, these dma_cache_inv will just
Pete Popove3ad1c22005-03-01 06:33:16 +0000674 * be nothing more than empty macros. See io.h.
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400675 */
Ralf Baechle21a151d2007-10-11 23:46:15 +0100676 dma_cache_inv((unsigned long)buf, nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 dp->dscr_cmd0 |= DSCR_CMD0_V; /* Let it rip */
Pete Popove3ad1c22005-03-01 06:33:16 +0000678 au_sync();
Julia Lawall42ecda12009-12-13 12:40:39 +0100679 dma_cache_wback_inv((unsigned long)dp, sizeof(*dp));
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400680 ctp->chan_ptr->ddma_dbell = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400682 /* Get next descriptor pointer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 ctp->put_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr));
684
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400685 /* Return something non-zero. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return nbytes;
687}
Manuel Laussea071cc2009-10-13 20:22:34 +0200688EXPORT_SYMBOL(au1xxx_dbdma_put_dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400690/*
691 * Get a destination buffer into the DMA ring.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * Normally used to get a full buffer from the ring during fifo
693 * to memory transfers. This does not set the valid bit, you will
694 * have to put another destination buffer to keep the DMA going.
695 */
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400696u32 au1xxx_dbdma_get_dest(u32 chanid, void **buf, int *nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 chan_tab_t *ctp;
699 au1x_ddma_desc_t *dp;
700 u32 rv;
701
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400702 /*
703 * I guess we could check this to be within the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 * range of the table......
705 */
706 ctp = *((chan_tab_t **)chanid);
707
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400708 /*
709 * We should have multiple callers for a particular channel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 * an interrupt doesn't affect this pointer nor the descriptor,
711 * so no locking should be needed.
712 */
713 dp = ctp->get_ptr;
714
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400715 /*
716 * If the descriptor is valid, we are way ahead of the DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 * engine, so just return an error condition.
718 */
719 if (dp->dscr_cmd0 & DSCR_CMD0_V)
720 return 0;
721
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400722 /* Return buffer address and byte count. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 *buf = (void *)(phys_to_virt(dp->dscr_dest0));
724 *nbytes = dp->dscr_cmd1;
725 rv = dp->dscr_stat;
726
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400727 /* Get next descriptor pointer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 ctp->get_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr));
729
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400730 /* Return something non-zero. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return rv;
732}
Domen Puncer3e2c6ef2006-06-23 12:00:21 +0200733EXPORT_SYMBOL_GPL(au1xxx_dbdma_get_dest);
734
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400735void au1xxx_dbdma_stop(u32 chanid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 chan_tab_t *ctp;
Pete Popove3ad1c22005-03-01 06:33:16 +0000738 au1x_dma_chan_t *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 int halt_timeout = 0;
740
741 ctp = *((chan_tab_t **)chanid);
742
743 cp = ctp->chan_ptr;
744 cp->ddma_cfg &= ~DDMA_CFG_EN; /* Disable channel */
745 au_sync();
746 while (!(cp->ddma_stat & DDMA_STAT_H)) {
747 udelay(1);
748 halt_timeout++;
749 if (halt_timeout > 100) {
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400750 printk(KERN_WARNING "warning: DMA channel won't halt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 break;
752 }
753 }
754 /* clear current desc valid and doorbell */
755 cp->ddma_stat |= (DDMA_STAT_DB | DDMA_STAT_V);
756 au_sync();
757}
Pete Popove3ad1c22005-03-01 06:33:16 +0000758EXPORT_SYMBOL(au1xxx_dbdma_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400760/*
761 * Start using the current descriptor pointer. If the DBDMA encounters
762 * a non-valid descriptor, it will stop. In this case, we can just
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * continue by adding a buffer to the list and starting again.
764 */
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400765void au1xxx_dbdma_start(u32 chanid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 chan_tab_t *ctp;
Pete Popove3ad1c22005-03-01 06:33:16 +0000768 au1x_dma_chan_t *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 ctp = *((chan_tab_t **)chanid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 cp = ctp->chan_ptr;
772 cp->ddma_desptr = virt_to_phys(ctp->cur_ptr);
773 cp->ddma_cfg |= DDMA_CFG_EN; /* Enable channel */
774 au_sync();
Pete Popove3ad1c22005-03-01 06:33:16 +0000775 cp->ddma_dbell = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 au_sync();
777}
Pete Popove3ad1c22005-03-01 06:33:16 +0000778EXPORT_SYMBOL(au1xxx_dbdma_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400780void au1xxx_dbdma_reset(u32 chanid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 chan_tab_t *ctp;
783 au1x_ddma_desc_t *dp;
784
785 au1xxx_dbdma_stop(chanid);
786
787 ctp = *((chan_tab_t **)chanid);
788 ctp->get_ptr = ctp->put_ptr = ctp->cur_ptr = ctp->chan_desc_base;
789
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400790 /* Run through the descriptors and reset the valid indicator. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 dp = ctp->chan_desc_base;
792
793 do {
794 dp->dscr_cmd0 &= ~DSCR_CMD0_V;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400795 /*
796 * Reset our software status -- this is used to determine
797 * if a descriptor is in use by upper level software. Since
Pete Popove3ad1c22005-03-01 06:33:16 +0000798 * posting can reset 'V' bit.
799 */
800 dp->sw_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 dp = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr));
802 } while (dp != ctp->chan_desc_base);
803}
Pete Popove3ad1c22005-03-01 06:33:16 +0000804EXPORT_SYMBOL(au1xxx_dbdma_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400806u32 au1xxx_get_dma_residue(u32 chanid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 chan_tab_t *ctp;
Pete Popove3ad1c22005-03-01 06:33:16 +0000809 au1x_dma_chan_t *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 u32 rv;
811
812 ctp = *((chan_tab_t **)chanid);
813 cp = ctp->chan_ptr;
814
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400815 /* This is only valid if the channel is stopped. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 rv = cp->ddma_bytecnt;
817 au_sync();
818
819 return rv;
820}
Domen Puncer3e2c6ef2006-06-23 12:00:21 +0200821EXPORT_SYMBOL_GPL(au1xxx_get_dma_residue);
822
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400823void au1xxx_dbdma_chan_free(u32 chanid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 chan_tab_t *ctp;
826 dbdev_tab_t *stp, *dtp;
827
828 ctp = *((chan_tab_t **)chanid);
829 stp = ctp->chan_src;
830 dtp = ctp->chan_dest;
831
832 au1xxx_dbdma_stop(chanid);
833
Manuel Lauss22f4bb62010-01-26 20:39:33 +0100834 kfree((void *)ctp->cdb_membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 stp->dev_flags &= ~DEV_FLAGS_INUSE;
837 dtp->dev_flags &= ~DEV_FLAGS_INUSE;
838 chan_tab_ptr[ctp->chan_index] = NULL;
839
840 kfree(ctp);
841}
Pete Popove3ad1c22005-03-01 06:33:16 +0000842EXPORT_SYMBOL(au1xxx_dbdma_chan_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400844static irqreturn_t dbdma_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Pete Popov2d32ffa2005-03-01 07:54:50 +0000846 u32 intstat;
847 u32 chan_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 chan_tab_t *ctp;
849 au1x_ddma_desc_t *dp;
Pete Popove3ad1c22005-03-01 06:33:16 +0000850 au1x_dma_chan_t *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 intstat = dbdma_gptr->ddma_intstat;
853 au_sync();
Sergei Shtylyov4b366732007-12-05 19:08:24 +0300854 chan_index = __ffs(intstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 ctp = chan_tab_ptr[chan_index];
857 cp = ctp->chan_ptr;
858 dp = ctp->cur_ptr;
859
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400860 /* Reset interrupt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 cp->ddma_irq = 0;
862 au_sync();
863
864 if (ctp->chan_callback)
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400865 ctp->chan_callback(irq, ctp->chan_callparam);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 ctp->cur_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr));
Pete Popov2d32ffa2005-03-01 07:54:50 +0000868 return IRQ_RETVAL(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400871void au1xxx_dbdma_dump(u32 chanid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400873 chan_tab_t *ctp;
874 au1x_ddma_desc_t *dp;
875 dbdev_tab_t *stp, *dtp;
876 au1x_dma_chan_t *cp;
877 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 ctp = *((chan_tab_t **)chanid);
880 stp = ctp->chan_src;
881 dtp = ctp->chan_dest;
882 cp = ctp->chan_ptr;
883
Frans Pop52d7ecd2010-02-06 18:47:13 +0100884 printk(KERN_DEBUG "Chan %x, stp %x (dev %d) dtp %x (dev %d)\n",
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400885 (u32)ctp, (u32)stp, stp - dbdev_tab, (u32)dtp,
886 dtp - dbdev_tab);
887 printk(KERN_DEBUG "desc base %x, get %x, put %x, cur %x\n",
888 (u32)(ctp->chan_desc_base), (u32)(ctp->get_ptr),
889 (u32)(ctp->put_ptr), (u32)(ctp->cur_ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400891 printk(KERN_DEBUG "dbdma chan %x\n", (u32)cp);
892 printk(KERN_DEBUG "cfg %08x, desptr %08x, statptr %08x\n",
893 cp->ddma_cfg, cp->ddma_desptr, cp->ddma_statptr);
894 printk(KERN_DEBUG "dbell %08x, irq %08x, stat %08x, bytecnt %08x\n",
895 cp->ddma_dbell, cp->ddma_irq, cp->ddma_stat,
896 cp->ddma_bytecnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400898 /* Run through the descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 dp = ctp->chan_desc_base;
900
901 do {
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400902 printk(KERN_DEBUG "Dp[%d]= %08x, cmd0 %08x, cmd1 %08x\n",
903 i++, (u32)dp, dp->dscr_cmd0, dp->dscr_cmd1);
904 printk(KERN_DEBUG "src0 %08x, src1 %08x, dest0 %08x, dest1 %08x\n",
905 dp->dscr_source0, dp->dscr_source1,
906 dp->dscr_dest0, dp->dscr_dest1);
907 printk(KERN_DEBUG "stat %08x, nxtptr %08x\n",
908 dp->dscr_stat, dp->dscr_nxtptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 dp = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr));
910 } while (dp != ctp->chan_desc_base);
911}
912
Pete Popove3ad1c22005-03-01 06:33:16 +0000913/* Put a descriptor into the DMA ring.
914 * This updates the source/destination pointers and byte count.
915 */
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400916u32 au1xxx_dbdma_put_dscr(u32 chanid, au1x_ddma_desc_t *dscr)
Pete Popove3ad1c22005-03-01 06:33:16 +0000917{
918 chan_tab_t *ctp;
919 au1x_ddma_desc_t *dp;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400920 u32 nbytes = 0;
Pete Popove3ad1c22005-03-01 06:33:16 +0000921
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400922 /*
923 * I guess we could check this to be within the
924 * range of the table......
925 */
Pete Popove3ad1c22005-03-01 06:33:16 +0000926 ctp = *((chan_tab_t **)chanid);
927
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400928 /*
929 * We should have multiple callers for a particular channel,
930 * an interrupt doesn't affect this pointer nor the descriptor,
931 * so no locking should be needed.
932 */
Pete Popove3ad1c22005-03-01 06:33:16 +0000933 dp = ctp->put_ptr;
934
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400935 /*
936 * If the descriptor is valid, we are way ahead of the DMA
937 * engine, so just return an error condition.
938 */
Pete Popove3ad1c22005-03-01 06:33:16 +0000939 if (dp->dscr_cmd0 & DSCR_CMD0_V)
940 return 0;
941
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400942 /* Load up buffer addresses and byte count. */
Pete Popove3ad1c22005-03-01 06:33:16 +0000943 dp->dscr_dest0 = dscr->dscr_dest0;
944 dp->dscr_source0 = dscr->dscr_source0;
945 dp->dscr_dest1 = dscr->dscr_dest1;
946 dp->dscr_source1 = dscr->dscr_source1;
947 dp->dscr_cmd1 = dscr->dscr_cmd1;
948 nbytes = dscr->dscr_cmd1;
949 /* Allow the caller to specifiy if an interrupt is generated */
950 dp->dscr_cmd0 &= ~DSCR_CMD0_IE;
951 dp->dscr_cmd0 |= dscr->dscr_cmd0 | DSCR_CMD0_V;
952 ctp->chan_ptr->ddma_dbell = 0;
953
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400954 /* Get next descriptor pointer. */
Pete Popove3ad1c22005-03-01 06:33:16 +0000955 ctp->put_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr));
956
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400957 /* Return something non-zero. */
Pete Popove3ad1c22005-03-01 06:33:16 +0000958 return nbytes;
959}
960
Manuel Lauss96d660c2010-04-14 20:33:44 +0200961
Manuel Laussadcb8622011-05-08 10:42:16 +0200962static unsigned long alchemy_dbdma_pm_data[NUM_DBDMA_CHANS + 1][6];
Manuel Lauss96d660c2010-04-14 20:33:44 +0200963
Manuel Laussadcb8622011-05-08 10:42:16 +0200964static int alchemy_dbdma_suspend(void)
Manuel Laussac15dad2008-12-21 09:26:26 +0100965{
966 int i;
Manuel Laussadcb8622011-05-08 10:42:16 +0200967 void __iomem *addr;
Manuel Laussac15dad2008-12-21 09:26:26 +0100968
Manuel Laussadcb8622011-05-08 10:42:16 +0200969 addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_CONF_PHYS_ADDR);
970 alchemy_dbdma_pm_data[0][0] = __raw_readl(addr + 0x00);
971 alchemy_dbdma_pm_data[0][1] = __raw_readl(addr + 0x04);
972 alchemy_dbdma_pm_data[0][2] = __raw_readl(addr + 0x08);
973 alchemy_dbdma_pm_data[0][3] = __raw_readl(addr + 0x0c);
Manuel Laussac15dad2008-12-21 09:26:26 +0100974
975 /* save channel configurations */
Manuel Laussadcb8622011-05-08 10:42:16 +0200976 addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_PHYS_ADDR);
977 for (i = 1; i <= NUM_DBDMA_CHANS; i++) {
978 alchemy_dbdma_pm_data[i][0] = __raw_readl(addr + 0x00);
979 alchemy_dbdma_pm_data[i][1] = __raw_readl(addr + 0x04);
980 alchemy_dbdma_pm_data[i][2] = __raw_readl(addr + 0x08);
981 alchemy_dbdma_pm_data[i][3] = __raw_readl(addr + 0x0c);
982 alchemy_dbdma_pm_data[i][4] = __raw_readl(addr + 0x10);
983 alchemy_dbdma_pm_data[i][5] = __raw_readl(addr + 0x14);
Manuel Laussac15dad2008-12-21 09:26:26 +0100984
985 /* halt channel */
Manuel Laussadcb8622011-05-08 10:42:16 +0200986 __raw_writel(alchemy_dbdma_pm_data[i][0] & ~1, addr + 0x00);
987 wmb();
988 while (!(__raw_readl(addr + 0x14) & 1))
989 wmb();
Manuel Laussac15dad2008-12-21 09:26:26 +0100990
991 addr += 0x100; /* next channel base */
992 }
993 /* disable channel interrupts */
Manuel Laussadcb8622011-05-08 10:42:16 +0200994 addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_CONF_PHYS_ADDR);
995 __raw_writel(0, addr + 0x0c);
996 wmb();
Manuel Lauss96d660c2010-04-14 20:33:44 +0200997
998 return 0;
Manuel Laussac15dad2008-12-21 09:26:26 +0100999}
1000
Manuel Laussadcb8622011-05-08 10:42:16 +02001001static void alchemy_dbdma_resume(void)
Manuel Laussac15dad2008-12-21 09:26:26 +01001002{
1003 int i;
Manuel Laussadcb8622011-05-08 10:42:16 +02001004 void __iomem *addr;
Manuel Laussac15dad2008-12-21 09:26:26 +01001005
Manuel Laussadcb8622011-05-08 10:42:16 +02001006 addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_CONF_PHYS_ADDR);
1007 __raw_writel(alchemy_dbdma_pm_data[0][0], addr + 0x00);
1008 __raw_writel(alchemy_dbdma_pm_data[0][1], addr + 0x04);
1009 __raw_writel(alchemy_dbdma_pm_data[0][2], addr + 0x08);
1010 __raw_writel(alchemy_dbdma_pm_data[0][3], addr + 0x0c);
Manuel Laussac15dad2008-12-21 09:26:26 +01001011
1012 /* restore channel configurations */
Manuel Laussadcb8622011-05-08 10:42:16 +02001013 addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_PHYS_ADDR);
1014 for (i = 1; i <= NUM_DBDMA_CHANS; i++) {
1015 __raw_writel(alchemy_dbdma_pm_data[i][0], addr + 0x00);
1016 __raw_writel(alchemy_dbdma_pm_data[i][1], addr + 0x04);
1017 __raw_writel(alchemy_dbdma_pm_data[i][2], addr + 0x08);
1018 __raw_writel(alchemy_dbdma_pm_data[i][3], addr + 0x0c);
1019 __raw_writel(alchemy_dbdma_pm_data[i][4], addr + 0x10);
1020 __raw_writel(alchemy_dbdma_pm_data[i][5], addr + 0x14);
1021 wmb();
Manuel Laussac15dad2008-12-21 09:26:26 +01001022 addr += 0x100; /* next channel base */
1023 }
1024}
Manuel Lauss96d660c2010-04-14 20:33:44 +02001025
Manuel Laussadcb8622011-05-08 10:42:16 +02001026static struct syscore_ops alchemy_dbdma_syscore_ops = {
Manuel Lauss96d660c2010-04-14 20:33:44 +02001027 .suspend = alchemy_dbdma_suspend,
1028 .resume = alchemy_dbdma_resume,
1029};
1030
Manuel Lauss78814462009-10-07 20:15:15 +02001031static int __init au1xxx_dbdma_init(void)
1032{
1033 int irq_nr, ret;
1034
1035 dbdma_gptr->ddma_config = 0;
1036 dbdma_gptr->ddma_throttle = 0;
1037 dbdma_gptr->ddma_inten = 0xffff;
1038 au_sync();
1039
1040 switch (alchemy_get_cputype()) {
1041 case ALCHEMY_CPU_AU1550:
1042 irq_nr = AU1550_DDMA_INT;
1043 break;
1044 case ALCHEMY_CPU_AU1200:
1045 irq_nr = AU1200_DDMA_INT;
1046 break;
1047 default:
1048 return -ENODEV;
1049 }
1050
1051 ret = request_irq(irq_nr, dbdma_interrupt, IRQF_DISABLED,
1052 "Au1xxx dbdma", (void *)dbdma_gptr);
1053 if (ret)
1054 printk(KERN_ERR "Cannot grab DBDMA interrupt!\n");
1055 else {
1056 dbdma_initialized = 1;
1057 printk(KERN_INFO "Alchemy DBDMA initialized\n");
Manuel Laussadcb8622011-05-08 10:42:16 +02001058 register_syscore_ops(&alchemy_dbdma_syscore_ops);
Manuel Lauss78814462009-10-07 20:15:15 +02001059 }
1060
1061 return ret;
1062}
1063subsys_initcall(au1xxx_dbdma_init);
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065#endif /* defined(CONFIG_SOC_AU1550) || defined(CONFIG_SOC_AU1200) */