[S390] cio: introduce fcx enabled scsw format
[linux-block.git] / drivers / s390 / cio / device_fsm.c
CommitLineData
1da177e4
LT
1/*
2 * drivers/s390/cio/device_fsm.c
3 * finite state machine for device handling
4 *
c820de39 5 * Copyright IBM Corp. 2002,2008
4ce3b30c 6 * Author(s): Cornelia Huck (cornelia.huck@de.ibm.com)
1da177e4
LT
7 * Martin Schwidefsky (schwidefsky@de.ibm.com)
8 */
9
10#include <linux/module.h>
1da177e4 11#include <linux/init.h>
4e57b681
TS
12#include <linux/jiffies.h>
13#include <linux/string.h>
1da177e4
LT
14
15#include <asm/ccwdev.h>
4c24da79 16#include <asm/cio.h>
e5854a58 17#include <asm/chpid.h>
1da177e4
LT
18
19#include "cio.h"
20#include "cio_debug.h"
21#include "css.h"
22#include "device.h"
23#include "chsc.h"
24#include "ioasm.h"
e6b6e10a 25#include "chp.h"
1da177e4 26
14ff56bb
SO
27static int timeout_log_enabled;
28
14ff56bb
SO
29static int __init ccw_timeout_log_setup(char *unused)
30{
31 timeout_log_enabled = 1;
32 return 1;
33}
34
35__setup("ccw_timeout_log", ccw_timeout_log_setup);
36
37static void ccw_timeout_log(struct ccw_device *cdev)
38{
39 struct schib schib;
40 struct subchannel *sch;
cd6b4f27 41 struct io_subchannel_private *private;
14ff56bb
SO
42 int cc;
43
44 sch = to_subchannel(cdev->dev.parent);
cd6b4f27 45 private = to_io_private(sch);
14ff56bb
SO
46 cc = stsch(sch->schid, &schib);
47
48 printk(KERN_WARNING "cio: ccw device timeout occurred at %llx, "
49 "device information:\n", get_clock());
50 printk(KERN_WARNING "cio: orb:\n");
51 print_hex_dump(KERN_WARNING, "cio: ", DUMP_PREFIX_NONE, 16, 1,
cd6b4f27 52 &private->orb, sizeof(private->orb), 0);
14ff56bb
SO
53 printk(KERN_WARNING "cio: ccw device bus id: %s\n", cdev->dev.bus_id);
54 printk(KERN_WARNING "cio: subchannel bus id: %s\n", sch->dev.bus_id);
55 printk(KERN_WARNING "cio: subchannel lpm: %02x, opm: %02x, "
56 "vpm: %02x\n", sch->lpm, sch->opm, sch->vpm);
57
cd6b4f27
CH
58 if ((void *)(addr_t)private->orb.cpa == &private->sense_ccw ||
59 (void *)(addr_t)private->orb.cpa == cdev->private->iccws)
14ff56bb
SO
60 printk(KERN_WARNING "cio: last channel program (intern):\n");
61 else
62 printk(KERN_WARNING "cio: last channel program:\n");
63
64 print_hex_dump(KERN_WARNING, "cio: ", DUMP_PREFIX_NONE, 16, 1,
cd6b4f27
CH
65 (void *)(addr_t)private->orb.cpa,
66 sizeof(struct ccw1), 0);
14ff56bb
SO
67 printk(KERN_WARNING "cio: ccw device state: %d\n",
68 cdev->private->state);
69 printk(KERN_WARNING "cio: store subchannel returned: cc=%d\n", cc);
70 printk(KERN_WARNING "cio: schib:\n");
71 print_hex_dump(KERN_WARNING, "cio: ", DUMP_PREFIX_NONE, 16, 1,
72 &schib, sizeof(schib), 0);
73 printk(KERN_WARNING "cio: ccw device flags:\n");
74 print_hex_dump(KERN_WARNING, "cio: ", DUMP_PREFIX_NONE, 16, 1,
75 &cdev->private->flags, sizeof(cdev->private->flags), 0);
76}
77
1da177e4
LT
78/*
79 * Timeout function. It just triggers a DEV_EVENT_TIMEOUT.
80 */
81static void
82ccw_device_timeout(unsigned long data)
83{
84 struct ccw_device *cdev;
85
86 cdev = (struct ccw_device *) data;
87 spin_lock_irq(cdev->ccwlock);
14ff56bb
SO
88 if (timeout_log_enabled)
89 ccw_timeout_log(cdev);
1da177e4
LT
90 dev_fsm_event(cdev, DEV_EVENT_TIMEOUT);
91 spin_unlock_irq(cdev->ccwlock);
92}
93
94/*
95 * Set timeout
96 */
97void
98ccw_device_set_timeout(struct ccw_device *cdev, int expires)
99{
100 if (expires == 0) {
101 del_timer(&cdev->private->timer);
102 return;
103 }
104 if (timer_pending(&cdev->private->timer)) {
105 if (mod_timer(&cdev->private->timer, jiffies + expires))
106 return;
107 }
108 cdev->private->timer.function = ccw_device_timeout;
109 cdev->private->timer.data = (unsigned long) cdev;
110 cdev->private->timer.expires = jiffies + expires;
111 add_timer(&cdev->private->timer);
112}
113
1da177e4
LT
114/*
115 * Cancel running i/o. This is called repeatedly since halt/clear are
116 * asynchronous operations. We do one try with cio_cancel, two tries
117 * with cio_halt, 255 tries with cio_clear. If everythings fails panic.
118 * Returns 0 if device now idle, -ENODEV for device not operational and
119 * -EBUSY if an interrupt is expected (either from halt/clear or from a
120 * status pending).
121 */
122int
123ccw_device_cancel_halt_clear(struct ccw_device *cdev)
124{
125 struct subchannel *sch;
126 int ret;
127
128 sch = to_subchannel(cdev->dev.parent);
a8237fc4 129 ret = stsch(sch->schid, &sch->schib);
1da177e4
LT
130 if (ret || !sch->schib.pmcw.dnv)
131 return -ENODEV;
2470b648
CH
132 if (!sch->schib.pmcw.ena)
133 /* Not operational -> done. */
1da177e4
LT
134 return 0;
135 /* Stage 1: cancel io. */
23d805b6
PO
136 if (!(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_HALT_PEND) &&
137 !(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_CLEAR_PEND)) {
1da177e4
LT
138 ret = cio_cancel(sch);
139 if (ret != -EINVAL)
140 return ret;
141 /* cancel io unsuccessful. From now on it is asynchronous. */
142 cdev->private->iretry = 3; /* 3 halt retries. */
143 }
23d805b6 144 if (!(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_CLEAR_PEND)) {
1da177e4
LT
145 /* Stage 2: halt io. */
146 if (cdev->private->iretry) {
147 cdev->private->iretry--;
148 ret = cio_halt(sch);
ba4ba8a6
PO
149 if (ret != -EBUSY)
150 return (ret == 0) ? -EBUSY : ret;
1da177e4
LT
151 }
152 /* halt io unsuccessful. */
153 cdev->private->iretry = 255; /* 255 clear retries. */
154 }
155 /* Stage 3: clear io. */
156 if (cdev->private->iretry) {
157 cdev->private->iretry--;
158 ret = cio_clear (sch);
159 return (ret == 0) ? -EBUSY : ret;
160 }
161 panic("Can't stop i/o on subchannel.\n");
162}
163
164static int
165ccw_device_handle_oper(struct ccw_device *cdev)
166{
167 struct subchannel *sch;
168
169 sch = to_subchannel(cdev->dev.parent);
170 cdev->private->flags.recog_done = 1;
171 /*
172 * Check if cu type and device type still match. If
173 * not, it is certainly another device and we have to
d7b5a4c9 174 * de- and re-register.
1da177e4
LT
175 */
176 if (cdev->id.cu_type != cdev->private->senseid.cu_type ||
177 cdev->id.cu_model != cdev->private->senseid.cu_model ||
178 cdev->id.dev_type != cdev->private->senseid.dev_type ||
d7b5a4c9 179 cdev->id.dev_model != cdev->private->senseid.dev_model) {
1da177e4 180 PREPARE_WORK(&cdev->private->kick_work,
c1637532 181 ccw_device_do_unreg_rereg);
1da177e4
LT
182 queue_work(ccw_device_work, &cdev->private->kick_work);
183 return 0;
184 }
185 cdev->private->flags.donotify = 1;
186 return 1;
187}
188
189/*
190 * The machine won't give us any notification by machine check if a chpid has
191 * been varied online on the SE so we have to find out by magic (i. e. driving
192 * the channel subsystem to device selection and updating our path masks).
193 */
4d284cac 194static void
1da177e4
LT
195__recover_lost_chpids(struct subchannel *sch, int old_lpm)
196{
197 int mask, i;
f86635fa 198 struct chp_id chpid;
1da177e4 199
f86635fa 200 chp_id_init(&chpid);
1da177e4
LT
201 for (i = 0; i<8; i++) {
202 mask = 0x80 >> i;
203 if (!(sch->lpm & mask))
204 continue;
205 if (old_lpm & mask)
206 continue;
f86635fa 207 chpid.id = sch->schib.pmcw.chpid[i];
83b3370c
PO
208 if (!chp_is_registered(chpid))
209 css_schedule_eval_all();
1da177e4
LT
210 }
211}
212
213/*
214 * Stop device recognition.
215 */
216static void
217ccw_device_recog_done(struct ccw_device *cdev, int state)
218{
219 struct subchannel *sch;
220 int notify, old_lpm, same_dev;
221
222 sch = to_subchannel(cdev->dev.parent);
223
224 ccw_device_set_timeout(cdev, 0);
225 cio_disable_subchannel(sch);
226 /*
227 * Now that we tried recognition, we have performed device selection
228 * through ssch() and the path information is up to date.
229 */
230 old_lpm = sch->lpm;
a8237fc4 231 stsch(sch->schid, &sch->schib);
28bdc6f6 232 sch->lpm = sch->schib.pmcw.pam & sch->opm;
4ffa9234
CH
233 /* Check since device may again have become not operational. */
234 if (!sch->schib.pmcw.dnv)
235 state = DEV_STATE_NOT_OPER;
1da177e4
LT
236 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID)
237 /* Force reprobe on all chpids. */
238 old_lpm = 0;
239 if (sch->lpm != old_lpm)
240 __recover_lost_chpids(sch, old_lpm);
241 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID) {
242 if (state == DEV_STATE_NOT_OPER) {
243 cdev->private->flags.recog_done = 1;
244 cdev->private->state = DEV_STATE_DISCONNECTED;
245 return;
246 }
247 /* Boxed devices don't need extra treatment. */
248 }
249 notify = 0;
250 same_dev = 0; /* Keep the compiler quiet... */
251 switch (state) {
252 case DEV_STATE_NOT_OPER:
139b83dd
ME
253 CIO_MSG_EVENT(2, "SenseID : unknown device %04x on "
254 "subchannel 0.%x.%04x\n",
255 cdev->private->dev_id.devno,
256 sch->schid.ssid, sch->schid.sch_no);
1da177e4
LT
257 break;
258 case DEV_STATE_OFFLINE:
259 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID) {
260 same_dev = ccw_device_handle_oper(cdev);
261 notify = 1;
262 }
263 /* fill out sense information */
81388d2a 264 memset(&cdev->id, 0, sizeof(cdev->id));
292888c8
HC
265 cdev->id.cu_type = cdev->private->senseid.cu_type;
266 cdev->id.cu_model = cdev->private->senseid.cu_model;
267 cdev->id.dev_type = cdev->private->senseid.dev_type;
268 cdev->id.dev_model = cdev->private->senseid.dev_model;
1da177e4
LT
269 if (notify) {
270 cdev->private->state = DEV_STATE_OFFLINE;
271 if (same_dev) {
272 /* Get device online again. */
273 ccw_device_online(cdev);
274 wake_up(&cdev->private->wait_q);
275 }
276 return;
277 }
278 /* Issue device info message. */
139b83dd
ME
279 CIO_MSG_EVENT(4, "SenseID : device 0.%x.%04x reports: "
280 "CU Type/Mod = %04X/%02X, Dev Type/Mod = "
281 "%04X/%02X\n",
282 cdev->private->dev_id.ssid,
283 cdev->private->dev_id.devno,
284 cdev->id.cu_type, cdev->id.cu_model,
285 cdev->id.dev_type, cdev->id.dev_model);
1da177e4
LT
286 break;
287 case DEV_STATE_BOXED:
139b83dd
ME
288 CIO_MSG_EVENT(0, "SenseID : boxed device %04x on "
289 " subchannel 0.%x.%04x\n",
290 cdev->private->dev_id.devno,
291 sch->schid.ssid, sch->schid.sch_no);
1da177e4
LT
292 break;
293 }
294 cdev->private->state = state;
295 io_subchannel_recog_done(cdev);
296 if (state != DEV_STATE_NOT_OPER)
297 wake_up(&cdev->private->wait_q);
298}
299
300/*
301 * Function called from device_id.c after sense id has completed.
302 */
303void
304ccw_device_sense_id_done(struct ccw_device *cdev, int err)
305{
306 switch (err) {
307 case 0:
308 ccw_device_recog_done(cdev, DEV_STATE_OFFLINE);
309 break;
310 case -ETIME: /* Sense id stopped by timeout. */
311 ccw_device_recog_done(cdev, DEV_STATE_BOXED);
312 break;
313 default:
314 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
315 break;
316 }
317}
318
c820de39
CH
319int ccw_device_notify(struct ccw_device *cdev, int event)
320{
321 if (!cdev->drv)
322 return 0;
323 if (!cdev->online)
324 return 0;
325 return cdev->drv->notify ? cdev->drv->notify(cdev, event) : 0;
326}
327
1da177e4 328static void
c1637532 329ccw_device_oper_notify(struct work_struct *work)
1da177e4 330{
c1637532 331 struct ccw_device_private *priv;
1da177e4 332 struct ccw_device *cdev;
1da177e4 333 int ret;
ee04bbcc 334 unsigned long flags;
1da177e4 335
c1637532
MS
336 priv = container_of(work, struct ccw_device_private, kick_work);
337 cdev = priv->cdev;
c820de39 338 ret = ccw_device_notify(cdev, CIO_OPER);
ee04bbcc 339 spin_lock_irqsave(cdev->ccwlock, flags);
ee04bbcc 340 if (ret) {
94bb0633 341 /* Reenable channel measurements, if needed. */
ee04bbcc 342 spin_unlock_irqrestore(cdev->ccwlock, flags);
94bb0633 343 cmf_reenable(cdev);
ee04bbcc 344 spin_lock_irqsave(cdev->ccwlock, flags);
1da177e4 345 wake_up(&cdev->private->wait_q);
94bb0633 346 }
ee04bbcc
CH
347 spin_unlock_irqrestore(cdev->ccwlock, flags);
348 if (!ret)
349 /* Driver doesn't want device back. */
350 ccw_device_do_unreg_rereg(work);
1da177e4
LT
351}
352
353/*
354 * Finished with online/offline processing.
355 */
356static void
357ccw_device_done(struct ccw_device *cdev, int state)
358{
359 struct subchannel *sch;
360
361 sch = to_subchannel(cdev->dev.parent);
362
f1ee3281
CH
363 ccw_device_set_timeout(cdev, 0);
364
1da177e4
LT
365 if (state != DEV_STATE_ONLINE)
366 cio_disable_subchannel(sch);
367
368 /* Reset device status. */
369 memset(&cdev->private->irb, 0, sizeof(struct irb));
370
371 cdev->private->state = state;
372
373
374 if (state == DEV_STATE_BOXED)
139b83dd
ME
375 CIO_MSG_EVENT(0, "Boxed device %04x on subchannel %04x\n",
376 cdev->private->dev_id.devno, sch->schid.sch_no);
1da177e4
LT
377
378 if (cdev->private->flags.donotify) {
379 cdev->private->flags.donotify = 0;
c1637532 380 PREPARE_WORK(&cdev->private->kick_work, ccw_device_oper_notify);
1da177e4
LT
381 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
382 }
383 wake_up(&cdev->private->wait_q);
384
385 if (css_init_done && state != DEV_STATE_ONLINE)
386 put_device (&cdev->dev);
387}
388
4d284cac 389static int cmp_pgid(struct pgid *p1, struct pgid *p2)
7e560814
CH
390{
391 char *c1;
392 char *c2;
393
394 c1 = (char *)p1;
395 c2 = (char *)p2;
396
397 return memcmp(c1 + 1, c2 + 1, sizeof(struct pgid) - 1);
398}
399
400static void __ccw_device_get_common_pgid(struct ccw_device *cdev)
401{
402 int i;
403 int last;
404
405 last = 0;
406 for (i = 0; i < 8; i++) {
407 if (cdev->private->pgid[i].inf.ps.state1 == SNID_STATE1_RESET)
408 /* No PGID yet */
409 continue;
410 if (cdev->private->pgid[last].inf.ps.state1 ==
411 SNID_STATE1_RESET) {
412 /* First non-zero PGID */
413 last = i;
414 continue;
415 }
416 if (cmp_pgid(&cdev->private->pgid[i],
417 &cdev->private->pgid[last]) == 0)
418 /* Non-conflicting PGIDs */
419 continue;
420
421 /* PGID mismatch, can't pathgroup. */
422 CIO_MSG_EVENT(0, "SNID - pgid mismatch for device "
423 "0.%x.%04x, can't pathgroup\n",
78964268
CH
424 cdev->private->dev_id.ssid,
425 cdev->private->dev_id.devno);
7e560814
CH
426 cdev->private->options.pgroup = 0;
427 return;
428 }
429 if (cdev->private->pgid[last].inf.ps.state1 ==
430 SNID_STATE1_RESET)
431 /* No previous pgid found */
7c9f4e3a
CH
432 memcpy(&cdev->private->pgid[0],
433 &channel_subsystems[0]->global_pgid,
7e560814
CH
434 sizeof(struct pgid));
435 else
436 /* Use existing pgid */
437 memcpy(&cdev->private->pgid[0], &cdev->private->pgid[last],
438 sizeof(struct pgid));
439}
440
1da177e4
LT
441/*
442 * Function called from device_pgid.c after sense path ground has completed.
443 */
444void
445ccw_device_sense_pgid_done(struct ccw_device *cdev, int err)
446{
447 struct subchannel *sch;
448
449 sch = to_subchannel(cdev->dev.parent);
450 switch (err) {
7e560814
CH
451 case -EOPNOTSUPP: /* path grouping not supported, use nop instead. */
452 cdev->private->options.pgroup = 0;
453 break;
454 case 0: /* success */
455 case -EACCES: /* partial success, some paths not operational */
456 /* Check if all pgids are equal or 0. */
457 __ccw_device_get_common_pgid(cdev);
1da177e4
LT
458 break;
459 case -ETIME: /* Sense path group id stopped by timeout. */
460 case -EUSERS: /* device is reserved for someone else. */
461 ccw_device_done(cdev, DEV_STATE_BOXED);
7e560814 462 return;
1da177e4
LT
463 default:
464 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
7e560814 465 return;
1da177e4 466 }
7e560814 467 /* Start Path Group verification. */
7e560814 468 cdev->private->state = DEV_STATE_VERIFY;
28bdc6f6 469 cdev->private->flags.doverify = 0;
7e560814 470 ccw_device_verify_start(cdev);
1da177e4
LT
471}
472
473/*
474 * Start device recognition.
475 */
476int
477ccw_device_recognition(struct ccw_device *cdev)
478{
479 struct subchannel *sch;
480 int ret;
481
482 if ((cdev->private->state != DEV_STATE_NOT_OPER) &&
483 (cdev->private->state != DEV_STATE_BOXED))
484 return -EINVAL;
485 sch = to_subchannel(cdev->dev.parent);
edf22096 486 ret = cio_enable_subchannel(sch, (u32)(addr_t)sch);
1da177e4
LT
487 if (ret != 0)
488 /* Couldn't enable the subchannel for i/o. Sick device. */
489 return ret;
490
491 /* After 60s the device recognition is considered to have failed. */
492 ccw_device_set_timeout(cdev, 60*HZ);
493
494 /*
495 * We used to start here with a sense pgid to find out whether a device
496 * is locked by someone else. Unfortunately, the sense pgid command
497 * code has other meanings on devices predating the path grouping
498 * algorithm, so we start with sense id and box the device after an
499 * timeout (or if sense pgid during path verification detects the device
500 * is locked, as may happen on newer devices).
501 */
502 cdev->private->flags.recog_done = 0;
503 cdev->private->state = DEV_STATE_SENSE_ID;
504 ccw_device_sense_id_start(cdev);
505 return 0;
506}
507
508/*
509 * Handle timeout in device recognition.
510 */
511static void
512ccw_device_recog_timeout(struct ccw_device *cdev, enum dev_event dev_event)
513{
514 int ret;
515
516 ret = ccw_device_cancel_halt_clear(cdev);
517 switch (ret) {
518 case 0:
519 ccw_device_recog_done(cdev, DEV_STATE_BOXED);
520 break;
521 case -ENODEV:
522 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
523 break;
524 default:
525 ccw_device_set_timeout(cdev, 3*HZ);
526 }
527}
528
529
1da177e4
LT
530void
531ccw_device_verify_done(struct ccw_device *cdev, int err)
532{
28bdc6f6
PO
533 struct subchannel *sch;
534
535 sch = to_subchannel(cdev->dev.parent);
536 /* Update schib - pom may have changed. */
537 stsch(sch->schid, &sch->schib);
538 /* Update lpm with verified path mask. */
539 sch->lpm = sch->vpm;
540 /* Repeat path verification? */
541 if (cdev->private->flags.doverify) {
542 cdev->private->flags.doverify = 0;
543 ccw_device_verify_start(cdev);
544 return;
545 }
1da177e4
LT
546 switch (err) {
547 case -EOPNOTSUPP: /* path grouping not supported, just set online. */
548 cdev->private->options.pgroup = 0;
549 case 0:
550 ccw_device_done(cdev, DEV_STATE_ONLINE);
551 /* Deliver fake irb to device driver, if needed. */
552 if (cdev->private->flags.fake_irb) {
553 memset(&cdev->private->irb, 0, sizeof(struct irb));
23d805b6
PO
554 cdev->private->irb.scsw.cmd.cc = 1;
555 cdev->private->irb.scsw.cmd.fctl = SCSW_FCTL_START_FUNC;
556 cdev->private->irb.scsw.cmd.actl = SCSW_ACTL_START_PEND;
557 cdev->private->irb.scsw.cmd.stctl =
558 SCSW_STCTL_STATUS_PEND;
1da177e4
LT
559 cdev->private->flags.fake_irb = 0;
560 if (cdev->handler)
561 cdev->handler(cdev, cdev->private->intparm,
562 &cdev->private->irb);
563 memset(&cdev->private->irb, 0, sizeof(struct irb));
564 }
565 break;
566 case -ETIME:
8b42f5c2
PO
567 /* Reset oper notify indication after verify error. */
568 cdev->private->flags.donotify = 0;
1da177e4
LT
569 ccw_device_done(cdev, DEV_STATE_BOXED);
570 break;
571 default:
8b42f5c2
PO
572 /* Reset oper notify indication after verify error. */
573 cdev->private->flags.donotify = 0;
46258ab5
CH
574 if (cdev->online) {
575 ccw_device_set_timeout(cdev, 0);
3f4cf6e7 576 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
46258ab5 577 } else
ee04bbcc 578 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
1da177e4
LT
579 break;
580 }
581}
582
583/*
584 * Get device online.
585 */
586int
587ccw_device_online(struct ccw_device *cdev)
588{
589 struct subchannel *sch;
590 int ret;
591
592 if ((cdev->private->state != DEV_STATE_OFFLINE) &&
593 (cdev->private->state != DEV_STATE_BOXED))
594 return -EINVAL;
595 sch = to_subchannel(cdev->dev.parent);
596 if (css_init_done && !get_device(&cdev->dev))
597 return -ENODEV;
edf22096 598 ret = cio_enable_subchannel(sch, (u32)(addr_t)sch);
1da177e4
LT
599 if (ret != 0) {
600 /* Couldn't enable the subchannel for i/o. Sick device. */
601 if (ret == -ENODEV)
602 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
603 return ret;
604 }
605 /* Do we want to do path grouping? */
606 if (!cdev->private->options.pgroup) {
7e560814
CH
607 /* Start initial path verification. */
608 cdev->private->state = DEV_STATE_VERIFY;
28bdc6f6 609 cdev->private->flags.doverify = 0;
7e560814 610 ccw_device_verify_start(cdev);
1da177e4
LT
611 return 0;
612 }
613 /* Do a SensePGID first. */
614 cdev->private->state = DEV_STATE_SENSE_PGID;
615 ccw_device_sense_pgid_start(cdev);
616 return 0;
617}
618
619void
620ccw_device_disband_done(struct ccw_device *cdev, int err)
621{
622 switch (err) {
623 case 0:
624 ccw_device_done(cdev, DEV_STATE_OFFLINE);
625 break;
626 case -ETIME:
627 ccw_device_done(cdev, DEV_STATE_BOXED);
628 break;
629 default:
3ecb0a5a 630 cdev->private->flags.donotify = 0;
3f4cf6e7 631 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
1da177e4
LT
632 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
633 break;
634 }
635}
636
637/*
638 * Shutdown device.
639 */
640int
641ccw_device_offline(struct ccw_device *cdev)
642{
643 struct subchannel *sch;
644
d7b5a4c9
CH
645 if (ccw_device_is_orphan(cdev)) {
646 ccw_device_done(cdev, DEV_STATE_OFFLINE);
647 return 0;
648 }
1da177e4 649 sch = to_subchannel(cdev->dev.parent);
a8237fc4 650 if (stsch(sch->schid, &sch->schib) || !sch->schib.pmcw.dnv)
1da177e4 651 return -ENODEV;
23d805b6 652 if (scsw_actl(&sch->schib.scsw) != 0)
1da177e4 653 return -EBUSY;
23d805b6
PO
654 if (cdev->private->state != DEV_STATE_ONLINE)
655 return -EINVAL;
1da177e4
LT
656 /* Are we doing path grouping? */
657 if (!cdev->private->options.pgroup) {
658 /* No, set state offline immediately. */
659 ccw_device_done(cdev, DEV_STATE_OFFLINE);
660 return 0;
661 }
662 /* Start Set Path Group commands. */
663 cdev->private->state = DEV_STATE_DISBAND_PGID;
664 ccw_device_disband_start(cdev);
665 return 0;
666}
667
668/*
669 * Handle timeout in device online/offline process.
670 */
671static void
672ccw_device_onoff_timeout(struct ccw_device *cdev, enum dev_event dev_event)
673{
674 int ret;
675
676 ret = ccw_device_cancel_halt_clear(cdev);
677 switch (ret) {
678 case 0:
679 ccw_device_done(cdev, DEV_STATE_BOXED);
680 break;
681 case -ENODEV:
682 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
683 break;
684 default:
685 ccw_device_set_timeout(cdev, 3*HZ);
686 }
687}
688
689/*
690 * Handle not oper event in device recognition.
691 */
692static void
693ccw_device_recog_notoper(struct ccw_device *cdev, enum dev_event dev_event)
694{
695 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
696}
697
698/*
3f4cf6e7 699 * Handle not operational event in non-special state.
1da177e4 700 */
3f4cf6e7
CH
701static void ccw_device_generic_notoper(struct ccw_device *cdev,
702 enum dev_event dev_event)
1da177e4
LT
703{
704 struct subchannel *sch;
705
706 cdev->private->state = DEV_STATE_NOT_OPER;
707 sch = to_subchannel(cdev->dev.parent);
3f4cf6e7 708 css_schedule_eval(sch->schid);
1da177e4
LT
709}
710
711/*
712 * Handle path verification event.
713 */
714static void
715ccw_device_online_verify(struct ccw_device *cdev, enum dev_event dev_event)
716{
717 struct subchannel *sch;
718
1da177e4
LT
719 if (cdev->private->state == DEV_STATE_W4SENSE) {
720 cdev->private->flags.doverify = 1;
721 return;
722 }
723 sch = to_subchannel(cdev->dev.parent);
724 /*
725 * Since we might not just be coming from an interrupt from the
726 * subchannel we have to update the schib.
727 */
a8237fc4 728 stsch(sch->schid, &sch->schib);
1da177e4 729
23d805b6
PO
730 if (scsw_actl(&sch->schib.scsw) != 0 ||
731 (scsw_stctl(&sch->schib.scsw) & SCSW_STCTL_STATUS_PEND) ||
732 (scsw_stctl(&cdev->private->irb.scsw) & SCSW_STCTL_STATUS_PEND)) {
1da177e4
LT
733 /*
734 * No final status yet or final status not yet delivered
735 * to the device driver. Can't do path verfication now,
736 * delay until final status was delivered.
737 */
738 cdev->private->flags.doverify = 1;
739 return;
740 }
741 /* Device is idle, we can do the path verification. */
742 cdev->private->state = DEV_STATE_VERIFY;
28bdc6f6 743 cdev->private->flags.doverify = 0;
1da177e4
LT
744 ccw_device_verify_start(cdev);
745}
746
747/*
748 * Got an interrupt for a normal io (state online).
749 */
750static void
751ccw_device_irq(struct ccw_device *cdev, enum dev_event dev_event)
752{
753 struct irb *irb;
754
755 irb = (struct irb *) __LC_IRB;
756 /* Check for unsolicited interrupt. */
23d805b6
PO
757 if (!scsw_is_solicited(&irb->scsw)) {
758 if ((irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK) &&
1da177e4
LT
759 !irb->esw.esw0.erw.cons) {
760 /* Unit check but no sense data. Need basic sense. */
761 if (ccw_device_do_sense(cdev, irb) != 0)
762 goto call_handler_unsol;
e0ec5749 763 memcpy(&cdev->private->irb, irb, sizeof(struct irb));
1da177e4
LT
764 cdev->private->state = DEV_STATE_W4SENSE;
765 cdev->private->intparm = 0;
766 return;
767 }
768call_handler_unsol:
769 if (cdev->handler)
770 cdev->handler (cdev, 0, irb);
18374d37
CH
771 if (cdev->private->flags.doverify)
772 ccw_device_online_verify(cdev, 0);
1da177e4
LT
773 return;
774 }
775 /* Accumulate status and find out if a basic sense is needed. */
776 ccw_device_accumulate_irb(cdev, irb);
777 if (cdev->private->flags.dosense) {
778 if (ccw_device_do_sense(cdev, irb) == 0) {
779 cdev->private->state = DEV_STATE_W4SENSE;
780 }
781 return;
782 }
783 /* Call the handler. */
784 if (ccw_device_call_handler(cdev) && cdev->private->flags.doverify)
785 /* Start delayed path verification. */
786 ccw_device_online_verify(cdev, 0);
787}
788
789/*
790 * Got an timeout in online state.
791 */
792static void
793ccw_device_online_timeout(struct ccw_device *cdev, enum dev_event dev_event)
794{
795 int ret;
796
797 ccw_device_set_timeout(cdev, 0);
798 ret = ccw_device_cancel_halt_clear(cdev);
799 if (ret == -EBUSY) {
800 ccw_device_set_timeout(cdev, 3*HZ);
801 cdev->private->state = DEV_STATE_TIMEOUT_KILL;
802 return;
803 }
3f4cf6e7
CH
804 if (ret == -ENODEV)
805 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
806 else if (cdev->handler)
1da177e4
LT
807 cdev->handler(cdev, cdev->private->intparm,
808 ERR_PTR(-ETIMEDOUT));
809}
810
811/*
812 * Got an interrupt for a basic sense.
813 */
2b67fc46 814static void
1da177e4
LT
815ccw_device_w4sense(struct ccw_device *cdev, enum dev_event dev_event)
816{
817 struct irb *irb;
818
819 irb = (struct irb *) __LC_IRB;
820 /* Check for unsolicited interrupt. */
23d805b6
PO
821 if (scsw_stctl(&irb->scsw) ==
822 (SCSW_STCTL_STATUS_PEND | SCSW_STCTL_ALERT_STATUS)) {
823 if (scsw_cc(&irb->scsw) == 1)
1da177e4
LT
824 /* Basic sense hasn't started. Try again. */
825 ccw_device_do_sense(cdev, irb);
826 else {
139b83dd 827 CIO_MSG_EVENT(0, "0.%x.%04x: unsolicited "
e556bbbd
CH
828 "interrupt during w4sense...\n",
829 cdev->private->dev_id.ssid,
830 cdev->private->dev_id.devno);
1da177e4
LT
831 if (cdev->handler)
832 cdev->handler (cdev, 0, irb);
833 }
834 return;
835 }
3ba1998e
CH
836 /*
837 * Check if a halt or clear has been issued in the meanwhile. If yes,
838 * only deliver the halt/clear interrupt to the device driver as if it
839 * had killed the original request.
840 */
23d805b6
PO
841 if (scsw_fctl(&irb->scsw) &
842 (SCSW_FCTL_CLEAR_FUNC | SCSW_FCTL_HALT_FUNC)) {
d23861ff
CH
843 /* Retry Basic Sense if requested. */
844 if (cdev->private->flags.intretry) {
845 cdev->private->flags.intretry = 0;
846 ccw_device_do_sense(cdev, irb);
847 return;
848 }
3ba1998e
CH
849 cdev->private->flags.dosense = 0;
850 memset(&cdev->private->irb, 0, sizeof(struct irb));
851 ccw_device_accumulate_irb(cdev, irb);
852 goto call_handler;
853 }
1da177e4
LT
854 /* Add basic sense info to irb. */
855 ccw_device_accumulate_basic_sense(cdev, irb);
856 if (cdev->private->flags.dosense) {
857 /* Another basic sense is needed. */
858 ccw_device_do_sense(cdev, irb);
859 return;
860 }
3ba1998e 861call_handler:
1da177e4
LT
862 cdev->private->state = DEV_STATE_ONLINE;
863 /* Call the handler. */
864 if (ccw_device_call_handler(cdev) && cdev->private->flags.doverify)
865 /* Start delayed path verification. */
866 ccw_device_online_verify(cdev, 0);
867}
868
869static void
870ccw_device_clear_verify(struct ccw_device *cdev, enum dev_event dev_event)
871{
872 struct irb *irb;
873
874 irb = (struct irb *) __LC_IRB;
875 /* Accumulate status. We don't do basic sense. */
876 ccw_device_accumulate_irb(cdev, irb);
b4f7b1ee
CH
877 /* Remember to clear irb to avoid residuals. */
878 memset(&cdev->private->irb, 0, sizeof(struct irb));
1da177e4
LT
879 /* Try to start delayed device verification. */
880 ccw_device_online_verify(cdev, 0);
881 /* Note: Don't call handler for cio initiated clear! */
882}
883
884static void
885ccw_device_killing_irq(struct ccw_device *cdev, enum dev_event dev_event)
886{
887 struct subchannel *sch;
888
889 sch = to_subchannel(cdev->dev.parent);
890 ccw_device_set_timeout(cdev, 0);
7c8427c3
CH
891 /* Start delayed path verification. */
892 ccw_device_online_verify(cdev, 0);
1da177e4 893 /* OK, i/o is dead now. Call interrupt handler. */
1da177e4
LT
894 if (cdev->handler)
895 cdev->handler(cdev, cdev->private->intparm,
e7769b48 896 ERR_PTR(-EIO));
1da177e4
LT
897}
898
899static void
900ccw_device_killing_timeout(struct ccw_device *cdev, enum dev_event dev_event)
901{
902 int ret;
903
904 ret = ccw_device_cancel_halt_clear(cdev);
905 if (ret == -EBUSY) {
906 ccw_device_set_timeout(cdev, 3*HZ);
907 return;
908 }
7c8427c3
CH
909 /* Start delayed path verification. */
910 ccw_device_online_verify(cdev, 0);
1da177e4
LT
911 if (cdev->handler)
912 cdev->handler(cdev, cdev->private->intparm,
e7769b48 913 ERR_PTR(-EIO));
1da177e4
LT
914}
915
c820de39 916void ccw_device_kill_io(struct ccw_device *cdev)
1da177e4
LT
917{
918 int ret;
1da177e4 919
1da177e4
LT
920 ret = ccw_device_cancel_halt_clear(cdev);
921 if (ret == -EBUSY) {
922 ccw_device_set_timeout(cdev, 3*HZ);
923 cdev->private->state = DEV_STATE_TIMEOUT_KILL;
924 return;
925 }
7c8427c3
CH
926 /* Start delayed path verification. */
927 ccw_device_online_verify(cdev, 0);
1da177e4
LT
928 if (cdev->handler)
929 cdev->handler(cdev, cdev->private->intparm,
e7769b48 930 ERR_PTR(-EIO));
1da177e4
LT
931}
932
933static void
28bdc6f6 934ccw_device_delay_verify(struct ccw_device *cdev, enum dev_event dev_event)
1da177e4 935{
28bdc6f6 936 /* Start verification after current task finished. */
7e560814 937 cdev->private->flags.doverify = 1;
1da177e4
LT
938}
939
940static void
941ccw_device_stlck_done(struct ccw_device *cdev, enum dev_event dev_event)
942{
943 struct irb *irb;
944
945 switch (dev_event) {
946 case DEV_EVENT_INTERRUPT:
947 irb = (struct irb *) __LC_IRB;
948 /* Check for unsolicited interrupt. */
23d805b6 949 if ((scsw_stctl(&irb->scsw) ==
1da177e4 950 (SCSW_STCTL_STATUS_PEND | SCSW_STCTL_ALERT_STATUS)) &&
23d805b6 951 (!scsw_cc(&irb->scsw)))
1da177e4
LT
952 /* FIXME: we should restart stlck here, but this
953 * is extremely unlikely ... */
954 goto out_wakeup;
955
956 ccw_device_accumulate_irb(cdev, irb);
957 /* We don't care about basic sense etc. */
958 break;
959 default: /* timeout */
960 break;
961 }
962out_wakeup:
963 wake_up(&cdev->private->wait_q);
964}
965
966static void
967ccw_device_start_id(struct ccw_device *cdev, enum dev_event dev_event)
968{
969 struct subchannel *sch;
970
971 sch = to_subchannel(cdev->dev.parent);
edf22096 972 if (cio_enable_subchannel(sch, (u32)(addr_t)sch) != 0)
1da177e4
LT
973 /* Couldn't enable the subchannel for i/o. Sick device. */
974 return;
975
976 /* After 60s the device recognition is considered to have failed. */
977 ccw_device_set_timeout(cdev, 60*HZ);
978
979 cdev->private->state = DEV_STATE_DISCONNECTED_SENSE_ID;
980 ccw_device_sense_id_start(cdev);
981}
982
c820de39 983void ccw_device_trigger_reprobe(struct ccw_device *cdev)
1da177e4 984{
c820de39 985 struct subchannel *sch;
1da177e4 986
1da177e4
LT
987 if (cdev->private->state != DEV_STATE_DISCONNECTED)
988 return;
989
c820de39 990 sch = to_subchannel(cdev->dev.parent);
1da177e4 991 /* Update some values. */
a8237fc4 992 if (stsch(sch->schid, &sch->schib))
1da177e4 993 return;
7674da77
CH
994 if (!sch->schib.pmcw.dnv)
995 return;
1da177e4
LT
996 /*
997 * The pim, pam, pom values may not be accurate, but they are the best
998 * we have before performing device selection :/
999 */
28bdc6f6 1000 sch->lpm = sch->schib.pmcw.pam & sch->opm;
1da177e4 1001 /* Re-set some bits in the pmcw that were lost. */
1da177e4
LT
1002 sch->schib.pmcw.csense = 1;
1003 sch->schib.pmcw.ena = 0;
1004 if ((sch->lpm & (sch->lpm - 1)) != 0)
1005 sch->schib.pmcw.mp = 1;
1da177e4 1006 /* We should also udate ssd info, but this has to wait. */
d7b5a4c9
CH
1007 /* Check if this is another device which appeared on the same sch. */
1008 if (sch->schib.pmcw.dev != cdev->private->dev_id.devno) {
1009 PREPARE_WORK(&cdev->private->kick_work,
1010 ccw_device_move_to_orphanage);
c5d4a999 1011 queue_work(slow_path_wq, &cdev->private->kick_work);
d7b5a4c9
CH
1012 } else
1013 ccw_device_start_id(cdev, 0);
1da177e4
LT
1014}
1015
1016static void
1017ccw_device_offline_irq(struct ccw_device *cdev, enum dev_event dev_event)
1018{
1019 struct subchannel *sch;
1020
1021 sch = to_subchannel(cdev->dev.parent);
1022 /*
1023 * An interrupt in state offline means a previous disable was not
1024 * successful. Try again.
1025 */
1026 cio_disable_subchannel(sch);
1027}
1028
1029static void
1030ccw_device_change_cmfstate(struct ccw_device *cdev, enum dev_event dev_event)
1031{
1032 retry_set_schib(cdev);
1033 cdev->private->state = DEV_STATE_ONLINE;
1034 dev_fsm_event(cdev, dev_event);
1035}
1036
94bb0633
CH
1037static void ccw_device_update_cmfblock(struct ccw_device *cdev,
1038 enum dev_event dev_event)
1039{
1040 cmf_retry_copy_block(cdev);
1041 cdev->private->state = DEV_STATE_ONLINE;
1042 dev_fsm_event(cdev, dev_event);
1043}
1da177e4
LT
1044
1045static void
1046ccw_device_quiesce_done(struct ccw_device *cdev, enum dev_event dev_event)
1047{
1048 ccw_device_set_timeout(cdev, 0);
1049 if (dev_event == DEV_EVENT_NOTOPER)
1050 cdev->private->state = DEV_STATE_NOT_OPER;
1051 else
1052 cdev->private->state = DEV_STATE_OFFLINE;
1053 wake_up(&cdev->private->wait_q);
1054}
1055
1056static void
1057ccw_device_quiesce_timeout(struct ccw_device *cdev, enum dev_event dev_event)
1058{
1059 int ret;
1060
1061 ret = ccw_device_cancel_halt_clear(cdev);
1062 switch (ret) {
1063 case 0:
1064 cdev->private->state = DEV_STATE_OFFLINE;
1065 wake_up(&cdev->private->wait_q);
1066 break;
1067 case -ENODEV:
1068 cdev->private->state = DEV_STATE_NOT_OPER;
1069 wake_up(&cdev->private->wait_q);
1070 break;
1071 default:
1072 ccw_device_set_timeout(cdev, HZ/10);
1073 }
1074}
1075
1076/*
1077 * No operation action. This is used e.g. to ignore a timeout event in
1078 * state offline.
1079 */
1080static void
1081ccw_device_nop(struct ccw_device *cdev, enum dev_event dev_event)
1082{
1083}
1084
1085/*
1086 * Bug operation action.
1087 */
1088static void
1089ccw_device_bug(struct ccw_device *cdev, enum dev_event dev_event)
1090{
139b83dd
ME
1091 CIO_MSG_EVENT(0, "Internal state [%i][%i] not handled for device "
1092 "0.%x.%04x\n", cdev->private->state, dev_event,
1093 cdev->private->dev_id.ssid,
1094 cdev->private->dev_id.devno);
1da177e4
LT
1095 BUG();
1096}
1097
1098/*
1099 * device statemachine
1100 */
1101fsm_func_t *dev_jumptable[NR_DEV_STATES][NR_DEV_EVENTS] = {
1102 [DEV_STATE_NOT_OPER] = {
1103 [DEV_EVENT_NOTOPER] = ccw_device_nop,
1104 [DEV_EVENT_INTERRUPT] = ccw_device_bug,
1105 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1106 [DEV_EVENT_VERIFY] = ccw_device_nop,
1107 },
1108 [DEV_STATE_SENSE_PGID] = {
3f4cf6e7 1109 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
1da177e4
LT
1110 [DEV_EVENT_INTERRUPT] = ccw_device_sense_pgid_irq,
1111 [DEV_EVENT_TIMEOUT] = ccw_device_onoff_timeout,
1112 [DEV_EVENT_VERIFY] = ccw_device_nop,
1113 },
1114 [DEV_STATE_SENSE_ID] = {
1115 [DEV_EVENT_NOTOPER] = ccw_device_recog_notoper,
1116 [DEV_EVENT_INTERRUPT] = ccw_device_sense_id_irq,
1117 [DEV_EVENT_TIMEOUT] = ccw_device_recog_timeout,
1118 [DEV_EVENT_VERIFY] = ccw_device_nop,
1119 },
1120 [DEV_STATE_OFFLINE] = {
3f4cf6e7 1121 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
1da177e4
LT
1122 [DEV_EVENT_INTERRUPT] = ccw_device_offline_irq,
1123 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1124 [DEV_EVENT_VERIFY] = ccw_device_nop,
1125 },
1126 [DEV_STATE_VERIFY] = {
3f4cf6e7 1127 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
1da177e4
LT
1128 [DEV_EVENT_INTERRUPT] = ccw_device_verify_irq,
1129 [DEV_EVENT_TIMEOUT] = ccw_device_onoff_timeout,
28bdc6f6 1130 [DEV_EVENT_VERIFY] = ccw_device_delay_verify,
1da177e4
LT
1131 },
1132 [DEV_STATE_ONLINE] = {
3f4cf6e7 1133 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
1da177e4
LT
1134 [DEV_EVENT_INTERRUPT] = ccw_device_irq,
1135 [DEV_EVENT_TIMEOUT] = ccw_device_online_timeout,
1136 [DEV_EVENT_VERIFY] = ccw_device_online_verify,
1137 },
1138 [DEV_STATE_W4SENSE] = {
3f4cf6e7 1139 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
1da177e4
LT
1140 [DEV_EVENT_INTERRUPT] = ccw_device_w4sense,
1141 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1142 [DEV_EVENT_VERIFY] = ccw_device_online_verify,
1143 },
1144 [DEV_STATE_DISBAND_PGID] = {
3f4cf6e7 1145 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
1da177e4
LT
1146 [DEV_EVENT_INTERRUPT] = ccw_device_disband_irq,
1147 [DEV_EVENT_TIMEOUT] = ccw_device_onoff_timeout,
1148 [DEV_EVENT_VERIFY] = ccw_device_nop,
1149 },
1150 [DEV_STATE_BOXED] = {
3f4cf6e7 1151 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
1da177e4
LT
1152 [DEV_EVENT_INTERRUPT] = ccw_device_stlck_done,
1153 [DEV_EVENT_TIMEOUT] = ccw_device_stlck_done,
1154 [DEV_EVENT_VERIFY] = ccw_device_nop,
1155 },
1156 /* states to wait for i/o completion before doing something */
1157 [DEV_STATE_CLEAR_VERIFY] = {
3f4cf6e7 1158 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
1da177e4
LT
1159 [DEV_EVENT_INTERRUPT] = ccw_device_clear_verify,
1160 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1161 [DEV_EVENT_VERIFY] = ccw_device_nop,
1162 },
1163 [DEV_STATE_TIMEOUT_KILL] = {
3f4cf6e7 1164 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
1da177e4
LT
1165 [DEV_EVENT_INTERRUPT] = ccw_device_killing_irq,
1166 [DEV_EVENT_TIMEOUT] = ccw_device_killing_timeout,
1167 [DEV_EVENT_VERIFY] = ccw_device_nop, //FIXME
1168 },
1da177e4
LT
1169 [DEV_STATE_QUIESCE] = {
1170 [DEV_EVENT_NOTOPER] = ccw_device_quiesce_done,
1171 [DEV_EVENT_INTERRUPT] = ccw_device_quiesce_done,
1172 [DEV_EVENT_TIMEOUT] = ccw_device_quiesce_timeout,
1173 [DEV_EVENT_VERIFY] = ccw_device_nop,
1174 },
1175 /* special states for devices gone not operational */
1176 [DEV_STATE_DISCONNECTED] = {
1177 [DEV_EVENT_NOTOPER] = ccw_device_nop,
1178 [DEV_EVENT_INTERRUPT] = ccw_device_start_id,
1179 [DEV_EVENT_TIMEOUT] = ccw_device_bug,
28bdc6f6 1180 [DEV_EVENT_VERIFY] = ccw_device_start_id,
1da177e4
LT
1181 },
1182 [DEV_STATE_DISCONNECTED_SENSE_ID] = {
1183 [DEV_EVENT_NOTOPER] = ccw_device_recog_notoper,
1184 [DEV_EVENT_INTERRUPT] = ccw_device_sense_id_irq,
1185 [DEV_EVENT_TIMEOUT] = ccw_device_recog_timeout,
1186 [DEV_EVENT_VERIFY] = ccw_device_nop,
1187 },
1188 [DEV_STATE_CMFCHANGE] = {
1189 [DEV_EVENT_NOTOPER] = ccw_device_change_cmfstate,
1190 [DEV_EVENT_INTERRUPT] = ccw_device_change_cmfstate,
1191 [DEV_EVENT_TIMEOUT] = ccw_device_change_cmfstate,
1192 [DEV_EVENT_VERIFY] = ccw_device_change_cmfstate,
1193 },
94bb0633
CH
1194 [DEV_STATE_CMFUPDATE] = {
1195 [DEV_EVENT_NOTOPER] = ccw_device_update_cmfblock,
1196 [DEV_EVENT_INTERRUPT] = ccw_device_update_cmfblock,
1197 [DEV_EVENT_TIMEOUT] = ccw_device_update_cmfblock,
1198 [DEV_EVENT_VERIFY] = ccw_device_update_cmfblock,
1199 },
1da177e4
LT
1200};
1201
1da177e4 1202EXPORT_SYMBOL_GPL(ccw_device_set_timeout);