2 * linux/drivers/s390/cio/cmf.c
4 * Linux on zSeries Channel Measurement Facility support
6 * Copyright 2000,2006 IBM Corporation
8 * Authors: Arnd Bergmann <arndb@de.ibm.com>
9 * Cornelia Huck <cornelia.huck@de.ibm.com>
11 * original idea from Natarajan Krishnaswami <nkrishna@us.ibm.com>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include <linux/bootmem.h>
29 #include <linux/device.h>
30 #include <linux/init.h>
31 #include <linux/list.h>
32 #include <linux/module.h>
33 #include <linux/moduleparam.h>
34 #include <linux/slab.h>
35 #include <linux/timex.h> /* get_clock() */
37 #include <asm/ccwdev.h>
40 #include <asm/div64.h>
48 /* parameter to enable cmf during boot, possible uses are:
49 * "s390cmf" -- enable cmf and allocate 2 MB of ram so measuring can be
50 * used on any subchannel
51 * "s390cmf=<num>" -- enable cmf and allocate enough memory to measure
52 * <num> subchannel, where <num> is an integer
53 * between 1 and 65535, default is 1024
55 #define ARGSTRING "s390cmf"
57 /* indices for READCMB */
59 /* basic and exended format: */
62 cmb_device_connect_time
,
63 cmb_function_pending_time
,
64 cmb_device_disconnect_time
,
65 cmb_control_unit_queuing_time
,
66 cmb_device_active_only_time
,
67 /* extended format only: */
69 cmb_initial_command_response_time
,
73 * enum cmb_format - types of supported measurement block formats
75 * @CMF_BASIC: traditional channel measurement blocks supported
76 * by all machines that we run on
77 * @CMF_EXTENDED: improved format that was introduced with the z990
79 * @CMF_AUTODETECT: default: use extended format when running on a z990
80 * or later machine, otherwise fall back to basic format
88 * format - actual format for all measurement blocks
90 * The format module parameter can be set to a value of 0 (zero)
91 * or 1, indicating basic or extended format as described for
94 static int format
= CMF_AUTODETECT
;
95 module_param(format
, bool, 0444);
98 * struct cmb_operations - functions to use depending on cmb_format
100 * Most of these functions operate on a struct ccw_device. There is only
101 * one instance of struct cmb_operations because the format of the measurement
102 * data is guaranteed to be the same for every ccw_device.
104 * @alloc: allocate memory for a channel measurement block,
105 * either with the help of a special pool or with kmalloc
106 * @free: free memory allocated with @alloc
107 * @set: enable or disable measurement
108 * @readall: read a measurement block in a common format
109 * @reset: clear the data in the associated measurement block and
110 * reset its time stamp
111 * @align: align an allocated block so that the hardware can use it
113 struct cmb_operations
{
114 int (*alloc
) (struct ccw_device
*);
115 void(*free
) (struct ccw_device
*);
116 int (*set
) (struct ccw_device
*, u32
);
117 u64 (*read
) (struct ccw_device
*, int);
118 int (*readall
)(struct ccw_device
*, struct cmbdata
*);
119 void (*reset
) (struct ccw_device
*);
120 void * (*align
) (void *);
122 struct attribute_group
*attr_group
;
124 static struct cmb_operations
*cmbops
;
127 void *hw_block
; /* Pointer to block updated by hardware */
128 void *last_block
; /* Last changed block copied from hardware block */
129 int size
; /* Size of hw_block and last_block */
130 unsigned long long last_update
; /* when last_block was updated */
133 /* our user interface is designed in terms of nanoseconds,
134 * while the hardware measures total times in its own
136 static inline u64
time_to_nsec(u32 value
)
138 return ((u64
)value
) * 128000ull;
142 * Users are usually interested in average times,
143 * not accumulated time.
144 * This also helps us with atomicity problems
145 * when reading sinlge values.
147 static inline u64
time_to_avg_nsec(u32 value
, u32 count
)
151 /* no samples yet, avoid division by 0 */
155 /* value comes in units of 128 µsec */
156 ret
= time_to_nsec(value
);
162 /* activate or deactivate the channel monitor. When area is NULL,
163 * the monitor is deactivated. The channel monitor needs to
164 * be active in order to measure subchannels, which also need
167 cmf_activate(void *area
, unsigned int onoff
)
169 register void * __gpr2
asm("2");
170 register long __gpr1
asm("1");
173 __gpr1
= onoff
? 2 : 0;
174 /* activate channel measurement */
175 asm("schm" : : "d" (__gpr2
), "d" (__gpr1
) );
179 set_schib(struct ccw_device
*cdev
, u32 mme
, int mbfc
, unsigned long address
)
183 struct subchannel
*sch
;
186 sch
= to_subchannel(cdev
->dev
.parent
);
188 /* msch can silently fail, so do it again if necessary */
189 for (retry
= 0; retry
< 3; retry
++) {
191 stsch(sch
->schid
, schib
);
192 schib
->pmcw
.mme
= mme
;
193 schib
->pmcw
.mbfc
= mbfc
;
194 /* address can be either a block address or a block index */
196 schib
->mba
= address
;
198 schib
->pmcw
.mbi
= address
;
200 /* try to submit it */
201 switch(ret
= msch_err(sch
->schid
, schib
)) {
205 case 2: /* in I/O or status pending */
208 case 3: /* subchannel is no longer valid */
211 default: /* msch caught an exception */
215 stsch(sch
->schid
, schib
); /* restore the schib */
220 /* check if it worked */
221 if (schib
->pmcw
.mme
== mme
&&
222 schib
->pmcw
.mbfc
== mbfc
&&
223 (mbfc
? (schib
->mba
== address
)
224 : (schib
->pmcw
.mbi
== address
)))
233 struct set_schib_struct
{
236 unsigned long address
;
237 wait_queue_head_t wait
;
242 static void cmf_set_schib_release(struct kref
*kref
)
244 struct set_schib_struct
*set_data
;
246 set_data
= container_of(kref
, struct set_schib_struct
, kref
);
250 #define CMF_PENDING 1
252 static int set_schib_wait(struct ccw_device
*cdev
, u32 mme
,
253 int mbfc
, unsigned long address
)
255 struct set_schib_struct
*set_data
;
258 spin_lock_irq(cdev
->ccwlock
);
259 if (!cdev
->private->cmb
) {
263 set_data
= kzalloc(sizeof(struct set_schib_struct
), GFP_ATOMIC
);
268 init_waitqueue_head(&set_data
->wait
);
269 kref_init(&set_data
->kref
);
271 set_data
->mbfc
= mbfc
;
272 set_data
->address
= address
;
274 ret
= set_schib(cdev
, mme
, mbfc
, address
);
278 if (cdev
->private->state
!= DEV_STATE_ONLINE
) {
279 /* if the device is not online, don't even try again */
284 cdev
->private->state
= DEV_STATE_CMFCHANGE
;
285 set_data
->ret
= CMF_PENDING
;
286 cdev
->private->cmb_wait
= set_data
;
288 spin_unlock_irq(cdev
->ccwlock
);
289 if (wait_event_interruptible(set_data
->wait
,
290 set_data
->ret
!= CMF_PENDING
)) {
291 spin_lock_irq(cdev
->ccwlock
);
292 if (set_data
->ret
== CMF_PENDING
) {
293 set_data
->ret
= -ERESTARTSYS
;
294 if (cdev
->private->state
== DEV_STATE_CMFCHANGE
)
295 cdev
->private->state
= DEV_STATE_ONLINE
;
297 spin_unlock_irq(cdev
->ccwlock
);
299 spin_lock_irq(cdev
->ccwlock
);
300 cdev
->private->cmb_wait
= NULL
;
303 kref_put(&set_data
->kref
, cmf_set_schib_release
);
305 spin_unlock_irq(cdev
->ccwlock
);
309 void retry_set_schib(struct ccw_device
*cdev
)
311 struct set_schib_struct
*set_data
;
313 set_data
= cdev
->private->cmb_wait
;
318 kref_get(&set_data
->kref
);
319 set_data
->ret
= set_schib(cdev
, set_data
->mme
, set_data
->mbfc
,
321 wake_up(&set_data
->wait
);
322 kref_put(&set_data
->kref
, cmf_set_schib_release
);
325 static int cmf_copy_block(struct ccw_device
*cdev
)
327 struct subchannel
*sch
;
330 struct cmb_data
*cmb_data
;
332 sch
= to_subchannel(cdev
->dev
.parent
);
334 if (stsch(sch
->schid
, &sch
->schib
))
337 if (sch
->schib
.scsw
.fctl
& SCSW_FCTL_START_FUNC
) {
338 /* Don't copy if a start function is in progress. */
339 if ((!sch
->schib
.scsw
.actl
& SCSW_ACTL_SUSPENDED
) &&
340 (sch
->schib
.scsw
.actl
&
341 (SCSW_ACTL_DEVACT
| SCSW_ACTL_SCHACT
)) &&
342 (!sch
->schib
.scsw
.stctl
& SCSW_STCTL_SEC_STATUS
))
345 cmb_data
= cdev
->private->cmb
;
346 hw_block
= cmbops
->align(cmb_data
->hw_block
);
347 if (!memcmp(cmb_data
->last_block
, hw_block
, cmb_data
->size
))
348 /* No need to copy. */
350 reference_buf
= kzalloc(cmb_data
->size
, GFP_ATOMIC
);
353 /* Ensure consistency of block copied from hardware. */
355 memcpy(cmb_data
->last_block
, hw_block
, cmb_data
->size
);
356 memcpy(reference_buf
, hw_block
, cmb_data
->size
);
357 } while (memcmp(cmb_data
->last_block
, reference_buf
, cmb_data
->size
));
358 cmb_data
->last_update
= get_clock();
359 kfree(reference_buf
);
363 struct copy_block_struct
{
364 wait_queue_head_t wait
;
369 static void cmf_copy_block_release(struct kref
*kref
)
371 struct copy_block_struct
*copy_block
;
373 copy_block
= container_of(kref
, struct copy_block_struct
, kref
);
377 static int cmf_cmb_copy_wait(struct ccw_device
*cdev
)
379 struct copy_block_struct
*copy_block
;
383 spin_lock_irqsave(cdev
->ccwlock
, flags
);
384 if (!cdev
->private->cmb
) {
388 copy_block
= kzalloc(sizeof(struct copy_block_struct
), GFP_ATOMIC
);
393 init_waitqueue_head(©_block
->wait
);
394 kref_init(©_block
->kref
);
396 ret
= cmf_copy_block(cdev
);
400 if (cdev
->private->state
!= DEV_STATE_ONLINE
) {
405 cdev
->private->state
= DEV_STATE_CMFUPDATE
;
406 copy_block
->ret
= CMF_PENDING
;
407 cdev
->private->cmb_wait
= copy_block
;
409 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
410 if (wait_event_interruptible(copy_block
->wait
,
411 copy_block
->ret
!= CMF_PENDING
)) {
412 spin_lock_irqsave(cdev
->ccwlock
, flags
);
413 if (copy_block
->ret
== CMF_PENDING
) {
414 copy_block
->ret
= -ERESTARTSYS
;
415 if (cdev
->private->state
== DEV_STATE_CMFUPDATE
)
416 cdev
->private->state
= DEV_STATE_ONLINE
;
418 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
420 spin_lock_irqsave(cdev
->ccwlock
, flags
);
421 cdev
->private->cmb_wait
= NULL
;
422 ret
= copy_block
->ret
;
424 kref_put(©_block
->kref
, cmf_copy_block_release
);
426 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
430 void cmf_retry_copy_block(struct ccw_device
*cdev
)
432 struct copy_block_struct
*copy_block
;
434 copy_block
= cdev
->private->cmb_wait
;
439 kref_get(©_block
->kref
);
440 copy_block
->ret
= cmf_copy_block(cdev
);
441 wake_up(©_block
->wait
);
442 kref_put(©_block
->kref
, cmf_copy_block_release
);
445 static void cmf_generic_reset(struct ccw_device
*cdev
)
447 struct cmb_data
*cmb_data
;
449 spin_lock_irq(cdev
->ccwlock
);
450 cmb_data
= cdev
->private->cmb
;
452 memset(cmb_data
->last_block
, 0, cmb_data
->size
);
454 * Need to reset hw block as well to make the hardware start
457 memset(cmbops
->align(cmb_data
->hw_block
), 0, cmb_data
->size
);
458 cmb_data
->last_update
= 0;
460 cdev
->private->cmb_start_time
= get_clock();
461 spin_unlock_irq(cdev
->ccwlock
);
465 * struct cmb_area - container for global cmb data
467 * @mem: pointer to CMBs (only in basic measurement mode)
468 * @list: contains a linked list of all subchannels
469 * @lock: protect concurrent access to @mem and @list
473 struct list_head list
;
478 static struct cmb_area cmb_area
= {
479 .lock
= __SPIN_LOCK_UNLOCKED(cmb_area
.lock
),
480 .list
= LIST_HEAD_INIT(cmb_area
.list
),
481 .num_channels
= 1024,
485 /* ****** old style CMB handling ********/
489 * Basic channel measurement blocks are allocated in one contiguous
490 * block of memory, which can not be moved as long as any channel
491 * is active. Therefore, a maximum number of subchannels needs to
492 * be defined somewhere. This is a module parameter, defaulting to
493 * a resonable value of 1024, or 32 kb of memory.
494 * Current kernels don't allow kmalloc with more than 128kb, so the
498 module_param_named(maxchannels
, cmb_area
.num_channels
, uint
, 0444);
501 * struct cmb - basic channel measurement block
503 * cmb as used by the hardware the fields are described in z/Architecture
504 * Principles of Operation, chapter 17.
505 * The area to be a contiguous array and may not be reallocated or freed.
506 * Only one cmb area can be present in the system.
511 u32 device_connect_time
;
512 u32 function_pending_time
;
513 u32 device_disconnect_time
;
514 u32 control_unit_queuing_time
;
515 u32 device_active_only_time
;
519 /* insert a single device into the cmb_area list
520 * called with cmb_area.lock held from alloc_cmb
522 static int alloc_cmb_single(struct ccw_device
*cdev
,
523 struct cmb_data
*cmb_data
)
526 struct ccw_device_private
*node
;
529 spin_lock_irq(cdev
->ccwlock
);
530 if (!list_empty(&cdev
->private->cmb_list
)) {
535 /* find first unused cmb in cmb_area.mem.
536 * this is a little tricky: cmb_area.list
537 * remains sorted by ->cmb->hw_data pointers */
539 list_for_each_entry(node
, &cmb_area
.list
, cmb_list
) {
540 struct cmb_data
*data
;
542 if ((struct cmb
*)data
->hw_block
> cmb
)
546 if (cmb
- cmb_area
.mem
>= cmb_area
.num_channels
) {
552 list_add_tail(&cdev
->private->cmb_list
, &node
->cmb_list
);
553 cmb_data
->hw_block
= cmb
;
554 cdev
->private->cmb
= cmb_data
;
557 spin_unlock_irq(cdev
->ccwlock
);
562 alloc_cmb (struct ccw_device
*cdev
)
567 struct cmb_data
*cmb_data
;
569 /* Allocate private cmb_data. */
570 cmb_data
= kzalloc(sizeof(struct cmb_data
), GFP_KERNEL
);
574 cmb_data
->last_block
= kzalloc(sizeof(struct cmb
), GFP_KERNEL
);
575 if (!cmb_data
->last_block
) {
579 cmb_data
->size
= sizeof(struct cmb
);
580 spin_lock(&cmb_area
.lock
);
583 /* there is no user yet, so we need a new area */
584 size
= sizeof(struct cmb
) * cmb_area
.num_channels
;
585 WARN_ON(!list_empty(&cmb_area
.list
));
587 spin_unlock(&cmb_area
.lock
);
588 mem
= (void*)__get_free_pages(GFP_KERNEL
| GFP_DMA
,
590 spin_lock(&cmb_area
.lock
);
593 /* ok, another thread was faster */
594 free_pages((unsigned long)mem
, get_order(size
));
601 memset(mem
, 0, size
);
603 cmf_activate(cmb_area
.mem
, 1);
607 /* do the actual allocation */
608 ret
= alloc_cmb_single(cdev
, cmb_data
);
610 spin_unlock(&cmb_area
.lock
);
612 kfree(cmb_data
->last_block
);
618 static void free_cmb(struct ccw_device
*cdev
)
620 struct ccw_device_private
*priv
;
621 struct cmb_data
*cmb_data
;
623 spin_lock(&cmb_area
.lock
);
624 spin_lock_irq(cdev
->ccwlock
);
626 priv
= cdev
->private;
628 if (list_empty(&priv
->cmb_list
)) {
633 cmb_data
= priv
->cmb
;
636 kfree(cmb_data
->last_block
);
638 list_del_init(&priv
->cmb_list
);
640 if (list_empty(&cmb_area
.list
)) {
642 size
= sizeof(struct cmb
) * cmb_area
.num_channels
;
643 cmf_activate(NULL
, 0);
644 free_pages((unsigned long)cmb_area
.mem
, get_order(size
));
648 spin_unlock_irq(cdev
->ccwlock
);
649 spin_unlock(&cmb_area
.lock
);
652 static int set_cmb(struct ccw_device
*cdev
, u32 mme
)
655 struct cmb_data
*cmb_data
;
658 spin_lock_irqsave(cdev
->ccwlock
, flags
);
659 if (!cdev
->private->cmb
) {
660 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
663 cmb_data
= cdev
->private->cmb
;
664 offset
= mme
? (struct cmb
*)cmb_data
->hw_block
- cmb_area
.mem
: 0;
665 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
667 return set_schib_wait(cdev
, mme
, 0, offset
);
670 static u64
read_cmb (struct ccw_device
*cdev
, int index
)
677 ret
= cmf_cmb_copy_wait(cdev
);
681 spin_lock_irqsave(cdev
->ccwlock
, flags
);
682 if (!cdev
->private->cmb
) {
686 cmb
= ((struct cmb_data
*)cdev
->private->cmb
)->last_block
;
689 case cmb_ssch_rsch_count
:
690 ret
= cmb
->ssch_rsch_count
;
692 case cmb_sample_count
:
693 ret
= cmb
->sample_count
;
695 case cmb_device_connect_time
:
696 val
= cmb
->device_connect_time
;
698 case cmb_function_pending_time
:
699 val
= cmb
->function_pending_time
;
701 case cmb_device_disconnect_time
:
702 val
= cmb
->device_disconnect_time
;
704 case cmb_control_unit_queuing_time
:
705 val
= cmb
->control_unit_queuing_time
;
707 case cmb_device_active_only_time
:
708 val
= cmb
->device_active_only_time
;
714 ret
= time_to_avg_nsec(val
, cmb
->sample_count
);
716 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
720 static int readall_cmb (struct ccw_device
*cdev
, struct cmbdata
*data
)
723 struct cmb_data
*cmb_data
;
728 ret
= cmf_cmb_copy_wait(cdev
);
731 spin_lock_irqsave(cdev
->ccwlock
, flags
);
732 cmb_data
= cdev
->private->cmb
;
737 if (cmb_data
->last_update
== 0) {
741 cmb
= cmb_data
->last_block
;
742 time
= cmb_data
->last_update
- cdev
->private->cmb_start_time
;
744 memset(data
, 0, sizeof(struct cmbdata
));
746 /* we only know values before device_busy_time */
747 data
->size
= offsetof(struct cmbdata
, device_busy_time
);
749 /* convert to nanoseconds */
750 data
->elapsed_time
= (time
* 1000) >> 12;
752 /* copy data to new structure */
753 data
->ssch_rsch_count
= cmb
->ssch_rsch_count
;
754 data
->sample_count
= cmb
->sample_count
;
756 /* time fields are converted to nanoseconds while copying */
757 data
->device_connect_time
= time_to_nsec(cmb
->device_connect_time
);
758 data
->function_pending_time
= time_to_nsec(cmb
->function_pending_time
);
759 data
->device_disconnect_time
=
760 time_to_nsec(cmb
->device_disconnect_time
);
761 data
->control_unit_queuing_time
762 = time_to_nsec(cmb
->control_unit_queuing_time
);
763 data
->device_active_only_time
764 = time_to_nsec(cmb
->device_active_only_time
);
767 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
771 static void reset_cmb(struct ccw_device
*cdev
)
773 cmf_generic_reset(cdev
);
776 static void * align_cmb(void *area
)
781 static struct attribute_group cmf_attr_group
;
783 static struct cmb_operations cmbops_basic
= {
788 .readall
= readall_cmb
,
791 .attr_group
= &cmf_attr_group
,
794 /* ******** extended cmb handling ********/
797 * struct cmbe - extended channel measurement block
799 * cmb as used by the hardware, may be in any 64 bit physical location,
800 * the fields are described in z/Architecture Principles of Operation,
801 * third edition, chapter 17.
806 u32 device_connect_time
;
807 u32 function_pending_time
;
808 u32 device_disconnect_time
;
809 u32 control_unit_queuing_time
;
810 u32 device_active_only_time
;
811 u32 device_busy_time
;
812 u32 initial_command_response_time
;
816 /* kmalloc only guarantees 8 byte alignment, but we need cmbe
817 * pointers to be naturally aligned. Make sure to allocate
818 * enough space for two cmbes */
819 static inline struct cmbe
* cmbe_align(struct cmbe
*c
)
822 addr
= ((unsigned long)c
+ sizeof (struct cmbe
) - sizeof(long)) &
823 ~(sizeof (struct cmbe
) - sizeof(long));
824 return (struct cmbe
*)addr
;
827 static int alloc_cmbe (struct ccw_device
*cdev
)
830 struct cmb_data
*cmb_data
;
833 cmbe
= kzalloc (sizeof (*cmbe
) * 2, GFP_KERNEL
);
836 cmb_data
= kzalloc(sizeof(struct cmb_data
), GFP_KERNEL
);
841 cmb_data
->last_block
= kzalloc(sizeof(struct cmbe
), GFP_KERNEL
);
842 if (!cmb_data
->last_block
) {
846 cmb_data
->size
= sizeof(struct cmbe
);
847 spin_lock_irq(cdev
->ccwlock
);
848 if (cdev
->private->cmb
) {
849 spin_unlock_irq(cdev
->ccwlock
);
853 cmb_data
->hw_block
= cmbe
;
854 cdev
->private->cmb
= cmb_data
;
855 spin_unlock_irq(cdev
->ccwlock
);
857 /* activate global measurement if this is the first channel */
858 spin_lock(&cmb_area
.lock
);
859 if (list_empty(&cmb_area
.list
))
860 cmf_activate(NULL
, 1);
861 list_add_tail(&cdev
->private->cmb_list
, &cmb_area
.list
);
862 spin_unlock(&cmb_area
.lock
);
867 kfree(cmb_data
->last_block
);
873 static void free_cmbe (struct ccw_device
*cdev
)
875 struct cmb_data
*cmb_data
;
877 spin_lock_irq(cdev
->ccwlock
);
878 cmb_data
= cdev
->private->cmb
;
879 cdev
->private->cmb
= NULL
;
881 kfree(cmb_data
->last_block
);
883 spin_unlock_irq(cdev
->ccwlock
);
885 /* deactivate global measurement if this is the last channel */
886 spin_lock(&cmb_area
.lock
);
887 list_del_init(&cdev
->private->cmb_list
);
888 if (list_empty(&cmb_area
.list
))
889 cmf_activate(NULL
, 0);
890 spin_unlock(&cmb_area
.lock
);
893 static int set_cmbe(struct ccw_device
*cdev
, u32 mme
)
896 struct cmb_data
*cmb_data
;
899 spin_lock_irqsave(cdev
->ccwlock
, flags
);
900 if (!cdev
->private->cmb
) {
901 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
904 cmb_data
= cdev
->private->cmb
;
905 mba
= mme
? (unsigned long) cmbe_align(cmb_data
->hw_block
) : 0;
906 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
908 return set_schib_wait(cdev
, mme
, 1, mba
);
912 static u64
read_cmbe (struct ccw_device
*cdev
, int index
)
915 struct cmb_data
*cmb_data
;
920 ret
= cmf_cmb_copy_wait(cdev
);
924 spin_lock_irqsave(cdev
->ccwlock
, flags
);
925 cmb_data
= cdev
->private->cmb
;
930 cmb
= cmb_data
->last_block
;
933 case cmb_ssch_rsch_count
:
934 ret
= cmb
->ssch_rsch_count
;
936 case cmb_sample_count
:
937 ret
= cmb
->sample_count
;
939 case cmb_device_connect_time
:
940 val
= cmb
->device_connect_time
;
942 case cmb_function_pending_time
:
943 val
= cmb
->function_pending_time
;
945 case cmb_device_disconnect_time
:
946 val
= cmb
->device_disconnect_time
;
948 case cmb_control_unit_queuing_time
:
949 val
= cmb
->control_unit_queuing_time
;
951 case cmb_device_active_only_time
:
952 val
= cmb
->device_active_only_time
;
954 case cmb_device_busy_time
:
955 val
= cmb
->device_busy_time
;
957 case cmb_initial_command_response_time
:
958 val
= cmb
->initial_command_response_time
;
964 ret
= time_to_avg_nsec(val
, cmb
->sample_count
);
966 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
970 static int readall_cmbe (struct ccw_device
*cdev
, struct cmbdata
*data
)
973 struct cmb_data
*cmb_data
;
978 ret
= cmf_cmb_copy_wait(cdev
);
981 spin_lock_irqsave(cdev
->ccwlock
, flags
);
982 cmb_data
= cdev
->private->cmb
;
987 if (cmb_data
->last_update
== 0) {
991 time
= cmb_data
->last_update
- cdev
->private->cmb_start_time
;
993 memset (data
, 0, sizeof(struct cmbdata
));
995 /* we only know values before device_busy_time */
996 data
->size
= offsetof(struct cmbdata
, device_busy_time
);
998 /* conver to nanoseconds */
999 data
->elapsed_time
= (time
* 1000) >> 12;
1001 cmb
= cmb_data
->last_block
;
1002 /* copy data to new structure */
1003 data
->ssch_rsch_count
= cmb
->ssch_rsch_count
;
1004 data
->sample_count
= cmb
->sample_count
;
1006 /* time fields are converted to nanoseconds while copying */
1007 data
->device_connect_time
= time_to_nsec(cmb
->device_connect_time
);
1008 data
->function_pending_time
= time_to_nsec(cmb
->function_pending_time
);
1009 data
->device_disconnect_time
=
1010 time_to_nsec(cmb
->device_disconnect_time
);
1011 data
->control_unit_queuing_time
1012 = time_to_nsec(cmb
->control_unit_queuing_time
);
1013 data
->device_active_only_time
1014 = time_to_nsec(cmb
->device_active_only_time
);
1015 data
->device_busy_time
= time_to_nsec(cmb
->device_busy_time
);
1016 data
->initial_command_response_time
1017 = time_to_nsec(cmb
->initial_command_response_time
);
1021 spin_unlock_irqrestore(cdev
->ccwlock
, flags
);
1025 static void reset_cmbe(struct ccw_device
*cdev
)
1027 cmf_generic_reset(cdev
);
1030 static void * align_cmbe(void *area
)
1032 return cmbe_align(area
);
1035 static struct attribute_group cmf_attr_group_ext
;
1037 static struct cmb_operations cmbops_extended
= {
1038 .alloc
= alloc_cmbe
,
1042 .readall
= readall_cmbe
,
1043 .reset
= reset_cmbe
,
1044 .align
= align_cmbe
,
1045 .attr_group
= &cmf_attr_group_ext
,
1050 cmb_show_attr(struct device
*dev
, char *buf
, enum cmb_index idx
)
1052 return sprintf(buf
, "%lld\n",
1053 (unsigned long long) cmf_read(to_ccwdev(dev
), idx
));
1057 cmb_show_avg_sample_interval(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1059 struct ccw_device
*cdev
;
1061 unsigned long count
;
1062 struct cmb_data
*cmb_data
;
1064 cdev
= to_ccwdev(dev
);
1065 count
= cmf_read(cdev
, cmb_sample_count
);
1066 spin_lock_irq(cdev
->ccwlock
);
1067 cmb_data
= cdev
->private->cmb
;
1069 interval
= cmb_data
->last_update
-
1070 cdev
->private->cmb_start_time
;
1071 interval
= (interval
* 1000) >> 12;
1075 spin_unlock_irq(cdev
->ccwlock
);
1076 return sprintf(buf
, "%ld\n", interval
);
1080 cmb_show_avg_utilization(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1082 struct cmbdata data
;
1087 ret
= cmf_readall(to_ccwdev(dev
), &data
);
1088 if (ret
== -EAGAIN
|| ret
== -ENODEV
)
1089 /* No data (yet/currently) available to use for calculation. */
1090 return sprintf(buf
, "n/a\n");
1094 utilization
= data
.device_connect_time
+
1095 data
.function_pending_time
+
1096 data
.device_disconnect_time
;
1098 /* shift to avoid long long division */
1099 while (-1ul < (data
.elapsed_time
| utilization
)) {
1101 data
.elapsed_time
>>= 8;
1104 /* calculate value in 0.1 percent units */
1105 t
= (unsigned long) data
.elapsed_time
/ 1000;
1106 u
= (unsigned long) utilization
/ t
;
1108 return sprintf(buf
, "%02ld.%01ld%%\n", u
/ 10, u
- (u
/ 10) * 10);
1111 #define cmf_attr(name) \
1112 static ssize_t show_ ## name (struct device * dev, struct device_attribute *attr, char * buf) \
1113 { return cmb_show_attr((dev), buf, cmb_ ## name); } \
1114 static DEVICE_ATTR(name, 0444, show_ ## name, NULL);
1116 #define cmf_attr_avg(name) \
1117 static ssize_t show_avg_ ## name (struct device * dev, struct device_attribute *attr, char * buf) \
1118 { return cmb_show_attr((dev), buf, cmb_ ## name); } \
1119 static DEVICE_ATTR(avg_ ## name, 0444, show_avg_ ## name, NULL);
1121 cmf_attr(ssch_rsch_count
);
1122 cmf_attr(sample_count
);
1123 cmf_attr_avg(device_connect_time
);
1124 cmf_attr_avg(function_pending_time
);
1125 cmf_attr_avg(device_disconnect_time
);
1126 cmf_attr_avg(control_unit_queuing_time
);
1127 cmf_attr_avg(device_active_only_time
);
1128 cmf_attr_avg(device_busy_time
);
1129 cmf_attr_avg(initial_command_response_time
);
1131 static DEVICE_ATTR(avg_sample_interval
, 0444, cmb_show_avg_sample_interval
, NULL
);
1132 static DEVICE_ATTR(avg_utilization
, 0444, cmb_show_avg_utilization
, NULL
);
1134 static struct attribute
*cmf_attributes
[] = {
1135 &dev_attr_avg_sample_interval
.attr
,
1136 &dev_attr_avg_utilization
.attr
,
1137 &dev_attr_ssch_rsch_count
.attr
,
1138 &dev_attr_sample_count
.attr
,
1139 &dev_attr_avg_device_connect_time
.attr
,
1140 &dev_attr_avg_function_pending_time
.attr
,
1141 &dev_attr_avg_device_disconnect_time
.attr
,
1142 &dev_attr_avg_control_unit_queuing_time
.attr
,
1143 &dev_attr_avg_device_active_only_time
.attr
,
1147 static struct attribute_group cmf_attr_group
= {
1149 .attrs
= cmf_attributes
,
1152 static struct attribute
*cmf_attributes_ext
[] = {
1153 &dev_attr_avg_sample_interval
.attr
,
1154 &dev_attr_avg_utilization
.attr
,
1155 &dev_attr_ssch_rsch_count
.attr
,
1156 &dev_attr_sample_count
.attr
,
1157 &dev_attr_avg_device_connect_time
.attr
,
1158 &dev_attr_avg_function_pending_time
.attr
,
1159 &dev_attr_avg_device_disconnect_time
.attr
,
1160 &dev_attr_avg_control_unit_queuing_time
.attr
,
1161 &dev_attr_avg_device_active_only_time
.attr
,
1162 &dev_attr_avg_device_busy_time
.attr
,
1163 &dev_attr_avg_initial_command_response_time
.attr
,
1167 static struct attribute_group cmf_attr_group_ext
= {
1169 .attrs
= cmf_attributes_ext
,
1172 static ssize_t
cmb_enable_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1174 return sprintf(buf
, "%d\n", to_ccwdev(dev
)->private->cmb
? 1 : 0);
1177 static ssize_t
cmb_enable_store(struct device
*dev
, struct device_attribute
*attr
, const char *buf
, size_t c
)
1179 struct ccw_device
*cdev
;
1182 cdev
= to_ccwdev(dev
);
1186 ret
= disable_cmf(cdev
);
1188 printk(KERN_INFO
"disable_cmf failed (%d)\n", ret
);
1191 ret
= enable_cmf(cdev
);
1192 if (ret
&& ret
!= -EBUSY
)
1193 printk(KERN_INFO
"enable_cmf failed (%d)\n", ret
);
1200 DEVICE_ATTR(cmb_enable
, 0644, cmb_enable_show
, cmb_enable_store
);
1202 /* enable_cmf/disable_cmf: module interface for cmf (de)activation */
1204 enable_cmf(struct ccw_device
*cdev
)
1208 ret
= cmbops
->alloc(cdev
);
1209 cmbops
->reset(cdev
);
1212 ret
= cmbops
->set(cdev
, 2);
1217 ret
= sysfs_create_group(&cdev
->dev
.kobj
, cmbops
->attr_group
);
1220 cmbops
->set(cdev
, 0); //FIXME: this can fail
1226 disable_cmf(struct ccw_device
*cdev
)
1230 ret
= cmbops
->set(cdev
, 0);
1234 sysfs_remove_group(&cdev
->dev
.kobj
, cmbops
->attr_group
);
1239 cmf_read(struct ccw_device
*cdev
, int index
)
1241 return cmbops
->read(cdev
, index
);
1245 cmf_readall(struct ccw_device
*cdev
, struct cmbdata
*data
)
1247 return cmbops
->readall(cdev
, data
);
1250 /* Reenable cmf when a disconnected device becomes available again. */
1251 int cmf_reenable(struct ccw_device
*cdev
)
1253 cmbops
->reset(cdev
);
1254 return cmbops
->set(cdev
, 2);
1260 char *format_string
;
1261 char *detect_string
= "parameter";
1263 /* We cannot really autoprobe this. If the user did not give a parameter,
1264 see if we are running on z990 or up, otherwise fall back to basic mode. */
1266 if (format
== CMF_AUTODETECT
) {
1267 if (!css_characteristics_avail
||
1268 !css_general_characteristics
.ext_mb
) {
1271 format
= CMF_EXTENDED
;
1273 detect_string
= "autodetected";
1275 detect_string
= "parameter";
1280 format_string
= "basic";
1281 cmbops
= &cmbops_basic
;
1282 if (cmb_area
.num_channels
> 4096 || cmb_area
.num_channels
< 1) {
1283 printk(KERN_ERR
"Basic channel measurement facility"
1284 " can only use 1 to 4096 devices\n"
1285 KERN_ERR
"when the cmf driver is built"
1286 " as a loadable module\n");
1291 format_string
= "extended";
1292 cmbops
= &cmbops_extended
;
1295 printk(KERN_ERR
"Invalid format %d for channel "
1296 "measurement facility\n", format
);
1300 printk(KERN_INFO
"Channel measurement facility using %s format (%s)\n",
1301 format_string
, detect_string
);
1305 module_init(init_cmf
);
1308 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");
1309 MODULE_LICENSE("GPL");
1310 MODULE_DESCRIPTION("channel measurement facility base driver\n"
1311 "Copyright 2003 IBM Corporation\n");
1313 EXPORT_SYMBOL_GPL(enable_cmf
);
1314 EXPORT_SYMBOL_GPL(disable_cmf
);
1315 EXPORT_SYMBOL_GPL(cmf_read
);
1316 EXPORT_SYMBOL_GPL(cmf_readall
);