blob: 4b15feda54b04a24061830868a1d4fc1fdf2bff1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/sh/drivers/dma/dma-sysfs.c
3 *
4 * sysfs interface for SH DMA API
5 *
Paul Mundt4dfc1192006-11-24 14:43:09 +09006 * Copyright (C) 2004 - 2006 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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>
Paul Gortmaker0c438712011-07-31 17:40:26 -040014#include <linux/stat.h>
Kay Sieversdc6876a2011-12-21 15:09:52 -080015#include <linux/device.h>
Paul Mundt0d831772006-01-16 22:14:09 -080016#include <linux/platform_device.h>
Paul Mundt0d831772006-01-16 22:14:09 -080017#include <linux/err.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080018#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/dma.h>
20
Kay Sieversdc6876a2011-12-21 15:09:52 -080021static struct bus_type dma_subsys = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +010022 .name = "dma",
Kay Sieversdc6876a2011-12-21 15:09:52 -080023 .dev_name = "dma",
Linus Torvalds1da177e2005-04-16 15:20:36 -070024};
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Kay Sieversdc6876a2011-12-21 15:09:52 -080026static ssize_t dma_show_devices(struct device *dev,
27 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29 ssize_t len = 0;
30 int i;
31
Paul Mundte24cca12012-05-19 18:50:09 +090032 for (i = 0; i < 16; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 struct dma_info *info = get_dma_info(i);
Paul Mundt4dfc1192006-11-24 14:43:09 +090034 struct dma_channel *channel = get_dma_channel(i);
35
36 if (unlikely(!info) || !channel)
37 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
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
Kay Sieversdc6876a2011-12-21 15:09:52 -080047static DEVICE_ATTR(devices, S_IRUGO, dma_show_devices, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Kay Sieversdc6876a2011-12-21 15:09:52 -080049static int __init dma_subsys_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 int ret;
52
Kay Sieversdc6876a2011-12-21 15:09:52 -080053 ret = subsys_system_register(&dma_subsys, NULL);
Paul Mundt711fa802006-10-03 13:14:04 +090054 if (unlikely(ret))
55 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Paul Mundt87c34ed2012-03-30 19:36:03 +090057 return device_create_file(dma_subsys.dev_root, &dev_attr_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
Kay Sieversdc6876a2011-12-21 15:09:52 -080059postcore_initcall(dma_subsys_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Kay Sieversdc6876a2011-12-21 15:09:52 -080061static ssize_t dma_show_dev_id(struct device *dev,
62 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 struct dma_channel *channel = to_dma_channel(dev);
65 return sprintf(buf, "%s\n", channel->dev_id);
66}
67
Kay Sieversdc6876a2011-12-21 15:09:52 -080068static ssize_t dma_store_dev_id(struct device *dev,
69 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 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
Kay Sieversdc6876a2011-12-21 15:09:52 -080077static DEVICE_ATTR(dev_id, S_IRUGO | S_IWUSR, dma_show_dev_id, dma_store_dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Kay Sieversdc6876a2011-12-21 15:09:52 -080079static ssize_t dma_store_config(struct device *dev,
80 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 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 Mundt0d831772006-01-16 22:14:09 -080087 dma_configure_channel(channel->vchan, config);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 return count;
90}
91
Kay Sieversdc6876a2011-12-21 15:09:52 -080092static DEVICE_ATTR(config, S_IWUSR, NULL, dma_store_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Kay Sieversdc6876a2011-12-21 15:09:52 -080094static ssize_t dma_show_mode(struct device *dev,
95 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 struct dma_channel *channel = to_dma_channel(dev);
98 return sprintf(buf, "0x%08x\n", channel->mode);
99}
100
Kay Sieversdc6876a2011-12-21 15:09:52 -0800101static ssize_t dma_store_mode(struct device *dev,
102 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 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
Kay Sieversdc6876a2011-12-21 15:09:52 -0800110static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR, dma_show_mode, dma_store_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112#define dma_ro_attr(field, fmt) \
Kay Sieversdc6876a2011-12-21 15:09:52 -0800113static ssize_t dma_show_##field(struct device *dev, \
114 struct device_attribute *attr, char *buf)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{ \
116 struct dma_channel *channel = to_dma_channel(dev); \
117 return sprintf(buf, fmt, channel->field); \
118} \
Kay Sieversdc6876a2011-12-21 15:09:52 -0800119static DEVICE_ATTR(field, S_IRUGO, dma_show_##field, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121dma_ro_attr(count, "0x%08x\n");
122dma_ro_attr(flags, "0x%08lx\n");
123
Paul Mundt0d831772006-01-16 22:14:09 -0800124int dma_create_sysfs_files(struct dma_channel *chan, struct dma_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Kay Sieversdc6876a2011-12-21 15:09:52 -0800126 struct device *dev = &chan->dev;
Paul Mundt0d831772006-01-16 22:14:09 -0800127 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 int ret;
129
Paul Mundt0d831772006-01-16 22:14:09 -0800130 dev->id = chan->vchan;
Kay Sieversdc6876a2011-12-21 15:09:52 -0800131 dev->bus = &dma_subsys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Kay Sieversdc6876a2011-12-21 15:09:52 -0800133 ret = device_register(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (ret)
135 return ret;
136
Kay Sieversdc6876a2011-12-21 15:09:52 -0800137 ret |= device_create_file(dev, &dev_attr_dev_id);
138 ret |= device_create_file(dev, &dev_attr_count);
139 ret |= device_create_file(dev, &dev_attr_mode);
140 ret |= device_create_file(dev, &dev_attr_flags);
141 ret |= device_create_file(dev, &dev_attr_config);
Paul Mundt4dfc1192006-11-24 14:43:09 +0900142
143 if (unlikely(ret)) {
144 dev_err(&info->pdev->dev, "Failed creating attrs\n");
145 return ret;
146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Paul Mundt0d831772006-01-16 22:14:09 -0800148 snprintf(name, sizeof(name), "dma%d", chan->chan);
149 return sysfs_create_link(&info->pdev->dev.kobj, &dev->kobj, name);
150}
151
152void dma_remove_sysfs_files(struct dma_channel *chan, struct dma_info *info)
153{
Kay Sieversdc6876a2011-12-21 15:09:52 -0800154 struct device *dev = &chan->dev;
Paul Mundt0d831772006-01-16 22:14:09 -0800155 char name[16];
156
Kay Sieversdc6876a2011-12-21 15:09:52 -0800157 device_remove_file(dev, &dev_attr_dev_id);
158 device_remove_file(dev, &dev_attr_count);
159 device_remove_file(dev, &dev_attr_mode);
160 device_remove_file(dev, &dev_attr_flags);
161 device_remove_file(dev, &dev_attr_config);
Paul Mundt0d831772006-01-16 22:14:09 -0800162
163 snprintf(name, sizeof(name), "dma%d", chan->chan);
164 sysfs_remove_link(&info->pdev->dev.kobj, name);
165
Kay Sieversdc6876a2011-12-21 15:09:52 -0800166 device_unregister(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}