2 * linux/drivers/s390/block/dasd_cmb.c ($Revision: 1.9 $)
4 * Linux on zSeries Channel Measurement Facility support
5 * (dasd device driver interface)
7 * Copyright 2000,2003 IBM Corporation
9 * Author: Arnd Bergmann <arndb@de.ibm.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include <linux/init.h>
26 #include <linux/module.h>
27 #include <asm/ccwdev.h>
33 dasd_ioctl_cmf_enable(struct block_device
*bdev
, int no
, long args
)
35 struct dasd_device
*device
;
37 device
= bdev
->bd_disk
->private_data
;
41 return enable_cmf(device
->cdev
);
45 dasd_ioctl_cmf_disable(struct block_device
*bdev
, int no
, long args
)
47 struct dasd_device
*device
;
49 device
= bdev
->bd_disk
->private_data
;
53 return disable_cmf(device
->cdev
);
57 dasd_ioctl_readall_cmb(struct block_device
*bdev
, int no
, long args
)
59 struct dasd_device
*device
;
60 struct cmbdata __user
*udata
;
65 device
= bdev
->bd_disk
->private_data
;
68 udata
= (void __user
*) args
;
71 if (!access_ok(VERIFY_WRITE
, udata
, size
))
73 ret
= cmf_readall(device
->cdev
, &data
);
76 if (copy_to_user(udata
, &data
, min(size
, sizeof(*udata
))))
81 /* module initialization below here. dasd already provides a mechanism
82 * to dynamically register ioctl functions, so we simply use this. */
84 ioctl_reg(unsigned int no
, dasd_ioctl_fn_t handler
)
86 return dasd_ioctl_no_register(THIS_MODULE
, no
, handler
);
90 ioctl_unreg(unsigned int no
, dasd_ioctl_fn_t handler
)
92 dasd_ioctl_no_unregister(THIS_MODULE
, no
, handler
);
98 ioctl_unreg(BIODASDCMFENABLE
, dasd_ioctl_cmf_enable
);
99 ioctl_unreg(BIODASDCMFDISABLE
, dasd_ioctl_cmf_disable
);
100 ioctl_unreg(BIODASDREADALLCMB
, dasd_ioctl_readall_cmb
);
107 ret
= ioctl_reg (BIODASDCMFENABLE
, dasd_ioctl_cmf_enable
);
110 ret
= ioctl_reg (BIODASDCMFDISABLE
, dasd_ioctl_cmf_disable
);
113 ret
= ioctl_reg (BIODASDREADALLCMB
, dasd_ioctl_readall_cmb
);
124 module_init(dasd_cmf_init
);
125 module_exit(dasd_cmf_exit
);
127 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");
128 MODULE_LICENSE("GPL");
129 MODULE_DESCRIPTION("channel measurement facility interface for dasd\n"
130 "Copyright 2003 IBM Corporation\n");