blob: 49ec562d7f60b7d9d5d3c7658851394c11020d8d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/s390/cio/device_fsm.c
3 * finite state machine for device handling
4 *
5 * Copyright (C) 2002 IBM Deutschland Entwicklung GmbH,
6 * IBM Corporation
Cornelia Huck4ce3b302006-01-14 13:21:04 -08007 * Author(s): Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Martin Schwidefsky (schwidefsky@de.ibm.com)
9 */
10
11#include <linux/module.h>
12#include <linux/config.h>
13#include <linux/init.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080014#include <linux/jiffies.h>
15#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#include <asm/ccwdev.h>
Cornelia Huck4c24da72005-09-03 15:58:01 -070018#include <asm/cio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include "cio.h"
21#include "cio_debug.h"
22#include "css.h"
23#include "device.h"
24#include "chsc.h"
25#include "ioasm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27int
28device_is_online(struct subchannel *sch)
29{
30 struct ccw_device *cdev;
31
32 if (!sch->dev.driver_data)
33 return 0;
34 cdev = sch->dev.driver_data;
35 return (cdev->private->state == DEV_STATE_ONLINE);
36}
37
38int
39device_is_disconnected(struct subchannel *sch)
40{
41 struct ccw_device *cdev;
42
43 if (!sch->dev.driver_data)
44 return 0;
45 cdev = sch->dev.driver_data;
46 return (cdev->private->state == DEV_STATE_DISCONNECTED ||
47 cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID);
48}
49
50void
51device_set_disconnected(struct subchannel *sch)
52{
53 struct ccw_device *cdev;
54
55 if (!sch->dev.driver_data)
56 return;
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;
61}
62
63void
64device_set_waiting(struct subchannel *sch)
65{
66 struct ccw_device *cdev;
67
68 if (!sch->dev.driver_data)
69 return;
70 cdev = sch->dev.driver_data;
71 ccw_device_set_timeout(cdev, 10*HZ);
72 cdev->private->state = DEV_STATE_WAIT4IO;
73}
74
75/*
76 * Timeout function. It just triggers a DEV_EVENT_TIMEOUT.
77 */
78static void
79ccw_device_timeout(unsigned long data)
80{
81 struct ccw_device *cdev;
82
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);
87}
88
89/*
90 * Set timeout
91 */
92void
93ccw_device_set_timeout(struct ccw_device *cdev, int expires)
94{
95 if (expires == 0) {
96 del_timer(&cdev->private->timer);
97 return;
98 }
99 if (timer_pending(&cdev->private->timer)) {
100 if (mod_timer(&cdev->private->timer, jiffies + expires))
101 return;
102 }
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);
107}
108
109/* Kill any pending timers after machine check. */
110void
111device_kill_pending_timer(struct subchannel *sch)
112{
113 struct ccw_device *cdev;
114
115 if (!sch->dev.driver_data)
116 return;
117 cdev = sch->dev.driver_data;
118 ccw_device_set_timeout(cdev, 0);
119}
120
121/*
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
127 * status pending).
128 */
129int
130ccw_device_cancel_halt_clear(struct ccw_device *cdev)
131{
132 struct subchannel *sch;
133 int ret;
134
135 sch = to_subchannel(cdev->dev.parent);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800136 ret = stsch(sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (ret || !sch->schib.pmcw.dnv)
138 return -ENODEV;
139 if (!sch->schib.pmcw.ena || sch->schib.scsw.actl == 0)
140 /* Not operational or no activity -> done. */
141 return 0;
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);
146 if (ret != -EINVAL)
147 return ret;
148 /* cancel io unsuccessful. From now on it is asynchronous. */
149 cdev->private->iretry = 3; /* 3 halt retries. */
150 }
151 if (!(sch->schib.scsw.actl & SCSW_ACTL_CLEAR_PEND)) {
152 /* Stage 2: halt io. */
153 if (cdev->private->iretry) {
154 cdev->private->iretry--;
155 ret = cio_halt(sch);
156 return (ret == 0) ? -EBUSY : ret;
157 }
158 /* halt io unsuccessful. */
159 cdev->private->iretry = 255; /* 255 clear retries. */
160 }
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;
166 }
167 panic("Can't stop i/o on subchannel.\n");
168}
169
170static int
171ccw_device_handle_oper(struct ccw_device *cdev)
172{
173 struct subchannel *sch;
174
175 sch = to_subchannel(cdev->dev.parent);
176 cdev->private->flags.recog_done = 1;
177 /*
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.
181 */
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);
190 return 0;
191 }
192 cdev->private->flags.donotify = 1;
193 return 1;
194}
195
196/*
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).
200 */
201static inline void
202__recover_lost_chpids(struct subchannel *sch, int old_lpm)
203{
204 int mask, i;
205
206 for (i = 0; i<8; i++) {
207 mask = 0x80 >> i;
208 if (!(sch->lpm & mask))
209 continue;
210 if (old_lpm & mask)
211 continue;
212 chpid_is_actually_online(sch->schib.pmcw.chpid[i]);
213 }
214}
215
216/*
217 * Stop device recognition.
218 */
219static void
220ccw_device_recog_done(struct ccw_device *cdev, int state)
221{
222 struct subchannel *sch;
223 int notify, old_lpm, same_dev;
224
225 sch = to_subchannel(cdev->dev.parent);
226
227 ccw_device_set_timeout(cdev, 0);
228 cio_disable_subchannel(sch);
229 /*
230 * Now that we tried recognition, we have performed device selection
231 * through ssch() and the path information is up to date.
232 */
233 old_lpm = sch->lpm;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800234 stsch(sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 sch->lpm = sch->schib.pmcw.pim &
236 sch->schib.pmcw.pam &
237 sch->schib.pmcw.pom &
238 sch->opm;
Cornelia Huck4ffa9232005-07-29 14:03:37 -0700239 /* Check since device may again have become not operational. */
240 if (!sch->schib.pmcw.dnv)
241 state = DEV_STATE_NOT_OPER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID)
243 /* Force reprobe on all chpids. */
244 old_lpm = 0;
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;
251 return;
252 }
253 /* Boxed devices don't need extra treatment. */
254 }
255 notify = 0;
256 same_dev = 0; /* Keep the compiler quiet... */
257 switch (state) {
258 case DEV_STATE_NOT_OPER:
259 CIO_DEBUG(KERN_WARNING, 2,
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800260 "SenseID : unknown device %04x on subchannel "
261 "0.%x.%04x\n", cdev->private->devno,
262 sch->schid.ssid, sch->schid.sch_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264 case DEV_STATE_OFFLINE:
265 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID) {
266 same_dev = ccw_device_handle_oper(cdev);
267 notify = 1;
268 }
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,
275 };
276 if (notify) {
277 cdev->private->state = DEV_STATE_OFFLINE;
278 if (same_dev) {
279 /* Get device online again. */
280 ccw_device_online(cdev);
281 wake_up(&cdev->private->wait_q);
282 }
283 return;
284 }
285 /* Issue device info message. */
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800286 CIO_DEBUG(KERN_INFO, 2, "SenseID : device 0.%x.%04x reports: "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 "CU Type/Mod = %04X/%02X, Dev Type/Mod = "
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800288 "%04X/%02X\n",
289 cdev->private->ssid, cdev->private->devno,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 cdev->id.cu_type, cdev->id.cu_model,
291 cdev->id.dev_type, cdev->id.dev_model);
292 break;
293 case DEV_STATE_BOXED:
294 CIO_DEBUG(KERN_WARNING, 2,
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800295 "SenseID : boxed device %04x on subchannel "
296 "0.%x.%04x\n", cdev->private->devno,
297 sch->schid.ssid, sch->schid.sch_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 break;
299 }
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);
304}
305
306/*
307 * Function called from device_id.c after sense id has completed.
308 */
309void
310ccw_device_sense_id_done(struct ccw_device *cdev, int err)
311{
312 switch (err) {
313 case 0:
314 ccw_device_recog_done(cdev, DEV_STATE_OFFLINE);
315 break;
316 case -ETIME: /* Sense id stopped by timeout. */
317 ccw_device_recog_done(cdev, DEV_STATE_BOXED);
318 break;
319 default:
320 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
321 break;
322 }
323}
324
325static void
326ccw_device_oper_notify(void *data)
327{
328 struct ccw_device *cdev;
329 struct subchannel *sch;
330 int ret;
331
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;
336 if (!ret)
337 /* Driver doesn't want device back. */
338 ccw_device_do_unreg_rereg((void *)cdev);
339 else
340 wake_up(&cdev->private->wait_q);
341}
342
343/*
344 * Finished with online/offline processing.
345 */
346static void
347ccw_device_done(struct ccw_device *cdev, int state)
348{
349 struct subchannel *sch;
350
351 sch = to_subchannel(cdev->dev.parent);
352
353 if (state != DEV_STATE_ONLINE)
354 cio_disable_subchannel(sch);
355
356 /* Reset device status. */
357 memset(&cdev->private->irb, 0, sizeof(struct irb));
358
359 cdev->private->state = state;
360
361
362 if (state == DEV_STATE_BOXED)
363 CIO_DEBUG(KERN_WARNING, 2,
364 "Boxed device %04x on subchannel %04x\n",
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800365 cdev->private->devno, sch->schid.sch_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 if (cdev->private->flags.donotify) {
368 cdev->private->flags.donotify = 0;
369 PREPARE_WORK(&cdev->private->kick_work, ccw_device_oper_notify,
370 (void *)cdev);
371 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
372 }
373 wake_up(&cdev->private->wait_q);
374
375 if (css_init_done && state != DEV_STATE_ONLINE)
376 put_device (&cdev->dev);
377}
378
379/*
380 * Function called from device_pgid.c after sense path ground has completed.
381 */
382void
383ccw_device_sense_pgid_done(struct ccw_device *cdev, int err)
384{
385 struct subchannel *sch;
386
387 sch = to_subchannel(cdev->dev.parent);
388 switch (err) {
389 case 0:
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);
394 break;
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);
398 break;
399 case -EOPNOTSUPP: /* path grouping not supported, just set online. */
400 cdev->private->options.pgroup = 0;
401 ccw_device_done(cdev, DEV_STATE_ONLINE);
402 break;
403 default:
404 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
405 break;
406 }
407}
408
409/*
410 * Start device recognition.
411 */
412int
413ccw_device_recognition(struct ccw_device *cdev)
414{
415 struct subchannel *sch;
416 int ret;
417
418 if ((cdev->private->state != DEV_STATE_NOT_OPER) &&
419 (cdev->private->state != DEV_STATE_BOXED))
420 return -EINVAL;
421 sch = to_subchannel(cdev->dev.parent);
422 ret = cio_enable_subchannel(sch, sch->schib.pmcw.isc);
423 if (ret != 0)
424 /* Couldn't enable the subchannel for i/o. Sick device. */
425 return ret;
426
427 /* After 60s the device recognition is considered to have failed. */
428 ccw_device_set_timeout(cdev, 60*HZ);
429
430 /*
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).
437 */
438 cdev->private->flags.recog_done = 0;
439 cdev->private->state = DEV_STATE_SENSE_ID;
440 ccw_device_sense_id_start(cdev);
441 return 0;
442}
443
444/*
445 * Handle timeout in device recognition.
446 */
447static void
448ccw_device_recog_timeout(struct ccw_device *cdev, enum dev_event dev_event)
449{
450 int ret;
451
452 ret = ccw_device_cancel_halt_clear(cdev);
453 switch (ret) {
454 case 0:
455 ccw_device_recog_done(cdev, DEV_STATE_BOXED);
456 break;
457 case -ENODEV:
458 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
459 break;
460 default:
461 ccw_device_set_timeout(cdev, 3*HZ);
462 }
463}
464
465
466static void
467ccw_device_nopath_notify(void *data)
468{
469 struct ccw_device *cdev;
470 struct subchannel *sch;
471 int ret;
472
473 cdev = (struct ccw_device *)data;
474 sch = to_subchannel(cdev->dev.parent);
475 /* Extra sanity. */
476 if (sch->lpm)
477 return;
478 ret = (sch->driver && sch->driver->notify) ?
479 sch->driver->notify(&sch->dev, CIO_NO_PATH) : 0;
480 if (!ret) {
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,
487 (void *)cdev);
488 queue_work(ccw_device_work,
489 &cdev->private->kick_work);
490 } else
491 put_device(&sch->dev);
492 }
493 } else {
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);
499 }
500}
501
502void
503ccw_device_verify_done(struct ccw_device *cdev, int err)
504{
505 cdev->private->flags.doverify = 0;
506 switch (err) {
507 case -EOPNOTSUPP: /* path grouping not supported, just set online. */
508 cdev->private->options.pgroup = 0;
509 case 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) {
515 .cc = 1,
516 .fctl = SCSW_FCTL_START_FUNC,
517 .actl = SCSW_ACTL_START_PEND,
518 .stctl = SCSW_STCTL_STATUS_PEND,
519 };
520 cdev->private->flags.fake_irb = 0;
521 if (cdev->handler)
522 cdev->handler(cdev, cdev->private->intparm,
523 &cdev->private->irb);
524 memset(&cdev->private->irb, 0, sizeof(struct irb));
525 }
526 break;
527 case -ETIME:
528 ccw_device_done(cdev, DEV_STATE_BOXED);
529 break;
530 default:
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);
535 break;
536 }
537}
538
539/*
540 * Get device online.
541 */
542int
543ccw_device_online(struct ccw_device *cdev)
544{
545 struct subchannel *sch;
546 int ret;
547
548 if ((cdev->private->state != DEV_STATE_OFFLINE) &&
549 (cdev->private->state != DEV_STATE_BOXED))
550 return -EINVAL;
551 sch = to_subchannel(cdev->dev.parent);
552 if (css_init_done && !get_device(&cdev->dev))
553 return -ENODEV;
554 ret = cio_enable_subchannel(sch, sch->schib.pmcw.isc);
555 if (ret != 0) {
556 /* Couldn't enable the subchannel for i/o. Sick device. */
557 if (ret == -ENODEV)
558 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
559 return ret;
560 }
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);
565 return 0;
566 }
567 /* Do a SensePGID first. */
568 cdev->private->state = DEV_STATE_SENSE_PGID;
569 ccw_device_sense_pgid_start(cdev);
570 return 0;
571}
572
573void
574ccw_device_disband_done(struct ccw_device *cdev, int err)
575{
576 switch (err) {
577 case 0:
578 ccw_device_done(cdev, DEV_STATE_OFFLINE);
579 break;
580 case -ETIME:
581 ccw_device_done(cdev, DEV_STATE_BOXED);
582 break;
583 default:
584 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
585 break;
586 }
587}
588
589/*
590 * Shutdown device.
591 */
592int
593ccw_device_offline(struct ccw_device *cdev)
594{
595 struct subchannel *sch;
596
597 sch = to_subchannel(cdev->dev.parent);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800598 if (stsch(sch->schid, &sch->schib) || !sch->schib.pmcw.dnv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return -ENODEV;
600 if (cdev->private->state != DEV_STATE_ONLINE) {
601 if (sch->schib.scsw.actl != 0)
602 return -EBUSY;
603 return -EINVAL;
604 }
605 if (sch->schib.scsw.actl != 0)
606 return -EBUSY;
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);
611 return 0;
612 }
613 /* Start Set Path Group commands. */
614 cdev->private->state = DEV_STATE_DISBAND_PGID;
615 ccw_device_disband_start(cdev);
616 return 0;
617}
618
619/*
620 * Handle timeout in device online/offline process.
621 */
622static void
623ccw_device_onoff_timeout(struct ccw_device *cdev, enum dev_event dev_event)
624{
625 int ret;
626
627 ret = ccw_device_cancel_halt_clear(cdev);
628 switch (ret) {
629 case 0:
630 ccw_device_done(cdev, DEV_STATE_BOXED);
631 break;
632 case -ENODEV:
633 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
634 break;
635 default:
636 ccw_device_set_timeout(cdev, 3*HZ);
637 }
638}
639
640/*
641 * Handle not oper event in device recognition.
642 */
643static void
644ccw_device_recog_notoper(struct ccw_device *cdev, enum dev_event dev_event)
645{
646 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
647}
648
649/*
650 * Handle not operational event while offline.
651 */
652static void
653ccw_device_offline_notoper(struct ccw_device *cdev, enum dev_event dev_event)
654{
655 struct subchannel *sch;
656
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);
663 }
664 wake_up(&cdev->private->wait_q);
665}
666
667/*
668 * Handle not operational event while online.
669 */
670static void
671ccw_device_online_notoper(struct ccw_device *cdev, enum dev_event dev_event)
672{
673 struct subchannel *sch;
674
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);
682 return;
683 }
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);
689 }
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);
694 }
695 wake_up(&cdev->private->wait_q);
696}
697
698/*
699 * Handle path verification event.
700 */
701static void
702ccw_device_online_verify(struct ccw_device *cdev, enum dev_event dev_event)
703{
704 struct subchannel *sch;
705
706 if (!cdev->private->options.pgroup)
707 return;
708 if (cdev->private->state == DEV_STATE_W4SENSE) {
709 cdev->private->flags.doverify = 1;
710 return;
711 }
712 sch = to_subchannel(cdev->dev.parent);
713 /*
714 * Since we might not just be coming from an interrupt from the
715 * subchannel we have to update the schib.
716 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800717 stsch(sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 if (sch->schib.scsw.actl != 0 ||
720 (cdev->private->irb.scsw.stctl & SCSW_STCTL_STATUS_PEND)) {
721 /*
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.
725 */
726 cdev->private->flags.doverify = 1;
727 return;
728 }
729 /* Device is idle, we can do the path verification. */
730 cdev->private->state = DEV_STATE_VERIFY;
731 ccw_device_verify_start(cdev);
732}
733
734/*
735 * Got an interrupt for a normal io (state online).
736 */
737static void
738ccw_device_irq(struct ccw_device *cdev, enum dev_event dev_event)
739{
740 struct irb *irb;
741
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;
Cornelia Hucke0ec5742006-06-04 02:51:27 -0700752 memcpy(&cdev->private->irb, irb, sizeof(struct irb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 cdev->private->state = DEV_STATE_W4SENSE;
754 cdev->private->intparm = 0;
755 return;
756 }
757call_handler_unsol:
758 if (cdev->handler)
759 cdev->handler (cdev, 0, irb);
760 return;
761 }
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;
767 }
768 return;
769 }
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);
774}
775
776/*
777 * Got an timeout in online state.
778 */
779static void
780ccw_device_online_timeout(struct ccw_device *cdev, enum dev_event dev_event)
781{
782 int ret;
783
784 ccw_device_set_timeout(cdev, 0);
785 ret = ccw_device_cancel_halt_clear(cdev);
786 if (ret == -EBUSY) {
787 ccw_device_set_timeout(cdev, 3*HZ);
788 cdev->private->state = DEV_STATE_TIMEOUT_KILL;
789 return;
790 }
791 if (ret == -ENODEV) {
792 struct subchannel *sch;
793
794 sch = to_subchannel(cdev->dev.parent);
795 if (!sch->lpm) {
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);
800 } else
801 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
802 } else if (cdev->handler)
803 cdev->handler(cdev, cdev->private->intparm,
804 ERR_PTR(-ETIMEDOUT));
805}
806
807/*
808 * Got an interrupt for a basic sense.
809 */
810void
811ccw_device_w4sense(struct ccw_device *cdev, enum dev_event dev_event)
812{
813 struct irb *irb;
814
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);
822 else {
823 printk("Huh? %s(%s): unsolicited interrupt...\n",
824 __FUNCTION__, cdev->dev.bus_id);
825 if (cdev->handler)
826 cdev->handler (cdev, 0, irb);
827 }
828 return;
829 }
Cornelia Huck3ba19982006-03-24 03:15:12 -0800830 /*
831 * Check if a halt or clear has been issued in the meanwhile. If yes,
832 * only deliver the halt/clear interrupt to the device driver as if it
833 * had killed the original request.
834 */
835 if (irb->scsw.fctl & (SCSW_FCTL_CLEAR_FUNC | SCSW_FCTL_HALT_FUNC)) {
836 cdev->private->flags.dosense = 0;
837 memset(&cdev->private->irb, 0, sizeof(struct irb));
838 ccw_device_accumulate_irb(cdev, irb);
839 goto call_handler;
840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /* Add basic sense info to irb. */
842 ccw_device_accumulate_basic_sense(cdev, irb);
843 if (cdev->private->flags.dosense) {
844 /* Another basic sense is needed. */
845 ccw_device_do_sense(cdev, irb);
846 return;
847 }
Cornelia Huck3ba19982006-03-24 03:15:12 -0800848call_handler:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 cdev->private->state = DEV_STATE_ONLINE;
850 /* Call the handler. */
851 if (ccw_device_call_handler(cdev) && cdev->private->flags.doverify)
852 /* Start delayed path verification. */
853 ccw_device_online_verify(cdev, 0);
854}
855
856static void
857ccw_device_clear_verify(struct ccw_device *cdev, enum dev_event dev_event)
858{
859 struct irb *irb;
860
861 irb = (struct irb *) __LC_IRB;
862 /* Accumulate status. We don't do basic sense. */
863 ccw_device_accumulate_irb(cdev, irb);
864 /* Try to start delayed device verification. */
865 ccw_device_online_verify(cdev, 0);
866 /* Note: Don't call handler for cio initiated clear! */
867}
868
869static void
870ccw_device_killing_irq(struct ccw_device *cdev, enum dev_event dev_event)
871{
872 struct subchannel *sch;
873
874 sch = to_subchannel(cdev->dev.parent);
875 ccw_device_set_timeout(cdev, 0);
876 /* OK, i/o is dead now. Call interrupt handler. */
877 cdev->private->state = DEV_STATE_ONLINE;
878 if (cdev->handler)
879 cdev->handler(cdev, cdev->private->intparm,
880 ERR_PTR(-ETIMEDOUT));
881 if (!sch->lpm) {
882 PREPARE_WORK(&cdev->private->kick_work,
883 ccw_device_nopath_notify, (void *)cdev);
884 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
885 } else if (cdev->private->flags.doverify)
886 /* Start delayed path verification. */
887 ccw_device_online_verify(cdev, 0);
888}
889
890static void
891ccw_device_killing_timeout(struct ccw_device *cdev, enum dev_event dev_event)
892{
893 int ret;
894
895 ret = ccw_device_cancel_halt_clear(cdev);
896 if (ret == -EBUSY) {
897 ccw_device_set_timeout(cdev, 3*HZ);
898 return;
899 }
900 if (ret == -ENODEV) {
901 struct subchannel *sch;
902
903 sch = to_subchannel(cdev->dev.parent);
904 if (!sch->lpm) {
905 PREPARE_WORK(&cdev->private->kick_work,
906 ccw_device_nopath_notify, (void *)cdev);
907 queue_work(ccw_device_notify_work,
908 &cdev->private->kick_work);
909 } else
910 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
911 return;
912 }
913 //FIXME: Can we get here?
914 cdev->private->state = DEV_STATE_ONLINE;
915 if (cdev->handler)
916 cdev->handler(cdev, cdev->private->intparm,
917 ERR_PTR(-ETIMEDOUT));
918}
919
920static void
921ccw_device_wait4io_irq(struct ccw_device *cdev, enum dev_event dev_event)
922{
923 struct irb *irb;
924 struct subchannel *sch;
925
926 irb = (struct irb *) __LC_IRB;
927 /*
928 * Accumulate status and find out if a basic sense is needed.
929 * This is fine since we have already adapted the lpm.
930 */
931 ccw_device_accumulate_irb(cdev, irb);
932 if (cdev->private->flags.dosense) {
933 if (ccw_device_do_sense(cdev, irb) == 0) {
934 cdev->private->state = DEV_STATE_W4SENSE;
935 }
936 return;
937 }
938
939 /* Iff device is idle, reset timeout. */
940 sch = to_subchannel(cdev->dev.parent);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800941 if (!stsch(sch->schid, &sch->schib))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (sch->schib.scsw.actl == 0)
943 ccw_device_set_timeout(cdev, 0);
944 /* Call the handler. */
945 ccw_device_call_handler(cdev);
946 if (!sch->lpm) {
947 PREPARE_WORK(&cdev->private->kick_work,
948 ccw_device_nopath_notify, (void *)cdev);
949 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
950 } else if (cdev->private->flags.doverify)
951 ccw_device_online_verify(cdev, 0);
952}
953
954static void
955ccw_device_wait4io_timeout(struct ccw_device *cdev, enum dev_event dev_event)
956{
957 int ret;
958 struct subchannel *sch;
959
960 sch = to_subchannel(cdev->dev.parent);
961 ccw_device_set_timeout(cdev, 0);
962 ret = ccw_device_cancel_halt_clear(cdev);
963 if (ret == -EBUSY) {
964 ccw_device_set_timeout(cdev, 3*HZ);
965 cdev->private->state = DEV_STATE_TIMEOUT_KILL;
966 return;
967 }
968 if (ret == -ENODEV) {
969 if (!sch->lpm) {
970 PREPARE_WORK(&cdev->private->kick_work,
971 ccw_device_nopath_notify, (void *)cdev);
972 queue_work(ccw_device_notify_work,
973 &cdev->private->kick_work);
974 } else
975 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
976 return;
977 }
978 if (cdev->handler)
979 cdev->handler(cdev, cdev->private->intparm,
980 ERR_PTR(-ETIMEDOUT));
981 if (!sch->lpm) {
982 PREPARE_WORK(&cdev->private->kick_work,
983 ccw_device_nopath_notify, (void *)cdev);
984 queue_work(ccw_device_notify_work, &cdev->private->kick_work);
985 } else if (cdev->private->flags.doverify)
986 /* Start delayed path verification. */
987 ccw_device_online_verify(cdev, 0);
988}
989
990static void
991ccw_device_wait4io_verify(struct ccw_device *cdev, enum dev_event dev_event)
992{
993 /* When the I/O has terminated, we have to start verification. */
994 if (cdev->private->options.pgroup)
995 cdev->private->flags.doverify = 1;
996}
997
998static void
999ccw_device_stlck_done(struct ccw_device *cdev, enum dev_event dev_event)
1000{
1001 struct irb *irb;
1002
1003 switch (dev_event) {
1004 case DEV_EVENT_INTERRUPT:
1005 irb = (struct irb *) __LC_IRB;
1006 /* Check for unsolicited interrupt. */
1007 if ((irb->scsw.stctl ==
1008 (SCSW_STCTL_STATUS_PEND | SCSW_STCTL_ALERT_STATUS)) &&
1009 (!irb->scsw.cc))
1010 /* FIXME: we should restart stlck here, but this
1011 * is extremely unlikely ... */
1012 goto out_wakeup;
1013
1014 ccw_device_accumulate_irb(cdev, irb);
1015 /* We don't care about basic sense etc. */
1016 break;
1017 default: /* timeout */
1018 break;
1019 }
1020out_wakeup:
1021 wake_up(&cdev->private->wait_q);
1022}
1023
1024static void
1025ccw_device_start_id(struct ccw_device *cdev, enum dev_event dev_event)
1026{
1027 struct subchannel *sch;
1028
1029 sch = to_subchannel(cdev->dev.parent);
1030 if (cio_enable_subchannel(sch, sch->schib.pmcw.isc) != 0)
1031 /* Couldn't enable the subchannel for i/o. Sick device. */
1032 return;
1033
1034 /* After 60s the device recognition is considered to have failed. */
1035 ccw_device_set_timeout(cdev, 60*HZ);
1036
1037 cdev->private->state = DEV_STATE_DISCONNECTED_SENSE_ID;
1038 ccw_device_sense_id_start(cdev);
1039}
1040
1041void
1042device_trigger_reprobe(struct subchannel *sch)
1043{
1044 struct ccw_device *cdev;
1045
1046 if (!sch->dev.driver_data)
1047 return;
1048 cdev = sch->dev.driver_data;
1049 if (cdev->private->state != DEV_STATE_DISCONNECTED)
1050 return;
1051
1052 /* Update some values. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -08001053 if (stsch(sch->schid, &sch->schib))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return;
1055
1056 /*
1057 * The pim, pam, pom values may not be accurate, but they are the best
1058 * we have before performing device selection :/
1059 */
1060 sch->lpm = sch->schib.pmcw.pim &
1061 sch->schib.pmcw.pam &
1062 sch->schib.pmcw.pom &
1063 sch->opm;
1064 /* Re-set some bits in the pmcw that were lost. */
1065 sch->schib.pmcw.isc = 3;
1066 sch->schib.pmcw.csense = 1;
1067 sch->schib.pmcw.ena = 0;
1068 if ((sch->lpm & (sch->lpm - 1)) != 0)
1069 sch->schib.pmcw.mp = 1;
1070 sch->schib.pmcw.intparm = (__u32)(unsigned long)sch;
1071 /* We should also udate ssd info, but this has to wait. */
1072 ccw_device_start_id(cdev, 0);
1073}
1074
1075static void
1076ccw_device_offline_irq(struct ccw_device *cdev, enum dev_event dev_event)
1077{
1078 struct subchannel *sch;
1079
1080 sch = to_subchannel(cdev->dev.parent);
1081 /*
1082 * An interrupt in state offline means a previous disable was not
1083 * successful. Try again.
1084 */
1085 cio_disable_subchannel(sch);
1086}
1087
1088static void
1089ccw_device_change_cmfstate(struct ccw_device *cdev, enum dev_event dev_event)
1090{
1091 retry_set_schib(cdev);
1092 cdev->private->state = DEV_STATE_ONLINE;
1093 dev_fsm_event(cdev, dev_event);
1094}
1095
1096
1097static void
1098ccw_device_quiesce_done(struct ccw_device *cdev, enum dev_event dev_event)
1099{
1100 ccw_device_set_timeout(cdev, 0);
1101 if (dev_event == DEV_EVENT_NOTOPER)
1102 cdev->private->state = DEV_STATE_NOT_OPER;
1103 else
1104 cdev->private->state = DEV_STATE_OFFLINE;
1105 wake_up(&cdev->private->wait_q);
1106}
1107
1108static void
1109ccw_device_quiesce_timeout(struct ccw_device *cdev, enum dev_event dev_event)
1110{
1111 int ret;
1112
1113 ret = ccw_device_cancel_halt_clear(cdev);
1114 switch (ret) {
1115 case 0:
1116 cdev->private->state = DEV_STATE_OFFLINE;
1117 wake_up(&cdev->private->wait_q);
1118 break;
1119 case -ENODEV:
1120 cdev->private->state = DEV_STATE_NOT_OPER;
1121 wake_up(&cdev->private->wait_q);
1122 break;
1123 default:
1124 ccw_device_set_timeout(cdev, HZ/10);
1125 }
1126}
1127
1128/*
1129 * No operation action. This is used e.g. to ignore a timeout event in
1130 * state offline.
1131 */
1132static void
1133ccw_device_nop(struct ccw_device *cdev, enum dev_event dev_event)
1134{
1135}
1136
1137/*
1138 * Bug operation action.
1139 */
1140static void
1141ccw_device_bug(struct ccw_device *cdev, enum dev_event dev_event)
1142{
1143 printk(KERN_EMERG "dev_jumptable[%i][%i] == NULL\n",
1144 cdev->private->state, dev_event);
1145 BUG();
1146}
1147
1148/*
1149 * device statemachine
1150 */
1151fsm_func_t *dev_jumptable[NR_DEV_STATES][NR_DEV_EVENTS] = {
1152 [DEV_STATE_NOT_OPER] = {
1153 [DEV_EVENT_NOTOPER] = ccw_device_nop,
1154 [DEV_EVENT_INTERRUPT] = ccw_device_bug,
1155 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1156 [DEV_EVENT_VERIFY] = ccw_device_nop,
1157 },
1158 [DEV_STATE_SENSE_PGID] = {
1159 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1160 [DEV_EVENT_INTERRUPT] = ccw_device_sense_pgid_irq,
1161 [DEV_EVENT_TIMEOUT] = ccw_device_onoff_timeout,
1162 [DEV_EVENT_VERIFY] = ccw_device_nop,
1163 },
1164 [DEV_STATE_SENSE_ID] = {
1165 [DEV_EVENT_NOTOPER] = ccw_device_recog_notoper,
1166 [DEV_EVENT_INTERRUPT] = ccw_device_sense_id_irq,
1167 [DEV_EVENT_TIMEOUT] = ccw_device_recog_timeout,
1168 [DEV_EVENT_VERIFY] = ccw_device_nop,
1169 },
1170 [DEV_STATE_OFFLINE] = {
1171 [DEV_EVENT_NOTOPER] = ccw_device_offline_notoper,
1172 [DEV_EVENT_INTERRUPT] = ccw_device_offline_irq,
1173 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1174 [DEV_EVENT_VERIFY] = ccw_device_nop,
1175 },
1176 [DEV_STATE_VERIFY] = {
1177 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1178 [DEV_EVENT_INTERRUPT] = ccw_device_verify_irq,
1179 [DEV_EVENT_TIMEOUT] = ccw_device_onoff_timeout,
1180 [DEV_EVENT_VERIFY] = ccw_device_nop,
1181 },
1182 [DEV_STATE_ONLINE] = {
1183 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1184 [DEV_EVENT_INTERRUPT] = ccw_device_irq,
1185 [DEV_EVENT_TIMEOUT] = ccw_device_online_timeout,
1186 [DEV_EVENT_VERIFY] = ccw_device_online_verify,
1187 },
1188 [DEV_STATE_W4SENSE] = {
1189 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1190 [DEV_EVENT_INTERRUPT] = ccw_device_w4sense,
1191 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1192 [DEV_EVENT_VERIFY] = ccw_device_online_verify,
1193 },
1194 [DEV_STATE_DISBAND_PGID] = {
1195 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1196 [DEV_EVENT_INTERRUPT] = ccw_device_disband_irq,
1197 [DEV_EVENT_TIMEOUT] = ccw_device_onoff_timeout,
1198 [DEV_EVENT_VERIFY] = ccw_device_nop,
1199 },
1200 [DEV_STATE_BOXED] = {
1201 [DEV_EVENT_NOTOPER] = ccw_device_offline_notoper,
1202 [DEV_EVENT_INTERRUPT] = ccw_device_stlck_done,
1203 [DEV_EVENT_TIMEOUT] = ccw_device_stlck_done,
1204 [DEV_EVENT_VERIFY] = ccw_device_nop,
1205 },
1206 /* states to wait for i/o completion before doing something */
1207 [DEV_STATE_CLEAR_VERIFY] = {
1208 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1209 [DEV_EVENT_INTERRUPT] = ccw_device_clear_verify,
1210 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1211 [DEV_EVENT_VERIFY] = ccw_device_nop,
1212 },
1213 [DEV_STATE_TIMEOUT_KILL] = {
1214 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1215 [DEV_EVENT_INTERRUPT] = ccw_device_killing_irq,
1216 [DEV_EVENT_TIMEOUT] = ccw_device_killing_timeout,
1217 [DEV_EVENT_VERIFY] = ccw_device_nop, //FIXME
1218 },
1219 [DEV_STATE_WAIT4IO] = {
1220 [DEV_EVENT_NOTOPER] = ccw_device_online_notoper,
1221 [DEV_EVENT_INTERRUPT] = ccw_device_wait4io_irq,
1222 [DEV_EVENT_TIMEOUT] = ccw_device_wait4io_timeout,
1223 [DEV_EVENT_VERIFY] = ccw_device_wait4io_verify,
1224 },
1225 [DEV_STATE_QUIESCE] = {
1226 [DEV_EVENT_NOTOPER] = ccw_device_quiesce_done,
1227 [DEV_EVENT_INTERRUPT] = ccw_device_quiesce_done,
1228 [DEV_EVENT_TIMEOUT] = ccw_device_quiesce_timeout,
1229 [DEV_EVENT_VERIFY] = ccw_device_nop,
1230 },
1231 /* special states for devices gone not operational */
1232 [DEV_STATE_DISCONNECTED] = {
1233 [DEV_EVENT_NOTOPER] = ccw_device_nop,
1234 [DEV_EVENT_INTERRUPT] = ccw_device_start_id,
1235 [DEV_EVENT_TIMEOUT] = ccw_device_bug,
1236 [DEV_EVENT_VERIFY] = ccw_device_nop,
1237 },
1238 [DEV_STATE_DISCONNECTED_SENSE_ID] = {
1239 [DEV_EVENT_NOTOPER] = ccw_device_recog_notoper,
1240 [DEV_EVENT_INTERRUPT] = ccw_device_sense_id_irq,
1241 [DEV_EVENT_TIMEOUT] = ccw_device_recog_timeout,
1242 [DEV_EVENT_VERIFY] = ccw_device_nop,
1243 },
1244 [DEV_STATE_CMFCHANGE] = {
1245 [DEV_EVENT_NOTOPER] = ccw_device_change_cmfstate,
1246 [DEV_EVENT_INTERRUPT] = ccw_device_change_cmfstate,
1247 [DEV_EVENT_TIMEOUT] = ccw_device_change_cmfstate,
1248 [DEV_EVENT_VERIFY] = ccw_device_change_cmfstate,
1249 },
1250};
1251
1252/*
1253 * io_subchannel_irq is called for "real" interrupts or for status
1254 * pending conditions on msch.
1255 */
1256void
1257io_subchannel_irq (struct device *pdev)
1258{
1259 struct ccw_device *cdev;
1260
1261 cdev = to_subchannel(pdev)->dev.driver_data;
1262
1263 CIO_TRACE_EVENT (3, "IRQ");
1264 CIO_TRACE_EVENT (3, pdev->bus_id);
1265 if (cdev)
1266 dev_fsm_event(cdev, DEV_EVENT_INTERRUPT);
1267}
1268
1269EXPORT_SYMBOL_GPL(ccw_device_set_timeout);