2 * RapidIO sysfs attributes and support
4 * Copyright 2005 MontaVista Software, Inc.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
13 #include <linux/kernel.h>
14 #include <linux/rio.h>
15 #include <linux/rio_drv.h>
16 #include <linux/stat.h>
21 #define rio_config_attr(field, format_string) \
23 field##_show(struct device *dev, struct device_attribute *attr, char *buf) \
25 struct rio_dev *rdev = to_rio_dev(dev); \
27 return sprintf(buf, format_string, rdev->field); \
30 rio_config_attr(did, "0x%04x\n");
31 rio_config_attr(vid, "0x%04x\n");
32 rio_config_attr(device_rev, "0x%08x\n");
33 rio_config_attr(asm_did, "0x%04x\n");
34 rio_config_attr(asm_vid, "0x%04x\n");
35 rio_config_attr(asm_rev, "0x%04x\n");
37 static ssize_t routes_show(struct device *dev, struct device_attribute *attr, char *buf)
39 struct rio_dev *rdev = to_rio_dev(dev);
43 for (i = 0; i < RIO_MAX_ROUTE_ENTRIES(rdev->net->hport->sys_size);
45 if (rdev->rswitch->route_table[i] == RIO_INVALID_ROUTE)
48 sprintf(str, "%04x %02x\n", i,
49 rdev->rswitch->route_table[i]);
55 struct device_attribute rio_dev_attrs[] = {
58 __ATTR_RO(device_rev),
65 static DEVICE_ATTR(routes, S_IRUGO, routes_show, NULL);
68 rio_read_config(struct file *filp, struct kobject *kobj,
69 struct bin_attribute *bin_attr,
70 char *buf, loff_t off, size_t count)
73 to_rio_dev(container_of(kobj, struct device, kobj));
74 unsigned int size = 0x100;
75 loff_t init_off = off;
76 u8 *data = (u8 *) buf;
78 /* Several chips lock up trying to read undefined config space */
79 if (capable(CAP_SYS_ADMIN))
84 if (off + count > size) {
91 if ((off & 1) && size) {
93 rio_read_config_8(dev, off, &val);
94 data[off - init_off] = val;
99 if ((off & 3) && size > 2) {
101 rio_read_config_16(dev, off, &val);
102 data[off - init_off] = (val >> 8) & 0xff;
103 data[off - init_off + 1] = val & 0xff;
110 rio_read_config_32(dev, off, &val);
111 data[off - init_off] = (val >> 24) & 0xff;
112 data[off - init_off + 1] = (val >> 16) & 0xff;
113 data[off - init_off + 2] = (val >> 8) & 0xff;
114 data[off - init_off + 3] = val & 0xff;
121 rio_read_config_16(dev, off, &val);
122 data[off - init_off] = (val >> 8) & 0xff;
123 data[off - init_off + 1] = val & 0xff;
130 rio_read_config_8(dev, off, &val);
131 data[off - init_off] = val;
140 rio_write_config(struct file *filp, struct kobject *kobj,
141 struct bin_attribute *bin_attr,
142 char *buf, loff_t off, size_t count)
144 struct rio_dev *dev =
145 to_rio_dev(container_of(kobj, struct device, kobj));
146 unsigned int size = count;
147 loff_t init_off = off;
148 u8 *data = (u8 *) buf;
152 if (off + count > 0x200000) {
153 size = 0x200000 - off;
157 if ((off & 1) && size) {
158 rio_write_config_8(dev, off, data[off - init_off]);
163 if ((off & 3) && (size > 2)) {
164 u16 val = data[off - init_off + 1];
165 val |= (u16) data[off - init_off] << 8;
166 rio_write_config_16(dev, off, val);
172 u32 val = data[off - init_off + 3];
173 val |= (u32) data[off - init_off + 2] << 8;
174 val |= (u32) data[off - init_off + 1] << 16;
175 val |= (u32) data[off - init_off] << 24;
176 rio_write_config_32(dev, off, val);
182 u16 val = data[off - init_off + 1];
183 val |= (u16) data[off - init_off] << 8;
184 rio_write_config_16(dev, off, val);
190 rio_write_config_8(dev, off, data[off - init_off]);
198 static struct bin_attribute rio_config_attr = {
201 .mode = S_IRUGO | S_IWUSR,
204 .read = rio_read_config,
205 .write = rio_write_config,
209 * rio_create_sysfs_dev_files - create RIO specific sysfs files
210 * @rdev: device whose entries should be created
212 * Create files when @rdev is added to sysfs.
214 int rio_create_sysfs_dev_files(struct rio_dev *rdev)
218 err = device_create_bin_file(&rdev->dev, &rio_config_attr);
220 if (!err && (rdev->pef & RIO_PEF_SWITCH)) {
221 err = device_create_file(&rdev->dev, &dev_attr_routes);
222 if (!err && rdev->rswitch->sw_sysfs)
223 err = rdev->rswitch->sw_sysfs(rdev, RIO_SW_SYSFS_CREATE);
227 pr_warning("RIO: Failed to create attribute file(s) for %s\n",
234 * rio_remove_sysfs_dev_files - cleanup RIO specific sysfs files
235 * @rdev: device whose entries we should free
237 * Cleanup when @rdev is removed from sysfs.
239 void rio_remove_sysfs_dev_files(struct rio_dev *rdev)
241 device_remove_bin_file(&rdev->dev, &rio_config_attr);
242 if (rdev->pef & RIO_PEF_SWITCH) {
243 device_remove_file(&rdev->dev, &dev_attr_routes);
244 if (rdev->rswitch->sw_sysfs)
245 rdev->rswitch->sw_sysfs(rdev, RIO_SW_SYSFS_REMOVE);