blob: 26f7184ef9e1a19cb47890bcbfaa124c6c34912b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File Attributes for Zorro Devices
3 *
4 * Copyright (C) 2003 Geert Uytterhoeven
5 *
6 * Loosely based on drivers/pci/pci-sysfs.c
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
13
14#include <linux/kernel.h>
15#include <linux/zorro.h>
16#include <linux/stat.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080017#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include "zorro.h"
20
21
22/* show configuration fields */
23#define zorro_config_attr(name, field, format_string) \
24static ssize_t \
Yani Ioannou060b8842005-05-17 06:44:04 -040025show_##name(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{ \
27 struct zorro_dev *z; \
28 \
29 z = to_zorro_dev(dev); \
30 return sprintf(buf, format_string, z->field); \
31} \
32static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL);
33
34zorro_config_attr(id, id, "0x%08x\n");
35zorro_config_attr(type, rom.er_Type, "0x%02x\n");
36zorro_config_attr(serial, rom.er_SerialNumber, "0x%08x\n");
37zorro_config_attr(slotaddr, slotaddr, "0x%04x\n");
38zorro_config_attr(slotsize, slotsize, "0x%04x\n");
39
Yani Ioannou060b8842005-05-17 06:44:04 -040040static ssize_t zorro_show_resource(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 struct zorro_dev *z = to_zorro_dev(dev);
43
44 return sprintf(buf, "0x%08lx 0x%08lx 0x%08lx\n",
Geert Uytterhoeven31817572007-05-01 22:33:04 +020045 (unsigned long)zorro_resource_start(z),
46 (unsigned long)zorro_resource_end(z),
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 zorro_resource_flags(z));
48}
49
50static DEVICE_ATTR(resource, S_IRUGO, zorro_show_resource, NULL);
51
Chris Wright2c3c8be2010-05-12 18:28:57 -070052static ssize_t zorro_read_config(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +080053 struct bin_attribute *bin_attr,
54 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 struct zorro_dev *z = to_zorro_dev(container_of(kobj, struct device,
57 kobj));
58 struct ConfigDev cd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 /* Construct a ConfigDev */
61 memset(&cd, 0, sizeof(cd));
62 cd.cd_Rom = z->rom;
63 cd.cd_SlotAddr = z->slotaddr;
64 cd.cd_SlotSize = z->slotsize;
65 cd.cd_BoardAddr = (void *)zorro_resource_start(z);
66 cd.cd_BoardSize = zorro_resource_len(z);
67
akinobu.mita@gmail.comfa7f2892008-07-17 21:16:17 +020068 return memory_read_from_buffer(buf, count, &off, &cd, sizeof(cd));
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71static struct bin_attribute zorro_config_attr = {
72 .attr = {
73 .name = "config",
Geert Uytterhoevena0108662007-08-22 14:01:34 -070074 .mode = S_IRUGO,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 },
76 .size = sizeof(struct ConfigDev),
77 .read = zorro_read_config,
78};
79
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +010080static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
81 char *buf)
82{
83 struct zorro_dev *z = to_zorro_dev(dev);
84
85 return sprintf(buf, ZORRO_DEVICE_MODALIAS_FMT "\n", z->id);
86}
87
88static DEVICE_ATTR(modalias, S_IRUGO, modalias_show, NULL);
89
Geert Uytterhoeven11a8b2c2008-12-30 14:21:19 +010090int zorro_create_sysfs_dev_files(struct zorro_dev *z)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 struct device *dev = &z->dev;
Geert Uytterhoeven11a8b2c2008-12-30 14:21:19 +010093 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 /* current configuration's attributes */
Geert Uytterhoeven11a8b2c2008-12-30 14:21:19 +010096 if ((error = device_create_file(dev, &dev_attr_id)) ||
97 (error = device_create_file(dev, &dev_attr_type)) ||
98 (error = device_create_file(dev, &dev_attr_serial)) ||
99 (error = device_create_file(dev, &dev_attr_slotaddr)) ||
100 (error = device_create_file(dev, &dev_attr_slotsize)) ||
101 (error = device_create_file(dev, &dev_attr_resource)) ||
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +0100102 (error = device_create_file(dev, &dev_attr_modalias)) ||
Geert Uytterhoeven11a8b2c2008-12-30 14:21:19 +0100103 (error = sysfs_create_bin_file(&dev->kobj, &zorro_config_attr)))
104 return error;
105
106 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108