2 * ISA Plug & Play support
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <linux/module.h>
21 #include <linux/isapnp.h>
22 #include <linux/proc_fs.h>
23 #include <linux/init.h>
24 #include <linux/uaccess.h>
26 extern struct pnp_protocol isapnp_protocol
;
28 static struct proc_dir_entry
*isapnp_proc_bus_dir
= NULL
;
30 static loff_t
isapnp_proc_bus_lseek(struct file
*file
, loff_t off
, int whence
)
32 return fixed_size_llseek(file
, off
, whence
, 256);
35 static ssize_t
isapnp_proc_bus_read(struct file
*file
, char __user
* buf
,
36 size_t nbytes
, loff_t
* ppos
)
38 struct pnp_dev
*dev
= PDE_DATA(file_inode(file
));
46 if (pos
+ nbytes
> size
)
50 if (!access_ok(VERIFY_WRITE
, buf
, cnt
))
53 isapnp_cfg_begin(dev
->card
->number
, dev
->number
);
54 for (; pos
< 256 && cnt
> 0; pos
++, buf
++, cnt
--) {
56 val
= isapnp_read_byte(pos
);
65 static const struct file_operations isapnp_proc_bus_file_operations
= {
67 .llseek
= isapnp_proc_bus_lseek
,
68 .read
= isapnp_proc_bus_read
,
71 static int isapnp_proc_attach_device(struct pnp_dev
*dev
)
73 struct pnp_card
*bus
= dev
->card
;
74 struct proc_dir_entry
*de
, *e
;
77 if (!(de
= bus
->procdir
)) {
78 sprintf(name
, "%02x", bus
->number
);
79 de
= bus
->procdir
= proc_mkdir(name
, isapnp_proc_bus_dir
);
83 sprintf(name
, "%02x", dev
->number
);
84 e
= dev
->procent
= proc_create_data(name
, S_IFREG
| S_IRUGO
, de
,
85 &isapnp_proc_bus_file_operations
, dev
);
88 proc_set_size(e
, 256);
92 int __init
isapnp_proc_init(void)
96 isapnp_proc_bus_dir
= proc_mkdir("bus/isapnp", NULL
);
97 protocol_for_each_dev(&isapnp_protocol
, dev
) {
98 isapnp_proc_attach_device(dev
);