cmf.c 32.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * linux/drivers/s390/cio/cmf.c
L
Linus Torvalds 已提交
3 4 5
 *
 * Linux on zSeries Channel Measurement Facility support
 *
6
 * Copyright 2000,2006 IBM Corporation
L
Linus Torvalds 已提交
7
 *
8 9
 * Authors: Arnd Bergmann <arndb@de.ibm.com>
 *	    Cornelia Huck <cornelia.huck@de.ibm.com>
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 *
 * original idea from Natarajan Krishnaswami <nkrishna@us.ibm.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/bootmem.h>
#include <linux/device.h>
#include <linux/init.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
T
Tim Schmielau 已提交
34 35
#include <linux/slab.h>
#include <linux/timex.h>	/* get_clock() */
L
Linus Torvalds 已提交
36 37 38 39

#include <asm/ccwdev.h>
#include <asm/cio.h>
#include <asm/cmb.h>
T
Tim Schmielau 已提交
40
#include <asm/div64.h>
L
Linus Torvalds 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

#include "cio.h"
#include "css.h"
#include "device.h"
#include "ioasm.h"
#include "chsc.h"

/* parameter to enable cmf during boot, possible uses are:
 *  "s390cmf" -- enable cmf and allocate 2 MB of ram so measuring can be
 *               used on any subchannel
 *  "s390cmf=<num>" -- enable cmf and allocate enough memory to measure
 *                     <num> subchannel, where <num> is an integer
 *                     between 1 and 65535, default is 1024
 */
#define ARGSTRING "s390cmf"

/* indices for READCMB */
enum cmb_index {
 /* basic and exended format: */
	cmb_ssch_rsch_count,
	cmb_sample_count,
	cmb_device_connect_time,
	cmb_function_pending_time,
	cmb_device_disconnect_time,
	cmb_control_unit_queuing_time,
	cmb_device_active_only_time,
 /* extended format only: */
	cmb_device_busy_time,
	cmb_initial_command_response_time,
};

/**
 * enum cmb_format - types of supported measurement block formats
 *
 * @CMF_BASIC:      traditional channel measurement blocks supported
 * 		    by all machines that we run on
 * @CMF_EXTENDED:   improved format that was introduced with the z990
 * 		    machine
 * @CMF_AUTODETECT: default: use extended format when running on a z990
 *                  or later machine, otherwise fall back to basic format
 **/
enum cmb_format {
	CMF_BASIC,
	CMF_EXTENDED,
	CMF_AUTODETECT = -1,
};
/**
 * format - actual format for all measurement blocks
 *
 * The format module parameter can be set to a value of 0 (zero)
 * or 1, indicating basic or extended format as described for
 * enum cmb_format.
 */
static int format = CMF_AUTODETECT;
module_param(format, bool, 0444);

/**
 * struct cmb_operations - functions to use depending on cmb_format
 *
100 101 102
 * Most of these functions operate on a struct ccw_device. There is only
 * one instance of struct cmb_operations because the format of the measurement
 * data is guaranteed to be the same for every ccw_device.
L
Linus Torvalds 已提交
103 104 105 106 107 108 109 110
 *
 * @alloc:	allocate memory for a channel measurement block,
 *		either with the help of a special pool or with kmalloc
 * @free:	free memory allocated with @alloc
 * @set:	enable or disable measurement
 * @readall:	read a measurement block in a common format
 * @reset:	clear the data in the associated measurement block and
 *		reset its time stamp
111
 * @align:	align an allocated block so that the hardware can use it
L
Linus Torvalds 已提交
112 113 114 115 116 117 118 119
 */
struct cmb_operations {
	int (*alloc)  (struct ccw_device*);
	void(*free)   (struct ccw_device*);
	int (*set)    (struct ccw_device*, u32);
	u64 (*read)   (struct ccw_device*, int);
	int (*readall)(struct ccw_device*, struct cmbdata *);
	void (*reset) (struct ccw_device*);
120
	void * (*align) (void *);
L
Linus Torvalds 已提交
121 122 123 124 125

	struct attribute_group *attr_group;
};
static struct cmb_operations *cmbops;

126 127 128 129 130 131 132
struct cmb_data {
	void *hw_block;   /* Pointer to block updated by hardware */
	void *last_block; /* Last changed block copied from hardware block */
	int size;	  /* Size of hw_block and last_block */
	unsigned long long last_update;  /* when last_block was updated */
};

L
Linus Torvalds 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
/* our user interface is designed in terms of nanoseconds,
 * while the hardware measures total times in its own
 * unit.*/
static inline u64 time_to_nsec(u32 value)
{
	return ((u64)value) * 128000ull;
}

/*
 * Users are usually interested in average times,
 * not accumulated time.
 * This also helps us with atomicity problems
 * when reading sinlge values.
 */
static inline u64 time_to_avg_nsec(u32 value, u32 count)
{
	u64 ret;

	/* no samples yet, avoid division by 0 */
	if (count == 0)
		return 0;

	/* value comes in units of 128 sec */
	ret = time_to_nsec(value);
	do_div(ret, count);

	return ret;
}

/* activate or deactivate the channel monitor. When area is NULL,
 * the monitor is deactivated. The channel monitor needs to
 * be active in order to measure subchannels, which also need
 * to be enabled. */
static inline void
cmf_activate(void *area, unsigned int onoff)
{
	register void * __gpr2 asm("2");
	register long __gpr1 asm("1");

	__gpr2 = area;
	__gpr1 = onoff ? 2 : 0;
	/* activate channel measurement */
	asm("schm" : : "d" (__gpr2), "d" (__gpr1) );
}

static int
set_schib(struct ccw_device *cdev, u32 mme, int mbfc, unsigned long address)
{
	int ret;
	int retry;
	struct subchannel *sch;
	struct schib *schib;

	sch = to_subchannel(cdev->dev.parent);
	schib = &sch->schib;
	/* msch can silently fail, so do it again if necessary */
	for (retry = 0; retry < 3; retry++) {
		/* prepare schib */
191
		stsch(sch->schid, schib);
L
Linus Torvalds 已提交
192 193 194 195 196 197 198 199 200
		schib->pmcw.mme  = mme;
		schib->pmcw.mbfc = mbfc;
		/* address can be either a block address or a block index */
		if (mbfc)
			schib->mba = address;
		else
			schib->pmcw.mbi = address;

		/* try to submit it */
201
		switch(ret = msch_err(sch->schid, schib)) {
L
Linus Torvalds 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214
			case 0:
				break;
			case 1:
			case 2: /* in I/O or status pending */
				ret = -EBUSY;
				break;
			case 3: /* subchannel is no longer valid */
				ret = -ENODEV;
				break;
			default: /* msch caught an exception */
				ret = -EINVAL;
				break;
		}
215
		stsch(sch->schid, schib); /* restore the schib */
L
Linus Torvalds 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238

		if (ret)
			break;

		/* check if it worked */
		if (schib->pmcw.mme  == mme &&
		    schib->pmcw.mbfc == mbfc &&
		    (mbfc ? (schib->mba == address)
			  : (schib->pmcw.mbi == address)))
			return 0;

		ret = -EINVAL;
	}

	return ret;
}

struct set_schib_struct {
	u32 mme;
	int mbfc;
	unsigned long address;
	wait_queue_head_t wait;
	int ret;
239
	struct kref kref;
L
Linus Torvalds 已提交
240 241
};

242 243 244 245 246 247 248 249 250 251
static void cmf_set_schib_release(struct kref *kref)
{
	struct set_schib_struct *set_data;

	set_data = container_of(kref, struct set_schib_struct, kref);
	kfree(set_data);
}

#define CMF_PENDING 1

L
Linus Torvalds 已提交
252 253 254
static int set_schib_wait(struct ccw_device *cdev, u32 mme,
				int mbfc, unsigned long address)
{
255 256
	struct set_schib_struct *set_data;
	int ret;
L
Linus Torvalds 已提交
257 258

	spin_lock_irq(cdev->ccwlock);
259 260 261
	if (!cdev->private->cmb) {
		ret = -ENODEV;
		goto out;
L
Linus Torvalds 已提交
262
	}
263 264 265 266 267 268 269 270 271 272 273 274 275 276
	set_data = kzalloc(sizeof(struct set_schib_struct), GFP_ATOMIC);
	if (!set_data) {
		ret = -ENOMEM;
		goto out;
	}
	init_waitqueue_head(&set_data->wait);
	kref_init(&set_data->kref);
	set_data->mme = mme;
	set_data->mbfc = mbfc;
	set_data->address = address;

	ret = set_schib(cdev, mme, mbfc, address);
	if (ret != -EBUSY)
		goto out_put;
L
Linus Torvalds 已提交
277 278 279

	if (cdev->private->state != DEV_STATE_ONLINE) {
		/* if the device is not online, don't even try again */
280 281
		ret = -EBUSY;
		goto out_put;
L
Linus Torvalds 已提交
282
	}
283

L
Linus Torvalds 已提交
284
	cdev->private->state = DEV_STATE_CMFCHANGE;
285 286
	set_data->ret = CMF_PENDING;
	cdev->private->cmb_wait = set_data;
L
Linus Torvalds 已提交
287 288

	spin_unlock_irq(cdev->ccwlock);
289 290
	if (wait_event_interruptible(set_data->wait,
				     set_data->ret != CMF_PENDING)) {
L
Linus Torvalds 已提交
291
		spin_lock_irq(cdev->ccwlock);
292 293
		if (set_data->ret == CMF_PENDING) {
			set_data->ret = -ERESTARTSYS;
L
Linus Torvalds 已提交
294 295 296 297 298
			if (cdev->private->state == DEV_STATE_CMFCHANGE)
				cdev->private->state = DEV_STATE_ONLINE;
		}
		spin_unlock_irq(cdev->ccwlock);
	}
299 300 301 302 303 304
	spin_lock_irq(cdev->ccwlock);
	cdev->private->cmb_wait = NULL;
	ret = set_data->ret;
out_put:
	kref_put(&set_data->kref, cmf_set_schib_release);
out:
L
Linus Torvalds 已提交
305
	spin_unlock_irq(cdev->ccwlock);
306
	return ret;
L
Linus Torvalds 已提交
307 308 309 310
}

void retry_set_schib(struct ccw_device *cdev)
{
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
	struct set_schib_struct *set_data;

	set_data = cdev->private->cmb_wait;
	if (!set_data) {
		WARN_ON(1);
		return;
	}
	kref_get(&set_data->kref);
	set_data->ret = set_schib(cdev, set_data->mme, set_data->mbfc,
				  set_data->address);
	wake_up(&set_data->wait);
	kref_put(&set_data->kref, cmf_set_schib_release);
}

static int cmf_copy_block(struct ccw_device *cdev)
{
	struct subchannel *sch;
	void *reference_buf;
	void *hw_block;
	struct cmb_data *cmb_data;

	sch = to_subchannel(cdev->dev.parent);

	if (stsch(sch->schid, &sch->schib))
		return -ENODEV;

	if (sch->schib.scsw.fctl & SCSW_FCTL_START_FUNC) {
		/* Don't copy if a start function is in progress. */
		if ((!sch->schib.scsw.actl & SCSW_ACTL_SUSPENDED) &&
		    (sch->schib.scsw.actl &
		     (SCSW_ACTL_DEVACT | SCSW_ACTL_SCHACT)) &&
		    (!sch->schib.scsw.stctl & SCSW_STCTL_SEC_STATUS))
			return -EBUSY;
	}
	cmb_data = cdev->private->cmb;
	hw_block = cmbops->align(cmb_data->hw_block);
	if (!memcmp(cmb_data->last_block, hw_block, cmb_data->size))
		/* No need to copy. */
		return 0;
	reference_buf = kzalloc(cmb_data->size, GFP_ATOMIC);
	if (!reference_buf)
		return -ENOMEM;
	/* Ensure consistency of block copied from hardware. */
	do {
		memcpy(cmb_data->last_block, hw_block, cmb_data->size);
		memcpy(reference_buf, hw_block, cmb_data->size);
	} while (memcmp(cmb_data->last_block, reference_buf, cmb_data->size));
	cmb_data->last_update = get_clock();
	kfree(reference_buf);
	return 0;
}

struct copy_block_struct {
	wait_queue_head_t wait;
	int ret;
	struct kref kref;
};

static void cmf_copy_block_release(struct kref *kref)
{
	struct copy_block_struct *copy_block;

	copy_block = container_of(kref, struct copy_block_struct, kref);
	kfree(copy_block);
}

static int cmf_cmb_copy_wait(struct ccw_device *cdev)
{
	struct copy_block_struct *copy_block;
	int ret;
	unsigned long flags;

	spin_lock_irqsave(cdev->ccwlock, flags);
	if (!cdev->private->cmb) {
		ret = -ENODEV;
		goto out;
	}
	copy_block = kzalloc(sizeof(struct copy_block_struct), GFP_ATOMIC);
	if (!copy_block) {
		ret = -ENOMEM;
		goto out;
	}
	init_waitqueue_head(&copy_block->wait);
	kref_init(&copy_block->kref);

	ret = cmf_copy_block(cdev);
	if (ret != -EBUSY)
		goto out_put;

	if (cdev->private->state != DEV_STATE_ONLINE) {
		ret = -EBUSY;
		goto out_put;
	}

	cdev->private->state = DEV_STATE_CMFUPDATE;
	copy_block->ret = CMF_PENDING;
	cdev->private->cmb_wait = copy_block;

	spin_unlock_irqrestore(cdev->ccwlock, flags);
	if (wait_event_interruptible(copy_block->wait,
				     copy_block->ret != CMF_PENDING)) {
		spin_lock_irqsave(cdev->ccwlock, flags);
		if (copy_block->ret == CMF_PENDING) {
			copy_block->ret = -ERESTARTSYS;
			if (cdev->private->state == DEV_STATE_CMFUPDATE)
				cdev->private->state = DEV_STATE_ONLINE;
		}
		spin_unlock_irqrestore(cdev->ccwlock, flags);
	}
	spin_lock_irqsave(cdev->ccwlock, flags);
	cdev->private->cmb_wait = NULL;
	ret = copy_block->ret;
out_put:
	kref_put(&copy_block->kref, cmf_copy_block_release);
out:
	spin_unlock_irqrestore(cdev->ccwlock, flags);
	return ret;
}

void cmf_retry_copy_block(struct ccw_device *cdev)
{
	struct copy_block_struct *copy_block;
L
Linus Torvalds 已提交
433

434 435
	copy_block = cdev->private->cmb_wait;
	if (!copy_block) {
L
Linus Torvalds 已提交
436 437 438
		WARN_ON(1);
		return;
	}
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
	kref_get(&copy_block->kref);
	copy_block->ret = cmf_copy_block(cdev);
	wake_up(&copy_block->wait);
	kref_put(&copy_block->kref, cmf_copy_block_release);
}

static void cmf_generic_reset(struct ccw_device *cdev)
{
	struct cmb_data *cmb_data;

	spin_lock_irq(cdev->ccwlock);
	cmb_data = cdev->private->cmb;
	if (cmb_data) {
		memset(cmb_data->last_block, 0, cmb_data->size);
		/*
		 * Need to reset hw block as well to make the hardware start
		 * from 0 again.
		 */
		memset(cmbops->align(cmb_data->hw_block), 0, cmb_data->size);
		cmb_data->last_update = 0;
	}
	cdev->private->cmb_start_time = get_clock();
	spin_unlock_irq(cdev->ccwlock);
L
Linus Torvalds 已提交
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
}

/**
 * struct cmb_area - container for global cmb data
 *
 * @mem:	pointer to CMBs (only in basic measurement mode)
 * @list:	contains a linked list of all subchannels
 * @lock:	protect concurrent access to @mem and @list
 */
struct cmb_area {
	struct cmb *mem;
	struct list_head list;
	int num_channels;
	spinlock_t lock;
};

static struct cmb_area cmb_area = {
	.lock = SPIN_LOCK_UNLOCKED,
	.list = LIST_HEAD_INIT(cmb_area.list),
	.num_channels  = 1024,
};


/* ****** old style CMB handling ********/

/** int maxchannels
 *
 * Basic channel measurement blocks are allocated in one contiguous
 * block of memory, which can not be moved as long as any channel
 * is active. Therefore, a maximum number of subchannels needs to
 * be defined somewhere. This is a module parameter, defaulting to
 * a resonable value of 1024, or 32 kb of memory.
 * Current kernels don't allow kmalloc with more than 128kb, so the
 * maximum is 4096
 */

module_param_named(maxchannels, cmb_area.num_channels, uint, 0444);

/**
 * struct cmb - basic channel measurement block
 *
 * cmb as used by the hardware the fields are described in z/Architecture
 * Principles of Operation, chapter 17.
 * The area to be a contiguous array and may not be reallocated or freed.
 * Only one cmb area can be present in the system.
 */
struct cmb {
	u16 ssch_rsch_count;
	u16 sample_count;
	u32 device_connect_time;
	u32 function_pending_time;
	u32 device_disconnect_time;
	u32 control_unit_queuing_time;
	u32 device_active_only_time;
	u32 reserved[2];
};

/* insert a single device into the cmb_area list
 * called with cmb_area.lock held from alloc_cmb
 */
522 523
static inline int alloc_cmb_single (struct ccw_device *cdev,
				    struct cmb_data *cmb_data)
L
Linus Torvalds 已提交
524 525 526 527 528 529 530 531 532 533 534 535 536
{
	struct cmb *cmb;
	struct ccw_device_private *node;
	int ret;

	spin_lock_irq(cdev->ccwlock);
	if (!list_empty(&cdev->private->cmb_list)) {
		ret = -EBUSY;
		goto out;
	}

	/* find first unused cmb in cmb_area.mem.
	 * this is a little tricky: cmb_area.list
537
	 * remains sorted by ->cmb->hw_data pointers */
L
Linus Torvalds 已提交
538 539
	cmb = cmb_area.mem;
	list_for_each_entry(node, &cmb_area.list, cmb_list) {
540 541 542
		struct cmb_data *data;
		data = node->cmb;
		if ((struct cmb*)data->hw_block > cmb)
L
Linus Torvalds 已提交
543 544 545 546 547 548 549 550 551 552
			break;
		cmb++;
	}
	if (cmb - cmb_area.mem >= cmb_area.num_channels) {
		ret = -ENOMEM;
		goto out;
	}

	/* insert new cmb */
	list_add_tail(&cdev->private->cmb_list, &node->cmb_list);
553 554
	cmb_data->hw_block = cmb;
	cdev->private->cmb = cmb_data;
L
Linus Torvalds 已提交
555 556 557 558 559 560 561 562 563 564 565 566
	ret = 0;
out:
	spin_unlock_irq(cdev->ccwlock);
	return ret;
}

static int
alloc_cmb (struct ccw_device *cdev)
{
	int ret;
	struct cmb *mem;
	ssize_t size;
567 568 569 570 571 572
	struct cmb_data *cmb_data;

	/* Allocate private cmb_data. */
	cmb_data = kzalloc(sizeof(struct cmb_data), GFP_KERNEL);
	if (!cmb_data)
		return -ENOMEM;
L
Linus Torvalds 已提交
573

574 575 576 577 578 579
	cmb_data->last_block = kzalloc(sizeof(struct cmb), GFP_KERNEL);
	if (!cmb_data->last_block) {
		kfree(cmb_data);
		return -ENOMEM;
	}
	cmb_data->size = sizeof(struct cmb);
L
Linus Torvalds 已提交
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
	spin_lock(&cmb_area.lock);

	if (!cmb_area.mem) {
		/* there is no user yet, so we need a new area */
		size = sizeof(struct cmb) * cmb_area.num_channels;
		WARN_ON(!list_empty(&cmb_area.list));

		spin_unlock(&cmb_area.lock);
		mem = (void*)__get_free_pages(GFP_KERNEL | GFP_DMA,
				 get_order(size));
		spin_lock(&cmb_area.lock);

		if (cmb_area.mem) {
			/* ok, another thread was faster */
			free_pages((unsigned long)mem, get_order(size));
		} else if (!mem) {
			/* no luck */
			ret = -ENOMEM;
			goto out;
		} else {
			/* everything ok */
			memset(mem, 0, size);
			cmb_area.mem = mem;
			cmf_activate(cmb_area.mem, 1);
		}
	}

	/* do the actual allocation */
608
	ret = alloc_cmb_single(cdev, cmb_data);
L
Linus Torvalds 已提交
609 610
out:
	spin_unlock(&cmb_area.lock);
611 612 613 614
	if (ret) {
		kfree(cmb_data->last_block);
		kfree(cmb_data);
	}
L
Linus Torvalds 已提交
615 616 617
	return ret;
}

618
static void free_cmb(struct ccw_device *cdev)
L
Linus Torvalds 已提交
619 620
{
	struct ccw_device_private *priv;
621
	struct cmb_data *cmb_data;
L
Linus Torvalds 已提交
622 623 624 625

	spin_lock(&cmb_area.lock);
	spin_lock_irq(cdev->ccwlock);

626 627
	priv = cdev->private;

L
Linus Torvalds 已提交
628 629 630 631 632
	if (list_empty(&priv->cmb_list)) {
		/* already freed */
		goto out;
	}

633
	cmb_data = priv->cmb;
L
Linus Torvalds 已提交
634
	priv->cmb = NULL;
635 636 637
	if (cmb_data)
		kfree(cmb_data->last_block);
	kfree(cmb_data);
L
Linus Torvalds 已提交
638 639 640 641 642 643 644 645 646 647 648 649 650 651
	list_del_init(&priv->cmb_list);

	if (list_empty(&cmb_area.list)) {
		ssize_t size;
		size = sizeof(struct cmb) * cmb_area.num_channels;
		cmf_activate(NULL, 0);
		free_pages((unsigned long)cmb_area.mem, get_order(size));
		cmb_area.mem = NULL;
	}
out:
	spin_unlock_irq(cdev->ccwlock);
	spin_unlock(&cmb_area.lock);
}

652
static int set_cmb(struct ccw_device *cdev, u32 mme)
L
Linus Torvalds 已提交
653 654
{
	u16 offset;
655 656
	struct cmb_data *cmb_data;
	unsigned long flags;
L
Linus Torvalds 已提交
657

658 659 660
	spin_lock_irqsave(cdev->ccwlock, flags);
	if (!cdev->private->cmb) {
		spin_unlock_irqrestore(cdev->ccwlock, flags);
L
Linus Torvalds 已提交
661
		return -EINVAL;
662 663 664 665
	}
	cmb_data = cdev->private->cmb;
	offset = mme ? (struct cmb *)cmb_data->hw_block - cmb_area.mem : 0;
	spin_unlock_irqrestore(cdev->ccwlock, flags);
L
Linus Torvalds 已提交
666 667 668 669

	return set_schib_wait(cdev, mme, 0, offset);
}

670
static u64 read_cmb (struct ccw_device *cdev, int index)
L
Linus Torvalds 已提交
671
{
672
	struct cmb *cmb;
L
Linus Torvalds 已提交
673
	u32 val;
674 675 676 677 678 679
	int ret;
	unsigned long flags;

	ret = cmf_cmb_copy_wait(cdev);
	if (ret < 0)
		return 0;
L
Linus Torvalds 已提交
680 681 682

	spin_lock_irqsave(cdev->ccwlock, flags);
	if (!cdev->private->cmb) {
683 684
		ret = 0;
		goto out;
L
Linus Torvalds 已提交
685
	}
686
	cmb = ((struct cmb_data *)cdev->private->cmb)->last_block;
L
Linus Torvalds 已提交
687 688 689

	switch (index) {
	case cmb_ssch_rsch_count:
690 691
		ret = cmb->ssch_rsch_count;
		goto out;
L
Linus Torvalds 已提交
692
	case cmb_sample_count:
693 694
		ret = cmb->sample_count;
		goto out;
L
Linus Torvalds 已提交
695
	case cmb_device_connect_time:
696
		val = cmb->device_connect_time;
L
Linus Torvalds 已提交
697 698
		break;
	case cmb_function_pending_time:
699
		val = cmb->function_pending_time;
L
Linus Torvalds 已提交
700 701
		break;
	case cmb_device_disconnect_time:
702
		val = cmb->device_disconnect_time;
L
Linus Torvalds 已提交
703 704
		break;
	case cmb_control_unit_queuing_time:
705
		val = cmb->control_unit_queuing_time;
L
Linus Torvalds 已提交
706 707
		break;
	case cmb_device_active_only_time:
708
		val = cmb->device_active_only_time;
L
Linus Torvalds 已提交
709 710
		break;
	default:
711 712
		ret = 0;
		goto out;
L
Linus Torvalds 已提交
713
	}
714 715 716 717
	ret = time_to_avg_nsec(val, cmb->sample_count);
out:
	spin_unlock_irqrestore(cdev->ccwlock, flags);
	return ret;
L
Linus Torvalds 已提交
718 719
}

720
static int readall_cmb (struct ccw_device *cdev, struct cmbdata *data)
L
Linus Torvalds 已提交
721
{
722 723
	struct cmb *cmb;
	struct cmb_data *cmb_data;
L
Linus Torvalds 已提交
724
	u64 time;
725 726
	unsigned long flags;
	int ret;
L
Linus Torvalds 已提交
727

728 729 730
	ret = cmf_cmb_copy_wait(cdev);
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
731
	spin_lock_irqsave(cdev->ccwlock, flags);
732 733 734 735
	cmb_data = cdev->private->cmb;
	if (!cmb_data) {
		ret = -ENODEV;
		goto out;
L
Linus Torvalds 已提交
736
	}
737 738 739 740 741 742
	if (cmb_data->last_update == 0) {
		ret = -EAGAIN;
		goto out;
	}
	cmb = cmb_data->last_block;
	time = cmb_data->last_update - cdev->private->cmb_start_time;
L
Linus Torvalds 已提交
743 744 745 746 747 748 749 750 751 752

	memset(data, 0, sizeof(struct cmbdata));

	/* we only know values before device_busy_time */
	data->size = offsetof(struct cmbdata, device_busy_time);

	/* convert to nanoseconds */
	data->elapsed_time = (time * 1000) >> 12;

	/* copy data to new structure */
753 754
	data->ssch_rsch_count = cmb->ssch_rsch_count;
	data->sample_count = cmb->sample_count;
L
Linus Torvalds 已提交
755 756

	/* time fields are converted to nanoseconds while copying */
757 758 759 760
	data->device_connect_time = time_to_nsec(cmb->device_connect_time);
	data->function_pending_time = time_to_nsec(cmb->function_pending_time);
	data->device_disconnect_time =
		time_to_nsec(cmb->device_disconnect_time);
L
Linus Torvalds 已提交
761
	data->control_unit_queuing_time
762
		= time_to_nsec(cmb->control_unit_queuing_time);
L
Linus Torvalds 已提交
763
	data->device_active_only_time
764 765 766 767 768 769
		= time_to_nsec(cmb->device_active_only_time);
	ret = 0;
out:
	spin_unlock_irqrestore(cdev->ccwlock, flags);
	return ret;
}
L
Linus Torvalds 已提交
770

771 772 773
static void reset_cmb(struct ccw_device *cdev)
{
	cmf_generic_reset(cdev);
L
Linus Torvalds 已提交
774 775
}

776
static void * align_cmb(void *area)
L
Linus Torvalds 已提交
777
{
778
	return area;
L
Linus Torvalds 已提交
779 780 781 782 783 784 785 786 787 788 789
}

static struct attribute_group cmf_attr_group;

static struct cmb_operations cmbops_basic = {
	.alloc	= alloc_cmb,
	.free	= free_cmb,
	.set	= set_cmb,
	.read	= read_cmb,
	.readall    = readall_cmb,
	.reset	    = reset_cmb,
790
	.align	    = align_cmb,
L
Linus Torvalds 已提交
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
	.attr_group = &cmf_attr_group,
};

/* ******** extended cmb handling ********/

/**
 * struct cmbe - extended channel measurement block
 *
 * cmb as used by the hardware, may be in any 64 bit physical location,
 * the fields are described in z/Architecture Principles of Operation,
 * third edition, chapter 17.
 */
struct cmbe {
	u32 ssch_rsch_count;
	u32 sample_count;
	u32 device_connect_time;
	u32 function_pending_time;
	u32 device_disconnect_time;
	u32 control_unit_queuing_time;
	u32 device_active_only_time;
	u32 device_busy_time;
	u32 initial_command_response_time;
	u32 reserved[7];
};

/* kmalloc only guarantees 8 byte alignment, but we need cmbe
 * pointers to be naturally aligned. Make sure to allocate
 * enough space for two cmbes */
static inline struct cmbe* cmbe_align(struct cmbe *c)
{
	unsigned long addr;
	addr = ((unsigned long)c + sizeof (struct cmbe) - sizeof(long)) &
				 ~(sizeof (struct cmbe) - sizeof(long));
	return (struct cmbe*)addr;
}

827
static int alloc_cmbe (struct ccw_device *cdev)
L
Linus Torvalds 已提交
828 829
{
	struct cmbe *cmbe;
830 831 832 833
	struct cmb_data *cmb_data;
	int ret;

	cmbe = kzalloc (sizeof (*cmbe) * 2, GFP_KERNEL);
L
Linus Torvalds 已提交
834 835
	if (!cmbe)
		return -ENOMEM;
836 837 838 839 840 841 842 843 844 845 846
	cmb_data = kzalloc(sizeof(struct cmb_data), GFP_KERNEL);
	if (!cmb_data) {
		ret = -ENOMEM;
		goto out_free;
	}
	cmb_data->last_block = kzalloc(sizeof(struct cmbe), GFP_KERNEL);
	if (!cmb_data->last_block) {
		ret = -ENOMEM;
		goto out_free;
	}
	cmb_data->size = sizeof(struct cmbe);
L
Linus Torvalds 已提交
847 848 849
	spin_lock_irq(cdev->ccwlock);
	if (cdev->private->cmb) {
		spin_unlock_irq(cdev->ccwlock);
850 851
		ret = -EBUSY;
		goto out_free;
L
Linus Torvalds 已提交
852
	}
853 854
	cmb_data->hw_block = cmbe;
	cdev->private->cmb = cmb_data;
L
Linus Torvalds 已提交
855 856 857 858 859 860 861 862 863 864
	spin_unlock_irq(cdev->ccwlock);

	/* activate global measurement if this is the first channel */
	spin_lock(&cmb_area.lock);
	if (list_empty(&cmb_area.list))
		cmf_activate(NULL, 1);
	list_add_tail(&cdev->private->cmb_list, &cmb_area.list);
	spin_unlock(&cmb_area.lock);

	return 0;
865 866 867 868 869 870
out_free:
	if (cmb_data)
		kfree(cmb_data->last_block);
	kfree(cmb_data);
	kfree(cmbe);
	return ret;
L
Linus Torvalds 已提交
871 872
}

873
static void free_cmbe (struct ccw_device *cdev)
L
Linus Torvalds 已提交
874
{
875 876
	struct cmb_data *cmb_data;

L
Linus Torvalds 已提交
877
	spin_lock_irq(cdev->ccwlock);
878
	cmb_data = cdev->private->cmb;
L
Linus Torvalds 已提交
879
	cdev->private->cmb = NULL;
880 881 882
	if (cmb_data)
		kfree(cmb_data->last_block);
	kfree(cmb_data);
L
Linus Torvalds 已提交
883 884 885 886 887 888 889 890 891 892
	spin_unlock_irq(cdev->ccwlock);

	/* deactivate global measurement if this is the last channel */
	spin_lock(&cmb_area.lock);
	list_del_init(&cdev->private->cmb_list);
	if (list_empty(&cmb_area.list))
		cmf_activate(NULL, 0);
	spin_unlock(&cmb_area.lock);
}

893
static int set_cmbe(struct ccw_device *cdev, u32 mme)
L
Linus Torvalds 已提交
894 895
{
	unsigned long mba;
896 897
	struct cmb_data *cmb_data;
	unsigned long flags;
L
Linus Torvalds 已提交
898

899 900 901
	spin_lock_irqsave(cdev->ccwlock, flags);
	if (!cdev->private->cmb) {
		spin_unlock_irqrestore(cdev->ccwlock, flags);
L
Linus Torvalds 已提交
902
		return -EINVAL;
903 904 905 906
	}
	cmb_data = cdev->private->cmb;
	mba = mme ? (unsigned long) cmbe_align(cmb_data->hw_block) : 0;
	spin_unlock_irqrestore(cdev->ccwlock, flags);
L
Linus Torvalds 已提交
907 908 909 910 911

	return set_schib_wait(cdev, mme, 1, mba);
}


912
static u64 read_cmbe (struct ccw_device *cdev, int index)
L
Linus Torvalds 已提交
913
{
914 915
	struct cmbe *cmb;
	struct cmb_data *cmb_data;
L
Linus Torvalds 已提交
916
	u32 val;
917 918
	int ret;
	unsigned long flags;
L
Linus Torvalds 已提交
919

920 921
	ret = cmf_cmb_copy_wait(cdev);
	if (ret < 0)
L
Linus Torvalds 已提交
922 923
		return 0;

924 925 926 927 928 929 930
	spin_lock_irqsave(cdev->ccwlock, flags);
	cmb_data = cdev->private->cmb;
	if (!cmb_data) {
		ret = 0;
		goto out;
	}
	cmb = cmb_data->last_block;
L
Linus Torvalds 已提交
931 932 933

	switch (index) {
	case cmb_ssch_rsch_count:
934 935
		ret = cmb->ssch_rsch_count;
		goto out;
L
Linus Torvalds 已提交
936
	case cmb_sample_count:
937 938
		ret = cmb->sample_count;
		goto out;
L
Linus Torvalds 已提交
939
	case cmb_device_connect_time:
940
		val = cmb->device_connect_time;
L
Linus Torvalds 已提交
941 942
		break;
	case cmb_function_pending_time:
943
		val = cmb->function_pending_time;
L
Linus Torvalds 已提交
944 945
		break;
	case cmb_device_disconnect_time:
946
		val = cmb->device_disconnect_time;
L
Linus Torvalds 已提交
947 948
		break;
	case cmb_control_unit_queuing_time:
949
		val = cmb->control_unit_queuing_time;
L
Linus Torvalds 已提交
950 951
		break;
	case cmb_device_active_only_time:
952
		val = cmb->device_active_only_time;
L
Linus Torvalds 已提交
953 954
		break;
	case cmb_device_busy_time:
955
		val = cmb->device_busy_time;
L
Linus Torvalds 已提交
956 957
		break;
	case cmb_initial_command_response_time:
958
		val = cmb->initial_command_response_time;
L
Linus Torvalds 已提交
959 960
		break;
	default:
961 962
		ret = 0;
		goto out;
L
Linus Torvalds 已提交
963
	}
964 965 966 967
	ret = time_to_avg_nsec(val, cmb->sample_count);
out:
	spin_unlock_irqrestore(cdev->ccwlock, flags);
	return ret;
L
Linus Torvalds 已提交
968 969
}

970
static int readall_cmbe (struct ccw_device *cdev, struct cmbdata *data)
L
Linus Torvalds 已提交
971
{
972 973
	struct cmbe *cmb;
	struct cmb_data *cmb_data;
L
Linus Torvalds 已提交
974
	u64 time;
975 976
	unsigned long flags;
	int ret;
L
Linus Torvalds 已提交
977

978 979 980
	ret = cmf_cmb_copy_wait(cdev);
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
981
	spin_lock_irqsave(cdev->ccwlock, flags);
982 983 984 985
	cmb_data = cdev->private->cmb;
	if (!cmb_data) {
		ret = -ENODEV;
		goto out;
L
Linus Torvalds 已提交
986
	}
987 988 989 990 991
	if (cmb_data->last_update == 0) {
		ret = -EAGAIN;
		goto out;
	}
	time = cmb_data->last_update - cdev->private->cmb_start_time;
L
Linus Torvalds 已提交
992 993 994 995 996 997 998 999 1000

	memset (data, 0, sizeof(struct cmbdata));

	/* we only know values before device_busy_time */
	data->size = offsetof(struct cmbdata, device_busy_time);

	/* conver to nanoseconds */
	data->elapsed_time = (time * 1000) >> 12;

1001
	cmb = cmb_data->last_block;
L
Linus Torvalds 已提交
1002
	/* copy data to new structure */
1003 1004
	data->ssch_rsch_count = cmb->ssch_rsch_count;
	data->sample_count = cmb->sample_count;
L
Linus Torvalds 已提交
1005 1006

	/* time fields are converted to nanoseconds while copying */
1007 1008 1009 1010
	data->device_connect_time = time_to_nsec(cmb->device_connect_time);
	data->function_pending_time = time_to_nsec(cmb->function_pending_time);
	data->device_disconnect_time =
		time_to_nsec(cmb->device_disconnect_time);
L
Linus Torvalds 已提交
1011
	data->control_unit_queuing_time
1012
		= time_to_nsec(cmb->control_unit_queuing_time);
L
Linus Torvalds 已提交
1013
	data->device_active_only_time
1014 1015
		= time_to_nsec(cmb->device_active_only_time);
	data->device_busy_time = time_to_nsec(cmb->device_busy_time);
L
Linus Torvalds 已提交
1016
	data->initial_command_response_time
1017
		= time_to_nsec(cmb->initial_command_response_time);
L
Linus Torvalds 已提交
1018

1019 1020 1021 1022
	ret = 0;
out:
	spin_unlock_irqrestore(cdev->ccwlock, flags);
	return ret;
L
Linus Torvalds 已提交
1023 1024
}

1025
static void reset_cmbe(struct ccw_device *cdev)
L
Linus Torvalds 已提交
1026
{
1027 1028 1029 1030 1031 1032
	cmf_generic_reset(cdev);
}

static void * align_cmbe(void *area)
{
	return cmbe_align(area);
L
Linus Torvalds 已提交
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
}

static struct attribute_group cmf_attr_group_ext;

static struct cmb_operations cmbops_extended = {
	.alloc	    = alloc_cmbe,
	.free	    = free_cmbe,
	.set	    = set_cmbe,
	.read	    = read_cmbe,
	.readall    = readall_cmbe,
	.reset	    = reset_cmbe,
1044
	.align	    = align_cmbe,
L
Linus Torvalds 已提交
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
	.attr_group = &cmf_attr_group_ext,
};


static ssize_t
cmb_show_attr(struct device *dev, char *buf, enum cmb_index idx)
{
	return sprintf(buf, "%lld\n",
		(unsigned long long) cmf_read(to_ccwdev(dev), idx));
}

static ssize_t
1057
cmb_show_avg_sample_interval(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
1058 1059 1060 1061
{
	struct ccw_device *cdev;
	long interval;
	unsigned long count;
1062
	struct cmb_data *cmb_data;
L
Linus Torvalds 已提交
1063 1064 1065

	cdev = to_ccwdev(dev);
	count = cmf_read(cdev, cmb_sample_count);
1066 1067 1068 1069 1070
	spin_lock_irq(cdev->ccwlock);
	cmb_data = cdev->private->cmb;
	if (count) {
		interval = cmb_data->last_update -
			cdev->private->cmb_start_time;
L
Linus Torvalds 已提交
1071
		interval /= count;
1072
	} else
L
Linus Torvalds 已提交
1073
		interval = -1;
1074
	spin_unlock_irq(cdev->ccwlock);
L
Linus Torvalds 已提交
1075 1076 1077 1078
	return sprintf(buf, "%ld\n", interval);
}

static ssize_t
1079
cmb_show_avg_utilization(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
1080 1081 1082 1083 1084 1085 1086
{
	struct cmbdata data;
	u64 utilization;
	unsigned long t, u;
	int ret;

	ret = cmf_readall(to_ccwdev(dev), &data);
1087 1088 1089 1090
	if (ret == -EAGAIN || ret == -ENODEV)
		/* No data (yet/currently) available to use for calculation. */
		return sprintf(buf, "n/a\n");
	else if (ret)
L
Linus Torvalds 已提交
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
		return ret;

	utilization = data.device_connect_time +
		      data.function_pending_time +
		      data.device_disconnect_time;

	/* shift to avoid long long division */
	while (-1ul < (data.elapsed_time | utilization)) {
		utilization >>= 8;
		data.elapsed_time >>= 8;
	}

	/* calculate value in 0.1 percent units */
	t = (unsigned long) data.elapsed_time / 1000;
	u = (unsigned long) utilization / t;

	return sprintf(buf, "%02ld.%01ld%%\n", u/ 10, u - (u/ 10) * 10);
}

#define cmf_attr(name) \
1111
static ssize_t show_ ## name (struct device * dev, struct device_attribute *attr, char * buf) \
L
Linus Torvalds 已提交
1112 1113 1114 1115
{ return cmb_show_attr((dev), buf, cmb_ ## name); } \
static DEVICE_ATTR(name, 0444, show_ ## name, NULL);

#define cmf_attr_avg(name) \
1116
static ssize_t show_avg_ ## name (struct device * dev, struct device_attribute *attr, char * buf) \
L
Linus Torvalds 已提交
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
{ return cmb_show_attr((dev), buf, cmb_ ## name); } \
static DEVICE_ATTR(avg_ ## name, 0444, show_avg_ ## name, NULL);

cmf_attr(ssch_rsch_count);
cmf_attr(sample_count);
cmf_attr_avg(device_connect_time);
cmf_attr_avg(function_pending_time);
cmf_attr_avg(device_disconnect_time);
cmf_attr_avg(control_unit_queuing_time);
cmf_attr_avg(device_active_only_time);
cmf_attr_avg(device_busy_time);
cmf_attr_avg(initial_command_response_time);

static DEVICE_ATTR(avg_sample_interval, 0444, cmb_show_avg_sample_interval, NULL);
static DEVICE_ATTR(avg_utilization, 0444, cmb_show_avg_utilization, NULL);

static struct attribute *cmf_attributes[] = {
	&dev_attr_avg_sample_interval.attr,
	&dev_attr_avg_utilization.attr,
	&dev_attr_ssch_rsch_count.attr,
	&dev_attr_sample_count.attr,
	&dev_attr_avg_device_connect_time.attr,
	&dev_attr_avg_function_pending_time.attr,
	&dev_attr_avg_device_disconnect_time.attr,
	&dev_attr_avg_control_unit_queuing_time.attr,
	&dev_attr_avg_device_active_only_time.attr,
	0,
};

static struct attribute_group cmf_attr_group = {
	.name  = "cmf",
	.attrs = cmf_attributes,
};

static struct attribute *cmf_attributes_ext[] = {
	&dev_attr_avg_sample_interval.attr,
	&dev_attr_avg_utilization.attr,
	&dev_attr_ssch_rsch_count.attr,
	&dev_attr_sample_count.attr,
	&dev_attr_avg_device_connect_time.attr,
	&dev_attr_avg_function_pending_time.attr,
	&dev_attr_avg_device_disconnect_time.attr,
	&dev_attr_avg_control_unit_queuing_time.attr,
	&dev_attr_avg_device_active_only_time.attr,
	&dev_attr_avg_device_busy_time.attr,
	&dev_attr_avg_initial_command_response_time.attr,
	0,
};

static struct attribute_group cmf_attr_group_ext = {
	.name  = "cmf",
	.attrs = cmf_attributes_ext,
};

1171
static ssize_t cmb_enable_show(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
1172 1173 1174 1175
{
	return sprintf(buf, "%d\n", to_ccwdev(dev)->private->cmb ? 1 : 0);
}

1176
static ssize_t cmb_enable_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t c)
L
Linus Torvalds 已提交
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
{
	struct ccw_device *cdev;
	int ret;

	cdev = to_ccwdev(dev);

	switch (buf[0]) {
	case '0':
		ret = disable_cmf(cdev);
		if (ret)
			printk(KERN_INFO "disable_cmf failed (%d)\n", ret);
		break;
	case '1':
		ret = enable_cmf(cdev);
		if (ret && ret != -EBUSY)
			printk(KERN_INFO "enable_cmf failed (%d)\n", ret);
		break;
	}

	return c;
}

DEVICE_ATTR(cmb_enable, 0644, cmb_enable_show, cmb_enable_store);

/* enable_cmf/disable_cmf: module interface for cmf (de)activation */
int
enable_cmf(struct ccw_device *cdev)
{
	int ret;

	ret = cmbops->alloc(cdev);
	cmbops->reset(cdev);
	if (ret)
		return ret;
	ret = cmbops->set(cdev, 2);
	if (ret) {
		cmbops->free(cdev);
		return ret;
	}
	ret = sysfs_create_group(&cdev->dev.kobj, cmbops->attr_group);
	if (!ret)
		return 0;
	cmbops->set(cdev, 0);  //FIXME: this can fail
	cmbops->free(cdev);
	return ret;
}

int
disable_cmf(struct ccw_device *cdev)
{
	int ret;

	ret = cmbops->set(cdev, 0);
	if (ret)
		return ret;
	cmbops->free(cdev);
	sysfs_remove_group(&cdev->dev.kobj, cmbops->attr_group);
	return ret;
}

u64
cmf_read(struct ccw_device *cdev, int index)
{
	return cmbops->read(cdev, index);
}

int
cmf_readall(struct ccw_device *cdev, struct cmbdata *data)
{
	return cmbops->readall(cdev, data);
}

1249 1250 1251 1252 1253 1254 1255
/* Reenable cmf when a disconnected device becomes available again. */
int cmf_reenable(struct ccw_device *cdev)
{
	cmbops->reset(cdev);
	return cmbops->set(cdev, 2);
}

L
Linus Torvalds 已提交
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
static int __init
init_cmf(void)
{
	char *format_string;
	char *detect_string = "parameter";

	/* We cannot really autoprobe this. If the user did not give a parameter,
	   see if we are running on z990 or up, otherwise fall back to basic mode. */

	if (format == CMF_AUTODETECT) {
		if (!css_characteristics_avail ||
		    !css_general_characteristics.ext_mb) {
			format = CMF_BASIC;
		} else {
			format = CMF_EXTENDED;
		}
		detect_string = "autodetected";
	} else {
		detect_string = "parameter";
	}

	switch (format) {
	case CMF_BASIC:
		format_string = "basic";
		cmbops = &cmbops_basic;
		if (cmb_area.num_channels > 4096 || cmb_area.num_channels < 1) {
			printk(KERN_ERR "Basic channel measurement facility"
					" can only use 1 to 4096 devices\n"
			       KERN_ERR "when the cmf driver is built"
					" as a loadable module\n");
			return 1;
		}
		break;
	case CMF_EXTENDED:
 		format_string = "extended";
		cmbops = &cmbops_extended;
		break;
	default:
		printk(KERN_ERR "Invalid format %d for channel "
			"measurement facility\n", format);
		return 1;
	}

	printk(KERN_INFO "Channel measurement facility using %s format (%s)\n",
		format_string, detect_string);
	return 0;
}

module_init(init_cmf);


MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("channel measurement facility base driver\n"
		   "Copyright 2003 IBM Corporation\n");

EXPORT_SYMBOL_GPL(enable_cmf);
EXPORT_SYMBOL_GPL(disable_cmf);
EXPORT_SYMBOL_GPL(cmf_read);
EXPORT_SYMBOL_GPL(cmf_readall);