dasd_3990_erp.c 68.7 KB
Newer Older
1 2
/*
 * Author(s)......: Horst  Hummel    <Horst.Hummel@de.ibm.com>
L
Linus Torvalds 已提交
3 4
 *		    Holger Smolinski <Holger.Smolinski@de.ibm.com>
 * Bugreports.to..: <Linux390@de.ibm.com>
5
 * Copyright IBM Corp. 2000, 2001
L
Linus Torvalds 已提交
6 7 8
 *
 */

9
#define KMSG_COMPONENT "dasd-eckd"
S
Stefan Haberland 已提交
10

L
Linus Torvalds 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#include <linux/timer.h>
#include <asm/idals.h>

#define PRINTK_HEADER "dasd_erp(3990): "

#include "dasd_int.h"
#include "dasd_eckd.h"


struct DCTL_data {
	unsigned char subcommand;  /* e.g Inhibit Write, Enable Write,... */
	unsigned char modifier;	   /* Subcommand modifier */
	unsigned short res;	   /* reserved */
} __attribute__ ((packed));

/*
27
 *****************************************************************************
L
Linus Torvalds 已提交
28
 * SECTION ERP HANDLING
29
 *****************************************************************************
L
Linus Torvalds 已提交
30 31
 */
/*
32
 *****************************************************************************
L
Linus Torvalds 已提交
33
 * 24 and 32 byte sense ERP functions
34
 *****************************************************************************
L
Linus Torvalds 已提交
35 36 37
 */

/*
38
 * DASD_3990_ERP_CLEANUP
L
Linus Torvalds 已提交
39 40 41 42 43 44 45
 *
 * DESCRIPTION
 *   Removes the already build but not necessary ERP request and sets
 *   the status of the original cqr / erp to the given (final) status
 *
 *  PARAMETER
 *   erp		request to be blocked
46
 *   final_status	either DASD_CQR_DONE or DASD_CQR_FAILED
L
Linus Torvalds 已提交
47 48
 *
 * RETURN VALUES
49
 *   cqr		original cqr
L
Linus Torvalds 已提交
50 51 52 53 54 55
 */
static struct dasd_ccw_req *
dasd_3990_erp_cleanup(struct dasd_ccw_req * erp, char final_status)
{
	struct dasd_ccw_req *cqr = erp->refers;

56
	dasd_free_erp_request(erp, erp->memdev);
L
Linus Torvalds 已提交
57 58 59 60 61 62
	cqr->status = final_status;
	return cqr;

}				/* end dasd_3990_erp_cleanup */

/*
63
 * DASD_3990_ERP_BLOCK_QUEUE
L
Linus Torvalds 已提交
64 65 66 67 68 69
 *
 * DESCRIPTION
 *   Block the given device request queue to prevent from further
 *   processing until the started timer has expired or an related
 *   interrupt was received.
 */
70
static void dasd_3990_erp_block_queue(struct dasd_ccw_req *erp, int expires)
L
Linus Torvalds 已提交
71 72
{

73 74
	struct dasd_device *device = erp->startdev;
	unsigned long flags;
L
Linus Torvalds 已提交
75

S
Stefan Haberland 已提交
76
	DBF_DEV_EVENT(DBF_INFO, device,
L
Linus Torvalds 已提交
77 78
		    "blocking request queue for %is", expires/HZ);

79
	spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
80
	dasd_device_set_stop_bits(device, DASD_STOPPED_PENDING);
81 82
	spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
	erp->status = DASD_CQR_FILLED;
83 84 85 86
	if (erp->block)
		dasd_block_set_timer(erp->block, expires);
	else
		dasd_device_set_timer(device, expires);
L
Linus Torvalds 已提交
87 88 89
}

/*
90
 * DASD_3990_ERP_INT_REQ
L
Linus Torvalds 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104
 *
 * DESCRIPTION
 *   Handles 'Intervention Required' error.
 *   This means either device offline or not installed.
 *
 * PARAMETER
 *   erp		current erp
 * RETURN VALUES
 *   erp		modified erp
 */
static struct dasd_ccw_req *
dasd_3990_erp_int_req(struct dasd_ccw_req * erp)
{

105
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113 114 115 116 117

	/* first time set initial retry counter and erp_function */
	/* and retry once without blocking queue		 */
	/* (this enables easier enqueing of the cqr)		 */
	if (erp->function != dasd_3990_erp_int_req) {

		erp->retries = 256;
		erp->function = dasd_3990_erp_int_req;

	} else {

		/* issue a message and wait for 'device ready' interrupt */
S
Stefan Haberland 已提交
118
		dev_err(&device->cdev->dev,
L
Linus Torvalds 已提交
119
			    "is offline or not installed - "
S
Stefan Haberland 已提交
120
			    "INTERVENTION REQUIRED!!\n");
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128 129

		dasd_3990_erp_block_queue(erp, 60*HZ);
	}

	return erp;

}				/* end dasd_3990_erp_int_req */

/*
130
 * DASD_3990_ERP_ALTERNATE_PATH
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
 *
 * DESCRIPTION
 *   Repeat the operation on a different channel path.
 *   If all alternate paths have been tried, the request is posted with a
 *   permanent error.
 *
 *  PARAMETER
 *   erp		pointer to the current ERP
 *
 * RETURN VALUES
 *   erp		modified pointer to the ERP
 */
static void
dasd_3990_erp_alternate_path(struct dasd_ccw_req * erp)
{
146
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
147
	__u8 opm;
148
	unsigned long flags;
L
Linus Torvalds 已提交
149 150

	/* try alternate valid path */
151
	spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
L
Linus Torvalds 已提交
152
	opm = ccw_device_get_path_mask(device->cdev);
153
	spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
L
Linus Torvalds 已提交
154
	if (erp->lpm == 0)
155 156
		erp->lpm = device->path_data.opm &
			~(erp->irb.esw.esw0.sublog.lpum);
L
Linus Torvalds 已提交
157 158 159 160 161
	else
		erp->lpm &= ~(erp->irb.esw.esw0.sublog.lpum);

	if ((erp->lpm & opm) != 0x00) {

S
Stefan Haberland 已提交
162
		DBF_DEV_EVENT(DBF_WARNING, device,
L
Linus Torvalds 已提交
163 164 165
			    "try alternate lpm=%x (lpum=%x / opm=%x)",
			    erp->lpm, erp->irb.esw.esw0.sublog.lpum, opm);

166 167
		/* reset status to submit the request again... */
		erp->status = DASD_CQR_FILLED;
168
		erp->retries = 10;
L
Linus Torvalds 已提交
169
	} else {
S
Stefan Haberland 已提交
170 171 172
		dev_err(&device->cdev->dev,
			"The DASD cannot be reached on any path (lpum=%x"
			"/opm=%x)\n", erp->irb.esw.esw0.sublog.lpum, opm);
L
Linus Torvalds 已提交
173 174

		/* post request with permanent error */
175
		erp->status = DASD_CQR_FAILED;
L
Linus Torvalds 已提交
176 177 178 179 180 181 182
	}
}				/* end dasd_3990_erp_alternate_path */

/*
 * DASD_3990_ERP_DCTL
 *
 * DESCRIPTION
183
 *   Setup cqr to do the Diagnostic Control (DCTL) command with an
L
Linus Torvalds 已提交
184 185 186 187 188
 *   Inhibit Write subcommand (0x20) and the given modifier.
 *
 *  PARAMETER
 *   erp		pointer to the current (failed) ERP
 *   modifier		subcommand modifier
189
 *
L
Linus Torvalds 已提交
190
 * RETURN VALUES
191
 *   dctl_cqr		pointer to NEW dctl_cqr
L
Linus Torvalds 已提交
192 193 194 195 196 197
 *
 */
static struct dasd_ccw_req *
dasd_3990_erp_DCTL(struct dasd_ccw_req * erp, char modifier)
{

198
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
199 200 201 202 203
	struct DCTL_data *DCTL_data;
	struct ccw1 *ccw;
	struct dasd_ccw_req *dctl_cqr;

	dctl_cqr = dasd_alloc_erp_request((char *) &erp->magic, 1,
204 205
					  sizeof(struct DCTL_data),
					  device);
L
Linus Torvalds 已提交
206
	if (IS_ERR(dctl_cqr)) {
S
Stefan Haberland 已提交
207 208
		dev_err(&device->cdev->dev,
			    "Unable to allocate DCTL-CQR\n");
L
Linus Torvalds 已提交
209 210 211 212 213 214 215 216 217 218
		erp->status = DASD_CQR_FAILED;
		return erp;
	}

	DCTL_data = dctl_cqr->data;

	DCTL_data->subcommand = 0x02;	/* Inhibit Write */
	DCTL_data->modifier = modifier;

	ccw = dctl_cqr->cpaddr;
219
	memset(ccw, 0, sizeof(struct ccw1));
L
Linus Torvalds 已提交
220 221 222
	ccw->cmd_code = CCW_CMD_DCTL;
	ccw->count = 4;
	ccw->cda = (__u32)(addr_t) DCTL_data;
223
	dctl_cqr->flags = erp->flags;
L
Linus Torvalds 已提交
224 225
	dctl_cqr->function = dasd_3990_erp_DCTL;
	dctl_cqr->refers = erp;
226 227
	dctl_cqr->startdev = device;
	dctl_cqr->memdev = device;
L
Linus Torvalds 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240
	dctl_cqr->magic = erp->magic;
	dctl_cqr->expires = 5 * 60 * HZ;
	dctl_cqr->retries = 2;

	dctl_cqr->buildclk = get_clock();

	dctl_cqr->status = DASD_CQR_FILLED;

	return dctl_cqr;

}				/* end dasd_3990_erp_DCTL */

/*
241
 * DASD_3990_ERP_ACTION_1
L
Linus Torvalds 已提交
242 243 244 245
 *
 * DESCRIPTION
 *   Setup ERP to do the ERP action 1 (see Reference manual).
 *   Repeat the operation on a different channel path.
246 247 248 249 250 251 252
 *   As deviation from the recommended recovery action, we reset the path mask
 *   after we have tried each path and go through all paths a second time.
 *   This will cover situations where only one path at a time is actually down,
 *   but all paths fail and recover just with the same sequence and timing as
 *   we try to use them (flapping links).
 *   If all alternate paths have been tried twice, the request is posted with
 *   a permanent error.
L
Linus Torvalds 已提交
253 254 255 256 257 258 259 260
 *
 *  PARAMETER
 *   erp		pointer to the current ERP
 *
 * RETURN VALUES
 *   erp		pointer to the ERP
 *
 */
261
static struct dasd_ccw_req *dasd_3990_erp_action_1_sec(struct dasd_ccw_req *erp)
L
Linus Torvalds 已提交
262
{
263 264 265 266
	erp->function = dasd_3990_erp_action_1_sec;
	dasd_3990_erp_alternate_path(erp);
	return erp;
}
L
Linus Torvalds 已提交
267

268 269
static struct dasd_ccw_req *dasd_3990_erp_action_1(struct dasd_ccw_req *erp)
{
L
Linus Torvalds 已提交
270 271
	erp->function = dasd_3990_erp_action_1;
	dasd_3990_erp_alternate_path(erp);
272 273
	if (erp->status == DASD_CQR_FAILED &&
	    !test_bit(DASD_CQR_VERIFY_PATH, &erp->flags)) {
274 275
		erp->status = DASD_CQR_FILLED;
		erp->retries = 10;
276
		erp->lpm = erp->startdev->path_data.opm;
277 278
		erp->function = dasd_3990_erp_action_1_sec;
	}
L
Linus Torvalds 已提交
279
	return erp;
280
}				/* end dasd_3990_erp_action_1(b) */
L
Linus Torvalds 已提交
281 282

/*
283
 * DASD_3990_ERP_ACTION_4
L
Linus Torvalds 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
 *
 * DESCRIPTION
 *   Setup ERP to do the ERP action 4 (see Reference manual).
 *   Set the current request to PENDING to block the CQR queue for that device
 *   until the state change interrupt appears.
 *   Use a timer (20 seconds) to retry the cqr if the interrupt is still
 *   missing.
 *
 *  PARAMETER
 *   sense		sense data of the actual error
 *   erp		pointer to the current ERP
 *
 * RETURN VALUES
 *   erp		pointer to the ERP
 *
 */
static struct dasd_ccw_req *
dasd_3990_erp_action_4(struct dasd_ccw_req * erp, char *sense)
{

304
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
305 306 307 308 309 310

	/* first time set initial retry counter and erp_function    */
	/* and retry once without waiting for state change pending  */
	/* interrupt (this enables easier enqueing of the cqr)	    */
	if (erp->function != dasd_3990_erp_action_4) {

S
Stefan Haberland 已提交
311
		DBF_DEV_EVENT(DBF_INFO, device, "%s",
L
Linus Torvalds 已提交
312 313 314 315 316 317
			    "dasd_3990_erp_action_4: first time retry");

		erp->retries = 256;
		erp->function = dasd_3990_erp_action_4;

	} else {
318
		if (sense && (sense[25] == 0x1D)) { /* state change pending */
L
Linus Torvalds 已提交
319

S
Stefan Haberland 已提交
320
			DBF_DEV_EVENT(DBF_INFO, device,
L
Linus Torvalds 已提交
321 322 323
				    "waiting for state change pending "
				    "interrupt, %d retries left",
				    erp->retries);
324

L
Linus Torvalds 已提交
325 326
			dasd_3990_erp_block_queue(erp, 30*HZ);

327
		} else if (sense && (sense[25] == 0x1E)) {	/* busy */
S
Stefan Haberland 已提交
328
			DBF_DEV_EVENT(DBF_INFO, device,
L
Linus Torvalds 已提交
329 330 331 332 333 334
				    "busy - redriving request later, "
				    "%d retries left",
				    erp->retries);
                        dasd_3990_erp_block_queue(erp, HZ);
		} else {
			/* no state change pending - retry */
S
Stefan Haberland 已提交
335
			DBF_DEV_EVENT(DBF_INFO, device,
L
Linus Torvalds 已提交
336
				     "redriving request immediately, "
337
				     "%d retries left",
L
Linus Torvalds 已提交
338
				     erp->retries);
339
			erp->status = DASD_CQR_FILLED;
L
Linus Torvalds 已提交
340 341 342 343 344 345 346 347
		}
	}

	return erp;

}				/* end dasd_3990_erp_action_4 */

/*
348
 *****************************************************************************
L
Linus Torvalds 已提交
349
 * 24 byte sense ERP functions (only)
350
 *****************************************************************************
L
Linus Torvalds 已提交
351 352 353
 */

/*
354
 * DASD_3990_ERP_ACTION_5
L
Linus Torvalds 已提交
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
 *
 * DESCRIPTION
 *   Setup ERP to do the ERP action 5 (see Reference manual).
 *   NOTE: Further handling is done in xxx_further_erp after the retries.
 *
 *  PARAMETER
 *   erp		pointer to the current ERP
 *
 * RETURN VALUES
 *   erp		pointer to the ERP
 *
 */
static struct dasd_ccw_req *
dasd_3990_erp_action_5(struct dasd_ccw_req * erp)
{

	/* first of all retry */
	erp->retries = 10;
	erp->function = dasd_3990_erp_action_5;

	return erp;

}				/* end dasd_3990_erp_action_5 */

/*
 * DASD_3990_HANDLE_ENV_DATA
 *
 * DESCRIPTION
 *   Handles 24 byte 'Environmental data present'.
 *   Does a analysis of the sense data (message Format)
 *   and prints the error messages.
 *
 * PARAMETER
 *   sense		current sense data
389
 *
L
Linus Torvalds 已提交
390 391 392 393 394 395 396
 * RETURN VALUES
 *   void
 */
static void
dasd_3990_handle_env_data(struct dasd_ccw_req * erp, char *sense)
{

397
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
398 399
	char msg_format = (sense[7] & 0xF0);
	char msg_no = (sense[7] & 0x0F);
S
Stefan Haberland 已提交
400
	char errorstring[ERRORLENGTH];
L
Linus Torvalds 已提交
401 402 403 404 405 406 407 408 409 410

	switch (msg_format) {
	case 0x00:		/* Format 0 - Program or System Checks */

		if (sense[1] & 0x10) {	/* check message to operator bit */

			switch (msg_no) {
			case 0x00:	/* No Message */
				break;
			case 0x01:
S
Stefan Haberland 已提交
411 412
				dev_warn(&device->cdev->dev,
					    "FORMAT 0 - Invalid Command\n");
L
Linus Torvalds 已提交
413 414
				break;
			case 0x02:
S
Stefan Haberland 已提交
415
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
416
					    "FORMAT 0 - Invalid Command "
S
Stefan Haberland 已提交
417
					    "Sequence\n");
L
Linus Torvalds 已提交
418 419
				break;
			case 0x03:
S
Stefan Haberland 已提交
420
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
421
					    "FORMAT 0 - CCW Count less than "
S
Stefan Haberland 已提交
422
					    "required\n");
L
Linus Torvalds 已提交
423 424
				break;
			case 0x04:
S
Stefan Haberland 已提交
425 426
				dev_warn(&device->cdev->dev,
					    "FORMAT 0 - Invalid Parameter\n");
L
Linus Torvalds 已提交
427 428
				break;
			case 0x05:
S
Stefan Haberland 已提交
429 430 431
				dev_warn(&device->cdev->dev,
					    "FORMAT 0 - Diagnostic of Special"
					    " Command Violates File Mask\n");
L
Linus Torvalds 已提交
432 433
				break;
			case 0x07:
S
Stefan Haberland 已提交
434
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
435
					    "FORMAT 0 - Channel Returned with "
S
Stefan Haberland 已提交
436
					    "Incorrect retry CCW\n");
L
Linus Torvalds 已提交
437 438
				break;
			case 0x08:
S
Stefan Haberland 已提交
439 440
				dev_warn(&device->cdev->dev,
					    "FORMAT 0 - Reset Notification\n");
L
Linus Torvalds 已提交
441 442
				break;
			case 0x09:
S
Stefan Haberland 已提交
443 444
				dev_warn(&device->cdev->dev,
					 "FORMAT 0 - Storage Path Restart\n");
L
Linus Torvalds 已提交
445 446
				break;
			case 0x0A:
S
Stefan Haberland 已提交
447
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
448
					    "FORMAT 0 - Channel requested "
S
Stefan Haberland 已提交
449
					    "... %02x\n", sense[8]);
L
Linus Torvalds 已提交
450 451
				break;
			case 0x0B:
S
Stefan Haberland 已提交
452
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
453
					    "FORMAT 0 - Invalid Defective/"
S
Stefan Haberland 已提交
454
					    "Alternate Track Pointer\n");
L
Linus Torvalds 已提交
455 456
				break;
			case 0x0C:
S
Stefan Haberland 已提交
457
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
458
					    "FORMAT 0 - DPS Installation "
S
Stefan Haberland 已提交
459
					    "Check\n");
L
Linus Torvalds 已提交
460 461
				break;
			case 0x0E:
S
Stefan Haberland 已提交
462
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
463
					    "FORMAT 0 - Command Invalid on "
S
Stefan Haberland 已提交
464
					    "Secondary Address\n");
L
Linus Torvalds 已提交
465 466
				break;
			case 0x0F:
S
Stefan Haberland 已提交
467
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
468
					    "FORMAT 0 - Status Not As "
S
Stefan Haberland 已提交
469 470
					    "Required: reason %02x\n",
					 sense[8]);
L
Linus Torvalds 已提交
471 472
				break;
			default:
S
Stefan Haberland 已提交
473 474
				dev_warn(&device->cdev->dev,
					    "FORMAT 0 - Reserved\n");
L
Linus Torvalds 已提交
475 476 477 478 479 480
			}
		} else {
			switch (msg_no) {
			case 0x00:	/* No Message */
				break;
			case 0x01:
S
Stefan Haberland 已提交
481 482 483
				dev_warn(&device->cdev->dev,
					 "FORMAT 0 - Device Error "
					 "Source\n");
L
Linus Torvalds 已提交
484 485
				break;
			case 0x02:
S
Stefan Haberland 已提交
486 487
				dev_warn(&device->cdev->dev,
					    "FORMAT 0 - Reserved\n");
L
Linus Torvalds 已提交
488 489
				break;
			case 0x03:
S
Stefan Haberland 已提交
490
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
491
					    "FORMAT 0 - Device Fenced - "
S
Stefan Haberland 已提交
492
					    "device = %02x\n", sense[4]);
L
Linus Torvalds 已提交
493 494
				break;
			case 0x04:
S
Stefan Haberland 已提交
495
				dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
496
					    "FORMAT 0 - Data Pinned for "
S
Stefan Haberland 已提交
497
					    "Device\n");
L
Linus Torvalds 已提交
498 499
				break;
			default:
S
Stefan Haberland 已提交
500 501
				dev_warn(&device->cdev->dev,
					    "FORMAT 0 - Reserved\n");
L
Linus Torvalds 已提交
502 503 504 505 506 507 508 509 510
			}
		}
		break;

	case 0x10:		/* Format 1 - Device Equipment Checks */
		switch (msg_no) {
		case 0x00:	/* No Message */
			break;
		case 0x01:
S
Stefan Haberland 已提交
511
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
512
				    "FORMAT 1 - Device Status 1 not as "
S
Stefan Haberland 已提交
513
				    "expected\n");
L
Linus Torvalds 已提交
514 515
			break;
		case 0x03:
S
Stefan Haberland 已提交
516 517
			dev_warn(&device->cdev->dev,
				    "FORMAT 1 - Index missing\n");
L
Linus Torvalds 已提交
518 519
			break;
		case 0x04:
S
Stefan Haberland 已提交
520 521 522
			dev_warn(&device->cdev->dev,
				 "FORMAT 1 - Interruption cannot be "
				 "reset\n");
L
Linus Torvalds 已提交
523 524
			break;
		case 0x05:
S
Stefan Haberland 已提交
525
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
526
				    "FORMAT 1 - Device did not respond to "
S
Stefan Haberland 已提交
527
				    "selection\n");
L
Linus Torvalds 已提交
528 529
			break;
		case 0x06:
S
Stefan Haberland 已提交
530
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
531
				    "FORMAT 1 - Device check-2 error or Set "
S
Stefan Haberland 已提交
532
				    "Sector is not complete\n");
L
Linus Torvalds 已提交
533 534
			break;
		case 0x07:
S
Stefan Haberland 已提交
535
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
536
				    "FORMAT 1 - Head address does not "
S
Stefan Haberland 已提交
537
				    "compare\n");
L
Linus Torvalds 已提交
538 539
			break;
		case 0x08:
S
Stefan Haberland 已提交
540 541
			dev_warn(&device->cdev->dev,
				    "FORMAT 1 - Device status 1 not valid\n");
L
Linus Torvalds 已提交
542 543
			break;
		case 0x09:
S
Stefan Haberland 已提交
544 545
			dev_warn(&device->cdev->dev,
				    "FORMAT 1 - Device not ready\n");
L
Linus Torvalds 已提交
546 547
			break;
		case 0x0A:
S
Stefan Haberland 已提交
548
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
549
				    "FORMAT 1 - Track physical address did "
S
Stefan Haberland 已提交
550
				    "not compare\n");
L
Linus Torvalds 已提交
551 552
			break;
		case 0x0B:
S
Stefan Haberland 已提交
553 554
			dev_warn(&device->cdev->dev,
				    "FORMAT 1 - Missing device address bit\n");
L
Linus Torvalds 已提交
555 556
			break;
		case 0x0C:
S
Stefan Haberland 已提交
557 558
			dev_warn(&device->cdev->dev,
				    "FORMAT 1 - Drive motor switch is off\n");
L
Linus Torvalds 已提交
559 560
			break;
		case 0x0D:
S
Stefan Haberland 已提交
561 562
			dev_warn(&device->cdev->dev,
				    "FORMAT 1 - Seek incomplete\n");
L
Linus Torvalds 已提交
563 564
			break;
		case 0x0E:
S
Stefan Haberland 已提交
565
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
566
				    "FORMAT 1 - Cylinder address did not "
S
Stefan Haberland 已提交
567
				    "compare\n");
L
Linus Torvalds 已提交
568 569
			break;
		case 0x0F:
S
Stefan Haberland 已提交
570
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
571
				    "FORMAT 1 - Offset active cannot be "
S
Stefan Haberland 已提交
572
				    "reset\n");
L
Linus Torvalds 已提交
573 574
			break;
		default:
S
Stefan Haberland 已提交
575 576
			dev_warn(&device->cdev->dev,
				    "FORMAT 1 - Reserved\n");
L
Linus Torvalds 已提交
577 578 579 580 581 582
		}
		break;

	case 0x20:		/* Format 2 - 3990 Equipment Checks */
		switch (msg_no) {
		case 0x08:
S
Stefan Haberland 已提交
583 584
			dev_warn(&device->cdev->dev,
				    "FORMAT 2 - 3990 check-2 error\n");
L
Linus Torvalds 已提交
585 586
			break;
		case 0x0E:
S
Stefan Haberland 已提交
587 588
			dev_warn(&device->cdev->dev,
				    "FORMAT 2 - Support facility errors\n");
L
Linus Torvalds 已提交
589 590
			break;
		case 0x0F:
S
Stefan Haberland 已提交
591 592 593 594
			dev_warn(&device->cdev->dev,
				 "FORMAT 2 - Microcode detected error "
				 "%02x\n",
				 sense[8]);
L
Linus Torvalds 已提交
595 596
			break;
		default:
S
Stefan Haberland 已提交
597 598
			dev_warn(&device->cdev->dev,
				    "FORMAT 2 - Reserved\n");
L
Linus Torvalds 已提交
599 600 601 602 603 604
		}
		break;

	case 0x30:		/* Format 3 - 3990 Control Checks */
		switch (msg_no) {
		case 0x0F:
S
Stefan Haberland 已提交
605 606
			dev_warn(&device->cdev->dev,
				    "FORMAT 3 - Allegiance terminated\n");
L
Linus Torvalds 已提交
607 608
			break;
		default:
S
Stefan Haberland 已提交
609 610
			dev_warn(&device->cdev->dev,
				    "FORMAT 3 - Reserved\n");
L
Linus Torvalds 已提交
611 612 613 614 615 616
		}
		break;

	case 0x40:		/* Format 4 - Data Checks */
		switch (msg_no) {
		case 0x00:
S
Stefan Haberland 已提交
617 618
			dev_warn(&device->cdev->dev,
				    "FORMAT 4 - Home address area error\n");
L
Linus Torvalds 已提交
619 620
			break;
		case 0x01:
S
Stefan Haberland 已提交
621 622
			dev_warn(&device->cdev->dev,
				    "FORMAT 4 - Count area error\n");
L
Linus Torvalds 已提交
623 624
			break;
		case 0x02:
S
Stefan Haberland 已提交
625 626
			dev_warn(&device->cdev->dev,
				    "FORMAT 4 - Key area error\n");
L
Linus Torvalds 已提交
627 628
			break;
		case 0x03:
S
Stefan Haberland 已提交
629 630
			dev_warn(&device->cdev->dev,
				    "FORMAT 4 - Data area error\n");
L
Linus Torvalds 已提交
631 632
			break;
		case 0x04:
S
Stefan Haberland 已提交
633
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
634
				    "FORMAT 4 - No sync byte in home address "
S
Stefan Haberland 已提交
635
				    "area\n");
L
Linus Torvalds 已提交
636 637
			break;
		case 0x05:
S
Stefan Haberland 已提交
638
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
639
				    "FORMAT 4 - No sync byte in count address "
S
Stefan Haberland 已提交
640
				    "area\n");
L
Linus Torvalds 已提交
641 642
			break;
		case 0x06:
S
Stefan Haberland 已提交
643 644
			dev_warn(&device->cdev->dev,
				    "FORMAT 4 - No sync byte in key area\n");
L
Linus Torvalds 已提交
645 646
			break;
		case 0x07:
S
Stefan Haberland 已提交
647 648
			dev_warn(&device->cdev->dev,
				    "FORMAT 4 - No sync byte in data area\n");
L
Linus Torvalds 已提交
649 650
			break;
		case 0x08:
S
Stefan Haberland 已提交
651
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
652
				    "FORMAT 4 - Home address area error; "
S
Stefan Haberland 已提交
653
				    "offset active\n");
L
Linus Torvalds 已提交
654 655
			break;
		case 0x09:
S
Stefan Haberland 已提交
656
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
657
				    "FORMAT 4 - Count area error; offset "
S
Stefan Haberland 已提交
658
				    "active\n");
L
Linus Torvalds 已提交
659 660
			break;
		case 0x0A:
S
Stefan Haberland 已提交
661
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
662
				    "FORMAT 4 - Key area error; offset "
S
Stefan Haberland 已提交
663
				    "active\n");
L
Linus Torvalds 已提交
664 665
			break;
		case 0x0B:
S
Stefan Haberland 已提交
666
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
667
				    "FORMAT 4 - Data area error; "
S
Stefan Haberland 已提交
668
				    "offset active\n");
L
Linus Torvalds 已提交
669 670
			break;
		case 0x0C:
S
Stefan Haberland 已提交
671
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
672
				    "FORMAT 4 - No sync byte in home "
S
Stefan Haberland 已提交
673
				    "address area; offset active\n");
L
Linus Torvalds 已提交
674 675
			break;
		case 0x0D:
S
Stefan Haberland 已提交
676
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
677
				    "FORMAT 4 - No syn byte in count "
S
Stefan Haberland 已提交
678
				    "address area; offset active\n");
L
Linus Torvalds 已提交
679 680
			break;
		case 0x0E:
S
Stefan Haberland 已提交
681
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
682
				    "FORMAT 4 - No sync byte in key area; "
S
Stefan Haberland 已提交
683
				    "offset active\n");
L
Linus Torvalds 已提交
684 685
			break;
		case 0x0F:
S
Stefan Haberland 已提交
686
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
687
				    "FORMAT 4 - No syn byte in data area; "
S
Stefan Haberland 已提交
688
				    "offset active\n");
L
Linus Torvalds 已提交
689 690
			break;
		default:
S
Stefan Haberland 已提交
691 692
			dev_warn(&device->cdev->dev,
				    "FORMAT 4 - Reserved\n");
L
Linus Torvalds 已提交
693 694 695 696 697 698
		}
		break;

	case 0x50:  /* Format 5 - Data Check with displacement information */
		switch (msg_no) {
		case 0x00:
S
Stefan Haberland 已提交
699
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
700
				    "FORMAT 5 - Data Check in the "
S
Stefan Haberland 已提交
701
				    "home address area\n");
L
Linus Torvalds 已提交
702 703
			break;
		case 0x01:
S
Stefan Haberland 已提交
704 705 706
			dev_warn(&device->cdev->dev,
				 "FORMAT 5 - Data Check in the count "
				 "area\n");
L
Linus Torvalds 已提交
707 708
			break;
		case 0x02:
S
Stefan Haberland 已提交
709 710
			dev_warn(&device->cdev->dev,
				    "FORMAT 5 - Data Check in the key area\n");
L
Linus Torvalds 已提交
711 712
			break;
		case 0x03:
S
Stefan Haberland 已提交
713 714 715
			dev_warn(&device->cdev->dev,
				 "FORMAT 5 - Data Check in the data "
				 "area\n");
L
Linus Torvalds 已提交
716 717
			break;
		case 0x08:
S
Stefan Haberland 已提交
718
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
719
				    "FORMAT 5 - Data Check in the "
S
Stefan Haberland 已提交
720
				    "home address area; offset active\n");
L
Linus Torvalds 已提交
721 722
			break;
		case 0x09:
S
Stefan Haberland 已提交
723
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
724
				    "FORMAT 5 - Data Check in the count area; "
S
Stefan Haberland 已提交
725
				    "offset active\n");
L
Linus Torvalds 已提交
726 727
			break;
		case 0x0A:
S
Stefan Haberland 已提交
728
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
729
				    "FORMAT 5 - Data Check in the key area; "
S
Stefan Haberland 已提交
730
				    "offset active\n");
L
Linus Torvalds 已提交
731 732
			break;
		case 0x0B:
S
Stefan Haberland 已提交
733
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
734
				    "FORMAT 5 - Data Check in the data area; "
S
Stefan Haberland 已提交
735
				    "offset active\n");
L
Linus Torvalds 已提交
736 737
			break;
		default:
S
Stefan Haberland 已提交
738 739
			dev_warn(&device->cdev->dev,
				    "FORMAT 5 - Reserved\n");
L
Linus Torvalds 已提交
740 741 742 743 744 745
		}
		break;

	case 0x60:  /* Format 6 - Usage Statistics/Overrun Errors */
		switch (msg_no) {
		case 0x00:
S
Stefan Haberland 已提交
746 747
			dev_warn(&device->cdev->dev,
				    "FORMAT 6 - Overrun on channel A\n");
L
Linus Torvalds 已提交
748 749
			break;
		case 0x01:
S
Stefan Haberland 已提交
750 751
			dev_warn(&device->cdev->dev,
				    "FORMAT 6 - Overrun on channel B\n");
L
Linus Torvalds 已提交
752 753
			break;
		case 0x02:
S
Stefan Haberland 已提交
754 755
			dev_warn(&device->cdev->dev,
				    "FORMAT 6 - Overrun on channel C\n");
L
Linus Torvalds 已提交
756 757
			break;
		case 0x03:
S
Stefan Haberland 已提交
758 759
			dev_warn(&device->cdev->dev,
				    "FORMAT 6 - Overrun on channel D\n");
L
Linus Torvalds 已提交
760 761
			break;
		case 0x04:
S
Stefan Haberland 已提交
762 763
			dev_warn(&device->cdev->dev,
				    "FORMAT 6 - Overrun on channel E\n");
L
Linus Torvalds 已提交
764 765
			break;
		case 0x05:
S
Stefan Haberland 已提交
766 767
			dev_warn(&device->cdev->dev,
				    "FORMAT 6 - Overrun on channel F\n");
L
Linus Torvalds 已提交
768 769
			break;
		case 0x06:
S
Stefan Haberland 已提交
770 771
			dev_warn(&device->cdev->dev,
				    "FORMAT 6 - Overrun on channel G\n");
L
Linus Torvalds 已提交
772 773
			break;
		case 0x07:
S
Stefan Haberland 已提交
774 775
			dev_warn(&device->cdev->dev,
				    "FORMAT 6 - Overrun on channel H\n");
L
Linus Torvalds 已提交
776 777
			break;
		default:
S
Stefan Haberland 已提交
778 779
			dev_warn(&device->cdev->dev,
				    "FORMAT 6 - Reserved\n");
L
Linus Torvalds 已提交
780 781 782 783 784 785
		}
		break;

	case 0x70:  /* Format 7 - Device Connection Control Checks */
		switch (msg_no) {
		case 0x00:
S
Stefan Haberland 已提交
786
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
787
				    "FORMAT 7 - RCC initiated by a connection "
S
Stefan Haberland 已提交
788
				    "check alert\n");
L
Linus Torvalds 已提交
789 790
			break;
		case 0x01:
S
Stefan Haberland 已提交
791
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
792
				    "FORMAT 7 - RCC 1 sequence not "
S
Stefan Haberland 已提交
793
				    "successful\n");
L
Linus Torvalds 已提交
794 795
			break;
		case 0x02:
S
Stefan Haberland 已提交
796
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
797
				    "FORMAT 7 - RCC 1 and RCC 2 sequences not "
S
Stefan Haberland 已提交
798
				    "successful\n");
L
Linus Torvalds 已提交
799 800
			break;
		case 0x03:
S
Stefan Haberland 已提交
801
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
802
				    "FORMAT 7 - Invalid tag-in during "
S
Stefan Haberland 已提交
803
				    "selection sequence\n");
L
Linus Torvalds 已提交
804 805
			break;
		case 0x04:
S
Stefan Haberland 已提交
806 807
			dev_warn(&device->cdev->dev,
				    "FORMAT 7 - extra RCC required\n");
L
Linus Torvalds 已提交
808 809
			break;
		case 0x05:
S
Stefan Haberland 已提交
810
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
811
				    "FORMAT 7 - Invalid DCC selection "
S
Stefan Haberland 已提交
812
				    "response or timeout\n");
L
Linus Torvalds 已提交
813 814
			break;
		case 0x06:
S
Stefan Haberland 已提交
815
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
816
				    "FORMAT 7 - Missing end operation; device "
S
Stefan Haberland 已提交
817
				    "transfer complete\n");
L
Linus Torvalds 已提交
818 819
			break;
		case 0x07:
S
Stefan Haberland 已提交
820
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
821
				    "FORMAT 7 - Missing end operation; device "
S
Stefan Haberland 已提交
822
				    "transfer incomplete\n");
L
Linus Torvalds 已提交
823 824
			break;
		case 0x08:
S
Stefan Haberland 已提交
825
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
826
				    "FORMAT 7 - Invalid tag-in for an "
S
Stefan Haberland 已提交
827
				    "immediate command sequence\n");
L
Linus Torvalds 已提交
828 829
			break;
		case 0x09:
S
Stefan Haberland 已提交
830
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
831
				    "FORMAT 7 - Invalid tag-in for an "
S
Stefan Haberland 已提交
832
				    "extended command sequence\n");
L
Linus Torvalds 已提交
833 834
			break;
		case 0x0A:
S
Stefan Haberland 已提交
835
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
836
				    "FORMAT 7 - 3990 microcode time out when "
S
Stefan Haberland 已提交
837
				    "stopping selection\n");
L
Linus Torvalds 已提交
838 839
			break;
		case 0x0B:
S
Stefan Haberland 已提交
840
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
841
				    "FORMAT 7 - No response to selection "
S
Stefan Haberland 已提交
842
				    "after a poll interruption\n");
L
Linus Torvalds 已提交
843 844
			break;
		case 0x0C:
S
Stefan Haberland 已提交
845
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
846
				    "FORMAT 7 - Permanent path error (DASD "
S
Stefan Haberland 已提交
847
				    "controller not available)\n");
L
Linus Torvalds 已提交
848 849
			break;
		case 0x0D:
S
Stefan Haberland 已提交
850
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
851
				    "FORMAT 7 - DASD controller not available"
S
Stefan Haberland 已提交
852
				    " on disconnected command chain\n");
L
Linus Torvalds 已提交
853 854
			break;
		default:
S
Stefan Haberland 已提交
855 856
			dev_warn(&device->cdev->dev,
				    "FORMAT 7 - Reserved\n");
L
Linus Torvalds 已提交
857 858 859 860 861 862 863
		}
		break;

	case 0x80:  /* Format 8 - Additional Device Equipment Checks */
		switch (msg_no) {
		case 0x00:	/* No Message */
		case 0x01:
S
Stefan Haberland 已提交
864
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
865
				    "FORMAT 8 - Error correction code "
S
Stefan Haberland 已提交
866
				    "hardware fault\n");
L
Linus Torvalds 已提交
867 868
			break;
		case 0x03:
S
Stefan Haberland 已提交
869
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
870
				    "FORMAT 8 - Unexpected end operation "
S
Stefan Haberland 已提交
871
				    "response code\n");
L
Linus Torvalds 已提交
872 873
			break;
		case 0x04:
S
Stefan Haberland 已提交
874
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
875
				    "FORMAT 8 - End operation with transfer "
S
Stefan Haberland 已提交
876
				    "count not zero\n");
L
Linus Torvalds 已提交
877 878
			break;
		case 0x05:
S
Stefan Haberland 已提交
879
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
880
				    "FORMAT 8 - End operation with transfer "
S
Stefan Haberland 已提交
881
				    "count zero\n");
L
Linus Torvalds 已提交
882 883
			break;
		case 0x06:
S
Stefan Haberland 已提交
884
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
885
				    "FORMAT 8 - DPS checks after a system "
S
Stefan Haberland 已提交
886
				    "reset or selective reset\n");
L
Linus Torvalds 已提交
887 888
			break;
		case 0x07:
S
Stefan Haberland 已提交
889 890
			dev_warn(&device->cdev->dev,
				    "FORMAT 8 - DPS cannot be filled\n");
L
Linus Torvalds 已提交
891 892
			break;
		case 0x08:
S
Stefan Haberland 已提交
893
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
894
				    "FORMAT 8 - Short busy time-out during "
S
Stefan Haberland 已提交
895
				    "device selection\n");
L
Linus Torvalds 已提交
896 897
			break;
		case 0x09:
S
Stefan Haberland 已提交
898
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
899
				    "FORMAT 8 - DASD controller failed to "
S
Stefan Haberland 已提交
900
				    "set or reset the long busy latch\n");
L
Linus Torvalds 已提交
901 902
			break;
		case 0x0A:
S
Stefan Haberland 已提交
903
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
904
				    "FORMAT 8 - No interruption from device "
S
Stefan Haberland 已提交
905
				    "during a command chain\n");
L
Linus Torvalds 已提交
906 907
			break;
		default:
S
Stefan Haberland 已提交
908 909
			dev_warn(&device->cdev->dev,
				    "FORMAT 8 - Reserved\n");
L
Linus Torvalds 已提交
910 911 912 913 914 915 916 917
		}
		break;

	case 0x90:  /* Format 9 - Device Read, Write, and Seek Checks */
		switch (msg_no) {
		case 0x00:
			break;	/* No Message */
		case 0x06:
S
Stefan Haberland 已提交
918 919
			dev_warn(&device->cdev->dev,
				    "FORMAT 9 - Device check-2 error\n");
L
Linus Torvalds 已提交
920 921
			break;
		case 0x07:
S
Stefan Haberland 已提交
922 923 924
			dev_warn(&device->cdev->dev,
				 "FORMAT 9 - Head address did not "
				 "compare\n");
L
Linus Torvalds 已提交
925 926
			break;
		case 0x0A:
S
Stefan Haberland 已提交
927
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
928
				    "FORMAT 9 - Track physical address did "
S
Stefan Haberland 已提交
929
				    "not compare while oriented\n");
L
Linus Torvalds 已提交
930 931
			break;
		case 0x0E:
S
Stefan Haberland 已提交
932
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
933
				    "FORMAT 9 - Cylinder address did not "
S
Stefan Haberland 已提交
934
				    "compare\n");
L
Linus Torvalds 已提交
935 936
			break;
		default:
S
Stefan Haberland 已提交
937 938
			dev_warn(&device->cdev->dev,
				    "FORMAT 9 - Reserved\n");
L
Linus Torvalds 已提交
939 940 941 942 943 944
		}
		break;

	case 0xF0:		/* Format F - Cache Storage Checks */
		switch (msg_no) {
		case 0x00:
S
Stefan Haberland 已提交
945 946
			dev_warn(&device->cdev->dev,
				    "FORMAT F - Operation Terminated\n");
L
Linus Torvalds 已提交
947 948
			break;
		case 0x01:
S
Stefan Haberland 已提交
949 950
			dev_warn(&device->cdev->dev,
				    "FORMAT F - Subsystem Processing Error\n");
L
Linus Torvalds 已提交
951 952
			break;
		case 0x02:
S
Stefan Haberland 已提交
953
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
954
				    "FORMAT F - Cache or nonvolatile storage "
S
Stefan Haberland 已提交
955
				    "equipment failure\n");
L
Linus Torvalds 已提交
956 957
			break;
		case 0x04:
S
Stefan Haberland 已提交
958 959
			dev_warn(&device->cdev->dev,
				    "FORMAT F - Caching terminated\n");
L
Linus Torvalds 已提交
960 961
			break;
		case 0x06:
S
Stefan Haberland 已提交
962
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
963
				    "FORMAT F - Cache fast write access not "
S
Stefan Haberland 已提交
964
				    "authorized\n");
L
Linus Torvalds 已提交
965 966
			break;
		case 0x07:
S
Stefan Haberland 已提交
967 968
			dev_warn(&device->cdev->dev,
				    "FORMAT F - Track format incorrect\n");
L
Linus Torvalds 已提交
969 970
			break;
		case 0x09:
S
Stefan Haberland 已提交
971 972
			dev_warn(&device->cdev->dev,
				    "FORMAT F - Caching reinitiated\n");
L
Linus Torvalds 已提交
973 974
			break;
		case 0x0A:
S
Stefan Haberland 已提交
975
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
976
				    "FORMAT F - Nonvolatile storage "
S
Stefan Haberland 已提交
977
				    "terminated\n");
L
Linus Torvalds 已提交
978 979
			break;
		case 0x0B:
S
Stefan Haberland 已提交
980 981
			dev_warn(&device->cdev->dev,
				    "FORMAT F - Volume is suspended duplex\n");
982 983 984
			/* call extended error reporting (EER) */
			dasd_eer_write(device, erp->refers,
				       DASD_EER_PPRCSUSPEND);
L
Linus Torvalds 已提交
985 986
			break;
		case 0x0C:
S
Stefan Haberland 已提交
987 988 989
			dev_warn(&device->cdev->dev,
				    "FORMAT F - Subsystem status cannot be "
				    "determined\n");
L
Linus Torvalds 已提交
990 991
			break;
		case 0x0D:
S
Stefan Haberland 已提交
992
			dev_warn(&device->cdev->dev,
L
Linus Torvalds 已提交
993
				    "FORMAT F - Caching status reset to "
S
Stefan Haberland 已提交
994
				    "default\n");
L
Linus Torvalds 已提交
995 996
			break;
		case 0x0E:
S
Stefan Haberland 已提交
997 998
			dev_warn(&device->cdev->dev,
				    "FORMAT F - DASD Fast Write inhibited\n");
L
Linus Torvalds 已提交
999 1000
			break;
		default:
S
Stefan Haberland 已提交
1001 1002
			dev_warn(&device->cdev->dev,
				    "FORMAT D - Reserved\n");
L
Linus Torvalds 已提交
1003 1004 1005
		}
		break;

S
Stefan Haberland 已提交
1006 1007 1008 1009 1010 1011
	default:	/* unknown message format - should not happen
			   internal error 03 - unknown message format */
		snprintf(errorstring, ERRORLENGTH, "03 %x02", msg_format);
		dev_err(&device->cdev->dev,
			 "An error occurred in the DASD device driver, "
			 "reason=%s\n", errorstring);
L
Linus Torvalds 已提交
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
		break;
	}			/* end switch message format */

}				/* end dasd_3990_handle_env_data */

/*
 * DASD_3990_ERP_COM_REJ
 *
 * DESCRIPTION
 *   Handles 24 byte 'Command Reject' error.
 *
 * PARAMETER
 *   erp		current erp_head
 *   sense		current sense data
1026
 *
L
Linus Torvalds 已提交
1027
 * RETURN VALUES
1028
 *   erp		'new' erp_head - pointer to new ERP
L
Linus Torvalds 已提交
1029 1030 1031 1032 1033
 */
static struct dasd_ccw_req *
dasd_3990_erp_com_rej(struct dasd_ccw_req * erp, char *sense)
{

1034
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
1035 1036 1037 1038 1039 1040

	erp->function = dasd_3990_erp_com_rej;

	/* env data present (ACTION 10 - retry should work) */
	if (sense[2] & SNS2_ENV_DATA_PRESENT) {

S
Stefan Haberland 已提交
1041
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1042 1043 1044 1045 1046 1047
			    "Command Reject - environmental data present");

		dasd_3990_handle_env_data(erp, sense);

		erp->retries = 5;

1048 1049 1050 1051
	} else if (sense[1] & SNS1_WRITE_INHIBITED) {
		dev_err(&device->cdev->dev, "An I/O request was rejected"
			" because writing is inhibited\n");
		erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
L
Linus Torvalds 已提交
1052
	} else {
S
Stefan Haberland 已提交
1053 1054 1055 1056
		/* fatal error -  set status to FAILED
		   internal error 09 - Command Reject */
		dev_err(&device->cdev->dev, "An error occurred in the DASD "
			"device driver, reason=%s\n", "09");
L
Linus Torvalds 已提交
1057 1058 1059 1060 1061 1062 1063 1064 1065

		erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
	}

	return erp;

}				/* end dasd_3990_erp_com_rej */

/*
1066
 * DASD_3990_ERP_BUS_OUT
L
Linus Torvalds 已提交
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
 *
 * DESCRIPTION
 *   Handles 24 byte 'Bus Out Parity Check' error.
 *
 * PARAMETER
 *   erp		current erp_head
 * RETURN VALUES
 *   erp		new erp_head - pointer to new ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_bus_out(struct dasd_ccw_req * erp)
{

1080
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091

	/* first time set initial retry counter and erp_function */
	/* and retry once without blocking queue		 */
	/* (this enables easier enqueing of the cqr)		 */
	if (erp->function != dasd_3990_erp_bus_out) {
		erp->retries = 256;
		erp->function = dasd_3990_erp_bus_out;

	} else {

		/* issue a message and wait for 'device ready' interrupt */
S
Stefan Haberland 已提交
1092
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
			    "bus out parity error or BOPC requested by "
			    "channel");

		dasd_3990_erp_block_queue(erp, 60*HZ);

	}

	return erp;

}				/* end dasd_3990_erp_bus_out */

/*
 * DASD_3990_ERP_EQUIP_CHECK
 *
 * DESCRIPTION
 *   Handles 24 byte 'Equipment Check' error.
 *
 * PARAMETER
 *   erp		current erp_head
 * RETURN VALUES
 *   erp		new erp_head - pointer to new ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_equip_check(struct dasd_ccw_req * erp, char *sense)
{

1119
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
1120 1121 1122 1123

	erp->function = dasd_3990_erp_equip_check;

	if (sense[1] & SNS1_WRITE_INHIBITED) {
S
Stefan Haberland 已提交
1124 1125
		dev_info(&device->cdev->dev,
			    "Write inhibited path encountered\n");
L
Linus Torvalds 已提交
1126

S
Stefan Haberland 已提交
1127 1128 1129 1130
		/* vary path offline
		   internal error 04 - Path should be varied off-line.*/
		dev_err(&device->cdev->dev, "An error occurred in the DASD "
			"device driver, reason=%s\n", "04");
L
Linus Torvalds 已提交
1131 1132 1133 1134 1135

		erp = dasd_3990_erp_action_1(erp);

	} else if (sense[2] & SNS2_ENV_DATA_PRESENT) {

S
Stefan Haberland 已提交
1136
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1137 1138 1139 1140 1141 1142 1143 1144
			    "Equipment Check - " "environmental data present");

		dasd_3990_handle_env_data(erp, sense);

		erp = dasd_3990_erp_action_4(erp, sense);

	} else if (sense[1] & SNS1_PERM_ERR) {

S
Stefan Haberland 已提交
1145
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1146 1147 1148 1149 1150 1151 1152 1153
			    "Equipment Check - retry exhausted or "
			    "undesirable");

		erp = dasd_3990_erp_action_1(erp);

	} else {
		/* all other equipment checks - Action 5 */
		/* rest is done when retries == 0 */
S
Stefan Haberland 已提交
1154
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
			    "Equipment check or processing error");

		erp = dasd_3990_erp_action_5(erp);
	}
	return erp;

}				/* end dasd_3990_erp_equip_check */

/*
 * DASD_3990_ERP_DATA_CHECK
 *
 * DESCRIPTION
 *   Handles 24 byte 'Data Check' error.
 *
 * PARAMETER
 *   erp		current erp_head
 * RETURN VALUES
 *   erp		new erp_head - pointer to new ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_data_check(struct dasd_ccw_req * erp, char *sense)
{

1178
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
1179 1180 1181 1182 1183 1184

	erp->function = dasd_3990_erp_data_check;

	if (sense[2] & SNS2_CORRECTABLE) {	/* correctable data check */

		/* issue message that the data has been corrected */
S
Stefan Haberland 已提交
1185
		dev_emerg(&device->cdev->dev,
L
Linus Torvalds 已提交
1186
			    "Data recovered during retry with PCI "
S
Stefan Haberland 已提交
1187
			    "fetch mode active\n");
L
Linus Torvalds 已提交
1188 1189 1190 1191 1192 1193 1194

		/* not possible to handle this situation in Linux */
		panic("No way to inform application about the possibly "
		      "incorrect data");

	} else if (sense[2] & SNS2_ENV_DATA_PRESENT) {

S
Stefan Haberland 已提交
1195
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1196 1197 1198 1199 1200 1201 1202
			    "Uncorrectable data check recovered secondary "
			    "addr of duplex pair");

		erp = dasd_3990_erp_action_4(erp, sense);

	} else if (sense[1] & SNS1_PERM_ERR) {

S
Stefan Haberland 已提交
1203
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1204 1205 1206 1207 1208 1209 1210
			    "Uncorrectable data check with internal "
			    "retry exhausted");

		erp = dasd_3990_erp_action_1(erp);

	} else {
		/* all other data checks */
S
Stefan Haberland 已提交
1211
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
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
			    "Uncorrectable data check with retry count "
			    "exhausted...");

		erp = dasd_3990_erp_action_5(erp);
	}

	return erp;

}				/* end dasd_3990_erp_data_check */

/*
 * DASD_3990_ERP_OVERRUN
 *
 * DESCRIPTION
 *   Handles 24 byte 'Overrun' error.
 *
 * PARAMETER
 *   erp		current erp_head
 * RETURN VALUES
 *   erp		new erp_head - pointer to new ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_overrun(struct dasd_ccw_req * erp, char *sense)
{

1237
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
1238 1239 1240

	erp->function = dasd_3990_erp_overrun;

S
Stefan Haberland 已提交
1241
	DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
		    "Overrun - service overrun or overrun"
		    " error requested by channel");

	erp = dasd_3990_erp_action_5(erp);

	return erp;

}				/* end dasd_3990_erp_overrun */

/*
 * DASD_3990_ERP_INV_FORMAT
 *
 * DESCRIPTION
 *   Handles 24 byte 'Invalid Track Format' error.
 *
 * PARAMETER
 *   erp		current erp_head
 * RETURN VALUES
 *   erp		new erp_head - pointer to new ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_inv_format(struct dasd_ccw_req * erp, char *sense)
{

1266
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
1267 1268 1269 1270 1271

	erp->function = dasd_3990_erp_inv_format;

	if (sense[2] & SNS2_ENV_DATA_PRESENT) {

S
Stefan Haberland 已提交
1272
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1273 1274 1275 1276 1277 1278 1279 1280
			    "Track format error when destaging or "
			    "staging data");

		dasd_3990_handle_env_data(erp, sense);

		erp = dasd_3990_erp_action_4(erp, sense);

	} else {
S
Stefan Haberland 已提交
1281 1282 1283 1284
		/* internal error 06 - The track format is not valid*/
		dev_err(&device->cdev->dev,
			"An error occurred in the DASD device driver, "
			"reason=%s\n", "06");
L
Linus Torvalds 已提交
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307

		erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
	}

	return erp;

}				/* end dasd_3990_erp_inv_format */

/*
 * DASD_3990_ERP_EOC
 *
 * DESCRIPTION
 *   Handles 24 byte 'End-of-Cylinder' error.
 *
 * PARAMETER
 *   erp		already added default erp
 * RETURN VALUES
 *   erp		pointer to original (failed) cqr.
 */
static struct dasd_ccw_req *
dasd_3990_erp_EOC(struct dasd_ccw_req * default_erp, char *sense)
{

1308
	struct dasd_device *device = default_erp->startdev;
L
Linus Torvalds 已提交
1309

S
Stefan Haberland 已提交
1310 1311
	dev_err(&device->cdev->dev,
		"The cylinder data for accessing the DASD is inconsistent\n");
L
Linus Torvalds 已提交
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332

	/* implement action 7 - BUG */
	return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);

}				/* end dasd_3990_erp_EOC */

/*
 * DASD_3990_ERP_ENV_DATA
 *
 * DESCRIPTION
 *   Handles 24 byte 'Environmental-Data Present' error.
 *
 * PARAMETER
 *   erp		current erp_head
 * RETURN VALUES
 *   erp		new erp_head - pointer to new ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_env_data(struct dasd_ccw_req * erp, char *sense)
{

1333
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
1334 1335 1336

	erp->function = dasd_3990_erp_env_data;

S
Stefan Haberland 已提交
1337
	DBF_DEV_EVENT(DBF_WARNING, device, "%s", "Environmental data present");
L
Linus Torvalds 已提交
1338 1339 1340 1341 1342 1343 1344

	dasd_3990_handle_env_data(erp, sense);

	/* don't retry on disabled interface */
	if (sense[7] != 0x0F) {
		erp = dasd_3990_erp_action_4(erp, sense);
	} else {
1345
		erp->status = DASD_CQR_FILLED;
L
Linus Torvalds 已提交
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
	}

	return erp;

}				/* end dasd_3990_erp_env_data */

/*
 * DASD_3990_ERP_NO_REC
 *
 * DESCRIPTION
 *   Handles 24 byte 'No Record Found' error.
 *
 * PARAMETER
 *   erp		already added default ERP
1360
 *
L
Linus Torvalds 已提交
1361 1362 1363 1364 1365 1366 1367
 * RETURN VALUES
 *   erp		new erp_head - pointer to new ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_no_rec(struct dasd_ccw_req * default_erp, char *sense)
{

1368
	struct dasd_device *device = default_erp->startdev;
L
Linus Torvalds 已提交
1369

S
Stefan Haberland 已提交
1370 1371
	dev_err(&device->cdev->dev,
		    "The specified record was not found\n");
L
Linus Torvalds 已提交
1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393

	return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);

}				/* end dasd_3990_erp_no_rec */

/*
 * DASD_3990_ERP_FILE_PROT
 *
 * DESCRIPTION
 *   Handles 24 byte 'File Protected' error.
 *   Note: Seek related recovery is not implemented because
 *	   wee don't use the seek command yet.
 *
 * PARAMETER
 *   erp		current erp_head
 * RETURN VALUES
 *   erp		new erp_head - pointer to new ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_file_prot(struct dasd_ccw_req * erp)
{

1394
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
1395

S
Stefan Haberland 已提交
1396 1397
	dev_err(&device->cdev->dev, "Accessing the DASD failed because of "
		"a hardware error\n");
L
Linus Torvalds 已提交
1398 1399 1400 1401 1402

	return dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);

}				/* end dasd_3990_erp_file_prot */

1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421
/*
 * DASD_3990_ERP_INSPECT_ALIAS
 *
 * DESCRIPTION
 *   Checks if the original request was started on an alias device.
 *   If yes, it modifies the original and the erp request so that
 *   the erp request can be started on a base device.
 *
 * PARAMETER
 *   erp		pointer to the currently created default ERP
 *
 * RETURN VALUES
 *   erp		pointer to the modified ERP, or NULL
 */

static struct dasd_ccw_req *dasd_3990_erp_inspect_alias(
						struct dasd_ccw_req *erp)
{
	struct dasd_ccw_req *cqr = erp->refers;
1422
	char *sense;
1423 1424 1425

	if (cqr->block &&
	    (cqr->block->base != cqr->startdev)) {
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444

		sense = dasd_get_sense(&erp->refers->irb);
		/*
		 * dynamic pav may have changed base alias mapping
		 */
		if (!test_bit(DASD_FLAG_OFFLINE, &cqr->startdev->flags) && sense
		    && (sense[0] == 0x10) && (sense[7] == 0x0F)
		    && (sense[8] == 0x67)) {
			/*
			 * remove device from alias handling to prevent new
			 * requests from being scheduled on the
			 * wrong alias device
			 */
			dasd_alias_remove_device(cqr->startdev);

			/* schedule worker to reload device */
			dasd_reload_device(cqr->startdev);
		}

1445
		if (cqr->startdev->features & DASD_FEATURE_ERPLOG) {
S
Stefan Haberland 已提交
1446
			DBF_DEV_EVENT(DBF_ERR, cqr->startdev,
1447 1448
				    "ERP on alias device for request %p,"
				    " recover on base device %s", cqr,
1449
				    dev_name(&cqr->block->base->cdev->dev));
1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
		}
		dasd_eckd_reset_ccw_to_base_io(cqr);
		erp->startdev = cqr->block->base;
		erp->function = dasd_3990_erp_inspect_alias;
		return erp;
	} else
		return NULL;
}


L
Linus Torvalds 已提交
1460
/*
1461
 * DASD_3990_ERP_INSPECT_24
L
Linus Torvalds 已提交
1462 1463 1464
 *
 * DESCRIPTION
 *   Does a detailed inspection of the 24 byte sense data
1465
 *   and sets up a related error recovery action.
L
Linus Torvalds 已提交
1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
 *
 * PARAMETER
 *   sense		sense data of the actual error
 *   erp		pointer to the currently created default ERP
 *
 * RETURN VALUES
 *   erp		pointer to the (addtitional) ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_inspect_24(struct dasd_ccw_req * erp, char *sense)
{

	struct dasd_ccw_req *erp_filled = NULL;

	/* Check sense for ....	   */
	/* 'Command Reject'	   */
	if ((erp_filled == NULL) && (sense[0] & SNS0_CMD_REJECT)) {
		erp_filled = dasd_3990_erp_com_rej(erp, sense);
	}
	/* 'Intervention Required' */
	if ((erp_filled == NULL) && (sense[0] & SNS0_INTERVENTION_REQ)) {
		erp_filled = dasd_3990_erp_int_req(erp);
	}
	/* 'Bus Out Parity Check'  */
	if ((erp_filled == NULL) && (sense[0] & SNS0_BUS_OUT_CHECK)) {
		erp_filled = dasd_3990_erp_bus_out(erp);
	}
	/* 'Equipment Check'	   */
	if ((erp_filled == NULL) && (sense[0] & SNS0_EQUIPMENT_CHECK)) {
		erp_filled = dasd_3990_erp_equip_check(erp, sense);
	}
	/* 'Data Check'		   */
	if ((erp_filled == NULL) && (sense[0] & SNS0_DATA_CHECK)) {
		erp_filled = dasd_3990_erp_data_check(erp, sense);
	}
	/* 'Overrun'		   */
	if ((erp_filled == NULL) && (sense[0] & SNS0_OVERRUN)) {
		erp_filled = dasd_3990_erp_overrun(erp, sense);
	}
	/* 'Invalid Track Format'  */
	if ((erp_filled == NULL) && (sense[1] & SNS1_INV_TRACK_FORMAT)) {
		erp_filled = dasd_3990_erp_inv_format(erp, sense);
	}
	/* 'End-of-Cylinder'	   */
	if ((erp_filled == NULL) && (sense[1] & SNS1_EOC)) {
		erp_filled = dasd_3990_erp_EOC(erp, sense);
	}
	/* 'Environmental Data'	   */
	if ((erp_filled == NULL) && (sense[2] & SNS2_ENV_DATA_PRESENT)) {
		erp_filled = dasd_3990_erp_env_data(erp, sense);
	}
	/* 'No Record Found'	   */
	if ((erp_filled == NULL) && (sense[1] & SNS1_NO_REC_FOUND)) {
		erp_filled = dasd_3990_erp_no_rec(erp, sense);
	}
	/* 'File Protected'	   */
	if ((erp_filled == NULL) && (sense[1] & SNS1_FILE_PROTECTED)) {
		erp_filled = dasd_3990_erp_file_prot(erp);
	}
	/* other (unknown) error - do default ERP */
	if (erp_filled == NULL) {

		erp_filled = erp;
	}

	return erp_filled;

}				/* END dasd_3990_erp_inspect_24 */

/*
1536
 *****************************************************************************
L
Linus Torvalds 已提交
1537
 * 32 byte sense ERP functions (only)
1538
 *****************************************************************************
L
Linus Torvalds 已提交
1539 1540 1541
 */

/*
1542
 * DASD_3990_ERPACTION_10_32
L
Linus Torvalds 已提交
1543 1544 1545 1546 1547 1548 1549
 *
 * DESCRIPTION
 *   Handles 32 byte 'Action 10' of Single Program Action Codes.
 *   Just retry and if retry doesn't work, return with error.
 *
 * PARAMETER
 *   erp		current erp_head
1550
 *   sense		current sense data
L
Linus Torvalds 已提交
1551 1552 1553 1554 1555 1556 1557
 * RETURN VALUES
 *   erp		modified erp_head
 */
static struct dasd_ccw_req *
dasd_3990_erp_action_10_32(struct dasd_ccw_req * erp, char *sense)
{

1558
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
1559 1560 1561 1562

	erp->retries = 256;
	erp->function = dasd_3990_erp_action_10_32;

S
Stefan Haberland 已提交
1563
	DBF_DEV_EVENT(DBF_WARNING, device, "%s", "Perform logging requested");
L
Linus Torvalds 已提交
1564 1565 1566 1567 1568 1569 1570 1571 1572 1573

	return erp;

}				/* end dasd_3990_erp_action_10_32 */

/*
 * DASD_3990_ERP_ACTION_1B_32
 *
 * DESCRIPTION
 *   Handles 32 byte 'Action 1B' of Single Program Action Codes.
1574
 *   A write operation could not be finished because of an unexpected
L
Linus Torvalds 已提交
1575
 *   condition.
1576 1577
 *   The already created 'default erp' is used to get the link to
 *   the erp chain, but it can not be used for this recovery
L
Linus Torvalds 已提交
1578 1579 1580 1581
 *   action because it contains no DE/LO data space.
 *
 * PARAMETER
 *   default_erp	already added default erp.
1582
 *   sense		current sense data
L
Linus Torvalds 已提交
1583 1584
 *
 * RETURN VALUES
1585
 *   erp		new erp or
L
Linus Torvalds 已提交
1586 1587 1588 1589 1590 1591
 *			default_erp in case of imprecise ending or error
 */
static struct dasd_ccw_req *
dasd_3990_erp_action_1B_32(struct dasd_ccw_req * default_erp, char *sense)
{

1592
	struct dasd_device *device = default_erp->startdev;
L
Linus Torvalds 已提交
1593 1594 1595 1596
	__u32 cpa = 0;
	struct dasd_ccw_req *cqr;
	struct dasd_ccw_req *erp;
	struct DE_eckd_data *DE_data;
1597
	struct PFX_eckd_data *PFX_data;
L
Linus Torvalds 已提交
1598
	char *LO_data;		/* LO_eckd_data_t */
1599
	struct ccw1 *ccw, *oldccw;
L
Linus Torvalds 已提交
1600

S
Stefan Haberland 已提交
1601
	DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
		    "Write not finished because of unexpected condition");

	default_erp->function = dasd_3990_erp_action_1B_32;

	/* determine the original cqr */
	cqr = default_erp;

	while (cqr->refers != NULL) {
		cqr = cqr->refers;
	}

1613 1614 1615 1616 1617 1618 1619
	if (scsw_is_tm(&cqr->irb.scsw)) {
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
			      "32 bit sense, action 1B is not defined"
			      " in transport mode - just retry");
		return default_erp;
	}

L
Linus Torvalds 已提交
1620 1621
	/* for imprecise ending just do default erp */
	if (sense[1] & 0x01) {
S
Stefan Haberland 已提交
1622
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1623 1624 1625 1626 1627 1628 1629
			    "Imprecise ending is set - just retry");

		return default_erp;
	}

	/* determine the address of the CCW to be restarted */
	/* Imprecise ending is not set -> addr from IRB-SCSW */
1630
	cpa = default_erp->refers->irb.scsw.cmd.cpa;
L
Linus Torvalds 已提交
1631 1632

	if (cpa == 0) {
S
Stefan Haberland 已提交
1633
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1634 1635 1636 1637 1638 1639 1640 1641 1642
			    "Unable to determine address of the CCW "
			    "to be restarted");

		return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);
	}

	/* Build new ERP request including DE/LO */
	erp = dasd_alloc_erp_request((char *) &cqr->magic,
				     2 + 1,/* DE/LO + TIC */
1643 1644
				     sizeof(struct DE_eckd_data) +
				     sizeof(struct LO_eckd_data), device);
L
Linus Torvalds 已提交
1645 1646

	if (IS_ERR(erp)) {
S
Stefan Haberland 已提交
1647 1648 1649
		/* internal error 01 - Unable to allocate ERP */
		dev_err(&device->cdev->dev, "An error occurred in the DASD "
			"device driver, reason=%s\n", "01");
L
Linus Torvalds 已提交
1650 1651 1652 1653 1654
		return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);
	}

	/* use original DE */
	DE_data = erp->data;
1655 1656 1657
	oldccw = cqr->cpaddr;
	if (oldccw->cmd_code == DASD_ECKD_CCW_PFX) {
		PFX_data = cqr->data;
1658
		memcpy(DE_data, &PFX_data->define_extent,
1659 1660 1661
		       sizeof(struct DE_eckd_data));
	} else
		memcpy(DE_data, cqr->data, sizeof(struct DE_eckd_data));
L
Linus Torvalds 已提交
1662 1663

	/* create LO */
1664
	LO_data = erp->data + sizeof(struct DE_eckd_data);
L
Linus Torvalds 已提交
1665 1666

	if ((sense[3] == 0x01) && (LO_data[1] & 0x01)) {
S
Stefan Haberland 已提交
1667
		/* should not */
L
Linus Torvalds 已提交
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
		return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);
	}

	if ((sense[7] & 0x3F) == 0x01) {
		/* operation code is WRITE DATA -> data area orientation */
		LO_data[0] = 0x81;

	} else if ((sense[7] & 0x3F) == 0x03) {
		/* operation code is FORMAT WRITE -> index orientation */
		LO_data[0] = 0xC3;

	} else {
		LO_data[0] = sense[7];	/* operation */
	}

	LO_data[1] = sense[8];	/* auxiliary */
	LO_data[2] = sense[9];
	LO_data[3] = sense[3];	/* count */
	LO_data[4] = sense[29];	/* seek_addr.cyl */
	LO_data[5] = sense[30];	/* seek_addr.cyl 2nd byte */
	LO_data[7] = sense[31];	/* seek_addr.head 2nd byte */

	memcpy(&(LO_data[8]), &(sense[11]), 8);

	/* create DE ccw */
	ccw = erp->cpaddr;
1694
	memset(ccw, 0, sizeof(struct ccw1));
L
Linus Torvalds 已提交
1695 1696 1697 1698 1699 1700 1701
	ccw->cmd_code = DASD_ECKD_CCW_DEFINE_EXTENT;
	ccw->flags = CCW_FLAG_CC;
	ccw->count = 16;
	ccw->cda = (__u32)(addr_t) DE_data;

	/* create LO ccw */
	ccw++;
1702
	memset(ccw, 0, sizeof(struct ccw1));
L
Linus Torvalds 已提交
1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713
	ccw->cmd_code = DASD_ECKD_CCW_LOCATE_RECORD;
	ccw->flags = CCW_FLAG_CC;
	ccw->count = 16;
	ccw->cda = (__u32)(addr_t) LO_data;

	/* TIC to the failed ccw */
	ccw++;
	ccw->cmd_code = CCW_CMD_TIC;
	ccw->cda = cpa;

	/* fill erp related fields */
1714
	erp->flags = default_erp->flags;
L
Linus Torvalds 已提交
1715 1716
	erp->function = dasd_3990_erp_action_1B_32;
	erp->refers = default_erp->refers;
1717 1718
	erp->startdev = device;
	erp->memdev = device;
L
Linus Torvalds 已提交
1719
	erp->magic = default_erp->magic;
1720
	erp->expires = default_erp->expires;
L
Linus Torvalds 已提交
1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735
	erp->retries = 256;
	erp->buildclk = get_clock();
	erp->status = DASD_CQR_FILLED;

	/* remove the default erp */
	dasd_free_erp_request(default_erp, device);

	return erp;

}				/* end dasd_3990_erp_action_1B_32 */

/*
 * DASD_3990_UPDATE_1B
 *
 * DESCRIPTION
1736
 *   Handles the update to the 32 byte 'Action 1B' of Single Program
L
Linus Torvalds 已提交
1737 1738
 *   Action Codes in case the first action was not successful.
 *   The already created 'previous_erp' is the currently not successful
1739
 *   ERP.
L
Linus Torvalds 已提交
1740 1741 1742
 *
 * PARAMETER
 *   previous_erp	already created previous erp.
1743
 *   sense		current sense data
L
Linus Torvalds 已提交
1744
 * RETURN VALUES
1745
 *   erp		modified erp
L
Linus Torvalds 已提交
1746 1747 1748 1749 1750
 */
static struct dasd_ccw_req *
dasd_3990_update_1B(struct dasd_ccw_req * previous_erp, char *sense)
{

1751
	struct dasd_device *device = previous_erp->startdev;
L
Linus Torvalds 已提交
1752 1753 1754 1755 1756 1757
	__u32 cpa = 0;
	struct dasd_ccw_req *cqr;
	struct dasd_ccw_req *erp;
	char *LO_data;		/* struct LO_eckd_data */
	struct ccw1 *ccw;

S
Stefan Haberland 已提交
1758
	DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768
		    "Write not finished because of unexpected condition"
		    " - follow on");

	/* determine the original cqr */
	cqr = previous_erp;

	while (cqr->refers != NULL) {
		cqr = cqr->refers;
	}

1769 1770 1771 1772 1773 1774 1775
	if (scsw_is_tm(&cqr->irb.scsw)) {
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
			      "32 bit sense, action 1B, update,"
			      " in transport mode - just retry");
		return previous_erp;
	}

L
Linus Torvalds 已提交
1776 1777
	/* for imprecise ending just do default erp */
	if (sense[1] & 0x01) {
S
Stefan Haberland 已提交
1778
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
1779 1780
			    "Imprecise ending is set - just retry");

1781
		previous_erp->status = DASD_CQR_FILLED;
L
Linus Torvalds 已提交
1782 1783 1784 1785 1786 1787

		return previous_erp;
	}

	/* determine the address of the CCW to be restarted */
	/* Imprecise ending is not set -> addr from IRB-SCSW */
1788
	cpa = previous_erp->irb.scsw.cmd.cpa;
L
Linus Torvalds 已提交
1789 1790

	if (cpa == 0) {
S
Stefan Haberland 已提交
1791 1792 1793 1794
		/* internal error 02 -
		   Unable to determine address of the CCW to be restarted */
		dev_err(&device->cdev->dev, "An error occurred in the DASD "
			"device driver, reason=%s\n", "02");
L
Linus Torvalds 已提交
1795 1796 1797 1798 1799 1800 1801 1802 1803

		previous_erp->status = DASD_CQR_FAILED;

		return previous_erp;
	}

	erp = previous_erp;

	/* update the LO with the new returned sense data  */
1804
	LO_data = erp->data + sizeof(struct DE_eckd_data);
L
Linus Torvalds 已提交
1805 1806

	if ((sense[3] == 0x01) && (LO_data[1] & 0x01)) {
S
Stefan Haberland 已提交
1807
		/* should not happen */
L
Linus Torvalds 已提交
1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839
		previous_erp->status = DASD_CQR_FAILED;

		return previous_erp;
	}

	if ((sense[7] & 0x3F) == 0x01) {
		/* operation code is WRITE DATA -> data area orientation */
		LO_data[0] = 0x81;

	} else if ((sense[7] & 0x3F) == 0x03) {
		/* operation code is FORMAT WRITE -> index orientation */
		LO_data[0] = 0xC3;

	} else {
		LO_data[0] = sense[7];	/* operation */
	}

	LO_data[1] = sense[8];	/* auxiliary */
	LO_data[2] = sense[9];
	LO_data[3] = sense[3];	/* count */
	LO_data[4] = sense[29];	/* seek_addr.cyl */
	LO_data[5] = sense[30];	/* seek_addr.cyl 2nd byte */
	LO_data[7] = sense[31];	/* seek_addr.head 2nd byte */

	memcpy(&(LO_data[8]), &(sense[11]), 8);

	/* TIC to the failed ccw */
	ccw = erp->cpaddr;	/* addr of DE ccw */
	ccw++;			/* addr of LE ccw */
	ccw++;			/* addr of TIC ccw */
	ccw->cda = cpa;

1840
	erp->status = DASD_CQR_FILLED;
L
Linus Torvalds 已提交
1841 1842 1843 1844 1845 1846

	return erp;

}				/* end dasd_3990_update_1B */

/*
1847
 * DASD_3990_ERP_COMPOUND_RETRY
L
Linus Torvalds 已提交
1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
 *
 * DESCRIPTION
 *   Handles the compound ERP action retry code.
 *   NOTE: At least one retry is done even if zero is specified
 *	   by the sense data. This makes enqueueing of the request
 *	   easier.
 *
 * PARAMETER
 *   sense		sense data of the actual error
 *   erp		pointer to the currently created ERP
 *
 * RETURN VALUES
 *   erp		modified ERP pointer
 *
 */
static void
dasd_3990_erp_compound_retry(struct dasd_ccw_req * erp, char *sense)
{

	switch (sense[25] & 0x03) {
	case 0x00:		/* no not retry */
		erp->retries = 1;
		break;

	case 0x01:		/* retry 2 times */
		erp->retries = 2;
		break;

	case 0x02:		/* retry 10 times */
		erp->retries = 10;
		break;

	case 0x03:		/* retry 256 times */
		erp->retries = 256;
		break;

	default:
		BUG();
	}

	erp->function = dasd_3990_erp_compound_retry;

}				/* end dasd_3990_erp_compound_retry */

/*
1893
 * DASD_3990_ERP_COMPOUND_PATH
L
Linus Torvalds 已提交
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912
 *
 * DESCRIPTION
 *   Handles the compound ERP action for retry on alternate
 *   channel path.
 *
 * PARAMETER
 *   sense		sense data of the actual error
 *   erp		pointer to the currently created ERP
 *
 * RETURN VALUES
 *   erp		modified ERP pointer
 *
 */
static void
dasd_3990_erp_compound_path(struct dasd_ccw_req * erp, char *sense)
{
	if (sense[25] & DASD_SENSE_BIT_3) {
		dasd_3990_erp_alternate_path(erp);

1913 1914
		if (erp->status == DASD_CQR_FAILED &&
		    !test_bit(DASD_CQR_VERIFY_PATH, &erp->flags)) {
1915
			/* reset the lpm and the status to be able to
L
Linus Torvalds 已提交
1916
			 * try further actions. */
1917
			erp->lpm = erp->startdev->path_data.opm;
1918
			erp->status = DASD_CQR_NEED_ERP;
L
Linus Torvalds 已提交
1919 1920 1921 1922 1923 1924 1925 1926
		}
	}

	erp->function = dasd_3990_erp_compound_path;

}				/* end dasd_3990_erp_compound_path */

/*
1927
 * DASD_3990_ERP_COMPOUND_CODE
L
Linus Torvalds 已提交
1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947
 *
 * DESCRIPTION
 *   Handles the compound ERP action for retry code.
 *
 * PARAMETER
 *   sense		sense data of the actual error
 *   erp		pointer to the currently created ERP
 *
 * RETURN VALUES
 *   erp		NEW ERP pointer
 *
 */
static struct dasd_ccw_req *
dasd_3990_erp_compound_code(struct dasd_ccw_req * erp, char *sense)
{

	if (sense[25] & DASD_SENSE_BIT_2) {

		switch (sense[28]) {
		case 0x17:
1948
			/* issue a Diagnostic Control command with an
1949
			 * Inhibit Write subcommand and controller modifier */
L
Linus Torvalds 已提交
1950 1951
			erp = dasd_3990_erp_DCTL(erp, 0x20);
			break;
1952

L
Linus Torvalds 已提交
1953 1954 1955
		case 0x25:
			/* wait for 5 seconds and retry again */
			erp->retries = 1;
1956

L
Linus Torvalds 已提交
1957 1958
			dasd_3990_erp_block_queue (erp, 5*HZ);
			break;
1959

L
Linus Torvalds 已提交
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972
		default:
			/* should not happen - continue */
			break;
		}
	}

	erp->function = dasd_3990_erp_compound_code;

	return erp;

}				/* end dasd_3990_erp_compound_code */

/*
1973
 * DASD_3990_ERP_COMPOUND_CONFIG
L
Linus Torvalds 已提交
1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
 *
 * DESCRIPTION
 *   Handles the compound ERP action for configruation
 *   dependent error.
 *   Note: duplex handling is not implemented (yet).
 *
 * PARAMETER
 *   sense		sense data of the actual error
 *   erp		pointer to the currently created ERP
 *
 * RETURN VALUES
 *   erp		modified ERP pointer
 *
 */
static void
dasd_3990_erp_compound_config(struct dasd_ccw_req * erp, char *sense)
{

	if ((sense[25] & DASD_SENSE_BIT_1) && (sense[26] & DASD_SENSE_BIT_2)) {

S
Stefan Haberland 已提交
1994 1995 1996
		/* set to suspended duplex state then restart
		   internal error 05 - Set device to suspended duplex state
		   should be done */
1997
		struct dasd_device *device = erp->startdev;
S
Stefan Haberland 已提交
1998 1999 2000
		dev_err(&device->cdev->dev,
			"An error occurred in the DASD device driver, "
			"reason=%s\n", "05");
L
Linus Torvalds 已提交
2001 2002 2003 2004 2005 2006 2007 2008

	}

	erp->function = dasd_3990_erp_compound_config;

}				/* end dasd_3990_erp_compound_config */

/*
2009
 * DASD_3990_ERP_COMPOUND
L
Linus Torvalds 已提交
2010 2011
 *
 * DESCRIPTION
2012
 *   Does the further compound program action if
L
Linus Torvalds 已提交
2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027
 *   compound retry was not successful.
 *
 * PARAMETER
 *   sense		sense data of the actual error
 *   erp		pointer to the current (failed) ERP
 *
 * RETURN VALUES
 *   erp		(additional) ERP pointer
 *
 */
static struct dasd_ccw_req *
dasd_3990_erp_compound(struct dasd_ccw_req * erp, char *sense)
{

	if ((erp->function == dasd_3990_erp_compound_retry) &&
2028
	    (erp->status == DASD_CQR_NEED_ERP)) {
L
Linus Torvalds 已提交
2029 2030 2031 2032 2033

		dasd_3990_erp_compound_path(erp, sense);
	}

	if ((erp->function == dasd_3990_erp_compound_path) &&
2034
	    (erp->status == DASD_CQR_NEED_ERP)) {
L
Linus Torvalds 已提交
2035 2036 2037 2038 2039

		erp = dasd_3990_erp_compound_code(erp, sense);
	}

	if ((erp->function == dasd_3990_erp_compound_code) &&
2040
	    (erp->status == DASD_CQR_NEED_ERP)) {
L
Linus Torvalds 已提交
2041 2042 2043 2044 2045

		dasd_3990_erp_compound_config(erp, sense);
	}

	/* if no compound action ERP specified, the request failed */
2046
	if (erp->status == DASD_CQR_NEED_ERP)
L
Linus Torvalds 已提交
2047 2048 2049 2050 2051 2052
		erp->status = DASD_CQR_FAILED;

	return erp;

}				/* end dasd_3990_erp_compound */

2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070
/*
 *DASD_3990_ERP_HANDLE_SIM
 *
 *DESCRIPTION
 *  inspects the SIM SENSE data and starts an appropriate action
 *
 * PARAMETER
 *   sense	   sense data of the actual error
 *
 * RETURN VALUES
 *   none
 */
void
dasd_3990_erp_handle_sim(struct dasd_device *device, char *sense)
{
	/* print message according to log or message to operator mode */
	if ((sense[24] & DASD_SIM_MSG_TO_OP) || (sense[1] & 0x10)) {
		/* print SIM SRC from RefCode */
S
Stefan Haberland 已提交
2071 2072
		dev_err(&device->cdev->dev, "SIM - SRC: "
			    "%02x%02x%02x%02x\n", sense[22],
2073 2074 2075
			    sense[23], sense[11], sense[12]);
	} else if (sense[24] & DASD_SIM_LOG) {
		/* print SIM SRC Refcode */
S
Stefan Haberland 已提交
2076 2077
		dev_warn(&device->cdev->dev, "log SIM - SRC: "
			    "%02x%02x%02x%02x\n", sense[22],
2078 2079 2080 2081
			    sense[23], sense[11], sense[12]);
	}
}

L
Linus Torvalds 已提交
2082
/*
2083
 * DASD_3990_ERP_INSPECT_32
L
Linus Torvalds 已提交
2084 2085 2086
 *
 * DESCRIPTION
 *   Does a detailed inspection of the 32 byte sense data
2087
 *   and sets up a related error recovery action.
L
Linus Torvalds 已提交
2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100
 *
 * PARAMETER
 *   sense		sense data of the actual error
 *   erp		pointer to the currently created default ERP
 *
 * RETURN VALUES
 *   erp_filled		pointer to the ERP
 *
 */
static struct dasd_ccw_req *
dasd_3990_erp_inspect_32(struct dasd_ccw_req * erp, char *sense)
{

2101
	struct dasd_device *device = erp->startdev;
L
Linus Torvalds 已提交
2102 2103 2104

	erp->function = dasd_3990_erp_inspect_32;

2105 2106 2107 2108
	/* check for SIM sense data */
	if ((sense[6] & DASD_SIM_SENSE) == DASD_SIM_SENSE)
		dasd_3990_erp_handle_sim(device, sense);

L
Linus Torvalds 已提交
2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119
	if (sense[25] & DASD_SENSE_BIT_0) {

		/* compound program action codes (byte25 bit 0 == '1') */
		dasd_3990_erp_compound_retry(erp, sense);

	} else {

		/* single program action codes (byte25 bit 0 == '0') */
		switch (sense[25]) {

		case 0x00:	/* success - use default ERP for retries */
S
Stefan Haberland 已提交
2120
			DBF_DEV_EVENT(DBF_DEBUG, device, "%s",
L
Linus Torvalds 已提交
2121 2122 2123 2124 2125
				    "ERP called for successful request"
				    " - just retry");
			break;

		case 0x01:	/* fatal error */
S
Stefan Haberland 已提交
2126 2127
			dev_err(&device->cdev->dev,
				    "ERP failed for the DASD\n");
L
Linus Torvalds 已提交
2128 2129 2130 2131 2132 2133 2134 2135 2136

			erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
			break;

		case 0x02:	/* intervention required */
		case 0x03:	/* intervention required during dual copy */
			erp = dasd_3990_erp_int_req(erp);
			break;

S
Stefan Haberland 已提交
2137 2138 2139 2140
		case 0x0F:  /* length mismatch during update write command
			       internal error 08 - update write command error*/
			dev_err(&device->cdev->dev, "An error occurred in the "
				"DASD device driver, reason=%s\n", "08");
L
Linus Torvalds 已提交
2141 2142 2143 2144 2145 2146 2147 2148

			erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
			break;

		case 0x10:  /* logging required for other channel program */
			erp = dasd_3990_erp_action_10_32(erp, sense);
			break;

S
Stefan Haberland 已提交
2149 2150 2151 2152 2153 2154
		case 0x15:	/* next track outside defined extend
				   internal error 07 - The next track is not
				   within the defined storage extent */
			dev_err(&device->cdev->dev,
				"An error occurred in the DASD device driver, "
				"reason=%s\n", "07");
L
Linus Torvalds 已提交
2155 2156 2157 2158 2159 2160 2161 2162 2163 2164

			erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
			break;

		case 0x1B:	/* unexpected condition during write */

			erp = dasd_3990_erp_action_1B_32(erp, sense);
			break;

		case 0x1C:	/* invalid data */
S
Stefan Haberland 已提交
2165
			dev_emerg(&device->cdev->dev,
L
Linus Torvalds 已提交
2166
				    "Data recovered during retry with PCI "
S
Stefan Haberland 已提交
2167
				    "fetch mode active\n");
L
Linus Torvalds 已提交
2168 2169 2170 2171 2172 2173 2174 2175

			/* not possible to handle this situation in Linux */
			panic
			    ("Invalid data - No way to inform application "
			     "about the possibly incorrect data");
			break;

		case 0x1D:	/* state-change pending */
S
Stefan Haberland 已提交
2176
			DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
2177 2178 2179 2180 2181 2182 2183
				    "A State change pending condition exists "
				    "for the subsystem or device");

			erp = dasd_3990_erp_action_4(erp, sense);
			break;

		case 0x1E:	/* busy */
S
Stefan Haberland 已提交
2184
			DBF_DEV_EVENT(DBF_WARNING, device, "%s",
L
Linus Torvalds 已提交
2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199
				    "Busy condition exists "
				    "for the subsystem or device");
                        erp = dasd_3990_erp_action_4(erp, sense);
			break;

		default:	/* all others errors - default erp  */
			break;
		}
	}

	return erp;

}				/* end dasd_3990_erp_inspect_32 */

/*
2200
 *****************************************************************************
2201
 * main ERP control functions (24 and 32 byte sense)
2202
 *****************************************************************************
L
Linus Torvalds 已提交
2203 2204
 */

2205 2206 2207 2208
/*
 * DASD_3990_ERP_CONTROL_CHECK
 *
 * DESCRIPTION
L
Lucas De Marchi 已提交
2209
 *   Does a generic inspection if a control check occurred and sets up
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223
 *   the related error recovery procedure
 *
 * PARAMETER
 *   erp		pointer to the currently created default ERP
 *
 * RETURN VALUES
 *   erp_filled		pointer to the erp
 */

static struct dasd_ccw_req *
dasd_3990_erp_control_check(struct dasd_ccw_req *erp)
{
	struct dasd_device *device = erp->startdev;

2224
	if (scsw_cstat(&erp->refers->irb.scsw) & (SCHN_STAT_INTF_CTRL_CHK
2225
					   | SCHN_STAT_CHN_CTRL_CHK)) {
S
Stefan Haberland 已提交
2226
		DBF_DEV_EVENT(DBF_WARNING, device, "%s",
2227 2228 2229 2230 2231 2232
			    "channel or interface control check");
		erp = dasd_3990_erp_action_4(erp, NULL);
	}
	return erp;
}

L
Linus Torvalds 已提交
2233 2234 2235 2236 2237 2238 2239 2240 2241 2242
/*
 * DASD_3990_ERP_INSPECT
 *
 * DESCRIPTION
 *   Does a detailed inspection for sense data by calling either
 *   the 24-byte or the 32-byte inspection routine.
 *
 * PARAMETER
 *   erp		pointer to the currently created default ERP
 * RETURN VALUES
2243
 *   erp_new		contens was possibly modified
L
Linus Torvalds 已提交
2244 2245
 */
static struct dasd_ccw_req *
2246
dasd_3990_erp_inspect(struct dasd_ccw_req *erp)
L
Linus Torvalds 已提交
2247 2248 2249
{

	struct dasd_ccw_req *erp_new = NULL;
2250
	char *sense;
L
Linus Torvalds 已提交
2251

L
Lucas De Marchi 已提交
2252
	/* if this problem occurred on an alias retry on base */
2253 2254 2255 2256
	erp_new = dasd_3990_erp_inspect_alias(erp);
	if (erp_new)
		return erp_new;

2257 2258 2259 2260 2261 2262
	/* sense data are located in the refers record of the
	 * already set up new ERP !
	 * check if concurrent sens is available
	 */
	sense = dasd_get_sense(&erp->refers->irb);
	if (!sense)
2263
		erp_new = dasd_3990_erp_control_check(erp);
L
Linus Torvalds 已提交
2264
	/* distinguish between 24 and 32 byte sense data */
2265
	else if (sense[27] & DASD_SENSE_BIT_0) {
L
Linus Torvalds 已提交
2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281

		/* inspect the 24 byte sense data */
		erp_new = dasd_3990_erp_inspect_24(erp, sense);

	} else {

		/* inspect the 32 byte sense data */
		erp_new = dasd_3990_erp_inspect_32(erp, sense);

	}	/* end distinguish between 24 and 32 byte sense data */

	return erp_new;
}

/*
 * DASD_3990_ERP_ADD_ERP
2282
 *
L
Linus Torvalds 已提交
2283
 * DESCRIPTION
L
Lucas De Marchi 已提交
2284
 *   This function adds an additional request block (ERP) to the head of
L
Linus Torvalds 已提交
2285
 *   the given cqr (or erp).
2286 2287 2288 2289 2290
 *   For a command mode cqr the erp is initialized as an default erp
 *   (retry TIC).
 *   For transport mode we make a copy of the original TCW (points to
 *   the original TCCB, TIDALs, etc.) but give it a fresh
 *   TSB so the original sense data will not be changed.
L
Linus Torvalds 已提交
2291 2292
 *
 * PARAMETER
2293
 *   cqr		head of the current ERP-chain (or single cqr if
L
Linus Torvalds 已提交
2294 2295 2296 2297
 *			first error)
 * RETURN VALUES
 *   erp		pointer to new ERP-chain head
 */
2298
static struct dasd_ccw_req *dasd_3990_erp_add_erp(struct dasd_ccw_req *cqr)
L
Linus Torvalds 已提交
2299 2300
{

2301
	struct dasd_device *device = cqr->startdev;
L
Linus Torvalds 已提交
2302 2303
	struct ccw1 *ccw;
	struct dasd_ccw_req *erp;
2304 2305 2306 2307 2308 2309
	int cplength, datasize;
	struct tcw *tcw;
	struct tsb *tsb;

	if (cqr->cpmode == 1) {
		cplength = 0;
2310 2311
		/* TCW needs to be 64 byte aligned, so leave enough room */
		datasize = 64 + sizeof(struct tcw) + sizeof(struct tsb);
2312 2313 2314 2315
	} else {
		cplength = 2;
		datasize = 0;
	}
L
Linus Torvalds 已提交
2316

2317 2318 2319
	/* allocate additional request block */
	erp = dasd_alloc_erp_request((char *) &cqr->magic,
				     cplength, datasize, device);
L
Linus Torvalds 已提交
2320 2321
	if (IS_ERR(erp)) {
                if (cqr->retries <= 0) {
S
Stefan Haberland 已提交
2322
			DBF_DEV_EVENT(DBF_ERR, device, "%s",
L
Linus Torvalds 已提交
2323 2324 2325 2326
				    "Unable to allocate ERP request");
			cqr->status = DASD_CQR_FAILED;
                        cqr->stopclk = get_clock ();
		} else {
S
Stefan Haberland 已提交
2327
			DBF_DEV_EVENT(DBF_ERR, device,
L
Linus Torvalds 已提交
2328 2329 2330
                                     "Unable to allocate ERP request "
				     "(%i retries left)",
                                     cqr->retries);
2331
			dasd_block_set_timer(device->block, (HZ << 3));
L
Linus Torvalds 已提交
2332
                }
2333
		return erp;
L
Linus Torvalds 已提交
2334 2335
	}

2336
	ccw = cqr->cpaddr;
2337 2338 2339
	if (cqr->cpmode == 1) {
		/* make a shallow copy of the original tcw but set new tsb */
		erp->cpmode = 1;
2340 2341
		erp->cpaddr = PTR_ALIGN(erp->data, 64);
		tcw = erp->cpaddr;
2342 2343 2344
		tsb = (struct tsb *) &tcw[1];
		*tcw = *((struct tcw *)cqr->cpaddr);
		tcw->tsb = (long)tsb;
2345 2346 2347
	} else if (ccw->cmd_code == DASD_ECKD_CCW_PSF) {
		/* PSF cannot be chained from NOOP/TIC */
		erp->cpaddr = cqr->cpaddr;
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357
	} else {
		/* initialize request with default TIC to current ERP/CQR */
		ccw = erp->cpaddr;
		ccw->cmd_code = CCW_CMD_NOOP;
		ccw->flags = CCW_FLAG_CC;
		ccw++;
		ccw->cmd_code = CCW_CMD_TIC;
		ccw->cda      = (long)(cqr->cpaddr);
	}

2358
	erp->flags = cqr->flags;
L
Linus Torvalds 已提交
2359 2360
	erp->function = dasd_3990_erp_add_erp;
	erp->refers   = cqr;
2361 2362 2363
	erp->startdev = device;
	erp->memdev   = device;
	erp->block    = cqr->block;
L
Linus Torvalds 已提交
2364
	erp->magic    = cqr->magic;
2365
	erp->expires  = cqr->expires;
L
Linus Torvalds 已提交
2366 2367 2368 2369 2370 2371 2372 2373
	erp->retries  = 256;
	erp->buildclk = get_clock();
	erp->status = DASD_CQR_FILLED;

	return erp;
}

/*
2374 2375
 * DASD_3990_ERP_ADDITIONAL_ERP
 *
L
Linus Torvalds 已提交
2376 2377 2378 2379 2380 2381
 * DESCRIPTION
 *   An additional ERP is needed to handle the current error.
 *   Add ERP to the head of the ERP-chain containing the ERP processing
 *   determined based on the sense data.
 *
 * PARAMETER
2382
 *   cqr		head of the current ERP-chain (or single cqr if
L
Linus Torvalds 已提交
2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396
 *			first error)
 *
 * RETURN VALUES
 *   erp		pointer to new ERP-chain head
 */
static struct dasd_ccw_req *
dasd_3990_erp_additional_erp(struct dasd_ccw_req * cqr)
{

	struct dasd_ccw_req *erp = NULL;

	/* add erp and initialize with default TIC */
	erp = dasd_3990_erp_add_erp(cqr);

2397 2398 2399
	if (IS_ERR(erp))
		return erp;

L
Linus Torvalds 已提交
2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420
	/* inspect sense, determine specific ERP if possible */
	if (erp != cqr) {

		erp = dasd_3990_erp_inspect(erp);
	}

	return erp;

}				/* end dasd_3990_erp_additional_erp */

/*
 * DASD_3990_ERP_ERROR_MATCH
 *
 * DESCRIPTION
 *   Check if the device status of the given cqr is the same.
 *   This means that the failed CCW and the relevant sense data
 *   must match.
 *   I don't distinguish between 24 and 32 byte sense because in case of
 *   24 byte sense byte 25 and 27 is set as well.
 *
 * PARAMETER
2421
 *   cqr1		first cqr, which will be compared with the
L
Linus Torvalds 已提交
2422 2423 2424 2425 2426 2427
 *   cqr2		second cqr.
 *
 * RETURN VALUES
 *   match		'boolean' for match found
 *			returns 1 if match found, otherwise 0.
 */
2428 2429
static int dasd_3990_erp_error_match(struct dasd_ccw_req *cqr1,
				     struct dasd_ccw_req *cqr2)
L
Linus Torvalds 已提交
2430
{
2431
	char *sense1, *sense2;
L
Linus Torvalds 已提交
2432

2433 2434
	if (cqr1->startdev != cqr2->startdev)
		return 0;
L
Linus Torvalds 已提交
2435

2436 2437
	sense1 = dasd_get_sense(&cqr1->irb);
	sense2 = dasd_get_sense(&cqr2->irb);
2438

2439 2440 2441 2442 2443 2444 2445 2446 2447
	/* one request has sense data, the other not -> no match, return 0 */
	if (!sense1 != !sense2)
		return 0;
	/* no sense data in both cases -> check cstat for IFCC */
	if (!sense1 && !sense2)	{
		if ((scsw_cstat(&cqr1->irb.scsw) & (SCHN_STAT_INTF_CTRL_CHK |
						    SCHN_STAT_CHN_CTRL_CHK)) ==
		    (scsw_cstat(&cqr2->irb.scsw) & (SCHN_STAT_INTF_CTRL_CHK |
						    SCHN_STAT_CHN_CTRL_CHK)))
2448 2449
			return 1; /* match with ifcc*/
	}
L
Linus Torvalds 已提交
2450
	/* check sense data; byte 0-2,25,27 */
2451 2452 2453 2454
	if (!(sense1 && sense2 &&
	      (memcmp(sense1, sense2, 3) == 0) &&
	      (sense1[27] == sense2[27]) &&
	      (sense1[25] == sense2[25]))) {
L
Linus Torvalds 已提交
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473

		return 0;	/* sense doesn't match */
	}

	return 1;		/* match */

}				/* end dasd_3990_erp_error_match */

/*
 * DASD_3990_ERP_IN_ERP
 *
 * DESCRIPTION
 *   check if the current error already happened before.
 *   quick exit if current cqr is not an ERP (cqr->refers=NULL)
 *
 * PARAMETER
 *   cqr		failed cqr (either original cqr or already an erp)
 *
 * RETURN VALUES
2474
 *   erp		erp-pointer to the already defined error
L
Linus Torvalds 已提交
2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509
 *			recovery procedure OR
 *			NULL if a 'new' error occurred.
 */
static struct dasd_ccw_req *
dasd_3990_erp_in_erp(struct dasd_ccw_req *cqr)
{

	struct dasd_ccw_req *erp_head = cqr,	/* save erp chain head */
	*erp_match = NULL;	/* save erp chain head */
	int match = 0;		/* 'boolean' for matching error found */

	if (cqr->refers == NULL) {	/* return if not in erp */
		return NULL;
	}

	/* check the erp/cqr chain for current error */
	do {
		match = dasd_3990_erp_error_match(erp_head, cqr->refers);
		erp_match = cqr;	/* save possible matching erp  */
		cqr = cqr->refers;	/* check next erp/cqr in queue */

	} while ((cqr->refers != NULL) && (!match));

	if (!match) {
		return NULL;	/* no match was found */
	}

	return erp_match;	/* return address of matching erp */

}				/* END dasd_3990_erp_in_erp */

/*
 * DASD_3990_ERP_FURTHER_ERP (24 & 32 byte sense)
 *
 * DESCRIPTION
2510
 *   No retry is left for the current ERP. Check what has to be done
L
Linus Torvalds 已提交
2511 2512
 *   with the ERP.
 *     - do further defined ERP action or
2513
 *     - wait for interrupt or
L
Linus Torvalds 已提交
2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525
 *     - exit with permanent error
 *
 * PARAMETER
 *   erp		ERP which is in progress with no retry left
 *
 * RETURN VALUES
 *   erp		modified/additional ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_further_erp(struct dasd_ccw_req *erp)
{

2526
	struct dasd_device *device = erp->startdev;
2527
	char *sense = dasd_get_sense(&erp->irb);
L
Linus Torvalds 已提交
2528 2529 2530 2531 2532 2533 2534 2535

	/* check for 24 byte sense ERP */
	if ((erp->function == dasd_3990_erp_bus_out) ||
	    (erp->function == dasd_3990_erp_action_1) ||
	    (erp->function == dasd_3990_erp_action_4)) {

		erp = dasd_3990_erp_action_1(erp);

2536 2537
	} else if (erp->function == dasd_3990_erp_action_1_sec) {
		erp = dasd_3990_erp_action_1_sec(erp);
L
Linus Torvalds 已提交
2538 2539 2540 2541 2542 2543
	} else if (erp->function == dasd_3990_erp_action_5) {

		/* retries have not been successful */
		/* prepare erp for retry on different channel path */
		erp = dasd_3990_erp_action_1(erp);

2544
		if (sense && !(sense[2] & DASD_SENSE_BIT_0)) {
L
Linus Torvalds 已提交
2545

2546
			/* issue a Diagnostic Control command with an
L
Linus Torvalds 已提交
2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565
			 * Inhibit Write subcommand */

			switch (sense[25]) {
			case 0x17:
			case 0x57:{	/* controller */
					erp = dasd_3990_erp_DCTL(erp, 0x20);
					break;
				}
			case 0x18:
			case 0x58:{	/* channel path */
					erp = dasd_3990_erp_DCTL(erp, 0x40);
					break;
				}
			case 0x19:
			case 0x59:{	/* storage director */
					erp = dasd_3990_erp_DCTL(erp, 0x80);
					break;
				}
			default:
S
Stefan Haberland 已提交
2566
				DBF_DEV_EVENT(DBF_WARNING, device,
L
Linus Torvalds 已提交
2567 2568 2569 2570 2571 2572 2573
					    "invalid subcommand modifier 0x%x "
					    "for Diagnostic Control Command",
					    sense[25]);
			}
		}

		/* check for 32 byte sense ERP */
2574 2575 2576 2577 2578
	} else if (sense &&
		   ((erp->function == dasd_3990_erp_compound_retry) ||
		    (erp->function == dasd_3990_erp_compound_path) ||
		    (erp->function == dasd_3990_erp_compound_code) ||
		    (erp->function == dasd_3990_erp_compound_config))) {
L
Linus Torvalds 已提交
2579 2580 2581 2582

		erp = dasd_3990_erp_compound(erp, sense);

	} else {
S
Stefan Haberland 已提交
2583 2584 2585 2586 2587 2588
		/*
		 * No retry left and no additional special handling
		 * necessary
		 */
		dev_err(&device->cdev->dev,
			"ERP %p has run out of retries and failed\n", erp);
L
Linus Torvalds 已提交
2589 2590 2591 2592 2593 2594 2595 2596 2597

		erp->status = DASD_CQR_FAILED;
	}

	return erp;

}				/* end dasd_3990_erp_further_erp */

/*
2598
 * DASD_3990_ERP_HANDLE_MATCH_ERP
L
Linus Torvalds 已提交
2599 2600 2601
 *
 * DESCRIPTION
 *   An error occurred again and an ERP has been detected which is already
2602
 *   used to handle this error (e.g. retries).
L
Linus Torvalds 已提交
2603 2604
 *   All prior ERP's are asumed to be successful and therefore removed
 *   from queue.
2605
 *   If retry counter of matching erp is already 0, it is checked if further
L
Linus Torvalds 已提交
2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620
 *   action is needed (besides retry) or if the ERP has failed.
 *
 * PARAMETER
 *   erp_head		first ERP in ERP-chain
 *   erp		ERP that handles the actual error.
 *			(matching erp)
 *
 * RETURN VALUES
 *   erp		modified/additional ERP
 */
static struct dasd_ccw_req *
dasd_3990_erp_handle_match_erp(struct dasd_ccw_req *erp_head,
			       struct dasd_ccw_req *erp)
{

2621
	struct dasd_device *device = erp_head->startdev;
L
Linus Torvalds 已提交
2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632
	struct dasd_ccw_req *erp_done = erp_head;	/* finished req */
	struct dasd_ccw_req *erp_free = NULL;	/* req to be freed */

	/* loop over successful ERPs and remove them from chanq */
	while (erp_done != erp) {

		if (erp_done == NULL)	/* end of chain reached */
			panic(PRINTK_HEADER "Programming error in ERP! The "
			      "original request was lost\n");

		/* remove the request from the device queue */
2633
		list_del(&erp_done->blocklist);
L
Linus Torvalds 已提交
2634 2635 2636 2637 2638

		erp_free = erp_done;
		erp_done = erp_done->refers;

		/* free the finished erp request */
2639
		dasd_free_erp_request(erp_free, erp_free->memdev);
L
Linus Torvalds 已提交
2640 2641 2642 2643 2644

	}			/* end while */

	if (erp->retries > 0) {

2645
		char *sense = dasd_get_sense(&erp->refers->irb);
L
Linus Torvalds 已提交
2646 2647

		/* check for special retries */
2648
		if (sense && erp->function == dasd_3990_erp_action_4) {
L
Linus Torvalds 已提交
2649 2650 2651

			erp = dasd_3990_erp_action_4(erp, sense);

2652 2653
		} else if (sense &&
			   erp->function == dasd_3990_erp_action_1B_32) {
L
Linus Torvalds 已提交
2654 2655 2656

			erp = dasd_3990_update_1B(erp, sense);

2657
		} else if (sense && erp->function == dasd_3990_erp_int_req) {
L
Linus Torvalds 已提交
2658 2659 2660 2661 2662

			erp = dasd_3990_erp_int_req(erp);

		} else {
			/* simple retry	  */
S
Stefan Haberland 已提交
2663
			DBF_DEV_EVENT(DBF_DEBUG, device,
L
Linus Torvalds 已提交
2664 2665 2666 2667
				    "%i retries left for erp %p",
				    erp->retries, erp);

			/* handle the request again... */
2668
			erp->status = DASD_CQR_FILLED;
L
Linus Torvalds 已提交
2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684
		}

	} else {
		/* no retry left - check for further necessary action	 */
		/* if no further actions, handle rest as permanent error */
		erp = dasd_3990_erp_further_erp(erp);
	}

	return erp;

}				/* end dasd_3990_erp_handle_match_erp */

/*
 * DASD_3990_ERP_ACTION
 *
 * DESCRIPTION
2685
 *   control routine for 3990 erp actions.
L
Linus Torvalds 已提交
2686 2687 2688 2689 2690 2691 2692 2693 2694
 *   Has to be called with the queue lock (namely the s390_irq_lock) acquired.
 *
 * PARAMETER
 *   cqr		failed cqr (either original cqr or already an erp)
 *
 * RETURN VALUES
 *   erp		erp-pointer to the head of the ERP action chain.
 *			This means:
 *			 - either a ptr to an additional ERP cqr or
2695
 *			 - the original given cqr (which's status might
L
Linus Torvalds 已提交
2696 2697 2698 2699 2700 2701
 *			   be modified)
 */
struct dasd_ccw_req *
dasd_3990_erp_action(struct dasd_ccw_req * cqr)
{
	struct dasd_ccw_req *erp = NULL;
2702
	struct dasd_device *device = cqr->startdev;
2703
	struct dasd_ccw_req *temp_erp = NULL;
L
Linus Torvalds 已提交
2704

2705 2706
	if (device->features & DASD_FEATURE_ERPLOG) {
		/* print current erp_chain */
S
Stefan Haberland 已提交
2707 2708
		dev_err(&device->cdev->dev,
			    "ERP chain at BEGINNING of ERP-ACTION\n");
L
Linus Torvalds 已提交
2709 2710 2711
		for (temp_erp = cqr;
		     temp_erp != NULL; temp_erp = temp_erp->refers) {

S
Stefan Haberland 已提交
2712 2713
			dev_err(&device->cdev->dev,
				    "ERP %p (%02x) refers to %p\n",
L
Linus Torvalds 已提交
2714 2715 2716 2717 2718
				    temp_erp, temp_erp->status,
				    temp_erp->refers);
		}
	}

C
Coly Li 已提交
2719
	/* double-check if current erp/cqr was successful */
2720 2721
	if ((scsw_cstat(&cqr->irb.scsw) == 0x00) &&
	    (scsw_dstat(&cqr->irb.scsw) ==
2722
	     (DEV_STAT_CHN_END | DEV_STAT_DEV_END))) {
L
Linus Torvalds 已提交
2723

S
Stefan Haberland 已提交
2724
		DBF_DEV_EVENT(DBF_DEBUG, device,
L
Linus Torvalds 已提交
2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738
			    "ERP called for successful request %p"
			    " - NO ERP necessary", cqr);

		cqr->status = DASD_CQR_DONE;

		return cqr;
	}

	/* check if error happened before */
	erp = dasd_3990_erp_in_erp(cqr);

	if (erp == NULL) {
		/* no matching erp found - set up erp */
		erp = dasd_3990_erp_additional_erp(cqr);
2739 2740
		if (IS_ERR(erp))
			return erp;
L
Linus Torvalds 已提交
2741 2742 2743 2744 2745
	} else {
		/* matching erp found - set all leading erp's to DONE */
		erp = dasd_3990_erp_handle_match_erp(cqr, erp);
	}

2746 2747
	if (device->features & DASD_FEATURE_ERPLOG) {
		/* print current erp_chain */
S
Stefan Haberland 已提交
2748 2749
		dev_err(&device->cdev->dev,
			    "ERP chain at END of ERP-ACTION\n");
L
Linus Torvalds 已提交
2750 2751 2752
		for (temp_erp = erp;
		     temp_erp != NULL; temp_erp = temp_erp->refers) {

S
Stefan Haberland 已提交
2753 2754
			dev_err(&device->cdev->dev,
				    "ERP %p (%02x) refers to %p\n",
L
Linus Torvalds 已提交
2755 2756 2757 2758 2759
				    temp_erp, temp_erp->status,
				    temp_erp->refers);
		}
	}

2760 2761 2762 2763 2764
	/* enqueue ERP request if it's a new one */
	if (list_empty(&erp->blocklist)) {
		cqr->status = DASD_CQR_IN_ERP;
		/* add erp request before the cqr */
		list_add_tail(&erp->blocklist, &cqr->blocklist);
L
Linus Torvalds 已提交
2765 2766
	}

S
Stefan Haberland 已提交
2767 2768


L
Linus Torvalds 已提交
2769 2770 2771
	return erp;

}				/* end dasd_3990_erp_action */