2 * linux/arch/arm/kernel/dma.c
4 * Copyright (C) 1995-2000 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Front-end to the DMA handling. This handles the allocation/freeing
11 * of DMA channels, and provides a unified interface to the machines
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/spinlock.h>
17 #include <linux/errno.h>
18 #include <linux/scatterlist.h>
19 #include <linux/seq_file.h>
20 #include <linux/proc_fs.h>
24 #include <asm/mach/dma.h>
26 DEFINE_RAW_SPINLOCK(dma_spin_lock);
27 EXPORT_SYMBOL(dma_spin_lock);
29 static dma_t *dma_chan[MAX_DMA_CHANNELS];
31 static inline dma_t *dma_channel(unsigned int chan)
33 if (chan >= MAX_DMA_CHANNELS)
36 return dma_chan[chan];
39 int __init isa_dma_add(unsigned int chan, dma_t *dma)
44 sg_init_table(&dma->buf, 1);
55 * On certain platforms, we have to allocate an interrupt as well...
57 int request_dma(unsigned int chan, const char *device_id)
59 dma_t *dma = dma_channel(chan);
65 if (xchg(&dma->lock, 1) != 0)
68 dma->device_id = device_id;
73 if (dma->d_ops->request)
74 ret = dma->d_ops->request(chan, dma);
82 pr_err("dma: trying to allocate DMA%d\n", chan);
88 EXPORT_SYMBOL(request_dma);
93 * On certain platforms, we have to free interrupt as well...
95 void free_dma(unsigned int chan)
97 dma_t *dma = dma_channel(chan);
103 pr_err("dma%d: freeing active DMA\n", chan);
104 dma->d_ops->disable(chan, dma);
108 if (xchg(&dma->lock, 0) != 0) {
109 if (dma->d_ops->free)
110 dma->d_ops->free(chan, dma);
114 pr_err("dma%d: trying to free free DMA\n", chan);
118 pr_err("dma: trying to free DMA%d\n", chan);
120 EXPORT_SYMBOL(free_dma);
122 /* Set DMA Scatter-Gather list
124 void set_dma_sg (unsigned int chan, struct scatterlist *sg, int nr_sg)
126 dma_t *dma = dma_channel(chan);
129 pr_err("dma%d: altering DMA SG while DMA active\n", chan);
132 dma->sgcount = nr_sg;
135 EXPORT_SYMBOL(set_dma_sg);
139 * Copy address to the structure, and set the invalid bit
141 void __set_dma_addr (unsigned int chan, void *addr)
143 dma_t *dma = dma_channel(chan);
146 pr_err("dma%d: altering DMA address while DMA active\n", chan);
152 EXPORT_SYMBOL(__set_dma_addr);
154 /* Set DMA byte count
156 * Copy address to the structure, and set the invalid bit
158 void set_dma_count (unsigned int chan, unsigned long count)
160 dma_t *dma = dma_channel(chan);
163 pr_err("dma%d: altering DMA count while DMA active\n", chan);
169 EXPORT_SYMBOL(set_dma_count);
171 /* Set DMA direction mode
173 void set_dma_mode (unsigned int chan, unsigned int mode)
175 dma_t *dma = dma_channel(chan);
178 pr_err("dma%d: altering DMA mode while DMA active\n", chan);
180 dma->dma_mode = mode;
183 EXPORT_SYMBOL(set_dma_mode);
185 /* Enable DMA channel
187 void enable_dma (unsigned int chan)
189 dma_t *dma = dma_channel(chan);
194 if (dma->active == 0) {
196 dma->d_ops->enable(chan, dma);
201 pr_err("dma%d: trying to enable free DMA\n", chan);
204 EXPORT_SYMBOL(enable_dma);
206 /* Disable DMA channel
208 void disable_dma (unsigned int chan)
210 dma_t *dma = dma_channel(chan);
215 if (dma->active == 1) {
217 dma->d_ops->disable(chan, dma);
222 pr_err("dma%d: trying to disable free DMA\n", chan);
225 EXPORT_SYMBOL(disable_dma);
228 * Is the specified DMA channel active?
230 int dma_channel_active(unsigned int chan)
232 dma_t *dma = dma_channel(chan);
235 EXPORT_SYMBOL(dma_channel_active);
237 void set_dma_page(unsigned int chan, char pagenr)
239 pr_err("dma%d: trying to set_dma_page\n", chan);
241 EXPORT_SYMBOL(set_dma_page);
243 void set_dma_speed(unsigned int chan, int cycle_ns)
245 dma_t *dma = dma_channel(chan);
248 if (dma->d_ops->setspeed)
249 ret = dma->d_ops->setspeed(chan, dma, cycle_ns);
252 EXPORT_SYMBOL(set_dma_speed);
254 int get_dma_residue(unsigned int chan)
256 dma_t *dma = dma_channel(chan);
259 if (dma->d_ops->residue)
260 ret = dma->d_ops->residue(chan, dma);
264 EXPORT_SYMBOL(get_dma_residue);
266 #ifdef CONFIG_PROC_FS
267 static int proc_dma_show(struct seq_file *m, void *v)
271 for (i = 0 ; i < MAX_DMA_CHANNELS ; i++) {
272 dma_t *dma = dma_channel(i);
273 if (dma && dma->lock)
274 seq_printf(m, "%2d: %s\n", i, dma->device_id);
279 static int __init proc_dma_init(void)
281 proc_create_single("dma", 0, NULL, proc_dma_show);
285 __initcall(proc_dma_init);