blob: 8305ab688d5766b5eaf9b694bd10b52cfc7ec150 [file] [log] [blame]
Horst Hummel138c0142006-06-29 14:58:12 +02001/*
Horst Hummel138c0142006-06-29 14:58:12 +02002 * Author(s)......: Horst Hummel <Horst.Hummel@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Bugreports.to..: <Linux390@de.ibm.com>
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02005 * Copyright IBM Corp. 2000, 2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Stefan Haberlandca99dab2009-09-11 10:28:30 +02009#define KMSG_COMPONENT "dasd-eckd"
Stefan Haberlandfc19f382009-03-26 15:23:49 +010010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/idals.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#define PRINTK_HEADER "dasd_erp(3990): "
15
16#include "dasd_int.h"
17#include "dasd_eckd.h"
18
19
20struct DCTL_data {
21 unsigned char subcommand; /* e.g Inhibit Write, Enable Write,... */
22 unsigned char modifier; /* Subcommand modifier */
23 unsigned short res; /* reserved */
24} __attribute__ ((packed));
25
26/*
Horst Hummel138c0142006-06-29 14:58:12 +020027 *****************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * SECTION ERP HANDLING
Horst Hummel138c0142006-06-29 14:58:12 +020029 *****************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
31/*
Horst Hummel138c0142006-06-29 14:58:12 +020032 *****************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * 24 and 32 byte sense ERP functions
Horst Hummel138c0142006-06-29 14:58:12 +020034 *****************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
37/*
Horst Hummel138c0142006-06-29 14:58:12 +020038 * DASD_3990_ERP_CLEANUP
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 *
40 * DESCRIPTION
41 * Removes the already build but not necessary ERP request and sets
42 * the status of the original cqr / erp to the given (final) status
43 *
44 * PARAMETER
45 * erp request to be blocked
Horst Hummel138c0142006-06-29 14:58:12 +020046 * final_status either DASD_CQR_DONE or DASD_CQR_FAILED
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 *
48 * RETURN VALUES
Horst Hummel138c0142006-06-29 14:58:12 +020049 * cqr original cqr
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 */
51static struct dasd_ccw_req *
52dasd_3990_erp_cleanup(struct dasd_ccw_req * erp, char final_status)
53{
54 struct dasd_ccw_req *cqr = erp->refers;
55
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010056 dasd_free_erp_request(erp, erp->memdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 cqr->status = final_status;
58 return cqr;
59
60} /* end dasd_3990_erp_cleanup */
61
62/*
Horst Hummel138c0142006-06-29 14:58:12 +020063 * DASD_3990_ERP_BLOCK_QUEUE
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 *
65 * DESCRIPTION
66 * Block the given device request queue to prevent from further
67 * processing until the started timer has expired or an related
68 * interrupt was received.
69 */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +010070static void dasd_3990_erp_block_queue(struct dasd_ccw_req *erp, int expires)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010073 struct dasd_device *device = erp->startdev;
74 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Stefan Haberlandfc19f382009-03-26 15:23:49 +010076 DBF_DEV_EVENT(DBF_INFO, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 "blocking request queue for %is", expires/HZ);
78
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010079 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +010080 dasd_device_set_stop_bits(device, DASD_STOPPED_PENDING);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010081 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
82 erp->status = DASD_CQR_FILLED;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +010083 if (erp->block)
84 dasd_block_set_timer(erp->block, expires);
85 else
86 dasd_device_set_timer(device, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89/*
Horst Hummel138c0142006-06-29 14:58:12 +020090 * DASD_3990_ERP_INT_REQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 *
92 * DESCRIPTION
93 * Handles 'Intervention Required' error.
94 * This means either device offline or not installed.
95 *
96 * PARAMETER
97 * erp current erp
98 * RETURN VALUES
99 * erp modified erp
100 */
101static struct dasd_ccw_req *
102dasd_3990_erp_int_req(struct dasd_ccw_req * erp)
103{
104
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100105 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 /* first time set initial retry counter and erp_function */
108 /* and retry once without blocking queue */
109 /* (this enables easier enqueing of the cqr) */
110 if (erp->function != dasd_3990_erp_int_req) {
111
112 erp->retries = 256;
113 erp->function = dasd_3990_erp_int_req;
114
115 } else {
116
117 /* issue a message and wait for 'device ready' interrupt */
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100118 dev_err(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 "is offline or not installed - "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100120 "INTERVENTION REQUIRED!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 dasd_3990_erp_block_queue(erp, 60*HZ);
123 }
124
125 return erp;
126
127} /* end dasd_3990_erp_int_req */
128
129/*
Horst Hummel138c0142006-06-29 14:58:12 +0200130 * DASD_3990_ERP_ALTERNATE_PATH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 *
132 * DESCRIPTION
133 * Repeat the operation on a different channel path.
134 * If all alternate paths have been tried, the request is posted with a
135 * permanent error.
136 *
137 * PARAMETER
138 * erp pointer to the current ERP
139 *
140 * RETURN VALUES
141 * erp modified pointer to the ERP
142 */
143static void
144dasd_3990_erp_alternate_path(struct dasd_ccw_req * erp)
145{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100146 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 __u8 opm;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100148 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* try alternate valid path */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100151 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 opm = ccw_device_get_path_mask(device->cdev);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100153 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (erp->lpm == 0)
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100155 erp->lpm = device->path_data.opm &
156 ~(erp->irb.esw.esw0.sublog.lpum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 else
158 erp->lpm &= ~(erp->irb.esw.esw0.sublog.lpum);
159
160 if ((erp->lpm & opm) != 0x00) {
161
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100162 DBF_DEV_EVENT(DBF_WARNING, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 "try alternate lpm=%x (lpum=%x / opm=%x)",
164 erp->lpm, erp->irb.esw.esw0.sublog.lpum, opm);
165
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100166 /* reset status to submit the request again... */
167 erp->status = DASD_CQR_FILLED;
Stefan Haberland6c5f57c2008-02-05 16:50:46 +0100168 erp->retries = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 } else {
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100170 dev_err(&device->cdev->dev,
171 "The DASD cannot be reached on any path (lpum=%x"
172 "/opm=%x)\n", erp->irb.esw.esw0.sublog.lpum, opm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 /* post request with permanent error */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100175 erp->status = DASD_CQR_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177} /* end dasd_3990_erp_alternate_path */
178
179/*
180 * DASD_3990_ERP_DCTL
181 *
182 * DESCRIPTION
Horst Hummel138c0142006-06-29 14:58:12 +0200183 * Setup cqr to do the Diagnostic Control (DCTL) command with an
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * Inhibit Write subcommand (0x20) and the given modifier.
185 *
186 * PARAMETER
187 * erp pointer to the current (failed) ERP
188 * modifier subcommand modifier
Horst Hummel138c0142006-06-29 14:58:12 +0200189 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * RETURN VALUES
Horst Hummel138c0142006-06-29 14:58:12 +0200191 * dctl_cqr pointer to NEW dctl_cqr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 *
193 */
194static struct dasd_ccw_req *
195dasd_3990_erp_DCTL(struct dasd_ccw_req * erp, char modifier)
196{
197
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100198 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct DCTL_data *DCTL_data;
200 struct ccw1 *ccw;
201 struct dasd_ccw_req *dctl_cqr;
202
203 dctl_cqr = dasd_alloc_erp_request((char *) &erp->magic, 1,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100204 sizeof(struct DCTL_data),
205 device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (IS_ERR(dctl_cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100207 dev_err(&device->cdev->dev,
208 "Unable to allocate DCTL-CQR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 erp->status = DASD_CQR_FAILED;
210 return erp;
211 }
212
213 DCTL_data = dctl_cqr->data;
214
215 DCTL_data->subcommand = 0x02; /* Inhibit Write */
216 DCTL_data->modifier = modifier;
217
218 ccw = dctl_cqr->cpaddr;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100219 memset(ccw, 0, sizeof(struct ccw1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 ccw->cmd_code = CCW_CMD_DCTL;
221 ccw->count = 4;
222 ccw->cda = (__u32)(addr_t) DCTL_data;
Stefan Weinhuber7ea8d322010-10-25 16:10:08 +0200223 dctl_cqr->flags = erp->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 dctl_cqr->function = dasd_3990_erp_DCTL;
225 dctl_cqr->refers = erp;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100226 dctl_cqr->startdev = device;
227 dctl_cqr->memdev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 dctl_cqr->magic = erp->magic;
229 dctl_cqr->expires = 5 * 60 * HZ;
230 dctl_cqr->retries = 2;
231
Heiko Carstens1aae0562013-01-30 09:49:40 +0100232 dctl_cqr->buildclk = get_tod_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 dctl_cqr->status = DASD_CQR_FILLED;
235
236 return dctl_cqr;
237
238} /* end dasd_3990_erp_DCTL */
239
240/*
Horst Hummel138c0142006-06-29 14:58:12 +0200241 * DASD_3990_ERP_ACTION_1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 *
243 * DESCRIPTION
244 * Setup ERP to do the ERP action 1 (see Reference manual).
245 * Repeat the operation on a different channel path.
Stefan Weinhubereb6e1992009-12-07 12:51:51 +0100246 * As deviation from the recommended recovery action, we reset the path mask
247 * after we have tried each path and go through all paths a second time.
248 * This will cover situations where only one path at a time is actually down,
249 * but all paths fail and recover just with the same sequence and timing as
250 * we try to use them (flapping links).
251 * If all alternate paths have been tried twice, the request is posted with
252 * a permanent error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 *
254 * PARAMETER
255 * erp pointer to the current ERP
256 *
257 * RETURN VALUES
258 * erp pointer to the ERP
259 *
260 */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +0100261static struct dasd_ccw_req *dasd_3990_erp_action_1_sec(struct dasd_ccw_req *erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Stefan Weinhubereb6e1992009-12-07 12:51:51 +0100263 erp->function = dasd_3990_erp_action_1_sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 dasd_3990_erp_alternate_path(erp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return erp;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +0100266}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Stefan Weinhubereb6e1992009-12-07 12:51:51 +0100268static struct dasd_ccw_req *dasd_3990_erp_action_1(struct dasd_ccw_req *erp)
269{
270 erp->function = dasd_3990_erp_action_1;
271 dasd_3990_erp_alternate_path(erp);
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100272 if (erp->status == DASD_CQR_FAILED &&
273 !test_bit(DASD_CQR_VERIFY_PATH, &erp->flags)) {
Stefan Weinhubereb6e1992009-12-07 12:51:51 +0100274 erp->status = DASD_CQR_FILLED;
275 erp->retries = 10;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100276 erp->lpm = erp->startdev->path_data.opm;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +0100277 erp->function = dasd_3990_erp_action_1_sec;
278 }
279 return erp;
280} /* end dasd_3990_erp_action_1(b) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282/*
Horst Hummel138c0142006-06-29 14:58:12 +0200283 * DASD_3990_ERP_ACTION_4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *
285 * DESCRIPTION
286 * Setup ERP to do the ERP action 4 (see Reference manual).
287 * Set the current request to PENDING to block the CQR queue for that device
288 * until the state change interrupt appears.
289 * Use a timer (20 seconds) to retry the cqr if the interrupt is still
290 * missing.
291 *
292 * PARAMETER
293 * sense sense data of the actual error
294 * erp pointer to the current ERP
295 *
296 * RETURN VALUES
297 * erp pointer to the ERP
298 *
299 */
300static struct dasd_ccw_req *
301dasd_3990_erp_action_4(struct dasd_ccw_req * erp, char *sense)
302{
303
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100304 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* first time set initial retry counter and erp_function */
307 /* and retry once without waiting for state change pending */
308 /* interrupt (this enables easier enqueing of the cqr) */
309 if (erp->function != dasd_3990_erp_action_4) {
310
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100311 DBF_DEV_EVENT(DBF_INFO, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 "dasd_3990_erp_action_4: first time retry");
313
314 erp->retries = 256;
315 erp->function = dasd_3990_erp_action_4;
316
317 } else {
Stefan Haberland6c5f57c2008-02-05 16:50:46 +0100318 if (sense && (sense[25] == 0x1D)) { /* state change pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100320 DBF_DEV_EVENT(DBF_INFO, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 "waiting for state change pending "
322 "interrupt, %d retries left",
323 erp->retries);
Horst Hummel138c0142006-06-29 14:58:12 +0200324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 dasd_3990_erp_block_queue(erp, 30*HZ);
326
Stefan Haberland6c5f57c2008-02-05 16:50:46 +0100327 } else if (sense && (sense[25] == 0x1E)) { /* busy */
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100328 DBF_DEV_EVENT(DBF_INFO, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 "busy - redriving request later, "
330 "%d retries left",
331 erp->retries);
332 dasd_3990_erp_block_queue(erp, HZ);
333 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* no state change pending - retry */
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100335 DBF_DEV_EVENT(DBF_INFO, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 "redriving request immediately, "
Horst Hummel138c0142006-06-29 14:58:12 +0200337 "%d retries left",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 erp->retries);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100339 erp->status = DASD_CQR_FILLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341 }
342
343 return erp;
344
345} /* end dasd_3990_erp_action_4 */
346
347/*
Horst Hummel138c0142006-06-29 14:58:12 +0200348 *****************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * 24 byte sense ERP functions (only)
Horst Hummel138c0142006-06-29 14:58:12 +0200350 *****************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
352
353/*
Horst Hummel138c0142006-06-29 14:58:12 +0200354 * DASD_3990_ERP_ACTION_5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 *
356 * DESCRIPTION
357 * Setup ERP to do the ERP action 5 (see Reference manual).
358 * NOTE: Further handling is done in xxx_further_erp after the retries.
359 *
360 * PARAMETER
361 * erp pointer to the current ERP
362 *
363 * RETURN VALUES
364 * erp pointer to the ERP
365 *
366 */
367static struct dasd_ccw_req *
368dasd_3990_erp_action_5(struct dasd_ccw_req * erp)
369{
370
371 /* first of all retry */
372 erp->retries = 10;
373 erp->function = dasd_3990_erp_action_5;
374
375 return erp;
376
377} /* end dasd_3990_erp_action_5 */
378
379/*
380 * DASD_3990_HANDLE_ENV_DATA
381 *
382 * DESCRIPTION
383 * Handles 24 byte 'Environmental data present'.
384 * Does a analysis of the sense data (message Format)
385 * and prints the error messages.
386 *
387 * PARAMETER
388 * sense current sense data
Horst Hummel138c0142006-06-29 14:58:12 +0200389 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * RETURN VALUES
391 * void
392 */
393static void
394dasd_3990_handle_env_data(struct dasd_ccw_req * erp, char *sense)
395{
396
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100397 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 char msg_format = (sense[7] & 0xF0);
399 char msg_no = (sense[7] & 0x0F);
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100400 char errorstring[ERRORLENGTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 switch (msg_format) {
403 case 0x00: /* Format 0 - Program or System Checks */
404
405 if (sense[1] & 0x10) { /* check message to operator bit */
406
407 switch (msg_no) {
408 case 0x00: /* No Message */
409 break;
410 case 0x01:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100411 dev_warn(&device->cdev->dev,
412 "FORMAT 0 - Invalid Command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 break;
414 case 0x02:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100415 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 "FORMAT 0 - Invalid Command "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100417 "Sequence\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 break;
419 case 0x03:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100420 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 "FORMAT 0 - CCW Count less than "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100422 "required\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 break;
424 case 0x04:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100425 dev_warn(&device->cdev->dev,
426 "FORMAT 0 - Invalid Parameter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 break;
428 case 0x05:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100429 dev_warn(&device->cdev->dev,
430 "FORMAT 0 - Diagnostic of Special"
431 " Command Violates File Mask\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 break;
433 case 0x07:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100434 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 "FORMAT 0 - Channel Returned with "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100436 "Incorrect retry CCW\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 break;
438 case 0x08:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100439 dev_warn(&device->cdev->dev,
440 "FORMAT 0 - Reset Notification\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 break;
442 case 0x09:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100443 dev_warn(&device->cdev->dev,
444 "FORMAT 0 - Storage Path Restart\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 break;
446 case 0x0A:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100447 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 "FORMAT 0 - Channel requested "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100449 "... %02x\n", sense[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 break;
451 case 0x0B:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100452 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 "FORMAT 0 - Invalid Defective/"
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100454 "Alternate Track Pointer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 break;
456 case 0x0C:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100457 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 "FORMAT 0 - DPS Installation "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100459 "Check\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 break;
461 case 0x0E:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100462 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 "FORMAT 0 - Command Invalid on "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100464 "Secondary Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 break;
466 case 0x0F:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100467 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 "FORMAT 0 - Status Not As "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100469 "Required: reason %02x\n",
470 sense[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 break;
472 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100473 dev_warn(&device->cdev->dev,
474 "FORMAT 0 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 } else {
477 switch (msg_no) {
478 case 0x00: /* No Message */
479 break;
480 case 0x01:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100481 dev_warn(&device->cdev->dev,
482 "FORMAT 0 - Device Error "
483 "Source\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 break;
485 case 0x02:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100486 dev_warn(&device->cdev->dev,
487 "FORMAT 0 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 break;
489 case 0x03:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100490 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 "FORMAT 0 - Device Fenced - "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100492 "device = %02x\n", sense[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
494 case 0x04:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100495 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 "FORMAT 0 - Data Pinned for "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100497 "Device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 break;
499 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100500 dev_warn(&device->cdev->dev,
501 "FORMAT 0 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503 }
504 break;
505
506 case 0x10: /* Format 1 - Device Equipment Checks */
507 switch (msg_no) {
508 case 0x00: /* No Message */
509 break;
510 case 0x01:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100511 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 "FORMAT 1 - Device Status 1 not as "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100513 "expected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515 case 0x03:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100516 dev_warn(&device->cdev->dev,
517 "FORMAT 1 - Index missing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 break;
519 case 0x04:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100520 dev_warn(&device->cdev->dev,
521 "FORMAT 1 - Interruption cannot be "
522 "reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 break;
524 case 0x05:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100525 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 "FORMAT 1 - Device did not respond to "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100527 "selection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 break;
529 case 0x06:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100530 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 "FORMAT 1 - Device check-2 error or Set "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100532 "Sector is not complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 break;
534 case 0x07:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100535 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 "FORMAT 1 - Head address does not "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100537 "compare\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 break;
539 case 0x08:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100540 dev_warn(&device->cdev->dev,
541 "FORMAT 1 - Device status 1 not valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 break;
543 case 0x09:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100544 dev_warn(&device->cdev->dev,
545 "FORMAT 1 - Device not ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 break;
547 case 0x0A:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100548 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 "FORMAT 1 - Track physical address did "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100550 "not compare\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 break;
552 case 0x0B:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100553 dev_warn(&device->cdev->dev,
554 "FORMAT 1 - Missing device address bit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 break;
556 case 0x0C:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100557 dev_warn(&device->cdev->dev,
558 "FORMAT 1 - Drive motor switch is off\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
560 case 0x0D:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100561 dev_warn(&device->cdev->dev,
562 "FORMAT 1 - Seek incomplete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 break;
564 case 0x0E:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100565 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 "FORMAT 1 - Cylinder address did not "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100567 "compare\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 break;
569 case 0x0F:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100570 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 "FORMAT 1 - Offset active cannot be "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100572 "reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 break;
574 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100575 dev_warn(&device->cdev->dev,
576 "FORMAT 1 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578 break;
579
580 case 0x20: /* Format 2 - 3990 Equipment Checks */
581 switch (msg_no) {
582 case 0x08:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100583 dev_warn(&device->cdev->dev,
584 "FORMAT 2 - 3990 check-2 error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 break;
586 case 0x0E:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100587 dev_warn(&device->cdev->dev,
588 "FORMAT 2 - Support facility errors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 break;
590 case 0x0F:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100591 dev_warn(&device->cdev->dev,
592 "FORMAT 2 - Microcode detected error "
593 "%02x\n",
594 sense[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 break;
596 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100597 dev_warn(&device->cdev->dev,
598 "FORMAT 2 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600 break;
601
602 case 0x30: /* Format 3 - 3990 Control Checks */
603 switch (msg_no) {
604 case 0x0F:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100605 dev_warn(&device->cdev->dev,
606 "FORMAT 3 - Allegiance terminated\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 break;
608 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100609 dev_warn(&device->cdev->dev,
610 "FORMAT 3 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612 break;
613
614 case 0x40: /* Format 4 - Data Checks */
615 switch (msg_no) {
616 case 0x00:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100617 dev_warn(&device->cdev->dev,
618 "FORMAT 4 - Home address area error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 break;
620 case 0x01:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100621 dev_warn(&device->cdev->dev,
622 "FORMAT 4 - Count area error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 break;
624 case 0x02:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100625 dev_warn(&device->cdev->dev,
626 "FORMAT 4 - Key area error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 break;
628 case 0x03:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100629 dev_warn(&device->cdev->dev,
630 "FORMAT 4 - Data area error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
632 case 0x04:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100633 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 "FORMAT 4 - No sync byte in home address "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100635 "area\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 break;
637 case 0x05:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100638 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 "FORMAT 4 - No sync byte in count address "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100640 "area\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 break;
642 case 0x06:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100643 dev_warn(&device->cdev->dev,
644 "FORMAT 4 - No sync byte in key area\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 break;
646 case 0x07:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100647 dev_warn(&device->cdev->dev,
648 "FORMAT 4 - No sync byte in data area\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 break;
650 case 0x08:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100651 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 "FORMAT 4 - Home address area error; "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100653 "offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 break;
655 case 0x09:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100656 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 "FORMAT 4 - Count area error; offset "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100658 "active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 break;
660 case 0x0A:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100661 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 "FORMAT 4 - Key area error; offset "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100663 "active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 break;
665 case 0x0B:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100666 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 "FORMAT 4 - Data area error; "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100668 "offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 break;
670 case 0x0C:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100671 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 "FORMAT 4 - No sync byte in home "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100673 "address area; offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 break;
675 case 0x0D:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100676 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 "FORMAT 4 - No syn byte in count "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100678 "address area; offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 break;
680 case 0x0E:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100681 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 "FORMAT 4 - No sync byte in key area; "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100683 "offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 break;
685 case 0x0F:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100686 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 "FORMAT 4 - No syn byte in data area; "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100688 "offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 break;
690 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100691 dev_warn(&device->cdev->dev,
692 "FORMAT 4 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694 break;
695
696 case 0x50: /* Format 5 - Data Check with displacement information */
697 switch (msg_no) {
698 case 0x00:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100699 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 "FORMAT 5 - Data Check in the "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100701 "home address area\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 break;
703 case 0x01:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100704 dev_warn(&device->cdev->dev,
705 "FORMAT 5 - Data Check in the count "
706 "area\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 break;
708 case 0x02:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100709 dev_warn(&device->cdev->dev,
710 "FORMAT 5 - Data Check in the key area\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 break;
712 case 0x03:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100713 dev_warn(&device->cdev->dev,
714 "FORMAT 5 - Data Check in the data "
715 "area\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 break;
717 case 0x08:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100718 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 "FORMAT 5 - Data Check in the "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100720 "home address area; offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
722 case 0x09:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100723 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 "FORMAT 5 - Data Check in the count area; "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100725 "offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 break;
727 case 0x0A:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100728 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 "FORMAT 5 - Data Check in the key area; "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100730 "offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 break;
732 case 0x0B:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100733 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 "FORMAT 5 - Data Check in the data area; "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100735 "offset active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 break;
737 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100738 dev_warn(&device->cdev->dev,
739 "FORMAT 5 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741 break;
742
743 case 0x60: /* Format 6 - Usage Statistics/Overrun Errors */
744 switch (msg_no) {
745 case 0x00:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100746 dev_warn(&device->cdev->dev,
747 "FORMAT 6 - Overrun on channel A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 break;
749 case 0x01:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100750 dev_warn(&device->cdev->dev,
751 "FORMAT 6 - Overrun on channel B\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 break;
753 case 0x02:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100754 dev_warn(&device->cdev->dev,
755 "FORMAT 6 - Overrun on channel C\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 break;
757 case 0x03:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100758 dev_warn(&device->cdev->dev,
759 "FORMAT 6 - Overrun on channel D\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 break;
761 case 0x04:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100762 dev_warn(&device->cdev->dev,
763 "FORMAT 6 - Overrun on channel E\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 break;
765 case 0x05:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100766 dev_warn(&device->cdev->dev,
767 "FORMAT 6 - Overrun on channel F\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 break;
769 case 0x06:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100770 dev_warn(&device->cdev->dev,
771 "FORMAT 6 - Overrun on channel G\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 break;
773 case 0x07:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100774 dev_warn(&device->cdev->dev,
775 "FORMAT 6 - Overrun on channel H\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 break;
777 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100778 dev_warn(&device->cdev->dev,
779 "FORMAT 6 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781 break;
782
783 case 0x70: /* Format 7 - Device Connection Control Checks */
784 switch (msg_no) {
785 case 0x00:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100786 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 "FORMAT 7 - RCC initiated by a connection "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100788 "check alert\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 break;
790 case 0x01:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100791 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 "FORMAT 7 - RCC 1 sequence not "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100793 "successful\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 break;
795 case 0x02:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100796 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 "FORMAT 7 - RCC 1 and RCC 2 sequences not "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100798 "successful\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 break;
800 case 0x03:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100801 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 "FORMAT 7 - Invalid tag-in during "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100803 "selection sequence\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 break;
805 case 0x04:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100806 dev_warn(&device->cdev->dev,
807 "FORMAT 7 - extra RCC required\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 break;
809 case 0x05:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100810 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 "FORMAT 7 - Invalid DCC selection "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100812 "response or timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 break;
814 case 0x06:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100815 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 "FORMAT 7 - Missing end operation; device "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100817 "transfer complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 break;
819 case 0x07:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100820 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 "FORMAT 7 - Missing end operation; device "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100822 "transfer incomplete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 break;
824 case 0x08:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100825 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 "FORMAT 7 - Invalid tag-in for an "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100827 "immediate command sequence\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 break;
829 case 0x09:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100830 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 "FORMAT 7 - Invalid tag-in for an "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100832 "extended command sequence\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 break;
834 case 0x0A:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100835 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 "FORMAT 7 - 3990 microcode time out when "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100837 "stopping selection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 break;
839 case 0x0B:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100840 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 "FORMAT 7 - No response to selection "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100842 "after a poll interruption\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 break;
844 case 0x0C:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100845 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 "FORMAT 7 - Permanent path error (DASD "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100847 "controller not available)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 break;
849 case 0x0D:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100850 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 "FORMAT 7 - DASD controller not available"
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100852 " on disconnected command chain\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 break;
854 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100855 dev_warn(&device->cdev->dev,
856 "FORMAT 7 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858 break;
859
860 case 0x80: /* Format 8 - Additional Device Equipment Checks */
861 switch (msg_no) {
862 case 0x00: /* No Message */
863 case 0x01:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100864 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 "FORMAT 8 - Error correction code "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100866 "hardware fault\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 break;
868 case 0x03:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100869 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 "FORMAT 8 - Unexpected end operation "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100871 "response code\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 break;
873 case 0x04:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100874 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 "FORMAT 8 - End operation with transfer "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100876 "count not zero\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 break;
878 case 0x05:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100879 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 "FORMAT 8 - End operation with transfer "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100881 "count zero\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 break;
883 case 0x06:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100884 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 "FORMAT 8 - DPS checks after a system "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100886 "reset or selective reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 break;
888 case 0x07:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100889 dev_warn(&device->cdev->dev,
890 "FORMAT 8 - DPS cannot be filled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 break;
892 case 0x08:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100893 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 "FORMAT 8 - Short busy time-out during "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100895 "device selection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 break;
897 case 0x09:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100898 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 "FORMAT 8 - DASD controller failed to "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100900 "set or reset the long busy latch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 break;
902 case 0x0A:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100903 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 "FORMAT 8 - No interruption from device "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100905 "during a command chain\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 break;
907 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100908 dev_warn(&device->cdev->dev,
909 "FORMAT 8 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911 break;
912
913 case 0x90: /* Format 9 - Device Read, Write, and Seek Checks */
914 switch (msg_no) {
915 case 0x00:
916 break; /* No Message */
917 case 0x06:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100918 dev_warn(&device->cdev->dev,
919 "FORMAT 9 - Device check-2 error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 break;
921 case 0x07:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100922 dev_warn(&device->cdev->dev,
923 "FORMAT 9 - Head address did not "
924 "compare\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 break;
926 case 0x0A:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100927 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 "FORMAT 9 - Track physical address did "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100929 "not compare while oriented\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 break;
931 case 0x0E:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100932 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 "FORMAT 9 - Cylinder address did not "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100934 "compare\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 break;
936 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100937 dev_warn(&device->cdev->dev,
938 "FORMAT 9 - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940 break;
941
942 case 0xF0: /* Format F - Cache Storage Checks */
943 switch (msg_no) {
944 case 0x00:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100945 dev_warn(&device->cdev->dev,
946 "FORMAT F - Operation Terminated\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 break;
948 case 0x01:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100949 dev_warn(&device->cdev->dev,
950 "FORMAT F - Subsystem Processing Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 break;
952 case 0x02:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100953 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 "FORMAT F - Cache or nonvolatile storage "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100955 "equipment failure\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 break;
957 case 0x04:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100958 dev_warn(&device->cdev->dev,
959 "FORMAT F - Caching terminated\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 break;
961 case 0x06:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100962 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 "FORMAT F - Cache fast write access not "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100964 "authorized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 break;
966 case 0x07:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100967 dev_warn(&device->cdev->dev,
968 "FORMAT F - Track format incorrect\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 break;
970 case 0x09:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100971 dev_warn(&device->cdev->dev,
972 "FORMAT F - Caching reinitiated\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 break;
974 case 0x0A:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100975 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 "FORMAT F - Nonvolatile storage "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100977 "terminated\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 break;
979 case 0x0B:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100980 dev_warn(&device->cdev->dev,
981 "FORMAT F - Volume is suspended duplex\n");
Stefan Weinhuber20c64462006-03-24 03:15:25 -0800982 /* call extended error reporting (EER) */
983 dasd_eer_write(device, erp->refers,
984 DASD_EER_PPRCSUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 break;
986 case 0x0C:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100987 dev_warn(&device->cdev->dev,
988 "FORMAT F - Subsystem status cannot be "
989 "determined\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 break;
991 case 0x0D:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100992 dev_warn(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 "FORMAT F - Caching status reset to "
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100994 "default\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 break;
996 case 0x0E:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100997 dev_warn(&device->cdev->dev,
998 "FORMAT F - DASD Fast Write inhibited\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 break;
1000 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001001 dev_warn(&device->cdev->dev,
1002 "FORMAT D - Reserved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004 break;
1005
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001006 default: /* unknown message format - should not happen
1007 internal error 03 - unknown message format */
1008 snprintf(errorstring, ERRORLENGTH, "03 %x02", msg_format);
1009 dev_err(&device->cdev->dev,
1010 "An error occurred in the DASD device driver, "
1011 "reason=%s\n", errorstring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 break;
1013 } /* end switch message format */
1014
1015} /* end dasd_3990_handle_env_data */
1016
1017/*
1018 * DASD_3990_ERP_COM_REJ
1019 *
1020 * DESCRIPTION
1021 * Handles 24 byte 'Command Reject' error.
1022 *
1023 * PARAMETER
1024 * erp current erp_head
1025 * sense current sense data
Horst Hummel138c0142006-06-29 14:58:12 +02001026 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 * RETURN VALUES
Horst Hummel138c0142006-06-29 14:58:12 +02001028 * erp 'new' erp_head - pointer to new ERP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
1030static struct dasd_ccw_req *
1031dasd_3990_erp_com_rej(struct dasd_ccw_req * erp, char *sense)
1032{
1033
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001034 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 erp->function = dasd_3990_erp_com_rej;
1037
1038 /* env data present (ACTION 10 - retry should work) */
1039 if (sense[2] & SNS2_ENV_DATA_PRESENT) {
1040
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001041 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 "Command Reject - environmental data present");
1043
1044 dasd_3990_handle_env_data(erp, sense);
1045
1046 erp->retries = 5;
1047
Stefan Weinhuber33b62a32010-03-08 12:26:24 +01001048 } else if (sense[1] & SNS1_WRITE_INHIBITED) {
1049 dev_err(&device->cdev->dev, "An I/O request was rejected"
1050 " because writing is inhibited\n");
1051 erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 } else {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001053 /* fatal error - set status to FAILED
1054 internal error 09 - Command Reject */
1055 dev_err(&device->cdev->dev, "An error occurred in the DASD "
1056 "device driver, reason=%s\n", "09");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
1059 }
1060
1061 return erp;
1062
1063} /* end dasd_3990_erp_com_rej */
1064
1065/*
Horst Hummel138c0142006-06-29 14:58:12 +02001066 * DASD_3990_ERP_BUS_OUT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 *
1068 * DESCRIPTION
1069 * Handles 24 byte 'Bus Out Parity Check' error.
1070 *
1071 * PARAMETER
1072 * erp current erp_head
1073 * RETURN VALUES
1074 * erp new erp_head - pointer to new ERP
1075 */
1076static struct dasd_ccw_req *
1077dasd_3990_erp_bus_out(struct dasd_ccw_req * erp)
1078{
1079
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001080 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 /* first time set initial retry counter and erp_function */
1083 /* and retry once without blocking queue */
1084 /* (this enables easier enqueing of the cqr) */
1085 if (erp->function != dasd_3990_erp_bus_out) {
1086 erp->retries = 256;
1087 erp->function = dasd_3990_erp_bus_out;
1088
1089 } else {
1090
1091 /* issue a message and wait for 'device ready' interrupt */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001092 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 "bus out parity error or BOPC requested by "
1094 "channel");
1095
1096 dasd_3990_erp_block_queue(erp, 60*HZ);
1097
1098 }
1099
1100 return erp;
1101
1102} /* end dasd_3990_erp_bus_out */
1103
1104/*
1105 * DASD_3990_ERP_EQUIP_CHECK
1106 *
1107 * DESCRIPTION
1108 * Handles 24 byte 'Equipment Check' error.
1109 *
1110 * PARAMETER
1111 * erp current erp_head
1112 * RETURN VALUES
1113 * erp new erp_head - pointer to new ERP
1114 */
1115static struct dasd_ccw_req *
1116dasd_3990_erp_equip_check(struct dasd_ccw_req * erp, char *sense)
1117{
1118
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001119 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 erp->function = dasd_3990_erp_equip_check;
1122
1123 if (sense[1] & SNS1_WRITE_INHIBITED) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001124 dev_info(&device->cdev->dev,
1125 "Write inhibited path encountered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001127 /* vary path offline
1128 internal error 04 - Path should be varied off-line.*/
1129 dev_err(&device->cdev->dev, "An error occurred in the DASD "
1130 "device driver, reason=%s\n", "04");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 erp = dasd_3990_erp_action_1(erp);
1133
1134 } else if (sense[2] & SNS2_ENV_DATA_PRESENT) {
1135
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001136 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 "Equipment Check - " "environmental data present");
1138
1139 dasd_3990_handle_env_data(erp, sense);
1140
1141 erp = dasd_3990_erp_action_4(erp, sense);
1142
1143 } else if (sense[1] & SNS1_PERM_ERR) {
1144
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001145 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 "Equipment Check - retry exhausted or "
1147 "undesirable");
1148
1149 erp = dasd_3990_erp_action_1(erp);
1150
1151 } else {
1152 /* all other equipment checks - Action 5 */
1153 /* rest is done when retries == 0 */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001154 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 "Equipment check or processing error");
1156
1157 erp = dasd_3990_erp_action_5(erp);
1158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return erp;
1160
1161} /* end dasd_3990_erp_equip_check */
1162
1163/*
1164 * DASD_3990_ERP_DATA_CHECK
1165 *
1166 * DESCRIPTION
1167 * Handles 24 byte 'Data Check' error.
1168 *
1169 * PARAMETER
1170 * erp current erp_head
1171 * RETURN VALUES
1172 * erp new erp_head - pointer to new ERP
1173 */
1174static struct dasd_ccw_req *
1175dasd_3990_erp_data_check(struct dasd_ccw_req * erp, char *sense)
1176{
1177
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001178 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 erp->function = dasd_3990_erp_data_check;
1181
1182 if (sense[2] & SNS2_CORRECTABLE) { /* correctable data check */
1183
1184 /* issue message that the data has been corrected */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001185 dev_emerg(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 "Data recovered during retry with PCI "
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001187 "fetch mode active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 /* not possible to handle this situation in Linux */
1190 panic("No way to inform application about the possibly "
1191 "incorrect data");
1192
1193 } else if (sense[2] & SNS2_ENV_DATA_PRESENT) {
1194
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001195 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 "Uncorrectable data check recovered secondary "
1197 "addr of duplex pair");
1198
1199 erp = dasd_3990_erp_action_4(erp, sense);
1200
1201 } else if (sense[1] & SNS1_PERM_ERR) {
1202
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001203 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 "Uncorrectable data check with internal "
1205 "retry exhausted");
1206
1207 erp = dasd_3990_erp_action_1(erp);
1208
1209 } else {
1210 /* all other data checks */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001211 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 "Uncorrectable data check with retry count "
1213 "exhausted...");
1214
1215 erp = dasd_3990_erp_action_5(erp);
1216 }
1217
1218 return erp;
1219
1220} /* end dasd_3990_erp_data_check */
1221
1222/*
1223 * DASD_3990_ERP_OVERRUN
1224 *
1225 * DESCRIPTION
1226 * Handles 24 byte 'Overrun' error.
1227 *
1228 * PARAMETER
1229 * erp current erp_head
1230 * RETURN VALUES
1231 * erp new erp_head - pointer to new ERP
1232 */
1233static struct dasd_ccw_req *
1234dasd_3990_erp_overrun(struct dasd_ccw_req * erp, char *sense)
1235{
1236
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001237 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 erp->function = dasd_3990_erp_overrun;
1240
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001241 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 "Overrun - service overrun or overrun"
1243 " error requested by channel");
1244
1245 erp = dasd_3990_erp_action_5(erp);
1246
1247 return erp;
1248
1249} /* end dasd_3990_erp_overrun */
1250
1251/*
1252 * DASD_3990_ERP_INV_FORMAT
1253 *
1254 * DESCRIPTION
1255 * Handles 24 byte 'Invalid Track Format' error.
1256 *
1257 * PARAMETER
1258 * erp current erp_head
1259 * RETURN VALUES
1260 * erp new erp_head - pointer to new ERP
1261 */
1262static struct dasd_ccw_req *
1263dasd_3990_erp_inv_format(struct dasd_ccw_req * erp, char *sense)
1264{
1265
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001266 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 erp->function = dasd_3990_erp_inv_format;
1269
1270 if (sense[2] & SNS2_ENV_DATA_PRESENT) {
1271
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001272 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 "Track format error when destaging or "
1274 "staging data");
1275
1276 dasd_3990_handle_env_data(erp, sense);
1277
1278 erp = dasd_3990_erp_action_4(erp, sense);
1279
1280 } else {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001281 /* internal error 06 - The track format is not valid*/
1282 dev_err(&device->cdev->dev,
1283 "An error occurred in the DASD device driver, "
1284 "reason=%s\n", "06");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
1287 }
1288
1289 return erp;
1290
1291} /* end dasd_3990_erp_inv_format */
1292
1293/*
1294 * DASD_3990_ERP_EOC
1295 *
1296 * DESCRIPTION
1297 * Handles 24 byte 'End-of-Cylinder' error.
1298 *
1299 * PARAMETER
1300 * erp already added default erp
1301 * RETURN VALUES
1302 * erp pointer to original (failed) cqr.
1303 */
1304static struct dasd_ccw_req *
1305dasd_3990_erp_EOC(struct dasd_ccw_req * default_erp, char *sense)
1306{
1307
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001308 struct dasd_device *device = default_erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001310 dev_err(&device->cdev->dev,
1311 "The cylinder data for accessing the DASD is inconsistent\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 /* implement action 7 - BUG */
1314 return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);
1315
1316} /* end dasd_3990_erp_EOC */
1317
1318/*
1319 * DASD_3990_ERP_ENV_DATA
1320 *
1321 * DESCRIPTION
1322 * Handles 24 byte 'Environmental-Data Present' error.
1323 *
1324 * PARAMETER
1325 * erp current erp_head
1326 * RETURN VALUES
1327 * erp new erp_head - pointer to new ERP
1328 */
1329static struct dasd_ccw_req *
1330dasd_3990_erp_env_data(struct dasd_ccw_req * erp, char *sense)
1331{
1332
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001333 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 erp->function = dasd_3990_erp_env_data;
1336
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001337 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "Environmental data present");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 dasd_3990_handle_env_data(erp, sense);
1340
1341 /* don't retry on disabled interface */
1342 if (sense[7] != 0x0F) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 erp = dasd_3990_erp_action_4(erp, sense);
1344 } else {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001345 erp->status = DASD_CQR_FILLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
1347
1348 return erp;
1349
1350} /* end dasd_3990_erp_env_data */
1351
1352/*
1353 * DASD_3990_ERP_NO_REC
1354 *
1355 * DESCRIPTION
1356 * Handles 24 byte 'No Record Found' error.
1357 *
1358 * PARAMETER
1359 * erp already added default ERP
Horst Hummel138c0142006-06-29 14:58:12 +02001360 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 * RETURN VALUES
1362 * erp new erp_head - pointer to new ERP
1363 */
1364static struct dasd_ccw_req *
1365dasd_3990_erp_no_rec(struct dasd_ccw_req * default_erp, char *sense)
1366{
1367
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001368 struct dasd_device *device = default_erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Jan Höppner8fd57522015-08-19 13:41:20 +02001370 /*
1371 * In some cases the 'No Record Found' error might be expected and
1372 * log messages shouldn't be written then.
1373 * Check if the according suppress bit is set.
1374 */
1375 if (!test_bit(DASD_CQR_SUPPRESS_NRF, &default_erp->flags))
1376 dev_err(&device->cdev->dev,
1377 "The specified record was not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);
1380
1381} /* end dasd_3990_erp_no_rec */
1382
1383/*
1384 * DASD_3990_ERP_FILE_PROT
1385 *
1386 * DESCRIPTION
1387 * Handles 24 byte 'File Protected' error.
1388 * Note: Seek related recovery is not implemented because
1389 * wee don't use the seek command yet.
1390 *
1391 * PARAMETER
1392 * erp current erp_head
1393 * RETURN VALUES
1394 * erp new erp_head - pointer to new ERP
1395 */
1396static struct dasd_ccw_req *
1397dasd_3990_erp_file_prot(struct dasd_ccw_req * erp)
1398{
1399
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001400 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Jan Höppner8fd57522015-08-19 13:41:20 +02001402 /*
1403 * In some cases the 'File Protected' error might be expected and
1404 * log messages shouldn't be written then.
1405 * Check if the according suppress bit is set.
1406 */
1407 if (!test_bit(DASD_CQR_SUPPRESS_FP, &erp->flags))
1408 dev_err(&device->cdev->dev,
1409 "Accessing the DASD failed because of a hardware error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 return dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
1412
1413} /* end dasd_3990_erp_file_prot */
1414
1415/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001416 * DASD_3990_ERP_INSPECT_ALIAS
1417 *
1418 * DESCRIPTION
1419 * Checks if the original request was started on an alias device.
1420 * If yes, it modifies the original and the erp request so that
1421 * the erp request can be started on a base device.
1422 *
1423 * PARAMETER
1424 * erp pointer to the currently created default ERP
1425 *
1426 * RETURN VALUES
1427 * erp pointer to the modified ERP, or NULL
1428 */
1429
1430static struct dasd_ccw_req *dasd_3990_erp_inspect_alias(
1431 struct dasd_ccw_req *erp)
1432{
1433 struct dasd_ccw_req *cqr = erp->refers;
Stefan Haberland501183f2010-05-17 10:00:10 +02001434 char *sense;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001435
1436 if (cqr->block &&
1437 (cqr->block->base != cqr->startdev)) {
Stefan Haberland501183f2010-05-17 10:00:10 +02001438
1439 sense = dasd_get_sense(&erp->refers->irb);
1440 /*
1441 * dynamic pav may have changed base alias mapping
1442 */
1443 if (!test_bit(DASD_FLAG_OFFLINE, &cqr->startdev->flags) && sense
1444 && (sense[0] == 0x10) && (sense[7] == 0x0F)
1445 && (sense[8] == 0x67)) {
1446 /*
1447 * remove device from alias handling to prevent new
1448 * requests from being scheduled on the
1449 * wrong alias device
1450 */
1451 dasd_alias_remove_device(cqr->startdev);
1452
1453 /* schedule worker to reload device */
1454 dasd_reload_device(cqr->startdev);
1455 }
1456
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001457 if (cqr->startdev->features & DASD_FEATURE_ERPLOG) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001458 DBF_DEV_EVENT(DBF_ERR, cqr->startdev,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001459 "ERP on alias device for request %p,"
1460 " recover on base device %s", cqr,
Kay Sievers2a0217d2008-10-10 21:33:09 +02001461 dev_name(&cqr->block->base->cdev->dev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001462 }
1463 dasd_eckd_reset_ccw_to_base_io(cqr);
1464 erp->startdev = cqr->block->base;
1465 erp->function = dasd_3990_erp_inspect_alias;
1466 return erp;
1467 } else
1468 return NULL;
1469}
1470
1471
1472/*
Horst Hummel138c0142006-06-29 14:58:12 +02001473 * DASD_3990_ERP_INSPECT_24
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 *
1475 * DESCRIPTION
1476 * Does a detailed inspection of the 24 byte sense data
Horst Hummel138c0142006-06-29 14:58:12 +02001477 * and sets up a related error recovery action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 *
1479 * PARAMETER
1480 * sense sense data of the actual error
1481 * erp pointer to the currently created default ERP
1482 *
1483 * RETURN VALUES
1484 * erp pointer to the (addtitional) ERP
1485 */
1486static struct dasd_ccw_req *
1487dasd_3990_erp_inspect_24(struct dasd_ccw_req * erp, char *sense)
1488{
1489
1490 struct dasd_ccw_req *erp_filled = NULL;
1491
1492 /* Check sense for .... */
1493 /* 'Command Reject' */
1494 if ((erp_filled == NULL) && (sense[0] & SNS0_CMD_REJECT)) {
1495 erp_filled = dasd_3990_erp_com_rej(erp, sense);
1496 }
1497 /* 'Intervention Required' */
1498 if ((erp_filled == NULL) && (sense[0] & SNS0_INTERVENTION_REQ)) {
1499 erp_filled = dasd_3990_erp_int_req(erp);
1500 }
1501 /* 'Bus Out Parity Check' */
1502 if ((erp_filled == NULL) && (sense[0] & SNS0_BUS_OUT_CHECK)) {
1503 erp_filled = dasd_3990_erp_bus_out(erp);
1504 }
1505 /* 'Equipment Check' */
1506 if ((erp_filled == NULL) && (sense[0] & SNS0_EQUIPMENT_CHECK)) {
1507 erp_filled = dasd_3990_erp_equip_check(erp, sense);
1508 }
1509 /* 'Data Check' */
1510 if ((erp_filled == NULL) && (sense[0] & SNS0_DATA_CHECK)) {
1511 erp_filled = dasd_3990_erp_data_check(erp, sense);
1512 }
1513 /* 'Overrun' */
1514 if ((erp_filled == NULL) && (sense[0] & SNS0_OVERRUN)) {
1515 erp_filled = dasd_3990_erp_overrun(erp, sense);
1516 }
1517 /* 'Invalid Track Format' */
1518 if ((erp_filled == NULL) && (sense[1] & SNS1_INV_TRACK_FORMAT)) {
1519 erp_filled = dasd_3990_erp_inv_format(erp, sense);
1520 }
1521 /* 'End-of-Cylinder' */
1522 if ((erp_filled == NULL) && (sense[1] & SNS1_EOC)) {
1523 erp_filled = dasd_3990_erp_EOC(erp, sense);
1524 }
1525 /* 'Environmental Data' */
1526 if ((erp_filled == NULL) && (sense[2] & SNS2_ENV_DATA_PRESENT)) {
1527 erp_filled = dasd_3990_erp_env_data(erp, sense);
1528 }
1529 /* 'No Record Found' */
1530 if ((erp_filled == NULL) && (sense[1] & SNS1_NO_REC_FOUND)) {
1531 erp_filled = dasd_3990_erp_no_rec(erp, sense);
1532 }
1533 /* 'File Protected' */
1534 if ((erp_filled == NULL) && (sense[1] & SNS1_FILE_PROTECTED)) {
1535 erp_filled = dasd_3990_erp_file_prot(erp);
1536 }
1537 /* other (unknown) error - do default ERP */
1538 if (erp_filled == NULL) {
1539
1540 erp_filled = erp;
1541 }
1542
1543 return erp_filled;
1544
1545} /* END dasd_3990_erp_inspect_24 */
1546
1547/*
Horst Hummel138c0142006-06-29 14:58:12 +02001548 *****************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 * 32 byte sense ERP functions (only)
Horst Hummel138c0142006-06-29 14:58:12 +02001550 *****************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 */
1552
1553/*
Horst Hummel138c0142006-06-29 14:58:12 +02001554 * DASD_3990_ERPACTION_10_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 *
1556 * DESCRIPTION
1557 * Handles 32 byte 'Action 10' of Single Program Action Codes.
1558 * Just retry and if retry doesn't work, return with error.
1559 *
1560 * PARAMETER
1561 * erp current erp_head
Horst Hummel138c0142006-06-29 14:58:12 +02001562 * sense current sense data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 * RETURN VALUES
1564 * erp modified erp_head
1565 */
1566static struct dasd_ccw_req *
1567dasd_3990_erp_action_10_32(struct dasd_ccw_req * erp, char *sense)
1568{
1569
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001570 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 erp->retries = 256;
1573 erp->function = dasd_3990_erp_action_10_32;
1574
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001575 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "Perform logging requested");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 return erp;
1578
1579} /* end dasd_3990_erp_action_10_32 */
1580
1581/*
1582 * DASD_3990_ERP_ACTION_1B_32
1583 *
1584 * DESCRIPTION
1585 * Handles 32 byte 'Action 1B' of Single Program Action Codes.
Horst Hummel138c0142006-06-29 14:58:12 +02001586 * A write operation could not be finished because of an unexpected
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 * condition.
Horst Hummel138c0142006-06-29 14:58:12 +02001588 * The already created 'default erp' is used to get the link to
1589 * the erp chain, but it can not be used for this recovery
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 * action because it contains no DE/LO data space.
1591 *
1592 * PARAMETER
1593 * default_erp already added default erp.
Horst Hummel138c0142006-06-29 14:58:12 +02001594 * sense current sense data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 *
1596 * RETURN VALUES
Horst Hummel138c0142006-06-29 14:58:12 +02001597 * erp new erp or
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 * default_erp in case of imprecise ending or error
1599 */
1600static struct dasd_ccw_req *
1601dasd_3990_erp_action_1B_32(struct dasd_ccw_req * default_erp, char *sense)
1602{
1603
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001604 struct dasd_device *device = default_erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 __u32 cpa = 0;
1606 struct dasd_ccw_req *cqr;
1607 struct dasd_ccw_req *erp;
1608 struct DE_eckd_data *DE_data;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001609 struct PFX_eckd_data *PFX_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 char *LO_data; /* LO_eckd_data_t */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001611 struct ccw1 *ccw, *oldccw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001613 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 "Write not finished because of unexpected condition");
1615
1616 default_erp->function = dasd_3990_erp_action_1B_32;
1617
1618 /* determine the original cqr */
1619 cqr = default_erp;
1620
1621 while (cqr->refers != NULL) {
1622 cqr = cqr->refers;
1623 }
1624
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001625 if (scsw_is_tm(&cqr->irb.scsw)) {
1626 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1627 "32 bit sense, action 1B is not defined"
1628 " in transport mode - just retry");
1629 return default_erp;
1630 }
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /* for imprecise ending just do default erp */
1633 if (sense[1] & 0x01) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001634 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 "Imprecise ending is set - just retry");
1636
1637 return default_erp;
1638 }
1639
1640 /* determine the address of the CCW to be restarted */
1641 /* Imprecise ending is not set -> addr from IRB-SCSW */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +02001642 cpa = default_erp->refers->irb.scsw.cmd.cpa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644 if (cpa == 0) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001645 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 "Unable to determine address of the CCW "
1647 "to be restarted");
1648
1649 return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);
1650 }
1651
1652 /* Build new ERP request including DE/LO */
1653 erp = dasd_alloc_erp_request((char *) &cqr->magic,
1654 2 + 1,/* DE/LO + TIC */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001655 sizeof(struct DE_eckd_data) +
1656 sizeof(struct LO_eckd_data), device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
1658 if (IS_ERR(erp)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001659 /* internal error 01 - Unable to allocate ERP */
1660 dev_err(&device->cdev->dev, "An error occurred in the DASD "
1661 "device driver, reason=%s\n", "01");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);
1663 }
1664
1665 /* use original DE */
1666 DE_data = erp->data;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001667 oldccw = cqr->cpaddr;
1668 if (oldccw->cmd_code == DASD_ECKD_CCW_PFX) {
1669 PFX_data = cqr->data;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001670 memcpy(DE_data, &PFX_data->define_extent,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001671 sizeof(struct DE_eckd_data));
1672 } else
1673 memcpy(DE_data, cqr->data, sizeof(struct DE_eckd_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 /* create LO */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001676 LO_data = erp->data + sizeof(struct DE_eckd_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 if ((sense[3] == 0x01) && (LO_data[1] & 0x01)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001679 /* should not */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return dasd_3990_erp_cleanup(default_erp, DASD_CQR_FAILED);
1681 }
1682
1683 if ((sense[7] & 0x3F) == 0x01) {
1684 /* operation code is WRITE DATA -> data area orientation */
1685 LO_data[0] = 0x81;
1686
1687 } else if ((sense[7] & 0x3F) == 0x03) {
1688 /* operation code is FORMAT WRITE -> index orientation */
1689 LO_data[0] = 0xC3;
1690
1691 } else {
1692 LO_data[0] = sense[7]; /* operation */
1693 }
1694
1695 LO_data[1] = sense[8]; /* auxiliary */
1696 LO_data[2] = sense[9];
1697 LO_data[3] = sense[3]; /* count */
1698 LO_data[4] = sense[29]; /* seek_addr.cyl */
1699 LO_data[5] = sense[30]; /* seek_addr.cyl 2nd byte */
1700 LO_data[7] = sense[31]; /* seek_addr.head 2nd byte */
1701
1702 memcpy(&(LO_data[8]), &(sense[11]), 8);
1703
1704 /* create DE ccw */
1705 ccw = erp->cpaddr;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001706 memset(ccw, 0, sizeof(struct ccw1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 ccw->cmd_code = DASD_ECKD_CCW_DEFINE_EXTENT;
1708 ccw->flags = CCW_FLAG_CC;
1709 ccw->count = 16;
1710 ccw->cda = (__u32)(addr_t) DE_data;
1711
1712 /* create LO ccw */
1713 ccw++;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001714 memset(ccw, 0, sizeof(struct ccw1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 ccw->cmd_code = DASD_ECKD_CCW_LOCATE_RECORD;
1716 ccw->flags = CCW_FLAG_CC;
1717 ccw->count = 16;
1718 ccw->cda = (__u32)(addr_t) LO_data;
1719
1720 /* TIC to the failed ccw */
1721 ccw++;
1722 ccw->cmd_code = CCW_CMD_TIC;
1723 ccw->cda = cpa;
1724
1725 /* fill erp related fields */
Stefan Weinhuber7ea8d322010-10-25 16:10:08 +02001726 erp->flags = default_erp->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 erp->function = dasd_3990_erp_action_1B_32;
1728 erp->refers = default_erp->refers;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001729 erp->startdev = device;
1730 erp->memdev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 erp->magic = default_erp->magic;
Stefan Weinhuber1afcfd592011-12-27 11:27:23 +01001732 erp->expires = default_erp->expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 erp->retries = 256;
Heiko Carstens1aae0562013-01-30 09:49:40 +01001734 erp->buildclk = get_tod_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 erp->status = DASD_CQR_FILLED;
1736
1737 /* remove the default erp */
1738 dasd_free_erp_request(default_erp, device);
1739
1740 return erp;
1741
1742} /* end dasd_3990_erp_action_1B_32 */
1743
1744/*
1745 * DASD_3990_UPDATE_1B
1746 *
1747 * DESCRIPTION
Horst Hummel138c0142006-06-29 14:58:12 +02001748 * Handles the update to the 32 byte 'Action 1B' of Single Program
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 * Action Codes in case the first action was not successful.
1750 * The already created 'previous_erp' is the currently not successful
Horst Hummel138c0142006-06-29 14:58:12 +02001751 * ERP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 *
1753 * PARAMETER
1754 * previous_erp already created previous erp.
Horst Hummel138c0142006-06-29 14:58:12 +02001755 * sense current sense data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 * RETURN VALUES
Horst Hummel138c0142006-06-29 14:58:12 +02001757 * erp modified erp
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 */
1759static struct dasd_ccw_req *
1760dasd_3990_update_1B(struct dasd_ccw_req * previous_erp, char *sense)
1761{
1762
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001763 struct dasd_device *device = previous_erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 __u32 cpa = 0;
1765 struct dasd_ccw_req *cqr;
1766 struct dasd_ccw_req *erp;
1767 char *LO_data; /* struct LO_eckd_data */
1768 struct ccw1 *ccw;
1769
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001770 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 "Write not finished because of unexpected condition"
1772 " - follow on");
1773
1774 /* determine the original cqr */
1775 cqr = previous_erp;
1776
1777 while (cqr->refers != NULL) {
1778 cqr = cqr->refers;
1779 }
1780
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001781 if (scsw_is_tm(&cqr->irb.scsw)) {
1782 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1783 "32 bit sense, action 1B, update,"
1784 " in transport mode - just retry");
1785 return previous_erp;
1786 }
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 /* for imprecise ending just do default erp */
1789 if (sense[1] & 0x01) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001790 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 "Imprecise ending is set - just retry");
1792
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001793 previous_erp->status = DASD_CQR_FILLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 return previous_erp;
1796 }
1797
1798 /* determine the address of the CCW to be restarted */
1799 /* Imprecise ending is not set -> addr from IRB-SCSW */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +02001800 cpa = previous_erp->irb.scsw.cmd.cpa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 if (cpa == 0) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001803 /* internal error 02 -
1804 Unable to determine address of the CCW to be restarted */
1805 dev_err(&device->cdev->dev, "An error occurred in the DASD "
1806 "device driver, reason=%s\n", "02");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 previous_erp->status = DASD_CQR_FAILED;
1809
1810 return previous_erp;
1811 }
1812
1813 erp = previous_erp;
1814
1815 /* update the LO with the new returned sense data */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001816 LO_data = erp->data + sizeof(struct DE_eckd_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
1818 if ((sense[3] == 0x01) && (LO_data[1] & 0x01)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001819 /* should not happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 previous_erp->status = DASD_CQR_FAILED;
1821
1822 return previous_erp;
1823 }
1824
1825 if ((sense[7] & 0x3F) == 0x01) {
1826 /* operation code is WRITE DATA -> data area orientation */
1827 LO_data[0] = 0x81;
1828
1829 } else if ((sense[7] & 0x3F) == 0x03) {
1830 /* operation code is FORMAT WRITE -> index orientation */
1831 LO_data[0] = 0xC3;
1832
1833 } else {
1834 LO_data[0] = sense[7]; /* operation */
1835 }
1836
1837 LO_data[1] = sense[8]; /* auxiliary */
1838 LO_data[2] = sense[9];
1839 LO_data[3] = sense[3]; /* count */
1840 LO_data[4] = sense[29]; /* seek_addr.cyl */
1841 LO_data[5] = sense[30]; /* seek_addr.cyl 2nd byte */
1842 LO_data[7] = sense[31]; /* seek_addr.head 2nd byte */
1843
1844 memcpy(&(LO_data[8]), &(sense[11]), 8);
1845
1846 /* TIC to the failed ccw */
1847 ccw = erp->cpaddr; /* addr of DE ccw */
1848 ccw++; /* addr of LE ccw */
1849 ccw++; /* addr of TIC ccw */
1850 ccw->cda = cpa;
1851
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001852 erp->status = DASD_CQR_FILLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 return erp;
1855
1856} /* end dasd_3990_update_1B */
1857
1858/*
Horst Hummel138c0142006-06-29 14:58:12 +02001859 * DASD_3990_ERP_COMPOUND_RETRY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 *
1861 * DESCRIPTION
1862 * Handles the compound ERP action retry code.
1863 * NOTE: At least one retry is done even if zero is specified
1864 * by the sense data. This makes enqueueing of the request
1865 * easier.
1866 *
1867 * PARAMETER
1868 * sense sense data of the actual error
1869 * erp pointer to the currently created ERP
1870 *
1871 * RETURN VALUES
1872 * erp modified ERP pointer
1873 *
1874 */
1875static void
1876dasd_3990_erp_compound_retry(struct dasd_ccw_req * erp, char *sense)
1877{
1878
1879 switch (sense[25] & 0x03) {
1880 case 0x00: /* no not retry */
1881 erp->retries = 1;
1882 break;
1883
1884 case 0x01: /* retry 2 times */
1885 erp->retries = 2;
1886 break;
1887
1888 case 0x02: /* retry 10 times */
1889 erp->retries = 10;
1890 break;
1891
1892 case 0x03: /* retry 256 times */
1893 erp->retries = 256;
1894 break;
1895
1896 default:
1897 BUG();
1898 }
1899
1900 erp->function = dasd_3990_erp_compound_retry;
1901
1902} /* end dasd_3990_erp_compound_retry */
1903
1904/*
Horst Hummel138c0142006-06-29 14:58:12 +02001905 * DASD_3990_ERP_COMPOUND_PATH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 *
1907 * DESCRIPTION
1908 * Handles the compound ERP action for retry on alternate
1909 * channel path.
1910 *
1911 * PARAMETER
1912 * sense sense data of the actual error
1913 * erp pointer to the currently created ERP
1914 *
1915 * RETURN VALUES
1916 * erp modified ERP pointer
1917 *
1918 */
1919static void
1920dasd_3990_erp_compound_path(struct dasd_ccw_req * erp, char *sense)
1921{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (sense[25] & DASD_SENSE_BIT_3) {
1923 dasd_3990_erp_alternate_path(erp);
1924
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001925 if (erp->status == DASD_CQR_FAILED &&
1926 !test_bit(DASD_CQR_VERIFY_PATH, &erp->flags)) {
Horst Hummel138c0142006-06-29 14:58:12 +02001927 /* reset the lpm and the status to be able to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 * try further actions. */
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001929 erp->lpm = erp->startdev->path_data.opm;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001930 erp->status = DASD_CQR_NEED_ERP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 }
1932 }
1933
1934 erp->function = dasd_3990_erp_compound_path;
1935
1936} /* end dasd_3990_erp_compound_path */
1937
1938/*
Horst Hummel138c0142006-06-29 14:58:12 +02001939 * DASD_3990_ERP_COMPOUND_CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 *
1941 * DESCRIPTION
1942 * Handles the compound ERP action for retry code.
1943 *
1944 * PARAMETER
1945 * sense sense data of the actual error
1946 * erp pointer to the currently created ERP
1947 *
1948 * RETURN VALUES
1949 * erp NEW ERP pointer
1950 *
1951 */
1952static struct dasd_ccw_req *
1953dasd_3990_erp_compound_code(struct dasd_ccw_req * erp, char *sense)
1954{
1955
1956 if (sense[25] & DASD_SENSE_BIT_2) {
1957
1958 switch (sense[28]) {
1959 case 0x17:
Horst Hummel138c0142006-06-29 14:58:12 +02001960 /* issue a Diagnostic Control command with an
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001961 * Inhibit Write subcommand and controller modifier */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 erp = dasd_3990_erp_DCTL(erp, 0x20);
1963 break;
Horst Hummel138c0142006-06-29 14:58:12 +02001964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 case 0x25:
1966 /* wait for 5 seconds and retry again */
1967 erp->retries = 1;
Horst Hummel138c0142006-06-29 14:58:12 +02001968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 dasd_3990_erp_block_queue (erp, 5*HZ);
1970 break;
Horst Hummel138c0142006-06-29 14:58:12 +02001971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 default:
1973 /* should not happen - continue */
1974 break;
1975 }
1976 }
1977
1978 erp->function = dasd_3990_erp_compound_code;
1979
1980 return erp;
1981
1982} /* end dasd_3990_erp_compound_code */
1983
1984/*
Horst Hummel138c0142006-06-29 14:58:12 +02001985 * DASD_3990_ERP_COMPOUND_CONFIG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 *
1987 * DESCRIPTION
1988 * Handles the compound ERP action for configruation
1989 * dependent error.
1990 * Note: duplex handling is not implemented (yet).
1991 *
1992 * PARAMETER
1993 * sense sense data of the actual error
1994 * erp pointer to the currently created ERP
1995 *
1996 * RETURN VALUES
1997 * erp modified ERP pointer
1998 *
1999 */
2000static void
2001dasd_3990_erp_compound_config(struct dasd_ccw_req * erp, char *sense)
2002{
2003
2004 if ((sense[25] & DASD_SENSE_BIT_1) && (sense[26] & DASD_SENSE_BIT_2)) {
2005
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002006 /* set to suspended duplex state then restart
2007 internal error 05 - Set device to suspended duplex state
2008 should be done */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002009 struct dasd_device *device = erp->startdev;
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002010 dev_err(&device->cdev->dev,
2011 "An error occurred in the DASD device driver, "
2012 "reason=%s\n", "05");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 }
2015
2016 erp->function = dasd_3990_erp_compound_config;
2017
2018} /* end dasd_3990_erp_compound_config */
2019
2020/*
Horst Hummel138c0142006-06-29 14:58:12 +02002021 * DASD_3990_ERP_COMPOUND
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 *
2023 * DESCRIPTION
Horst Hummel138c0142006-06-29 14:58:12 +02002024 * Does the further compound program action if
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 * compound retry was not successful.
2026 *
2027 * PARAMETER
2028 * sense sense data of the actual error
2029 * erp pointer to the current (failed) ERP
2030 *
2031 * RETURN VALUES
2032 * erp (additional) ERP pointer
2033 *
2034 */
2035static struct dasd_ccw_req *
2036dasd_3990_erp_compound(struct dasd_ccw_req * erp, char *sense)
2037{
2038
2039 if ((erp->function == dasd_3990_erp_compound_retry) &&
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002040 (erp->status == DASD_CQR_NEED_ERP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 dasd_3990_erp_compound_path(erp, sense);
2043 }
2044
2045 if ((erp->function == dasd_3990_erp_compound_path) &&
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002046 (erp->status == DASD_CQR_NEED_ERP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 erp = dasd_3990_erp_compound_code(erp, sense);
2049 }
2050
2051 if ((erp->function == dasd_3990_erp_compound_code) &&
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002052 (erp->status == DASD_CQR_NEED_ERP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054 dasd_3990_erp_compound_config(erp, sense);
2055 }
2056
2057 /* if no compound action ERP specified, the request failed */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002058 if (erp->status == DASD_CQR_NEED_ERP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 erp->status = DASD_CQR_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 return erp;
2062
2063} /* end dasd_3990_erp_compound */
2064
2065/*
Stefan Haberlandf60c7682008-04-17 07:46:08 +02002066 *DASD_3990_ERP_HANDLE_SIM
2067 *
2068 *DESCRIPTION
2069 * inspects the SIM SENSE data and starts an appropriate action
2070 *
2071 * PARAMETER
2072 * sense sense data of the actual error
2073 *
2074 * RETURN VALUES
2075 * none
2076 */
2077void
2078dasd_3990_erp_handle_sim(struct dasd_device *device, char *sense)
2079{
2080 /* print message according to log or message to operator mode */
2081 if ((sense[24] & DASD_SIM_MSG_TO_OP) || (sense[1] & 0x10)) {
Stefan Haberlandf60c7682008-04-17 07:46:08 +02002082 /* print SIM SRC from RefCode */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002083 dev_err(&device->cdev->dev, "SIM - SRC: "
2084 "%02x%02x%02x%02x\n", sense[22],
Stefan Haberlandf60c7682008-04-17 07:46:08 +02002085 sense[23], sense[11], sense[12]);
2086 } else if (sense[24] & DASD_SIM_LOG) {
2087 /* print SIM SRC Refcode */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002088 dev_warn(&device->cdev->dev, "log SIM - SRC: "
2089 "%02x%02x%02x%02x\n", sense[22],
Stefan Haberlandf60c7682008-04-17 07:46:08 +02002090 sense[23], sense[11], sense[12]);
2091 }
2092}
2093
2094/*
Horst Hummel138c0142006-06-29 14:58:12 +02002095 * DASD_3990_ERP_INSPECT_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 *
2097 * DESCRIPTION
2098 * Does a detailed inspection of the 32 byte sense data
Horst Hummel138c0142006-06-29 14:58:12 +02002099 * and sets up a related error recovery action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 *
2101 * PARAMETER
2102 * sense sense data of the actual error
2103 * erp pointer to the currently created default ERP
2104 *
2105 * RETURN VALUES
2106 * erp_filled pointer to the ERP
2107 *
2108 */
2109static struct dasd_ccw_req *
2110dasd_3990_erp_inspect_32(struct dasd_ccw_req * erp, char *sense)
2111{
2112
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002113 struct dasd_device *device = erp->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 erp->function = dasd_3990_erp_inspect_32;
2116
Stefan Haberlandf60c7682008-04-17 07:46:08 +02002117 /* check for SIM sense data */
2118 if ((sense[6] & DASD_SIM_SENSE) == DASD_SIM_SENSE)
2119 dasd_3990_erp_handle_sim(device, sense);
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 if (sense[25] & DASD_SENSE_BIT_0) {
2122
2123 /* compound program action codes (byte25 bit 0 == '1') */
2124 dasd_3990_erp_compound_retry(erp, sense);
2125
2126 } else {
2127
2128 /* single program action codes (byte25 bit 0 == '0') */
2129 switch (sense[25]) {
2130
2131 case 0x00: /* success - use default ERP for retries */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002132 DBF_DEV_EVENT(DBF_DEBUG, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 "ERP called for successful request"
2134 " - just retry");
2135 break;
2136
2137 case 0x01: /* fatal error */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002138 dev_err(&device->cdev->dev,
2139 "ERP failed for the DASD\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
2141 erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
2142 break;
2143
2144 case 0x02: /* intervention required */
2145 case 0x03: /* intervention required during dual copy */
2146 erp = dasd_3990_erp_int_req(erp);
2147 break;
2148
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002149 case 0x0F: /* length mismatch during update write command
2150 internal error 08 - update write command error*/
2151 dev_err(&device->cdev->dev, "An error occurred in the "
2152 "DASD device driver, reason=%s\n", "08");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154 erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
2155 break;
2156
2157 case 0x10: /* logging required for other channel program */
2158 erp = dasd_3990_erp_action_10_32(erp, sense);
2159 break;
2160
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002161 case 0x15: /* next track outside defined extend
2162 internal error 07 - The next track is not
2163 within the defined storage extent */
2164 dev_err(&device->cdev->dev,
2165 "An error occurred in the DASD device driver, "
2166 "reason=%s\n", "07");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 erp = dasd_3990_erp_cleanup(erp, DASD_CQR_FAILED);
2169 break;
2170
2171 case 0x1B: /* unexpected condition during write */
2172
2173 erp = dasd_3990_erp_action_1B_32(erp, sense);
2174 break;
2175
2176 case 0x1C: /* invalid data */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002177 dev_emerg(&device->cdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 "Data recovered during retry with PCI "
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002179 "fetch mode active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 /* not possible to handle this situation in Linux */
2182 panic
2183 ("Invalid data - No way to inform application "
2184 "about the possibly incorrect data");
2185 break;
2186
2187 case 0x1D: /* state-change pending */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002188 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 "A State change pending condition exists "
2190 "for the subsystem or device");
2191
2192 erp = dasd_3990_erp_action_4(erp, sense);
2193 break;
2194
2195 case 0x1E: /* busy */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002196 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 "Busy condition exists "
2198 "for the subsystem or device");
2199 erp = dasd_3990_erp_action_4(erp, sense);
2200 break;
2201
2202 default: /* all others errors - default erp */
2203 break;
2204 }
2205 }
2206
2207 return erp;
2208
2209} /* end dasd_3990_erp_inspect_32 */
2210
2211/*
Horst Hummel138c0142006-06-29 14:58:12 +02002212 *****************************************************************************
Stefan Weileef35c22010-08-06 21:11:15 +02002213 * main ERP control functions (24 and 32 byte sense)
Horst Hummel138c0142006-06-29 14:58:12 +02002214 *****************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 */
2216
2217/*
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002218 * DASD_3990_ERP_CONTROL_CHECK
2219 *
2220 * DESCRIPTION
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002221 * Does a generic inspection if a control check occurred and sets up
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002222 * the related error recovery procedure
2223 *
2224 * PARAMETER
2225 * erp pointer to the currently created default ERP
2226 *
2227 * RETURN VALUES
2228 * erp_filled pointer to the erp
2229 */
2230
2231static struct dasd_ccw_req *
2232dasd_3990_erp_control_check(struct dasd_ccw_req *erp)
2233{
2234 struct dasd_device *device = erp->startdev;
2235
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002236 if (scsw_cstat(&erp->refers->irb.scsw) & (SCHN_STAT_INTF_CTRL_CHK
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002237 | SCHN_STAT_CHN_CTRL_CHK)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002238 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002239 "channel or interface control check");
2240 erp = dasd_3990_erp_action_4(erp, NULL);
2241 }
2242 return erp;
2243}
2244
2245/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 * DASD_3990_ERP_INSPECT
2247 *
2248 * DESCRIPTION
2249 * Does a detailed inspection for sense data by calling either
2250 * the 24-byte or the 32-byte inspection routine.
2251 *
2252 * PARAMETER
2253 * erp pointer to the currently created default ERP
2254 * RETURN VALUES
Horst Hummel138c0142006-06-29 14:58:12 +02002255 * erp_new contens was possibly modified
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 */
2257static struct dasd_ccw_req *
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002258dasd_3990_erp_inspect(struct dasd_ccw_req *erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
2260
2261 struct dasd_ccw_req *erp_new = NULL;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002262 char *sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002264 /* if this problem occurred on an alias retry on base */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002265 erp_new = dasd_3990_erp_inspect_alias(erp);
2266 if (erp_new)
2267 return erp_new;
2268
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002269 /* sense data are located in the refers record of the
2270 * already set up new ERP !
2271 * check if concurrent sens is available
2272 */
2273 sense = dasd_get_sense(&erp->refers->irb);
2274 if (!sense)
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002275 erp_new = dasd_3990_erp_control_check(erp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 /* distinguish between 24 and 32 byte sense data */
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002277 else if (sense[27] & DASD_SENSE_BIT_0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 /* inspect the 24 byte sense data */
2280 erp_new = dasd_3990_erp_inspect_24(erp, sense);
2281
2282 } else {
2283
2284 /* inspect the 32 byte sense data */
2285 erp_new = dasd_3990_erp_inspect_32(erp, sense);
2286
2287 } /* end distinguish between 24 and 32 byte sense data */
2288
2289 return erp_new;
2290}
2291
2292/*
2293 * DASD_3990_ERP_ADD_ERP
Horst Hummel138c0142006-06-29 14:58:12 +02002294 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 * DESCRIPTION
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002296 * This function adds an additional request block (ERP) to the head of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 * the given cqr (or erp).
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002298 * For a command mode cqr the erp is initialized as an default erp
2299 * (retry TIC).
2300 * For transport mode we make a copy of the original TCW (points to
2301 * the original TCCB, TIDALs, etc.) but give it a fresh
2302 * TSB so the original sense data will not be changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 *
2304 * PARAMETER
Horst Hummel138c0142006-06-29 14:58:12 +02002305 * cqr head of the current ERP-chain (or single cqr if
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 * first error)
2307 * RETURN VALUES
2308 * erp pointer to new ERP-chain head
2309 */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002310static struct dasd_ccw_req *dasd_3990_erp_add_erp(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{
2312
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002313 struct dasd_device *device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 struct ccw1 *ccw;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002315 struct dasd_ccw_req *erp;
2316 int cplength, datasize;
2317 struct tcw *tcw;
2318 struct tsb *tsb;
2319
2320 if (cqr->cpmode == 1) {
2321 cplength = 0;
Stefan Weinhuber4a31ba52010-03-24 11:49:53 +01002322 /* TCW needs to be 64 byte aligned, so leave enough room */
2323 datasize = 64 + sizeof(struct tcw) + sizeof(struct tsb);
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002324 } else {
2325 cplength = 2;
2326 datasize = 0;
2327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
2329 /* allocate additional request block */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002330 erp = dasd_alloc_erp_request((char *) &cqr->magic,
2331 cplength, datasize, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (IS_ERR(erp)) {
2333 if (cqr->retries <= 0) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002334 DBF_DEV_EVENT(DBF_ERR, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 "Unable to allocate ERP request");
2336 cqr->status = DASD_CQR_FAILED;
Heiko Carstens1aae0562013-01-30 09:49:40 +01002337 cqr->stopclk = get_tod_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 } else {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002339 DBF_DEV_EVENT(DBF_ERR, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 "Unable to allocate ERP request "
2341 "(%i retries left)",
2342 cqr->retries);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002343 dasd_block_set_timer(device->block, (HZ << 3));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 }
Stefan Haberland6a5176c2010-04-22 17:17:02 +02002345 return erp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 }
2347
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002348 ccw = cqr->cpaddr;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002349 if (cqr->cpmode == 1) {
2350 /* make a shallow copy of the original tcw but set new tsb */
2351 erp->cpmode = 1;
Stefan Weinhuber4a31ba52010-03-24 11:49:53 +01002352 erp->cpaddr = PTR_ALIGN(erp->data, 64);
2353 tcw = erp->cpaddr;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002354 tsb = (struct tsb *) &tcw[1];
2355 *tcw = *((struct tcw *)cqr->cpaddr);
2356 tcw->tsb = (long)tsb;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002357 } else if (ccw->cmd_code == DASD_ECKD_CCW_PSF) {
2358 /* PSF cannot be chained from NOOP/TIC */
2359 erp->cpaddr = cqr->cpaddr;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002360 } else {
2361 /* initialize request with default TIC to current ERP/CQR */
2362 ccw = erp->cpaddr;
2363 ccw->cmd_code = CCW_CMD_NOOP;
2364 ccw->flags = CCW_FLAG_CC;
2365 ccw++;
2366 ccw->cmd_code = CCW_CMD_TIC;
2367 ccw->cda = (long)(cqr->cpaddr);
2368 }
2369
Stefan Weinhuber7ea8d322010-10-25 16:10:08 +02002370 erp->flags = cqr->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 erp->function = dasd_3990_erp_add_erp;
2372 erp->refers = cqr;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002373 erp->startdev = device;
2374 erp->memdev = device;
2375 erp->block = cqr->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 erp->magic = cqr->magic;
Stefan Weinhuber1afcfd592011-12-27 11:27:23 +01002377 erp->expires = cqr->expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 erp->retries = 256;
Heiko Carstens1aae0562013-01-30 09:49:40 +01002379 erp->buildclk = get_tod_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 erp->status = DASD_CQR_FILLED;
2381
2382 return erp;
2383}
2384
2385/*
Horst Hummel138c0142006-06-29 14:58:12 +02002386 * DASD_3990_ERP_ADDITIONAL_ERP
2387 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 * DESCRIPTION
2389 * An additional ERP is needed to handle the current error.
2390 * Add ERP to the head of the ERP-chain containing the ERP processing
2391 * determined based on the sense data.
2392 *
2393 * PARAMETER
Horst Hummel138c0142006-06-29 14:58:12 +02002394 * cqr head of the current ERP-chain (or single cqr if
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 * first error)
2396 *
2397 * RETURN VALUES
2398 * erp pointer to new ERP-chain head
2399 */
2400static struct dasd_ccw_req *
2401dasd_3990_erp_additional_erp(struct dasd_ccw_req * cqr)
2402{
2403
2404 struct dasd_ccw_req *erp = NULL;
2405
2406 /* add erp and initialize with default TIC */
2407 erp = dasd_3990_erp_add_erp(cqr);
2408
Stefan Haberland6a5176c2010-04-22 17:17:02 +02002409 if (IS_ERR(erp))
2410 return erp;
2411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 /* inspect sense, determine specific ERP if possible */
2413 if (erp != cqr) {
2414
2415 erp = dasd_3990_erp_inspect(erp);
2416 }
2417
2418 return erp;
2419
2420} /* end dasd_3990_erp_additional_erp */
2421
2422/*
2423 * DASD_3990_ERP_ERROR_MATCH
2424 *
2425 * DESCRIPTION
2426 * Check if the device status of the given cqr is the same.
2427 * This means that the failed CCW and the relevant sense data
2428 * must match.
2429 * I don't distinguish between 24 and 32 byte sense because in case of
2430 * 24 byte sense byte 25 and 27 is set as well.
2431 *
2432 * PARAMETER
Horst Hummel138c0142006-06-29 14:58:12 +02002433 * cqr1 first cqr, which will be compared with the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 * cqr2 second cqr.
2435 *
2436 * RETURN VALUES
2437 * match 'boolean' for match found
2438 * returns 1 if match found, otherwise 0.
2439 */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002440static int dasd_3990_erp_error_match(struct dasd_ccw_req *cqr1,
2441 struct dasd_ccw_req *cqr2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442{
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002443 char *sense1, *sense2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Stefan Weinhuber5c12f242008-03-05 12:37:10 +01002445 if (cqr1->startdev != cqr2->startdev)
2446 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002448 sense1 = dasd_get_sense(&cqr1->irb);
2449 sense2 = dasd_get_sense(&cqr2->irb);
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002450
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002451 /* one request has sense data, the other not -> no match, return 0 */
2452 if (!sense1 != !sense2)
2453 return 0;
2454 /* no sense data in both cases -> check cstat for IFCC */
2455 if (!sense1 && !sense2) {
2456 if ((scsw_cstat(&cqr1->irb.scsw) & (SCHN_STAT_INTF_CTRL_CHK |
2457 SCHN_STAT_CHN_CTRL_CHK)) ==
2458 (scsw_cstat(&cqr2->irb.scsw) & (SCHN_STAT_INTF_CTRL_CHK |
2459 SCHN_STAT_CHN_CTRL_CHK)))
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002460 return 1; /* match with ifcc*/
2461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 /* check sense data; byte 0-2,25,27 */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002463 if (!(sense1 && sense2 &&
2464 (memcmp(sense1, sense2, 3) == 0) &&
2465 (sense1[27] == sense2[27]) &&
2466 (sense1[25] == sense2[25]))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 return 0; /* sense doesn't match */
2469 }
2470
2471 return 1; /* match */
2472
2473} /* end dasd_3990_erp_error_match */
2474
2475/*
2476 * DASD_3990_ERP_IN_ERP
2477 *
2478 * DESCRIPTION
2479 * check if the current error already happened before.
2480 * quick exit if current cqr is not an ERP (cqr->refers=NULL)
2481 *
2482 * PARAMETER
2483 * cqr failed cqr (either original cqr or already an erp)
2484 *
2485 * RETURN VALUES
Horst Hummel138c0142006-06-29 14:58:12 +02002486 * erp erp-pointer to the already defined error
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 * recovery procedure OR
2488 * NULL if a 'new' error occurred.
2489 */
2490static struct dasd_ccw_req *
2491dasd_3990_erp_in_erp(struct dasd_ccw_req *cqr)
2492{
2493
2494 struct dasd_ccw_req *erp_head = cqr, /* save erp chain head */
2495 *erp_match = NULL; /* save erp chain head */
2496 int match = 0; /* 'boolean' for matching error found */
2497
2498 if (cqr->refers == NULL) { /* return if not in erp */
2499 return NULL;
2500 }
2501
2502 /* check the erp/cqr chain for current error */
2503 do {
2504 match = dasd_3990_erp_error_match(erp_head, cqr->refers);
2505 erp_match = cqr; /* save possible matching erp */
2506 cqr = cqr->refers; /* check next erp/cqr in queue */
2507
2508 } while ((cqr->refers != NULL) && (!match));
2509
2510 if (!match) {
2511 return NULL; /* no match was found */
2512 }
2513
2514 return erp_match; /* return address of matching erp */
2515
2516} /* END dasd_3990_erp_in_erp */
2517
2518/*
2519 * DASD_3990_ERP_FURTHER_ERP (24 & 32 byte sense)
2520 *
2521 * DESCRIPTION
Horst Hummel138c0142006-06-29 14:58:12 +02002522 * No retry is left for the current ERP. Check what has to be done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 * with the ERP.
2524 * - do further defined ERP action or
Horst Hummel138c0142006-06-29 14:58:12 +02002525 * - wait for interrupt or
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 * - exit with permanent error
2527 *
2528 * PARAMETER
2529 * erp ERP which is in progress with no retry left
2530 *
2531 * RETURN VALUES
2532 * erp modified/additional ERP
2533 */
2534static struct dasd_ccw_req *
2535dasd_3990_erp_further_erp(struct dasd_ccw_req *erp)
2536{
2537
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002538 struct dasd_device *device = erp->startdev;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002539 char *sense = dasd_get_sense(&erp->irb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
2541 /* check for 24 byte sense ERP */
2542 if ((erp->function == dasd_3990_erp_bus_out) ||
2543 (erp->function == dasd_3990_erp_action_1) ||
2544 (erp->function == dasd_3990_erp_action_4)) {
2545
2546 erp = dasd_3990_erp_action_1(erp);
2547
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002548 } else if (erp->function == dasd_3990_erp_action_1_sec) {
2549 erp = dasd_3990_erp_action_1_sec(erp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 } else if (erp->function == dasd_3990_erp_action_5) {
2551
2552 /* retries have not been successful */
2553 /* prepare erp for retry on different channel path */
2554 erp = dasd_3990_erp_action_1(erp);
2555
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002556 if (sense && !(sense[2] & DASD_SENSE_BIT_0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Horst Hummel138c0142006-06-29 14:58:12 +02002558 /* issue a Diagnostic Control command with an
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 * Inhibit Write subcommand */
2560
2561 switch (sense[25]) {
2562 case 0x17:
2563 case 0x57:{ /* controller */
2564 erp = dasd_3990_erp_DCTL(erp, 0x20);
2565 break;
2566 }
2567 case 0x18:
2568 case 0x58:{ /* channel path */
2569 erp = dasd_3990_erp_DCTL(erp, 0x40);
2570 break;
2571 }
2572 case 0x19:
2573 case 0x59:{ /* storage director */
2574 erp = dasd_3990_erp_DCTL(erp, 0x80);
2575 break;
2576 }
2577 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002578 DBF_DEV_EVENT(DBF_WARNING, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 "invalid subcommand modifier 0x%x "
2580 "for Diagnostic Control Command",
2581 sense[25]);
2582 }
2583 }
2584
2585 /* check for 32 byte sense ERP */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002586 } else if (sense &&
2587 ((erp->function == dasd_3990_erp_compound_retry) ||
2588 (erp->function == dasd_3990_erp_compound_path) ||
2589 (erp->function == dasd_3990_erp_compound_code) ||
2590 (erp->function == dasd_3990_erp_compound_config))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592 erp = dasd_3990_erp_compound(erp, sense);
2593
2594 } else {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002595 /*
2596 * No retry left and no additional special handling
2597 * necessary
2598 */
2599 dev_err(&device->cdev->dev,
2600 "ERP %p has run out of retries and failed\n", erp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
2602 erp->status = DASD_CQR_FAILED;
2603 }
2604
2605 return erp;
2606
2607} /* end dasd_3990_erp_further_erp */
2608
2609/*
Horst Hummel138c0142006-06-29 14:58:12 +02002610 * DASD_3990_ERP_HANDLE_MATCH_ERP
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 *
2612 * DESCRIPTION
2613 * An error occurred again and an ERP has been detected which is already
Horst Hummel138c0142006-06-29 14:58:12 +02002614 * used to handle this error (e.g. retries).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 * All prior ERP's are asumed to be successful and therefore removed
2616 * from queue.
Horst Hummel138c0142006-06-29 14:58:12 +02002617 * If retry counter of matching erp is already 0, it is checked if further
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 * action is needed (besides retry) or if the ERP has failed.
2619 *
2620 * PARAMETER
2621 * erp_head first ERP in ERP-chain
2622 * erp ERP that handles the actual error.
2623 * (matching erp)
2624 *
2625 * RETURN VALUES
2626 * erp modified/additional ERP
2627 */
2628static struct dasd_ccw_req *
2629dasd_3990_erp_handle_match_erp(struct dasd_ccw_req *erp_head,
2630 struct dasd_ccw_req *erp)
2631{
2632
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002633 struct dasd_device *device = erp_head->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 struct dasd_ccw_req *erp_done = erp_head; /* finished req */
2635 struct dasd_ccw_req *erp_free = NULL; /* req to be freed */
2636
2637 /* loop over successful ERPs and remove them from chanq */
2638 while (erp_done != erp) {
2639
2640 if (erp_done == NULL) /* end of chain reached */
2641 panic(PRINTK_HEADER "Programming error in ERP! The "
2642 "original request was lost\n");
2643
2644 /* remove the request from the device queue */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002645 list_del(&erp_done->blocklist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 erp_free = erp_done;
2648 erp_done = erp_done->refers;
2649
2650 /* free the finished erp request */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002651 dasd_free_erp_request(erp_free, erp_free->memdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
2653 } /* end while */
2654
2655 if (erp->retries > 0) {
2656
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002657 char *sense = dasd_get_sense(&erp->refers->irb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
2659 /* check for special retries */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002660 if (sense && erp->function == dasd_3990_erp_action_4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662 erp = dasd_3990_erp_action_4(erp, sense);
2663
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002664 } else if (sense &&
2665 erp->function == dasd_3990_erp_action_1B_32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667 erp = dasd_3990_update_1B(erp, sense);
2668
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002669 } else if (sense && erp->function == dasd_3990_erp_int_req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671 erp = dasd_3990_erp_int_req(erp);
2672
2673 } else {
2674 /* simple retry */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002675 DBF_DEV_EVENT(DBF_DEBUG, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 "%i retries left for erp %p",
2677 erp->retries, erp);
2678
2679 /* handle the request again... */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002680 erp->status = DASD_CQR_FILLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 }
2682
2683 } else {
2684 /* no retry left - check for further necessary action */
2685 /* if no further actions, handle rest as permanent error */
2686 erp = dasd_3990_erp_further_erp(erp);
2687 }
2688
2689 return erp;
2690
2691} /* end dasd_3990_erp_handle_match_erp */
2692
2693/*
2694 * DASD_3990_ERP_ACTION
2695 *
2696 * DESCRIPTION
Joe Perches5d67d162008-01-26 14:11:20 +01002697 * control routine for 3990 erp actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 * Has to be called with the queue lock (namely the s390_irq_lock) acquired.
2699 *
2700 * PARAMETER
2701 * cqr failed cqr (either original cqr or already an erp)
2702 *
2703 * RETURN VALUES
2704 * erp erp-pointer to the head of the ERP action chain.
2705 * This means:
2706 * - either a ptr to an additional ERP cqr or
Horst Hummel138c0142006-06-29 14:58:12 +02002707 * - the original given cqr (which's status might
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 * be modified)
2709 */
2710struct dasd_ccw_req *
2711dasd_3990_erp_action(struct dasd_ccw_req * cqr)
2712{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 struct dasd_ccw_req *erp = NULL;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002714 struct dasd_device *device = cqr->startdev;
Horst Hummel9575bf22006-12-08 15:54:15 +01002715 struct dasd_ccw_req *temp_erp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Horst Hummel9575bf22006-12-08 15:54:15 +01002717 if (device->features & DASD_FEATURE_ERPLOG) {
2718 /* print current erp_chain */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002719 dev_err(&device->cdev->dev,
2720 "ERP chain at BEGINNING of ERP-ACTION\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 for (temp_erp = cqr;
2722 temp_erp != NULL; temp_erp = temp_erp->refers) {
2723
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002724 dev_err(&device->cdev->dev,
2725 "ERP %p (%02x) refers to %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 temp_erp, temp_erp->status,
2727 temp_erp->refers);
2728 }
2729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
Coly Li73ac36e2009-01-07 18:09:16 -08002731 /* double-check if current erp/cqr was successful */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002732 if ((scsw_cstat(&cqr->irb.scsw) == 0x00) &&
2733 (scsw_dstat(&cqr->irb.scsw) ==
Peter Oberparleiter23d805b2008-07-14 09:58:50 +02002734 (DEV_STAT_CHN_END | DEV_STAT_DEV_END))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002736 DBF_DEV_EVENT(DBF_DEBUG, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 "ERP called for successful request %p"
2738 " - NO ERP necessary", cqr);
2739
2740 cqr->status = DASD_CQR_DONE;
2741
2742 return cqr;
2743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
2745 /* check if error happened before */
2746 erp = dasd_3990_erp_in_erp(cqr);
2747
2748 if (erp == NULL) {
2749 /* no matching erp found - set up erp */
2750 erp = dasd_3990_erp_additional_erp(cqr);
Stefan Haberland6a5176c2010-04-22 17:17:02 +02002751 if (IS_ERR(erp))
2752 return erp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 } else {
2754 /* matching erp found - set all leading erp's to DONE */
2755 erp = dasd_3990_erp_handle_match_erp(cqr, erp);
2756 }
2757
Horst Hummel9575bf22006-12-08 15:54:15 +01002758 if (device->features & DASD_FEATURE_ERPLOG) {
2759 /* print current erp_chain */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002760 dev_err(&device->cdev->dev,
2761 "ERP chain at END of ERP-ACTION\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 for (temp_erp = erp;
2763 temp_erp != NULL; temp_erp = temp_erp->refers) {
2764
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002765 dev_err(&device->cdev->dev,
2766 "ERP %p (%02x) refers to %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 temp_erp, temp_erp->status,
2768 temp_erp->refers);
2769 }
2770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002772 /* enqueue ERP request if it's a new one */
2773 if (list_empty(&erp->blocklist)) {
2774 cqr->status = DASD_CQR_IN_ERP;
2775 /* add erp request before the cqr */
2776 list_add_tail(&erp->blocklist, &cqr->blocklist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 }
2778
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002779
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 return erp;
2782
2783} /* end dasd_3990_erp_action */