blob: 39ae03294794f23b852a233e724d8a1b98342c6e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef S390_CMB_H
2#define S390_CMB_H
Heiko Carstens0680ba02009-01-09 12:14:52 +01003
4#include <linux/types.h>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006/**
Cornelia Huckc0208712007-10-12 16:11:16 +02007 * struct cmbdata - channel measurement block data for user space
8 * @size: size of the stored data
9 * @elapsed_time: time since last sampling
10 * @ssch_rsch_count: number of ssch and rsch
11 * @sample_count: number of samples
12 * @device_connect_time: time of device connect
13 * @function_pending_time: time of function pending
14 * @device_disconnect_time: time of device disconnect
15 * @control_unit_queuing_time: time of control unit queuing
16 * @device_active_only_time: time of device active only
17 * @device_busy_time: time of device busy (ext. format)
18 * @initial_command_response_time: initial command response time (ext. format)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
Cornelia Huckc0208712007-10-12 16:11:16 +020020 * All values are stored as 64 bit for simplicity, especially
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * in 32 bit emulation mode. All time values are normalized to
22 * nanoseconds.
23 * Currently, two formats are known, which differ by the size of
24 * this structure, i.e. the last two members are only set when
25 * the extended channel measurement facility (first shipped in
26 * z990 machines) is activated.
Cornelia Huckc0208712007-10-12 16:11:16 +020027 * Potentially, more fields could be added, which would result in a
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * new ioctl number.
Cornelia Huckc0208712007-10-12 16:11:16 +020029 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct cmbdata {
31 __u64 size;
32 __u64 elapsed_time;
33 /* basic and exended format: */
34 __u64 ssch_rsch_count;
35 __u64 sample_count;
36 __u64 device_connect_time;
37 __u64 function_pending_time;
38 __u64 device_disconnect_time;
39 __u64 control_unit_queuing_time;
40 __u64 device_active_only_time;
41 /* extended format only: */
42 __u64 device_busy_time;
43 __u64 initial_command_response_time;
44};
45
46/* enable channel measurement */
Cornelia Huckfc5019c2007-10-12 16:11:15 +020047#define BIODASDCMFENABLE _IO(DASD_IOCTL_LETTER, 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/* enable channel measurement */
Cornelia Huckfc5019c2007-10-12 16:11:15 +020049#define BIODASDCMFDISABLE _IO(DASD_IOCTL_LETTER, 33)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* read channel measurement data */
Cornelia Huckfc5019c2007-10-12 16:11:15 +020051#define BIODASDREADALLCMB _IOWR(DASD_IOCTL_LETTER, 33, struct cmbdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#ifdef __KERNEL__
Cornelia Huck4beb3702005-05-01 08:58:59 -070054struct ccw_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055extern int enable_cmf(struct ccw_device *cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056extern int disable_cmf(struct ccw_device *cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057extern u64 cmf_read(struct ccw_device *cdev, int index);
Cornelia Huckfc5019c2007-10-12 16:11:15 +020058extern int cmf_readall(struct ccw_device *cdev, struct cmbdata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#endif /* __KERNEL__ */
61#endif /* S390_CMB_H */