diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-12-24 13:32:13 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-04-14 08:13:30 -0400 |
commit | e193ba290f0228453341b41ab2bbdd963259f97e (patch) | |
tree | cb8847c8a0d19b60b350e94f90ed49e42eea1af1 /arch/arm/kernel | |
parent | f76348a360fe92063e07a8f54b0c1ea67f91e76c (diff) |
ARM: dma: add /proc/dma support to arch/arm/kernel/dma.c
We have our own private implementation for ISA-like DMA which has been
missing exposure via the /proc/dma interface. Add support for this.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/dma.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/arch/arm/kernel/dma.c b/arch/arm/kernel/dma.c index 7d5b9fb01e71..2c4a185f92cd 100644 --- a/arch/arm/kernel/dma.c +++ b/arch/arm/kernel/dma.c | |||
@@ -16,6 +16,8 @@ | |||
16 | #include <linux/spinlock.h> | 16 | #include <linux/spinlock.h> |
17 | #include <linux/errno.h> | 17 | #include <linux/errno.h> |
18 | #include <linux/scatterlist.h> | 18 | #include <linux/scatterlist.h> |
19 | #include <linux/seq_file.h> | ||
20 | #include <linux/proc_fs.h> | ||
19 | 21 | ||
20 | #include <asm/dma.h> | 22 | #include <asm/dma.h> |
21 | 23 | ||
@@ -264,3 +266,37 @@ int get_dma_residue(unsigned int chan) | |||
264 | return ret; | 266 | return ret; |
265 | } | 267 | } |
266 | EXPORT_SYMBOL(get_dma_residue); | 268 | EXPORT_SYMBOL(get_dma_residue); |
269 | |||
270 | #ifdef CONFIG_PROC_FS | ||
271 | static int proc_dma_show(struct seq_file *m, void *v) | ||
272 | { | ||
273 | int i; | ||
274 | |||
275 | for (i = 0 ; i < MAX_DMA_CHANNELS ; i++) { | ||
276 | dma_t *dma = dma_channel(i); | ||
277 | if (dma && dma->lock) | ||
278 | seq_printf(m, "%2d: %s\n", i, dma->device_id); | ||
279 | } | ||
280 | return 0; | ||
281 | } | ||
282 | |||
283 | static int proc_dma_open(struct inode *inode, struct file *file) | ||
284 | { | ||
285 | return single_open(file, proc_dma_show, NULL); | ||
286 | } | ||
287 | |||
288 | static const struct file_operations proc_dma_operations = { | ||
289 | .open = proc_dma_open, | ||
290 | .read = seq_read, | ||
291 | .llseek = seq_lseek, | ||
292 | .release = single_release, | ||
293 | }; | ||
294 | |||
295 | static int __init proc_dma_init(void) | ||
296 | { | ||
297 | proc_create("dma", 0, NULL, &proc_dma_operations); | ||
298 | return 0; | ||
299 | } | ||
300 | |||
301 | __initcall(proc_dma_init); | ||
302 | #endif | ||