/* * * BRIEF MODULE DESCRIPTION * A DMA channel allocator for Au1000. API is modeled loosely off of * linux/kernel/dma.c. * * Copyright 2000 MontaVista Software Inc. * Author: MontaVista Software, Inc. * stevel@mvista.com or source@mvista.com * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include #include #include #include #include #include #include #include #include /* * A note on resource allocation: * * All drivers needing DMA channels, should allocate and release them * through the public routines `request_dma()' and `free_dma()'. * * In order to avoid problems, all processes should allocate resources in * the same sequence and release them in the reverse order. * * So, when allocating DMAs and IRQs, first allocate the DMA, then the IRQ. * When releasing them, first release the IRQ, then release the DMA. The * main reason for this order is that, if you are requesting the DMA buffer * done interrupt, you won't know the irq number until the DMA channel is * returned from request_dma. */ spinlock_t au1000_dma_spin_lock = SPIN_LOCK_UNLOCKED; struct dma_chan au1000_dma_table[NUM_AU1000_DMA_CHANNELS] = { {dev_id:-1,}, {dev_id:-1,}, {dev_id:-1,}, {dev_id:-1,}, {dev_id:-1,}, {dev_id:-1,}, {dev_id:-1,}, {dev_id:-1,} }; // Device FIFO addresses and default DMA modes static const struct { unsigned int fifo_addr; unsigned int dma_mode; } dma_dev_table[DMA_NUM_DEV] = { { UART0_ADDR + UART_TX, 0}, { UART0_ADDR + UART_RX, 0}, { 0, 0}, { 0, 0}, { AC97C_DATA, DMA_DW16 | DMA_NC}, { AC97C_DATA, DMA_DR | DMA_DW16 | DMA_NC}, { UART3_ADDR + UART_TX, DMA_DW8 | DMA_NC}, { UART3_ADDR + UART_RX, DMA_DR | DMA_DW8 | DMA_NC}, { USBD_EP0RD, DMA_DR | DMA_DW8 | DMA_NC}, { USBD_EP0WR, DMA_DW8 | DMA_NC}, { USBD_EP2WR, DMA_DW8 | DMA_NC}, { USBD_EP3WR, DMA_DW8 | DMA_NC}, { USBD_EP4RD, DMA_DR | DMA_DW8 | DMA_NC}, { USBD_EP5RD, DMA_DR | DMA_DW8 | DMA_NC}, { I2S_DATA, DMA_DW32 | DMA_NC}, { I2S_DATA, DMA_DR | DMA_DW32 | DMA_NC} }; int au1000_dma_read_proc(char *buf, char **start, off_t fpos, int length, int *eof, void *data) { int i, len = 0; struct dma_chan *chan; for (i = 0; i < NUM_AU1000_DMA_CHANNELS; i++) { if ((chan = get_dma_chan(i)) != NULL) { len += sprintf(buf + len, "%2d: %s\n", i, chan->dev_str); } } if (fpos >= len) { *start = buf; *eof = 1; return 0; } *start = buf + fpos; if ((len -= fpos) > length) return length; *eof = 1; return len; } void dump_au1000_dma_channel(unsigned int dmanr) { struct dma_chan *chan; if (dmanr > NUM_AU1000_DMA_CHANNELS) return; chan = &au1000_dma_table[dmanr]; printk(KERN_INFO "Au1000 DMA%d Register Dump:\n", dmanr); printk(KERN_INFO " mode = 0x%08x\n", inl(chan->io + DMA_MODE_SET)); printk(KERN_INFO " addr = 0x%08x\n", inl(chan->io + DMA_PERIPHERAL_ADDR)); printk(KERN_INFO " start0 = 0x%08x\n", inl(chan->io + DMA_BUFFER0_START)); printk(KERN_INFO " start1 = 0x%08x\n", inl(chan->io + DMA_BUFFER1_START)); printk(KERN_INFO " count0 = 0x%08x\n", inl(chan->io + DMA_BUFFER0_COUNT)); printk(KERN_INFO " count1 = 0x%08x\n", inl(chan->io + DMA_BUFFER1_COUNT)); } /* * Finds a free channel, and binds the requested device to it. * Returns the allocated channel number, or negative on error. */ int request_au1000_dma(int dev_id, const char *dev_str) { struct dma_chan *chan; int i; if (dev_id < 0 || dev_id >= DMA_NUM_DEV) return -EINVAL; for (i = 0; i < NUM_AU1000_DMA_CHANNELS; i++) { if (au1000_dma_table[i].dev_id < 0) break; } if (i == NUM_AU1000_DMA_CHANNELS) return -ENODEV; chan = &au1000_dma_table[i]; // fill it in chan->io = DMA_CHANNEL_BASE + i * DMA_CHANNEL_LEN; chan->irq = AU1000_DMA_INT_BASE + i; chan->dev_id = dev_id; chan->dev_str = dev_str; chan->fifo_addr = dma_dev_table[dev_id].fifo_addr; chan->mode = dma_dev_table[dev_id].dma_mode; return i; } void free_au1000_dma(unsigned int dmanr) { struct dma_chan *chan = get_dma_chan(dmanr); if (!chan) { printk("Trying to free DMA%d\n", dmanr); return; } disable_dma(dmanr); chan->dev_id = -1; } /* free_dma */