2 * $Id: proc.c,v 1.1.2.1 1998/06/07 23:21:01 geert Exp $
4 * Procfs interface for the Zorro bus.
6 * Copyright (C) 1998-2003 Geert Uytterhoeven
8 * Heavily based on the procfs interface for the PCI bus, which is
10 * Copyright (C) 1997, 1998 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
13 #include <linux/types.h>
14 #include <linux/zorro.h>
15 #include <linux/proc_fs.h>
16 #include <linux/seq_file.h>
17 #include <linux/init.h>
18 #include <linux/smp_lock.h>
19 #include <asm/uaccess.h>
20 #include <asm/amigahw.h>
21 #include <asm/setup.h>
24 proc_bus_zorro_lseek(struct file
*file
, loff_t off
, int whence
)
34 new = file
->f_pos
+ off
;
37 new = sizeof(struct ConfigDev
) + off
;
40 if (new < 0 || new > sizeof(struct ConfigDev
)) {
45 return (file
->f_pos
= new);
49 proc_bus_zorro_read(struct file
*file
, char __user
*buf
, size_t nbytes
, loff_t
*ppos
)
51 struct inode
*ino
= file
->f_path
.dentry
->d_inode
;
52 struct proc_dir_entry
*dp
= PDE(ino
);
53 struct zorro_dev
*z
= dp
->data
;
57 if (pos
>= sizeof(struct ConfigDev
))
59 if (nbytes
>= sizeof(struct ConfigDev
))
60 nbytes
= sizeof(struct ConfigDev
);
61 if (pos
+ nbytes
> sizeof(struct ConfigDev
))
62 nbytes
= sizeof(struct ConfigDev
) - pos
;
64 /* Construct a ConfigDev */
65 memset(&cd
, 0, sizeof(cd
));
67 cd
.cd_SlotAddr
= z
->slotaddr
;
68 cd
.cd_SlotSize
= z
->slotsize
;
69 cd
.cd_BoardAddr
= (void *)zorro_resource_start(z
);
70 cd
.cd_BoardSize
= zorro_resource_len(z
);
72 if (copy_to_user(buf
, &cd
, nbytes
))
79 static const struct file_operations proc_bus_zorro_operations
= {
81 .llseek
= proc_bus_zorro_lseek
,
82 .read
= proc_bus_zorro_read
,
85 static void * zorro_seq_start(struct seq_file
*m
, loff_t
*pos
)
87 return (*pos
< zorro_num_autocon
) ? pos
: NULL
;
90 static void * zorro_seq_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
93 return (*pos
< zorro_num_autocon
) ? pos
: NULL
;
96 static void zorro_seq_stop(struct seq_file
*m
, void *v
)
100 static int zorro_seq_show(struct seq_file
*m
, void *v
)
102 u_int slot
= *(loff_t
*)v
;
103 struct zorro_dev
*z
= &zorro_autocon
[slot
];
105 seq_printf(m
, "%02x\t%08x\t%08lx\t%08lx\t%02x\n", slot
, z
->id
,
106 (unsigned long)zorro_resource_start(z
),
107 (unsigned long)zorro_resource_len(z
),
112 static const struct seq_operations zorro_devices_seq_ops
= {
113 .start
= zorro_seq_start
,
114 .next
= zorro_seq_next
,
115 .stop
= zorro_seq_stop
,
116 .show
= zorro_seq_show
,
119 static int zorro_devices_proc_open(struct inode
*inode
, struct file
*file
)
121 return seq_open(file
, &zorro_devices_seq_ops
);
124 static const struct file_operations zorro_devices_proc_fops
= {
125 .owner
= THIS_MODULE
,
126 .open
= zorro_devices_proc_open
,
129 .release
= seq_release
,
132 static struct proc_dir_entry
*proc_bus_zorro_dir
;
134 static int __init
zorro_proc_attach_device(u_int slot
)
136 struct proc_dir_entry
*entry
;
139 sprintf(name
, "%02x", slot
);
140 entry
= proc_create_data(name
, 0, proc_bus_zorro_dir
,
141 &proc_bus_zorro_operations
,
142 &zorro_autocon
[slot
]);
145 entry
->size
= sizeof(struct zorro_dev
);
149 static int __init
zorro_proc_init(void)
153 if (MACH_IS_AMIGA
&& AMIGAHW_PRESENT(ZORRO
)) {
154 proc_bus_zorro_dir
= proc_mkdir("bus/zorro", NULL
);
155 proc_create("devices", 0, proc_bus_zorro_dir
,
156 &zorro_devices_proc_fops
);
157 for (slot
= 0; slot
< zorro_num_autocon
; slot
++)
158 zorro_proc_attach_device(slot
);
163 __initcall(zorro_proc_init
);