blob: 83da53c8e54c5b982d604d1c7f91846404d9072b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * finite state machine for device handling
3 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 2002, 2008
Cornelia Huck4ce3b302006-01-14 13:21:04 -08005 * Author(s): Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Martin Schwidefsky (schwidefsky@de.ibm.com)
7 */
8
9#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/init.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080011#include <linux/jiffies.h>
12#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include <asm/ccwdev.h>
Cornelia Huck4c24da72005-09-03 15:58:01 -070015#include <asm/cio.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020016#include <asm/chpid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include "cio.h"
19#include "cio_debug.h"
20#include "css.h"
21#include "device.h"
22#include "chsc.h"
23#include "ioasm.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020024#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Sebastian Ott14ff56b2008-01-26 14:10:37 +010026static int timeout_log_enabled;
27
Sebastian Ott14ff56b2008-01-26 14:10:37 +010028static int __init ccw_timeout_log_setup(char *unused)
29{
30 timeout_log_enabled = 1;
31 return 1;
32}
33
34__setup("ccw_timeout_log", ccw_timeout_log_setup);
35
36static void ccw_timeout_log(struct ccw_device *cdev)
37{
38 struct schib schib;
39 struct subchannel *sch;
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010040 struct io_subchannel_private *private;
Peter Oberparleiter83262d62008-07-14 09:58:51 +020041 union orb *orb;
Sebastian Ott14ff56b2008-01-26 14:10:37 +010042 int cc;
43
44 sch = to_subchannel(cdev->dev.parent);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010045 private = to_io_private(sch);
Peter Oberparleiter83262d62008-07-14 09:58:51 +020046 orb = &private->orb;
Sebastian Ott8821d242010-04-22 17:17:05 +020047 cc = stsch_err(sch->schid, &schib);
Sebastian Ott14ff56b2008-01-26 14:10:37 +010048
49 printk(KERN_WARNING "cio: ccw device timeout occurred at %llx, "
Heiko Carstens1aae0562013-01-30 09:49:40 +010050 "device information:\n", get_tod_clock());
Sebastian Ott14ff56b2008-01-26 14:10:37 +010051 printk(KERN_WARNING "cio: orb:\n");
52 print_hex_dump(KERN_WARNING, "cio: ", DUMP_PREFIX_NONE, 16, 1,
Peter Oberparleiter83262d62008-07-14 09:58:51 +020053 orb, sizeof(*orb), 0);
Kay Sievers2a0217d2008-10-10 21:33:09 +020054 printk(KERN_WARNING "cio: ccw device bus id: %s\n",
55 dev_name(&cdev->dev));
56 printk(KERN_WARNING "cio: subchannel bus id: %s\n",
57 dev_name(&sch->dev));
Sebastian Ott14ff56b2008-01-26 14:10:37 +010058 printk(KERN_WARNING "cio: subchannel lpm: %02x, opm: %02x, "
59 "vpm: %02x\n", sch->lpm, sch->opm, sch->vpm);
60
Peter Oberparleiter83262d62008-07-14 09:58:51 +020061 if (orb->tm.b) {
62 printk(KERN_WARNING "cio: orb indicates transport mode\n");
63 printk(KERN_WARNING "cio: last tcw:\n");
64 print_hex_dump(KERN_WARNING, "cio: ", DUMP_PREFIX_NONE, 16, 1,
65 (void *)(addr_t)orb->tm.tcw,
66 sizeof(struct tcw), 0);
67 } else {
68 printk(KERN_WARNING "cio: orb indicates command mode\n");
69 if ((void *)(addr_t)orb->cmd.cpa == &private->sense_ccw ||
70 (void *)(addr_t)orb->cmd.cpa == cdev->private->iccws)
71 printk(KERN_WARNING "cio: last channel program "
72 "(intern):\n");
73 else
74 printk(KERN_WARNING "cio: last channel program:\n");
Sebastian Ott14ff56b2008-01-26 14:10:37 +010075
Peter Oberparleiter83262d62008-07-14 09:58:51 +020076 print_hex_dump(KERN_WARNING, "cio: ", DUMP_PREFIX_NONE, 16, 1,
77 (void *)(addr_t)orb->cmd.cpa,
78 sizeof(struct ccw1), 0);
79 }
Sebastian Ott14ff56b2008-01-26 14:10:37 +010080 printk(KERN_WARNING "cio: ccw device state: %d\n",
81 cdev->private->state);
82 printk(KERN_WARNING "cio: store subchannel returned: cc=%d\n", cc);
83 printk(KERN_WARNING "cio: schib:\n");
84 print_hex_dump(KERN_WARNING, "cio: ", DUMP_PREFIX_NONE, 16, 1,
85 &schib, sizeof(schib), 0);
86 printk(KERN_WARNING "cio: ccw device flags:\n");
87 print_hex_dump(KERN_WARNING, "cio: ", DUMP_PREFIX_NONE, 16, 1,
88 &cdev->private->flags, sizeof(cdev->private->flags), 0);
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/*
92 * Timeout function. It just triggers a DEV_EVENT_TIMEOUT.
93 */
94static void
95ccw_device_timeout(unsigned long data)
96{
97 struct ccw_device *cdev;
98
99 cdev = (struct ccw_device *) data;
100 spin_lock_irq(cdev->ccwlock);
Sebastian Ott14ff56b2008-01-26 14:10:37 +0100101 if (timeout_log_enabled)
102 ccw_timeout_log(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 dev_fsm_event(cdev, DEV_EVENT_TIMEOUT);
104 spin_unlock_irq(cdev->ccwlock);
105}
106
107/*
108 * Set timeout
109 */
110void
111ccw_device_set_timeout(struct ccw_device *cdev, int expires)
112{
113 if (expires == 0) {
114 del_timer(&cdev->private->timer);
115 return;
116 }
117 if (timer_pending(&cdev->private->timer)) {
118 if (mod_timer(&cdev->private->timer, jiffies + expires))
119 return;
120 }
121 cdev->private->timer.function = ccw_device_timeout;
122 cdev->private->timer.data = (unsigned long) cdev;
123 cdev->private->timer.expires = jiffies + expires;
124 add_timer(&cdev->private->timer);
125}
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*
128 * Cancel running i/o. This is called repeatedly since halt/clear are
129 * asynchronous operations. We do one try with cio_cancel, two tries
130 * with cio_halt, 255 tries with cio_clear. If everythings fails panic.
131 * Returns 0 if device now idle, -ENODEV for device not operational and
132 * -EBUSY if an interrupt is expected (either from halt/clear or from a
133 * status pending).
134 */
135int
136ccw_device_cancel_halt_clear(struct ccw_device *cdev)
137{
138 struct subchannel *sch;
139 int ret;
140
141 sch = to_subchannel(cdev->dev.parent);
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100142 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return -ENODEV;
Cornelia Huck2470b642007-03-05 23:36:02 +0100144 if (!sch->schib.pmcw.ena)
145 /* Not operational -> done. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 0;
147 /* Stage 1: cancel io. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200148 if (!(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_HALT_PEND) &&
149 !(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_CLEAR_PEND)) {
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200150 if (!scsw_is_tm(&sch->schib.scsw)) {
151 ret = cio_cancel(sch);
152 if (ret != -EINVAL)
153 return ret;
154 }
155 /* cancel io unsuccessful or not applicable (transport mode).
156 * Continue with asynchronous instructions. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 cdev->private->iretry = 3; /* 3 halt retries. */
158 }
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200159 if (!(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_CLEAR_PEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /* Stage 2: halt io. */
161 if (cdev->private->iretry) {
162 cdev->private->iretry--;
163 ret = cio_halt(sch);
Peter Oberparleiterba4ba8a2006-07-27 14:00:23 +0200164 if (ret != -EBUSY)
165 return (ret == 0) ? -EBUSY : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167 /* halt io unsuccessful. */
168 cdev->private->iretry = 255; /* 255 clear retries. */
169 }
170 /* Stage 3: clear io. */
171 if (cdev->private->iretry) {
172 cdev->private->iretry--;
173 ret = cio_clear (sch);
174 return (ret == 0) ? -EBUSY : ret;
175 }
Peter Oberparleiter376ae472010-10-25 16:10:44 +0200176 /* Function was unsuccessful */
177 CIO_MSG_EVENT(0, "0.%x.%04x: could not stop I/O\n",
178 cdev->private->dev_id.ssid, cdev->private->dev_id.devno);
179 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Sebastian Ott823d4942009-06-16 10:30:20 +0200182void ccw_device_update_sense_data(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Sebastian Ott823d4942009-06-16 10:30:20 +0200184 memset(&cdev->id, 0, sizeof(cdev->id));
185 cdev->id.cu_type = cdev->private->senseid.cu_type;
186 cdev->id.cu_model = cdev->private->senseid.cu_model;
187 cdev->id.dev_type = cdev->private->senseid.dev_type;
188 cdev->id.dev_model = cdev->private->senseid.dev_model;
189}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Sebastian Ott823d4942009-06-16 10:30:20 +0200191int ccw_device_test_sense_data(struct ccw_device *cdev)
192{
193 return cdev->id.cu_type == cdev->private->senseid.cu_type &&
194 cdev->id.cu_model == cdev->private->senseid.cu_model &&
195 cdev->id.dev_type == cdev->private->senseid.dev_type &&
196 cdev->id.dev_model == cdev->private->senseid.dev_model;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199/*
200 * The machine won't give us any notification by machine check if a chpid has
201 * been varied online on the SE so we have to find out by magic (i. e. driving
202 * the channel subsystem to device selection and updating our path masks).
203 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100204static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205__recover_lost_chpids(struct subchannel *sch, int old_lpm)
206{
207 int mask, i;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200208 struct chp_id chpid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200210 chp_id_init(&chpid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 for (i = 0; i<8; i++) {
212 mask = 0x80 >> i;
213 if (!(sch->lpm & mask))
214 continue;
215 if (old_lpm & mask)
216 continue;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200217 chpid.id = sch->schib.pmcw.chpid[i];
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200218 if (!chp_is_registered(chpid))
219 css_schedule_eval_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221}
222
223/*
224 * Stop device recognition.
225 */
226static void
227ccw_device_recog_done(struct ccw_device *cdev, int state)
228{
229 struct subchannel *sch;
Sebastian Ott823d4942009-06-16 10:30:20 +0200230 int old_lpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 sch = to_subchannel(cdev->dev.parent);
233
Sebastian Ottec643332009-12-07 12:51:36 +0100234 if (cio_disable_subchannel(sch))
235 state = DEV_STATE_NOT_OPER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /*
237 * Now that we tried recognition, we have performed device selection
238 * through ssch() and the path information is up to date.
239 */
240 old_lpm = sch->lpm;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100241
Cornelia Huck4ffa9232005-07-29 14:03:37 -0700242 /* Check since device may again have become not operational. */
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100243 if (cio_update_schib(sch))
Cornelia Huck4ffa9232005-07-29 14:03:37 -0700244 state = DEV_STATE_NOT_OPER;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100245 else
246 sch->lpm = sch->schib.pmcw.pam & sch->opm;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID)
249 /* Force reprobe on all chpids. */
250 old_lpm = 0;
251 if (sch->lpm != old_lpm)
252 __recover_lost_chpids(sch, old_lpm);
Sebastian Ott47593bf2009-03-31 19:16:05 +0200253 if (cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID &&
254 (state == DEV_STATE_NOT_OPER || state == DEV_STATE_BOXED)) {
255 cdev->private->flags.recog_done = 1;
256 cdev->private->state = DEV_STATE_DISCONNECTED;
257 wake_up(&cdev->private->wait_q);
258 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Sebastian Ott823d4942009-06-16 10:30:20 +0200260 if (cdev->private->flags.resuming) {
261 cdev->private->state = state;
262 cdev->private->flags.recog_done = 1;
263 wake_up(&cdev->private->wait_q);
264 return;
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 switch (state) {
267 case DEV_STATE_NOT_OPER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 break;
269 case DEV_STATE_OFFLINE:
Sebastian Ott823d4942009-06-16 10:30:20 +0200270 if (!cdev->online) {
271 ccw_device_update_sense_data(cdev);
Sebastian Ott823d4942009-06-16 10:30:20 +0200272 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
Sebastian Ott823d4942009-06-16 10:30:20 +0200274 cdev->private->state = DEV_STATE_OFFLINE;
275 cdev->private->flags.recog_done = 1;
276 if (ccw_device_test_sense_data(cdev)) {
277 cdev->private->flags.donotify = 1;
278 ccw_device_online(cdev);
279 wake_up(&cdev->private->wait_q);
280 } else {
281 ccw_device_update_sense_data(cdev);
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100282 ccw_device_sched_todo(cdev, CDEV_TODO_REBIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
Sebastian Ott823d4942009-06-16 10:30:20 +0200284 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 case DEV_STATE_BOXED:
Sebastian Ott47593bf2009-03-31 19:16:05 +0200286 if (cdev->id.cu_type != 0) { /* device was recognized before */
287 cdev->private->flags.recog_done = 1;
288 cdev->private->state = DEV_STATE_BOXED;
289 wake_up(&cdev->private->wait_q);
290 return;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 break;
293 }
294 cdev->private->state = state;
295 io_subchannel_recog_done(cdev);
Sebastian Ott156013f2009-03-31 19:16:03 +0200296 wake_up(&cdev->private->wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299/*
300 * Function called from device_id.c after sense id has completed.
301 */
302void
303ccw_device_sense_id_done(struct ccw_device *cdev, int err)
304{
305 switch (err) {
306 case 0:
307 ccw_device_recog_done(cdev, DEV_STATE_OFFLINE);
308 break;
309 case -ETIME: /* Sense id stopped by timeout. */
310 ccw_device_recog_done(cdev, DEV_STATE_BOXED);
311 break;
312 default:
313 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
314 break;
315 }
316}
317
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100318/**
319 * ccw_device_notify() - inform the device's driver about an event
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300320 * @cdev: device for which an event occurred
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100321 * @event: event that occurred
322 *
323 * Returns:
324 * -%EINVAL if the device is offline or has no driver.
325 * -%EOPNOTSUPP if the device's driver has no notifier registered.
326 * %NOTIFY_OK if the driver wants to keep the device.
327 * %NOTIFY_BAD if the driver doesn't want to keep the device.
328 */
Cornelia Huckc820de32008-07-14 09:58:45 +0200329int ccw_device_notify(struct ccw_device *cdev, int event)
330{
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100331 int ret = -EINVAL;
332
Cornelia Huckc820de32008-07-14 09:58:45 +0200333 if (!cdev->drv)
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100334 goto out;
Cornelia Huckc820de32008-07-14 09:58:45 +0200335 if (!cdev->online)
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100336 goto out;
Peter Oberparleiter91c36912008-08-21 19:46:39 +0200337 CIO_MSG_EVENT(2, "notify called for 0.%x.%04x, event=%d\n",
338 cdev->private->dev_id.ssid, cdev->private->dev_id.devno,
339 event);
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100340 if (!cdev->drv->notify) {
341 ret = -EOPNOTSUPP;
342 goto out;
343 }
344 if (cdev->drv->notify(cdev, event))
345 ret = NOTIFY_OK;
346 else
347 ret = NOTIFY_BAD;
348out:
349 return ret;
Cornelia Huckc820de32008-07-14 09:58:45 +0200350}
351
Peter Oberparleiter91c36912008-08-21 19:46:39 +0200352static void ccw_device_oper_notify(struct ccw_device *cdev)
353{
Sebastian Ott585b9542010-10-25 16:10:34 +0200354 struct subchannel *sch = to_subchannel(cdev->dev.parent);
355
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100356 if (ccw_device_notify(cdev, CIO_OPER) == NOTIFY_OK) {
Cornelia Huckee04bbc2007-03-05 23:35:56 +0100357 /* Reenable channel measurements, if needed. */
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100358 ccw_device_sched_todo(cdev, CDEV_TODO_ENABLE_CMF);
Sebastian Ott585b9542010-10-25 16:10:34 +0200359 /* Save indication for new paths. */
360 cdev->private->path_new_mask = sch->vpm;
Peter Oberparleiter91c36912008-08-21 19:46:39 +0200361 return;
362 }
363 /* Driver doesn't want device back. */
364 ccw_device_set_notoper(cdev);
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100365 ccw_device_sched_todo(cdev, CDEV_TODO_REBIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368/*
369 * Finished with online/offline processing.
370 */
371static void
372ccw_device_done(struct ccw_device *cdev, int state)
373{
374 struct subchannel *sch;
375
376 sch = to_subchannel(cdev->dev.parent);
377
Cornelia Huckf1ee3282006-10-04 20:02:02 +0200378 ccw_device_set_timeout(cdev, 0);
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (state != DEV_STATE_ONLINE)
381 cio_disable_subchannel(sch);
382
383 /* Reset device status. */
384 memset(&cdev->private->irb, 0, sizeof(struct irb));
385
386 cdev->private->state = state;
387
Peter Oberparleiter9a332112009-10-06 10:34:01 +0200388 switch (state) {
389 case DEV_STATE_BOXED:
Michael Ernst139b83d2008-05-07 09:22:54 +0200390 CIO_MSG_EVENT(0, "Boxed device %04x on subchannel %04x\n",
391 cdev->private->dev_id.devno, sch->schid.sch_no);
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100392 if (cdev->online &&
393 ccw_device_notify(cdev, CIO_BOXED) != NOTIFY_OK)
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100394 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG);
Sebastian Ott47593bf2009-03-31 19:16:05 +0200395 cdev->private->flags.donotify = 0;
Peter Oberparleiter9a332112009-10-06 10:34:01 +0200396 break;
397 case DEV_STATE_NOT_OPER:
Sebastian Ott626e4762009-09-11 10:28:17 +0200398 CIO_MSG_EVENT(0, "Device %04x gone on subchannel %04x\n",
399 cdev->private->dev_id.devno, sch->schid.sch_no);
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100400 if (ccw_device_notify(cdev, CIO_GONE) != NOTIFY_OK)
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100401 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG);
Peter Oberparleiter6afcc772009-10-06 10:34:02 +0200402 else
403 ccw_device_set_disconnected(cdev);
Sebastian Ott626e4762009-09-11 10:28:17 +0200404 cdev->private->flags.donotify = 0;
Peter Oberparleiter9a332112009-10-06 10:34:01 +0200405 break;
406 case DEV_STATE_DISCONNECTED:
407 CIO_MSG_EVENT(0, "Disconnected device %04x on subchannel "
408 "%04x\n", cdev->private->dev_id.devno,
409 sch->schid.sch_no);
Sebastian Ott9bf05092011-05-23 10:23:32 +0200410 if (ccw_device_notify(cdev, CIO_NO_PATH) != NOTIFY_OK) {
411 cdev->private->state = DEV_STATE_NOT_OPER;
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100412 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG);
Sebastian Ott9bf05092011-05-23 10:23:32 +0200413 } else
Peter Oberparleiter9a332112009-10-06 10:34:01 +0200414 ccw_device_set_disconnected(cdev);
415 cdev->private->flags.donotify = 0;
416 break;
417 default:
418 break;
Sebastian Ott626e4762009-09-11 10:28:17 +0200419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if (cdev->private->flags.donotify) {
422 cdev->private->flags.donotify = 0;
Peter Oberparleiter91c36912008-08-21 19:46:39 +0200423 ccw_device_oper_notify(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425 wake_up(&cdev->private->wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * Start device recognition.
430 */
Peter Oberparleiter736b5db2009-12-07 12:51:21 +0100431void ccw_device_recognition(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Peter Oberparleiter736b5db2009-12-07 12:51:21 +0100433 struct subchannel *sch = to_subchannel(cdev->dev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 /*
436 * We used to start here with a sense pgid to find out whether a device
437 * is locked by someone else. Unfortunately, the sense pgid command
438 * code has other meanings on devices predating the path grouping
439 * algorithm, so we start with sense id and box the device after an
440 * timeout (or if sense pgid during path verification detects the device
441 * is locked, as may happen on newer devices).
442 */
443 cdev->private->flags.recog_done = 0;
444 cdev->private->state = DEV_STATE_SENSE_ID;
Peter Oberparleiter736b5db2009-12-07 12:51:21 +0100445 if (cio_enable_subchannel(sch, (u32) (addr_t) sch)) {
446 ccw_device_recog_done(cdev, DEV_STATE_NOT_OPER);
447 return;
448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ccw_device_sense_id_start(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452/*
Peter Oberparleiter39f53602009-12-07 12:51:26 +0100453 * Handle events for states that use the ccw request infrastructure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 */
Peter Oberparleiter39f53602009-12-07 12:51:26 +0100455static void ccw_device_request_event(struct ccw_device *cdev, enum dev_event e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Peter Oberparleiter39f53602009-12-07 12:51:26 +0100457 switch (e) {
458 case DEV_EVENT_NOTOPER:
459 ccw_request_notoper(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 break;
Peter Oberparleiter39f53602009-12-07 12:51:26 +0100461 case DEV_EVENT_INTERRUPT:
462 ccw_request_handler(cdev);
463 break;
464 case DEV_EVENT_TIMEOUT:
465 ccw_request_timeout(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 break;
467 default:
Peter Oberparleiter39f53602009-12-07 12:51:26 +0100468 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470}
471
Sebastian Ott585b9542010-10-25 16:10:34 +0200472static void ccw_device_report_path_events(struct ccw_device *cdev)
473{
474 struct subchannel *sch = to_subchannel(cdev->dev.parent);
475 int path_event[8];
476 int chp, mask;
477
478 for (chp = 0, mask = 0x80; chp < 8; chp++, mask >>= 1) {
479 path_event[chp] = PE_NONE;
480 if (mask & cdev->private->path_gone_mask & ~(sch->vpm))
481 path_event[chp] |= PE_PATH_GONE;
482 if (mask & cdev->private->path_new_mask & sch->vpm)
483 path_event[chp] |= PE_PATH_AVAILABLE;
484 if (mask & cdev->private->pgid_reset_mask & sch->vpm)
485 path_event[chp] |= PE_PATHGROUP_ESTABLISHED;
486 }
487 if (cdev->online && cdev->drv->path_event)
488 cdev->drv->path_event(cdev, path_event);
489}
490
491static void ccw_device_reset_path_events(struct ccw_device *cdev)
492{
493 cdev->private->path_gone_mask = 0;
494 cdev->private->path_new_mask = 0;
495 cdev->private->pgid_reset_mask = 0;
496}
497
Sebastian Ott50c8e312011-12-01 13:32:21 +0100498static void create_fake_irb(struct irb *irb, int type)
499{
500 memset(irb, 0, sizeof(*irb));
501 if (type == FAKE_CMD_IRB) {
502 struct cmd_scsw *scsw = &irb->scsw.cmd;
503 scsw->cc = 1;
504 scsw->fctl = SCSW_FCTL_START_FUNC;
505 scsw->actl = SCSW_ACTL_START_PEND;
506 scsw->stctl = SCSW_STCTL_STATUS_PEND;
507 } else if (type == FAKE_TM_IRB) {
508 struct tm_scsw *scsw = &irb->scsw.tm;
509 scsw->x = 1;
510 scsw->cc = 1;
511 scsw->fctl = SCSW_FCTL_START_FUNC;
512 scsw->actl = SCSW_ACTL_START_PEND;
513 scsw->stctl = SCSW_STCTL_STATUS_PEND;
514 }
515}
516
517void ccw_device_verify_done(struct ccw_device *cdev, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Peter Oberparleiter28bdc6f2006-09-20 15:59:59 +0200519 struct subchannel *sch;
520
521 sch = to_subchannel(cdev->dev.parent);
522 /* Update schib - pom may have changed. */
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100523 if (cio_update_schib(sch)) {
Peter Oberparleiter7c4d9642009-12-07 12:51:22 +0100524 err = -ENODEV;
525 goto callback;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100526 }
Peter Oberparleiter28bdc6f2006-09-20 15:59:59 +0200527 /* Update lpm with verified path mask. */
528 sch->lpm = sch->vpm;
529 /* Repeat path verification? */
530 if (cdev->private->flags.doverify) {
Peter Oberparleiter28bdc6f2006-09-20 15:59:59 +0200531 ccw_device_verify_start(cdev);
532 return;
533 }
Peter Oberparleiter7c4d9642009-12-07 12:51:22 +0100534callback:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 switch (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 case 0:
537 ccw_device_done(cdev, DEV_STATE_ONLINE);
538 /* Deliver fake irb to device driver, if needed. */
539 if (cdev->private->flags.fake_irb) {
Sebastian Ott50c8e312011-12-01 13:32:21 +0100540 create_fake_irb(&cdev->private->irb,
541 cdev->private->flags.fake_irb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 cdev->private->flags.fake_irb = 0;
543 if (cdev->handler)
544 cdev->handler(cdev, cdev->private->intparm,
545 &cdev->private->irb);
546 memset(&cdev->private->irb, 0, sizeof(struct irb));
547 }
Sebastian Ott585b9542010-10-25 16:10:34 +0200548 ccw_device_report_path_events(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 break;
550 case -ETIME:
Peter Oberparleiter52ef0602009-12-07 12:51:31 +0100551 case -EUSERS:
Peter Oberparleiter8b42f5c2006-10-18 18:30:43 +0200552 /* Reset oper notify indication after verify error. */
553 cdev->private->flags.donotify = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 ccw_device_done(cdev, DEV_STATE_BOXED);
555 break;
Peter Oberparleiter7c4d9642009-12-07 12:51:22 +0100556 case -EACCES:
557 /* Reset oper notify indication after verify error. */
558 cdev->private->flags.donotify = 0;
559 ccw_device_done(cdev, DEV_STATE_DISCONNECTED);
560 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 default:
Peter Oberparleiter8b42f5c2006-10-18 18:30:43 +0200562 /* Reset oper notify indication after verify error. */
563 cdev->private->flags.donotify = 0;
Peter Oberparleiter7c4d9642009-12-07 12:51:22 +0100564 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 break;
566 }
Sebastian Ott585b9542010-10-25 16:10:34 +0200567 ccw_device_reset_path_events(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570/*
571 * Get device online.
572 */
573int
574ccw_device_online(struct ccw_device *cdev)
575{
576 struct subchannel *sch;
577 int ret;
578
579 if ((cdev->private->state != DEV_STATE_OFFLINE) &&
580 (cdev->private->state != DEV_STATE_BOXED))
581 return -EINVAL;
582 sch = to_subchannel(cdev->dev.parent);
Cornelia Huckedf22092008-04-30 13:38:39 +0200583 ret = cio_enable_subchannel(sch, (u32)(addr_t)sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (ret != 0) {
585 /* Couldn't enable the subchannel for i/o. Sick device. */
586 if (ret == -ENODEV)
587 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
588 return ret;
589 }
Peter Oberparleiter52ef0602009-12-07 12:51:31 +0100590 /* Start initial path verification. */
591 cdev->private->state = DEV_STATE_VERIFY;
592 ccw_device_verify_start(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
594}
595
596void
597ccw_device_disband_done(struct ccw_device *cdev, int err)
598{
599 switch (err) {
600 case 0:
601 ccw_device_done(cdev, DEV_STATE_OFFLINE);
602 break;
603 case -ETIME:
604 ccw_device_done(cdev, DEV_STATE_BOXED);
605 break;
606 default:
Peter Oberparleiter3ecb0a52007-05-31 17:38:07 +0200607 cdev->private->flags.donotify = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
609 break;
610 }
611}
612
613/*
614 * Shutdown device.
615 */
616int
617ccw_device_offline(struct ccw_device *cdev)
618{
619 struct subchannel *sch;
620
Peter Oberparleiterb301ea82008-09-09 12:38:59 +0200621 /* Allow ccw_device_offline while disconnected. */
622 if (cdev->private->state == DEV_STATE_DISCONNECTED ||
623 cdev->private->state == DEV_STATE_NOT_OPER) {
624 cdev->private->flags.donotify = 0;
625 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
626 return 0;
627 }
Peter Oberparleiter102e8352009-10-06 10:34:03 +0200628 if (cdev->private->state == DEV_STATE_BOXED) {
629 ccw_device_done(cdev, DEV_STATE_BOXED);
630 return 0;
631 }
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100632 if (ccw_device_is_orphan(cdev)) {
633 ccw_device_done(cdev, DEV_STATE_OFFLINE);
634 return 0;
635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 sch = to_subchannel(cdev->dev.parent);
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100637 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return -ENODEV;
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200639 if (scsw_actl(&sch->schib.scsw) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -EBUSY;
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200641 if (cdev->private->state != DEV_STATE_ONLINE)
642 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /* Are we doing path grouping? */
Peter Oberparleiter454e1fa2009-12-07 12:51:30 +0100644 if (!cdev->private->flags.pgroup) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* No, set state offline immediately. */
646 ccw_device_done(cdev, DEV_STATE_OFFLINE);
647 return 0;
648 }
649 /* Start Set Path Group commands. */
650 cdev->private->state = DEV_STATE_DISBAND_PGID;
651 ccw_device_disband_start(cdev);
652 return 0;
653}
654
655/*
Cornelia Huck3f4cf6e2007-10-12 16:11:26 +0200656 * Handle not operational event in non-special state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 */
Cornelia Huck3f4cf6e2007-10-12 16:11:26 +0200658static void ccw_device_generic_notoper(struct ccw_device *cdev,
659 enum dev_event dev_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Sebastian Ott76e6fb42010-02-26 22:37:28 +0100661 if (ccw_device_notify(cdev, CIO_GONE) != NOTIFY_OK)
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100662 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG);
Peter Oberparleiter6afcc772009-10-06 10:34:02 +0200663 else
664 ccw_device_set_disconnected(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/*
Peter Oberparleiter1f1148c2009-09-11 10:28:14 +0200668 * Handle path verification event in offline state.
669 */
670static void ccw_device_offline_verify(struct ccw_device *cdev,
671 enum dev_event dev_event)
672{
673 struct subchannel *sch = to_subchannel(cdev->dev.parent);
674
675 css_schedule_eval(sch->schid);
676}
677
678/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 * Handle path verification event.
680 */
681static void
682ccw_device_online_verify(struct ccw_device *cdev, enum dev_event dev_event)
683{
684 struct subchannel *sch;
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (cdev->private->state == DEV_STATE_W4SENSE) {
687 cdev->private->flags.doverify = 1;
688 return;
689 }
690 sch = to_subchannel(cdev->dev.parent);
691 /*
692 * Since we might not just be coming from an interrupt from the
693 * subchannel we have to update the schib.
694 */
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100695 if (cio_update_schib(sch)) {
696 ccw_device_verify_done(cdev, -ENODEV);
697 return;
698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200700 if (scsw_actl(&sch->schib.scsw) != 0 ||
701 (scsw_stctl(&sch->schib.scsw) & SCSW_STCTL_STATUS_PEND) ||
702 (scsw_stctl(&cdev->private->irb.scsw) & SCSW_STCTL_STATUS_PEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /*
704 * No final status yet or final status not yet delivered
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300705 * to the device driver. Can't do path verification now,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 * delay until final status was delivered.
707 */
708 cdev->private->flags.doverify = 1;
709 return;
710 }
711 /* Device is idle, we can do the path verification. */
712 cdev->private->state = DEV_STATE_VERIFY;
713 ccw_device_verify_start(cdev);
714}
715
716/*
Peter Oberparleiterd7d12ef2009-12-07 12:51:32 +0100717 * Handle path verification event in boxed state.
718 */
719static void ccw_device_boxed_verify(struct ccw_device *cdev,
720 enum dev_event dev_event)
721{
722 struct subchannel *sch = to_subchannel(cdev->dev.parent);
723
724 if (cdev->online) {
725 if (cio_enable_subchannel(sch, (u32) (addr_t) sch))
726 ccw_device_done(cdev, DEV_STATE_NOT_OPER);
727 else
728 ccw_device_online_verify(cdev, dev_event);
729 } else
730 css_schedule_eval(sch->schid);
731}
732
733/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 * Got an interrupt for a normal io (state online).
735 */
736static void
737ccw_device_irq(struct ccw_device *cdev, enum dev_event dev_event)
738{
739 struct irb *irb;
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200740 int is_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Christoph Lameter0bf7fcf2014-08-17 12:30:46 -0500742 irb = this_cpu_ptr(&cio_irb);
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200743 is_cmd = !scsw_is_tm(&irb->scsw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /* Check for unsolicited interrupt. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200745 if (!scsw_is_solicited(&irb->scsw)) {
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200746 if (is_cmd && (irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 !irb->esw.esw0.erw.cons) {
748 /* Unit check but no sense data. Need basic sense. */
749 if (ccw_device_do_sense(cdev, irb) != 0)
750 goto call_handler_unsol;
Cornelia Hucke0ec5742006-06-04 02:51:27 -0700751 memcpy(&cdev->private->irb, irb, sizeof(struct irb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 cdev->private->state = DEV_STATE_W4SENSE;
753 cdev->private->intparm = 0;
754 return;
755 }
756call_handler_unsol:
757 if (cdev->handler)
758 cdev->handler (cdev, 0, irb);
Cornelia Huck18374d32007-02-05 21:17:09 +0100759 if (cdev->private->flags.doverify)
760 ccw_device_online_verify(cdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return;
762 }
763 /* Accumulate status and find out if a basic sense is needed. */
764 ccw_device_accumulate_irb(cdev, irb);
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200765 if (is_cmd && cdev->private->flags.dosense) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (ccw_device_do_sense(cdev, irb) == 0) {
767 cdev->private->state = DEV_STATE_W4SENSE;
768 }
769 return;
770 }
771 /* Call the handler. */
772 if (ccw_device_call_handler(cdev) && cdev->private->flags.doverify)
773 /* Start delayed path verification. */
774 ccw_device_online_verify(cdev, 0);
775}
776
777/*
778 * Got an timeout in online state.
779 */
780static void
781ccw_device_online_timeout(struct ccw_device *cdev, enum dev_event dev_event)
782{
783 int ret;
784
785 ccw_device_set_timeout(cdev, 0);
Peter Oberparleiter376ae472010-10-25 16:10:44 +0200786 cdev->private->iretry = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 ret = ccw_device_cancel_halt_clear(cdev);
788 if (ret == -EBUSY) {
789 ccw_device_set_timeout(cdev, 3*HZ);
790 cdev->private->state = DEV_STATE_TIMEOUT_KILL;
791 return;
792 }
Peter Oberparleiter376ae472010-10-25 16:10:44 +0200793 if (ret)
Cornelia Huck3f4cf6e2007-10-12 16:11:26 +0200794 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
795 else if (cdev->handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 cdev->handler(cdev, cdev->private->intparm,
797 ERR_PTR(-ETIMEDOUT));
798}
799
800/*
801 * Got an interrupt for a basic sense.
802 */
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100803static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804ccw_device_w4sense(struct ccw_device *cdev, enum dev_event dev_event)
805{
806 struct irb *irb;
807
Christoph Lameter0bf7fcf2014-08-17 12:30:46 -0500808 irb = this_cpu_ptr(&cio_irb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 /* Check for unsolicited interrupt. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200810 if (scsw_stctl(&irb->scsw) ==
811 (SCSW_STCTL_STATUS_PEND | SCSW_STCTL_ALERT_STATUS)) {
812 if (scsw_cc(&irb->scsw) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 /* Basic sense hasn't started. Try again. */
814 ccw_device_do_sense(cdev, irb);
815 else {
Michael Ernst139b83d2008-05-07 09:22:54 +0200816 CIO_MSG_EVENT(0, "0.%x.%04x: unsolicited "
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200817 "interrupt during w4sense...\n",
818 cdev->private->dev_id.ssid,
819 cdev->private->dev_id.devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (cdev->handler)
821 cdev->handler (cdev, 0, irb);
822 }
823 return;
824 }
Cornelia Huck3ba19982006-03-24 03:15:12 -0800825 /*
826 * Check if a halt or clear has been issued in the meanwhile. If yes,
827 * only deliver the halt/clear interrupt to the device driver as if it
828 * had killed the original request.
829 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200830 if (scsw_fctl(&irb->scsw) &
831 (SCSW_FCTL_CLEAR_FUNC | SCSW_FCTL_HALT_FUNC)) {
Cornelia Huck3ba19982006-03-24 03:15:12 -0800832 cdev->private->flags.dosense = 0;
833 memset(&cdev->private->irb, 0, sizeof(struct irb));
834 ccw_device_accumulate_irb(cdev, irb);
835 goto call_handler;
836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 /* Add basic sense info to irb. */
838 ccw_device_accumulate_basic_sense(cdev, irb);
839 if (cdev->private->flags.dosense) {
840 /* Another basic sense is needed. */
841 ccw_device_do_sense(cdev, irb);
842 return;
843 }
Cornelia Huck3ba19982006-03-24 03:15:12 -0800844call_handler:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 cdev->private->state = DEV_STATE_ONLINE;
Michael Ernst217ee6c2009-09-11 10:28:21 +0200846 /* In case sensing interfered with setting the device online */
847 wake_up(&cdev->private->wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 /* Call the handler. */
849 if (ccw_device_call_handler(cdev) && cdev->private->flags.doverify)
850 /* Start delayed path verification. */
851 ccw_device_online_verify(cdev, 0);
852}
853
854static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855ccw_device_killing_irq(struct ccw_device *cdev, enum dev_event dev_event)
856{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 ccw_device_set_timeout(cdev, 0);
Cornelia Huck7c8427c2007-03-05 23:35:59 +0100858 /* Start delayed path verification. */
859 ccw_device_online_verify(cdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /* OK, i/o is dead now. Call interrupt handler. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (cdev->handler)
862 cdev->handler(cdev, cdev->private->intparm,
Cornelia Hucke7769b42006-10-11 15:31:41 +0200863 ERR_PTR(-EIO));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
866static void
867ccw_device_killing_timeout(struct ccw_device *cdev, enum dev_event dev_event)
868{
869 int ret;
870
871 ret = ccw_device_cancel_halt_clear(cdev);
872 if (ret == -EBUSY) {
873 ccw_device_set_timeout(cdev, 3*HZ);
874 return;
875 }
Cornelia Huck7c8427c2007-03-05 23:35:59 +0100876 /* Start delayed path verification. */
877 ccw_device_online_verify(cdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (cdev->handler)
879 cdev->handler(cdev, cdev->private->intparm,
Cornelia Hucke7769b42006-10-11 15:31:41 +0200880 ERR_PTR(-EIO));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Cornelia Huckc820de32008-07-14 09:58:45 +0200883void ccw_device_kill_io(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
885 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Peter Oberparleiter376ae472010-10-25 16:10:44 +0200887 cdev->private->iretry = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 ret = ccw_device_cancel_halt_clear(cdev);
889 if (ret == -EBUSY) {
890 ccw_device_set_timeout(cdev, 3*HZ);
891 cdev->private->state = DEV_STATE_TIMEOUT_KILL;
892 return;
893 }
Cornelia Huck7c8427c2007-03-05 23:35:59 +0100894 /* Start delayed path verification. */
895 ccw_device_online_verify(cdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (cdev->handler)
897 cdev->handler(cdev, cdev->private->intparm,
Cornelia Hucke7769b42006-10-11 15:31:41 +0200898 ERR_PTR(-EIO));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
901static void
Peter Oberparleiter28bdc6f2006-09-20 15:59:59 +0200902ccw_device_delay_verify(struct ccw_device *cdev, enum dev_event dev_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Peter Oberparleiter28bdc6f2006-09-20 15:59:59 +0200904 /* Start verification after current task finished. */
Cornelia Huck7e560812006-07-12 16:40:19 +0200905 cdev->private->flags.doverify = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907
908static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909ccw_device_start_id(struct ccw_device *cdev, enum dev_event dev_event)
910{
911 struct subchannel *sch;
912
913 sch = to_subchannel(cdev->dev.parent);
Cornelia Huckedf22092008-04-30 13:38:39 +0200914 if (cio_enable_subchannel(sch, (u32)(addr_t)sch) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 /* Couldn't enable the subchannel for i/o. Sick device. */
916 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 cdev->private->state = DEV_STATE_DISCONNECTED_SENSE_ID;
918 ccw_device_sense_id_start(cdev);
919}
920
Cornelia Huckc820de32008-07-14 09:58:45 +0200921void ccw_device_trigger_reprobe(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Cornelia Huckc820de32008-07-14 09:58:45 +0200923 struct subchannel *sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (cdev->private->state != DEV_STATE_DISCONNECTED)
926 return;
927
Cornelia Huckc820de32008-07-14 09:58:45 +0200928 sch = to_subchannel(cdev->dev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /* Update some values. */
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100930 if (cio_update_schib(sch))
Cornelia Huck7674da72006-12-08 15:54:21 +0100931 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 /*
933 * The pim, pam, pom values may not be accurate, but they are the best
934 * we have before performing device selection :/
935 */
Peter Oberparleiter28bdc6f2006-09-20 15:59:59 +0200936 sch->lpm = sch->schib.pmcw.pam & sch->opm;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100937 /*
938 * Use the initial configuration since we can't be shure that the old
939 * paths are valid.
940 */
941 io_subchannel_init_config(sch);
Sebastian Ottf444cc02008-12-25 13:39:14 +0100942 if (cio_commit_config(sch))
943 return;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /* We should also udate ssd info, but this has to wait. */
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100946 /* Check if this is another device which appeared on the same sch. */
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100947 if (sch->schib.pmcw.dev != cdev->private->dev_id.devno)
948 css_schedule_eval(sch->schid);
949 else
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100950 ccw_device_start_id(cdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Peter Oberparleiter16b9a052009-12-07 12:51:24 +0100953static void ccw_device_disabled_irq(struct ccw_device *cdev,
954 enum dev_event dev_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 struct subchannel *sch;
957
958 sch = to_subchannel(cdev->dev.parent);
959 /*
Peter Oberparleiter16b9a052009-12-07 12:51:24 +0100960 * An interrupt in a disabled state means a previous disable was not
Cornelia Hucked04b892009-03-26 15:24:06 +0100961 * successful - should not happen, but we try to disable again.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 */
963 cio_disable_subchannel(sch);
964}
965
966static void
967ccw_device_change_cmfstate(struct ccw_device *cdev, enum dev_event dev_event)
968{
969 retry_set_schib(cdev);
970 cdev->private->state = DEV_STATE_ONLINE;
971 dev_fsm_event(cdev, dev_event);
972}
973
Cornelia Huck94bb0632006-06-29 15:08:41 +0200974static void ccw_device_update_cmfblock(struct ccw_device *cdev,
975 enum dev_event dev_event)
976{
977 cmf_retry_copy_block(cdev);
978 cdev->private->state = DEV_STATE_ONLINE;
979 dev_fsm_event(cdev, dev_event);
980}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982static void
983ccw_device_quiesce_done(struct ccw_device *cdev, enum dev_event dev_event)
984{
985 ccw_device_set_timeout(cdev, 0);
Sebastian Ott56e6b792009-12-07 12:51:35 +0100986 cdev->private->state = DEV_STATE_NOT_OPER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 wake_up(&cdev->private->wait_q);
988}
989
990static void
991ccw_device_quiesce_timeout(struct ccw_device *cdev, enum dev_event dev_event)
992{
993 int ret;
994
995 ret = ccw_device_cancel_halt_clear(cdev);
Sebastian Ott56e6b792009-12-07 12:51:35 +0100996 if (ret == -EBUSY) {
997 ccw_device_set_timeout(cdev, HZ/10);
998 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 cdev->private->state = DEV_STATE_NOT_OPER;
1000 wake_up(&cdev->private->wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
1002}
1003
1004/*
1005 * No operation action. This is used e.g. to ignore a timeout event in
1006 * state offline.
1007 */
1008static void
1009ccw_device_nop(struct ccw_device *cdev, enum dev_event dev_event)
1010{
1011}
1012
1013/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 * device statemachine
1015 */
1016fsm_func_t *dev_jumptable[NR_DEV_STATES][NR_DEV_EVENTS] = {
1017 [DEV_STATE_NOT_OPER] = {
1018 [DEV_EVENT_NOTOPER] = ccw_device_nop,
Peter Oberparleiter16b9a052009-12-07 12:51:24 +01001019 [DEV_EVENT_INTERRUPT] = ccw_device_disabled_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1021 [DEV_EVENT_VERIFY] = ccw_device_nop,
1022 },
1023 [DEV_STATE_SENSE_PGID] = {
Peter Oberparleiter9679baa2009-12-07 12:51:27 +01001024 [DEV_EVENT_NOTOPER] = ccw_device_request_event,
1025 [DEV_EVENT_INTERRUPT] = ccw_device_request_event,
1026 [DEV_EVENT_TIMEOUT] = ccw_device_request_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 [DEV_EVENT_VERIFY] = ccw_device_nop,
1028 },
1029 [DEV_STATE_SENSE_ID] = {
Peter Oberparleiter39f53602009-12-07 12:51:26 +01001030 [DEV_EVENT_NOTOPER] = ccw_device_request_event,
1031 [DEV_EVENT_INTERRUPT] = ccw_device_request_event,
1032 [DEV_EVENT_TIMEOUT] = ccw_device_request_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 [DEV_EVENT_VERIFY] = ccw_device_nop,
1034 },
1035 [DEV_STATE_OFFLINE] = {
Cornelia Huck3f4cf6e2007-10-12 16:11:26 +02001036 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
Peter Oberparleiter16b9a052009-12-07 12:51:24 +01001037 [DEV_EVENT_INTERRUPT] = ccw_device_disabled_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
Peter Oberparleiter1f1148c2009-09-11 10:28:14 +02001039 [DEV_EVENT_VERIFY] = ccw_device_offline_verify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 },
1041 [DEV_STATE_VERIFY] = {
Peter Oberparleiter9679baa2009-12-07 12:51:27 +01001042 [DEV_EVENT_NOTOPER] = ccw_device_request_event,
1043 [DEV_EVENT_INTERRUPT] = ccw_device_request_event,
1044 [DEV_EVENT_TIMEOUT] = ccw_device_request_event,
Peter Oberparleiter28bdc6f2006-09-20 15:59:59 +02001045 [DEV_EVENT_VERIFY] = ccw_device_delay_verify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 },
1047 [DEV_STATE_ONLINE] = {
Cornelia Huck3f4cf6e2007-10-12 16:11:26 +02001048 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 [DEV_EVENT_INTERRUPT] = ccw_device_irq,
1050 [DEV_EVENT_TIMEOUT] = ccw_device_online_timeout,
1051 [DEV_EVENT_VERIFY] = ccw_device_online_verify,
1052 },
1053 [DEV_STATE_W4SENSE] = {
Cornelia Huck3f4cf6e2007-10-12 16:11:26 +02001054 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 [DEV_EVENT_INTERRUPT] = ccw_device_w4sense,
1056 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1057 [DEV_EVENT_VERIFY] = ccw_device_online_verify,
1058 },
1059 [DEV_STATE_DISBAND_PGID] = {
Peter Oberparleiter9679baa2009-12-07 12:51:27 +01001060 [DEV_EVENT_NOTOPER] = ccw_device_request_event,
1061 [DEV_EVENT_INTERRUPT] = ccw_device_request_event,
1062 [DEV_EVENT_TIMEOUT] = ccw_device_request_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 [DEV_EVENT_VERIFY] = ccw_device_nop,
1064 },
1065 [DEV_STATE_BOXED] = {
Cornelia Huck3f4cf6e2007-10-12 16:11:26 +02001066 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
Peter Oberparleiterd7d12ef2009-12-07 12:51:32 +01001067 [DEV_EVENT_INTERRUPT] = ccw_device_nop,
1068 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
1069 [DEV_EVENT_VERIFY] = ccw_device_boxed_verify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 },
1071 /* states to wait for i/o completion before doing something */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 [DEV_STATE_TIMEOUT_KILL] = {
Cornelia Huck3f4cf6e2007-10-12 16:11:26 +02001073 [DEV_EVENT_NOTOPER] = ccw_device_generic_notoper,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 [DEV_EVENT_INTERRUPT] = ccw_device_killing_irq,
1075 [DEV_EVENT_TIMEOUT] = ccw_device_killing_timeout,
1076 [DEV_EVENT_VERIFY] = ccw_device_nop, //FIXME
1077 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 [DEV_STATE_QUIESCE] = {
1079 [DEV_EVENT_NOTOPER] = ccw_device_quiesce_done,
1080 [DEV_EVENT_INTERRUPT] = ccw_device_quiesce_done,
1081 [DEV_EVENT_TIMEOUT] = ccw_device_quiesce_timeout,
1082 [DEV_EVENT_VERIFY] = ccw_device_nop,
1083 },
1084 /* special states for devices gone not operational */
1085 [DEV_STATE_DISCONNECTED] = {
1086 [DEV_EVENT_NOTOPER] = ccw_device_nop,
1087 [DEV_EVENT_INTERRUPT] = ccw_device_start_id,
Peter Oberparleiter16b9a052009-12-07 12:51:24 +01001088 [DEV_EVENT_TIMEOUT] = ccw_device_nop,
Peter Oberparleiter28bdc6f2006-09-20 15:59:59 +02001089 [DEV_EVENT_VERIFY] = ccw_device_start_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 },
1091 [DEV_STATE_DISCONNECTED_SENSE_ID] = {
Peter Oberparleiter39f53602009-12-07 12:51:26 +01001092 [DEV_EVENT_NOTOPER] = ccw_device_request_event,
1093 [DEV_EVENT_INTERRUPT] = ccw_device_request_event,
1094 [DEV_EVENT_TIMEOUT] = ccw_device_request_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 [DEV_EVENT_VERIFY] = ccw_device_nop,
1096 },
1097 [DEV_STATE_CMFCHANGE] = {
1098 [DEV_EVENT_NOTOPER] = ccw_device_change_cmfstate,
1099 [DEV_EVENT_INTERRUPT] = ccw_device_change_cmfstate,
1100 [DEV_EVENT_TIMEOUT] = ccw_device_change_cmfstate,
1101 [DEV_EVENT_VERIFY] = ccw_device_change_cmfstate,
1102 },
Cornelia Huck94bb0632006-06-29 15:08:41 +02001103 [DEV_STATE_CMFUPDATE] = {
1104 [DEV_EVENT_NOTOPER] = ccw_device_update_cmfblock,
1105 [DEV_EVENT_INTERRUPT] = ccw_device_update_cmfblock,
1106 [DEV_EVENT_TIMEOUT] = ccw_device_update_cmfblock,
1107 [DEV_EVENT_VERIFY] = ccw_device_update_cmfblock,
1108 },
Peter Oberparleiterd7d12ef2009-12-07 12:51:32 +01001109 [DEV_STATE_STEAL_LOCK] = {
1110 [DEV_EVENT_NOTOPER] = ccw_device_request_event,
1111 [DEV_EVENT_INTERRUPT] = ccw_device_request_event,
1112 [DEV_EVENT_TIMEOUT] = ccw_device_request_event,
1113 [DEV_EVENT_VERIFY] = ccw_device_nop,
1114 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115};
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117EXPORT_SYMBOL_GPL(ccw_device_set_timeout);