1 // SPDX-License-Identifier: GPL-1.0+
3 * bus driver for ccw devices
5 * Copyright IBM Corp. 2002, 2008
6 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
7 * Cornelia Huck (cornelia.huck@de.ibm.com)
8 * Martin Schwidefsky (schwidefsky@de.ibm.com)
11 #define KMSG_COMPONENT "cio"
12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14 #include <linux/export.h>
15 #include <linux/init.h>
16 #include <linux/spinlock.h>
17 #include <linux/errno.h>
18 #include <linux/err.h>
19 #include <linux/slab.h>
20 #include <linux/list.h>
21 #include <linux/device.h>
22 #include <linux/workqueue.h>
23 #include <linux/delay.h>
24 #include <linux/timer.h>
25 #include <linux/kernel_stat.h>
26 #include <linux/sched/signal.h>
28 #include <asm/ccwdev.h>
30 #include <asm/param.h> /* HZ */
36 #include "cio_debug.h"
41 #include "blacklist.h"
44 static struct timer_list recovery_timer
;
45 static DEFINE_SPINLOCK(recovery_lock
);
46 static int recovery_phase
;
47 static const unsigned long recovery_delay
[] = { 3, 30, 300 };
49 static atomic_t ccw_device_init_count
= ATOMIC_INIT(0);
50 static DECLARE_WAIT_QUEUE_HEAD(ccw_device_init_wq
);
51 static struct bus_type ccw_bus_type
;
53 /******************* bus type handling ***********************/
55 /* The Linux driver model distinguishes between a bus type and
56 * the bus itself. Of course we only have one channel
57 * subsystem driver and one channel system per machine, but
58 * we still use the abstraction. T.R. says it's a good idea. */
60 ccw_bus_match (struct device
* dev
, struct device_driver
* drv
)
62 struct ccw_device
*cdev
= to_ccwdev(dev
);
63 struct ccw_driver
*cdrv
= to_ccwdrv(drv
);
64 const struct ccw_device_id
*ids
= cdrv
->ids
, *found
;
69 found
= ccw_device_id_match(ids
, &cdev
->id
);
73 cdev
->id
.driver_info
= found
->driver_info
;
78 /* Store modalias string delimited by prefix/suffix string into buffer with
79 * specified size. Return length of resulting string (excluding trailing '\0')
80 * even if string doesn't fit buffer (snprintf semantics). */
81 static int snprint_alias(char *buf
, size_t size
,
82 struct ccw_device_id
*id
, const char *suffix
)
86 len
= snprintf(buf
, size
, "ccw:t%04Xm%02X", id
->cu_type
, id
->cu_model
);
92 if (id
->dev_type
!= 0)
93 len
+= snprintf(buf
, size
, "dt%04Xdm%02X%s", id
->dev_type
,
94 id
->dev_model
, suffix
);
96 len
+= snprintf(buf
, size
, "dtdm%s", suffix
);
101 /* Set up environment variables for ccw device uevent. Return 0 on success,
102 * non-zero otherwise. */
103 static int ccw_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
105 struct ccw_device
*cdev
= to_ccwdev(dev
);
106 struct ccw_device_id
*id
= &(cdev
->id
);
108 char modalias_buf
[30];
111 ret
= add_uevent_var(env
, "CU_TYPE=%04X", id
->cu_type
);
116 ret
= add_uevent_var(env
, "CU_MODEL=%02X", id
->cu_model
);
120 /* The next two can be zero, that's ok for us */
122 ret
= add_uevent_var(env
, "DEV_TYPE=%04X", id
->dev_type
);
127 ret
= add_uevent_var(env
, "DEV_MODEL=%02X", id
->dev_model
);
132 snprint_alias(modalias_buf
, sizeof(modalias_buf
), id
, "");
133 ret
= add_uevent_var(env
, "MODALIAS=%s", modalias_buf
);
137 static void io_subchannel_irq(struct subchannel
*);
138 static int io_subchannel_probe(struct subchannel
*);
139 static int io_subchannel_remove(struct subchannel
*);
140 static void io_subchannel_shutdown(struct subchannel
*);
141 static int io_subchannel_sch_event(struct subchannel
*, int);
142 static int io_subchannel_chp_event(struct subchannel
*, struct chp_link
*,
144 static void recovery_func(struct timer_list
*unused
);
146 static struct css_device_id io_subchannel_ids
[] = {
147 { .match_flags
= 0x1, .type
= SUBCHANNEL_TYPE_IO
, },
148 { /* end of list */ },
151 static int io_subchannel_prepare(struct subchannel
*sch
)
153 struct ccw_device
*cdev
;
155 * Don't allow suspend while a ccw device registration
156 * is still outstanding.
158 cdev
= sch_get_cdev(sch
);
159 if (cdev
&& !device_is_registered(&cdev
->dev
))
164 static int io_subchannel_settle(void)
168 ret
= wait_event_interruptible(ccw_device_init_wq
,
169 atomic_read(&ccw_device_init_count
) == 0);
172 flush_workqueue(cio_work_q
);
176 static struct css_driver io_subchannel_driver
= {
178 .owner
= THIS_MODULE
,
179 .name
= "io_subchannel",
181 .subchannel_type
= io_subchannel_ids
,
182 .irq
= io_subchannel_irq
,
183 .sch_event
= io_subchannel_sch_event
,
184 .chp_event
= io_subchannel_chp_event
,
185 .probe
= io_subchannel_probe
,
186 .remove
= io_subchannel_remove
,
187 .shutdown
= io_subchannel_shutdown
,
188 .prepare
= io_subchannel_prepare
,
189 .settle
= io_subchannel_settle
,
192 int __init
io_subchannel_init(void)
196 timer_setup(&recovery_timer
, recovery_func
, 0);
197 ret
= bus_register(&ccw_bus_type
);
200 ret
= css_driver_register(&io_subchannel_driver
);
202 bus_unregister(&ccw_bus_type
);
208 /************************ device handling **************************/
211 devtype_show (struct device
*dev
, struct device_attribute
*attr
, char *buf
)
213 struct ccw_device
*cdev
= to_ccwdev(dev
);
214 struct ccw_device_id
*id
= &(cdev
->id
);
216 if (id
->dev_type
!= 0)
217 return sprintf(buf
, "%04x/%02x\n",
218 id
->dev_type
, id
->dev_model
);
220 return sprintf(buf
, "n/a\n");
224 cutype_show (struct device
*dev
, struct device_attribute
*attr
, char *buf
)
226 struct ccw_device
*cdev
= to_ccwdev(dev
);
227 struct ccw_device_id
*id
= &(cdev
->id
);
229 return sprintf(buf
, "%04x/%02x\n",
230 id
->cu_type
, id
->cu_model
);
234 modalias_show (struct device
*dev
, struct device_attribute
*attr
, char *buf
)
236 struct ccw_device
*cdev
= to_ccwdev(dev
);
237 struct ccw_device_id
*id
= &(cdev
->id
);
240 len
= snprint_alias(buf
, PAGE_SIZE
, id
, "\n");
242 return len
> PAGE_SIZE
? PAGE_SIZE
: len
;
246 online_show (struct device
*dev
, struct device_attribute
*attr
, char *buf
)
248 struct ccw_device
*cdev
= to_ccwdev(dev
);
250 return sprintf(buf
, cdev
->online
? "1\n" : "0\n");
253 int ccw_device_is_orphan(struct ccw_device
*cdev
)
255 return sch_is_pseudo_sch(to_subchannel(cdev
->dev
.parent
));
258 static void ccw_device_unregister(struct ccw_device
*cdev
)
260 if (device_is_registered(&cdev
->dev
)) {
261 /* Undo device_add(). */
262 device_del(&cdev
->dev
);
264 if (cdev
->private->flags
.initialized
) {
265 cdev
->private->flags
.initialized
= 0;
266 /* Release reference from device_initialize(). */
267 put_device(&cdev
->dev
);
271 static void io_subchannel_quiesce(struct subchannel
*);
274 * ccw_device_set_offline() - disable a ccw device for I/O
275 * @cdev: target ccw device
277 * This function calls the driver's set_offline() function for @cdev, if
278 * given, and then disables @cdev.
280 * %0 on success and a negative error value on failure.
282 * enabled, ccw device lock not held
284 int ccw_device_set_offline(struct ccw_device
*cdev
)
286 struct subchannel
*sch
;
291 if (!cdev
->online
|| !cdev
->drv
)
294 if (cdev
->drv
->set_offline
) {
295 ret
= cdev
->drv
->set_offline(cdev
);
299 spin_lock_irq(cdev
->ccwlock
);
300 sch
= to_subchannel(cdev
->dev
.parent
);
302 /* Wait until a final state or DISCONNECTED is reached */
303 while (!dev_fsm_final_state(cdev
) &&
304 cdev
->private->state
!= DEV_STATE_DISCONNECTED
) {
305 spin_unlock_irq(cdev
->ccwlock
);
306 wait_event(cdev
->private->wait_q
, (dev_fsm_final_state(cdev
) ||
307 cdev
->private->state
== DEV_STATE_DISCONNECTED
));
308 spin_lock_irq(cdev
->ccwlock
);
311 ret
= ccw_device_offline(cdev
);
314 CIO_MSG_EVENT(0, "ccw_device_offline returned %d, device "
315 "0.%x.%04x\n", ret
, cdev
->private->dev_id
.ssid
,
316 cdev
->private->dev_id
.devno
);
319 state
= cdev
->private->state
;
320 spin_unlock_irq(cdev
->ccwlock
);
321 io_subchannel_quiesce(sch
);
322 spin_lock_irq(cdev
->ccwlock
);
323 cdev
->private->state
= state
;
324 } while (ret
== -EBUSY
);
325 spin_unlock_irq(cdev
->ccwlock
);
326 wait_event(cdev
->private->wait_q
, (dev_fsm_final_state(cdev
) ||
327 cdev
->private->state
== DEV_STATE_DISCONNECTED
));
328 /* Inform the user if set offline failed. */
329 if (cdev
->private->state
== DEV_STATE_BOXED
) {
330 pr_warn("%s: The device entered boxed state while being set offline\n",
331 dev_name(&cdev
->dev
));
332 } else if (cdev
->private->state
== DEV_STATE_NOT_OPER
) {
333 pr_warn("%s: The device stopped operating while being set offline\n",
334 dev_name(&cdev
->dev
));
336 /* Give up reference from ccw_device_set_online(). */
337 put_device(&cdev
->dev
);
341 cdev
->private->state
= DEV_STATE_OFFLINE
;
342 dev_fsm_event(cdev
, DEV_EVENT_NOTOPER
);
343 spin_unlock_irq(cdev
->ccwlock
);
344 /* Give up reference from ccw_device_set_online(). */
345 put_device(&cdev
->dev
);
350 * ccw_device_set_online() - enable a ccw device for I/O
351 * @cdev: target ccw device
353 * This function first enables @cdev and then calls the driver's set_online()
354 * function for @cdev, if given. If set_online() returns an error, @cdev is
357 * %0 on success and a negative error value on failure.
359 * enabled, ccw device lock not held
361 int ccw_device_set_online(struct ccw_device
*cdev
)
368 if (cdev
->online
|| !cdev
->drv
)
370 /* Hold on to an extra reference while device is online. */
371 if (!get_device(&cdev
->dev
))
374 spin_lock_irq(cdev
->ccwlock
);
375 ret
= ccw_device_online(cdev
);
376 spin_unlock_irq(cdev
->ccwlock
);
378 wait_event(cdev
->private->wait_q
, dev_fsm_final_state(cdev
));
380 CIO_MSG_EVENT(0, "ccw_device_online returned %d, "
381 "device 0.%x.%04x\n",
382 ret
, cdev
->private->dev_id
.ssid
,
383 cdev
->private->dev_id
.devno
);
384 /* Give up online reference since onlining failed. */
385 put_device(&cdev
->dev
);
388 spin_lock_irq(cdev
->ccwlock
);
389 /* Check if online processing was successful */
390 if ((cdev
->private->state
!= DEV_STATE_ONLINE
) &&
391 (cdev
->private->state
!= DEV_STATE_W4SENSE
)) {
392 spin_unlock_irq(cdev
->ccwlock
);
393 /* Inform the user that set online failed. */
394 if (cdev
->private->state
== DEV_STATE_BOXED
) {
395 pr_warn("%s: Setting the device online failed because it is boxed\n",
396 dev_name(&cdev
->dev
));
397 } else if (cdev
->private->state
== DEV_STATE_NOT_OPER
) {
398 pr_warn("%s: Setting the device online failed because it is not operational\n",
399 dev_name(&cdev
->dev
));
401 /* Give up online reference since onlining failed. */
402 put_device(&cdev
->dev
);
405 spin_unlock_irq(cdev
->ccwlock
);
406 if (cdev
->drv
->set_online
)
407 ret
= cdev
->drv
->set_online(cdev
);
411 spin_lock_irq(cdev
->ccwlock
);
413 spin_unlock_irq(cdev
->ccwlock
);
417 spin_lock_irq(cdev
->ccwlock
);
418 /* Wait until a final state or DISCONNECTED is reached */
419 while (!dev_fsm_final_state(cdev
) &&
420 cdev
->private->state
!= DEV_STATE_DISCONNECTED
) {
421 spin_unlock_irq(cdev
->ccwlock
);
422 wait_event(cdev
->private->wait_q
, (dev_fsm_final_state(cdev
) ||
423 cdev
->private->state
== DEV_STATE_DISCONNECTED
));
424 spin_lock_irq(cdev
->ccwlock
);
426 ret2
= ccw_device_offline(cdev
);
429 spin_unlock_irq(cdev
->ccwlock
);
430 wait_event(cdev
->private->wait_q
, (dev_fsm_final_state(cdev
) ||
431 cdev
->private->state
== DEV_STATE_DISCONNECTED
));
432 /* Give up online reference since onlining failed. */
433 put_device(&cdev
->dev
);
437 CIO_MSG_EVENT(0, "rollback ccw_device_offline returned %d, "
438 "device 0.%x.%04x\n",
439 ret2
, cdev
->private->dev_id
.ssid
,
440 cdev
->private->dev_id
.devno
);
441 cdev
->private->state
= DEV_STATE_OFFLINE
;
442 spin_unlock_irq(cdev
->ccwlock
);
443 /* Give up online reference since onlining failed. */
444 put_device(&cdev
->dev
);
448 static int online_store_handle_offline(struct ccw_device
*cdev
)
450 if (cdev
->private->state
== DEV_STATE_DISCONNECTED
) {
451 spin_lock_irq(cdev
->ccwlock
);
452 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG_EVAL
);
453 spin_unlock_irq(cdev
->ccwlock
);
456 if (cdev
->drv
&& cdev
->drv
->set_offline
)
457 return ccw_device_set_offline(cdev
);
461 static int online_store_recog_and_online(struct ccw_device
*cdev
)
463 /* Do device recognition, if needed. */
464 if (cdev
->private->state
== DEV_STATE_BOXED
) {
465 spin_lock_irq(cdev
->ccwlock
);
466 ccw_device_recognition(cdev
);
467 spin_unlock_irq(cdev
->ccwlock
);
468 wait_event(cdev
->private->wait_q
,
469 cdev
->private->flags
.recog_done
);
470 if (cdev
->private->state
!= DEV_STATE_OFFLINE
)
471 /* recognition failed */
474 if (cdev
->drv
&& cdev
->drv
->set_online
)
475 return ccw_device_set_online(cdev
);
479 static int online_store_handle_online(struct ccw_device
*cdev
, int force
)
483 ret
= online_store_recog_and_online(cdev
);
486 if (force
&& cdev
->private->state
== DEV_STATE_BOXED
) {
487 ret
= ccw_device_stlck(cdev
);
490 if (cdev
->id
.cu_type
== 0)
491 cdev
->private->state
= DEV_STATE_NOT_OPER
;
492 ret
= online_store_recog_and_online(cdev
);
499 static ssize_t
online_store (struct device
*dev
, struct device_attribute
*attr
,
500 const char *buf
, size_t count
)
502 struct ccw_device
*cdev
= to_ccwdev(dev
);
506 /* Prevent conflict between multiple on-/offline processing requests. */
507 if (atomic_cmpxchg(&cdev
->private->onoff
, 0, 1) != 0)
509 /* Prevent conflict between internal I/Os and on-/offline processing. */
510 if (!dev_fsm_final_state(cdev
) &&
511 cdev
->private->state
!= DEV_STATE_DISCONNECTED
) {
515 /* Prevent conflict between pending work and on-/offline processing.*/
516 if (work_pending(&cdev
->private->todo_work
)) {
520 if (!strncmp(buf
, "force\n", count
)) {
526 ret
= kstrtoul(buf
, 16, &i
);
534 ret
= online_store_handle_offline(cdev
);
537 ret
= online_store_handle_online(cdev
, force
);
545 atomic_set(&cdev
->private->onoff
, 0);
546 return (ret
< 0) ? ret
: count
;
550 available_show (struct device
*dev
, struct device_attribute
*attr
, char *buf
)
552 struct ccw_device
*cdev
= to_ccwdev(dev
);
553 struct subchannel
*sch
;
555 if (ccw_device_is_orphan(cdev
))
556 return sprintf(buf
, "no device\n");
557 switch (cdev
->private->state
) {
558 case DEV_STATE_BOXED
:
559 return sprintf(buf
, "boxed\n");
560 case DEV_STATE_DISCONNECTED
:
561 case DEV_STATE_DISCONNECTED_SENSE_ID
:
562 case DEV_STATE_NOT_OPER
:
563 sch
= to_subchannel(dev
->parent
);
565 return sprintf(buf
, "no path\n");
567 return sprintf(buf
, "no device\n");
569 /* All other states considered fine. */
570 return sprintf(buf
, "good\n");
575 initiate_logging(struct device
*dev
, struct device_attribute
*attr
,
576 const char *buf
, size_t count
)
578 struct subchannel
*sch
= to_subchannel(dev
);
581 rc
= chsc_siosl(sch
->schid
);
583 pr_warn("Logging for subchannel 0.%x.%04x failed with errno=%d\n",
584 sch
->schid
.ssid
, sch
->schid
.sch_no
, rc
);
587 pr_notice("Logging for subchannel 0.%x.%04x was triggered\n",
588 sch
->schid
.ssid
, sch
->schid
.sch_no
);
592 static ssize_t
vpm_show(struct device
*dev
, struct device_attribute
*attr
,
595 struct subchannel
*sch
= to_subchannel(dev
);
597 return sprintf(buf
, "%02x\n", sch
->vpm
);
600 static DEVICE_ATTR_RO(devtype
);
601 static DEVICE_ATTR_RO(cutype
);
602 static DEVICE_ATTR_RO(modalias
);
603 static DEVICE_ATTR_RW(online
);
604 static DEVICE_ATTR(availability
, 0444, available_show
, NULL
);
605 static DEVICE_ATTR(logging
, 0200, NULL
, initiate_logging
);
606 static DEVICE_ATTR_RO(vpm
);
608 static struct attribute
*io_subchannel_attrs
[] = {
609 &dev_attr_logging
.attr
,
614 static const struct attribute_group io_subchannel_attr_group
= {
615 .attrs
= io_subchannel_attrs
,
618 static struct attribute
* ccwdev_attrs
[] = {
619 &dev_attr_devtype
.attr
,
620 &dev_attr_cutype
.attr
,
621 &dev_attr_modalias
.attr
,
622 &dev_attr_online
.attr
,
623 &dev_attr_cmb_enable
.attr
,
624 &dev_attr_availability
.attr
,
628 static const struct attribute_group ccwdev_attr_group
= {
629 .attrs
= ccwdev_attrs
,
632 static const struct attribute_group
*ccwdev_attr_groups
[] = {
637 static int ccw_device_add(struct ccw_device
*cdev
)
639 struct device
*dev
= &cdev
->dev
;
641 dev
->bus
= &ccw_bus_type
;
642 return device_add(dev
);
645 static int match_dev_id(struct device
*dev
, void *data
)
647 struct ccw_device
*cdev
= to_ccwdev(dev
);
648 struct ccw_dev_id
*dev_id
= data
;
650 return ccw_dev_id_is_equal(&cdev
->private->dev_id
, dev_id
);
654 * get_ccwdev_by_dev_id() - obtain device from a ccw device id
655 * @dev_id: id of the device to be searched
657 * This function searches all devices attached to the ccw bus for a device
660 * If a device is found its reference count is increased and returned;
661 * else %NULL is returned.
663 struct ccw_device
*get_ccwdev_by_dev_id(struct ccw_dev_id
*dev_id
)
667 dev
= bus_find_device(&ccw_bus_type
, NULL
, dev_id
, match_dev_id
);
669 return dev
? to_ccwdev(dev
) : NULL
;
671 EXPORT_SYMBOL_GPL(get_ccwdev_by_dev_id
);
673 static void ccw_device_do_unbind_bind(struct ccw_device
*cdev
)
677 if (device_is_registered(&cdev
->dev
)) {
678 device_release_driver(&cdev
->dev
);
679 ret
= device_attach(&cdev
->dev
);
680 WARN_ON(ret
== -ENODEV
);
685 ccw_device_release(struct device
*dev
)
687 struct ccw_device
*cdev
;
689 cdev
= to_ccwdev(dev
);
690 /* Release reference of parent subchannel. */
691 put_device(cdev
->dev
.parent
);
692 kfree(cdev
->private);
696 static struct ccw_device
* io_subchannel_allocate_dev(struct subchannel
*sch
)
698 struct ccw_device
*cdev
;
700 cdev
= kzalloc(sizeof(*cdev
), GFP_KERNEL
);
702 cdev
->private = kzalloc(sizeof(struct ccw_device_private
),
703 GFP_KERNEL
| GFP_DMA
);
708 return ERR_PTR(-ENOMEM
);
711 static void ccw_device_todo(struct work_struct
*work
);
713 static int io_subchannel_initialize_dev(struct subchannel
*sch
,
714 struct ccw_device
*cdev
)
716 struct ccw_device_private
*priv
= cdev
->private;
720 priv
->int_class
= IRQIO_CIO
;
721 priv
->state
= DEV_STATE_NOT_OPER
;
722 priv
->dev_id
.devno
= sch
->schib
.pmcw
.dev
;
723 priv
->dev_id
.ssid
= sch
->schid
.ssid
;
725 INIT_WORK(&priv
->todo_work
, ccw_device_todo
);
726 INIT_LIST_HEAD(&priv
->cmb_list
);
727 init_waitqueue_head(&priv
->wait_q
);
728 timer_setup(&priv
->timer
, ccw_device_timeout
, 0);
730 atomic_set(&priv
->onoff
, 0);
731 cdev
->ccwlock
= sch
->lock
;
732 cdev
->dev
.parent
= &sch
->dev
;
733 cdev
->dev
.release
= ccw_device_release
;
734 cdev
->dev
.groups
= ccwdev_attr_groups
;
735 /* Do first half of device_register. */
736 device_initialize(&cdev
->dev
);
737 ret
= dev_set_name(&cdev
->dev
, "0.%x.%04x", cdev
->private->dev_id
.ssid
,
738 cdev
->private->dev_id
.devno
);
741 if (!get_device(&sch
->dev
)) {
745 priv
->flags
.initialized
= 1;
746 spin_lock_irq(sch
->lock
);
747 sch_set_cdev(sch
, cdev
);
748 spin_unlock_irq(sch
->lock
);
752 /* Release reference from device_initialize(). */
753 put_device(&cdev
->dev
);
757 static struct ccw_device
* io_subchannel_create_ccwdev(struct subchannel
*sch
)
759 struct ccw_device
*cdev
;
762 cdev
= io_subchannel_allocate_dev(sch
);
764 ret
= io_subchannel_initialize_dev(sch
, cdev
);
771 static void io_subchannel_recog(struct ccw_device
*, struct subchannel
*);
773 static void sch_create_and_recog_new_device(struct subchannel
*sch
)
775 struct ccw_device
*cdev
;
777 /* Need to allocate a new ccw device. */
778 cdev
= io_subchannel_create_ccwdev(sch
);
780 /* OK, we did everything we could... */
781 css_sch_device_unregister(sch
);
784 /* Start recognition for the new ccw device. */
785 io_subchannel_recog(cdev
, sch
);
789 * Register recognized device.
791 static void io_subchannel_register(struct ccw_device
*cdev
)
793 struct subchannel
*sch
;
794 int ret
, adjust_init_count
= 1;
797 sch
= to_subchannel(cdev
->dev
.parent
);
799 * Check if subchannel is still registered. It may have become
800 * unregistered if a machine check hit us after finishing
801 * device recognition but before the register work could be
804 if (!device_is_registered(&sch
->dev
))
806 css_update_ssd_info(sch
);
808 * io_subchannel_register() will also be called after device
809 * recognition has been done for a boxed device (which will already
810 * be registered). We need to reprobe since we may now have sense id
813 if (device_is_registered(&cdev
->dev
)) {
815 ret
= device_reprobe(&cdev
->dev
);
817 /* We can't do much here. */
818 CIO_MSG_EVENT(0, "device_reprobe() returned"
819 " %d for 0.%x.%04x\n", ret
,
820 cdev
->private->dev_id
.ssid
,
821 cdev
->private->dev_id
.devno
);
823 adjust_init_count
= 0;
827 * Now we know this subchannel will stay, we can throw
828 * our delayed uevent.
830 dev_set_uevent_suppress(&sch
->dev
, 0);
831 kobject_uevent(&sch
->dev
.kobj
, KOBJ_ADD
);
832 /* make it known to the system */
833 ret
= ccw_device_add(cdev
);
835 CIO_MSG_EVENT(0, "Could not register ccw dev 0.%x.%04x: %d\n",
836 cdev
->private->dev_id
.ssid
,
837 cdev
->private->dev_id
.devno
, ret
);
838 spin_lock_irqsave(sch
->lock
, flags
);
839 sch_set_cdev(sch
, NULL
);
840 spin_unlock_irqrestore(sch
->lock
, flags
);
841 /* Release initial device reference. */
842 put_device(&cdev
->dev
);
846 cdev
->private->flags
.recog_done
= 1;
847 wake_up(&cdev
->private->wait_q
);
849 if (adjust_init_count
&& atomic_dec_and_test(&ccw_device_init_count
))
850 wake_up(&ccw_device_init_wq
);
853 static void ccw_device_call_sch_unregister(struct ccw_device
*cdev
)
855 struct subchannel
*sch
;
857 /* Get subchannel reference for local processing. */
858 if (!get_device(cdev
->dev
.parent
))
860 sch
= to_subchannel(cdev
->dev
.parent
);
861 css_sch_device_unregister(sch
);
862 /* Release subchannel reference for local processing. */
863 put_device(&sch
->dev
);
867 * subchannel recognition done. Called from the state machine.
870 io_subchannel_recog_done(struct ccw_device
*cdev
)
872 if (css_init_done
== 0) {
873 cdev
->private->flags
.recog_done
= 1;
876 switch (cdev
->private->state
) {
877 case DEV_STATE_BOXED
:
878 /* Device did not respond in time. */
879 case DEV_STATE_NOT_OPER
:
880 cdev
->private->flags
.recog_done
= 1;
881 /* Remove device found not operational. */
882 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG
);
883 if (atomic_dec_and_test(&ccw_device_init_count
))
884 wake_up(&ccw_device_init_wq
);
886 case DEV_STATE_OFFLINE
:
888 * We can't register the device in interrupt context so
889 * we schedule a work item.
891 ccw_device_sched_todo(cdev
, CDEV_TODO_REGISTER
);
896 static void io_subchannel_recog(struct ccw_device
*cdev
, struct subchannel
*sch
)
898 /* Increase counter of devices currently in recognition. */
899 atomic_inc(&ccw_device_init_count
);
901 /* Start async. device sensing. */
902 spin_lock_irq(sch
->lock
);
903 ccw_device_recognition(cdev
);
904 spin_unlock_irq(sch
->lock
);
907 static int ccw_device_move_to_sch(struct ccw_device
*cdev
,
908 struct subchannel
*sch
)
910 struct subchannel
*old_sch
;
911 int rc
, old_enabled
= 0;
913 old_sch
= to_subchannel(cdev
->dev
.parent
);
914 /* Obtain child reference for new parent. */
915 if (!get_device(&sch
->dev
))
918 if (!sch_is_pseudo_sch(old_sch
)) {
919 spin_lock_irq(old_sch
->lock
);
920 old_enabled
= old_sch
->schib
.pmcw
.ena
;
923 rc
= cio_disable_subchannel(old_sch
);
924 spin_unlock_irq(old_sch
->lock
);
926 /* Release child reference for new parent. */
927 put_device(&sch
->dev
);
932 mutex_lock(&sch
->reg_mutex
);
933 rc
= device_move(&cdev
->dev
, &sch
->dev
, DPM_ORDER_PARENT_BEFORE_DEV
);
934 mutex_unlock(&sch
->reg_mutex
);
936 CIO_MSG_EVENT(0, "device_move(0.%x.%04x,0.%x.%04x)=%d\n",
937 cdev
->private->dev_id
.ssid
,
938 cdev
->private->dev_id
.devno
, sch
->schid
.ssid
,
939 sch
->schib
.pmcw
.dev
, rc
);
941 /* Try to reenable the old subchannel. */
942 spin_lock_irq(old_sch
->lock
);
943 cio_enable_subchannel(old_sch
, (u32
)(addr_t
)old_sch
);
944 spin_unlock_irq(old_sch
->lock
);
946 /* Release child reference for new parent. */
947 put_device(&sch
->dev
);
950 /* Clean up old subchannel. */
951 if (!sch_is_pseudo_sch(old_sch
)) {
952 spin_lock_irq(old_sch
->lock
);
953 sch_set_cdev(old_sch
, NULL
);
954 spin_unlock_irq(old_sch
->lock
);
955 css_schedule_eval(old_sch
->schid
);
957 /* Release child reference for old parent. */
958 put_device(&old_sch
->dev
);
959 /* Initialize new subchannel. */
960 spin_lock_irq(sch
->lock
);
961 cdev
->ccwlock
= sch
->lock
;
962 if (!sch_is_pseudo_sch(sch
))
963 sch_set_cdev(sch
, cdev
);
964 spin_unlock_irq(sch
->lock
);
965 if (!sch_is_pseudo_sch(sch
))
966 css_update_ssd_info(sch
);
970 static int ccw_device_move_to_orph(struct ccw_device
*cdev
)
972 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
973 struct channel_subsystem
*css
= to_css(sch
->dev
.parent
);
975 return ccw_device_move_to_sch(cdev
, css
->pseudo_subchannel
);
978 static void io_subchannel_irq(struct subchannel
*sch
)
980 struct ccw_device
*cdev
;
982 cdev
= sch_get_cdev(sch
);
984 CIO_TRACE_EVENT(6, "IRQ");
985 CIO_TRACE_EVENT(6, dev_name(&sch
->dev
));
987 dev_fsm_event(cdev
, DEV_EVENT_INTERRUPT
);
989 inc_irq_stat(IRQIO_CIO
);
992 void io_subchannel_init_config(struct subchannel
*sch
)
994 memset(&sch
->config
, 0, sizeof(sch
->config
));
995 sch
->config
.csense
= 1;
998 static void io_subchannel_init_fields(struct subchannel
*sch
)
1000 if (cio_is_console(sch
->schid
))
1003 sch
->opm
= chp_get_sch_opm(sch
);
1004 sch
->lpm
= sch
->schib
.pmcw
.pam
& sch
->opm
;
1005 sch
->isc
= cio_is_console(sch
->schid
) ? CONSOLE_ISC
: IO_SCH_ISC
;
1007 CIO_MSG_EVENT(6, "Detected device %04x on subchannel 0.%x.%04X"
1008 " - PIM = %02X, PAM = %02X, POM = %02X\n",
1009 sch
->schib
.pmcw
.dev
, sch
->schid
.ssid
,
1010 sch
->schid
.sch_no
, sch
->schib
.pmcw
.pim
,
1011 sch
->schib
.pmcw
.pam
, sch
->schib
.pmcw
.pom
);
1013 io_subchannel_init_config(sch
);
1017 * Note: We always return 0 so that we bind to the device even on error.
1018 * This is needed so that our remove function is called on unregister.
1020 static int io_subchannel_probe(struct subchannel
*sch
)
1022 struct io_subchannel_private
*io_priv
;
1023 struct ccw_device
*cdev
;
1026 if (cio_is_console(sch
->schid
)) {
1027 rc
= sysfs_create_group(&sch
->dev
.kobj
,
1028 &io_subchannel_attr_group
);
1030 CIO_MSG_EVENT(0, "Failed to create io subchannel "
1031 "attributes for subchannel "
1032 "0.%x.%04x (rc=%d)\n",
1033 sch
->schid
.ssid
, sch
->schid
.sch_no
, rc
);
1035 * The console subchannel already has an associated ccw_device.
1036 * Throw the delayed uevent for the subchannel, register
1037 * the ccw_device and exit.
1039 dev_set_uevent_suppress(&sch
->dev
, 0);
1040 kobject_uevent(&sch
->dev
.kobj
, KOBJ_ADD
);
1041 cdev
= sch_get_cdev(sch
);
1042 rc
= ccw_device_add(cdev
);
1044 /* Release online reference. */
1045 put_device(&cdev
->dev
);
1048 if (atomic_dec_and_test(&ccw_device_init_count
))
1049 wake_up(&ccw_device_init_wq
);
1052 io_subchannel_init_fields(sch
);
1053 rc
= cio_commit_config(sch
);
1056 rc
= sysfs_create_group(&sch
->dev
.kobj
,
1057 &io_subchannel_attr_group
);
1060 /* Allocate I/O subchannel private data. */
1061 io_priv
= kzalloc(sizeof(*io_priv
), GFP_KERNEL
| GFP_DMA
);
1065 set_io_private(sch
, io_priv
);
1066 css_schedule_eval(sch
->schid
);
1070 spin_lock_irq(sch
->lock
);
1071 css_sched_sch_todo(sch
, SCH_TODO_UNREG
);
1072 spin_unlock_irq(sch
->lock
);
1076 static int io_subchannel_remove(struct subchannel
*sch
)
1078 struct io_subchannel_private
*io_priv
= to_io_private(sch
);
1079 struct ccw_device
*cdev
;
1081 cdev
= sch_get_cdev(sch
);
1085 ccw_device_unregister(cdev
);
1086 spin_lock_irq(sch
->lock
);
1087 sch_set_cdev(sch
, NULL
);
1088 set_io_private(sch
, NULL
);
1089 spin_unlock_irq(sch
->lock
);
1092 sysfs_remove_group(&sch
->dev
.kobj
, &io_subchannel_attr_group
);
1096 static void io_subchannel_verify(struct subchannel
*sch
)
1098 struct ccw_device
*cdev
;
1100 cdev
= sch_get_cdev(sch
);
1102 dev_fsm_event(cdev
, DEV_EVENT_VERIFY
);
1105 static void io_subchannel_terminate_path(struct subchannel
*sch
, u8 mask
)
1107 struct ccw_device
*cdev
;
1109 cdev
= sch_get_cdev(sch
);
1112 if (cio_update_schib(sch
))
1114 /* Check for I/O on path. */
1115 if (scsw_actl(&sch
->schib
.scsw
) == 0 || sch
->schib
.pmcw
.lpum
!= mask
)
1117 if (cdev
->private->state
== DEV_STATE_ONLINE
) {
1118 ccw_device_kill_io(cdev
);
1124 /* Trigger path verification. */
1125 dev_fsm_event(cdev
, DEV_EVENT_VERIFY
);
1129 dev_fsm_event(cdev
, DEV_EVENT_NOTOPER
);
1132 static int io_subchannel_chp_event(struct subchannel
*sch
,
1133 struct chp_link
*link
, int event
)
1135 struct ccw_device
*cdev
= sch_get_cdev(sch
);
1138 mask
= chp_ssd_get_mask(&sch
->ssd_info
, link
);
1146 cdev
->private->path_gone_mask
|= mask
;
1147 io_subchannel_terminate_path(sch
, mask
);
1153 cdev
->private->path_new_mask
|= mask
;
1154 io_subchannel_verify(sch
);
1157 if (cio_update_schib(sch
))
1160 cdev
->private->path_gone_mask
|= mask
;
1161 io_subchannel_terminate_path(sch
, mask
);
1164 if (cio_update_schib(sch
))
1166 sch
->lpm
|= mask
& sch
->opm
;
1168 cdev
->private->path_new_mask
|= mask
;
1169 io_subchannel_verify(sch
);
1175 static void io_subchannel_quiesce(struct subchannel
*sch
)
1177 struct ccw_device
*cdev
;
1180 spin_lock_irq(sch
->lock
);
1181 cdev
= sch_get_cdev(sch
);
1182 if (cio_is_console(sch
->schid
))
1184 if (!sch
->schib
.pmcw
.ena
)
1186 ret
= cio_disable_subchannel(sch
);
1190 cdev
->handler(cdev
, cdev
->private->intparm
, ERR_PTR(-EIO
));
1191 while (ret
== -EBUSY
) {
1192 cdev
->private->state
= DEV_STATE_QUIESCE
;
1193 cdev
->private->iretry
= 255;
1194 ret
= ccw_device_cancel_halt_clear(cdev
);
1195 if (ret
== -EBUSY
) {
1196 ccw_device_set_timeout(cdev
, HZ
/10);
1197 spin_unlock_irq(sch
->lock
);
1198 wait_event(cdev
->private->wait_q
,
1199 cdev
->private->state
!= DEV_STATE_QUIESCE
);
1200 spin_lock_irq(sch
->lock
);
1202 ret
= cio_disable_subchannel(sch
);
1205 spin_unlock_irq(sch
->lock
);
1208 static void io_subchannel_shutdown(struct subchannel
*sch
)
1210 io_subchannel_quiesce(sch
);
1213 static int device_is_disconnected(struct ccw_device
*cdev
)
1217 return (cdev
->private->state
== DEV_STATE_DISCONNECTED
||
1218 cdev
->private->state
== DEV_STATE_DISCONNECTED_SENSE_ID
);
1221 static int recovery_check(struct device
*dev
, void *data
)
1223 struct ccw_device
*cdev
= to_ccwdev(dev
);
1224 struct subchannel
*sch
;
1227 spin_lock_irq(cdev
->ccwlock
);
1228 switch (cdev
->private->state
) {
1229 case DEV_STATE_ONLINE
:
1230 sch
= to_subchannel(cdev
->dev
.parent
);
1231 if ((sch
->schib
.pmcw
.pam
& sch
->opm
) == sch
->vpm
)
1234 case DEV_STATE_DISCONNECTED
:
1235 CIO_MSG_EVENT(3, "recovery: trigger 0.%x.%04x\n",
1236 cdev
->private->dev_id
.ssid
,
1237 cdev
->private->dev_id
.devno
);
1238 dev_fsm_event(cdev
, DEV_EVENT_VERIFY
);
1241 case DEV_STATE_DISCONNECTED_SENSE_ID
:
1245 spin_unlock_irq(cdev
->ccwlock
);
1250 static void recovery_work_func(struct work_struct
*unused
)
1254 bus_for_each_dev(&ccw_bus_type
, NULL
, &redo
, recovery_check
);
1256 spin_lock_irq(&recovery_lock
);
1257 if (!timer_pending(&recovery_timer
)) {
1258 if (recovery_phase
< ARRAY_SIZE(recovery_delay
) - 1)
1260 mod_timer(&recovery_timer
, jiffies
+
1261 recovery_delay
[recovery_phase
] * HZ
);
1263 spin_unlock_irq(&recovery_lock
);
1265 CIO_MSG_EVENT(3, "recovery: end\n");
1268 static DECLARE_WORK(recovery_work
, recovery_work_func
);
1270 static void recovery_func(struct timer_list
*unused
)
1273 * We can't do our recovery in softirq context and it's not
1274 * performance critical, so we schedule it.
1276 schedule_work(&recovery_work
);
1279 void ccw_device_schedule_recovery(void)
1281 unsigned long flags
;
1283 CIO_MSG_EVENT(3, "recovery: schedule\n");
1284 spin_lock_irqsave(&recovery_lock
, flags
);
1285 if (!timer_pending(&recovery_timer
) || (recovery_phase
!= 0)) {
1287 mod_timer(&recovery_timer
, jiffies
+ recovery_delay
[0] * HZ
);
1289 spin_unlock_irqrestore(&recovery_lock
, flags
);
1292 static int purge_fn(struct device
*dev
, void *data
)
1294 struct ccw_device
*cdev
= to_ccwdev(dev
);
1295 struct ccw_dev_id
*id
= &cdev
->private->dev_id
;
1297 spin_lock_irq(cdev
->ccwlock
);
1298 if (is_blacklisted(id
->ssid
, id
->devno
) &&
1299 (cdev
->private->state
== DEV_STATE_OFFLINE
) &&
1300 (atomic_cmpxchg(&cdev
->private->onoff
, 0, 1) == 0)) {
1301 CIO_MSG_EVENT(3, "ccw: purging 0.%x.%04x\n", id
->ssid
,
1303 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG
);
1304 atomic_set(&cdev
->private->onoff
, 0);
1306 spin_unlock_irq(cdev
->ccwlock
);
1307 /* Abort loop in case of pending signal. */
1308 if (signal_pending(current
))
1315 * ccw_purge_blacklisted - purge unused, blacklisted devices
1317 * Unregister all ccw devices that are offline and on the blacklist.
1319 int ccw_purge_blacklisted(void)
1321 CIO_MSG_EVENT(2, "ccw: purging blacklisted devices\n");
1322 bus_for_each_dev(&ccw_bus_type
, NULL
, NULL
, purge_fn
);
1326 void ccw_device_set_disconnected(struct ccw_device
*cdev
)
1330 ccw_device_set_timeout(cdev
, 0);
1331 cdev
->private->flags
.fake_irb
= 0;
1332 cdev
->private->state
= DEV_STATE_DISCONNECTED
;
1334 ccw_device_schedule_recovery();
1337 void ccw_device_set_notoper(struct ccw_device
*cdev
)
1339 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
1341 CIO_TRACE_EVENT(2, "notoper");
1342 CIO_TRACE_EVENT(2, dev_name(&sch
->dev
));
1343 ccw_device_set_timeout(cdev
, 0);
1344 cio_disable_subchannel(sch
);
1345 cdev
->private->state
= DEV_STATE_NOT_OPER
;
1348 enum io_sch_action
{
1352 IO_SCH_UNREG_ATTACH
,
1360 static enum io_sch_action
sch_get_action(struct subchannel
*sch
)
1362 struct ccw_device
*cdev
;
1364 cdev
= sch_get_cdev(sch
);
1365 if (cio_update_schib(sch
)) {
1366 /* Not operational. */
1368 return IO_SCH_UNREG
;
1369 if (ccw_device_notify(cdev
, CIO_GONE
) != NOTIFY_OK
)
1370 return IO_SCH_UNREG
;
1371 return IO_SCH_ORPH_UNREG
;
1375 return IO_SCH_ATTACH
;
1376 if (sch
->schib
.pmcw
.dev
!= cdev
->private->dev_id
.devno
) {
1377 if (ccw_device_notify(cdev
, CIO_GONE
) != NOTIFY_OK
)
1378 return IO_SCH_UNREG_ATTACH
;
1379 return IO_SCH_ORPH_ATTACH
;
1381 if ((sch
->schib
.pmcw
.pam
& sch
->opm
) == 0) {
1382 if (ccw_device_notify(cdev
, CIO_NO_PATH
) != NOTIFY_OK
)
1383 return IO_SCH_UNREG
;
1386 if (device_is_disconnected(cdev
))
1387 return IO_SCH_REPROBE
;
1388 if (cdev
->online
&& !cdev
->private->flags
.resuming
)
1389 return IO_SCH_VERIFY
;
1390 if (cdev
->private->state
== DEV_STATE_NOT_OPER
)
1391 return IO_SCH_UNREG_ATTACH
;
1396 * io_subchannel_sch_event - process subchannel event
1398 * @process: non-zero if function is called in process context
1400 * An unspecified event occurred for this subchannel. Adjust data according
1401 * to the current operational state of the subchannel and device. Return
1402 * zero when the event has been handled sufficiently or -EAGAIN when this
1403 * function should be called again in process context.
1405 static int io_subchannel_sch_event(struct subchannel
*sch
, int process
)
1407 unsigned long flags
;
1408 struct ccw_device
*cdev
;
1409 struct ccw_dev_id dev_id
;
1410 enum io_sch_action action
;
1413 spin_lock_irqsave(sch
->lock
, flags
);
1414 if (!device_is_registered(&sch
->dev
))
1416 if (work_pending(&sch
->todo_work
))
1418 cdev
= sch_get_cdev(sch
);
1419 if (cdev
&& work_pending(&cdev
->private->todo_work
))
1421 action
= sch_get_action(sch
);
1422 CIO_MSG_EVENT(2, "event: sch 0.%x.%04x, process=%d, action=%d\n",
1423 sch
->schid
.ssid
, sch
->schid
.sch_no
, process
,
1425 /* Perform immediate actions while holding the lock. */
1427 case IO_SCH_REPROBE
:
1428 /* Trigger device recognition. */
1429 ccw_device_trigger_reprobe(cdev
);
1433 /* Trigger path verification. */
1434 io_subchannel_verify(sch
);
1438 ccw_device_set_disconnected(cdev
);
1441 case IO_SCH_ORPH_UNREG
:
1442 case IO_SCH_ORPH_ATTACH
:
1443 ccw_device_set_disconnected(cdev
);
1445 case IO_SCH_UNREG_ATTACH
:
1449 if (cdev
->private->state
== DEV_STATE_SENSE_ID
) {
1451 * Note: delayed work triggered by this event
1452 * and repeated calls to sch_event are synchronized
1453 * by the above check for work_pending(cdev).
1455 dev_fsm_event(cdev
, DEV_EVENT_NOTOPER
);
1457 ccw_device_set_notoper(cdev
);
1465 spin_unlock_irqrestore(sch
->lock
, flags
);
1466 /* All other actions require process context. */
1469 /* Handle attached ccw device. */
1471 case IO_SCH_ORPH_UNREG
:
1472 case IO_SCH_ORPH_ATTACH
:
1473 /* Move ccw device to orphanage. */
1474 rc
= ccw_device_move_to_orph(cdev
);
1478 case IO_SCH_UNREG_ATTACH
:
1479 spin_lock_irqsave(sch
->lock
, flags
);
1480 if (cdev
->private->flags
.resuming
) {
1481 /* Device will be handled later. */
1485 sch_set_cdev(sch
, NULL
);
1486 spin_unlock_irqrestore(sch
->lock
, flags
);
1487 /* Unregister ccw device. */
1488 ccw_device_unregister(cdev
);
1493 /* Handle subchannel. */
1495 case IO_SCH_ORPH_UNREG
:
1497 if (!cdev
|| !cdev
->private->flags
.resuming
)
1498 css_sch_device_unregister(sch
);
1500 case IO_SCH_ORPH_ATTACH
:
1501 case IO_SCH_UNREG_ATTACH
:
1503 dev_id
.ssid
= sch
->schid
.ssid
;
1504 dev_id
.devno
= sch
->schib
.pmcw
.dev
;
1505 cdev
= get_ccwdev_by_dev_id(&dev_id
);
1507 sch_create_and_recog_new_device(sch
);
1510 rc
= ccw_device_move_to_sch(cdev
, sch
);
1512 /* Release reference from get_ccwdev_by_dev_id() */
1513 put_device(&cdev
->dev
);
1516 spin_lock_irqsave(sch
->lock
, flags
);
1517 ccw_device_trigger_reprobe(cdev
);
1518 spin_unlock_irqrestore(sch
->lock
, flags
);
1519 /* Release reference from get_ccwdev_by_dev_id() */
1520 put_device(&cdev
->dev
);
1528 spin_unlock_irqrestore(sch
->lock
, flags
);
1533 static void ccw_device_set_int_class(struct ccw_device
*cdev
)
1535 struct ccw_driver
*cdrv
= cdev
->drv
;
1537 /* Note: we interpret class 0 in this context as an uninitialized
1538 * field since it translates to a non-I/O interrupt class. */
1539 if (cdrv
->int_class
!= 0)
1540 cdev
->private->int_class
= cdrv
->int_class
;
1542 cdev
->private->int_class
= IRQIO_CIO
;
1545 #ifdef CONFIG_CCW_CONSOLE
1546 int __init
ccw_device_enable_console(struct ccw_device
*cdev
)
1548 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
1551 if (!cdev
->drv
|| !cdev
->handler
)
1554 io_subchannel_init_fields(sch
);
1555 rc
= cio_commit_config(sch
);
1558 sch
->driver
= &io_subchannel_driver
;
1559 io_subchannel_recog(cdev
, sch
);
1560 /* Now wait for the async. recognition to come to an end. */
1561 spin_lock_irq(cdev
->ccwlock
);
1562 while (!dev_fsm_final_state(cdev
))
1563 ccw_device_wait_idle(cdev
);
1565 /* Hold on to an extra reference while device is online. */
1566 get_device(&cdev
->dev
);
1567 rc
= ccw_device_online(cdev
);
1571 while (!dev_fsm_final_state(cdev
))
1572 ccw_device_wait_idle(cdev
);
1574 if (cdev
->private->state
== DEV_STATE_ONLINE
)
1579 spin_unlock_irq(cdev
->ccwlock
);
1580 if (rc
) /* Give up online reference since onlining failed. */
1581 put_device(&cdev
->dev
);
1585 struct ccw_device
* __init
ccw_device_create_console(struct ccw_driver
*drv
)
1587 struct io_subchannel_private
*io_priv
;
1588 struct ccw_device
*cdev
;
1589 struct subchannel
*sch
;
1591 sch
= cio_probe_console();
1593 return ERR_CAST(sch
);
1595 io_priv
= kzalloc(sizeof(*io_priv
), GFP_KERNEL
| GFP_DMA
);
1597 put_device(&sch
->dev
);
1598 return ERR_PTR(-ENOMEM
);
1600 set_io_private(sch
, io_priv
);
1601 cdev
= io_subchannel_create_ccwdev(sch
);
1603 put_device(&sch
->dev
);
1608 ccw_device_set_int_class(cdev
);
1612 void __init
ccw_device_destroy_console(struct ccw_device
*cdev
)
1614 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
1615 struct io_subchannel_private
*io_priv
= to_io_private(sch
);
1617 set_io_private(sch
, NULL
);
1618 put_device(&sch
->dev
);
1619 put_device(&cdev
->dev
);
1624 * ccw_device_wait_idle() - busy wait for device to become idle
1627 * Poll until activity control is zero, that is, no function or data
1628 * transfer is pending/active.
1629 * Called with device lock being held.
1631 void ccw_device_wait_idle(struct ccw_device
*cdev
)
1633 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
1637 if (sch
->schib
.scsw
.cmd
.actl
== 0)
1643 static int ccw_device_pm_restore(struct device
*dev
);
1645 int ccw_device_force_console(struct ccw_device
*cdev
)
1647 return ccw_device_pm_restore(&cdev
->dev
);
1649 EXPORT_SYMBOL_GPL(ccw_device_force_console
);
1653 * get ccw_device matching the busid, but only if owned by cdrv
1656 __ccwdev_check_busid(struct device
*dev
, void *id
)
1662 return (strcmp(bus_id
, dev_name(dev
)) == 0);
1667 * get_ccwdev_by_busid() - obtain device from a bus id
1668 * @cdrv: driver the device is owned by
1669 * @bus_id: bus id of the device to be searched
1671 * This function searches all devices owned by @cdrv for a device with a bus
1672 * id matching @bus_id.
1674 * If a match is found, its reference count of the found device is increased
1675 * and it is returned; else %NULL is returned.
1677 struct ccw_device
*get_ccwdev_by_busid(struct ccw_driver
*cdrv
,
1682 dev
= driver_find_device(&cdrv
->driver
, NULL
, (void *)bus_id
,
1683 __ccwdev_check_busid
);
1685 return dev
? to_ccwdev(dev
) : NULL
;
1688 /************************** device driver handling ************************/
1690 /* This is the implementation of the ccw_driver class. The probe, remove
1691 * and release methods are initially very similar to the device_driver
1692 * implementations, with the difference that they have ccw_device
1695 * A ccw driver also contains the information that is needed for
1699 ccw_device_probe (struct device
*dev
)
1701 struct ccw_device
*cdev
= to_ccwdev(dev
);
1702 struct ccw_driver
*cdrv
= to_ccwdrv(dev
->driver
);
1705 cdev
->drv
= cdrv
; /* to let the driver call _set_online */
1706 ccw_device_set_int_class(cdev
);
1707 ret
= cdrv
->probe
? cdrv
->probe(cdev
) : -ENODEV
;
1710 cdev
->private->int_class
= IRQIO_CIO
;
1717 static int ccw_device_remove(struct device
*dev
)
1719 struct ccw_device
*cdev
= to_ccwdev(dev
);
1720 struct ccw_driver
*cdrv
= cdev
->drv
;
1721 struct subchannel
*sch
;
1727 spin_lock_irq(cdev
->ccwlock
);
1730 ret
= ccw_device_offline(cdev
);
1731 spin_unlock_irq(cdev
->ccwlock
);
1733 wait_event(cdev
->private->wait_q
,
1734 dev_fsm_final_state(cdev
));
1736 CIO_MSG_EVENT(0, "ccw_device_offline returned %d, "
1737 "device 0.%x.%04x\n",
1738 ret
, cdev
->private->dev_id
.ssid
,
1739 cdev
->private->dev_id
.devno
);
1740 /* Give up reference obtained in ccw_device_set_online(). */
1741 put_device(&cdev
->dev
);
1742 spin_lock_irq(cdev
->ccwlock
);
1744 ccw_device_set_timeout(cdev
, 0);
1746 cdev
->private->int_class
= IRQIO_CIO
;
1747 sch
= to_subchannel(cdev
->dev
.parent
);
1748 spin_unlock_irq(cdev
->ccwlock
);
1749 io_subchannel_quiesce(sch
);
1750 __disable_cmf(cdev
);
1755 static void ccw_device_shutdown(struct device
*dev
)
1757 struct ccw_device
*cdev
;
1759 cdev
= to_ccwdev(dev
);
1760 if (cdev
->drv
&& cdev
->drv
->shutdown
)
1761 cdev
->drv
->shutdown(cdev
);
1762 __disable_cmf(cdev
);
1765 static int ccw_device_pm_prepare(struct device
*dev
)
1767 struct ccw_device
*cdev
= to_ccwdev(dev
);
1769 if (work_pending(&cdev
->private->todo_work
))
1771 /* Fail while device is being set online/offline. */
1772 if (atomic_read(&cdev
->private->onoff
))
1775 if (cdev
->online
&& cdev
->drv
&& cdev
->drv
->prepare
)
1776 return cdev
->drv
->prepare(cdev
);
1781 static void ccw_device_pm_complete(struct device
*dev
)
1783 struct ccw_device
*cdev
= to_ccwdev(dev
);
1785 if (cdev
->online
&& cdev
->drv
&& cdev
->drv
->complete
)
1786 cdev
->drv
->complete(cdev
);
1789 static int ccw_device_pm_freeze(struct device
*dev
)
1791 struct ccw_device
*cdev
= to_ccwdev(dev
);
1792 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
1793 int ret
, cm_enabled
;
1795 /* Fail suspend while device is in transistional state. */
1796 if (!dev_fsm_final_state(cdev
))
1800 if (cdev
->drv
&& cdev
->drv
->freeze
) {
1801 ret
= cdev
->drv
->freeze(cdev
);
1806 spin_lock_irq(sch
->lock
);
1807 cm_enabled
= cdev
->private->cmb
!= NULL
;
1808 spin_unlock_irq(sch
->lock
);
1810 /* Don't have the css write on memory. */
1811 ret
= ccw_set_cmf(cdev
, 0);
1815 /* From here on, disallow device driver I/O. */
1816 spin_lock_irq(sch
->lock
);
1817 ret
= cio_disable_subchannel(sch
);
1818 spin_unlock_irq(sch
->lock
);
1823 static int ccw_device_pm_thaw(struct device
*dev
)
1825 struct ccw_device
*cdev
= to_ccwdev(dev
);
1826 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
1827 int ret
, cm_enabled
;
1832 spin_lock_irq(sch
->lock
);
1833 /* Allow device driver I/O again. */
1834 ret
= cio_enable_subchannel(sch
, (u32
)(addr_t
)sch
);
1835 cm_enabled
= cdev
->private->cmb
!= NULL
;
1836 spin_unlock_irq(sch
->lock
);
1841 ret
= ccw_set_cmf(cdev
, 1);
1846 if (cdev
->drv
&& cdev
->drv
->thaw
)
1847 ret
= cdev
->drv
->thaw(cdev
);
1852 static void __ccw_device_pm_restore(struct ccw_device
*cdev
)
1854 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
1856 spin_lock_irq(sch
->lock
);
1857 if (cio_is_console(sch
->schid
)) {
1858 cio_enable_subchannel(sch
, (u32
)(addr_t
)sch
);
1862 * While we were sleeping, devices may have gone or become
1863 * available again. Kick re-detection.
1865 cdev
->private->flags
.resuming
= 1;
1866 cdev
->private->path_new_mask
= LPM_ANYPATH
;
1867 css_sched_sch_todo(sch
, SCH_TODO_EVAL
);
1868 spin_unlock_irq(sch
->lock
);
1869 css_wait_for_slow_path();
1871 /* cdev may have been moved to a different subchannel. */
1872 sch
= to_subchannel(cdev
->dev
.parent
);
1873 spin_lock_irq(sch
->lock
);
1874 if (cdev
->private->state
!= DEV_STATE_ONLINE
&&
1875 cdev
->private->state
!= DEV_STATE_OFFLINE
)
1878 ccw_device_recognition(cdev
);
1879 spin_unlock_irq(sch
->lock
);
1880 wait_event(cdev
->private->wait_q
, dev_fsm_final_state(cdev
) ||
1881 cdev
->private->state
== DEV_STATE_DISCONNECTED
);
1882 spin_lock_irq(sch
->lock
);
1885 cdev
->private->flags
.resuming
= 0;
1886 spin_unlock_irq(sch
->lock
);
1889 static int resume_handle_boxed(struct ccw_device
*cdev
)
1891 cdev
->private->state
= DEV_STATE_BOXED
;
1892 if (ccw_device_notify(cdev
, CIO_BOXED
) == NOTIFY_OK
)
1894 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG
);
1898 static int resume_handle_disc(struct ccw_device
*cdev
)
1900 cdev
->private->state
= DEV_STATE_DISCONNECTED
;
1901 if (ccw_device_notify(cdev
, CIO_GONE
) == NOTIFY_OK
)
1903 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG
);
1907 static int ccw_device_pm_restore(struct device
*dev
)
1909 struct ccw_device
*cdev
= to_ccwdev(dev
);
1910 struct subchannel
*sch
;
1913 __ccw_device_pm_restore(cdev
);
1914 sch
= to_subchannel(cdev
->dev
.parent
);
1915 spin_lock_irq(sch
->lock
);
1916 if (cio_is_console(sch
->schid
))
1919 /* check recognition results */
1920 switch (cdev
->private->state
) {
1921 case DEV_STATE_OFFLINE
:
1922 case DEV_STATE_ONLINE
:
1923 cdev
->private->flags
.donotify
= 0;
1925 case DEV_STATE_BOXED
:
1926 ret
= resume_handle_boxed(cdev
);
1931 ret
= resume_handle_disc(cdev
);
1936 /* check if the device type has changed */
1937 if (!ccw_device_test_sense_data(cdev
)) {
1938 ccw_device_update_sense_data(cdev
);
1939 ccw_device_sched_todo(cdev
, CDEV_TODO_REBIND
);
1946 if (ccw_device_online(cdev
)) {
1947 ret
= resume_handle_disc(cdev
);
1952 spin_unlock_irq(sch
->lock
);
1953 wait_event(cdev
->private->wait_q
, dev_fsm_final_state(cdev
));
1954 spin_lock_irq(sch
->lock
);
1956 if (ccw_device_notify(cdev
, CIO_OPER
) == NOTIFY_BAD
) {
1957 ccw_device_sched_todo(cdev
, CDEV_TODO_UNREG
);
1962 /* reenable cmf, if needed */
1963 if (cdev
->private->cmb
) {
1964 spin_unlock_irq(sch
->lock
);
1965 ret
= ccw_set_cmf(cdev
, 1);
1966 spin_lock_irq(sch
->lock
);
1968 CIO_MSG_EVENT(2, "resume: cdev 0.%x.%04x: cmf failed "
1969 "(rc=%d)\n", cdev
->private->dev_id
.ssid
,
1970 cdev
->private->dev_id
.devno
, ret
);
1976 spin_unlock_irq(sch
->lock
);
1977 if (cdev
->online
&& cdev
->drv
&& cdev
->drv
->restore
)
1978 ret
= cdev
->drv
->restore(cdev
);
1982 spin_unlock_irq(sch
->lock
);
1986 static const struct dev_pm_ops ccw_pm_ops
= {
1987 .prepare
= ccw_device_pm_prepare
,
1988 .complete
= ccw_device_pm_complete
,
1989 .freeze
= ccw_device_pm_freeze
,
1990 .thaw
= ccw_device_pm_thaw
,
1991 .restore
= ccw_device_pm_restore
,
1994 static struct bus_type ccw_bus_type
= {
1996 .match
= ccw_bus_match
,
1997 .uevent
= ccw_uevent
,
1998 .probe
= ccw_device_probe
,
1999 .remove
= ccw_device_remove
,
2000 .shutdown
= ccw_device_shutdown
,
2005 * ccw_driver_register() - register a ccw driver
2006 * @cdriver: driver to be registered
2008 * This function is mainly a wrapper around driver_register().
2010 * %0 on success and a negative error value on failure.
2012 int ccw_driver_register(struct ccw_driver
*cdriver
)
2014 struct device_driver
*drv
= &cdriver
->driver
;
2016 drv
->bus
= &ccw_bus_type
;
2018 return driver_register(drv
);
2022 * ccw_driver_unregister() - deregister a ccw driver
2023 * @cdriver: driver to be deregistered
2025 * This function is mainly a wrapper around driver_unregister().
2027 void ccw_driver_unregister(struct ccw_driver
*cdriver
)
2029 driver_unregister(&cdriver
->driver
);
2032 static void ccw_device_todo(struct work_struct
*work
)
2034 struct ccw_device_private
*priv
;
2035 struct ccw_device
*cdev
;
2036 struct subchannel
*sch
;
2037 enum cdev_todo todo
;
2039 priv
= container_of(work
, struct ccw_device_private
, todo_work
);
2041 sch
= to_subchannel(cdev
->dev
.parent
);
2042 /* Find out todo. */
2043 spin_lock_irq(cdev
->ccwlock
);
2045 priv
->todo
= CDEV_TODO_NOTHING
;
2046 CIO_MSG_EVENT(4, "cdev_todo: cdev=0.%x.%04x todo=%d\n",
2047 priv
->dev_id
.ssid
, priv
->dev_id
.devno
, todo
);
2048 spin_unlock_irq(cdev
->ccwlock
);
2051 case CDEV_TODO_ENABLE_CMF
:
2054 case CDEV_TODO_REBIND
:
2055 ccw_device_do_unbind_bind(cdev
);
2057 case CDEV_TODO_REGISTER
:
2058 io_subchannel_register(cdev
);
2060 case CDEV_TODO_UNREG_EVAL
:
2061 if (!sch_is_pseudo_sch(sch
))
2062 css_schedule_eval(sch
->schid
);
2064 case CDEV_TODO_UNREG
:
2065 if (sch_is_pseudo_sch(sch
))
2066 ccw_device_unregister(cdev
);
2068 ccw_device_call_sch_unregister(cdev
);
2073 /* Release workqueue ref. */
2074 put_device(&cdev
->dev
);
2078 * ccw_device_sched_todo - schedule ccw device operation
2082 * Schedule the operation identified by @todo to be performed on the slow path
2083 * workqueue. Do nothing if another operation with higher priority is already
2084 * scheduled. Needs to be called with ccwdev lock held.
2086 void ccw_device_sched_todo(struct ccw_device
*cdev
, enum cdev_todo todo
)
2088 CIO_MSG_EVENT(4, "cdev_todo: sched cdev=0.%x.%04x todo=%d\n",
2089 cdev
->private->dev_id
.ssid
, cdev
->private->dev_id
.devno
,
2091 if (cdev
->private->todo
>= todo
)
2093 cdev
->private->todo
= todo
;
2094 /* Get workqueue ref. */
2095 if (!get_device(&cdev
->dev
))
2097 if (!queue_work(cio_work_q
, &cdev
->private->todo_work
)) {
2098 /* Already queued, release workqueue ref. */
2099 put_device(&cdev
->dev
);
2104 * ccw_device_siosl() - initiate logging
2107 * This function is used to invoke model-dependent logging within the channel
2110 int ccw_device_siosl(struct ccw_device
*cdev
)
2112 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
2114 return chsc_siosl(sch
->schid
);
2116 EXPORT_SYMBOL_GPL(ccw_device_siosl
);
2118 EXPORT_SYMBOL(ccw_device_set_online
);
2119 EXPORT_SYMBOL(ccw_device_set_offline
);
2120 EXPORT_SYMBOL(ccw_driver_register
);
2121 EXPORT_SYMBOL(ccw_driver_unregister
);
2122 EXPORT_SYMBOL(get_ccwdev_by_busid
);