Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 17 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Geert Uytterhoeven | bd9ba8f | 2013-10-04 09:38:53 +0200 | [diff] [blame] | 19 | #include <asm/byteorder.h> |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "zorro.h" |
| 22 | |
| 23 | |
| 24 | /* show configuration fields */ |
| 25 | #define zorro_config_attr(name, field, format_string) \ |
| 26 | static ssize_t \ |
Yani Ioannou | 060b884 | 2005-05-17 06:44:04 -0400 | [diff] [blame] | 27 | show_##name(struct device *dev, struct device_attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { \ |
| 29 | struct zorro_dev *z; \ |
| 30 | \ |
| 31 | z = to_zorro_dev(dev); \ |
| 32 | return sprintf(buf, format_string, z->field); \ |
| 33 | } \ |
| 34 | static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL); |
| 35 | |
| 36 | zorro_config_attr(id, id, "0x%08x\n"); |
| 37 | zorro_config_attr(type, rom.er_Type, "0x%02x\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | zorro_config_attr(slotaddr, slotaddr, "0x%04x\n"); |
| 39 | zorro_config_attr(slotsize, slotsize, "0x%04x\n"); |
| 40 | |
Geert Uytterhoeven | bd9ba8f | 2013-10-04 09:38:53 +0200 | [diff] [blame] | 41 | static ssize_t |
| 42 | show_serial(struct device *dev, struct device_attribute *attr, char *buf) |
| 43 | { |
| 44 | struct zorro_dev *z; |
| 45 | |
| 46 | z = to_zorro_dev(dev); |
| 47 | return sprintf(buf, "0x%08x\n", be32_to_cpu(z->rom.er_SerialNumber)); |
| 48 | } |
| 49 | |
| 50 | static DEVICE_ATTR(serial, S_IRUGO, show_serial, NULL); |
| 51 | |
Yani Ioannou | 060b884 | 2005-05-17 06:44:04 -0400 | [diff] [blame] | 52 | static ssize_t zorro_show_resource(struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | { |
| 54 | struct zorro_dev *z = to_zorro_dev(dev); |
| 55 | |
| 56 | return sprintf(buf, "0x%08lx 0x%08lx 0x%08lx\n", |
Geert Uytterhoeven | 3181757 | 2007-05-01 22:33:04 +0200 | [diff] [blame] | 57 | (unsigned long)zorro_resource_start(z), |
| 58 | (unsigned long)zorro_resource_end(z), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | zorro_resource_flags(z)); |
| 60 | } |
| 61 | |
| 62 | static DEVICE_ATTR(resource, S_IRUGO, zorro_show_resource, NULL); |
| 63 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 64 | static ssize_t zorro_read_config(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 65 | struct bin_attribute *bin_attr, |
| 66 | char *buf, loff_t off, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | { |
| 68 | struct zorro_dev *z = to_zorro_dev(container_of(kobj, struct device, |
| 69 | kobj)); |
| 70 | struct ConfigDev cd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 72 | /* Construct a ConfigDev */ |
| 73 | memset(&cd, 0, sizeof(cd)); |
| 74 | cd.cd_Rom = z->rom; |
Geert Uytterhoeven | bd9ba8f | 2013-10-04 09:38:53 +0200 | [diff] [blame] | 75 | cd.cd_SlotAddr = cpu_to_be16(z->slotaddr); |
| 76 | cd.cd_SlotSize = cpu_to_be16(z->slotsize); |
| 77 | cd.cd_BoardAddr = cpu_to_be32(zorro_resource_start(z)); |
| 78 | cd.cd_BoardSize = cpu_to_be32(zorro_resource_len(z)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
akinobu.mita@gmail.com | fa7f289 | 2008-07-17 21:16:17 +0200 | [diff] [blame] | 80 | return memory_read_from_buffer(buf, count, &off, &cd, sizeof(cd)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | static struct bin_attribute zorro_config_attr = { |
| 84 | .attr = { |
| 85 | .name = "config", |
Geert Uytterhoeven | a010866 | 2007-08-22 14:01:34 -0700 | [diff] [blame] | 86 | .mode = S_IRUGO, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | }, |
| 88 | .size = sizeof(struct ConfigDev), |
| 89 | .read = zorro_read_config, |
| 90 | }; |
| 91 | |
Geert Uytterhoeven | bf54a2b | 2008-11-18 21:13:53 +0100 | [diff] [blame] | 92 | static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, |
| 93 | char *buf) |
| 94 | { |
| 95 | struct zorro_dev *z = to_zorro_dev(dev); |
| 96 | |
| 97 | return sprintf(buf, ZORRO_DEVICE_MODALIAS_FMT "\n", z->id); |
| 98 | } |
| 99 | |
| 100 | static DEVICE_ATTR(modalias, S_IRUGO, modalias_show, NULL); |
| 101 | |
Geert Uytterhoeven | 11a8b2c | 2008-12-30 14:21:19 +0100 | [diff] [blame] | 102 | int zorro_create_sysfs_dev_files(struct zorro_dev *z) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | { |
| 104 | struct device *dev = &z->dev; |
Geert Uytterhoeven | 11a8b2c | 2008-12-30 14:21:19 +0100 | [diff] [blame] | 105 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | /* current configuration's attributes */ |
Geert Uytterhoeven | 11a8b2c | 2008-12-30 14:21:19 +0100 | [diff] [blame] | 108 | if ((error = device_create_file(dev, &dev_attr_id)) || |
| 109 | (error = device_create_file(dev, &dev_attr_type)) || |
| 110 | (error = device_create_file(dev, &dev_attr_serial)) || |
| 111 | (error = device_create_file(dev, &dev_attr_slotaddr)) || |
| 112 | (error = device_create_file(dev, &dev_attr_slotsize)) || |
| 113 | (error = device_create_file(dev, &dev_attr_resource)) || |
Geert Uytterhoeven | bf54a2b | 2008-11-18 21:13:53 +0100 | [diff] [blame] | 114 | (error = device_create_file(dev, &dev_attr_modalias)) || |
Geert Uytterhoeven | 11a8b2c | 2008-12-30 14:21:19 +0100 | [diff] [blame] | 115 | (error = sysfs_create_bin_file(&dev->kobj, &zorro_config_attr))) |
| 116 | return error; |
| 117 | |
| 118 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
| 120 | |