Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / s390 / block / dasd_cmb.c
blobed1ab474c0c6f623dd648d729789aff92da10e65
1 /*
2 * linux/drivers/s390/block/dasd_cmb.c ($Revision: 1.6 $)
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)
14 * any later version.
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/ioctl32.h>
27 #include <linux/module.h>
28 #include <asm/ccwdev.h>
29 #include <asm/cmb.h>
31 #include "dasd_int.h"
33 static int
34 dasd_ioctl_cmf_enable(struct block_device *bdev, int no, long args)
36 struct dasd_device *device;
38 device = bdev->bd_disk->private_data;
39 if (!device)
40 return -EINVAL;
42 return enable_cmf(device->cdev);
45 static int
46 dasd_ioctl_cmf_disable(struct block_device *bdev, int no, long args)
48 struct dasd_device *device;
50 device = bdev->bd_disk->private_data;
51 if (!device)
52 return -EINVAL;
54 return disable_cmf(device->cdev);
57 static int
58 dasd_ioctl_readall_cmb(struct block_device *bdev, int no, long args)
60 struct dasd_device *device;
61 struct cmbdata __user *udata;
62 struct cmbdata data;
63 size_t size;
64 int ret;
66 device = bdev->bd_disk->private_data;
67 if (!device)
68 return -EINVAL;
69 udata = (void __user *) args;
70 size = _IOC_SIZE(no);
72 if (!access_ok(VERIFY_WRITE, udata, size))
73 return -EFAULT;
74 ret = cmf_readall(device->cdev, &data);
75 if (ret)
76 return ret;
77 if (copy_to_user(udata, &data, min(size, sizeof(*udata))))
78 return -EFAULT;
79 return 0;
82 /* module initialization below here. dasd already provides a mechanism
83 * to dynamically register ioctl functions, so we simply use this. */
84 static inline int
85 ioctl_reg(unsigned int no, dasd_ioctl_fn_t handler)
87 int ret;
88 ret = dasd_ioctl_no_register(THIS_MODULE, no, handler);
89 #ifdef CONFIG_COMPAT
90 if (ret)
91 return ret;
93 ret = register_ioctl32_conversion(no, NULL);
94 if (ret)
95 dasd_ioctl_no_unregister(THIS_MODULE, no, handler);
96 #endif
97 return ret;
100 static inline void
101 ioctl_unreg(unsigned int no, dasd_ioctl_fn_t handler)
103 dasd_ioctl_no_unregister(THIS_MODULE, no, handler);
104 #ifdef CONFIG_COMPAT
105 unregister_ioctl32_conversion(no);
106 #endif
110 static void
111 dasd_cmf_exit(void)
113 ioctl_unreg(BIODASDCMFENABLE, dasd_ioctl_cmf_enable);
114 ioctl_unreg(BIODASDCMFDISABLE, dasd_ioctl_cmf_disable);
115 ioctl_unreg(BIODASDREADALLCMB, dasd_ioctl_readall_cmb);
118 static int __init
119 dasd_cmf_init(void)
121 int ret;
122 ret = ioctl_reg (BIODASDCMFENABLE, dasd_ioctl_cmf_enable);
123 if (ret)
124 goto err;
125 ret = ioctl_reg (BIODASDCMFDISABLE, dasd_ioctl_cmf_disable);
126 if (ret)
127 goto err;
128 ret = ioctl_reg (BIODASDREADALLCMB, dasd_ioctl_readall_cmb);
129 if (ret)
130 goto err;
132 return 0;
133 err:
134 dasd_cmf_exit();
136 return ret;
139 module_init(dasd_cmf_init);
140 module_exit(dasd_cmf_exit);
142 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");
143 MODULE_LICENSE("GPL");
144 MODULE_DESCRIPTION("channel measurement facility interface for dasd\n"
145 "Copyright 2003 IBM Corporation\n");