1 /* 2 * $Id: proc.c,v 1.1.2.1 1998/06/07 23:21:01 geert Exp $ 3 * 4 * Procfs interface for the Zorro bus. 5 * 6 * Copyright (C) 1998-2003 Geert Uytterhoeven 7 * 8 * Heavily based on the procfs interface for the PCI bus, which is 9 * 10 * Copyright (C) 1997, 1998 Martin Mares <mj@atrey.karlin.mff.cuni.cz> 11 */ 12 13 #include <linux/types.h> 14 #include <linux/zorro.h> 15 #include <linux/proc_fs.h> 16 #include <linux/init.h> 17 #include <linux/smp_lock.h> 18 #include <asm/uaccess.h> 19 #include <asm/amigahw.h> 20 #include <asm/setup.h> 21 22 static loff_t 23 proc_bus_zorro_lseek(struct file *file, loff_t off, int whence) 24 { 25 loff_t new = -1; 26 27 lock_kernel(); 28 switch (whence) { 29 case 0: 30 new = off; 31 break; 32 case 1: 33 new = file->f_pos + off; 34 break; 35 case 2: 36 new = sizeof(struct ConfigDev) + off; 37 break; 38 } 39 if (new < 0 || new > sizeof(struct ConfigDev)) { 40 unlock_kernel(); 41 return -EINVAL; 42 } 43 unlock_kernel(); 44 return (file->f_pos = new); 45 } 46 47 static ssize_t 48 proc_bus_zorro_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos) 49 { 50 struct inode *ino = file->f_path.dentry->d_inode; 51 struct proc_dir_entry *dp = PDE(ino); 52 struct zorro_dev *z = dp->data; 53 struct ConfigDev cd; 54 loff_t pos = *ppos; 55 56 if (pos >= sizeof(struct ConfigDev)) 57 return 0; 58 if (nbytes >= sizeof(struct ConfigDev)) 59 nbytes = sizeof(struct ConfigDev); 60 if (pos + nbytes > sizeof(struct ConfigDev)) 61 nbytes = sizeof(struct ConfigDev) - pos; 62 63 /* Construct a ConfigDev */ 64 memset(&cd, 0, sizeof(cd)); 65 cd.cd_Rom = z->rom; 66 cd.cd_SlotAddr = z->slotaddr; 67 cd.cd_SlotSize = z->slotsize; 68 cd.cd_BoardAddr = (void *)zorro_resource_start(z); 69 cd.cd_BoardSize = zorro_resource_len(z); 70 71 if (copy_to_user(buf, &cd, nbytes)) 72 return -EFAULT; 73 *ppos += nbytes; 74 75 return nbytes; 76 } 77 78 static const struct file_operations proc_bus_zorro_operations = { 79 .llseek = proc_bus_zorro_lseek, 80 .read = proc_bus_zorro_read, 81 }; 82 83 static int 84 get_zorro_dev_info(char *buf, char **start, off_t pos, int count) 85 { 86 u_int slot; 87 off_t at = 0; 88 int len, cnt; 89 90 for (slot = cnt = 0; slot < zorro_num_autocon && count > cnt; slot++) { 91 struct zorro_dev *z = &zorro_autocon[slot]; 92 len = sprintf(buf, "%02x\t%08x\t%08lx\t%08lx\t%02x\n", slot, 93 z->id, (unsigned long)zorro_resource_start(z), 94 (unsigned long)zorro_resource_len(z), 95 z->rom.er_Type); 96 at += len; 97 if (at >= pos) { 98 if (!*start) { 99 *start = buf + (pos - (at - len)); 100 cnt = at - pos; 101 } else 102 cnt += len; 103 buf += len; 104 } 105 } 106 return (count > cnt) ? cnt : count; 107 } 108 109 static struct proc_dir_entry *proc_bus_zorro_dir; 110 111 static int __init zorro_proc_attach_device(u_int slot) 112 { 113 struct proc_dir_entry *entry; 114 char name[4]; 115 116 sprintf(name, "%02x", slot); 117 entry = create_proc_entry(name, 0, proc_bus_zorro_dir); 118 if (!entry) 119 return -ENOMEM; 120 entry->proc_fops = &proc_bus_zorro_operations; 121 entry->data = &zorro_autocon[slot]; 122 entry->size = sizeof(struct zorro_dev); 123 return 0; 124 } 125 126 static int __init zorro_proc_init(void) 127 { 128 u_int slot; 129 130 if (MACH_IS_AMIGA && AMIGAHW_PRESENT(ZORRO)) { 131 proc_bus_zorro_dir = proc_mkdir("zorro", proc_bus); 132 create_proc_info_entry("devices", 0, proc_bus_zorro_dir, 133 get_zorro_dev_info); 134 for (slot = 0; slot < zorro_num_autocon; slot++) 135 zorro_proc_attach_device(slot); 136 } 137 return 0; 138 } 139 140 __initcall(zorro_proc_init); 141