Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/kernel.h> |
| 34 | #include <linux/errno.h> |
| 35 | #include <linux/sched.h> |
| 36 | #include <linux/slab.h> |
| 37 | #include <linux/spinlock.h> |
| 38 | #include <linux/string.h> |
| 39 | #include <linux/delay.h> |
| 40 | #include <linux/interrupt.h> |
Pete Popov | 2d32ffa | 2005-03-01 07:54:50 +0000 | [diff] [blame] | 41 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/mach-au1x00/au1000.h> |
| 43 | #include <asm/mach-au1x00/au1xxx_dbdma.h> |
| 44 | #include <asm/system.h> |
| 45 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #if defined(CONFIG_SOC_AU1550) || defined(CONFIG_SOC_AU1200) |
| 48 | |
| 49 | /* |
| 50 | * The Descriptor Based DMA supports up to 16 channels. |
| 51 | * |
| 52 | * There are 32 devices defined. We keep an internal structure |
| 53 | * of devices using these channels, along with additional |
| 54 | * information. |
| 55 | * |
| 56 | * We allocate the descriptors and allow access to them through various |
| 57 | * functions. The drivers allocate the data buffers and assign them |
| 58 | * to the descriptors. |
| 59 | */ |
Ralf Baechle | 2f69ddc | 2005-10-03 13:41:19 +0100 | [diff] [blame] | 60 | static DEFINE_SPINLOCK(au1xxx_dbdma_spin_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | /* I couldn't find a macro that did this...... |
| 63 | */ |
| 64 | #define ALIGN_ADDR(x, a) ((((u32)(x)) + (a-1)) & ~(a-1)) |
| 65 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 66 | static dbdma_global_t *dbdma_gptr = (dbdma_global_t *)DDMA_GLOBAL_BASE; |
| 67 | static int dbdma_initialized=0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | static void au1xxx_dbdma_init(void); |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | static dbdev_tab_t dbdev_tab[] = { |
| 71 | #ifdef CONFIG_SOC_AU1550 |
| 72 | /* UARTS */ |
| 73 | { DSCR_CMD0_UART0_TX, DEV_FLAGS_OUT, 0, 8, 0x11100004, 0, 0 }, |
| 74 | { DSCR_CMD0_UART0_RX, DEV_FLAGS_IN, 0, 8, 0x11100000, 0, 0 }, |
| 75 | { DSCR_CMD0_UART3_TX, DEV_FLAGS_OUT, 0, 8, 0x11400004, 0, 0 }, |
| 76 | { DSCR_CMD0_UART3_RX, DEV_FLAGS_IN, 0, 8, 0x11400000, 0, 0 }, |
| 77 | |
| 78 | /* EXT DMA */ |
| 79 | { DSCR_CMD0_DMA_REQ0, 0, 0, 0, 0x00000000, 0, 0 }, |
| 80 | { DSCR_CMD0_DMA_REQ1, 0, 0, 0, 0x00000000, 0, 0 }, |
| 81 | { DSCR_CMD0_DMA_REQ2, 0, 0, 0, 0x00000000, 0, 0 }, |
| 82 | { DSCR_CMD0_DMA_REQ3, 0, 0, 0, 0x00000000, 0, 0 }, |
| 83 | |
| 84 | /* USB DEV */ |
| 85 | { DSCR_CMD0_USBDEV_RX0, DEV_FLAGS_IN, 4, 8, 0x10200000, 0, 0 }, |
| 86 | { DSCR_CMD0_USBDEV_TX0, DEV_FLAGS_OUT, 4, 8, 0x10200004, 0, 0 }, |
| 87 | { DSCR_CMD0_USBDEV_TX1, DEV_FLAGS_OUT, 4, 8, 0x10200008, 0, 0 }, |
| 88 | { DSCR_CMD0_USBDEV_TX2, DEV_FLAGS_OUT, 4, 8, 0x1020000c, 0, 0 }, |
| 89 | { DSCR_CMD0_USBDEV_RX3, DEV_FLAGS_IN, 4, 8, 0x10200010, 0, 0 }, |
| 90 | { DSCR_CMD0_USBDEV_RX4, DEV_FLAGS_IN, 4, 8, 0x10200014, 0, 0 }, |
| 91 | |
| 92 | /* PSC 0 */ |
| 93 | { DSCR_CMD0_PSC0_TX, DEV_FLAGS_OUT, 0, 0, 0x11a0001c, 0, 0 }, |
| 94 | { DSCR_CMD0_PSC0_RX, DEV_FLAGS_IN, 0, 0, 0x11a0001c, 0, 0 }, |
| 95 | |
| 96 | /* PSC 1 */ |
| 97 | { DSCR_CMD0_PSC1_TX, DEV_FLAGS_OUT, 0, 0, 0x11b0001c, 0, 0 }, |
| 98 | { DSCR_CMD0_PSC1_RX, DEV_FLAGS_IN, 0, 0, 0x11b0001c, 0, 0 }, |
| 99 | |
| 100 | /* PSC 2 */ |
| 101 | { DSCR_CMD0_PSC2_TX, DEV_FLAGS_OUT, 0, 0, 0x10a0001c, 0, 0 }, |
| 102 | { DSCR_CMD0_PSC2_RX, DEV_FLAGS_IN, 0, 0, 0x10a0001c, 0, 0 }, |
| 103 | |
| 104 | /* PSC 3 */ |
| 105 | { DSCR_CMD0_PSC3_TX, DEV_FLAGS_OUT, 0, 0, 0x10b0001c, 0, 0 }, |
| 106 | { DSCR_CMD0_PSC3_RX, DEV_FLAGS_IN, 0, 0, 0x10b0001c, 0, 0 }, |
| 107 | |
| 108 | { DSCR_CMD0_PCI_WRITE, 0, 0, 0, 0x00000000, 0, 0 }, /* PCI */ |
| 109 | { DSCR_CMD0_NAND_FLASH, 0, 0, 0, 0x00000000, 0, 0 }, /* NAND */ |
| 110 | |
| 111 | /* MAC 0 */ |
| 112 | { DSCR_CMD0_MAC0_RX, DEV_FLAGS_IN, 0, 0, 0x00000000, 0, 0 }, |
| 113 | { DSCR_CMD0_MAC0_TX, DEV_FLAGS_OUT, 0, 0, 0x00000000, 0, 0 }, |
| 114 | |
| 115 | /* MAC 1 */ |
| 116 | { DSCR_CMD0_MAC1_RX, DEV_FLAGS_IN, 0, 0, 0x00000000, 0, 0 }, |
| 117 | { DSCR_CMD0_MAC1_TX, DEV_FLAGS_OUT, 0, 0, 0x00000000, 0, 0 }, |
| 118 | |
| 119 | #endif /* CONFIG_SOC_AU1550 */ |
| 120 | |
| 121 | #ifdef CONFIG_SOC_AU1200 |
| 122 | { DSCR_CMD0_UART0_TX, DEV_FLAGS_OUT, 0, 8, 0x11100004, 0, 0 }, |
| 123 | { DSCR_CMD0_UART0_RX, DEV_FLAGS_IN, 0, 8, 0x11100000, 0, 0 }, |
| 124 | { DSCR_CMD0_UART1_TX, DEV_FLAGS_OUT, 0, 8, 0x11200004, 0, 0 }, |
| 125 | { DSCR_CMD0_UART1_RX, DEV_FLAGS_IN, 0, 8, 0x11200000, 0, 0 }, |
| 126 | |
| 127 | { DSCR_CMD0_DMA_REQ0, 0, 0, 0, 0x00000000, 0, 0 }, |
| 128 | { DSCR_CMD0_DMA_REQ1, 0, 0, 0, 0x00000000, 0, 0 }, |
| 129 | |
| 130 | { DSCR_CMD0_MAE_BE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, |
| 131 | { DSCR_CMD0_MAE_FE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, |
| 132 | { DSCR_CMD0_MAE_BOTH, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, |
| 133 | { DSCR_CMD0_LCD, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, |
| 134 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 135 | { DSCR_CMD0_SDMS_TX0, DEV_FLAGS_OUT, 4, 8, 0x10600000, 0, 0 }, |
| 136 | { DSCR_CMD0_SDMS_RX0, DEV_FLAGS_IN, 4, 8, 0x10600004, 0, 0 }, |
| 137 | { DSCR_CMD0_SDMS_TX1, DEV_FLAGS_OUT, 4, 8, 0x10680000, 0, 0 }, |
| 138 | { DSCR_CMD0_SDMS_RX1, DEV_FLAGS_IN, 4, 8, 0x10680004, 0, 0 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 140 | { DSCR_CMD0_AES_RX, DEV_FLAGS_IN , 4, 32, 0x10300008, 0, 0 }, |
| 141 | { DSCR_CMD0_AES_TX, DEV_FLAGS_OUT, 4, 32, 0x10300004, 0, 0 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Pete Popov | 13bb199 | 2005-09-18 01:10:46 +0000 | [diff] [blame] | 143 | { DSCR_CMD0_PSC0_TX, DEV_FLAGS_OUT, 0, 16, 0x11a0001c, 0, 0 }, |
| 144 | { DSCR_CMD0_PSC0_RX, DEV_FLAGS_IN, 0, 16, 0x11a0001c, 0, 0 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { DSCR_CMD0_PSC0_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, |
| 146 | |
Pete Popov | 13bb199 | 2005-09-18 01:10:46 +0000 | [diff] [blame] | 147 | { DSCR_CMD0_PSC1_TX, DEV_FLAGS_OUT, 0, 16, 0x11b0001c, 0, 0 }, |
| 148 | { DSCR_CMD0_PSC1_RX, DEV_FLAGS_IN, 0, 16, 0x11b0001c, 0, 0 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { DSCR_CMD0_PSC1_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, |
| 150 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 151 | { DSCR_CMD0_CIM_RXA, DEV_FLAGS_IN, 0, 32, 0x14004020, 0, 0 }, |
| 152 | { DSCR_CMD0_CIM_RXB, DEV_FLAGS_IN, 0, 32, 0x14004040, 0, 0 }, |
| 153 | { DSCR_CMD0_CIM_RXC, DEV_FLAGS_IN, 0, 32, 0x14004060, 0, 0 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { DSCR_CMD0_CIM_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, |
| 155 | |
| 156 | { DSCR_CMD0_NAND_FLASH, DEV_FLAGS_IN, 0, 0, 0x00000000, 0, 0 }, |
| 157 | |
| 158 | #endif // CONFIG_SOC_AU1200 |
| 159 | |
| 160 | { DSCR_CMD0_THROTTLE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, |
| 161 | { DSCR_CMD0_ALWAYS, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 162 | |
| 163 | /* Provide 16 user definable device types */ |
| 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 }, |
| 175 | { 0, 0, 0, 0, 0, 0, 0 }, |
| 176 | { 0, 0, 0, 0, 0, 0, 0 }, |
| 177 | { 0, 0, 0, 0, 0, 0, 0 }, |
| 178 | { 0, 0, 0, 0, 0, 0, 0 }, |
| 179 | { 0, 0, 0, 0, 0, 0, 0 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | }; |
| 181 | |
| 182 | #define DBDEV_TAB_SIZE (sizeof(dbdev_tab) / sizeof(dbdev_tab_t)) |
| 183 | |
| 184 | static chan_tab_t *chan_tab_ptr[NUM_DBDMA_CHANS]; |
| 185 | |
| 186 | static dbdev_tab_t * |
| 187 | find_dbdev_id (u32 id) |
| 188 | { |
| 189 | int i; |
| 190 | dbdev_tab_t *p; |
| 191 | for (i = 0; i < DBDEV_TAB_SIZE; ++i) { |
| 192 | p = &dbdev_tab[i]; |
| 193 | if (p->dev_id == id) |
| 194 | return p; |
| 195 | } |
| 196 | return NULL; |
| 197 | } |
| 198 | |
Pete Popov | 26a940e | 2005-09-15 08:03:12 +0000 | [diff] [blame] | 199 | void * au1xxx_ddma_get_nextptr_virt(au1x_ddma_desc_t *dp) |
| 200 | { |
| 201 | return phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); |
| 202 | } |
| 203 | EXPORT_SYMBOL(au1xxx_ddma_get_nextptr_virt); |
| 204 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 205 | u32 |
| 206 | au1xxx_ddma_add_device(dbdev_tab_t *dev) |
| 207 | { |
| 208 | u32 ret = 0; |
| 209 | dbdev_tab_t *p=NULL; |
| 210 | static u16 new_id=0x1000; |
| 211 | |
| 212 | p = find_dbdev_id(0); |
| 213 | if ( NULL != p ) |
| 214 | { |
| 215 | memcpy(p, dev, sizeof(dbdev_tab_t)); |
Ralf Baechle | a3dddd5 | 2006-03-11 08:18:41 +0000 | [diff] [blame] | 216 | p->dev_id = DSCR_DEV2CUSTOM_ID(new_id,dev->dev_id); |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 217 | ret = p->dev_id; |
| 218 | new_id++; |
| 219 | #if 0 |
| 220 | printk("add_device: id:%x flags:%x padd:%x\n", |
| 221 | p->dev_id, p->dev_flags, p->dev_physaddr ); |
| 222 | #endif |
| 223 | } |
| 224 | |
| 225 | return ret; |
| 226 | } |
| 227 | EXPORT_SYMBOL(au1xxx_ddma_add_device); |
| 228 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | /* Allocate a channel and return a non-zero descriptor if successful. |
| 230 | */ |
| 231 | u32 |
| 232 | au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid, |
| 233 | void (*callback)(int, void *, struct pt_regs *), void *callparam) |
| 234 | { |
| 235 | unsigned long flags; |
| 236 | u32 used, chan, rv; |
| 237 | u32 dcp; |
| 238 | int i; |
| 239 | dbdev_tab_t *stp, *dtp; |
| 240 | chan_tab_t *ctp; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 241 | au1x_dma_chan_t *cp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | |
| 243 | /* We do the intialization on the first channel allocation. |
| 244 | * We have to wait because of the interrupt handler initialization |
| 245 | * which can't be done successfully during board set up. |
| 246 | */ |
| 247 | if (!dbdma_initialized) |
| 248 | au1xxx_dbdma_init(); |
| 249 | dbdma_initialized = 1; |
| 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | if ((stp = find_dbdev_id(srcid)) == NULL) return 0; |
| 252 | if ((dtp = find_dbdev_id(destid)) == NULL) return 0; |
| 253 | |
| 254 | used = 0; |
| 255 | rv = 0; |
| 256 | |
| 257 | /* Check to see if we can get both channels. |
| 258 | */ |
| 259 | spin_lock_irqsave(&au1xxx_dbdma_spin_lock, flags); |
| 260 | if (!(stp->dev_flags & DEV_FLAGS_INUSE) || |
| 261 | (stp->dev_flags & DEV_FLAGS_ANYUSE)) { |
Ralf Baechle | a3dddd5 | 2006-03-11 08:18:41 +0000 | [diff] [blame] | 262 | /* Got source */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | stp->dev_flags |= DEV_FLAGS_INUSE; |
| 264 | if (!(dtp->dev_flags & DEV_FLAGS_INUSE) || |
| 265 | (dtp->dev_flags & DEV_FLAGS_ANYUSE)) { |
| 266 | /* Got destination */ |
| 267 | dtp->dev_flags |= DEV_FLAGS_INUSE; |
| 268 | } |
| 269 | else { |
| 270 | /* Can't get dest. Release src. |
| 271 | */ |
| 272 | stp->dev_flags &= ~DEV_FLAGS_INUSE; |
| 273 | used++; |
| 274 | } |
| 275 | } |
| 276 | else { |
| 277 | used++; |
| 278 | } |
| 279 | spin_unlock_irqrestore(&au1xxx_dbdma_spin_lock, flags); |
| 280 | |
| 281 | if (!used) { |
| 282 | /* Let's see if we can allocate a channel for it. |
| 283 | */ |
| 284 | ctp = NULL; |
| 285 | chan = 0; |
| 286 | spin_lock_irqsave(&au1xxx_dbdma_spin_lock, flags); |
| 287 | for (i=0; i<NUM_DBDMA_CHANS; i++) { |
| 288 | if (chan_tab_ptr[i] == NULL) { |
| 289 | /* If kmalloc fails, it is caught below same |
| 290 | * as a channel not available. |
| 291 | */ |
Domen Puncer | c061389 | 2006-06-23 11:59:50 +0200 | [diff] [blame] | 292 | ctp = kmalloc(sizeof(chan_tab_t), GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | chan_tab_ptr[i] = ctp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | break; |
| 295 | } |
| 296 | } |
| 297 | spin_unlock_irqrestore(&au1xxx_dbdma_spin_lock, flags); |
| 298 | |
| 299 | if (ctp != NULL) { |
| 300 | memset(ctp, 0, sizeof(chan_tab_t)); |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 301 | ctp->chan_index = chan = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | dcp = DDMA_CHANNEL_BASE; |
| 303 | dcp += (0x0100 * chan); |
| 304 | ctp->chan_ptr = (au1x_dma_chan_t *)dcp; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 305 | cp = (au1x_dma_chan_t *)dcp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | ctp->chan_src = stp; |
| 307 | ctp->chan_dest = dtp; |
| 308 | ctp->chan_callback = callback; |
| 309 | ctp->chan_callparam = callparam; |
| 310 | |
| 311 | /* Initialize channel configuration. |
| 312 | */ |
| 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; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 322 | if ((stp->dev_flags & DEV_FLAGS_SYNC) || |
| 323 | (dtp->dev_flags & DEV_FLAGS_SYNC)) |
| 324 | i |= DDMA_CFG_SYNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | cp->ddma_cfg = i; |
| 326 | au_sync(); |
| 327 | |
| 328 | /* Return a non-zero value that can be used to |
| 329 | * find the channel information in subsequent |
| 330 | * operations. |
| 331 | */ |
| 332 | rv = (u32)(&chan_tab_ptr[chan]); |
| 333 | } |
| 334 | else { |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 335 | /* Release devices */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | stp->dev_flags &= ~DEV_FLAGS_INUSE; |
| 337 | dtp->dev_flags &= ~DEV_FLAGS_INUSE; |
| 338 | } |
| 339 | } |
| 340 | return rv; |
| 341 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 342 | EXPORT_SYMBOL(au1xxx_dbdma_chan_alloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | /* Set the device width if source or destination is a FIFO. |
| 345 | * Should be 8, 16, or 32 bits. |
| 346 | */ |
| 347 | u32 |
| 348 | au1xxx_dbdma_set_devwidth(u32 chanid, int bits) |
| 349 | { |
| 350 | u32 rv; |
| 351 | chan_tab_t *ctp; |
| 352 | dbdev_tab_t *stp, *dtp; |
| 353 | |
| 354 | ctp = *((chan_tab_t **)chanid); |
| 355 | stp = ctp->chan_src; |
| 356 | dtp = ctp->chan_dest; |
| 357 | rv = 0; |
| 358 | |
| 359 | if (stp->dev_flags & DEV_FLAGS_IN) { /* Source in fifo */ |
| 360 | rv = stp->dev_devwidth; |
| 361 | stp->dev_devwidth = bits; |
| 362 | } |
| 363 | if (dtp->dev_flags & DEV_FLAGS_OUT) { /* Destination out fifo */ |
| 364 | rv = dtp->dev_devwidth; |
| 365 | dtp->dev_devwidth = bits; |
| 366 | } |
| 367 | |
| 368 | return rv; |
| 369 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 370 | EXPORT_SYMBOL(au1xxx_dbdma_set_devwidth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | |
| 372 | /* Allocate a descriptor ring, initializing as much as possible. |
| 373 | */ |
| 374 | u32 |
| 375 | au1xxx_dbdma_ring_alloc(u32 chanid, int entries) |
| 376 | { |
| 377 | int i; |
| 378 | u32 desc_base, srcid, destid; |
| 379 | u32 cmd0, cmd1, src1, dest1; |
| 380 | u32 src0, dest0; |
| 381 | chan_tab_t *ctp; |
| 382 | dbdev_tab_t *stp, *dtp; |
| 383 | au1x_ddma_desc_t *dp; |
| 384 | |
| 385 | /* I guess we could check this to be within the |
| 386 | * range of the table...... |
| 387 | */ |
| 388 | ctp = *((chan_tab_t **)chanid); |
| 389 | stp = ctp->chan_src; |
| 390 | dtp = ctp->chan_dest; |
| 391 | |
| 392 | /* The descriptors must be 32-byte aligned. There is a |
| 393 | * possibility the allocation will give us such an address, |
| 394 | * and if we try that first we are likely to not waste larger |
| 395 | * slabs of memory. |
| 396 | */ |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 397 | desc_base = (u32)kmalloc(entries * sizeof(au1x_ddma_desc_t), |
| 398 | GFP_KERNEL|GFP_DMA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | if (desc_base == 0) |
| 400 | return 0; |
| 401 | |
| 402 | if (desc_base & 0x1f) { |
| 403 | /* Lost....do it again, allocate extra, and round |
| 404 | * 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); |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 409 | if ((desc_base = (u32)kmalloc(i, GFP_KERNEL|GFP_DMA)) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | return 0; |
| 411 | |
| 412 | desc_base = ALIGN_ADDR(desc_base, sizeof(au1x_ddma_desc_t)); |
| 413 | } |
| 414 | dp = (au1x_ddma_desc_t *)desc_base; |
| 415 | |
| 416 | /* Keep track of the base descriptor. |
| 417 | */ |
| 418 | ctp->chan_desc_base = dp; |
| 419 | |
| 420 | /* Initialize the rings with as much information as we know. |
| 421 | */ |
| 422 | srcid = stp->dev_id; |
| 423 | destid = dtp->dev_id; |
| 424 | |
| 425 | cmd0 = cmd1 = src1 = dest1 = 0; |
| 426 | src0 = dest0 = 0; |
| 427 | |
| 428 | cmd0 |= DSCR_CMD0_SID(srcid); |
| 429 | cmd0 |= DSCR_CMD0_DID(destid); |
| 430 | cmd0 |= DSCR_CMD0_IE | DSCR_CMD0_CV; |
Pete Popov | 13bb199 | 2005-09-18 01:10:46 +0000 | [diff] [blame] | 431 | cmd0 |= DSCR_CMD0_ST(DSCR_CMD0_ST_NOCHANGE); |
| 432 | |
| 433 | /* is it mem to mem transfer? */ |
| 434 | if(((DSCR_CUSTOM2DEV_ID(srcid) == DSCR_CMD0_THROTTLE) || (DSCR_CUSTOM2DEV_ID(srcid) == DSCR_CMD0_ALWAYS)) && |
| 435 | ((DSCR_CUSTOM2DEV_ID(destid) == DSCR_CMD0_THROTTLE) || (DSCR_CUSTOM2DEV_ID(destid) == DSCR_CMD0_ALWAYS))) { |
| 436 | cmd0 |= DSCR_CMD0_MEM; |
| 437 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
| 439 | switch (stp->dev_devwidth) { |
| 440 | case 8: |
| 441 | cmd0 |= DSCR_CMD0_SW(DSCR_CMD0_BYTE); |
| 442 | break; |
| 443 | case 16: |
| 444 | cmd0 |= DSCR_CMD0_SW(DSCR_CMD0_HALFWORD); |
| 445 | break; |
| 446 | case 32: |
| 447 | default: |
| 448 | cmd0 |= DSCR_CMD0_SW(DSCR_CMD0_WORD); |
| 449 | break; |
| 450 | } |
| 451 | |
| 452 | switch (dtp->dev_devwidth) { |
| 453 | case 8: |
| 454 | cmd0 |= DSCR_CMD0_DW(DSCR_CMD0_BYTE); |
| 455 | break; |
| 456 | case 16: |
| 457 | cmd0 |= DSCR_CMD0_DW(DSCR_CMD0_HALFWORD); |
| 458 | break; |
| 459 | case 32: |
| 460 | default: |
| 461 | cmd0 |= DSCR_CMD0_DW(DSCR_CMD0_WORD); |
| 462 | break; |
| 463 | } |
| 464 | |
| 465 | /* If the device is marked as an in/out FIFO, ensure it is |
| 466 | * set non-coherent. |
| 467 | */ |
| 468 | if (stp->dev_flags & DEV_FLAGS_IN) |
| 469 | cmd0 |= DSCR_CMD0_SN; /* Source in fifo */ |
| 470 | if (dtp->dev_flags & DEV_FLAGS_OUT) |
| 471 | cmd0 |= DSCR_CMD0_DN; /* Destination out fifo */ |
| 472 | |
| 473 | /* Set up source1. For now, assume no stride and increment. |
| 474 | * A channel attribute update can change this later. |
| 475 | */ |
| 476 | switch (stp->dev_tsize) { |
| 477 | case 1: |
| 478 | src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE1); |
| 479 | break; |
| 480 | case 2: |
| 481 | src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE2); |
| 482 | break; |
| 483 | case 4: |
| 484 | src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE4); |
| 485 | break; |
| 486 | case 8: |
| 487 | default: |
| 488 | src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE8); |
| 489 | break; |
| 490 | } |
| 491 | |
| 492 | /* If source input is fifo, set static address. |
| 493 | */ |
| 494 | if (stp->dev_flags & DEV_FLAGS_IN) { |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 495 | if ( stp->dev_flags & DEV_FLAGS_BURSTABLE ) |
| 496 | src1 |= DSCR_SRC1_SAM(DSCR_xAM_BURST); |
| 497 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | src1 |= DSCR_SRC1_SAM(DSCR_xAM_STATIC); |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 501 | if (stp->dev_physaddr) |
| 502 | src0 = stp->dev_physaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | |
| 504 | /* Set up dest1. For now, assume no stride and increment. |
| 505 | * A channel attribute update can change this later. |
| 506 | */ |
| 507 | switch (dtp->dev_tsize) { |
| 508 | case 1: |
| 509 | dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE1); |
| 510 | break; |
| 511 | case 2: |
| 512 | dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE2); |
| 513 | break; |
| 514 | case 4: |
| 515 | dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE4); |
| 516 | break; |
| 517 | case 8: |
| 518 | default: |
| 519 | dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE8); |
| 520 | break; |
| 521 | } |
| 522 | |
| 523 | /* If destination output is fifo, set static address. |
| 524 | */ |
| 525 | if (dtp->dev_flags & DEV_FLAGS_OUT) { |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 526 | if ( dtp->dev_flags & DEV_FLAGS_BURSTABLE ) |
| 527 | dest1 |= DSCR_DEST1_DAM(DSCR_xAM_BURST); |
| 528 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | dest1 |= DSCR_DEST1_DAM(DSCR_xAM_STATIC); |
| 530 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 531 | if (dtp->dev_physaddr) |
| 532 | dest0 = dtp->dev_physaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 534 | #if 0 |
| 535 | printk("did:%x sid:%x cmd0:%x cmd1:%x source0:%x source1:%x dest0:%x dest1:%x\n", |
| 536 | dtp->dev_id, stp->dev_id, cmd0, cmd1, src0, src1, dest0, dest1 ); |
| 537 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | for (i=0; i<entries; i++) { |
| 539 | dp->dscr_cmd0 = cmd0; |
| 540 | dp->dscr_cmd1 = cmd1; |
| 541 | dp->dscr_source0 = src0; |
| 542 | dp->dscr_source1 = src1; |
| 543 | dp->dscr_dest0 = dest0; |
| 544 | dp->dscr_dest1 = dest1; |
| 545 | dp->dscr_stat = 0; |
Pete Popov | 13bb199 | 2005-09-18 01:10:46 +0000 | [diff] [blame] | 546 | dp->sw_context = 0; |
| 547 | dp->sw_status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | dp->dscr_nxtptr = DSCR_NXTPTR(virt_to_phys(dp + 1)); |
| 549 | dp++; |
| 550 | } |
| 551 | |
| 552 | /* Make last descrptor point to the first. |
| 553 | */ |
| 554 | dp--; |
| 555 | dp->dscr_nxtptr = DSCR_NXTPTR(virt_to_phys(ctp->chan_desc_base)); |
| 556 | ctp->get_ptr = ctp->put_ptr = ctp->cur_ptr = ctp->chan_desc_base; |
| 557 | |
| 558 | return (u32)(ctp->chan_desc_base); |
| 559 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 560 | EXPORT_SYMBOL(au1xxx_dbdma_ring_alloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
| 562 | /* Put a source buffer into the DMA ring. |
| 563 | * This updates the source pointer and byte count. Normally used |
| 564 | * for memory to fifo transfers. |
| 565 | */ |
| 566 | u32 |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 567 | _au1xxx_dbdma_put_source(u32 chanid, void *buf, int nbytes, u32 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | { |
| 569 | chan_tab_t *ctp; |
| 570 | au1x_ddma_desc_t *dp; |
| 571 | |
| 572 | /* I guess we could check this to be within the |
| 573 | * range of the table...... |
| 574 | */ |
| 575 | ctp = *((chan_tab_t **)chanid); |
| 576 | |
| 577 | /* We should have multiple callers for a particular channel, |
| 578 | * an interrupt doesn't affect this pointer nor the descriptor, |
| 579 | * so no locking should be needed. |
| 580 | */ |
| 581 | dp = ctp->put_ptr; |
| 582 | |
| 583 | /* If the descriptor is valid, we are way ahead of the DMA |
| 584 | * engine, so just return an error condition. |
| 585 | */ |
| 586 | if (dp->dscr_cmd0 & DSCR_CMD0_V) { |
| 587 | return 0; |
| 588 | } |
| 589 | |
| 590 | /* Load up buffer address and byte count. |
| 591 | */ |
| 592 | dp->dscr_source0 = virt_to_phys(buf); |
| 593 | dp->dscr_cmd1 = nbytes; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 594 | /* Check flags */ |
| 595 | if (flags & DDMA_FLAGS_IE) |
| 596 | dp->dscr_cmd0 |= DSCR_CMD0_IE; |
| 597 | if (flags & DDMA_FLAGS_NOIE) |
| 598 | dp->dscr_cmd0 &= ~DSCR_CMD0_IE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 600 | /* |
| 601 | * There is an errata on the Au1200/Au1550 parts that could result |
| 602 | * in "stale" data being DMA'd. It has to do with the snoop logic on |
| 603 | * the dache eviction buffer. NONCOHERENT_IO is on by default for |
| 604 | * these parts. If it is fixedin the future, these dma_cache_inv will |
| 605 | * just be nothing more than empty macros. See io.h. |
| 606 | * */ |
Pete Popov | 2d32ffa | 2005-03-01 07:54:50 +0000 | [diff] [blame] | 607 | dma_cache_wback_inv((unsigned long)buf, nbytes); |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 608 | dp->dscr_cmd0 |= DSCR_CMD0_V; /* Let it rip */ |
| 609 | au_sync(); |
Pete Popov | 2d32ffa | 2005-03-01 07:54:50 +0000 | [diff] [blame] | 610 | dma_cache_wback_inv((unsigned long)dp, sizeof(dp)); |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 611 | ctp->chan_ptr->ddma_dbell = 0; |
| 612 | |
Pete Popov | 13bb199 | 2005-09-18 01:10:46 +0000 | [diff] [blame] | 613 | /* Get next descriptor pointer. |
| 614 | */ |
| 615 | ctp->put_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); |
| 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | /* return something not zero. |
| 618 | */ |
| 619 | return nbytes; |
| 620 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 621 | EXPORT_SYMBOL(_au1xxx_dbdma_put_source); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
| 623 | /* Put a destination buffer into the DMA ring. |
| 624 | * This updates the destination pointer and byte count. Normally used |
| 625 | * to place an empty buffer into the ring for fifo to memory transfers. |
| 626 | */ |
| 627 | u32 |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 628 | _au1xxx_dbdma_put_dest(u32 chanid, void *buf, int nbytes, u32 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | { |
| 630 | chan_tab_t *ctp; |
| 631 | au1x_ddma_desc_t *dp; |
| 632 | |
| 633 | /* I guess we could check this to be within the |
| 634 | * range of the table...... |
| 635 | */ |
| 636 | ctp = *((chan_tab_t **)chanid); |
| 637 | |
| 638 | /* We should have multiple callers for a particular channel, |
| 639 | * an interrupt doesn't affect this pointer nor the descriptor, |
| 640 | * so no locking should be needed. |
| 641 | */ |
| 642 | dp = ctp->put_ptr; |
| 643 | |
| 644 | /* If the descriptor is valid, we are way ahead of the DMA |
| 645 | * engine, so just return an error condition. |
| 646 | */ |
| 647 | if (dp->dscr_cmd0 & DSCR_CMD0_V) |
| 648 | return 0; |
| 649 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 650 | /* Load up buffer address and byte count */ |
| 651 | |
| 652 | /* Check flags */ |
| 653 | if (flags & DDMA_FLAGS_IE) |
| 654 | dp->dscr_cmd0 |= DSCR_CMD0_IE; |
| 655 | if (flags & DDMA_FLAGS_NOIE) |
| 656 | dp->dscr_cmd0 &= ~DSCR_CMD0_IE; |
| 657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | dp->dscr_dest0 = virt_to_phys(buf); |
| 659 | dp->dscr_cmd1 = nbytes; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 660 | #if 0 |
| 661 | printk("cmd0:%x cmd1:%x source0:%x source1:%x dest0:%x dest1:%x\n", |
| 662 | dp->dscr_cmd0, dp->dscr_cmd1, dp->dscr_source0, |
| 663 | dp->dscr_source1, dp->dscr_dest0, dp->dscr_dest1 ); |
| 664 | #endif |
| 665 | /* |
| 666 | * There is an errata on the Au1200/Au1550 parts that could result in |
| 667 | * "stale" data being DMA'd. It has to do with the snoop logic on the |
| 668 | * dache eviction buffer. NONCOHERENT_IO is on by default for these |
| 669 | * parts. If it is fixedin the future, these dma_cache_inv will just |
| 670 | * be nothing more than empty macros. See io.h. |
| 671 | * */ |
Pete Popov | 2d32ffa | 2005-03-01 07:54:50 +0000 | [diff] [blame] | 672 | dma_cache_inv((unsigned long)buf,nbytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | dp->dscr_cmd0 |= DSCR_CMD0_V; /* Let it rip */ |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 674 | au_sync(); |
Pete Popov | 2d32ffa | 2005-03-01 07:54:50 +0000 | [diff] [blame] | 675 | dma_cache_wback_inv((unsigned long)dp, sizeof(dp)); |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 676 | ctp->chan_ptr->ddma_dbell = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
| 678 | /* Get next descriptor pointer. |
| 679 | */ |
| 680 | ctp->put_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); |
| 681 | |
| 682 | /* return something not zero. |
| 683 | */ |
| 684 | return nbytes; |
| 685 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 686 | EXPORT_SYMBOL(_au1xxx_dbdma_put_dest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
| 688 | /* Get a destination buffer into the DMA ring. |
| 689 | * Normally used to get a full buffer from the ring during fifo |
| 690 | * to memory transfers. This does not set the valid bit, you will |
| 691 | * have to put another destination buffer to keep the DMA going. |
| 692 | */ |
| 693 | u32 |
| 694 | au1xxx_dbdma_get_dest(u32 chanid, void **buf, int *nbytes) |
| 695 | { |
| 696 | chan_tab_t *ctp; |
| 697 | au1x_ddma_desc_t *dp; |
| 698 | u32 rv; |
| 699 | |
| 700 | /* I guess we could check this to be within the |
| 701 | * range of the table...... |
| 702 | */ |
| 703 | ctp = *((chan_tab_t **)chanid); |
| 704 | |
| 705 | /* We should have multiple callers for a particular channel, |
| 706 | * an interrupt doesn't affect this pointer nor the descriptor, |
| 707 | * so no locking should be needed. |
| 708 | */ |
| 709 | dp = ctp->get_ptr; |
| 710 | |
| 711 | /* If the descriptor is valid, we are way ahead of the DMA |
| 712 | * engine, so just return an error condition. |
| 713 | */ |
| 714 | if (dp->dscr_cmd0 & DSCR_CMD0_V) |
| 715 | return 0; |
| 716 | |
| 717 | /* Return buffer address and byte count. |
| 718 | */ |
| 719 | *buf = (void *)(phys_to_virt(dp->dscr_dest0)); |
| 720 | *nbytes = dp->dscr_cmd1; |
| 721 | rv = dp->dscr_stat; |
| 722 | |
| 723 | /* Get next descriptor pointer. |
| 724 | */ |
| 725 | ctp->get_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); |
| 726 | |
| 727 | /* return something not zero. |
| 728 | */ |
| 729 | return rv; |
| 730 | } |
| 731 | |
Domen Puncer | 3e2c6ef | 2006-06-23 12:00:21 +0200 | [diff] [blame] | 732 | EXPORT_SYMBOL_GPL(au1xxx_dbdma_get_dest); |
| 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | void |
| 735 | au1xxx_dbdma_stop(u32 chanid) |
| 736 | { |
| 737 | chan_tab_t *ctp; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 738 | au1x_dma_chan_t *cp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | 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) { |
| 750 | printk("warning: DMA channel won't halt\n"); |
| 751 | 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 Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 758 | EXPORT_SYMBOL(au1xxx_dbdma_stop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
| 760 | /* Start using the current descriptor pointer. If the dbdma encounters |
| 761 | * a not valid descriptor, it will stop. In this case, we can just |
| 762 | * continue by adding a buffer to the list and starting again. |
| 763 | */ |
| 764 | void |
| 765 | au1xxx_dbdma_start(u32 chanid) |
| 766 | { |
| 767 | chan_tab_t *ctp; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 768 | au1x_dma_chan_t *cp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | ctp = *((chan_tab_t **)chanid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | 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 Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 775 | cp->ddma_dbell = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | au_sync(); |
| 777 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 778 | EXPORT_SYMBOL(au1xxx_dbdma_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | |
| 780 | void |
| 781 | au1xxx_dbdma_reset(u32 chanid) |
| 782 | { |
| 783 | chan_tab_t *ctp; |
| 784 | au1x_ddma_desc_t *dp; |
| 785 | |
| 786 | au1xxx_dbdma_stop(chanid); |
| 787 | |
| 788 | ctp = *((chan_tab_t **)chanid); |
| 789 | ctp->get_ptr = ctp->put_ptr = ctp->cur_ptr = ctp->chan_desc_base; |
| 790 | |
| 791 | /* Run through the descriptors and reset the valid indicator. |
| 792 | */ |
| 793 | dp = ctp->chan_desc_base; |
| 794 | |
| 795 | do { |
| 796 | dp->dscr_cmd0 &= ~DSCR_CMD0_V; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 797 | /* reset our SW status -- this is used to determine |
| 798 | * if a descriptor is in use by upper level SW. Since |
| 799 | * posting can reset 'V' bit. |
| 800 | */ |
| 801 | dp->sw_status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | dp = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); |
| 803 | } while (dp != ctp->chan_desc_base); |
| 804 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 805 | EXPORT_SYMBOL(au1xxx_dbdma_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | |
| 807 | u32 |
| 808 | au1xxx_get_dma_residue(u32 chanid) |
| 809 | { |
| 810 | chan_tab_t *ctp; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 811 | au1x_dma_chan_t *cp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | u32 rv; |
| 813 | |
| 814 | ctp = *((chan_tab_t **)chanid); |
| 815 | cp = ctp->chan_ptr; |
| 816 | |
| 817 | /* This is only valid if the channel is stopped. |
| 818 | */ |
| 819 | rv = cp->ddma_bytecnt; |
| 820 | au_sync(); |
| 821 | |
| 822 | return rv; |
| 823 | } |
| 824 | |
Domen Puncer | 3e2c6ef | 2006-06-23 12:00:21 +0200 | [diff] [blame] | 825 | EXPORT_SYMBOL_GPL(au1xxx_get_dma_residue); |
| 826 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | void |
| 828 | au1xxx_dbdma_chan_free(u32 chanid) |
| 829 | { |
| 830 | chan_tab_t *ctp; |
| 831 | dbdev_tab_t *stp, *dtp; |
| 832 | |
| 833 | ctp = *((chan_tab_t **)chanid); |
| 834 | stp = ctp->chan_src; |
| 835 | dtp = ctp->chan_dest; |
| 836 | |
| 837 | au1xxx_dbdma_stop(chanid); |
| 838 | |
Pete Popov | 2d32ffa | 2005-03-01 07:54:50 +0000 | [diff] [blame] | 839 | kfree((void *)ctp->chan_desc_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | |
| 841 | stp->dev_flags &= ~DEV_FLAGS_INUSE; |
| 842 | dtp->dev_flags &= ~DEV_FLAGS_INUSE; |
| 843 | chan_tab_ptr[ctp->chan_index] = NULL; |
| 844 | |
| 845 | kfree(ctp); |
| 846 | } |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 847 | EXPORT_SYMBOL(au1xxx_dbdma_chan_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Pete Popov | 2d32ffa | 2005-03-01 07:54:50 +0000 | [diff] [blame] | 849 | static irqreturn_t |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | dbdma_interrupt(int irq, void *dev_id, struct pt_regs *regs) |
| 851 | { |
Pete Popov | 2d32ffa | 2005-03-01 07:54:50 +0000 | [diff] [blame] | 852 | u32 intstat; |
| 853 | u32 chan_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | chan_tab_t *ctp; |
| 855 | au1x_ddma_desc_t *dp; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 856 | au1x_dma_chan_t *cp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | |
| 858 | intstat = dbdma_gptr->ddma_intstat; |
| 859 | au_sync(); |
| 860 | chan_index = au_ffs(intstat) - 1; |
| 861 | |
| 862 | ctp = chan_tab_ptr[chan_index]; |
| 863 | cp = ctp->chan_ptr; |
| 864 | dp = ctp->cur_ptr; |
| 865 | |
| 866 | /* Reset interrupt. |
| 867 | */ |
| 868 | cp->ddma_irq = 0; |
| 869 | au_sync(); |
| 870 | |
| 871 | if (ctp->chan_callback) |
| 872 | (ctp->chan_callback)(irq, ctp->chan_callparam, regs); |
| 873 | |
| 874 | ctp->cur_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); |
Pete Popov | 2d32ffa | 2005-03-01 07:54:50 +0000 | [diff] [blame] | 875 | return IRQ_RETVAL(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | } |
| 877 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 878 | static void au1xxx_dbdma_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | { |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 880 | int irq_nr; |
| 881 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | dbdma_gptr->ddma_config = 0; |
| 883 | dbdma_gptr->ddma_throttle = 0; |
| 884 | dbdma_gptr->ddma_inten = 0xffff; |
| 885 | au_sync(); |
| 886 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 887 | #if defined(CONFIG_SOC_AU1550) |
| 888 | irq_nr = AU1550_DDMA_INT; |
| 889 | #elif defined(CONFIG_SOC_AU1200) |
| 890 | irq_nr = AU1200_DDMA_INT; |
| 891 | #else |
| 892 | #error Unknown Au1x00 SOC |
| 893 | #endif |
| 894 | |
| 895 | if (request_irq(irq_nr, dbdma_interrupt, SA_INTERRUPT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | "Au1xxx dbdma", (void *)dbdma_gptr)) |
| 897 | printk("Can't get 1550 dbdma irq"); |
| 898 | } |
| 899 | |
| 900 | void |
| 901 | au1xxx_dbdma_dump(u32 chanid) |
| 902 | { |
| 903 | chan_tab_t *ctp; |
| 904 | au1x_ddma_desc_t *dp; |
| 905 | dbdev_tab_t *stp, *dtp; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 906 | au1x_dma_chan_t *cp; |
| 907 | u32 i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | |
| 909 | ctp = *((chan_tab_t **)chanid); |
| 910 | stp = ctp->chan_src; |
| 911 | dtp = ctp->chan_dest; |
| 912 | cp = ctp->chan_ptr; |
| 913 | |
| 914 | printk("Chan %x, stp %x (dev %d) dtp %x (dev %d) \n", |
| 915 | (u32)ctp, (u32)stp, stp - dbdev_tab, (u32)dtp, dtp - dbdev_tab); |
| 916 | printk("desc base %x, get %x, put %x, cur %x\n", |
| 917 | (u32)(ctp->chan_desc_base), (u32)(ctp->get_ptr), |
| 918 | (u32)(ctp->put_ptr), (u32)(ctp->cur_ptr)); |
| 919 | |
| 920 | printk("dbdma chan %x\n", (u32)cp); |
| 921 | printk("cfg %08x, desptr %08x, statptr %08x\n", |
| 922 | cp->ddma_cfg, cp->ddma_desptr, cp->ddma_statptr); |
| 923 | printk("dbell %08x, irq %08x, stat %08x, bytecnt %08x\n", |
| 924 | cp->ddma_dbell, cp->ddma_irq, cp->ddma_stat, cp->ddma_bytecnt); |
| 925 | |
| 926 | |
| 927 | /* Run through the descriptors |
| 928 | */ |
| 929 | dp = ctp->chan_desc_base; |
| 930 | |
| 931 | do { |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 932 | printk("Dp[%d]= %08x, cmd0 %08x, cmd1 %08x\n", |
| 933 | i++, (u32)dp, dp->dscr_cmd0, dp->dscr_cmd1); |
| 934 | printk("src0 %08x, src1 %08x, dest0 %08x, dest1 %08x\n", |
| 935 | dp->dscr_source0, dp->dscr_source1, dp->dscr_dest0, dp->dscr_dest1); |
| 936 | printk("stat %08x, nxtptr %08x\n", |
| 937 | dp->dscr_stat, dp->dscr_nxtptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | dp = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); |
| 939 | } while (dp != ctp->chan_desc_base); |
| 940 | } |
| 941 | |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 942 | /* Put a descriptor into the DMA ring. |
| 943 | * This updates the source/destination pointers and byte count. |
| 944 | */ |
| 945 | u32 |
| 946 | au1xxx_dbdma_put_dscr(u32 chanid, au1x_ddma_desc_t *dscr ) |
| 947 | { |
| 948 | chan_tab_t *ctp; |
| 949 | au1x_ddma_desc_t *dp; |
| 950 | u32 nbytes=0; |
| 951 | |
| 952 | /* I guess we could check this to be within the |
| 953 | * range of the table...... |
| 954 | */ |
| 955 | ctp = *((chan_tab_t **)chanid); |
| 956 | |
| 957 | /* We should have multiple callers for a particular channel, |
| 958 | * an interrupt doesn't affect this pointer nor the descriptor, |
| 959 | * so no locking should be needed. |
| 960 | */ |
| 961 | dp = ctp->put_ptr; |
| 962 | |
| 963 | /* If the descriptor is valid, we are way ahead of the DMA |
| 964 | * engine, so just return an error condition. |
| 965 | */ |
| 966 | if (dp->dscr_cmd0 & DSCR_CMD0_V) |
| 967 | return 0; |
| 968 | |
| 969 | /* Load up buffer addresses and byte count. |
| 970 | */ |
| 971 | dp->dscr_dest0 = dscr->dscr_dest0; |
| 972 | dp->dscr_source0 = dscr->dscr_source0; |
| 973 | dp->dscr_dest1 = dscr->dscr_dest1; |
| 974 | dp->dscr_source1 = dscr->dscr_source1; |
| 975 | dp->dscr_cmd1 = dscr->dscr_cmd1; |
| 976 | nbytes = dscr->dscr_cmd1; |
| 977 | /* Allow the caller to specifiy if an interrupt is generated */ |
| 978 | dp->dscr_cmd0 &= ~DSCR_CMD0_IE; |
| 979 | dp->dscr_cmd0 |= dscr->dscr_cmd0 | DSCR_CMD0_V; |
| 980 | ctp->chan_ptr->ddma_dbell = 0; |
| 981 | |
| 982 | /* Get next descriptor pointer. |
| 983 | */ |
| 984 | ctp->put_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); |
| 985 | |
| 986 | /* return something not zero. |
| 987 | */ |
| 988 | return nbytes; |
| 989 | } |
| 990 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | #endif /* defined(CONFIG_SOC_AU1550) || defined(CONFIG_SOC_AU1200) */ |
| 992 | |