2005-04-17 02:20:36 +04:00
/*
* Procfs interface for the Zorro bus .
*
* Copyright ( C ) 1998 - 2003 Geert Uytterhoeven
*
* Heavily based on the procfs interface for the PCI bus , which is
*
* Copyright ( C ) 1997 , 1998 Martin Mares < mj @ atrey . karlin . mff . cuni . cz >
*/
# include <linux/types.h>
# include <linux/zorro.h>
# include <linux/proc_fs.h>
2008-04-29 12:01:45 +04:00
# include <linux/seq_file.h>
2005-04-17 02:20:36 +04:00
# include <linux/init.h>
2011-08-01 18:58:14 +04:00
# include <linux/export.h>
2005-04-17 02:20:36 +04:00
# include <asm/uaccess.h>
# include <asm/amigahw.h>
# include <asm/setup.h>
static loff_t
proc_bus_zorro_lseek ( struct file * file , loff_t off , int whence )
{
2013-06-22 12:10:22 +04:00
return fixed_size_llseek ( file , off , whence , sizeof ( struct ConfigDev ) ) ;
2005-04-17 02:20:36 +04:00
}
static ssize_t
2006-01-12 12:06:32 +03:00
proc_bus_zorro_read ( struct file * file , char __user * buf , size_t nbytes , loff_t * ppos )
2005-04-17 02:20:36 +04:00
{
2013-04-01 02:16:14 +04:00
struct zorro_dev * z = PDE_DATA ( file_inode ( file ) ) ;
2005-04-17 02:20:36 +04:00
struct ConfigDev cd ;
loff_t pos = * ppos ;
if ( pos > = sizeof ( struct ConfigDev ) )
return 0 ;
if ( nbytes > = sizeof ( struct ConfigDev ) )
nbytes = sizeof ( struct ConfigDev ) ;
if ( pos + nbytes > sizeof ( struct ConfigDev ) )
nbytes = sizeof ( struct ConfigDev ) - pos ;
/* Construct a ConfigDev */
memset ( & cd , 0 , sizeof ( cd ) ) ;
cd . cd_Rom = z - > rom ;
cd . cd_SlotAddr = z - > slotaddr ;
cd . cd_SlotSize = z - > slotsize ;
cd . cd_BoardAddr = ( void * ) zorro_resource_start ( z ) ;
cd . cd_BoardSize = zorro_resource_len ( z ) ;
2010-06-09 13:24:32 +04:00
if ( copy_to_user ( buf , ( void * ) & cd + pos , nbytes ) )
2005-04-17 02:20:36 +04:00
return - EFAULT ;
* ppos + = nbytes ;
return nbytes ;
}
2007-02-12 11:55:34 +03:00
static const struct file_operations proc_bus_zorro_operations = {
2008-04-29 12:02:16 +04:00
. owner = THIS_MODULE ,
2005-04-17 02:20:36 +04:00
. llseek = proc_bus_zorro_lseek ,
. read = proc_bus_zorro_read ,
} ;
2008-04-29 12:01:45 +04:00
static void * zorro_seq_start ( struct seq_file * m , loff_t * pos )
2005-04-17 02:20:36 +04:00
{
2008-04-29 12:01:45 +04:00
return ( * pos < zorro_num_autocon ) ? pos : NULL ;
}
static void * zorro_seq_next ( struct seq_file * m , void * v , loff_t * pos )
{
( * pos ) + + ;
return ( * pos < zorro_num_autocon ) ? pos : NULL ;
}
static void zorro_seq_stop ( struct seq_file * m , void * v )
{
}
static int zorro_seq_show ( struct seq_file * m , void * v )
{
2009-04-05 14:40:41 +04:00
unsigned int slot = * ( loff_t * ) v ;
2008-04-29 12:01:45 +04:00
struct zorro_dev * z = & zorro_autocon [ slot ] ;
seq_printf ( m , " %02x \t %08x \t %08lx \t %08lx \t %02x \n " , slot , z - > id ,
( unsigned long ) zorro_resource_start ( z ) ,
( unsigned long ) zorro_resource_len ( z ) ,
z - > rom . er_Type ) ;
return 0 ;
}
static const struct seq_operations zorro_devices_seq_ops = {
. start = zorro_seq_start ,
. next = zorro_seq_next ,
. stop = zorro_seq_stop ,
. show = zorro_seq_show ,
} ;
static int zorro_devices_proc_open ( struct inode * inode , struct file * file )
{
return seq_open ( file , & zorro_devices_seq_ops ) ;
2005-04-17 02:20:36 +04:00
}
2008-04-29 12:01:45 +04:00
static const struct file_operations zorro_devices_proc_fops = {
. owner = THIS_MODULE ,
. open = zorro_devices_proc_open ,
. read = seq_read ,
. llseek = seq_lseek ,
. release = seq_release ,
} ;
2005-04-17 02:20:36 +04:00
static struct proc_dir_entry * proc_bus_zorro_dir ;
2009-04-05 14:40:41 +04:00
static int __init zorro_proc_attach_device ( unsigned int slot )
2005-04-17 02:20:36 +04:00
{
struct proc_dir_entry * entry ;
char name [ 4 ] ;
sprintf ( name , " %02x " , slot ) ;
2008-04-29 12:02:16 +04:00
entry = proc_create_data ( name , 0 , proc_bus_zorro_dir ,
& proc_bus_zorro_operations ,
& zorro_autocon [ slot ] ) ;
2005-04-17 02:20:36 +04:00
if ( ! entry )
return - ENOMEM ;
2013-04-12 03:38:51 +04:00
proc_set_size ( entry , sizeof ( struct zorro_dev ) ) ;
2005-04-17 02:20:36 +04:00
return 0 ;
}
static int __init zorro_proc_init ( void )
{
2009-04-05 14:40:41 +04:00
unsigned int slot ;
2005-04-17 02:20:36 +04:00
if ( MACH_IS_AMIGA & & AMIGAHW_PRESENT ( ZORRO ) ) {
2008-04-29 12:01:41 +04:00
proc_bus_zorro_dir = proc_mkdir ( " bus/zorro " , NULL ) ;
2008-04-29 12:01:45 +04:00
proc_create ( " devices " , 0 , proc_bus_zorro_dir ,
& zorro_devices_proc_fops ) ;
2005-04-17 02:20:36 +04:00
for ( slot = 0 ; slot < zorro_num_autocon ; slot + + )
zorro_proc_attach_device ( slot ) ;
}
return 0 ;
}
2008-07-17 23:16:16 +04:00
device_initcall ( zorro_proc_init ) ;