2 * drivers/s390/cio/device_fsm.c
3 * finite state machine for device handling
5 * Copyright IBM Corp. 2002,2008
6 * Author(s): Cornelia Huck (cornelia.huck@de.ibm.com)
7 * Martin Schwidefsky (schwidefsky@de.ibm.com)
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/jiffies.h>
13 #include <linux/string.h>
15 #include <asm/ccwdev.h>
17 #include <asm/chpid.h>
20 #include "cio_debug.h"
27 static int timeout_log_enabled
;
29 static int __init
ccw_timeout_log_setup(char *unused
)
31 timeout_log_enabled
= 1;
35 __setup("ccw_timeout_log", ccw_timeout_log_setup
);
37 static void ccw_timeout_log(struct ccw_device
*cdev
)
40 struct subchannel
*sch
;
41 struct io_subchannel_private
*private;
45 sch
= to_subchannel(cdev
->dev
.parent
);
46 private = to_io_private(sch
);
48 cc
= stsch_err(sch
->schid
, &schib
);
50 printk(KERN_WARNING
"cio: ccw device timeout occurred at %llx, "
51 "device information:\n", get_clock());
52 printk(KERN_WARNING
"cio: orb:\n");
53 print_hex_dump(KERN_WARNING
, "cio: ", DUMP_PREFIX_NONE
, 16, 1,
54 orb
, sizeof(*orb
), 0);
55 printk(KERN_WARNING
"cio: ccw device bus id: %s\n",
56 dev_name(&cdev
->dev
));
57 printk(KERN_WARNING
"cio: subchannel bus id: %s\n",
59 printk(KERN_WARNING
"cio: subchannel lpm: %02x, opm: %02x, "
60 "vpm: %02x\n", sch
->lpm
, sch
->opm
, sch
->vpm
);
63 printk(KERN_WARNING
"cio: orb indicates transport mode\n");
64 printk(KERN_WARNING
"cio: last tcw:\n");
65 print_hex_dump(KERN_WARNING
, "cio: ", DUMP_PREFIX_NONE
, 16, 1,
66 (void *)(addr_t
)orb
->tm
.tcw
,
67 sizeof(struct tcw
), 0);
69 printk(KERN_WARNING
"cio: orb indicates command mode\n");
70 if ((void *)(addr_t
)orb
->cmd
.cpa
== &private->sense_ccw
||
71 (void *)(addr_t
)orb
->cmd
.cpa
== cdev
->private->iccws
)
72 printk(KERN_WARNING
"cio: last channel program "
75 printk(KERN_WARNING
"cio: last channel program:\n");
77 print_hex_dump(KERN_WARNING
, "cio: ", DUMP_PREFIX_NONE
, 16, 1,
78 (void *)(addr_t
)orb
->cmd
.cpa
,
79 sizeof(struct ccw1
), 0);
81 printk(KERN_WARNING
"cio: ccw device state: %d\n",
82 cdev
->private->state
);
83 printk(KERN_WARNING
"cio: store subchannel returned: cc=%d\n", cc
);
84 printk(KERN_WARNING
"cio: schib:\n");
85 print_hex_dump(KERN_WARNING
, "cio: ", DUMP_PREFIX_NONE
, 16, 1,
86 &schib
, sizeof(schib
), 0);
87 printk(KERN_WARNING
"cio: ccw device flags:\n");
88 print_hex_dump(KERN_WARNING
, "cio: ", DUMP_PREFIX_NONE
, 16, 1,
89 &cdev
->private->flags
, sizeof(cdev
->private->flags
), 0);
93 * Timeout function. It just triggers a DEV_EVENT_TIMEOUT.
96 ccw_device_timeout(unsigned long data
)
98 struct ccw_device
*cdev
;
100 cdev
= (struct ccw_device
*) data
;
101 spin_lock_irq(cdev
->ccwlock
);
102 if (timeout_log_enabled
)
103 ccw_timeout_log(cdev
);
104 dev_fsm_event(cdev
, DEV_EVENT_TIMEOUT
);
105 spin_unlock_irq(cdev
->ccwlock
);
112 ccw_device_set_timeout(struct ccw_device
*cdev
, int expires
)
115 del_timer(&cdev
->private->timer
);
118 if (timer_pending(&cdev
->private->timer
)) {
119 if (mod_timer(&cdev
->private->timer
, jiffies
+ expires
))
122 cdev
->private->timer
.function
= ccw_device_timeout
;
123 cdev
->private->timer
.data
= (unsigned long) cdev
;
124 cdev
->private->timer
.expires
= jiffies
+ expires
;
125 add_timer(&cdev
->private->timer
);
129 * Cancel running i/o. This is called repeatedly since halt/clear are
130 * asynchronous operations. We do one try with cio_cancel, two tries
131 * with cio_halt, 255 tries with cio_clear. If everythings fails panic.
132 * Returns 0 if device now idle, -ENODEV for device not operational and
133 * -EBUSY if an interrupt is expected (either from halt/clear or from a
137 ccw_device_cancel_halt_clear(struct ccw_device
*cdev
)
139 struct subchannel
*sch
;
142 sch
= to_subchannel(cdev
->dev
.parent
);
143 if (cio_update_schib(sch
))
145 if (!sch
->schib
.pmcw
.ena
)
146 /* Not operational -> done. */
148 /* Stage 1: cancel io. */
149 if (!(scsw_actl(&sch
->schib
.scsw
) & SCSW_ACTL_HALT_PEND
) &&
150 !(scsw_actl(&sch
->schib
.scsw
) & SCSW_ACTL_CLEAR_PEND
)) {
151 if (!scsw_is_tm(&sch
->schib
.scsw
)) {
152 ret
= cio_cancel(sch
);
156 /* cancel io unsuccessful or not applicable (transport mode).
157 * Continue with asynchronous instructions. */
158 cdev
->private->iretry
= 3; /* 3 halt retries. */
160 if (!(scsw_actl(&sch
->schib
.scsw
) & SCSW_ACTL_CLEAR_PEND
)) {
161 /* Stage 2: halt io. */
162 if (cdev
->private->iretry
) {
163 cdev
->private->iretry
--;
166 return (ret
== 0) ? -EBUSY
: ret
;
168 /* halt io unsuccessful. */
169 cdev
->private->iretry
= 255; /* 255 clear retries. */
171 /* Stage 3: clear io. */
172 if (cdev
->private->iretry
) {
173 cdev
->private->iretry
--;
174 ret
= cio_clear (sch
);
175 return (ret
== 0) ? -EBUSY
: ret
;
177 panic("Can't stop i/o on subchannel.\n");
180 void ccw_device_update_sense_data(struct ccw_device
*cdev
)
182 memset(&cdev
->id
, 0, sizeof(cdev
->id
));
183 cdev
->id
.cu_type
= cdev
->private->senseid
.cu_type
;
184 cdev
->id
.cu_model
= cdev
->private->senseid
.cu_model
;
185 cdev
->id
.dev_type
= cdev
->private->senseid
.dev_type
;
186 cdev
->id
.dev_model
= cdev
->private->senseid
.dev_model
;
189 int ccw_device_test_sense_data(struct ccw_device
*cdev
)
191 return cdev
->id
.cu_type
== cdev
->private->senseid
.cu_type
&&
192 cdev
->id
.cu_model
== cdev
->private->senseid
.cu_model
&&
193 cdev
->id
.dev_type
== cdev
->private->senseid
.dev_type
&&
194 cdev
->id
.dev_model
== cdev
->private->senseid
.dev_model
;
198 * The machine won't give us any notification by machine check if a chpid has
199 * been varied online on the SE so we have to find out by magic (i. e. driving
200 * the channel subsystem to device selection and updating our path masks).
203 __recover_lost_chpids(struct subchannel
*sch
, int old_lpm
)
209 for (i
= 0; i
<8; i
++) {
211 if (!(sch
->lpm
& mask
))
215 chpid
.id
= sch
->schib
.pmcw
.chpid
[i
];
216 if (!chp_is_registered(chpid
))
217 css_schedule_eval_all();
222 * Stop device recognition.
225 ccw_device_recog_done(struct ccw_device
*cdev
, int state
)
227 struct subchannel
*sch
;
230 sch
= to_subchannel(cdev
->dev
.parent
);
232 if (cio_disable_subchannel(sch
))
233 state
= DEV_STATE_NOT_OPER
;
235 * Now that we tried recognition, we have performed device selection
236 * through ssch() and the path information is up to date.
240 /* Check since device may again have become not operational. */
241 if (cio_update_schib(sch
))
242 state
= DEV_STATE_NOT_OPER
;
244 sch
->lpm
= sch
->schib
.pmcw
.pam
& sch
->opm
;
246 if (cdev
->private->state
== DEV_STATE_DISCONNECTED_SENSE_ID
)
247 /* Force reprobe on all chpids. */
249 if (sch
->lpm
!= old_lpm
)
250 __recover_lost_chpids(sch
, old_lpm
);
251 if (cdev
->private->state
== DEV_STATE_DISCONNECTED_SENSE_ID
&&
252 (state
== DEV_STATE_NOT_OPER
|| state
== DEV_STATE_BOXED
)) {
253 cdev
->private->flags
.recog_done
= 1;
254 cdev
->private->state
= DEV_STATE_DISCONNECTED
;
255 wake_up(&cdev
->private->wait_q
);
258 if (cdev
->private->flags
.resuming
) {
259 cdev
->private->state
= state
;
260 cdev
->private->flags
.recog_done
= 1;
261 wake_up(&cdev
->private->wait_q
);
265 case DEV_STATE_NOT_OPER
:
267 case DEV_STATE_OFFLINE
:
269 ccw_device_update_sense_data(cdev
);
272 cdev
->private->state
= DEV_STATE_OFFLINE
;
273 cdev
->private->flags
.recog_done
= 1;
274 if (ccw_device_test_sense_data(cdev
)) {
275 cdev
->private->flags
.donotify
= 1;
276 ccw_device_online(cdev
);
277 wake_up(&cdev
->private->wait_q
);
279 ccw_device_update_sense_data(cdev
);
280 ccw_device_sched_todo(cdev
, CDEV_TODO_REBIND
);
283 case DEV_STATE_BOXED
:
284 if (cdev
->id
.cu_type
!= 0) { /* device was recognized before */
285 cdev
->private->flags
.recog_done
= 1;
286 cdev
->private->state
= DEV_STATE_BOXED
;
287 wake_up(&cdev
->private->wait_q
);
292 cdev
->private->state
= state
;
293 io_subchannel_recog_done(cdev
);
294 wake_up(&cdev
->private->wait_q
);
298 * Function called from device_id.c after sense id has completed.
301 ccw_device_sense_id_done(struct ccw_device
*cdev
, int err
)
305 ccw_device_recog_done(cdev
, DEV_STATE_OFFLINE
);
307 case -ETIME
: /* Sense id stopped by timeout. */
308 ccw_device_recog_done(cdev
, DEV_STATE_BOXED
);
311 ccw_device_recog_done(cdev
, DEV_STATE_NOT_OPER
);
317 * ccw_device_notify() - inform the device's driver about an event
318 * @cdev: device for which an event occured
319 * @event: event that occurred
322 * -%EINVAL if the device is offline or has no driver.
323 * -%EOPNOTSUPP if the device's driver has no notifier registered.
324 * %NOTIFY_OK if the driver wants to keep the device.
325 * %NOTIFY_BAD if the driver doesn't want to keep the device.
327 int ccw_device_notify(struct ccw_device
*cdev
, int event
)
335 CIO_MSG_EVENT(2, "notify called for 0.%x.%04x, event=%d\n",
336 cdev
->private->dev_id
.ssid
, cdev
->private->dev_id
.devno
,
338 if (!cdev
->drv
->notify
) {
342 if (cdev
->drv
->notify(cdev
, event
))
350 static void ccw_device_oper_notify(struct ccw_device
*cdev
)
352 if (ccw_device_notify(cdev
, CIO_OPER
) == NOTIFY_OK
) {
353 /* Reenable channel measurements, if needed. */
354 ccw_device_sched_todo(cdev
, CDEV_TODO_ENABLE_CMF
);
357 /* Driver doesn't want device back. */
358 ccw_device_set_notoper(cdev
);
359 ccw_device_sched_todo(cdev
, CDEV_TODO_REBIND
);
363 * Finished with online/offline processing.
366 ccw_device_done(struct ccw_device
*cdev
, int state
)
368 struct subchannel
*sch
;
370 sch
= to_subchannel(cdev
->dev
.parent
);
372 ccw_device_set_timeout(cdev
, 0);
374 if (state
!= DEV_STATE_ONLINE
)
375 cio_disable_subchannel(sch
);
377 /* Reset device status. */
378 memset(&cdev
->private->irb
, 0, sizeof(struct irb
));
380 cdev
->private->state
= state
;
383 case DEV_STATE_BOXED
:
384 CIO_MSG_EVENT(0, "Boxed device %04x on subchannel %04x\n",
385 cdev
->private->dev_id
.devno
, sch
->schid
.sch_no
);
387 ccw_device_notify(cdev
, CIO_BOXED
) != NOTIFY_OK
)
388 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG
);
389 cdev
->private->flags
.donotify
= 0;
391 case DEV_STATE_NOT_OPER
:
392 CIO_MSG_EVENT(0, "Device %04x gone on subchannel %04x\n",
393 cdev
->private->dev_id
.devno
, sch
->schid
.sch_no
);
394 if (ccw_device_notify(cdev
, CIO_GONE
) != NOTIFY_OK
)
395 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG
);
397 ccw_device_set_disconnected(cdev
);
398 cdev
->private->flags
.donotify
= 0;
400 case DEV_STATE_DISCONNECTED
:
401 CIO_MSG_EVENT(0, "Disconnected device %04x on subchannel "
402 "%04x\n", cdev
->private->dev_id
.devno
,
404 if (ccw_device_notify(cdev
, CIO_NO_PATH
) != NOTIFY_OK
)
405 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG
);
407 ccw_device_set_disconnected(cdev
);
408 cdev
->private->flags
.donotify
= 0;
414 if (cdev
->private->flags
.donotify
) {
415 cdev
->private->flags
.donotify
= 0;
416 ccw_device_oper_notify(cdev
);
418 wake_up(&cdev
->private->wait_q
);
422 * Start device recognition.
424 void ccw_device_recognition(struct ccw_device
*cdev
)
426 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
429 * We used to start here with a sense pgid to find out whether a device
430 * is locked by someone else. Unfortunately, the sense pgid command
431 * code has other meanings on devices predating the path grouping
432 * algorithm, so we start with sense id and box the device after an
433 * timeout (or if sense pgid during path verification detects the device
434 * is locked, as may happen on newer devices).
436 cdev
->private->flags
.recog_done
= 0;
437 cdev
->private->state
= DEV_STATE_SENSE_ID
;
438 if (cio_enable_subchannel(sch
, (u32
) (addr_t
) sch
)) {
439 ccw_device_recog_done(cdev
, DEV_STATE_NOT_OPER
);
442 ccw_device_sense_id_start(cdev
);
446 * Handle events for states that use the ccw request infrastructure.
448 static void ccw_device_request_event(struct ccw_device
*cdev
, enum dev_event e
)
451 case DEV_EVENT_NOTOPER
:
452 ccw_request_notoper(cdev
);
454 case DEV_EVENT_INTERRUPT
:
455 ccw_request_handler(cdev
);
457 case DEV_EVENT_TIMEOUT
:
458 ccw_request_timeout(cdev
);
466 ccw_device_verify_done(struct ccw_device
*cdev
, int err
)
468 struct subchannel
*sch
;
470 sch
= to_subchannel(cdev
->dev
.parent
);
471 /* Update schib - pom may have changed. */
472 if (cio_update_schib(sch
)) {
476 /* Update lpm with verified path mask. */
478 /* Repeat path verification? */
479 if (cdev
->private->flags
.doverify
) {
480 ccw_device_verify_start(cdev
);
486 ccw_device_done(cdev
, DEV_STATE_ONLINE
);
487 /* Deliver fake irb to device driver, if needed. */
488 if (cdev
->private->flags
.fake_irb
) {
489 memset(&cdev
->private->irb
, 0, sizeof(struct irb
));
490 cdev
->private->irb
.scsw
.cmd
.cc
= 1;
491 cdev
->private->irb
.scsw
.cmd
.fctl
= SCSW_FCTL_START_FUNC
;
492 cdev
->private->irb
.scsw
.cmd
.actl
= SCSW_ACTL_START_PEND
;
493 cdev
->private->irb
.scsw
.cmd
.stctl
=
494 SCSW_STCTL_STATUS_PEND
;
495 cdev
->private->flags
.fake_irb
= 0;
497 cdev
->handler(cdev
, cdev
->private->intparm
,
498 &cdev
->private->irb
);
499 memset(&cdev
->private->irb
, 0, sizeof(struct irb
));
504 /* Reset oper notify indication after verify error. */
505 cdev
->private->flags
.donotify
= 0;
506 ccw_device_done(cdev
, DEV_STATE_BOXED
);
509 /* Reset oper notify indication after verify error. */
510 cdev
->private->flags
.donotify
= 0;
511 ccw_device_done(cdev
, DEV_STATE_DISCONNECTED
);
514 /* Reset oper notify indication after verify error. */
515 cdev
->private->flags
.donotify
= 0;
516 ccw_device_done(cdev
, DEV_STATE_NOT_OPER
);
525 ccw_device_online(struct ccw_device
*cdev
)
527 struct subchannel
*sch
;
530 if ((cdev
->private->state
!= DEV_STATE_OFFLINE
) &&
531 (cdev
->private->state
!= DEV_STATE_BOXED
))
533 sch
= to_subchannel(cdev
->dev
.parent
);
534 ret
= cio_enable_subchannel(sch
, (u32
)(addr_t
)sch
);
536 /* Couldn't enable the subchannel for i/o. Sick device. */
538 dev_fsm_event(cdev
, DEV_EVENT_NOTOPER
);
541 /* Start initial path verification. */
542 cdev
->private->state
= DEV_STATE_VERIFY
;
543 ccw_device_verify_start(cdev
);
548 ccw_device_disband_done(struct ccw_device
*cdev
, int err
)
552 ccw_device_done(cdev
, DEV_STATE_OFFLINE
);
555 ccw_device_done(cdev
, DEV_STATE_BOXED
);
558 cdev
->private->flags
.donotify
= 0;
559 ccw_device_done(cdev
, DEV_STATE_NOT_OPER
);
568 ccw_device_offline(struct ccw_device
*cdev
)
570 struct subchannel
*sch
;
572 /* Allow ccw_device_offline while disconnected. */
573 if (cdev
->private->state
== DEV_STATE_DISCONNECTED
||
574 cdev
->private->state
== DEV_STATE_NOT_OPER
) {
575 cdev
->private->flags
.donotify
= 0;
576 ccw_device_done(cdev
, DEV_STATE_NOT_OPER
);
579 if (cdev
->private->state
== DEV_STATE_BOXED
) {
580 ccw_device_done(cdev
, DEV_STATE_BOXED
);
583 if (ccw_device_is_orphan(cdev
)) {
584 ccw_device_done(cdev
, DEV_STATE_OFFLINE
);
587 sch
= to_subchannel(cdev
->dev
.parent
);
588 if (cio_update_schib(sch
))
590 if (scsw_actl(&sch
->schib
.scsw
) != 0)
592 if (cdev
->private->state
!= DEV_STATE_ONLINE
)
594 /* Are we doing path grouping? */
595 if (!cdev
->private->flags
.pgroup
) {
596 /* No, set state offline immediately. */
597 ccw_device_done(cdev
, DEV_STATE_OFFLINE
);
600 /* Start Set Path Group commands. */
601 cdev
->private->state
= DEV_STATE_DISBAND_PGID
;
602 ccw_device_disband_start(cdev
);
607 * Handle not operational event in non-special state.
609 static void ccw_device_generic_notoper(struct ccw_device
*cdev
,
610 enum dev_event dev_event
)
612 if (ccw_device_notify(cdev
, CIO_GONE
) != NOTIFY_OK
)
613 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG
);
615 ccw_device_set_disconnected(cdev
);
619 * Handle path verification event in offline state.
621 static void ccw_device_offline_verify(struct ccw_device
*cdev
,
622 enum dev_event dev_event
)
624 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
626 css_schedule_eval(sch
->schid
);
630 * Handle path verification event.
633 ccw_device_online_verify(struct ccw_device
*cdev
, enum dev_event dev_event
)
635 struct subchannel
*sch
;
637 if (cdev
->private->state
== DEV_STATE_W4SENSE
) {
638 cdev
->private->flags
.doverify
= 1;
641 sch
= to_subchannel(cdev
->dev
.parent
);
643 * Since we might not just be coming from an interrupt from the
644 * subchannel we have to update the schib.
646 if (cio_update_schib(sch
)) {
647 ccw_device_verify_done(cdev
, -ENODEV
);
651 if (scsw_actl(&sch
->schib
.scsw
) != 0 ||
652 (scsw_stctl(&sch
->schib
.scsw
) & SCSW_STCTL_STATUS_PEND
) ||
653 (scsw_stctl(&cdev
->private->irb
.scsw
) & SCSW_STCTL_STATUS_PEND
)) {
655 * No final status yet or final status not yet delivered
656 * to the device driver. Can't do path verfication now,
657 * delay until final status was delivered.
659 cdev
->private->flags
.doverify
= 1;
662 /* Device is idle, we can do the path verification. */
663 cdev
->private->state
= DEV_STATE_VERIFY
;
664 ccw_device_verify_start(cdev
);
668 * Handle path verification event in boxed state.
670 static void ccw_device_boxed_verify(struct ccw_device
*cdev
,
671 enum dev_event dev_event
)
673 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
676 if (cio_enable_subchannel(sch
, (u32
) (addr_t
) sch
))
677 ccw_device_done(cdev
, DEV_STATE_NOT_OPER
);
679 ccw_device_online_verify(cdev
, dev_event
);
681 css_schedule_eval(sch
->schid
);
685 * Got an interrupt for a normal io (state online).
688 ccw_device_irq(struct ccw_device
*cdev
, enum dev_event dev_event
)
693 irb
= (struct irb
*)&S390_lowcore
.irb
;
694 is_cmd
= !scsw_is_tm(&irb
->scsw
);
695 /* Check for unsolicited interrupt. */
696 if (!scsw_is_solicited(&irb
->scsw
)) {
697 if (is_cmd
&& (irb
->scsw
.cmd
.dstat
& DEV_STAT_UNIT_CHECK
) &&
698 !irb
->esw
.esw0
.erw
.cons
) {
699 /* Unit check but no sense data. Need basic sense. */
700 if (ccw_device_do_sense(cdev
, irb
) != 0)
701 goto call_handler_unsol
;
702 memcpy(&cdev
->private->irb
, irb
, sizeof(struct irb
));
703 cdev
->private->state
= DEV_STATE_W4SENSE
;
704 cdev
->private->intparm
= 0;
709 cdev
->handler (cdev
, 0, irb
);
710 if (cdev
->private->flags
.doverify
)
711 ccw_device_online_verify(cdev
, 0);
714 /* Accumulate status and find out if a basic sense is needed. */
715 ccw_device_accumulate_irb(cdev
, irb
);
716 if (is_cmd
&& cdev
->private->flags
.dosense
) {
717 if (ccw_device_do_sense(cdev
, irb
) == 0) {
718 cdev
->private->state
= DEV_STATE_W4SENSE
;
722 /* Call the handler. */
723 if (ccw_device_call_handler(cdev
) && cdev
->private->flags
.doverify
)
724 /* Start delayed path verification. */
725 ccw_device_online_verify(cdev
, 0);
729 * Got an timeout in online state.
732 ccw_device_online_timeout(struct ccw_device
*cdev
, enum dev_event dev_event
)
736 ccw_device_set_timeout(cdev
, 0);
737 ret
= ccw_device_cancel_halt_clear(cdev
);
739 ccw_device_set_timeout(cdev
, 3*HZ
);
740 cdev
->private->state
= DEV_STATE_TIMEOUT_KILL
;
744 dev_fsm_event(cdev
, DEV_EVENT_NOTOPER
);
745 else if (cdev
->handler
)
746 cdev
->handler(cdev
, cdev
->private->intparm
,
747 ERR_PTR(-ETIMEDOUT
));
751 * Got an interrupt for a basic sense.
754 ccw_device_w4sense(struct ccw_device
*cdev
, enum dev_event dev_event
)
758 irb
= (struct irb
*)&S390_lowcore
.irb
;
759 /* Check for unsolicited interrupt. */
760 if (scsw_stctl(&irb
->scsw
) ==
761 (SCSW_STCTL_STATUS_PEND
| SCSW_STCTL_ALERT_STATUS
)) {
762 if (scsw_cc(&irb
->scsw
) == 1)
763 /* Basic sense hasn't started. Try again. */
764 ccw_device_do_sense(cdev
, irb
);
766 CIO_MSG_EVENT(0, "0.%x.%04x: unsolicited "
767 "interrupt during w4sense...\n",
768 cdev
->private->dev_id
.ssid
,
769 cdev
->private->dev_id
.devno
);
771 cdev
->handler (cdev
, 0, irb
);
776 * Check if a halt or clear has been issued in the meanwhile. If yes,
777 * only deliver the halt/clear interrupt to the device driver as if it
778 * had killed the original request.
780 if (scsw_fctl(&irb
->scsw
) &
781 (SCSW_FCTL_CLEAR_FUNC
| SCSW_FCTL_HALT_FUNC
)) {
782 cdev
->private->flags
.dosense
= 0;
783 memset(&cdev
->private->irb
, 0, sizeof(struct irb
));
784 ccw_device_accumulate_irb(cdev
, irb
);
787 /* Add basic sense info to irb. */
788 ccw_device_accumulate_basic_sense(cdev
, irb
);
789 if (cdev
->private->flags
.dosense
) {
790 /* Another basic sense is needed. */
791 ccw_device_do_sense(cdev
, irb
);
795 cdev
->private->state
= DEV_STATE_ONLINE
;
796 /* In case sensing interfered with setting the device online */
797 wake_up(&cdev
->private->wait_q
);
798 /* Call the handler. */
799 if (ccw_device_call_handler(cdev
) && cdev
->private->flags
.doverify
)
800 /* Start delayed path verification. */
801 ccw_device_online_verify(cdev
, 0);
805 ccw_device_killing_irq(struct ccw_device
*cdev
, enum dev_event dev_event
)
807 struct subchannel
*sch
;
809 sch
= to_subchannel(cdev
->dev
.parent
);
810 ccw_device_set_timeout(cdev
, 0);
811 /* Start delayed path verification. */
812 ccw_device_online_verify(cdev
, 0);
813 /* OK, i/o is dead now. Call interrupt handler. */
815 cdev
->handler(cdev
, cdev
->private->intparm
,
820 ccw_device_killing_timeout(struct ccw_device
*cdev
, enum dev_event dev_event
)
824 ret
= ccw_device_cancel_halt_clear(cdev
);
826 ccw_device_set_timeout(cdev
, 3*HZ
);
829 /* Start delayed path verification. */
830 ccw_device_online_verify(cdev
, 0);
832 cdev
->handler(cdev
, cdev
->private->intparm
,
836 void ccw_device_kill_io(struct ccw_device
*cdev
)
840 ret
= ccw_device_cancel_halt_clear(cdev
);
842 ccw_device_set_timeout(cdev
, 3*HZ
);
843 cdev
->private->state
= DEV_STATE_TIMEOUT_KILL
;
846 /* Start delayed path verification. */
847 ccw_device_online_verify(cdev
, 0);
849 cdev
->handler(cdev
, cdev
->private->intparm
,
854 ccw_device_delay_verify(struct ccw_device
*cdev
, enum dev_event dev_event
)
856 /* Start verification after current task finished. */
857 cdev
->private->flags
.doverify
= 1;
861 ccw_device_start_id(struct ccw_device
*cdev
, enum dev_event dev_event
)
863 struct subchannel
*sch
;
865 sch
= to_subchannel(cdev
->dev
.parent
);
866 if (cio_enable_subchannel(sch
, (u32
)(addr_t
)sch
) != 0)
867 /* Couldn't enable the subchannel for i/o. Sick device. */
869 cdev
->private->state
= DEV_STATE_DISCONNECTED_SENSE_ID
;
870 ccw_device_sense_id_start(cdev
);
873 void ccw_device_trigger_reprobe(struct ccw_device
*cdev
)
875 struct subchannel
*sch
;
877 if (cdev
->private->state
!= DEV_STATE_DISCONNECTED
)
880 sch
= to_subchannel(cdev
->dev
.parent
);
881 /* Update some values. */
882 if (cio_update_schib(sch
))
885 * The pim, pam, pom values may not be accurate, but they are the best
886 * we have before performing device selection :/
888 sch
->lpm
= sch
->schib
.pmcw
.pam
& sch
->opm
;
890 * Use the initial configuration since we can't be shure that the old
893 io_subchannel_init_config(sch
);
894 if (cio_commit_config(sch
))
897 /* We should also udate ssd info, but this has to wait. */
898 /* Check if this is another device which appeared on the same sch. */
899 if (sch
->schib
.pmcw
.dev
!= cdev
->private->dev_id
.devno
)
900 css_schedule_eval(sch
->schid
);
902 ccw_device_start_id(cdev
, 0);
905 static void ccw_device_disabled_irq(struct ccw_device
*cdev
,
906 enum dev_event dev_event
)
908 struct subchannel
*sch
;
910 sch
= to_subchannel(cdev
->dev
.parent
);
912 * An interrupt in a disabled state means a previous disable was not
913 * successful - should not happen, but we try to disable again.
915 cio_disable_subchannel(sch
);
919 ccw_device_change_cmfstate(struct ccw_device
*cdev
, enum dev_event dev_event
)
921 retry_set_schib(cdev
);
922 cdev
->private->state
= DEV_STATE_ONLINE
;
923 dev_fsm_event(cdev
, dev_event
);
926 static void ccw_device_update_cmfblock(struct ccw_device
*cdev
,
927 enum dev_event dev_event
)
929 cmf_retry_copy_block(cdev
);
930 cdev
->private->state
= DEV_STATE_ONLINE
;
931 dev_fsm_event(cdev
, dev_event
);
935 ccw_device_quiesce_done(struct ccw_device
*cdev
, enum dev_event dev_event
)
937 ccw_device_set_timeout(cdev
, 0);
938 cdev
->private->state
= DEV_STATE_NOT_OPER
;
939 wake_up(&cdev
->private->wait_q
);
943 ccw_device_quiesce_timeout(struct ccw_device
*cdev
, enum dev_event dev_event
)
947 ret
= ccw_device_cancel_halt_clear(cdev
);
949 ccw_device_set_timeout(cdev
, HZ
/10);
951 cdev
->private->state
= DEV_STATE_NOT_OPER
;
952 wake_up(&cdev
->private->wait_q
);
957 * No operation action. This is used e.g. to ignore a timeout event in
961 ccw_device_nop(struct ccw_device
*cdev
, enum dev_event dev_event
)
966 * device statemachine
968 fsm_func_t
*dev_jumptable
[NR_DEV_STATES
][NR_DEV_EVENTS
] = {
969 [DEV_STATE_NOT_OPER
] = {
970 [DEV_EVENT_NOTOPER
] = ccw_device_nop
,
971 [DEV_EVENT_INTERRUPT
] = ccw_device_disabled_irq
,
972 [DEV_EVENT_TIMEOUT
] = ccw_device_nop
,
973 [DEV_EVENT_VERIFY
] = ccw_device_nop
,
975 [DEV_STATE_SENSE_PGID
] = {
976 [DEV_EVENT_NOTOPER
] = ccw_device_request_event
,
977 [DEV_EVENT_INTERRUPT
] = ccw_device_request_event
,
978 [DEV_EVENT_TIMEOUT
] = ccw_device_request_event
,
979 [DEV_EVENT_VERIFY
] = ccw_device_nop
,
981 [DEV_STATE_SENSE_ID
] = {
982 [DEV_EVENT_NOTOPER
] = ccw_device_request_event
,
983 [DEV_EVENT_INTERRUPT
] = ccw_device_request_event
,
984 [DEV_EVENT_TIMEOUT
] = ccw_device_request_event
,
985 [DEV_EVENT_VERIFY
] = ccw_device_nop
,
987 [DEV_STATE_OFFLINE
] = {
988 [DEV_EVENT_NOTOPER
] = ccw_device_generic_notoper
,
989 [DEV_EVENT_INTERRUPT
] = ccw_device_disabled_irq
,
990 [DEV_EVENT_TIMEOUT
] = ccw_device_nop
,
991 [DEV_EVENT_VERIFY
] = ccw_device_offline_verify
,
993 [DEV_STATE_VERIFY
] = {
994 [DEV_EVENT_NOTOPER
] = ccw_device_request_event
,
995 [DEV_EVENT_INTERRUPT
] = ccw_device_request_event
,
996 [DEV_EVENT_TIMEOUT
] = ccw_device_request_event
,
997 [DEV_EVENT_VERIFY
] = ccw_device_delay_verify
,
999 [DEV_STATE_ONLINE
] = {
1000 [DEV_EVENT_NOTOPER
] = ccw_device_generic_notoper
,
1001 [DEV_EVENT_INTERRUPT
] = ccw_device_irq
,
1002 [DEV_EVENT_TIMEOUT
] = ccw_device_online_timeout
,
1003 [DEV_EVENT_VERIFY
] = ccw_device_online_verify
,
1005 [DEV_STATE_W4SENSE
] = {
1006 [DEV_EVENT_NOTOPER
] = ccw_device_generic_notoper
,
1007 [DEV_EVENT_INTERRUPT
] = ccw_device_w4sense
,
1008 [DEV_EVENT_TIMEOUT
] = ccw_device_nop
,
1009 [DEV_EVENT_VERIFY
] = ccw_device_online_verify
,
1011 [DEV_STATE_DISBAND_PGID
] = {
1012 [DEV_EVENT_NOTOPER
] = ccw_device_request_event
,
1013 [DEV_EVENT_INTERRUPT
] = ccw_device_request_event
,
1014 [DEV_EVENT_TIMEOUT
] = ccw_device_request_event
,
1015 [DEV_EVENT_VERIFY
] = ccw_device_nop
,
1017 [DEV_STATE_BOXED
] = {
1018 [DEV_EVENT_NOTOPER
] = ccw_device_generic_notoper
,
1019 [DEV_EVENT_INTERRUPT
] = ccw_device_nop
,
1020 [DEV_EVENT_TIMEOUT
] = ccw_device_nop
,
1021 [DEV_EVENT_VERIFY
] = ccw_device_boxed_verify
,
1023 /* states to wait for i/o completion before doing something */
1024 [DEV_STATE_TIMEOUT_KILL
] = {
1025 [DEV_EVENT_NOTOPER
] = ccw_device_generic_notoper
,
1026 [DEV_EVENT_INTERRUPT
] = ccw_device_killing_irq
,
1027 [DEV_EVENT_TIMEOUT
] = ccw_device_killing_timeout
,
1028 [DEV_EVENT_VERIFY
] = ccw_device_nop
, //FIXME
1030 [DEV_STATE_QUIESCE
] = {
1031 [DEV_EVENT_NOTOPER
] = ccw_device_quiesce_done
,
1032 [DEV_EVENT_INTERRUPT
] = ccw_device_quiesce_done
,
1033 [DEV_EVENT_TIMEOUT
] = ccw_device_quiesce_timeout
,
1034 [DEV_EVENT_VERIFY
] = ccw_device_nop
,
1036 /* special states for devices gone not operational */
1037 [DEV_STATE_DISCONNECTED
] = {
1038 [DEV_EVENT_NOTOPER
] = ccw_device_nop
,
1039 [DEV_EVENT_INTERRUPT
] = ccw_device_start_id
,
1040 [DEV_EVENT_TIMEOUT
] = ccw_device_nop
,
1041 [DEV_EVENT_VERIFY
] = ccw_device_start_id
,
1043 [DEV_STATE_DISCONNECTED_SENSE_ID
] = {
1044 [DEV_EVENT_NOTOPER
] = ccw_device_request_event
,
1045 [DEV_EVENT_INTERRUPT
] = ccw_device_request_event
,
1046 [DEV_EVENT_TIMEOUT
] = ccw_device_request_event
,
1047 [DEV_EVENT_VERIFY
] = ccw_device_nop
,
1049 [DEV_STATE_CMFCHANGE
] = {
1050 [DEV_EVENT_NOTOPER
] = ccw_device_change_cmfstate
,
1051 [DEV_EVENT_INTERRUPT
] = ccw_device_change_cmfstate
,
1052 [DEV_EVENT_TIMEOUT
] = ccw_device_change_cmfstate
,
1053 [DEV_EVENT_VERIFY
] = ccw_device_change_cmfstate
,
1055 [DEV_STATE_CMFUPDATE
] = {
1056 [DEV_EVENT_NOTOPER
] = ccw_device_update_cmfblock
,
1057 [DEV_EVENT_INTERRUPT
] = ccw_device_update_cmfblock
,
1058 [DEV_EVENT_TIMEOUT
] = ccw_device_update_cmfblock
,
1059 [DEV_EVENT_VERIFY
] = ccw_device_update_cmfblock
,
1061 [DEV_STATE_STEAL_LOCK
] = {
1062 [DEV_EVENT_NOTOPER
] = ccw_device_request_event
,
1063 [DEV_EVENT_INTERRUPT
] = ccw_device_request_event
,
1064 [DEV_EVENT_TIMEOUT
] = ccw_device_request_event
,
1065 [DEV_EVENT_VERIFY
] = ccw_device_nop
,
1069 EXPORT_SYMBOL_GPL(ccw_device_set_timeout
);