2 * drivers/s390/cio/device_fsm.c
3 * finite state machine for device handling
5 * Copyright (C) 2002 IBM Deutschland Entwicklung GmbH,
7 * Author(s): Cornelia Huck (cornelia.huck@de.ibm.com)
8 * Martin Schwidefsky (schwidefsky@de.ibm.com)
11 #include <linux/module.h>
12 #include <linux/config.h>
13 #include <linux/init.h>
14 #include <linux/jiffies.h>
15 #include <linux/string.h>
17 #include <asm/ccwdev.h>
21 #include "cio_debug.h"
28 device_is_online(struct subchannel *sch)
30 struct ccw_device *cdev;
32 if (!sch->dev.driver_data)
34 cdev = sch->dev.driver_data;
35 return (cdev->private->state == DEV_STATE_ONLINE);
39 device_is_disconnected(struct subchannel *sch)
41 struct ccw_device *cdev;
43 if (!sch->dev.driver_data)
45 cdev = sch->dev.driver_data;
46 return (cdev->private->state == DEV_STATE_DISCONNECTED ||
47 cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID);
51 device_set_disconnected(struct subchannel *sch)
53 struct ccw_device *cdev;
55 if (!sch->dev.driver_data)
57 cdev = sch->dev.driver_data;
58 ccw_device_set_timeout(cdev, 0);
59 cdev->private->flags.fake_irb = 0;
60 cdev->private->state = DEV_STATE_DISCONNECTED;
64 device_set_waiting(struct subchannel *sch)
66 struct ccw_device *cdev;
68 if (!sch->dev.driver_data)
70 cdev = sch->dev.driver_data;
71 ccw_device_set_timeout(cdev, 10*HZ);
72 cdev->private->state = DEV_STATE_WAIT4IO;
76 * Timeout function. It just triggers a DEV_EVENT_TIMEOUT.
79 ccw_device_timeout(unsigned long data)
81 struct ccw_device *cdev;
83 cdev = (struct ccw_device *) data;
84 spin_lock_irq(cdev->ccwlock);
85 dev_fsm_event(cdev, DEV_EVENT_TIMEOUT);
86 spin_unlock_irq(cdev->ccwlock);
93 ccw_device_set_timeout(struct ccw_device *cdev, int expires)
96 del_timer(&cdev->private->timer);
99 if (timer_pending(&cdev->private->timer)) {
100 if (mod_timer(&cdev->private->timer, jiffies + expires))
103 cdev->private->timer.function = ccw_device_timeout;
104 cdev->private->timer.data = (unsigned long) cdev;
105 cdev->private->timer.expires = jiffies + expires;
106 add_timer(&cdev->private->timer);
109 /* Kill any pending timers after machine check. */
111 device_kill_pending_timer(struct subchannel *sch)
113 struct ccw_device *cdev;
115 if (!sch->dev.driver_data)
117 cdev = sch->dev.driver_data;
118 ccw_device_set_timeout(cdev, 0);
122 * Cancel running i/o. This is called repeatedly since halt/clear are
123 * asynchronous operations. We do one try with cio_cancel, two tries
124 * with cio_halt, 255 tries with cio_clear. If everythings fails panic.
125 * Returns 0 if device now idle, -ENODEV for device not operational and
126 * -EBUSY if an interrupt is expected (either from halt/clear or from a
130 ccw_device_cancel_halt_clear(struct ccw_device *cdev)
132 struct subchannel *sch;
135 sch = to_subchannel(cdev->dev.parent);
136 ret = stsch(sch->schid, &sch->schib);
137 if (ret || !sch->schib.pmcw.dnv)
139 if (!sch->schib.pmcw.ena || sch->schib.scsw.actl == 0)
140 /* Not operational or no activity -> done. */
142 /* Stage 1: cancel io. */
143 if (!(sch->schib.scsw.actl & SCSW_ACTL_HALT_PEND) &&
144 !(sch->schib.scsw.actl & SCSW_ACTL_CLEAR_PEND)) {
145 ret = cio_cancel(sch);
148 /* cancel io unsuccessful. From now on it is asynchronous. */
149 cdev->private->iretry = 3; /* 3 halt retries. */
151 if (!(sch->schib.scsw.actl & SCSW_ACTL_CLEAR_PEND)) {
152 /* Stage 2: halt io. */
153 if (cdev->private->iretry) {
154 cdev->private->iretry--;
156 return (ret == 0) ? -EBUSY : ret;
158 /* halt io unsuccessful. */
159 cdev->private->iretry = 255; /* 255 clear retries. */
161 /* Stage 3: clear io. */
162 if (cdev->private->iretry) {
163 cdev->private->iretry--;
164 ret = cio_clear (sch);
165 return (ret == 0) ? -EBUSY : ret;
167 panic("Can't stop i/o on subchannel.\n");
171 ccw_device_handle_oper(struct ccw_device *cdev)
173 struct subchannel *sch;
175 sch = to_subchannel(cdev->dev.parent);
176 cdev->private->flags.recog_done = 1;
178 * Check if cu type and device type still match. If
179 * not, it is certainly another device and we have to
180 * de- and re-register. Also check here for non-matching devno.
182 if (cdev->id.cu_type != cdev->private->senseid.cu_type ||
183 cdev->id.cu_model != cdev->private->senseid.cu_model ||
184 cdev->id.dev_type != cdev->private->senseid.dev_type ||
185 cdev->id.dev_model != cdev->private->senseid.dev_model ||
186 cdev->private->devno != sch->schib.pmcw.dev) {
187 PREPARE_WORK(&cdev->private->kick_work,
188 ccw_device_do_unreg_rereg, (void *)cdev);
189 queue_work(ccw_device_work, &cdev->private->kick_work);
192 cdev->private->flags.donotify = 1;
197 * The machine won't give us any notification by machine check if a chpid has
198 * been varied online on the SE so we have to find out by magic (i. e. driving
199 * the channel subsystem to device selection and updating our path masks).
202 __recover_lost_chpids(struct subchannel *sch, int old_lpm)
206 for (i = 0; i<8; i++) {
208 if (!(sch->lpm & mask))
212 chpid_is_actually_online(sch->schib.pmcw.chpid[i]);
217 * Stop device recognition.
220 ccw_device_recog_done(struct ccw_device *cdev, int state)
222 struct subchannel *sch;
223 int notify, old_lpm, same_dev;
225 sch = to_subchannel(cdev->dev.parent);
227 ccw_device_set_timeout(cdev, 0);
228 cio_disable_subchannel(sch);
230 * Now that we tried recognition, we have performed device selection
231 * through ssch() and the path information is up to date.
234 stsch(sch->schid, &sch->schib);
235 sch->lpm = sch->schib.pmcw.pim &
236 sch->schib.pmcw.pam &
237 sch->schib.pmcw.pom &
239 /* Check since device may again have become not operational. */
240 if (!sch->schib.pmcw.dnv)
241 state = DEV_STATE_NOT_OPER;
242 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID)
243 /* Force reprobe on all chpids. */
245 if (sch->lpm != old_lpm)
246 __recover_lost_chpids(sch, old_lpm);
247 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID) {
248 if (state == DEV_STATE_NOT_OPER) {
249 cdev->private->flags.recog_done = 1;
250 cdev->private->state = DEV_STATE_DISCONNECTED;
253 /* Boxed devices don't need extra treatment. */
256 same_dev = 0; /* Keep the compiler quiet... */
258 case DEV_STATE_NOT_OPER:
259 CIO_DEBUG(KERN_WARNING, 2,
260 "SenseID : unknown device %04x on subchannel "
261 "0.%x.%04x\n", cdev->private->devno,
262 sch->schid.ssid, sch->schid.sch_no);
264 case DEV_STATE_OFFLINE:
265 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID) {
266 same_dev = ccw_device_handle_oper(cdev);
269 /* fill out sense information */
270 cdev->id = (struct ccw_device_id) {
271 .cu_type = cdev->private->senseid.cu_type,
272 .cu_model = cdev->private->senseid.cu_model,
273 .dev_type = cdev->private->senseid.dev_type,
274 .dev_model = cdev->private->senseid.dev_model,
277 cdev->private->state = DEV_STATE_OFFLINE;
279 /* Get device online again. */
280 ccw_device_online(cdev);
281 wake_up(&cdev->private->wait_q);
285 /* Issue device info message. */
286 CIO_DEBUG(KERN_INFO, 2, "SenseID : device 0.%x.%04x reports: "
287 "CU Type/Mod = %04X/%02X, Dev Type/Mod = "
289 cdev->private->ssid, cdev->private->devno,
290 cdev->id.cu_type, cdev->id.cu_model,
291 cdev->id.dev_type, cdev->id.dev_model);
293 case DEV_STATE_BOXED:
294 CIO_DEBUG(KERN_WARNING, 2,
295 "SenseID : boxed device %04x on subchannel "
296 "0.%x.%04x\n", cdev->private->devno,
297 sch->schid.ssid, sch->schid.sch_no);
300 cdev->private->state = state;
301 io_subchannel_recog_done(cdev);
302 if (state != DEV_STATE_NOT_OPER)
303 wake_up(&cdev->private->wait_q);
307 * Function called from device_id.c after sense id has completed.
310 ccw_device_sense_id_done(struct ccw_device *cdev, int err)
314 ccw_device_recog_done(cdev, DEV_STATE_OFFLINE);
316 case -ETIME: /* Sense id stopped by timeout. */
317 ccw_device_recog_done(cdev, DEV_STATE_BOXED);
320 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
326 ccw_device_oper_notify(void *data)
328 struct ccw_device *cdev;
329 struct subchannel *sch;
332 cdev = (struct ccw_device *)data;
333 sch = to_subchannel(cdev->dev.parent);
334 ret = (sch->driver && sch->driver->notify) ?
335 sch->driver->notify(&sch->dev, CIO_OPER) : 0;
337 /* Driver doesn't want device back. */
338 ccw_device_do_unreg_rereg((void *)cdev);
340 wake_up(&cdev->private->wait_q);
344 * Finished with online/offline processing.
347 ccw_device_done(struct ccw_device *cdev, int state)
349 struct subchannel *sch;
351 sch = to_subchannel(cdev->dev.parent);
353 if (state != DEV_STATE_ONLINE)
354 cio_disable_subchannel(sch);
356 /* Reset device status. */
357 memset(&cdev->private->irb, 0, sizeof(struct irb));
359 cdev->private->state = state;
362 if (state == DEV_STATE_BOXED)
363 CIO_DEBUG(KERN_WARNING, 2,
364 "Boxed device %04x on subchannel %04x\n",
365 cdev->private->devno, sch->schid.sch_no);
367 if (cdev->private->flags.donotify) {
368 cdev->private->flags.donotify = 0;
369 PREPARE_WORK(&cdev->private->kick_work, ccw_device_oper_notify,
371 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
373 wake_up(&cdev->private->wait_q);
375 if (css_init_done && state != DEV_STATE_ONLINE)
376 put_device (&cdev->dev);
380 * Function called from device_pgid.c after sense path ground has completed.
383 ccw_device_sense_pgid_done(struct ccw_device *cdev, int err)
385 struct subchannel *sch;
387 sch = to_subchannel(cdev->dev.parent);
390 /* Start Path Group verification. */
391 sch->vpm = 0; /* Start with no path groups set. */
392 cdev->private->state = DEV_STATE_VERIFY;
393 ccw_device_verify_start(cdev);
395 case -ETIME: /* Sense path group id stopped by timeout. */
396 case -EUSERS: /* device is reserved for someone else. */
397 ccw_device_done(cdev, DEV_STATE_BOXED);
399 case -EOPNOTSUPP: /* path grouping not supported, just set online. */
400 cdev->private->options.pgroup = 0;
401 ccw_device_done(cdev, DEV_STATE_ONLINE);
404 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
410 * Start device recognition.
413 ccw_device_recognition(struct ccw_device *cdev)
415 struct subchannel *sch;
418 if ((cdev->private->state != DEV_STATE_NOT_OPER) &&
419 (cdev->private->state != DEV_STATE_BOXED))
421 sch = to_subchannel(cdev->dev.parent);
422 ret = cio_enable_subchannel(sch, sch->schib.pmcw.isc);
424 /* Couldn't enable the subchannel for i/o. Sick device. */
427 /* After 60s the device recognition is considered to have failed. */
428 ccw_device_set_timeout(cdev, 60*HZ);
431 * We used to start here with a sense pgid to find out whether a device
432 * is locked by someone else. Unfortunately, the sense pgid command
433 * code has other meanings on devices predating the path grouping
434 * algorithm, so we start with sense id and box the device after an
435 * timeout (or if sense pgid during path verification detects the device
436 * is locked, as may happen on newer devices).
438 cdev->private->flags.recog_done = 0;
439 cdev->private->state = DEV_STATE_SENSE_ID;
440 ccw_device_sense_id_start(cdev);
445 * Handle timeout in device recognition.
448 ccw_device_recog_timeout(struct ccw_device *cdev, enum dev_event dev_event)
452 ret = ccw_device_cancel_halt_clear(cdev);
455 ccw_device_recog_done(cdev, DEV_STATE_BOXED);
458 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
461 ccw_device_set_timeout(cdev, 3*HZ);
467 ccw_device_nopath_notify(void *data)
469 struct ccw_device *cdev;
470 struct subchannel *sch;
473 cdev = (struct ccw_device *)data;
474 sch = to_subchannel(cdev->dev.parent);
478 ret = (sch->driver && sch->driver->notify) ?
479 sch->driver->notify(&sch->dev, CIO_NO_PATH) : 0;
481 if (get_device(&sch->dev)) {
482 /* Driver doesn't want to keep device. */
483 cio_disable_subchannel(sch);
484 if (get_device(&cdev->dev)) {
485 PREPARE_WORK(&cdev->private->kick_work,
486 ccw_device_call_sch_unregister,
488 queue_work(ccw_device_work,
489 &cdev->private->kick_work);
491 put_device(&sch->dev);
494 cio_disable_subchannel(sch);
495 ccw_device_set_timeout(cdev, 0);
496 cdev->private->flags.fake_irb = 0;
497 cdev->private->state = DEV_STATE_DISCONNECTED;
498 wake_up(&cdev->private->wait_q);
503 ccw_device_verify_done(struct ccw_device *cdev, int err)
505 cdev->private->flags.doverify = 0;
507 case -EOPNOTSUPP: /* path grouping not supported, just set online. */
508 cdev->private->options.pgroup = 0;
510 ccw_device_done(cdev, DEV_STATE_ONLINE);
511 /* Deliver fake irb to device driver, if needed. */
512 if (cdev->private->flags.fake_irb) {
513 memset(&cdev->private->irb, 0, sizeof(struct irb));
514 cdev->private->irb.scsw = (struct scsw) {
516 .fctl = SCSW_FCTL_START_FUNC,
517 .actl = SCSW_ACTL_START_PEND,
518 .stctl = SCSW_STCTL_STATUS_PEND,
520 cdev->private->flags.fake_irb = 0;
522 cdev->handler(cdev, cdev->private->intparm,
523 &cdev->private->irb);
524 memset(&cdev->private->irb, 0, sizeof(struct irb));
528 ccw_device_done(cdev, DEV_STATE_BOXED);
531 PREPARE_WORK(&cdev->private->kick_work,
532 ccw_device_nopath_notify, (void *)cdev);
533 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
534 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
543 ccw_device_online(struct ccw_device *cdev)
545 struct subchannel *sch;
548 if ((cdev->private->state != DEV_STATE_OFFLINE) &&
549 (cdev->private->state != DEV_STATE_BOXED))
551 sch = to_subchannel(cdev->dev.parent);
552 if (css_init_done && !get_device(&cdev->dev))
554 ret = cio_enable_subchannel(sch, sch->schib.pmcw.isc);
556 /* Couldn't enable the subchannel for i/o. Sick device. */
558 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
561 /* Do we want to do path grouping? */
562 if (!cdev->private->options.pgroup) {
563 /* No, set state online immediately. */
564 ccw_device_done(cdev, DEV_STATE_ONLINE);
567 /* Do a SensePGID first. */
568 cdev->private->state = DEV_STATE_SENSE_PGID;
569 ccw_device_sense_pgid_start(cdev);
574 ccw_device_disband_done(struct ccw_device *cdev, int err)
578 ccw_device_done(cdev, DEV_STATE_OFFLINE);
581 ccw_device_done(cdev, DEV_STATE_BOXED);
584 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
593 ccw_device_offline(struct ccw_device *cdev)
595 struct subchannel *sch;
597 sch = to_subchannel(cdev->dev.parent);
598 if (stsch(sch->schid, &sch->schib) || !sch->schib.pmcw.dnv)
600 if (cdev->private->state != DEV_STATE_ONLINE) {
601 if (sch->schib.scsw.actl != 0)
605 if (sch->schib.scsw.actl != 0)
607 /* Are we doing path grouping? */
608 if (!cdev->private->options.pgroup) {
609 /* No, set state offline immediately. */
610 ccw_device_done(cdev, DEV_STATE_OFFLINE);
613 /* Start Set Path Group commands. */
614 cdev->private->state = DEV_STATE_DISBAND_PGID;
615 ccw_device_disband_start(cdev);
620 * Handle timeout in device online/offline process.
623 ccw_device_onoff_timeout(struct ccw_device *cdev, enum dev_event dev_event)
627 ret = ccw_device_cancel_halt_clear(cdev);
630 ccw_device_done(cdev, DEV_STATE_BOXED);
633 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
636 ccw_device_set_timeout(cdev, 3*HZ);
641 * Handle not oper event in device recognition.
644 ccw_device_recog_notoper(struct ccw_device *cdev, enum dev_event dev_event)
646 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
650 * Handle not operational event while offline.
653 ccw_device_offline_notoper(struct ccw_device *cdev, enum dev_event dev_event)
655 struct subchannel *sch;
657 cdev->private->state = DEV_STATE_NOT_OPER;
658 sch = to_subchannel(cdev->dev.parent);
659 if (get_device(&cdev->dev)) {
660 PREPARE_WORK(&cdev->private->kick_work,
661 ccw_device_call_sch_unregister, (void *)cdev);
662 queue_work(ccw_device_work, &cdev->private->kick_work);
664 wake_up(&cdev->private->wait_q);
668 * Handle not operational event while online.
671 ccw_device_online_notoper(struct ccw_device *cdev, enum dev_event dev_event)
673 struct subchannel *sch;
675 sch = to_subchannel(cdev->dev.parent);
676 if (sch->driver->notify &&
677 sch->driver->notify(&sch->dev, sch->lpm ? CIO_GONE : CIO_NO_PATH)) {
678 ccw_device_set_timeout(cdev, 0);
679 cdev->private->flags.fake_irb = 0;
680 cdev->private->state = DEV_STATE_DISCONNECTED;
681 wake_up(&cdev->private->wait_q);
684 cdev->private->state = DEV_STATE_NOT_OPER;
685 cio_disable_subchannel(sch);
686 if (sch->schib.scsw.actl != 0) {
687 // FIXME: not-oper indication to device driver ?
688 ccw_device_call_handler(cdev);
690 if (get_device(&cdev->dev)) {
691 PREPARE_WORK(&cdev->private->kick_work,
692 ccw_device_call_sch_unregister, (void *)cdev);
693 queue_work(ccw_device_work, &cdev->private->kick_work);
695 wake_up(&cdev->private->wait_q);
699 * Handle path verification event.
702 ccw_device_online_verify(struct ccw_device *cdev, enum dev_event dev_event)
704 struct subchannel *sch;
706 if (!cdev->private->options.pgroup)
708 if (cdev->private->state == DEV_STATE_W4SENSE) {
709 cdev->private->flags.doverify = 1;
712 sch = to_subchannel(cdev->dev.parent);
714 * Since we might not just be coming from an interrupt from the
715 * subchannel we have to update the schib.
717 stsch(sch->schid, &sch->schib);
719 if (sch->schib.scsw.actl != 0 ||
720 (cdev->private->irb.scsw.stctl & SCSW_STCTL_STATUS_PEND)) {
722 * No final status yet or final status not yet delivered
723 * to the device driver. Can't do path verfication now,
724 * delay until final status was delivered.
726 cdev->private->flags.doverify = 1;
729 /* Device is idle, we can do the path verification. */
730 cdev->private->state = DEV_STATE_VERIFY;
731 ccw_device_verify_start(cdev);
735 * Got an interrupt for a normal io (state online).
738 ccw_device_irq(struct ccw_device *cdev, enum dev_event dev_event)
742 irb = (struct irb *) __LC_IRB;
743 /* Check for unsolicited interrupt. */
744 if ((irb->scsw.stctl ==
745 (SCSW_STCTL_STATUS_PEND | SCSW_STCTL_ALERT_STATUS))
746 && (!irb->scsw.cc)) {
747 if ((irb->scsw.dstat & DEV_STAT_UNIT_CHECK) &&
748 !irb->esw.esw0.erw.cons) {
749 /* Unit check but no sense data. Need basic sense. */
750 if (ccw_device_do_sense(cdev, irb) != 0)
751 goto call_handler_unsol;
752 memcpy(irb, &cdev->private->irb, sizeof(struct irb));
753 cdev->private->state = DEV_STATE_W4SENSE;
754 cdev->private->intparm = 0;
759 cdev->handler (cdev, 0, irb);
762 /* Accumulate status and find out if a basic sense is needed. */
763 ccw_device_accumulate_irb(cdev, irb);
764 if (cdev->private->flags.dosense) {
765 if (ccw_device_do_sense(cdev, irb) == 0) {
766 cdev->private->state = DEV_STATE_W4SENSE;
770 /* Call the handler. */
771 if (ccw_device_call_handler(cdev) && cdev->private->flags.doverify)
772 /* Start delayed path verification. */
773 ccw_device_online_verify(cdev, 0);
777 * Got an timeout in online state.
780 ccw_device_online_timeout(struct ccw_device *cdev, enum dev_event dev_event)
784 ccw_device_set_timeout(cdev, 0);
785 ret = ccw_device_cancel_halt_clear(cdev);
787 ccw_device_set_timeout(cdev, 3*HZ);
788 cdev->private->state = DEV_STATE_TIMEOUT_KILL;
791 if (ret == -ENODEV) {
792 struct subchannel *sch;
794 sch = to_subchannel(cdev->dev.parent);
796 PREPARE_WORK(&cdev->private->kick_work,
797 ccw_device_nopath_notify, (void *)cdev);
798 queue_work(ccw_device_notify_work,
799 &cdev->private->kick_work);
801 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
802 } else if (cdev->handler)
803 cdev->handler(cdev, cdev->private->intparm,
804 ERR_PTR(-ETIMEDOUT));
808 * Got an interrupt for a basic sense.
811 ccw_device_w4sense(struct ccw_device *cdev, enum dev_event dev_event)
815 irb = (struct irb *) __LC_IRB;
816 /* Check for unsolicited interrupt. */
817 if (irb->scsw.stctl ==
818 (SCSW_STCTL_STATUS_PEND | SCSW_STCTL_ALERT_STATUS)) {
819 if (irb->scsw.cc == 1)
820 /* Basic sense hasn't started. Try again. */
821 ccw_device_do_sense(cdev, irb);
823 printk("Huh? %s(%s): unsolicited interrupt...\n",
824 __FUNCTION__, cdev->dev.bus_id);
826 cdev->handler (cdev, 0, irb);
830 /* Add basic sense info to irb. */
831 ccw_device_accumulate_basic_sense(cdev, irb);
832 if (cdev->private->flags.dosense) {
833 /* Another basic sense is needed. */
834 ccw_device_do_sense(cdev, irb);
837 cdev->private->state = DEV_STATE_ONLINE;
838 /* Call the handler. */
839 if (ccw_device_call_handler(cdev) && cdev->private->flags.doverify)
840 /* Start delayed path verification. */
841 ccw_device_online_verify(cdev, 0);
845 ccw_device_clear_verify(struct ccw_device *cdev, enum dev_event dev_event)
849 irb = (struct irb *) __LC_IRB;
850 /* Accumulate status. We don't do basic sense. */
851 ccw_device_accumulate_irb(cdev, irb);
852 /* Try to start delayed device verification. */
853 ccw_device_online_verify(cdev, 0);
854 /* Note: Don't call handler for cio initiated clear! */
858 ccw_device_killing_irq(struct ccw_device *cdev, enum dev_event dev_event)
860 struct subchannel *sch;
862 sch = to_subchannel(cdev->dev.parent);
863 ccw_device_set_timeout(cdev, 0);
864 /* OK, i/o is dead now. Call interrupt handler. */
865 cdev->private->state = DEV_STATE_ONLINE;
867 cdev->handler(cdev, cdev->private->intparm,
868 ERR_PTR(-ETIMEDOUT));
870 PREPARE_WORK(&cdev->private->kick_work,
871 ccw_device_nopath_notify, (void *)cdev);
872 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
873 } else if (cdev->private->flags.doverify)
874 /* Start delayed path verification. */
875 ccw_device_online_verify(cdev, 0);
879 ccw_device_killing_timeout(struct ccw_device *cdev, enum dev_event dev_event)
883 ret = ccw_device_cancel_halt_clear(cdev);
885 ccw_device_set_timeout(cdev, 3*HZ);
888 if (ret == -ENODEV) {
889 struct subchannel *sch;
891 sch = to_subchannel(cdev->dev.parent);
893 PREPARE_WORK(&cdev->private->kick_work,
894 ccw_device_nopath_notify, (void *)cdev);
895 queue_work(ccw_device_notify_work,
896 &cdev->private->kick_work);
898 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
901 //FIXME: Can we get here?
902 cdev->private->state = DEV_STATE_ONLINE;
904 cdev->handler(cdev, cdev->private->intparm,
905 ERR_PTR(-ETIMEDOUT));
909 ccw_device_wait4io_irq(struct ccw_device *cdev, enum dev_event dev_event)
912 struct subchannel *sch;
914 irb = (struct irb *) __LC_IRB;
916 * Accumulate status and find out if a basic sense is needed.
917 * This is fine since we have already adapted the lpm.
919 ccw_device_accumulate_irb(cdev, irb);
920 if (cdev->private->flags.dosense) {
921 if (ccw_device_do_sense(cdev, irb) == 0) {
922 cdev->private->state = DEV_STATE_W4SENSE;
927 /* Iff device is idle, reset timeout. */
928 sch = to_subchannel(cdev->dev.parent);
929 if (!stsch(sch->schid, &sch->schib))
930 if (sch->schib.scsw.actl == 0)
931 ccw_device_set_timeout(cdev, 0);
932 /* Call the handler. */
933 ccw_device_call_handler(cdev);
935 PREPARE_WORK(&cdev->private->kick_work,
936 ccw_device_nopath_notify, (void *)cdev);
937 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
938 } else if (cdev->private->flags.doverify)
939 ccw_device_online_verify(cdev, 0);
943 ccw_device_wait4io_timeout(struct ccw_device *cdev, enum dev_event dev_event)
946 struct subchannel *sch;
948 sch = to_subchannel(cdev->dev.parent);
949 ccw_device_set_timeout(cdev, 0);
950 ret = ccw_device_cancel_halt_clear(cdev);
952 ccw_device_set_timeout(cdev, 3*HZ);
953 cdev->private->state = DEV_STATE_TIMEOUT_KILL;
956 if (ret == -ENODEV) {
958 PREPARE_WORK(&cdev->private->kick_work,
959 ccw_device_nopath_notify, (void *)cdev);
960 queue_work(ccw_device_notify_work,
961 &cdev->private->kick_work);
963 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
967 cdev->handler(cdev, cdev->private->intparm,
968 ERR_PTR(-ETIMEDOUT));
970 PREPARE_WORK(&cdev->private->kick_work,
971 ccw_device_nopath_notify, (void *)cdev);
972 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
973 } else if (cdev->private->flags.doverify)
974 /* Start delayed path verification. */
975 ccw_device_online_verify(cdev, 0);
979 ccw_device_wait4io_verify(struct ccw_device *cdev, enum dev_event dev_event)
981 /* When the I/O has terminated, we have to start verification. */
982 if (cdev->private->options.pgroup)
983 cdev->private->flags.doverify = 1;
987 ccw_device_stlck_done(struct ccw_device *cdev, enum dev_event dev_event)
992 case DEV_EVENT_INTERRUPT:
993 irb = (struct irb *) __LC_IRB;
994 /* Check for unsolicited interrupt. */
995 if ((irb->scsw.stctl ==
996 (SCSW_STCTL_STATUS_PEND | SCSW_STCTL_ALERT_STATUS)) &&
998 /* FIXME: we should restart stlck here, but this
999 * is extremely unlikely ... */
1002 ccw_device_accumulate_irb(cdev, irb);
1003 /* We don't care about basic sense etc. */
1005 default: /* timeout */
1009 wake_up(&cdev->private->wait_q);
1013 ccw_device_start_id(struct ccw_device *cdev, enum dev_event dev_event)
1015 struct subchannel *sch;
1017 sch = to_subchannel(cdev->dev.parent);
1018 if (cio_enable_subchannel(sch, sch->schib.pmcw.isc) != 0)
1019 /* Couldn't enable the subchannel for i/o. Sick device. */
1022 /* After 60s the device recognition is considered to have failed. */
1023 ccw_device_set_timeout(cdev, 60*HZ);
1025 cdev->private->state = DEV_STATE_DISCONNECTED_SENSE_ID;
1026 ccw_device_sense_id_start(cdev);
1030 device_trigger_reprobe(struct subchannel *sch)
1032 struct ccw_device *cdev;
1034 if (!sch->dev.driver_data)
1036 cdev = sch->dev.driver_data;
1037 if (cdev->private->state != DEV_STATE_DISCONNECTED)
1040 /* Update some values. */
1041 if (stsch(sch->schid, &sch->schib))
1045 * The pim, pam, pom values may not be accurate, but they are the best
1046 * we have before performing device selection :/
1048 sch->lpm = sch->schib.pmcw.pim &
1049 sch->schib.pmcw.pam &
1050 sch->schib.pmcw.pom &
1052 /* Re-set some bits in the pmcw that were lost. */
1053 sch->schib.pmcw.isc = 3;
1054 sch->schib.pmcw.csense = 1;
1055 sch->schib.pmcw.ena = 0;
1056 if ((sch->lpm & (sch->lpm - 1)) != 0)
1057 sch->schib.pmcw.mp = 1;
1058 sch->schib.pmcw.intparm = (__u32)(unsigned long)sch;
1059 /* We should also udate ssd info, but this has to wait. */
1060 ccw_device_start_id(cdev, 0);
1064 ccw_device_offline_irq(struct ccw_device *cdev, enum dev_event dev_event)
1066 struct subchannel *sch;
1068 sch = to_subchannel(cdev->dev.parent);
1070 * An interrupt in state offline means a previous disable was not
1071 * successful. Try again.
1073 cio_disable_subchannel(sch);
1077 ccw_device_change_cmfstate(struct ccw_device *cdev, enum dev_event dev_event)
1079 retry_set_schib(cdev);
1080 cdev->private->state = DEV_STATE_ONLINE;
1081 dev_fsm_event(cdev, dev_event);
1086 ccw_device_quiesce_done(struct ccw_device *cdev, enum dev_event dev_event)
1088 ccw_device_set_timeout(cdev, 0);
1089 if (dev_event == DEV_EVENT_NOTOPER)
1090 cdev->private->state = DEV_STATE_NOT_OPER;
1092 cdev->private->state = DEV_STATE_OFFLINE;
1093 wake_up(&cdev->private->wait_q);
1097 ccw_device_quiesce_timeout(struct ccw_device *cdev, enum dev_event dev_event)
1101 ret = ccw_device_cancel_halt_clear(cdev);
1104 cdev->private->state = DEV_STATE_OFFLINE;
1105 wake_up(&cdev->private->wait_q);
1108 cdev->private->state = DEV_STATE_NOT_OPER;
1109 wake_up(&cdev->private->wait_q);
1112 ccw_device_set_timeout(cdev, HZ/10);
1117 * No operation action. This is used e.g. to ignore a timeout event in
1121 ccw_device_nop(struct ccw_device *cdev, enum dev_event dev_event)
1126 * Bug operation action.
1129 ccw_device_bug(struct ccw_device *cdev, enum dev_event dev_event)
1131 printk(KERN_EMERG "dev_jumptable[%i][%i] == NULL\n",
1132 cdev->private->state, dev_event);
1137 * device statemachine
1139 fsm_func_t *dev_jumptable[NR_DEV_STATES][NR_DEV_EVENTS] = {
1140 [DEV_STATE_NOT_OPER] = {
1141 [DEV_EVENT_NOTOPER] = ccw_device_nop,
1142 [DEV_EVENT_INTERRUPT] = ccw_device_bug,
1143 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1144 [DEV_EVENT_VERIFY] = ccw_device_nop,
1146 [DEV_STATE_SENSE_PGID] = {
1147 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1148 [DEV_EVENT_INTERRUPT] = ccw_device_sense_pgid_irq,
1149 [DEV_EVENT_TIMEOUT] = ccw_device_onoff_timeout,
1150 [DEV_EVENT_VERIFY] = ccw_device_nop,
1152 [DEV_STATE_SENSE_ID] = {
1153 [DEV_EVENT_NOTOPER] = ccw_device_recog_notoper,
1154 [DEV_EVENT_INTERRUPT] = ccw_device_sense_id_irq,
1155 [DEV_EVENT_TIMEOUT] = ccw_device_recog_timeout,
1156 [DEV_EVENT_VERIFY] = ccw_device_nop,
1158 [DEV_STATE_OFFLINE] = {
1159 [DEV_EVENT_NOTOPER] = ccw_device_offline_notoper,
1160 [DEV_EVENT_INTERRUPT] = ccw_device_offline_irq,
1161 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1162 [DEV_EVENT_VERIFY] = ccw_device_nop,
1164 [DEV_STATE_VERIFY] = {
1165 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1166 [DEV_EVENT_INTERRUPT] = ccw_device_verify_irq,
1167 [DEV_EVENT_TIMEOUT] = ccw_device_onoff_timeout,
1168 [DEV_EVENT_VERIFY] = ccw_device_nop,
1170 [DEV_STATE_ONLINE] = {
1171 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1172 [DEV_EVENT_INTERRUPT] = ccw_device_irq,
1173 [DEV_EVENT_TIMEOUT] = ccw_device_online_timeout,
1174 [DEV_EVENT_VERIFY] = ccw_device_online_verify,
1176 [DEV_STATE_W4SENSE] = {
1177 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1178 [DEV_EVENT_INTERRUPT] = ccw_device_w4sense,
1179 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1180 [DEV_EVENT_VERIFY] = ccw_device_online_verify,
1182 [DEV_STATE_DISBAND_PGID] = {
1183 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1184 [DEV_EVENT_INTERRUPT] = ccw_device_disband_irq,
1185 [DEV_EVENT_TIMEOUT] = ccw_device_onoff_timeout,
1186 [DEV_EVENT_VERIFY] = ccw_device_nop,
1188 [DEV_STATE_BOXED] = {
1189 [DEV_EVENT_NOTOPER] = ccw_device_offline_notoper,
1190 [DEV_EVENT_INTERRUPT] = ccw_device_stlck_done,
1191 [DEV_EVENT_TIMEOUT] = ccw_device_stlck_done,
1192 [DEV_EVENT_VERIFY] = ccw_device_nop,
1194 /* states to wait for i/o completion before doing something */
1195 [DEV_STATE_CLEAR_VERIFY] = {
1196 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1197 [DEV_EVENT_INTERRUPT] = ccw_device_clear_verify,
1198 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1199 [DEV_EVENT_VERIFY] = ccw_device_nop,
1201 [DEV_STATE_TIMEOUT_KILL] = {
1202 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1203 [DEV_EVENT_INTERRUPT] = ccw_device_killing_irq,
1204 [DEV_EVENT_TIMEOUT] = ccw_device_killing_timeout,
1205 [DEV_EVENT_VERIFY] = ccw_device_nop, //FIXME
1207 [DEV_STATE_WAIT4IO] = {
1208 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1209 [DEV_EVENT_INTERRUPT] = ccw_device_wait4io_irq,
1210 [DEV_EVENT_TIMEOUT] = ccw_device_wait4io_timeout,
1211 [DEV_EVENT_VERIFY] = ccw_device_wait4io_verify,
1213 [DEV_STATE_QUIESCE] = {
1214 [DEV_EVENT_NOTOPER] = ccw_device_quiesce_done,
1215 [DEV_EVENT_INTERRUPT] = ccw_device_quiesce_done,
1216 [DEV_EVENT_TIMEOUT] = ccw_device_quiesce_timeout,
1217 [DEV_EVENT_VERIFY] = ccw_device_nop,
1219 /* special states for devices gone not operational */
1220 [DEV_STATE_DISCONNECTED] = {
1221 [DEV_EVENT_NOTOPER] = ccw_device_nop,
1222 [DEV_EVENT_INTERRUPT] = ccw_device_start_id,
1223 [DEV_EVENT_TIMEOUT] = ccw_device_bug,
1224 [DEV_EVENT_VERIFY] = ccw_device_nop,
1226 [DEV_STATE_DISCONNECTED_SENSE_ID] = {
1227 [DEV_EVENT_NOTOPER] = ccw_device_recog_notoper,
1228 [DEV_EVENT_INTERRUPT] = ccw_device_sense_id_irq,
1229 [DEV_EVENT_TIMEOUT] = ccw_device_recog_timeout,
1230 [DEV_EVENT_VERIFY] = ccw_device_nop,
1232 [DEV_STATE_CMFCHANGE] = {
1233 [DEV_EVENT_NOTOPER] = ccw_device_change_cmfstate,
1234 [DEV_EVENT_INTERRUPT] = ccw_device_change_cmfstate,
1235 [DEV_EVENT_TIMEOUT] = ccw_device_change_cmfstate,
1236 [DEV_EVENT_VERIFY] = ccw_device_change_cmfstate,
1241 * io_subchannel_irq is called for "real" interrupts or for status
1242 * pending conditions on msch.
1245 io_subchannel_irq (struct device *pdev)
1247 struct ccw_device *cdev;
1249 cdev = to_subchannel(pdev)->dev.driver_data;
1251 CIO_TRACE_EVENT (3, "IRQ");
1252 CIO_TRACE_EVENT (3, pdev->bus_id);
1254 dev_fsm_event(cdev, DEV_EVENT_INTERRUPT);
1257 EXPORT_SYMBOL_GPL(ccw_device_set_timeout);