dasd_diag.c 18.2 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3 4 5
 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
 * Based on.......: linux/drivers/s390/block/mdisk.c
 * ...............: by Hartmunt Penner <hpenner@de.ibm.com>
 * Bugreports.to..: <Linux390@de.ibm.com>
6
 * Copyright IBM Corp. 1999, 2000
L
Linus Torvalds 已提交
7 8 9
 *
 */

10
#define KMSG_COMPONENT "dasd"
S
Stefan Haberland 已提交
11

12
#include <linux/kernel_stat.h>
L
Linus Torvalds 已提交
13 14 15
#include <linux/stddef.h>
#include <linux/kernel.h>
#include <linux/slab.h>
16
#include <linux/hdreg.h>
L
Linus Torvalds 已提交
17 18 19
#include <linux/bio.h>
#include <linux/module.h>
#include <linux/init.h>
20
#include <linux/jiffies.h>
L
Linus Torvalds 已提交
21 22 23

#include <asm/dasd.h>
#include <asm/debug.h>
24
#include <asm/diag.h>
L
Linus Torvalds 已提交
25 26
#include <asm/ebcdic.h>
#include <asm/io.h>
27
#include <asm/irq.h>
28
#include <asm/vtoc.h>
29
#include <asm/diag.h>
L
Linus Torvalds 已提交
30 31 32 33 34 35 36 37

#include "dasd_int.h"
#include "dasd_diag.h"

#define PRINTK_HEADER "dasd(diag):"

MODULE_LICENSE("GPL");

38 39 40 41 42 43 44 45 46
/* The maximum number of blocks per request (max_blocks) is dependent on the
 * amount of storage that is available in the static I/O buffer for each
 * device. Currently each device gets 2 pages. We want to fit two requests
 * into the available memory so that we can immediately start the next if one
 * finishes. */
#define DIAG_MAX_BLOCKS	(((2 * PAGE_SIZE - sizeof(struct dasd_ccw_req) - \
			   sizeof(struct dasd_diag_req)) / \
		           sizeof(struct dasd_diag_bio)) / 2)
#define DIAG_MAX_RETRIES	32
47
#define DIAG_TIMEOUT		50
48

49
static struct dasd_discipline dasd_diag_discipline;
L
Linus Torvalds 已提交
50 51 52 53 54

struct dasd_diag_private {
	struct dasd_diag_characteristics rdc_data;
	struct dasd_diag_rw_io iob;
	struct dasd_diag_init_io iib;
55
	blocknum_t pt_block;
56
	struct ccw_dev_id dev_id;
L
Linus Torvalds 已提交
57 58 59
};

struct dasd_diag_req {
60
	unsigned int block_count;
L
Linus Torvalds 已提交
61 62 63
	struct dasd_diag_bio bio[0];
};

64 65 66 67 68 69
static const u8 DASD_DIAG_CMS1[] = { 0xc3, 0xd4, 0xe2, 0xf1 };/* EBCDIC CMS1 */

/* Perform DIAG250 call with block I/O parameter list iob (input and output)
 * and function code cmd.
 * In case of an exception return 3. Otherwise return result of bitwise OR of
 * resulting condition code and DIAG return code. */
70
static inline int __dia250(void *iob, int cmd)
L
Linus Torvalds 已提交
71
{
72
	register unsigned long reg2 asm ("2") = (unsigned long) iob;
73 74 75
	typedef union {
		struct dasd_diag_init_io init_io;
		struct dasd_diag_rw_io rw_io;
76
	} addr_type;
L
Linus Torvalds 已提交
77 78
	int rc;

79 80
	rc = 3;
	asm volatile(
81
		"	diag	2,%2,0x250\n"
82 83
		"0:	ipm	%0\n"
		"	srl	%0,28\n"
84
		"	or	%0,3\n"
85
		"1:\n"
86 87
		EX_TABLE(0b,1b)
		: "+d" (rc), "=m" (*(addr_type *) iob)
88 89
		: "d" (cmd), "d" (reg2), "m" (*(addr_type *) iob)
		: "3", "cc");
L
Linus Torvalds 已提交
90 91 92
	return rc;
}

93 94 95 96 97 98
static inline int dia250(void *iob, int cmd)
{
	diag_stat_inc(DIAG_STAT_X250);
	return __dia250(iob, cmd);
}

99 100 101 102
/* Initialize block I/O to DIAG device using the specified blocksize and
 * block offset. On success, return zero and set end_block to contain the
 * number of blocks on the device minus the specified offset. Return non-zero
 * otherwise. */
103
static inline int
104 105
mdsk_init_io(struct dasd_device *device, unsigned int blocksize,
	     blocknum_t offset, blocknum_t *end_block)
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113 114
{
	struct dasd_diag_private *private;
	struct dasd_diag_init_io *iib;
	int rc;

	private = (struct dasd_diag_private *) device->private;
	iib = &private->iib;
	memset(iib, 0, sizeof (struct dasd_diag_init_io));

115
	iib->dev_nr = private->dev_id.devno;
L
Linus Torvalds 已提交
116 117
	iib->block_size = blocksize;
	iib->offset = offset;
118
	iib->flaga = DASD_DIAG_FLAGA_DEFAULT;
L
Linus Torvalds 已提交
119 120 121

	rc = dia250(iib, INIT_BIO);

122 123 124 125
	if ((rc & 3) == 0 && end_block)
		*end_block = iib->end_block;

	return rc;
L
Linus Torvalds 已提交
126 127
}

128 129
/* Remove block I/O environment for device. Return zero on success, non-zero
 * otherwise. */
130
static inline int
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139
mdsk_term_io(struct dasd_device * device)
{
	struct dasd_diag_private *private;
	struct dasd_diag_init_io *iib;
	int rc;

	private = (struct dasd_diag_private *) device->private;
	iib = &private->iib;
	memset(iib, 0, sizeof (struct dasd_diag_init_io));
140
	iib->dev_nr = private->dev_id.devno;
L
Linus Torvalds 已提交
141
	rc = dia250(iib, TERM_BIO);
142 143 144 145 146 147 148 149 150 151 152
	return rc;
}

/* Error recovery for failed DIAG requests - try to reestablish the DIAG
 * environment. */
static void
dasd_diag_erp(struct dasd_device *device)
{
	int rc;

	mdsk_term_io(device);
153
	rc = mdsk_init_io(device, device->block->bp_block, 0, NULL);
154
	if (rc == 4) {
155
		if (!(test_and_set_bit(DASD_FLAG_DEVICE_RO, &device->flags)))
156 157 158
			pr_warning("%s: The access mode of a DIAG device "
				   "changed to read-only\n",
				   dev_name(&device->cdev->dev));
159 160
		rc = 0;
	}
161
	if (rc)
162 163
		pr_warning("%s: DIAG ERP failed with "
			    "rc=%d\n", dev_name(&device->cdev->dev), rc);
L
Linus Torvalds 已提交
164 165
}

166 167
/* Start a given request at the device. Return zero on success, non-zero
 * otherwise. */
L
Linus Torvalds 已提交
168 169 170 171 172 173 174 175
static int
dasd_start_diag(struct dasd_ccw_req * cqr)
{
	struct dasd_device *device;
	struct dasd_diag_private *private;
	struct dasd_diag_req *dreq;
	int rc;

176
	device = cqr->startdev;
177
	if (cqr->retries < 0) {
S
Stefan Haberland 已提交
178
		DBF_DEV_EVENT(DBF_ERR, device, "DIAG start_IO: request %p "
179
			    "- no retry left)", cqr);
180
		cqr->status = DASD_CQR_ERROR;
181 182
		return -EIO;
	}
L
Linus Torvalds 已提交
183 184 185
	private = (struct dasd_diag_private *) device->private;
	dreq = (struct dasd_diag_req *) cqr->data;

186
	private->iob.dev_nr = private->dev_id.devno;
L
Linus Torvalds 已提交
187
	private->iob.key = 0;
188
	private->iob.flags = DASD_DIAG_RWFLAG_ASYNC;
L
Linus Torvalds 已提交
189
	private->iob.block_count = dreq->block_count;
190
	private->iob.interrupt_params = (addr_t) cqr;
191
	private->iob.bio_list = dreq->bio;
192
	private->iob.flaga = DASD_DIAG_FLAGA_DEFAULT;
L
Linus Torvalds 已提交
193

194
	cqr->startclk = get_tod_clock();
195 196
	cqr->starttime = jiffies;
	cqr->retries--;
L
Linus Torvalds 已提交
197 198

	rc = dia250(&private->iob, RW_BIO);
199 200
	switch (rc) {
	case 0: /* Synchronous I/O finished successfully */
201
		cqr->stopclk = get_tod_clock();
202
		cqr->status = DASD_CQR_SUCCESS;
203 204 205 206 207
		/* Indicate to calling function that only a dasd_schedule_bh()
		   and no timer is needed */
                rc = -EACCES;
		break;
	case 8: /* Asynchronous I/O was started */
L
Linus Torvalds 已提交
208 209
		cqr->status = DASD_CQR_IN_IO;
		rc = 0;
210 211 212
		break;
	default: /* Error condition */
		cqr->status = DASD_CQR_QUEUED;
S
Stefan Haberland 已提交
213
		DBF_DEV_EVENT(DBF_WARNING, device, "dia250 returned rc=%d", rc);
214 215 216
		dasd_diag_erp(device);
		rc = -EIO;
		break;
L
Linus Torvalds 已提交
217
	}
218
	cqr->intrc = rc;
L
Linus Torvalds 已提交
219 220 221
	return rc;
}

222 223 224 225 226 227
/* Terminate given request at the device. */
static int
dasd_diag_term_IO(struct dasd_ccw_req * cqr)
{
	struct dasd_device *device;

228
	device = cqr->startdev;
229
	mdsk_term_io(device);
230 231
	mdsk_init_io(device, device->block->bp_block, 0, NULL);
	cqr->status = DASD_CQR_CLEAR_PENDING;
232
	cqr->stopclk = get_tod_clock();
233
	dasd_schedule_device_bh(device);
234 235 236 237
	return 0;
}

/* Handle external interruption. */
238
static void dasd_ext_handler(struct ext_code ext_code,
239
			     unsigned int param32, unsigned long param64)
L
Linus Torvalds 已提交
240 241 242 243 244
{
	struct dasd_ccw_req *cqr, *next;
	struct dasd_device *device;
	unsigned long long expires;
	unsigned long flags;
245 246
	addr_t ip;
	int rc;
L
Linus Torvalds 已提交
247

248
	switch (ext_code.subcode >> 8) {
249
	case DASD_DIAG_CODE_31BIT:
250
		ip = (addr_t) param32;
251 252
		break;
	case DASD_DIAG_CODE_64BIT:
253
		ip = (addr_t) param64;
254 255 256 257
		break;
	default:
		return;
	}
258
	inc_irq_stat(IRQEXT_DSD);
L
Linus Torvalds 已提交
259
	if (!ip) {		/* no intparm: unsolicited interrupt */
S
Stefan Haberland 已提交
260 261
		DBF_EVENT(DBF_NOTICE, "%s", "caught unsolicited "
			      "interrupt");
L
Linus Torvalds 已提交
262 263
		return;
	}
264
	cqr = (struct dasd_ccw_req *) ip;
265
	device = (struct dasd_device *) cqr->startdev;
L
Linus Torvalds 已提交
266
	if (strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) {
S
Stefan Haberland 已提交
267
		DBF_DEV_EVENT(DBF_WARNING, device,
L
Linus Torvalds 已提交
268 269 270 271 272 273 274 275 276
			    " magic number of dasd_ccw_req 0x%08X doesn't"
			    " match discipline 0x%08X",
			    cqr->magic, *(int *) (&device->discipline->name));
		return;
	}

	/* get irq lock to modify request queue */
	spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);

277
	/* Check for a pending clear operation */
278 279 280 281
	if (cqr->status == DASD_CQR_CLEAR_PENDING) {
		cqr->status = DASD_CQR_CLEARED;
		dasd_device_clear_timer(device);
		dasd_schedule_device_bh(device);
282 283 284 285
		spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
		return;
	}

286
	cqr->stopclk = get_tod_clock();
L
Linus Torvalds 已提交
287 288

	expires = 0;
289
	if ((ext_code.subcode & 0xff) == 0) {
290
		cqr->status = DASD_CQR_SUCCESS;
L
Linus Torvalds 已提交
291 292 293
		/* Start first request on queue if possible -> fast_io. */
		if (!list_empty(&device->ccw_queue)) {
			next = list_entry(device->ccw_queue.next,
294
					  struct dasd_ccw_req, devlist);
L
Linus Torvalds 已提交
295
			if (next->status == DASD_CQR_QUEUED) {
296 297
				rc = dasd_start_diag(next);
				if (rc == 0)
L
Linus Torvalds 已提交
298 299 300
					expires = next->expires;
			}
		}
301 302
	} else {
		cqr->status = DASD_CQR_QUEUED;
S
Stefan Haberland 已提交
303
		DBF_DEV_EVENT(DBF_DEBUG, device, "interrupt status for "
304
			      "request %p was %d (%d retries left)", cqr,
305
			      ext_code.subcode & 0xff, cqr->retries);
306 307
		dasd_diag_erp(device);
	}
L
Linus Torvalds 已提交
308 309

	if (expires != 0)
310
		dasd_device_set_timer(device, expires);
L
Linus Torvalds 已提交
311
	else
312 313
		dasd_device_clear_timer(device);
	dasd_schedule_device_bh(device);
L
Linus Torvalds 已提交
314 315 316 317

	spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
}

318 319
/* Check whether device can be controlled by DIAG discipline. Return zero on
 * success, non-zero otherwise. */
L
Linus Torvalds 已提交
320 321 322
static int
dasd_diag_check_device(struct dasd_device *device)
{
323
	struct dasd_block *block;
L
Linus Torvalds 已提交
324 325 326
	struct dasd_diag_private *private;
	struct dasd_diag_characteristics *rdc_data;
	struct dasd_diag_bio bio;
327
	struct vtoc_cms_label *label;
328 329
	blocknum_t end_block;
	unsigned int sb, bsize;
L
Linus Torvalds 已提交
330 331 332 333
	int rc;

	private = (struct dasd_diag_private *) device->private;
	if (private == NULL) {
334
		private = kzalloc(sizeof(struct dasd_diag_private),GFP_KERNEL);
L
Linus Torvalds 已提交
335
		if (private == NULL) {
S
Stefan Haberland 已提交
336 337 338
			DBF_DEV_EVENT(DBF_WARNING, device, "%s",
				"Allocating memory for private DASD data "
				      "failed\n");
L
Linus Torvalds 已提交
339 340
			return -ENOMEM;
		}
341
		ccw_device_get_id(device->cdev, &private->dev_id);
L
Linus Torvalds 已提交
342 343
		device->private = (void *) private;
	}
344 345
	block = dasd_alloc_block();
	if (IS_ERR(block)) {
S
Stefan Haberland 已提交
346
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
347
			    "could not allocate dasd block structure");
348 349
		device->private = NULL;
		kfree(private);
350 351 352 353 354
		return PTR_ERR(block);
	}
	device->block = block;
	block->base = device;

L
Linus Torvalds 已提交
355 356
	/* Read Device Characteristics */
	rdc_data = (void *) &(private->rdc_data);
357
	rdc_data->dev_nr = private->dev_id.devno;
L
Linus Torvalds 已提交
358 359 360
	rdc_data->rdc_len = sizeof (struct dasd_diag_characteristics);

	rc = diag210((struct diag210 *) rdc_data);
361
	if (rc) {
S
Stefan Haberland 已提交
362
		DBF_DEV_EVENT(DBF_WARNING, device, "failed to retrieve device "
363
			    "information (rc=%d)", rc);
364
		rc = -EOPNOTSUPP;
365
		goto out;
366
	}
L
Linus Torvalds 已提交
367

368
	device->default_expires = DIAG_TIMEOUT;
369
	device->default_retries = DIAG_MAX_RETRIES;
370

L
Linus Torvalds 已提交
371 372 373 374 375 376 377 378 379
	/* Figure out position of label block */
	switch (private->rdc_data.vdev_class) {
	case DEV_CLASS_FBA:
		private->pt_block = 1;
		break;
	case DEV_CLASS_ECKD:
		private->pt_block = 2;
		break;
	default:
380 381 382
		pr_warning("%s: Device type %d is not supported "
			   "in DIAG mode\n", dev_name(&device->cdev->dev),
			   private->rdc_data.vdev_class);
383
		rc = -EOPNOTSUPP;
384
		goto out;
L
Linus Torvalds 已提交
385 386 387 388 389 390 391 392 393 394 395 396
	}

	DBF_DEV_EVENT(DBF_INFO, device,
		      "%04X: %04X on real %04X/%02X",
		      rdc_data->dev_nr,
		      rdc_data->vdev_type,
		      rdc_data->rdev_type, rdc_data->rdev_model);

	/* terminate all outstanding operations */
	mdsk_term_io(device);

	/* figure out blocksize of device */
397
	label = (struct vtoc_cms_label *) get_zeroed_page(GFP_KERNEL);
L
Linus Torvalds 已提交
398
	if (label == NULL)  {
S
Stefan Haberland 已提交
399
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
400
			    "No memory to allocate initialization request");
401 402
		rc = -ENOMEM;
		goto out;
L
Linus Torvalds 已提交
403
	}
404 405
	rc = 0;
	end_block = 0;
L
Linus Torvalds 已提交
406 407
	/* try all sizes - needed for ECKD devices */
	for (bsize = 512; bsize <= PAGE_SIZE; bsize <<= 1) {
408
		mdsk_init_io(device, bsize, 0, &end_block);
L
Linus Torvalds 已提交
409 410 411
		memset(&bio, 0, sizeof (struct dasd_diag_bio));
		bio.type = MDSK_READ_REQ;
		bio.block_number = private->pt_block + 1;
412
		bio.buffer = label;
L
Linus Torvalds 已提交
413 414 415 416 417 418
		memset(&private->iob, 0, sizeof (struct dasd_diag_rw_io));
		private->iob.dev_nr = rdc_data->dev_nr;
		private->iob.key = 0;
		private->iob.flags = 0;	/* do synchronous io */
		private->iob.block_count = 1;
		private->iob.interrupt_params = 0;
419
		private->iob.bio_list = &bio;
420 421
		private->iob.flaga = DASD_DIAG_FLAGA_DEFAULT;
		rc = dia250(&private->iob, RW_BIO);
422
		if (rc == 3) {
423 424
			pr_warning("%s: A 64-bit DIAG call failed\n",
				   dev_name(&device->cdev->dev));
425
			rc = -EOPNOTSUPP;
426
			goto out_label;
427
		}
L
Linus Torvalds 已提交
428
		mdsk_term_io(device);
429 430
		if (rc == 0)
			break;
L
Linus Torvalds 已提交
431
	}
432
	if (bsize > PAGE_SIZE) {
433 434 435
		pr_warning("%s: Accessing the DASD failed because of an "
			   "incorrect format (rc=%d)\n",
			   dev_name(&device->cdev->dev), rc);
436
		rc = -EIO;
437
		goto out_label;
438 439 440 441 442 443
	}
	/* check for label block */
	if (memcmp(label->label_id, DASD_DIAG_CMS1,
		  sizeof(DASD_DIAG_CMS1)) == 0) {
		/* get formatted blocksize from label block */
		bsize = (unsigned int) label->block_size;
444
		block->blocks = (unsigned long) label->block_count;
445
	} else
446 447 448
		block->blocks = end_block;
	block->bp_block = bsize;
	block->s2b_shift = 0;	/* bits to shift 512 to get a block */
449
	for (sb = 512; sb < bsize; sb = sb << 1)
450 451
		block->s2b_shift++;
	rc = mdsk_init_io(device, block->bp_block, 0, NULL);
452
	if (rc && (rc != 4)) {
453 454
		pr_warning("%s: DIAG initialization failed with rc=%d\n",
			   dev_name(&device->cdev->dev), rc);
455
		rc = -EIO;
456
	} else {
457
		if (rc == 4)
458
			set_bit(DASD_FLAG_DEVICE_RO, &device->flags);
459 460 461 462 463 464
		pr_info("%s: New DASD with %ld byte/block, total size %ld "
			"KB%s\n", dev_name(&device->cdev->dev),
			(unsigned long) block->bp_block,
			(unsigned long) (block->blocks <<
					 block->s2b_shift) >> 1,
			(rc == 4) ? ", read-only device" : "");
465
		rc = 0;
L
Linus Torvalds 已提交
466
	}
467
out_label:
L
Linus Torvalds 已提交
468
	free_page((long) label);
469 470 471 472 473 474 475
out:
	if (rc) {
		device->block = NULL;
		dasd_free_block(block);
		device->private = NULL;
		kfree(private);
	}
L
Linus Torvalds 已提交
476 477 478
	return rc;
}

479 480
/* Fill in virtual disk geometry for device. Return zero on success, non-zero
 * otherwise. */
L
Linus Torvalds 已提交
481
static int
482
dasd_diag_fill_geometry(struct dasd_block *block, struct hd_geometry *geo)
L
Linus Torvalds 已提交
483
{
484
	if (dasd_check_blocksize(block->bp_block) != 0)
L
Linus Torvalds 已提交
485
		return -EINVAL;
486
	geo->cylinders = (block->blocks << block->s2b_shift) >> 10;
L
Linus Torvalds 已提交
487
	geo->heads = 16;
488
	geo->sectors = 128 >> block->s2b_shift;
L
Linus Torvalds 已提交
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
	return 0;
}

static dasd_erp_fn_t
dasd_diag_erp_action(struct dasd_ccw_req * cqr)
{
	return dasd_default_erp_action;
}

static dasd_erp_fn_t
dasd_diag_erp_postaction(struct dasd_ccw_req * cqr)
{
	return dasd_default_erp_postaction;
}

504 505
/* Create DASD request from block device request. Return pointer to new
 * request on success, ERR_PTR otherwise. */
506 507 508
static struct dasd_ccw_req *dasd_diag_build_cp(struct dasd_device *memdev,
					       struct dasd_block *block,
					       struct request *req)
L
Linus Torvalds 已提交
509 510 511 512
{
	struct dasd_ccw_req *cqr;
	struct dasd_diag_req *dreq;
	struct dasd_diag_bio *dbio;
513
	struct req_iterator iter;
514
	struct bio_vec bv;
L
Linus Torvalds 已提交
515
	char *dst;
516
	unsigned int count, datasize;
L
Linus Torvalds 已提交
517
	sector_t recid, first_rec, last_rec;
518
	unsigned int blksize, off;
L
Linus Torvalds 已提交
519 520 521 522 523 524 525 526
	unsigned char rw_cmd;

	if (rq_data_dir(req) == READ)
		rw_cmd = MDSK_READ_REQ;
	else if (rq_data_dir(req) == WRITE)
		rw_cmd = MDSK_WRITE_REQ;
	else
		return ERR_PTR(-EINVAL);
527
	blksize = block->bp_block;
L
Linus Torvalds 已提交
528
	/* Calculate record id of first and last block. */
529 530 531
	first_rec = blk_rq_pos(req) >> block->s2b_shift;
	last_rec =
		(blk_rq_pos(req) + blk_rq_sectors(req) - 1) >> block->s2b_shift;
L
Linus Torvalds 已提交
532 533
	/* Check struct bio and count the number of blocks for the request. */
	count = 0;
534
	rq_for_each_segment(bv, req, iter) {
535
		if (bv.bv_len & (blksize - 1))
536 537
			/* Fba can only do full blocks. */
			return ERR_PTR(-EINVAL);
538
		count += bv.bv_len >> (block->s2b_shift + 9);
L
Linus Torvalds 已提交
539 540 541 542 543 544 545
	}
	/* Paranoia. */
	if (count != last_rec - first_rec + 1)
		return ERR_PTR(-EINVAL);
	/* Build the request */
	datasize = sizeof(struct dasd_diag_req) +
		count*sizeof(struct dasd_diag_bio);
546
	cqr = dasd_smalloc_request(DASD_DIAG_MAGIC, 0, datasize, memdev);
L
Linus Torvalds 已提交
547 548
	if (IS_ERR(cqr))
		return cqr;
549

L
Linus Torvalds 已提交
550 551 552 553
	dreq = (struct dasd_diag_req *) cqr->data;
	dreq->block_count = count;
	dbio = dreq->bio;
	recid = first_rec;
554
	rq_for_each_segment(bv, req, iter) {
555 556
		dst = page_address(bv.bv_page) + bv.bv_offset;
		for (off = 0; off < bv.bv_len; off += blksize) {
557 558 559 560 561 562 563 564
			memset(dbio, 0, sizeof (struct dasd_diag_bio));
			dbio->type = rw_cmd;
			dbio->block_number = recid + 1;
			dbio->buffer = dst;
			dbio++;
			dst += blksize;
			recid++;
		}
L
Linus Torvalds 已提交
565
	}
566
	cqr->retries = memdev->default_retries;
567
	cqr->buildclk = get_tod_clock();
568 569
	if (blk_noretry_request(req) ||
	    block->base->features & DASD_FEATURE_FAILFAST)
570
		set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
571 572 573
	cqr->startdev = memdev;
	cqr->memdev = memdev;
	cqr->block = block;
574
	cqr->expires = memdev->default_expires * HZ;
L
Linus Torvalds 已提交
575 576 577 578
	cqr->status = DASD_CQR_FILLED;
	return cqr;
}

579 580
/* Release DASD request. Return non-zero if request was successful, zero
 * otherwise. */
L
Linus Torvalds 已提交
581 582 583 584 585 586
static int
dasd_diag_free_cp(struct dasd_ccw_req *cqr, struct request *req)
{
	int status;

	status = cqr->status == DASD_CQR_DONE;
587
	dasd_sfree_request(cqr, cqr->memdev);
L
Linus Torvalds 已提交
588 589 590
	return status;
}

591 592
static void dasd_diag_handle_terminated_request(struct dasd_ccw_req *cqr)
{
593 594 595 596
	if (cqr->retries < 0)
		cqr->status = DASD_CQR_FAILED;
	else
		cqr->status = DASD_CQR_FILLED;
597 598
};

599
/* Fill in IOCTL data for device. */
L
Linus Torvalds 已提交
600 601 602 603 604 605 606
static int
dasd_diag_fill_info(struct dasd_device * device,
		    struct dasd_information2_t * info)
{
	struct dasd_diag_private *private;

	private = (struct dasd_diag_private *) device->private;
607
	info->label_block = (unsigned int) private->pt_block;
L
Linus Torvalds 已提交
608 609 610 611 612 613 614 615 616 617 618 619 620 621
	info->FBA_layout = 1;
	info->format = DASD_FORMAT_LDL;
	info->characteristics_size = sizeof (struct dasd_diag_characteristics);
	memcpy(info->characteristics,
	       &((struct dasd_diag_private *) device->private)->rdc_data,
	       sizeof (struct dasd_diag_characteristics));
	info->confdata_size = 0;
	return 0;
}

static void
dasd_diag_dump_sense(struct dasd_device *device, struct dasd_ccw_req * req,
		     struct irb *stat)
{
S
Stefan Haberland 已提交
622
	DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
623 624 625
		    "dump sense not available for DIAG data");
}

626
static struct dasd_discipline dasd_diag_discipline = {
L
Linus Torvalds 已提交
627 628 629
	.owner = THIS_MODULE,
	.name = "DIAG",
	.ebcname = "DIAG",
630
	.max_blocks = DIAG_MAX_BLOCKS,
L
Linus Torvalds 已提交
631
	.check_device = dasd_diag_check_device,
632
	.verify_path = dasd_generic_verify_path,
L
Linus Torvalds 已提交
633 634
	.fill_geometry = dasd_diag_fill_geometry,
	.start_IO = dasd_start_diag,
635
	.term_IO = dasd_diag_term_IO,
636
	.handle_terminated_request = dasd_diag_handle_terminated_request,
L
Linus Torvalds 已提交
637 638 639 640 641 642 643 644 645 646 647 648
	.erp_action = dasd_diag_erp_action,
	.erp_postaction = dasd_diag_erp_postaction,
	.build_cp = dasd_diag_build_cp,
	.free_cp = dasd_diag_free_cp,
	.dump_sense = dasd_diag_dump_sense,
	.fill_info = dasd_diag_fill_info,
};

static int __init
dasd_diag_init(void)
{
	if (!MACHINE_IS_VM) {
S
Stefan Haberland 已提交
649 650
		pr_info("Discipline %s cannot be used without z/VM\n",
			dasd_diag_discipline.name);
651
		return -ENODEV;
L
Linus Torvalds 已提交
652 653 654
	}
	ASCEBC(dasd_diag_discipline.ebcname, 4);

655
	irq_subclass_register(IRQ_SUBCLASS_SERVICE_SIGNAL);
656
	register_external_irq(EXT_IRQ_CP_SERVICE, dasd_ext_handler);
L
Linus Torvalds 已提交
657 658 659 660 661 662 663
	dasd_diag_discipline_pointer = &dasd_diag_discipline;
	return 0;
}

static void __exit
dasd_diag_cleanup(void)
{
664
	unregister_external_irq(EXT_IRQ_CP_SERVICE, dasd_ext_handler);
665
	irq_subclass_unregister(IRQ_SUBCLASS_SERVICE_SIGNAL);
L
Linus Torvalds 已提交
666 667 668 669 670
	dasd_diag_discipline_pointer = NULL;
}

module_init(dasd_diag_init);
module_exit(dasd_diag_cleanup);