| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * arch/sh/drivers/dma/dma-sysfs.c | 
 | 3 |  * | 
 | 4 |  * sysfs interface for SH DMA API | 
 | 5 |  * | 
| Paul Mundt | 4dfc119 | 2006-11-24 14:43:09 +0900 | [diff] [blame] | 6 |  * Copyright (C) 2004 - 2006  Paul Mundt | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 |  * | 
 | 8 |  * This file is subject to the terms and conditions of the GNU General Public | 
 | 9 |  * License.  See the file "COPYING" in the main directory of this archive | 
 | 10 |  * for more details. | 
 | 11 |  */ | 
 | 12 | #include <linux/kernel.h> | 
 | 13 | #include <linux/init.h> | 
 | 14 | #include <linux/sysdev.h> | 
| Paul Mundt | 0d83177 | 2006-01-16 22:14:09 -0800 | [diff] [blame] | 15 | #include <linux/platform_device.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/module.h> | 
| Paul Mundt | 0d83177 | 2006-01-16 22:14:09 -0800 | [diff] [blame] | 17 | #include <linux/err.h> | 
| Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 18 | #include <linux/string.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/dma.h> | 
 | 20 |  | 
 | 21 | static struct sysdev_class dma_sysclass = { | 
| Kay Sievers | af5ca3f | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 22 | 	.name = "dma", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | EXPORT_SYMBOL(dma_sysclass); | 
 | 25 |  | 
| Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 26 | static ssize_t dma_show_devices(struct sys_device *dev, | 
 | 27 | 				struct sysdev_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { | 
 | 29 | 	ssize_t len = 0; | 
 | 30 | 	int i; | 
 | 31 |  | 
 | 32 | 	for (i = 0; i < MAX_DMA_CHANNELS; i++) { | 
 | 33 | 		struct dma_info *info = get_dma_info(i); | 
| Paul Mundt | 4dfc119 | 2006-11-24 14:43:09 +0900 | [diff] [blame] | 34 | 		struct dma_channel *channel = get_dma_channel(i); | 
 | 35 |  | 
 | 36 | 		if (unlikely(!info) || !channel) | 
 | 37 | 			continue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 |  | 
 | 39 | 		len += sprintf(buf + len, "%2d: %14s    %s\n", | 
 | 40 | 			       channel->chan, info->name, | 
 | 41 | 			       channel->dev_id); | 
 | 42 | 	} | 
 | 43 |  | 
 | 44 | 	return len; | 
 | 45 | } | 
 | 46 |  | 
 | 47 | static SYSDEV_ATTR(devices, S_IRUGO, dma_show_devices, NULL); | 
 | 48 |  | 
 | 49 | static int __init dma_sysclass_init(void) | 
 | 50 | { | 
 | 51 | 	int ret; | 
 | 52 |  | 
 | 53 | 	ret = sysdev_class_register(&dma_sysclass); | 
| Paul Mundt | 711fa80 | 2006-10-03 13:14:04 +0900 | [diff] [blame] | 54 | 	if (unlikely(ret)) | 
 | 55 | 		return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 |  | 
| Paul Mundt | 711fa80 | 2006-10-03 13:14:04 +0900 | [diff] [blame] | 57 | 	return sysfs_create_file(&dma_sysclass.kset.kobj, &attr_devices.attr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | postcore_initcall(dma_sysclass_init); | 
 | 60 |  | 
| Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 61 | static ssize_t dma_show_dev_id(struct sys_device *dev, | 
 | 62 | 				struct sysdev_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { | 
 | 64 | 	struct dma_channel *channel = to_dma_channel(dev); | 
 | 65 | 	return sprintf(buf, "%s\n", channel->dev_id); | 
 | 66 | } | 
 | 67 |  | 
 | 68 | static ssize_t dma_store_dev_id(struct sys_device *dev, | 
| Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 69 | 				struct sysdev_attribute *attr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | 				const char *buf, size_t count) | 
 | 71 | { | 
 | 72 | 	struct dma_channel *channel = to_dma_channel(dev); | 
 | 73 | 	strcpy(channel->dev_id, buf); | 
 | 74 | 	return count; | 
 | 75 | } | 
 | 76 |  | 
 | 77 | static SYSDEV_ATTR(dev_id, S_IRUGO | S_IWUSR, dma_show_dev_id, dma_store_dev_id); | 
 | 78 |  | 
 | 79 | static ssize_t dma_store_config(struct sys_device *dev, | 
| Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 80 | 				struct sysdev_attribute *attr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | 				const char *buf, size_t count) | 
 | 82 | { | 
 | 83 | 	struct dma_channel *channel = to_dma_channel(dev); | 
 | 84 | 	unsigned long config; | 
 | 85 |  | 
 | 86 | 	config = simple_strtoul(buf, NULL, 0); | 
| Paul Mundt | 0d83177 | 2006-01-16 22:14:09 -0800 | [diff] [blame] | 87 | 	dma_configure_channel(channel->vchan, config); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 |  | 
 | 89 | 	return count; | 
 | 90 | } | 
 | 91 |  | 
 | 92 | static SYSDEV_ATTR(config, S_IWUSR, NULL, dma_store_config); | 
 | 93 |  | 
| Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 94 | static ssize_t dma_show_mode(struct sys_device *dev, | 
 | 95 | 				struct sysdev_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { | 
 | 97 | 	struct dma_channel *channel = to_dma_channel(dev); | 
 | 98 | 	return sprintf(buf, "0x%08x\n", channel->mode); | 
 | 99 | } | 
 | 100 |  | 
 | 101 | static ssize_t dma_store_mode(struct sys_device *dev, | 
| Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 102 | 			      struct sysdev_attribute *attr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | 			      const char *buf, size_t count) | 
 | 104 | { | 
 | 105 | 	struct dma_channel *channel = to_dma_channel(dev); | 
 | 106 | 	channel->mode = simple_strtoul(buf, NULL, 0); | 
 | 107 | 	return count; | 
 | 108 | } | 
 | 109 |  | 
 | 110 | static SYSDEV_ATTR(mode, S_IRUGO | S_IWUSR, dma_show_mode, dma_store_mode); | 
 | 111 |  | 
 | 112 | #define dma_ro_attr(field, fmt)						\ | 
| Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 113 | static ssize_t dma_show_##field(struct sys_device *dev, 		\ | 
 | 114 | 				struct sysdev_attribute *attr, char *buf)\ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | {									\ | 
 | 116 | 	struct dma_channel *channel = to_dma_channel(dev);		\ | 
 | 117 | 	return sprintf(buf, fmt, channel->field);			\ | 
 | 118 | }									\ | 
 | 119 | static SYSDEV_ATTR(field, S_IRUGO, dma_show_##field, NULL); | 
 | 120 |  | 
 | 121 | dma_ro_attr(count, "0x%08x\n"); | 
 | 122 | dma_ro_attr(flags, "0x%08lx\n"); | 
 | 123 |  | 
| Paul Mundt | 0d83177 | 2006-01-16 22:14:09 -0800 | [diff] [blame] | 124 | int dma_create_sysfs_files(struct dma_channel *chan, struct dma_info *info) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | { | 
 | 126 | 	struct sys_device *dev = &chan->dev; | 
| Paul Mundt | 0d83177 | 2006-01-16 22:14:09 -0800 | [diff] [blame] | 127 | 	char name[16]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | 	int ret; | 
 | 129 |  | 
| Paul Mundt | 0d83177 | 2006-01-16 22:14:09 -0800 | [diff] [blame] | 130 | 	dev->id  = chan->vchan; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | 	dev->cls = &dma_sysclass; | 
 | 132 |  | 
 | 133 | 	ret = sysdev_register(dev); | 
 | 134 | 	if (ret) | 
 | 135 | 		return ret; | 
 | 136 |  | 
| Paul Mundt | 4dfc119 | 2006-11-24 14:43:09 +0900 | [diff] [blame] | 137 | 	ret |= sysdev_create_file(dev, &attr_dev_id); | 
 | 138 | 	ret |= sysdev_create_file(dev, &attr_count); | 
 | 139 | 	ret |= sysdev_create_file(dev, &attr_mode); | 
 | 140 | 	ret |= sysdev_create_file(dev, &attr_flags); | 
 | 141 | 	ret |= sysdev_create_file(dev, &attr_config); | 
 | 142 |  | 
 | 143 | 	if (unlikely(ret)) { | 
 | 144 | 		dev_err(&info->pdev->dev, "Failed creating attrs\n"); | 
 | 145 | 		return ret; | 
 | 146 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 |  | 
| Paul Mundt | 0d83177 | 2006-01-16 22:14:09 -0800 | [diff] [blame] | 148 | 	snprintf(name, sizeof(name), "dma%d", chan->chan); | 
 | 149 | 	return sysfs_create_link(&info->pdev->dev.kobj, &dev->kobj, name); | 
 | 150 | } | 
 | 151 |  | 
 | 152 | void dma_remove_sysfs_files(struct dma_channel *chan, struct dma_info *info) | 
 | 153 | { | 
 | 154 | 	struct sys_device *dev = &chan->dev; | 
 | 155 | 	char name[16]; | 
 | 156 |  | 
 | 157 | 	sysdev_remove_file(dev, &attr_dev_id); | 
 | 158 | 	sysdev_remove_file(dev, &attr_count); | 
 | 159 | 	sysdev_remove_file(dev, &attr_mode); | 
 | 160 | 	sysdev_remove_file(dev, &attr_flags); | 
 | 161 | 	sysdev_remove_file(dev, &attr_config); | 
 | 162 |  | 
 | 163 | 	snprintf(name, sizeof(name), "dma%d", chan->chan); | 
 | 164 | 	sysfs_remove_link(&info->pdev->dev.kobj, name); | 
 | 165 |  | 
 | 166 | 	sysdev_unregister(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |