123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- #include <linux/export.h>
- #include <linux/kernel.h>
- #include <linux/errno.h>
- #include <linux/spinlock.h>
- #include <linux/string.h>
- #include <linux/seq_file.h>
- #include <linux/proc_fs.h>
- #include <linux/init.h>
- #include <asm/dma.h>
- DEFINE_SPINLOCK(dma_spin_lock);
- #ifdef MAX_DMA_CHANNELS
- struct dma_chan {
- int lock;
- const char *device_id;
- };
- static struct dma_chan dma_chan_busy[MAX_DMA_CHANNELS] = {
- [4] = { 1, "cascade" },
- };
- int request_dma(unsigned int dmanr, const char * device_id)
- {
- if (dmanr >= MAX_DMA_CHANNELS)
- return -EINVAL;
- if (xchg(&dma_chan_busy[dmanr].lock, 1) != 0)
- return -EBUSY;
- dma_chan_busy[dmanr].device_id = device_id;
-
- return 0;
- }
- void free_dma(unsigned int dmanr)
- {
- if (dmanr >= MAX_DMA_CHANNELS) {
- printk(KERN_WARNING "Trying to free DMA%d\n", dmanr);
- return;
- }
- if (xchg(&dma_chan_busy[dmanr].lock, 0) == 0) {
- printk(KERN_WARNING "Trying to free free DMA%d\n", dmanr);
- return;
- }
- }
- #else
- int request_dma(unsigned int dmanr, const char *device_id)
- {
- return -EINVAL;
- }
- void free_dma(unsigned int dmanr)
- {
- }
- #endif
- #ifdef CONFIG_PROC_FS
- #ifdef MAX_DMA_CHANNELS
- static int proc_dma_show(struct seq_file *m, void *v)
- {
- int i;
- for (i = 0 ; i < MAX_DMA_CHANNELS ; i++) {
- if (dma_chan_busy[i].lock) {
- seq_printf(m, "%2d: %s\n", i,
- dma_chan_busy[i].device_id);
- }
- }
- return 0;
- }
- #else
- static int proc_dma_show(struct seq_file *m, void *v)
- {
- seq_puts(m, "No DMA\n");
- return 0;
- }
- #endif
- static int proc_dma_open(struct inode *inode, struct file *file)
- {
- return single_open(file, proc_dma_show, NULL);
- }
- static const struct file_operations proc_dma_operations = {
- .open = proc_dma_open,
- .read = seq_read,
- .llseek = seq_lseek,
- .release = single_release,
- };
- static int __init proc_dma_init(void)
- {
- proc_create("dma", 0, NULL, &proc_dma_operations);
- return 0;
- }
- __initcall(proc_dma_init);
- #endif
- EXPORT_SYMBOL(request_dma);
- EXPORT_SYMBOL(free_dma);
- EXPORT_SYMBOL(dma_spin_lock);
|