]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/s390/cio/device.c
[S390] pm: xpram driver power management callbacks
[mirror_ubuntu-hirsute-kernel.git] / drivers / s390 / cio / device.c
CommitLineData
1da177e4
LT
1/*
2 * drivers/s390/cio/device.c
3 * bus driver for ccw devices
1da177e4 4 *
c820de39 5 * Copyright IBM Corp. 2002,2008
1da177e4 6 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
4ce3b30c 7 * Cornelia Huck (cornelia.huck@de.ibm.com)
1da177e4
LT
8 * Martin Schwidefsky (schwidefsky@de.ibm.com)
9 */
1da177e4
LT
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/spinlock.h>
13#include <linux/errno.h>
14#include <linux/err.h>
15#include <linux/slab.h>
16#include <linux/list.h>
17#include <linux/device.h>
18#include <linux/workqueue.h>
90ab1336 19#include <linux/timer.h>
1da177e4
LT
20
21#include <asm/ccwdev.h>
22#include <asm/cio.h>
4e57b681 23#include <asm/param.h> /* HZ */
1842f2b1 24#include <asm/cmb.h>
3a3fc29a 25#include <asm/isc.h>
1da177e4 26
0ae7a7b2 27#include "chp.h"
1da177e4 28#include "cio.h"
d7b5a4c9 29#include "cio_debug.h"
1da177e4
LT
30#include "css.h"
31#include "device.h"
32#include "ioasm.h"
cd6b4f27 33#include "io_sch.h"
ecf5d9ef 34#include "blacklist.h"
1da177e4 35
90ab1336 36static struct timer_list recovery_timer;
486d0a00 37static DEFINE_SPINLOCK(recovery_lock);
90ab1336
PO
38static int recovery_phase;
39static const unsigned long recovery_delay[] = { 3, 30, 300 };
40
1da177e4
LT
41/******************* bus type handling ***********************/
42
43/* The Linux driver model distinguishes between a bus type and
44 * the bus itself. Of course we only have one channel
45 * subsystem driver and one channel system per machine, but
46 * we still use the abstraction. T.R. says it's a good idea. */
47static int
48ccw_bus_match (struct device * dev, struct device_driver * drv)
49{
50 struct ccw_device *cdev = to_ccwdev(dev);
51 struct ccw_driver *cdrv = to_ccwdrv(drv);
52 const struct ccw_device_id *ids = cdrv->ids, *found;
53
54 if (!ids)
55 return 0;
56
57 found = ccw_device_id_match(ids, &cdev->id);
58 if (!found)
59 return 0;
60
61 cdev->id.driver_info = found->driver_info;
62
63 return 1;
64}
65
db0c2d59
PO
66/* Store modalias string delimited by prefix/suffix string into buffer with
67 * specified size. Return length of resulting string (excluding trailing '\0')
68 * even if string doesn't fit buffer (snprintf semantics). */
cfbe9bb2 69static int snprint_alias(char *buf, size_t size,
db0c2d59 70 struct ccw_device_id *id, const char *suffix)
1da177e4 71{
db0c2d59 72 int len;
1da177e4 73
cfbe9bb2 74 len = snprintf(buf, size, "ccw:t%04Xm%02X", id->cu_type, id->cu_model);
db0c2d59
PO
75 if (len > size)
76 return len;
77 buf += len;
78 size -= len;
1da177e4 79
db0c2d59
PO
80 if (id->dev_type != 0)
81 len += snprintf(buf, size, "dt%04Xdm%02X%s", id->dev_type,
82 id->dev_model, suffix);
83 else
84 len += snprintf(buf, size, "dtdm%s", suffix);
1da177e4 85
db0c2d59
PO
86 return len;
87}
88
89/* Set up environment variables for ccw device uevent. Return 0 on success,
90 * non-zero otherwise. */
7eff2e7a 91static int ccw_uevent(struct device *dev, struct kobj_uevent_env *env)
db0c2d59
PO
92{
93 struct ccw_device *cdev = to_ccwdev(dev);
94 struct ccw_device_id *id = &(cdev->id);
cfbe9bb2
CH
95 int ret;
96 char modalias_buf[30];
1da177e4 97
db0c2d59 98 /* CU_TYPE= */
7eff2e7a 99 ret = add_uevent_var(env, "CU_TYPE=%04X", id->cu_type);
cfbe9bb2
CH
100 if (ret)
101 return ret;
db0c2d59
PO
102
103 /* CU_MODEL= */
7eff2e7a 104 ret = add_uevent_var(env, "CU_MODEL=%02X", id->cu_model);
cfbe9bb2
CH
105 if (ret)
106 return ret;
1da177e4
LT
107
108 /* The next two can be zero, that's ok for us */
db0c2d59 109 /* DEV_TYPE= */
7eff2e7a 110 ret = add_uevent_var(env, "DEV_TYPE=%04X", id->dev_type);
cfbe9bb2
CH
111 if (ret)
112 return ret;
1da177e4 113
db0c2d59 114 /* DEV_MODEL= */
7eff2e7a 115 ret = add_uevent_var(env, "DEV_MODEL=%02X", id->dev_model);
cfbe9bb2
CH
116 if (ret)
117 return ret;
db0c2d59
PO
118
119 /* MODALIAS= */
cfbe9bb2 120 snprint_alias(modalias_buf, sizeof(modalias_buf), id, "");
7eff2e7a
KS
121 ret = add_uevent_var(env, "MODALIAS=%s", modalias_buf);
122 return ret;
1da177e4
LT
123}
124
8bbace7e 125struct bus_type ccw_bus_type;
1da177e4 126
602b20f2
CH
127static void io_subchannel_irq(struct subchannel *);
128static int io_subchannel_probe(struct subchannel *);
129static int io_subchannel_remove(struct subchannel *);
8bbace7e 130static void io_subchannel_shutdown(struct subchannel *);
c820de39 131static int io_subchannel_sch_event(struct subchannel *, int);
99611f87
CH
132static int io_subchannel_chp_event(struct subchannel *, struct chp_link *,
133 int);
1da177e4 134
f08adc00
CH
135static struct css_device_id io_subchannel_ids[] = {
136 { .match_flags = 0x1, .type = SUBCHANNEL_TYPE_IO, },
137 { /* end of list */ },
138};
139MODULE_DEVICE_TABLE(css, io_subchannel_ids);
140
93a27592
CH
141static int io_subchannel_prepare(struct subchannel *sch)
142{
143 struct ccw_device *cdev;
144 /*
145 * Don't allow suspend while a ccw device registration
146 * is still outstanding.
147 */
148 cdev = sch_get_cdev(sch);
149 if (cdev && !device_is_registered(&cdev->dev))
150 return -EAGAIN;
151 return 0;
152}
153
f7e5d67c 154static struct css_driver io_subchannel_driver = {
4beee646 155 .owner = THIS_MODULE,
f08adc00 156 .subchannel_type = io_subchannel_ids,
25b7bb58 157 .name = "io_subchannel",
1da177e4 158 .irq = io_subchannel_irq,
c820de39
CH
159 .sch_event = io_subchannel_sch_event,
160 .chp_event = io_subchannel_chp_event,
8bbace7e
CH
161 .probe = io_subchannel_probe,
162 .remove = io_subchannel_remove,
163 .shutdown = io_subchannel_shutdown,
93a27592 164 .prepare = io_subchannel_prepare,
1da177e4
LT
165};
166
167struct workqueue_struct *ccw_device_work;
40154b82
PO
168wait_queue_head_t ccw_device_init_wq;
169atomic_t ccw_device_init_count;
1da177e4 170
90ab1336
PO
171static void recovery_func(unsigned long data);
172
1da177e4
LT
173static int __init
174init_ccw_bus_type (void)
175{
176 int ret;
177
178 init_waitqueue_head(&ccw_device_init_wq);
179 atomic_set(&ccw_device_init_count, 0);
90ab1336 180 setup_timer(&recovery_timer, recovery_func, 0);
1da177e4
LT
181
182 ccw_device_work = create_singlethread_workqueue("cio");
183 if (!ccw_device_work)
184 return -ENOMEM; /* FIXME: better errno ? */
1da177e4
LT
185 slow_path_wq = create_singlethread_workqueue("kslowcrw");
186 if (!slow_path_wq) {
187 ret = -ENOMEM; /* FIXME: better errno ? */
188 goto out_err;
189 }
190 if ((ret = bus_register (&ccw_bus_type)))
191 goto out_err;
192
25b7bb58
CH
193 ret = css_driver_register(&io_subchannel_driver);
194 if (ret)
1da177e4
LT
195 goto out_err;
196
197 wait_event(ccw_device_init_wq,
198 atomic_read(&ccw_device_init_count) == 0);
199 flush_workqueue(ccw_device_work);
200 return 0;
201out_err:
202 if (ccw_device_work)
203 destroy_workqueue(ccw_device_work);
1da177e4
LT
204 if (slow_path_wq)
205 destroy_workqueue(slow_path_wq);
206 return ret;
207}
208
209static void __exit
210cleanup_ccw_bus_type (void)
211{
25b7bb58 212 css_driver_unregister(&io_subchannel_driver);
1da177e4 213 bus_unregister(&ccw_bus_type);
1da177e4
LT
214 destroy_workqueue(ccw_device_work);
215}
216
217subsys_initcall(init_ccw_bus_type);
218module_exit(cleanup_ccw_bus_type);
219
220/************************ device handling **************************/
221
222/*
223 * A ccw_device has some interfaces in sysfs in addition to the
224 * standard ones.
225 * The following entries are designed to export the information which
226 * resided in 2.4 in /proc/subchannels. Subchannel and device number
227 * are obvious, so they don't have an entry :)
228 * TODO: Split chpids and pimpampom up? Where is "in use" in the tree?
229 */
230static ssize_t
3fd3c0a5 231chpids_show (struct device * dev, struct device_attribute *attr, char * buf)
1da177e4
LT
232{
233 struct subchannel *sch = to_subchannel(dev);
7ad6a249 234 struct chsc_ssd_info *ssd = &sch->ssd_info;
1da177e4
LT
235 ssize_t ret = 0;
236 int chp;
7ad6a249
PO
237 int mask;
238
239 for (chp = 0; chp < 8; chp++) {
240 mask = 0x80 >> chp;
241 if (ssd->path_mask & mask)
242 ret += sprintf(buf + ret, "%02x ", ssd->chpid[chp].id);
243 else
244 ret += sprintf(buf + ret, "00 ");
245 }
1da177e4
LT
246 ret += sprintf (buf+ret, "\n");
247 return min((ssize_t)PAGE_SIZE, ret);
248}
249
250static ssize_t
3fd3c0a5 251pimpampom_show (struct device * dev, struct device_attribute *attr, char * buf)
1da177e4
LT
252{
253 struct subchannel *sch = to_subchannel(dev);
254 struct pmcw *pmcw = &sch->schib.pmcw;
255
256 return sprintf (buf, "%02x %02x %02x\n",
257 pmcw->pim, pmcw->pam, pmcw->pom);
258}
259
260static ssize_t
3fd3c0a5 261devtype_show (struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
262{
263 struct ccw_device *cdev = to_ccwdev(dev);
264 struct ccw_device_id *id = &(cdev->id);
265
266 if (id->dev_type != 0)
267 return sprintf(buf, "%04x/%02x\n",
268 id->dev_type, id->dev_model);
269 else
270 return sprintf(buf, "n/a\n");
271}
272
273static ssize_t
3fd3c0a5 274cutype_show (struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
275{
276 struct ccw_device *cdev = to_ccwdev(dev);
277 struct ccw_device_id *id = &(cdev->id);
278
279 return sprintf(buf, "%04x/%02x\n",
280 id->cu_type, id->cu_model);
281}
282
f1fc78a8
BB
283static ssize_t
284modalias_show (struct device *dev, struct device_attribute *attr, char *buf)
285{
286 struct ccw_device *cdev = to_ccwdev(dev);
287 struct ccw_device_id *id = &(cdev->id);
db0c2d59 288 int len;
f1fc78a8 289
086a6c62 290 len = snprint_alias(buf, PAGE_SIZE, id, "\n");
db0c2d59
PO
291
292 return len > PAGE_SIZE ? PAGE_SIZE : len;
f1fc78a8
BB
293}
294
1da177e4 295static ssize_t
3fd3c0a5 296online_show (struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
297{
298 struct ccw_device *cdev = to_ccwdev(dev);
299
300 return sprintf(buf, cdev->online ? "1\n" : "0\n");
301}
302
d7b5a4c9
CH
303int ccw_device_is_orphan(struct ccw_device *cdev)
304{
305 return sch_is_pseudo_sch(to_subchannel(cdev->dev.parent));
306}
307
ef99516c 308static void ccw_device_unregister(struct ccw_device *cdev)
7674da77 309{
7674da77 310 if (test_and_clear_bit(1, &cdev->private->registered))
ef99516c 311 device_del(&cdev->dev);
7674da77
CH
312}
313
46fbe4e4 314static void ccw_device_remove_orphan_cb(struct work_struct *work)
59a8a6e2 315{
46fbe4e4
PO
316 struct ccw_device_private *priv;
317 struct ccw_device *cdev;
59a8a6e2 318
46fbe4e4
PO
319 priv = container_of(work, struct ccw_device_private, kick_work);
320 cdev = priv->cdev;
59a8a6e2
CH
321 ccw_device_unregister(cdev);
322 put_device(&cdev->dev);
46fbe4e4
PO
323 /* Release cdev reference for workqueue processing. */
324 put_device(&cdev->dev);
59a8a6e2
CH
325}
326
1da177e4
LT
327static void
328ccw_device_remove_disconnected(struct ccw_device *cdev)
329{
d7b5a4c9 330 unsigned long flags;
59a8a6e2 331
1da177e4
LT
332 /*
333 * Forced offline in disconnected state means
334 * 'throw away device'.
335 */
46fbe4e4
PO
336 /* Get cdev reference for workqueue processing. */
337 if (!get_device(&cdev->dev))
338 return;
d7b5a4c9 339 if (ccw_device_is_orphan(cdev)) {
59a8a6e2
CH
340 /*
341 * Deregister ccw device.
342 * Unfortunately, we cannot do this directly from the
343 * attribute method.
344 */
d7b5a4c9
CH
345 spin_lock_irqsave(cdev->ccwlock, flags);
346 cdev->private->state = DEV_STATE_NOT_OPER;
347 spin_unlock_irqrestore(cdev->ccwlock, flags);
46fbe4e4
PO
348 PREPARE_WORK(&cdev->private->kick_work,
349 ccw_device_remove_orphan_cb);
c4621a62 350 queue_work(slow_path_wq, &cdev->private->kick_work);
46fbe4e4
PO
351 } else
352 /* Deregister subchannel, which will kill the ccw device. */
c4621a62 353 ccw_device_schedule_sch_unregister(cdev);
1da177e4
LT
354}
355
b2ffd8e9
CH
356/**
357 * ccw_device_set_offline() - disable a ccw device for I/O
358 * @cdev: target ccw device
359 *
360 * This function calls the driver's set_offline() function for @cdev, if
361 * given, and then disables @cdev.
362 * Returns:
363 * %0 on success and a negative error value on failure.
364 * Context:
365 * enabled, ccw device lock not held
366 */
367int ccw_device_set_offline(struct ccw_device *cdev)
1da177e4
LT
368{
369 int ret;
370
371 if (!cdev)
372 return -ENODEV;
373 if (!cdev->online || !cdev->drv)
374 return -EINVAL;
375
376 if (cdev->drv->set_offline) {
377 ret = cdev->drv->set_offline(cdev);
378 if (ret != 0)
379 return ret;
380 }
381 cdev->online = 0;
382 spin_lock_irq(cdev->ccwlock);
383 ret = ccw_device_offline(cdev);
384 if (ret == -ENODEV) {
385 if (cdev->private->state != DEV_STATE_NOT_OPER) {
386 cdev->private->state = DEV_STATE_OFFLINE;
387 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
388 }
389 spin_unlock_irq(cdev->ccwlock);
9cd67421
CH
390 /* Give up reference from ccw_device_set_online(). */
391 put_device(&cdev->dev);
1da177e4
LT
392 return ret;
393 }
394 spin_unlock_irq(cdev->ccwlock);
9cd67421 395 if (ret == 0) {
1da177e4 396 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
9cd67421
CH
397 /* Give up reference from ccw_device_set_online(). */
398 put_device(&cdev->dev);
399 } else {
139b83dd 400 CIO_MSG_EVENT(0, "ccw_device_offline returned %d, "
e556bbbd
CH
401 "device 0.%x.%04x\n",
402 ret, cdev->private->dev_id.ssid,
403 cdev->private->dev_id.devno);
1da177e4
LT
404 cdev->online = 1;
405 }
9cd67421 406 return ret;
1da177e4
LT
407}
408
b2ffd8e9
CH
409/**
410 * ccw_device_set_online() - enable a ccw device for I/O
411 * @cdev: target ccw device
412 *
413 * This function first enables @cdev and then calls the driver's set_online()
414 * function for @cdev, if given. If set_online() returns an error, @cdev is
415 * disabled again.
416 * Returns:
417 * %0 on success and a negative error value on failure.
418 * Context:
419 * enabled, ccw device lock not held
420 */
421int ccw_device_set_online(struct ccw_device *cdev)
1da177e4
LT
422{
423 int ret;
424
425 if (!cdev)
426 return -ENODEV;
427 if (cdev->online || !cdev->drv)
428 return -EINVAL;
9cd67421
CH
429 /* Hold on to an extra reference while device is online. */
430 if (!get_device(&cdev->dev))
431 return -ENODEV;
1da177e4
LT
432
433 spin_lock_irq(cdev->ccwlock);
434 ret = ccw_device_online(cdev);
435 spin_unlock_irq(cdev->ccwlock);
436 if (ret == 0)
437 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
438 else {
139b83dd 439 CIO_MSG_EVENT(0, "ccw_device_online returned %d, "
e556bbbd
CH
440 "device 0.%x.%04x\n",
441 ret, cdev->private->dev_id.ssid,
442 cdev->private->dev_id.devno);
9cd67421
CH
443 /* Give up online reference since onlining failed. */
444 put_device(&cdev->dev);
1da177e4
LT
445 return ret;
446 }
9cd67421
CH
447 if (cdev->private->state != DEV_STATE_ONLINE) {
448 /* Give up online reference since onlining failed. */
449 put_device(&cdev->dev);
1da177e4 450 return -ENODEV;
9cd67421 451 }
1da177e4
LT
452 if (!cdev->drv->set_online || cdev->drv->set_online(cdev) == 0) {
453 cdev->online = 1;
454 return 0;
455 }
456 spin_lock_irq(cdev->ccwlock);
457 ret = ccw_device_offline(cdev);
458 spin_unlock_irq(cdev->ccwlock);
459 if (ret == 0)
460 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
e556bbbd 461 else
139b83dd 462 CIO_MSG_EVENT(0, "ccw_device_offline returned %d, "
e556bbbd
CH
463 "device 0.%x.%04x\n",
464 ret, cdev->private->dev_id.ssid,
465 cdev->private->dev_id.devno);
9cd67421
CH
466 /* Give up online reference since onlining failed. */
467 put_device(&cdev->dev);
6cadb78b 468 return (ret == 0) ? -ENODEV : ret;
1da177e4
LT
469}
470
e74fe0ce 471static int online_store_handle_offline(struct ccw_device *cdev)
f5ba6c86
CH
472{
473 if (cdev->private->state == DEV_STATE_DISCONNECTED)
474 ccw_device_remove_disconnected(cdev);
e74fe0ce
SO
475 else if (cdev->online && cdev->drv && cdev->drv->set_offline)
476 return ccw_device_set_offline(cdev);
477 return 0;
f5ba6c86
CH
478}
479
480static int online_store_recog_and_online(struct ccw_device *cdev)
481{
482 int ret;
483
484 /* Do device recognition, if needed. */
99f6a570 485 if (cdev->private->state == DEV_STATE_BOXED) {
f5ba6c86
CH
486 ret = ccw_device_recognition(cdev);
487 if (ret) {
e556bbbd
CH
488 CIO_MSG_EVENT(0, "Couldn't start recognition "
489 "for device 0.%x.%04x (ret=%d)\n",
490 cdev->private->dev_id.ssid,
491 cdev->private->dev_id.devno, ret);
f5ba6c86
CH
492 return ret;
493 }
494 wait_event(cdev->private->wait_q,
495 cdev->private->flags.recog_done);
156013ff
SO
496 if (cdev->private->state != DEV_STATE_OFFLINE)
497 /* recognition failed */
498 return -EAGAIN;
f5ba6c86
CH
499 }
500 if (cdev->drv && cdev->drv->set_online)
501 ccw_device_set_online(cdev);
502 return 0;
503}
156013ff 504
c78aa6cb 505static int online_store_handle_online(struct ccw_device *cdev, int force)
f5ba6c86
CH
506{
507 int ret;
508
509 ret = online_store_recog_and_online(cdev);
156013ff 510 if (ret && !force)
c78aa6cb 511 return ret;
f5ba6c86
CH
512 if (force && cdev->private->state == DEV_STATE_BOXED) {
513 ret = ccw_device_stlck(cdev);
c78aa6cb
ME
514 if (ret)
515 return ret;
f5ba6c86
CH
516 if (cdev->id.cu_type == 0)
517 cdev->private->state = DEV_STATE_NOT_OPER;
156013ff
SO
518 ret = online_store_recog_and_online(cdev);
519 if (ret)
520 return ret;
f5ba6c86 521 }
c78aa6cb 522 return 0;
f5ba6c86
CH
523}
524
525static ssize_t online_store (struct device *dev, struct device_attribute *attr,
526 const char *buf, size_t count)
1da177e4
LT
527{
528 struct ccw_device *cdev = to_ccwdev(dev);
2f972202
CH
529 int force, ret;
530 unsigned long i;
1da177e4 531
b5cd99e6
SO
532 if ((cdev->private->state != DEV_STATE_OFFLINE &&
533 cdev->private->state != DEV_STATE_ONLINE &&
534 cdev->private->state != DEV_STATE_BOXED &&
535 cdev->private->state != DEV_STATE_DISCONNECTED) ||
536 atomic_cmpxchg(&cdev->private->onoff, 0, 1) != 0)
1da177e4
LT
537 return -EAGAIN;
538
539 if (cdev->drv && !try_module_get(cdev->drv->owner)) {
540 atomic_set(&cdev->private->onoff, 0);
541 return -EINVAL;
542 }
543 if (!strncmp(buf, "force\n", count)) {
544 force = 1;
545 i = 1;
2f972202 546 ret = 0;
1da177e4
LT
547 } else {
548 force = 0;
2f972202 549 ret = strict_strtoul(buf, 16, &i);
1da177e4 550 }
2f972202
CH
551 if (ret)
552 goto out;
f5ba6c86
CH
553 switch (i) {
554 case 0:
e74fe0ce 555 ret = online_store_handle_offline(cdev);
f5ba6c86
CH
556 break;
557 case 1:
c78aa6cb 558 ret = online_store_handle_online(cdev, force);
f5ba6c86
CH
559 break;
560 default:
2f972202 561 ret = -EINVAL;
1da177e4 562 }
2f972202 563out:
1da177e4
LT
564 if (cdev->drv)
565 module_put(cdev->drv->owner);
566 atomic_set(&cdev->private->onoff, 0);
e74fe0ce 567 return (ret < 0) ? ret : count;
1da177e4
LT
568}
569
570static ssize_t
3fd3c0a5 571available_show (struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
572{
573 struct ccw_device *cdev = to_ccwdev(dev);
574 struct subchannel *sch;
575
d7b5a4c9
CH
576 if (ccw_device_is_orphan(cdev))
577 return sprintf(buf, "no device\n");
1da177e4
LT
578 switch (cdev->private->state) {
579 case DEV_STATE_BOXED:
580 return sprintf(buf, "boxed\n");
581 case DEV_STATE_DISCONNECTED:
582 case DEV_STATE_DISCONNECTED_SENSE_ID:
583 case DEV_STATE_NOT_OPER:
584 sch = to_subchannel(dev->parent);
585 if (!sch->lpm)
586 return sprintf(buf, "no path\n");
587 else
588 return sprintf(buf, "no device\n");
589 default:
590 /* All other states considered fine. */
591 return sprintf(buf, "good\n");
592 }
593}
594
595static DEVICE_ATTR(chpids, 0444, chpids_show, NULL);
596static DEVICE_ATTR(pimpampom, 0444, pimpampom_show, NULL);
597static DEVICE_ATTR(devtype, 0444, devtype_show, NULL);
598static DEVICE_ATTR(cutype, 0444, cutype_show, NULL);
f1fc78a8 599static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
1da177e4 600static DEVICE_ATTR(online, 0644, online_show, online_store);
1da177e4
LT
601static DEVICE_ATTR(availability, 0444, available_show, NULL);
602
7e9db9ea 603static struct attribute *io_subchannel_attrs[] = {
1da177e4
LT
604 &dev_attr_chpids.attr,
605 &dev_attr_pimpampom.attr,
606 NULL,
607};
608
7e9db9ea
CH
609static struct attribute_group io_subchannel_attr_group = {
610 .attrs = io_subchannel_attrs,
529192f3 611};
1da177e4
LT
612
613static struct attribute * ccwdev_attrs[] = {
614 &dev_attr_devtype.attr,
615 &dev_attr_cutype.attr,
f1fc78a8 616 &dev_attr_modalias.attr,
1da177e4
LT
617 &dev_attr_online.attr,
618 &dev_attr_cmb_enable.attr,
619 &dev_attr_availability.attr,
620 NULL,
621};
622
623static struct attribute_group ccwdev_attr_group = {
624 .attrs = ccwdev_attrs,
625};
626
f7e5d67c 627static struct attribute_group *ccwdev_attr_groups[] = {
ef99516c
CH
628 &ccwdev_attr_group,
629 NULL,
630};
1da177e4
LT
631
632/* this is a simple abstraction for device_register that sets the
633 * correct bus type and adds the bus specific files */
3c9da7ba 634static int ccw_device_register(struct ccw_device *cdev)
1da177e4
LT
635{
636 struct device *dev = &cdev->dev;
637 int ret;
638
639 dev->bus = &ccw_bus_type;
640
641 if ((ret = device_add(dev)))
642 return ret;
643
644 set_bit(1, &cdev->private->registered);
1da177e4
LT
645 return ret;
646}
647
b0744bd2 648struct match_data {
78964268 649 struct ccw_dev_id dev_id;
b0744bd2
CH
650 struct ccw_device * sibling;
651};
652
653static int
654match_devno(struct device * dev, void * data)
655{
78964268 656 struct match_data * d = data;
b0744bd2
CH
657 struct ccw_device * cdev;
658
659 cdev = to_ccwdev(dev);
660 if ((cdev->private->state == DEV_STATE_DISCONNECTED) &&
d7b5a4c9 661 !ccw_device_is_orphan(cdev) &&
78964268 662 ccw_dev_id_is_equal(&cdev->private->dev_id, &d->dev_id) &&
d7b5a4c9 663 (cdev != d->sibling))
b0744bd2 664 return 1;
b0744bd2
CH
665 return 0;
666}
667
78964268
CH
668static struct ccw_device * get_disc_ccwdev_by_dev_id(struct ccw_dev_id *dev_id,
669 struct ccw_device *sibling)
1da177e4 670{
1da177e4 671 struct device *dev;
292888c8 672 struct match_data data;
1da177e4 673
78964268 674 data.dev_id = *dev_id;
292888c8 675 data.sibling = sibling;
e5945b4f 676 dev = bus_find_device(&ccw_bus_type, NULL, &data, match_devno);
1da177e4 677
b0744bd2 678 return dev ? to_ccwdev(dev) : NULL;
1da177e4
LT
679}
680
d7b5a4c9
CH
681static int match_orphan(struct device *dev, void *data)
682{
683 struct ccw_dev_id *dev_id;
684 struct ccw_device *cdev;
685
686 dev_id = data;
687 cdev = to_ccwdev(dev);
688 return ccw_dev_id_is_equal(&cdev->private->dev_id, dev_id);
689}
690
691static struct ccw_device *
692get_orphaned_ccwdev_by_dev_id(struct channel_subsystem *css,
693 struct ccw_dev_id *dev_id)
694{
695 struct device *dev;
696
697 dev = device_find_child(&css->pseudo_subchannel->dev, dev_id,
698 match_orphan);
699
700 return dev ? to_ccwdev(dev) : NULL;
701}
702
eb32ae8d 703void ccw_device_do_unbind_bind(struct work_struct *work)
1da177e4 704{
c1637532 705 struct ccw_device_private *priv;
1da177e4
LT
706 struct ccw_device *cdev;
707 struct subchannel *sch;
eb32ae8d 708 int ret;
1da177e4 709
c1637532
MS
710 priv = container_of(work, struct ccw_device_private, kick_work);
711 cdev = priv->cdev;
1da177e4 712 sch = to_subchannel(cdev->dev.parent);
d7b5a4c9 713
eb32ae8d
CH
714 if (test_bit(1, &cdev->private->registered)) {
715 device_release_driver(&cdev->dev);
716 ret = device_attach(&cdev->dev);
717 WARN_ON(ret == -ENODEV);
718 }
1da177e4
LT
719}
720
721static void
722ccw_device_release(struct device *dev)
723{
724 struct ccw_device *cdev;
725
726 cdev = to_ccwdev(dev);
6eff208f
CH
727 /* Release reference of parent subchannel. */
728 put_device(cdev->dev.parent);
1da177e4
LT
729 kfree(cdev->private);
730 kfree(cdev);
731}
732
7674da77
CH
733static struct ccw_device * io_subchannel_allocate_dev(struct subchannel *sch)
734{
735 struct ccw_device *cdev;
736
737 cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
738 if (cdev) {
739 cdev->private = kzalloc(sizeof(struct ccw_device_private),
740 GFP_KERNEL | GFP_DMA);
741 if (cdev->private)
742 return cdev;
743 }
744 kfree(cdev);
745 return ERR_PTR(-ENOMEM);
746}
747
748static int io_subchannel_initialize_dev(struct subchannel *sch,
749 struct ccw_device *cdev)
750{
751 cdev->private->cdev = cdev;
752 atomic_set(&cdev->private->onoff, 0);
753 cdev->dev.parent = &sch->dev;
754 cdev->dev.release = ccw_device_release;
33583c36 755 INIT_WORK(&cdev->private->kick_work, NULL);
ef99516c 756 cdev->dev.groups = ccwdev_attr_groups;
7674da77
CH
757 /* Do first half of device_register. */
758 device_initialize(&cdev->dev);
759 if (!get_device(&sch->dev)) {
283fdd0b
CH
760 /* Release reference from device_initialize(). */
761 put_device(&cdev->dev);
7674da77
CH
762 return -ENODEV;
763 }
764 return 0;
765}
766
767static struct ccw_device * io_subchannel_create_ccwdev(struct subchannel *sch)
768{
769 struct ccw_device *cdev;
770 int ret;
771
772 cdev = io_subchannel_allocate_dev(sch);
773 if (!IS_ERR(cdev)) {
774 ret = io_subchannel_initialize_dev(sch, cdev);
775 if (ret) {
776 kfree(cdev);
777 cdev = ERR_PTR(ret);
778 }
779 }
780 return cdev;
781}
782
d7b5a4c9
CH
783static int io_subchannel_recog(struct ccw_device *, struct subchannel *);
784
785static void sch_attach_device(struct subchannel *sch,
786 struct ccw_device *cdev)
787{
82b7ac05 788 css_update_ssd_info(sch);
d7b5a4c9 789 spin_lock_irq(sch->lock);
db6a6423 790 sch_set_cdev(sch, cdev);
d7b5a4c9
CH
791 cdev->private->schid = sch->schid;
792 cdev->ccwlock = sch->lock;
c820de39 793 ccw_device_trigger_reprobe(cdev);
d7b5a4c9
CH
794 spin_unlock_irq(sch->lock);
795}
796
797static void sch_attach_disconnected_device(struct subchannel *sch,
798 struct ccw_device *cdev)
799{
800 struct subchannel *other_sch;
801 int ret;
802
6eff208f
CH
803 /* Get reference for new parent. */
804 if (!get_device(&sch->dev))
805 return;
806 other_sch = to_subchannel(cdev->dev.parent);
807 /* Note: device_move() changes cdev->dev.parent */
ffa6a705 808 ret = device_move(&cdev->dev, &sch->dev, DPM_ORDER_PARENT_BEFORE_DEV);
d7b5a4c9 809 if (ret) {
139b83dd 810 CIO_MSG_EVENT(0, "Moving disconnected device 0.%x.%04x failed "
d7b5a4c9
CH
811 "(ret=%d)!\n", cdev->private->dev_id.ssid,
812 cdev->private->dev_id.devno, ret);
6eff208f
CH
813 /* Put reference for new parent. */
814 put_device(&sch->dev);
d7b5a4c9
CH
815 return;
816 }
db6a6423 817 sch_set_cdev(other_sch, NULL);
d7b5a4c9
CH
818 /* No need to keep a subchannel without ccw device around. */
819 css_sch_device_unregister(other_sch);
d7b5a4c9 820 sch_attach_device(sch, cdev);
6eff208f
CH
821 /* Put reference for old parent. */
822 put_device(&other_sch->dev);
d7b5a4c9
CH
823}
824
825static void sch_attach_orphaned_device(struct subchannel *sch,
826 struct ccw_device *cdev)
827{
828 int ret;
6eff208f 829 struct subchannel *pseudo_sch;
d7b5a4c9 830
6eff208f
CH
831 /* Get reference for new parent. */
832 if (!get_device(&sch->dev))
833 return;
834 pseudo_sch = to_subchannel(cdev->dev.parent);
835 /*
836 * Try to move the ccw device to its new subchannel.
837 * Note: device_move() changes cdev->dev.parent
838 */
ffa6a705 839 ret = device_move(&cdev->dev, &sch->dev, DPM_ORDER_PARENT_BEFORE_DEV);
d7b5a4c9
CH
840 if (ret) {
841 CIO_MSG_EVENT(0, "Moving device 0.%x.%04x from orphanage "
842 "failed (ret=%d)!\n",
843 cdev->private->dev_id.ssid,
844 cdev->private->dev_id.devno, ret);
6eff208f
CH
845 /* Put reference for new parent. */
846 put_device(&sch->dev);
d7b5a4c9
CH
847 return;
848 }
849 sch_attach_device(sch, cdev);
6eff208f
CH
850 /* Put reference on pseudo subchannel. */
851 put_device(&pseudo_sch->dev);
d7b5a4c9
CH
852}
853
854static void sch_create_and_recog_new_device(struct subchannel *sch)
855{
856 struct ccw_device *cdev;
857
858 /* Need to allocate a new ccw device. */
859 cdev = io_subchannel_create_ccwdev(sch);
860 if (IS_ERR(cdev)) {
861 /* OK, we did everything we could... */
862 css_sch_device_unregister(sch);
863 return;
864 }
865 spin_lock_irq(sch->lock);
db6a6423 866 sch_set_cdev(sch, cdev);
d7b5a4c9
CH
867 spin_unlock_irq(sch->lock);
868 /* Start recognition for the new ccw device. */
869 if (io_subchannel_recog(cdev, sch)) {
870 spin_lock_irq(sch->lock);
db6a6423 871 sch_set_cdev(sch, NULL);
d7b5a4c9 872 spin_unlock_irq(sch->lock);
d7b5a4c9 873 css_sch_device_unregister(sch);
6eff208f
CH
874 /* Put reference from io_subchannel_create_ccwdev(). */
875 put_device(&sch->dev);
876 /* Give up initial reference. */
877 put_device(&cdev->dev);
d7b5a4c9
CH
878 }
879}
880
881
882void ccw_device_move_to_orphanage(struct work_struct *work)
883{
884 struct ccw_device_private *priv;
885 struct ccw_device *cdev;
886 struct ccw_device *replacing_cdev;
887 struct subchannel *sch;
888 int ret;
889 struct channel_subsystem *css;
890 struct ccw_dev_id dev_id;
891
892 priv = container_of(work, struct ccw_device_private, kick_work);
893 cdev = priv->cdev;
894 sch = to_subchannel(cdev->dev.parent);
895 css = to_css(sch->dev.parent);
896 dev_id.devno = sch->schib.pmcw.dev;
897 dev_id.ssid = sch->schid.ssid;
898
6eff208f
CH
899 /* Increase refcount for pseudo subchannel. */
900 get_device(&css->pseudo_subchannel->dev);
d7b5a4c9
CH
901 /*
902 * Move the orphaned ccw device to the orphanage so the replacing
903 * ccw device can take its place on the subchannel.
6eff208f 904 * Note: device_move() changes cdev->dev.parent
d7b5a4c9 905 */
ffa6a705
CH
906 ret = device_move(&cdev->dev, &css->pseudo_subchannel->dev,
907 DPM_ORDER_NONE);
d7b5a4c9
CH
908 if (ret) {
909 CIO_MSG_EVENT(0, "Moving device 0.%x.%04x to orphanage failed "
910 "(ret=%d)!\n", cdev->private->dev_id.ssid,
911 cdev->private->dev_id.devno, ret);
6eff208f
CH
912 /* Decrease refcount for pseudo subchannel again. */
913 put_device(&css->pseudo_subchannel->dev);
d7b5a4c9
CH
914 return;
915 }
916 cdev->ccwlock = css->pseudo_subchannel->lock;
917 /*
918 * Search for the replacing ccw device
919 * - among the disconnected devices
920 * - in the orphanage
921 */
922 replacing_cdev = get_disc_ccwdev_by_dev_id(&dev_id, cdev);
923 if (replacing_cdev) {
924 sch_attach_disconnected_device(sch, replacing_cdev);
85acc407 925 /* Release reference from get_disc_ccwdev_by_dev_id() */
97166f52 926 put_device(&replacing_cdev->dev);
6eff208f
CH
927 /* Release reference of subchannel from old cdev. */
928 put_device(&sch->dev);
d7b5a4c9
CH
929 return;
930 }
931 replacing_cdev = get_orphaned_ccwdev_by_dev_id(css, &dev_id);
932 if (replacing_cdev) {
933 sch_attach_orphaned_device(sch, replacing_cdev);
85acc407 934 /* Release reference from get_orphaned_ccwdev_by_dev_id() */
97166f52 935 put_device(&replacing_cdev->dev);
6eff208f
CH
936 /* Release reference of subchannel from old cdev. */
937 put_device(&sch->dev);
d7b5a4c9
CH
938 return;
939 }
940 sch_create_and_recog_new_device(sch);
6eff208f
CH
941 /* Release reference of subchannel from old cdev. */
942 put_device(&sch->dev);
d7b5a4c9
CH
943}
944
1da177e4
LT
945/*
946 * Register recognized device.
947 */
948static void
c1637532 949io_subchannel_register(struct work_struct *work)
1da177e4 950{
c1637532 951 struct ccw_device_private *priv;
1da177e4
LT
952 struct ccw_device *cdev;
953 struct subchannel *sch;
954 int ret;
955 unsigned long flags;
956
c1637532
MS
957 priv = container_of(work, struct ccw_device_private, kick_work);
958 cdev = priv->cdev;
1da177e4 959 sch = to_subchannel(cdev->dev.parent);
5fb6b854
CH
960 /*
961 * Check if subchannel is still registered. It may have become
962 * unregistered if a machine check hit us after finishing
963 * device recognition but before the register work could be
964 * queued.
965 */
966 if (!device_is_registered(&sch->dev))
967 goto out_err;
82b7ac05 968 css_update_ssd_info(sch);
47af5518
CH
969 /*
970 * io_subchannel_register() will also be called after device
971 * recognition has been done for a boxed device (which will already
972 * be registered). We need to reprobe since we may now have sense id
973 * information.
974 */
d6a30761 975 if (device_is_registered(&cdev->dev)) {
47af5518
CH
976 if (!cdev->drv) {
977 ret = device_reprobe(&cdev->dev);
978 if (ret)
979 /* We can't do much here. */
139b83dd 980 CIO_MSG_EVENT(0, "device_reprobe() returned"
e556bbbd
CH
981 " %d for 0.%x.%04x\n", ret,
982 cdev->private->dev_id.ssid,
983 cdev->private->dev_id.devno);
47af5518 984 }
1da177e4
LT
985 goto out;
986 }
fa1a8c23
CH
987 /*
988 * Now we know this subchannel will stay, we can throw
989 * our delayed uevent.
990 */
f67f129e 991 dev_set_uevent_suppress(&sch->dev, 0);
fa1a8c23 992 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
1da177e4
LT
993 /* make it known to the system */
994 ret = ccw_device_register(cdev);
995 if (ret) {
e556bbbd
CH
996 CIO_MSG_EVENT(0, "Could not register ccw dev 0.%x.%04x: %d\n",
997 cdev->private->dev_id.ssid,
998 cdev->private->dev_id.devno, ret);
2ec22984 999 spin_lock_irqsave(sch->lock, flags);
db6a6423 1000 sch_set_cdev(sch, NULL);
2ec22984 1001 spin_unlock_irqrestore(sch->lock, flags);
6eff208f
CH
1002 /* Release initial device reference. */
1003 put_device(&cdev->dev);
5fb6b854 1004 goto out_err;
1da177e4 1005 }
1da177e4
LT
1006out:
1007 cdev->private->flags.recog_done = 1;
1da177e4 1008 wake_up(&cdev->private->wait_q);
5fb6b854
CH
1009out_err:
1010 /* Release reference for workqueue processing. */
1011 put_device(&cdev->dev);
1da177e4
LT
1012 if (atomic_dec_and_test(&ccw_device_init_count))
1013 wake_up(&ccw_device_init_wq);
1014}
1015
3f4cf6e7 1016static void ccw_device_call_sch_unregister(struct work_struct *work)
1da177e4 1017{
c1637532
MS
1018 struct ccw_device_private *priv;
1019 struct ccw_device *cdev;
1da177e4
LT
1020 struct subchannel *sch;
1021
c1637532
MS
1022 priv = container_of(work, struct ccw_device_private, kick_work);
1023 cdev = priv->cdev;
46fbe4e4
PO
1024 /* Get subchannel reference for local processing. */
1025 if (!get_device(cdev->dev.parent))
1026 return;
1da177e4 1027 sch = to_subchannel(cdev->dev.parent);
6ab4879a 1028 css_sch_device_unregister(sch);
1da177e4 1029 /* Reset intparm to zeroes. */
13952ec1
SO
1030 sch->config.intparm = 0;
1031 cio_commit_config(sch);
46fbe4e4 1032 /* Release cdev reference for workqueue processing.*/
1da177e4 1033 put_device(&cdev->dev);
46fbe4e4 1034 /* Release subchannel reference for local processing. */
1da177e4
LT
1035 put_device(&sch->dev);
1036}
1037
c4621a62
SO
1038void ccw_device_schedule_sch_unregister(struct ccw_device *cdev)
1039{
1040 PREPARE_WORK(&cdev->private->kick_work,
1041 ccw_device_call_sch_unregister);
1042 queue_work(slow_path_wq, &cdev->private->kick_work);
1043}
1044
1da177e4
LT
1045/*
1046 * subchannel recognition done. Called from the state machine.
1047 */
1048void
1049io_subchannel_recog_done(struct ccw_device *cdev)
1050{
1da177e4
LT
1051 if (css_init_done == 0) {
1052 cdev->private->flags.recog_done = 1;
1053 return;
1054 }
1055 switch (cdev->private->state) {
47593bfa
SO
1056 case DEV_STATE_BOXED:
1057 /* Device did not respond in time. */
1da177e4
LT
1058 case DEV_STATE_NOT_OPER:
1059 cdev->private->flags.recog_done = 1;
1060 /* Remove device found not operational. */
1061 if (!get_device(&cdev->dev))
1062 break;
c4621a62 1063 ccw_device_schedule_sch_unregister(cdev);
1da177e4
LT
1064 if (atomic_dec_and_test(&ccw_device_init_count))
1065 wake_up(&ccw_device_init_wq);
1066 break;
1da177e4
LT
1067 case DEV_STATE_OFFLINE:
1068 /*
1069 * We can't register the device in interrupt context so
1070 * we schedule a work item.
1071 */
1072 if (!get_device(&cdev->dev))
1073 break;
1074 PREPARE_WORK(&cdev->private->kick_work,
c1637532 1075 io_subchannel_register);
1da177e4
LT
1076 queue_work(slow_path_wq, &cdev->private->kick_work);
1077 break;
1078 }
1079}
1080
1081static int
1082io_subchannel_recog(struct ccw_device *cdev, struct subchannel *sch)
1083{
1084 int rc;
1085 struct ccw_device_private *priv;
1086
db6a6423 1087 sch_set_cdev(sch, cdev);
2ec22984 1088 cdev->ccwlock = sch->lock;
fb6958a5 1089
1da177e4
LT
1090 /* Init private data. */
1091 priv = cdev->private;
78964268
CH
1092 priv->dev_id.devno = sch->schib.pmcw.dev;
1093 priv->dev_id.ssid = sch->schid.ssid;
1094 priv->schid = sch->schid;
1da177e4
LT
1095 priv->state = DEV_STATE_NOT_OPER;
1096 INIT_LIST_HEAD(&priv->cmb_list);
1097 init_waitqueue_head(&priv->wait_q);
1098 init_timer(&priv->timer);
1099
1100 /* Set an initial name for the device. */
1f4e7eda
CH
1101 if (cio_is_console(sch->schid))
1102 cdev->dev.init_name = cio_get_console_cdev_name(sch);
1103 else
1104 dev_set_name(&cdev->dev, "0.%x.%04x",
1105 sch->schid.ssid, sch->schib.pmcw.dev);
1da177e4
LT
1106
1107 /* Increase counter of devices currently in recognition. */
1108 atomic_inc(&ccw_device_init_count);
1109
1110 /* Start async. device sensing. */
2ec22984 1111 spin_lock_irq(sch->lock);
1da177e4 1112 rc = ccw_device_recognition(cdev);
2ec22984 1113 spin_unlock_irq(sch->lock);
1da177e4
LT
1114 if (rc) {
1115 if (atomic_dec_and_test(&ccw_device_init_count))
1116 wake_up(&ccw_device_init_wq);
1117 }
1118 return rc;
1119}
1120
d7b5a4c9
CH
1121static void ccw_device_move_to_sch(struct work_struct *work)
1122{
1123 struct ccw_device_private *priv;
1124 int rc;
1125 struct subchannel *sch;
1126 struct ccw_device *cdev;
1127 struct subchannel *former_parent;
1128
1129 priv = container_of(work, struct ccw_device_private, kick_work);
1130 sch = priv->sch;
1131 cdev = priv->cdev;
6eff208f
CH
1132 former_parent = to_subchannel(cdev->dev.parent);
1133 /* Get reference for new parent. */
1134 if (!get_device(&sch->dev))
1135 return;
d7b5a4c9 1136 mutex_lock(&sch->reg_mutex);
6eff208f
CH
1137 /*
1138 * Try to move the ccw device to its new subchannel.
1139 * Note: device_move() changes cdev->dev.parent
1140 */
ffa6a705 1141 rc = device_move(&cdev->dev, &sch->dev, DPM_ORDER_PARENT_BEFORE_DEV);
d7b5a4c9
CH
1142 mutex_unlock(&sch->reg_mutex);
1143 if (rc) {
139b83dd 1144 CIO_MSG_EVENT(0, "Moving device 0.%x.%04x to subchannel "
d7b5a4c9
CH
1145 "0.%x.%04x failed (ret=%d)!\n",
1146 cdev->private->dev_id.ssid,
1147 cdev->private->dev_id.devno, sch->schid.ssid,
1148 sch->schid.sch_no, rc);
1149 css_sch_device_unregister(sch);
6eff208f
CH
1150 /* Put reference for new parent again. */
1151 put_device(&sch->dev);
d7b5a4c9
CH
1152 goto out;
1153 }
6eff208f 1154 if (!sch_is_pseudo_sch(former_parent)) {
d7b5a4c9 1155 spin_lock_irq(former_parent->lock);
db6a6423 1156 sch_set_cdev(former_parent, NULL);
d7b5a4c9
CH
1157 spin_unlock_irq(former_parent->lock);
1158 css_sch_device_unregister(former_parent);
1159 /* Reset intparm to zeroes. */
13952ec1
SO
1160 former_parent->config.intparm = 0;
1161 cio_commit_config(former_parent);
d7b5a4c9
CH
1162 }
1163 sch_attach_device(sch, cdev);
1164out:
6eff208f
CH
1165 /* Put reference for old parent. */
1166 put_device(&former_parent->dev);
d7b5a4c9
CH
1167 put_device(&cdev->dev);
1168}
1169
602b20f2
CH
1170static void io_subchannel_irq(struct subchannel *sch)
1171{
1172 struct ccw_device *cdev;
1173
db6a6423 1174 cdev = sch_get_cdev(sch);
602b20f2
CH
1175
1176 CIO_TRACE_EVENT(3, "IRQ");
2a0217d5 1177 CIO_TRACE_EVENT(3, dev_name(&sch->dev));
602b20f2
CH
1178 if (cdev)
1179 dev_fsm_event(cdev, DEV_EVENT_INTERRUPT);
1180}
1181
13952ec1
SO
1182void io_subchannel_init_config(struct subchannel *sch)
1183{
1184 memset(&sch->config, 0, sizeof(sch->config));
1185 sch->config.csense = 1;
d36f0c66
SO
1186 /* Use subchannel mp mode when there is more than 1 installed CHPID. */
1187 if ((sch->schib.pmcw.pim & (sch->schib.pmcw.pim - 1)) != 0)
13952ec1
SO
1188 sch->config.mp = 1;
1189}
1190
0ae7a7b2
CH
1191static void io_subchannel_init_fields(struct subchannel *sch)
1192{
1193 if (cio_is_console(sch->schid))
1194 sch->opm = 0xff;
1195 else
1196 sch->opm = chp_get_sch_opm(sch);
1197 sch->lpm = sch->schib.pmcw.pam & sch->opm;
3a3fc29a 1198 sch->isc = cio_is_console(sch->schid) ? CONSOLE_ISC : IO_SCH_ISC;
0ae7a7b2
CH
1199
1200 CIO_MSG_EVENT(6, "Detected device %04x on subchannel 0.%x.%04X"
1201 " - PIM = %02X, PAM = %02X, POM = %02X\n",
1202 sch->schib.pmcw.dev, sch->schid.ssid,
1203 sch->schid.sch_no, sch->schib.pmcw.pim,
1204 sch->schib.pmcw.pam, sch->schib.pmcw.pom);
13952ec1
SO
1205
1206 io_subchannel_init_config(sch);
0ae7a7b2
CH
1207}
1208
90ed2b69
CH
1209static void io_subchannel_do_unreg(struct work_struct *work)
1210{
1211 struct subchannel *sch;
1212
1213 sch = container_of(work, struct subchannel, work);
1214 css_sch_device_unregister(sch);
1215 /* Reset intparm to zeroes. */
13952ec1
SO
1216 sch->config.intparm = 0;
1217 cio_commit_config(sch);
90ed2b69
CH
1218 put_device(&sch->dev);
1219}
1220
1221/* Schedule unregister if we have no cdev. */
1222static void io_subchannel_schedule_removal(struct subchannel *sch)
1223{
1224 get_device(&sch->dev);
1225 INIT_WORK(&sch->work, io_subchannel_do_unreg);
1226 queue_work(slow_path_wq, &sch->work);
1227}
1228
1229/*
1230 * Note: We always return 0 so that we bind to the device even on error.
1231 * This is needed so that our remove function is called on unregister.
1232 */
0ae7a7b2 1233static int io_subchannel_probe(struct subchannel *sch)
1da177e4 1234{
1da177e4
LT
1235 struct ccw_device *cdev;
1236 int rc;
1237 unsigned long flags;
d7b5a4c9 1238 struct ccw_dev_id dev_id;
1da177e4 1239
db6a6423
CH
1240 cdev = sch_get_cdev(sch);
1241 if (cdev) {
7e9db9ea
CH
1242 rc = sysfs_create_group(&sch->dev.kobj,
1243 &io_subchannel_attr_group);
1244 if (rc)
1245 CIO_MSG_EVENT(0, "Failed to create io subchannel "
1246 "attributes for subchannel "
1247 "0.%x.%04x (rc=%d)\n",
1248 sch->schid.ssid, sch->schid.sch_no, rc);
1da177e4
LT
1249 /*
1250 * This subchannel already has an associated ccw_device.
7e9db9ea
CH
1251 * Throw the delayed uevent for the subchannel, register
1252 * the ccw_device and exit. This happens for all early
1253 * devices, e.g. the console.
1da177e4 1254 */
f67f129e 1255 dev_set_uevent_suppress(&sch->dev, 0);
7e9db9ea 1256 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
e1031786 1257 cdev->dev.groups = ccwdev_attr_groups;
1da177e4
LT
1258 device_initialize(&cdev->dev);
1259 ccw_device_register(cdev);
1da177e4
LT
1260 /*
1261 * Check if the device is already online. If it is
9cd67421
CH
1262 * the reference count needs to be corrected since we
1263 * didn't obtain a reference in ccw_device_set_online.
1da177e4
LT
1264 */
1265 if (cdev->private->state != DEV_STATE_NOT_OPER &&
1266 cdev->private->state != DEV_STATE_OFFLINE &&
1267 cdev->private->state != DEV_STATE_BOXED)
1268 get_device(&cdev->dev);
1269 return 0;
1270 }
0ae7a7b2 1271 io_subchannel_init_fields(sch);
f444cc0e
SO
1272 rc = cio_commit_config(sch);
1273 if (rc)
1274 goto out_schedule;
7e9db9ea
CH
1275 rc = sysfs_create_group(&sch->dev.kobj,
1276 &io_subchannel_attr_group);
1277 if (rc)
90ed2b69 1278 goto out_schedule;
cd6b4f27
CH
1279 /* Allocate I/O subchannel private data. */
1280 sch->private = kzalloc(sizeof(struct io_subchannel_private),
1281 GFP_KERNEL | GFP_DMA);
90ed2b69 1282 if (!sch->private)
7e9db9ea 1283 goto out_err;
111e95a4
SO
1284 /*
1285 * First check if a fitting device may be found amongst the
1286 * disconnected devices or in the orphanage.
1287 */
1288 dev_id.devno = sch->schib.pmcw.dev;
1289 dev_id.ssid = sch->schid.ssid;
d7b5a4c9
CH
1290 cdev = get_disc_ccwdev_by_dev_id(&dev_id, NULL);
1291 if (!cdev)
1292 cdev = get_orphaned_ccwdev_by_dev_id(to_css(sch->dev.parent),
1293 &dev_id);
1294 if (cdev) {
1295 /*
1296 * Schedule moving the device until when we have a registered
1297 * subchannel to move to and succeed the probe. We can
1298 * unregister later again, when the probe is through.
1299 */
1300 cdev->private->sch = sch;
1301 PREPARE_WORK(&cdev->private->kick_work,
1302 ccw_device_move_to_sch);
1303 queue_work(slow_path_wq, &cdev->private->kick_work);
1304 return 0;
1305 }
7674da77 1306 cdev = io_subchannel_create_ccwdev(sch);
90ed2b69 1307 if (IS_ERR(cdev))
7e9db9ea 1308 goto out_err;
8bbace7e 1309 rc = io_subchannel_recog(cdev, sch);
1da177e4 1310 if (rc) {
2ec22984 1311 spin_lock_irqsave(sch->lock, flags);
90ed2b69 1312 io_subchannel_recog_done(cdev);
2ec22984 1313 spin_unlock_irqrestore(sch->lock, flags);
1da177e4 1314 }
7e9db9ea
CH
1315 return 0;
1316out_err:
1317 kfree(sch->private);
1318 sysfs_remove_group(&sch->dev.kobj, &io_subchannel_attr_group);
90ed2b69
CH
1319out_schedule:
1320 io_subchannel_schedule_removal(sch);
1321 return 0;
1da177e4
LT
1322}
1323
1da177e4 1324static int
8bbace7e 1325io_subchannel_remove (struct subchannel *sch)
1da177e4
LT
1326{
1327 struct ccw_device *cdev;
1328 unsigned long flags;
1329
db6a6423
CH
1330 cdev = sch_get_cdev(sch);
1331 if (!cdev)
1da177e4 1332 return 0;
1da177e4
LT
1333 /* Set ccw device to not operational and drop reference. */
1334 spin_lock_irqsave(cdev->ccwlock, flags);
db6a6423 1335 sch_set_cdev(sch, NULL);
1da177e4
LT
1336 cdev->private->state = DEV_STATE_NOT_OPER;
1337 spin_unlock_irqrestore(cdev->ccwlock, flags);
ef99516c
CH
1338 ccw_device_unregister(cdev);
1339 put_device(&cdev->dev);
cd6b4f27 1340 kfree(sch->private);
7e9db9ea 1341 sysfs_remove_group(&sch->dev.kobj, &io_subchannel_attr_group);
1da177e4
LT
1342 return 0;
1343}
1344
602b20f2 1345static int io_subchannel_notify(struct subchannel *sch, int event)
1da177e4
LT
1346{
1347 struct ccw_device *cdev;
1348
db6a6423 1349 cdev = sch_get_cdev(sch);
1da177e4
LT
1350 if (!cdev)
1351 return 0;
c820de39 1352 return ccw_device_notify(cdev, event);
1da177e4
LT
1353}
1354
602b20f2 1355static void io_subchannel_verify(struct subchannel *sch)
1da177e4
LT
1356{
1357 struct ccw_device *cdev;
1358
db6a6423 1359 cdev = sch_get_cdev(sch);
1da177e4
LT
1360 if (cdev)
1361 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
1362}
1363
c820de39 1364static int check_for_io_on_path(struct subchannel *sch, int mask)
1da177e4 1365{
cdb912a4 1366 if (cio_update_schib(sch))
c820de39 1367 return 0;
23d805b6 1368 if (scsw_actl(&sch->schib.scsw) && sch->schib.pmcw.lpum == mask)
c820de39
CH
1369 return 1;
1370 return 0;
1371}
1372
1373static void terminate_internal_io(struct subchannel *sch,
1374 struct ccw_device *cdev)
1375{
1376 if (cio_clear(sch)) {
1377 /* Recheck device in case clear failed. */
1378 sch->lpm = 0;
1379 if (cdev->online)
1380 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
1381 else
1382 css_schedule_eval(sch->schid);
d23861ff 1383 return;
c820de39 1384 }
1da177e4 1385 cdev->private->state = DEV_STATE_CLEAR_VERIFY;
c820de39
CH
1386 /* Request retry of internal operation. */
1387 cdev->private->flags.intretry = 1;
1388 /* Call handler. */
1da177e4
LT
1389 if (cdev->handler)
1390 cdev->handler(cdev, cdev->private->intparm,
1391 ERR_PTR(-EIO));
1392}
1393
c820de39
CH
1394static void io_subchannel_terminate_path(struct subchannel *sch, u8 mask)
1395{
1396 struct ccw_device *cdev;
1397
1398 cdev = sch_get_cdev(sch);
1399 if (!cdev)
1400 return;
1401 if (check_for_io_on_path(sch, mask)) {
1402 if (cdev->private->state == DEV_STATE_ONLINE)
1403 ccw_device_kill_io(cdev);
1404 else {
1405 terminate_internal_io(sch, cdev);
1406 /* Re-start path verification. */
1407 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
1408 }
1409 } else
1410 /* trigger path verification. */
1411 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
1412
1413}
1414
99611f87
CH
1415static int io_subchannel_chp_event(struct subchannel *sch,
1416 struct chp_link *link, int event)
c820de39
CH
1417{
1418 int mask;
c820de39 1419
99611f87 1420 mask = chp_ssd_get_mask(&sch->ssd_info, link);
c820de39
CH
1421 if (!mask)
1422 return 0;
1423 switch (event) {
1424 case CHP_VARY_OFF:
1425 sch->opm &= ~mask;
1426 sch->lpm &= ~mask;
1427 io_subchannel_terminate_path(sch, mask);
1428 break;
1429 case CHP_VARY_ON:
1430 sch->opm |= mask;
1431 sch->lpm |= mask;
1432 io_subchannel_verify(sch);
1433 break;
1434 case CHP_OFFLINE:
cdb912a4 1435 if (cio_update_schib(sch))
c820de39
CH
1436 return -ENODEV;
1437 io_subchannel_terminate_path(sch, mask);
1438 break;
1439 case CHP_ONLINE:
cdb912a4
SO
1440 if (cio_update_schib(sch))
1441 return -ENODEV;
c820de39
CH
1442 sch->lpm |= mask & sch->opm;
1443 io_subchannel_verify(sch);
1444 break;
1445 }
1446 return 0;
1447}
1448
1da177e4 1449static void
8bbace7e 1450io_subchannel_shutdown(struct subchannel *sch)
1da177e4 1451{
1da177e4
LT
1452 struct ccw_device *cdev;
1453 int ret;
1454
db6a6423 1455 cdev = sch_get_cdev(sch);
1da177e4 1456
a8237fc4 1457 if (cio_is_console(sch->schid))
1da177e4
LT
1458 return;
1459 if (!sch->schib.pmcw.ena)
1460 /* Nothing to do. */
1461 return;
1462 ret = cio_disable_subchannel(sch);
1463 if (ret != -EBUSY)
1464 /* Subchannel is disabled, we're done. */
1465 return;
1466 cdev->private->state = DEV_STATE_QUIESCE;
1467 if (cdev->handler)
1468 cdev->handler(cdev, cdev->private->intparm,
1469 ERR_PTR(-EIO));
1470 ret = ccw_device_cancel_halt_clear(cdev);
1471 if (ret == -EBUSY) {
1472 ccw_device_set_timeout(cdev, HZ/10);
1473 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
1474 }
1475 cio_disable_subchannel(sch);
1476}
1477
c820de39
CH
1478static int io_subchannel_get_status(struct subchannel *sch)
1479{
1480 struct schib schib;
1481
1482 if (stsch(sch->schid, &schib) || !schib.pmcw.dnv)
1483 return CIO_GONE;
1484 if (sch->schib.pmcw.dnv && (schib.pmcw.dev != sch->schib.pmcw.dev))
1485 return CIO_REVALIDATE;
1486 if (!sch->lpm)
1487 return CIO_NO_PATH;
1488 return CIO_OPER;
1489}
1490
1491static int device_is_disconnected(struct ccw_device *cdev)
1492{
1493 if (!cdev)
1494 return 0;
1495 return (cdev->private->state == DEV_STATE_DISCONNECTED ||
1496 cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID);
1497}
1498
1499static int recovery_check(struct device *dev, void *data)
1500{
1501 struct ccw_device *cdev = to_ccwdev(dev);
1502 int *redo = data;
1503
1504 spin_lock_irq(cdev->ccwlock);
1505 switch (cdev->private->state) {
1506 case DEV_STATE_DISCONNECTED:
1507 CIO_MSG_EVENT(3, "recovery: trigger 0.%x.%04x\n",
1508 cdev->private->dev_id.ssid,
1509 cdev->private->dev_id.devno);
1510 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
1511 *redo = 1;
1512 break;
1513 case DEV_STATE_DISCONNECTED_SENSE_ID:
1514 *redo = 1;
1515 break;
1516 }
1517 spin_unlock_irq(cdev->ccwlock);
1518
1519 return 0;
1520}
1521
1522static void recovery_work_func(struct work_struct *unused)
1523{
1524 int redo = 0;
1525
1526 bus_for_each_dev(&ccw_bus_type, NULL, &redo, recovery_check);
1527 if (redo) {
1528 spin_lock_irq(&recovery_lock);
1529 if (!timer_pending(&recovery_timer)) {
1530 if (recovery_phase < ARRAY_SIZE(recovery_delay) - 1)
1531 recovery_phase++;
1532 mod_timer(&recovery_timer, jiffies +
1533 recovery_delay[recovery_phase] * HZ);
1534 }
1535 spin_unlock_irq(&recovery_lock);
1536 } else
1537 CIO_MSG_EVENT(4, "recovery: end\n");
1538}
1539
1540static DECLARE_WORK(recovery_work, recovery_work_func);
1541
1542static void recovery_func(unsigned long data)
1543{
1544 /*
1545 * We can't do our recovery in softirq context and it's not
1546 * performance critical, so we schedule it.
1547 */
1548 schedule_work(&recovery_work);
1549}
1550
1551static void ccw_device_schedule_recovery(void)
1552{
1553 unsigned long flags;
1554
1555 CIO_MSG_EVENT(4, "recovery: schedule\n");
1556 spin_lock_irqsave(&recovery_lock, flags);
1557 if (!timer_pending(&recovery_timer) || (recovery_phase != 0)) {
1558 recovery_phase = 0;
1559 mod_timer(&recovery_timer, jiffies + recovery_delay[0] * HZ);
1560 }
1561 spin_unlock_irqrestore(&recovery_lock, flags);
1562}
1563
ecf5d9ef
PO
1564static int purge_fn(struct device *dev, void *data)
1565{
1566 struct ccw_device *cdev = to_ccwdev(dev);
1567 struct ccw_device_private *priv = cdev->private;
1568 int unreg;
1569
1570 spin_lock_irq(cdev->ccwlock);
1571 unreg = is_blacklisted(priv->dev_id.ssid, priv->dev_id.devno) &&
1572 (priv->state == DEV_STATE_OFFLINE);
1573 spin_unlock_irq(cdev->ccwlock);
1574 if (!unreg)
1575 goto out;
1576 if (!get_device(&cdev->dev))
1577 goto out;
1578 CIO_MSG_EVENT(3, "ccw: purging 0.%x.%04x\n", priv->dev_id.ssid,
1579 priv->dev_id.devno);
c4621a62 1580 ccw_device_schedule_sch_unregister(cdev);
ecf5d9ef
PO
1581
1582out:
1583 /* Abort loop in case of pending signal. */
1584 if (signal_pending(current))
1585 return -EINTR;
1586
1587 return 0;
1588}
1589
1590/**
1591 * ccw_purge_blacklisted - purge unused, blacklisted devices
1592 *
1593 * Unregister all ccw devices that are offline and on the blacklist.
1594 */
1595int ccw_purge_blacklisted(void)
1596{
1597 CIO_MSG_EVENT(2, "ccw: purging blacklisted devices\n");
1598 bus_for_each_dev(&ccw_bus_type, NULL, NULL, purge_fn);
1599 return 0;
1600}
1601
c820de39
CH
1602static void device_set_disconnected(struct ccw_device *cdev)
1603{
1604 if (!cdev)
1605 return;
1606 ccw_device_set_timeout(cdev, 0);
1607 cdev->private->flags.fake_irb = 0;
1608 cdev->private->state = DEV_STATE_DISCONNECTED;
1609 if (cdev->online)
1610 ccw_device_schedule_recovery();
1611}
1612
91c36919
PO
1613void ccw_device_set_notoper(struct ccw_device *cdev)
1614{
1615 struct subchannel *sch = to_subchannel(cdev->dev.parent);
1616
1617 CIO_TRACE_EVENT(2, "notoper");
b9d3aed7 1618 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
91c36919
PO
1619 ccw_device_set_timeout(cdev, 0);
1620 cio_disable_subchannel(sch);
1621 cdev->private->state = DEV_STATE_NOT_OPER;
1622}
1623
c820de39
CH
1624static int io_subchannel_sch_event(struct subchannel *sch, int slow)
1625{
1626 int event, ret, disc;
1627 unsigned long flags;
91c36919 1628 enum { NONE, UNREGISTER, UNREGISTER_PROBE, REPROBE, DISC } action;
c820de39
CH
1629 struct ccw_device *cdev;
1630
1631 spin_lock_irqsave(sch->lock, flags);
1632 cdev = sch_get_cdev(sch);
1633 disc = device_is_disconnected(cdev);
1634 if (disc && slow) {
1635 /* Disconnected devices are evaluated directly only.*/
1636 spin_unlock_irqrestore(sch->lock, flags);
1637 return 0;
1638 }
1639 /* No interrupt after machine check - kill pending timers. */
1640 if (cdev)
1641 ccw_device_set_timeout(cdev, 0);
1642 if (!disc && !slow) {
1643 /* Non-disconnected devices are evaluated on the slow path. */
1644 spin_unlock_irqrestore(sch->lock, flags);
1645 return -EAGAIN;
1646 }
1647 event = io_subchannel_get_status(sch);
1648 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, %s, %s path.\n",
1649 sch->schid.ssid, sch->schid.sch_no, event,
1650 disc ? "disconnected" : "normal",
1651 slow ? "slow" : "fast");
1652 /* Analyze subchannel status. */
1653 action = NONE;
1654 switch (event) {
1655 case CIO_NO_PATH:
1656 if (disc) {
1657 /* Check if paths have become available. */
1658 action = REPROBE;
1659 break;
1660 }
1661 /* fall through */
1662 case CIO_GONE:
c820de39 1663 /* Ask driver what to do with device. */
91c36919
PO
1664 if (io_subchannel_notify(sch, event))
1665 action = DISC;
1666 else
1667 action = UNREGISTER;
c820de39
CH
1668 break;
1669 case CIO_REVALIDATE:
1670 /* Device will be removed, so no notify necessary. */
1671 if (disc)
1672 /* Reprobe because immediate unregister might block. */
1673 action = REPROBE;
1674 else
1675 action = UNREGISTER_PROBE;
1676 break;
1677 case CIO_OPER:
1678 if (disc)
1679 /* Get device operational again. */
1680 action = REPROBE;
1681 break;
1682 }
1683 /* Perform action. */
1684 ret = 0;
1685 switch (action) {
1686 case UNREGISTER:
1687 case UNREGISTER_PROBE:
91c36919 1688 ccw_device_set_notoper(cdev);
c820de39
CH
1689 /* Unregister device (will use subchannel lock). */
1690 spin_unlock_irqrestore(sch->lock, flags);
1691 css_sch_device_unregister(sch);
1692 spin_lock_irqsave(sch->lock, flags);
1693
1694 /* Reset intparm to zeroes. */
13952ec1
SO
1695 sch->config.intparm = 0;
1696 cio_commit_config(sch);
c820de39
CH
1697 break;
1698 case REPROBE:
1699 ccw_device_trigger_reprobe(cdev);
1700 break;
91c36919
PO
1701 case DISC:
1702 device_set_disconnected(cdev);
1703 break;
c820de39
CH
1704 default:
1705 break;
1706 }
1707 spin_unlock_irqrestore(sch->lock, flags);
1708 /* Probe if necessary. */
1709 if (action == UNREGISTER_PROBE)
1710 ret = css_probe_device(sch->schid);
1711
1712 return ret;
1713}
1714
1da177e4
LT
1715#ifdef CONFIG_CCW_CONSOLE
1716static struct ccw_device console_cdev;
1f4e7eda 1717static char console_cdev_name[10] = "0.x.xxxx";
1da177e4
LT
1718static struct ccw_device_private console_private;
1719static int console_cdev_in_use;
1720
2ec22984
CH
1721static DEFINE_SPINLOCK(ccw_console_lock);
1722
1723spinlock_t * cio_get_console_lock(void)
1724{
1725 return &ccw_console_lock;
1726}
1727
0ae7a7b2
CH
1728static int ccw_device_console_enable(struct ccw_device *cdev,
1729 struct subchannel *sch)
1da177e4
LT
1730{
1731 int rc;
1732
cd6b4f27
CH
1733 /* Attach subchannel private data. */
1734 sch->private = cio_get_console_priv();
1735 memset(sch->private, 0, sizeof(struct io_subchannel_private));
0ae7a7b2 1736 io_subchannel_init_fields(sch);
f444cc0e
SO
1737 rc = cio_commit_config(sch);
1738 if (rc)
1739 return rc;
0ae7a7b2 1740 sch->driver = &io_subchannel_driver;
1da177e4 1741 /* Initialize the ccw_device structure. */
292888c8 1742 cdev->dev.parent= &sch->dev;
1da177e4
LT
1743 rc = io_subchannel_recog(cdev, sch);
1744 if (rc)
1745 return rc;
1746
1747 /* Now wait for the async. recognition to come to an end. */
1748 spin_lock_irq(cdev->ccwlock);
1749 while (!dev_fsm_final_state(cdev))
1750 wait_cons_dev();
1751 rc = -EIO;
1752 if (cdev->private->state != DEV_STATE_OFFLINE)
1753 goto out_unlock;
1754 ccw_device_online(cdev);
1755 while (!dev_fsm_final_state(cdev))
1756 wait_cons_dev();
1757 if (cdev->private->state != DEV_STATE_ONLINE)
1758 goto out_unlock;
1759 rc = 0;
1760out_unlock:
1761 spin_unlock_irq(cdev->ccwlock);
1762 return 0;
1763}
1764
1765struct ccw_device *
1766ccw_device_probe_console(void)
1767{
1768 struct subchannel *sch;
1769 int ret;
1770
1771 if (xchg(&console_cdev_in_use, 1) != 0)
600b5d16 1772 return ERR_PTR(-EBUSY);
1da177e4
LT
1773 sch = cio_probe_console();
1774 if (IS_ERR(sch)) {
1775 console_cdev_in_use = 0;
1776 return (void *) sch;
1777 }
1778 memset(&console_cdev, 0, sizeof(struct ccw_device));
1779 memset(&console_private, 0, sizeof(struct ccw_device_private));
1780 console_cdev.private = &console_private;
c1637532 1781 console_private.cdev = &console_cdev;
1da177e4
LT
1782 ret = ccw_device_console_enable(&console_cdev, sch);
1783 if (ret) {
1784 cio_release_console();
1785 console_cdev_in_use = 0;
1786 return ERR_PTR(ret);
1787 }
1788 console_cdev.online = 1;
1789 return &console_cdev;
1790}
1f4e7eda
CH
1791
1792
1793const char *cio_get_console_cdev_name(struct subchannel *sch)
1794{
1795 snprintf(console_cdev_name, 10, "0.%x.%04x",
1796 sch->schid.ssid, sch->schib.pmcw.dev);
1797 return (const char *)console_cdev_name;
1798}
1da177e4
LT
1799#endif
1800
1801/*
1802 * get ccw_device matching the busid, but only if owned by cdrv
1803 */
b0744bd2
CH
1804static int
1805__ccwdev_check_busid(struct device *dev, void *id)
1806{
1807 char *bus_id;
1808
12975aef 1809 bus_id = id;
b0744bd2 1810
98df67b3 1811 return (strcmp(bus_id, dev_name(dev)) == 0);
b0744bd2
CH
1812}
1813
1814
b2ffd8e9
CH
1815/**
1816 * get_ccwdev_by_busid() - obtain device from a bus id
1817 * @cdrv: driver the device is owned by
1818 * @bus_id: bus id of the device to be searched
1819 *
1820 * This function searches all devices owned by @cdrv for a device with a bus
1821 * id matching @bus_id.
1822 * Returns:
1823 * If a match is found, its reference count of the found device is increased
1824 * and it is returned; else %NULL is returned.
1825 */
1826struct ccw_device *get_ccwdev_by_busid(struct ccw_driver *cdrv,
1827 const char *bus_id)
1da177e4 1828{
b0744bd2 1829 struct device *dev;
1da177e4
LT
1830 struct device_driver *drv;
1831
1832 drv = get_driver(&cdrv->driver);
1833 if (!drv)
b0744bd2 1834 return NULL;
1da177e4 1835
b0744bd2
CH
1836 dev = driver_find_device(drv, NULL, (void *)bus_id,
1837 __ccwdev_check_busid);
1da177e4
LT
1838 put_driver(drv);
1839
d2c993d8 1840 return dev ? to_ccwdev(dev) : NULL;
1da177e4
LT
1841}
1842
1843/************************** device driver handling ************************/
1844
1845/* This is the implementation of the ccw_driver class. The probe, remove
1846 * and release methods are initially very similar to the device_driver
1847 * implementations, with the difference that they have ccw_device
1848 * arguments.
1849 *
1850 * A ccw driver also contains the information that is needed for
1851 * device matching.
1852 */
1853static int
1854ccw_device_probe (struct device *dev)
1855{
1856 struct ccw_device *cdev = to_ccwdev(dev);
1857 struct ccw_driver *cdrv = to_ccwdrv(dev->driver);
1858 int ret;
1859
1860 cdev->drv = cdrv; /* to let the driver call _set_online */
1861
1862 ret = cdrv->probe ? cdrv->probe(cdev) : -ENODEV;
1863
1864 if (ret) {
d2c993d8 1865 cdev->drv = NULL;
1da177e4
LT
1866 return ret;
1867 }
1868
1869 return 0;
1870}
1871
1872static int
1873ccw_device_remove (struct device *dev)
1874{
1875 struct ccw_device *cdev = to_ccwdev(dev);
1876 struct ccw_driver *cdrv = cdev->drv;
1877 int ret;
1878
1da177e4
LT
1879 if (cdrv->remove)
1880 cdrv->remove(cdev);
1881 if (cdev->online) {
1882 cdev->online = 0;
1883 spin_lock_irq(cdev->ccwlock);
1884 ret = ccw_device_offline(cdev);
1885 spin_unlock_irq(cdev->ccwlock);
1886 if (ret == 0)
1887 wait_event(cdev->private->wait_q,
1888 dev_fsm_final_state(cdev));
1889 else
139b83dd 1890 CIO_MSG_EVENT(0, "ccw_device_offline returned %d, "
e556bbbd
CH
1891 "device 0.%x.%04x\n",
1892 ret, cdev->private->dev_id.ssid,
1893 cdev->private->dev_id.devno);
9cd67421
CH
1894 /* Give up reference obtained in ccw_device_set_online(). */
1895 put_device(&cdev->dev);
1da177e4
LT
1896 }
1897 ccw_device_set_timeout(cdev, 0);
d2c993d8 1898 cdev->drv = NULL;
1da177e4
LT
1899 return 0;
1900}
1901
958974fb
CH
1902static void ccw_device_shutdown(struct device *dev)
1903{
1904 struct ccw_device *cdev;
1905
1906 cdev = to_ccwdev(dev);
1907 if (cdev->drv && cdev->drv->shutdown)
1908 cdev->drv->shutdown(cdev);
1842f2b1 1909 disable_cmf(cdev);
958974fb
CH
1910}
1911
823d494a
SO
1912static int ccw_device_pm_prepare(struct device *dev)
1913{
1914 struct ccw_device *cdev = to_ccwdev(dev);
1915
1916 if (work_pending(&cdev->private->kick_work))
1917 return -EAGAIN;
1918 /* Fail while device is being set online/offline. */
1919 if (atomic_read(&cdev->private->onoff))
1920 return -EAGAIN;
1921
1922 if (cdev->online && cdev->drv && cdev->drv->prepare)
1923 return cdev->drv->prepare(cdev);
1924
1925 return 0;
1926}
1927
1928static void ccw_device_pm_complete(struct device *dev)
1929{
1930 struct ccw_device *cdev = to_ccwdev(dev);
1931
1932 if (cdev->online && cdev->drv && cdev->drv->complete)
1933 cdev->drv->complete(cdev);
1934}
1935
1936static int ccw_device_pm_freeze(struct device *dev)
1937{
1938 struct ccw_device *cdev = to_ccwdev(dev);
1939 struct subchannel *sch = to_subchannel(cdev->dev.parent);
1940 int ret, cm_enabled;
1941
1942 /* Fail suspend while device is in transistional state. */
1943 if (!dev_fsm_final_state(cdev))
1944 return -EAGAIN;
1945 if (!cdev->online)
1946 return 0;
1947 if (cdev->drv && cdev->drv->freeze) {
1948 ret = cdev->drv->freeze(cdev);
1949 if (ret)
1950 return ret;
1951 }
1952
1953 spin_lock_irq(sch->lock);
1954 cm_enabled = cdev->private->cmb != NULL;
1955 spin_unlock_irq(sch->lock);
1956 if (cm_enabled) {
1957 /* Don't have the css write on memory. */
1958 ret = ccw_set_cmf(cdev, 0);
1959 if (ret)
1960 return ret;
1961 }
1962 /* From here on, disallow device driver I/O. */
1963 spin_lock_irq(sch->lock);
1964 ret = cio_disable_subchannel(sch);
1965 spin_unlock_irq(sch->lock);
1966
1967 return ret;
1968}
1969
1970static int ccw_device_pm_thaw(struct device *dev)
1971{
1972 struct ccw_device *cdev = to_ccwdev(dev);
1973 struct subchannel *sch = to_subchannel(cdev->dev.parent);
1974 int ret, cm_enabled;
1975
1976 if (!cdev->online)
1977 return 0;
1978
1979 spin_lock_irq(sch->lock);
1980 /* Allow device driver I/O again. */
1981 ret = cio_enable_subchannel(sch, (u32)(addr_t)sch);
1982 cm_enabled = cdev->private->cmb != NULL;
1983 spin_unlock_irq(sch->lock);
1984 if (ret)
1985 return ret;
1986
1987 if (cm_enabled) {
1988 ret = ccw_set_cmf(cdev, 1);
1989 if (ret)
1990 return ret;
1991 }
1992
1993 if (cdev->drv && cdev->drv->thaw)
1994 ret = cdev->drv->thaw(cdev);
1995
1996 return ret;
1997}
1998
1999static void __ccw_device_pm_restore(struct ccw_device *cdev)
2000{
2001 struct subchannel *sch = to_subchannel(cdev->dev.parent);
2002 int ret;
2003
2004 if (cio_is_console(sch->schid))
2005 goto out;
2006 /*
2007 * While we were sleeping, devices may have gone or become
2008 * available again. Kick re-detection.
2009 */
2010 spin_lock_irq(sch->lock);
2011 cdev->private->flags.resuming = 1;
2012 ret = ccw_device_recognition(cdev);
2013 spin_unlock_irq(sch->lock);
2014 if (ret) {
2015 CIO_MSG_EVENT(0, "Couldn't start recognition for device "
2016 "%s (ret=%d)\n", dev_name(&cdev->dev), ret);
2017 spin_lock_irq(sch->lock);
2018 cdev->private->state = DEV_STATE_DISCONNECTED;
2019 spin_unlock_irq(sch->lock);
2020 /* notify driver after the resume cb */
2021 goto out;
2022 }
2023 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev) ||
2024 cdev->private->state == DEV_STATE_DISCONNECTED);
2025
2026out:
2027 cdev->private->flags.resuming = 0;
2028}
2029
2030static int resume_handle_boxed(struct ccw_device *cdev)
2031{
2032 cdev->private->state = DEV_STATE_BOXED;
2033 if (ccw_device_notify(cdev, CIO_BOXED))
2034 return 0;
2035 ccw_device_schedule_sch_unregister(cdev);
2036 return -ENODEV;
2037}
2038
2039static int resume_handle_disc(struct ccw_device *cdev)
2040{
2041 cdev->private->state = DEV_STATE_DISCONNECTED;
2042 if (ccw_device_notify(cdev, CIO_GONE))
2043 return 0;
2044 ccw_device_schedule_sch_unregister(cdev);
2045 return -ENODEV;
2046}
2047
2048static int ccw_device_pm_restore(struct device *dev)
2049{
2050 struct ccw_device *cdev = to_ccwdev(dev);
2051 struct subchannel *sch = to_subchannel(cdev->dev.parent);
2052 int ret = 0, cm_enabled;
2053
2054 __ccw_device_pm_restore(cdev);
2055 spin_lock_irq(sch->lock);
2056 if (cio_is_console(sch->schid)) {
2057 cio_enable_subchannel(sch, (u32)(addr_t)sch);
2058 spin_unlock_irq(sch->lock);
2059 goto out_restore;
2060 }
2061 cdev->private->flags.donotify = 0;
2062 /* check recognition results */
2063 switch (cdev->private->state) {
2064 case DEV_STATE_OFFLINE:
2065 break;
2066 case DEV_STATE_BOXED:
2067 ret = resume_handle_boxed(cdev);
2068 spin_unlock_irq(sch->lock);
2069 if (ret)
2070 goto out;
2071 goto out_restore;
2072 case DEV_STATE_DISCONNECTED:
2073 goto out_disc_unlock;
2074 default:
2075 goto out_unreg_unlock;
2076 }
2077 /* check if the device id has changed */
2078 if (sch->schib.pmcw.dev != cdev->private->dev_id.devno) {
2079 CIO_MSG_EVENT(0, "resume: sch %s: failed (devno changed from "
2080 "%04x to %04x)\n", dev_name(&sch->dev),
2081 cdev->private->dev_id.devno,
2082 sch->schib.pmcw.dev);
2083 goto out_unreg_unlock;
2084 }
2085 /* check if the device type has changed */
2086 if (!ccw_device_test_sense_data(cdev)) {
2087 ccw_device_update_sense_data(cdev);
2088 PREPARE_WORK(&cdev->private->kick_work,
2089 ccw_device_do_unbind_bind);
2090 queue_work(ccw_device_work, &cdev->private->kick_work);
2091 ret = -ENODEV;
2092 goto out_unlock;
2093 }
2094 if (!cdev->online) {
2095 ret = 0;
2096 goto out_unlock;
2097 }
2098 ret = ccw_device_online(cdev);
2099 if (ret)
2100 goto out_disc_unlock;
2101
2102 cm_enabled = cdev->private->cmb != NULL;
2103 spin_unlock_irq(sch->lock);
2104
2105 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
2106 if (cdev->private->state != DEV_STATE_ONLINE) {
2107 spin_lock_irq(sch->lock);
2108 goto out_disc_unlock;
2109 }
2110 if (cm_enabled) {
2111 ret = ccw_set_cmf(cdev, 1);
2112 if (ret) {
2113 CIO_MSG_EVENT(2, "resume: cdev %s: cmf failed "
2114 "(rc=%d)\n", dev_name(&cdev->dev), ret);
2115 ret = 0;
2116 }
2117 }
2118
2119out_restore:
2120 if (cdev->online && cdev->drv && cdev->drv->restore)
2121 ret = cdev->drv->restore(cdev);
2122out:
2123 return ret;
2124
2125out_disc_unlock:
2126 ret = resume_handle_disc(cdev);
2127 spin_unlock_irq(sch->lock);
2128 if (ret)
2129 return ret;
2130 goto out_restore;
2131
2132out_unreg_unlock:
2133 ccw_device_schedule_sch_unregister(cdev);
2134 ret = -ENODEV;
2135out_unlock:
2136 spin_unlock_irq(sch->lock);
2137 return ret;
2138}
2139
2140static struct dev_pm_ops ccw_pm_ops = {
2141 .prepare = ccw_device_pm_prepare,
2142 .complete = ccw_device_pm_complete,
2143 .freeze = ccw_device_pm_freeze,
2144 .thaw = ccw_device_pm_thaw,
2145 .restore = ccw_device_pm_restore,
2146};
2147
8bbace7e
CH
2148struct bus_type ccw_bus_type = {
2149 .name = "ccw",
2150 .match = ccw_bus_match,
2151 .uevent = ccw_uevent,
2152 .probe = ccw_device_probe,
2153 .remove = ccw_device_remove,
958974fb 2154 .shutdown = ccw_device_shutdown,
823d494a 2155 .pm = &ccw_pm_ops,
8bbace7e
CH
2156};
2157
b2ffd8e9
CH
2158/**
2159 * ccw_driver_register() - register a ccw driver
2160 * @cdriver: driver to be registered
2161 *
2162 * This function is mainly a wrapper around driver_register().
2163 * Returns:
2164 * %0 on success and a negative error value on failure.
2165 */
2166int ccw_driver_register(struct ccw_driver *cdriver)
1da177e4
LT
2167{
2168 struct device_driver *drv = &cdriver->driver;
2169
2170 drv->bus = &ccw_bus_type;
2171 drv->name = cdriver->name;
4beee646 2172 drv->owner = cdriver->owner;
1da177e4
LT
2173
2174 return driver_register(drv);
2175}
2176
b2ffd8e9
CH
2177/**
2178 * ccw_driver_unregister() - deregister a ccw driver
2179 * @cdriver: driver to be deregistered
2180 *
2181 * This function is mainly a wrapper around driver_unregister().
2182 */
2183void ccw_driver_unregister(struct ccw_driver *cdriver)
1da177e4
LT
2184{
2185 driver_unregister(&cdriver->driver);
2186}
2187
a8237fc4
CH
2188/* Helper func for qdio. */
2189struct subchannel_id
2190ccw_device_get_subchannel_id(struct ccw_device *cdev)
2191{
2192 struct subchannel *sch;
2193
2194 sch = to_subchannel(cdev->dev.parent);
2195 return sch->schid;
2196}
2197
1da177e4
LT
2198MODULE_LICENSE("GPL");
2199EXPORT_SYMBOL(ccw_device_set_online);
2200EXPORT_SYMBOL(ccw_device_set_offline);
2201EXPORT_SYMBOL(ccw_driver_register);
2202EXPORT_SYMBOL(ccw_driver_unregister);
2203EXPORT_SYMBOL(get_ccwdev_by_busid);
2204EXPORT_SYMBOL(ccw_bus_type);
2205EXPORT_SYMBOL(ccw_device_work);
a8237fc4 2206EXPORT_SYMBOL_GPL(ccw_device_get_subchannel_id);