2 * driver for channel subsystem
4 * Copyright IBM Corp. 2002, 2010
6 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
7 * Cornelia Huck (cornelia.huck@de.ibm.com)
10 #define KMSG_COMPONENT "cio"
11 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/device.h>
16 #include <linux/slab.h>
17 #include <linux/errno.h>
18 #include <linux/list.h>
19 #include <linux/reboot.h>
20 #include <linux/suspend.h>
21 #include <linux/proc_fs.h>
27 #include "cio_debug.h"
34 int css_init_done = 0;
37 struct channel_subsystem *channel_subsystems[__MAX_CSSID + 1];
38 static struct bus_type css_bus_type;
41 for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *data)
43 struct subchannel_id schid;
46 init_subchannel_id(&schid);
50 ret = fn(schid, data);
53 } while (schid.sch_no++ < __MAX_SUBCHANNEL);
55 } while (schid.ssid++ < max_ssid);
62 int (*fn_known_sch)(struct subchannel *, void *);
63 int (*fn_unknown_sch)(struct subchannel_id, void *);
66 static int call_fn_known_sch(struct device *dev, void *data)
68 struct subchannel *sch = to_subchannel(dev);
69 struct cb_data *cb = data;
72 idset_sch_del(cb->set, sch->schid);
74 rc = cb->fn_known_sch(sch, cb->data);
78 static int call_fn_unknown_sch(struct subchannel_id schid, void *data)
80 struct cb_data *cb = data;
83 if (idset_sch_contains(cb->set, schid))
84 rc = cb->fn_unknown_sch(schid, cb->data);
88 static int call_fn_all_sch(struct subchannel_id schid, void *data)
90 struct cb_data *cb = data;
91 struct subchannel *sch;
94 sch = get_subchannel_by_schid(schid);
97 rc = cb->fn_known_sch(sch, cb->data);
98 put_device(&sch->dev);
100 if (cb->fn_unknown_sch)
101 rc = cb->fn_unknown_sch(schid, cb->data);
107 int for_each_subchannel_staged(int (*fn_known)(struct subchannel *, void *),
108 int (*fn_unknown)(struct subchannel_id,
115 cb.fn_known_sch = fn_known;
116 cb.fn_unknown_sch = fn_unknown;
118 cb.set = idset_sch_new();
120 /* fall back to brute force scanning in case of oom */
121 return for_each_subchannel(call_fn_all_sch, &cb);
125 /* Process registered subchannels. */
126 rc = bus_for_each_dev(&css_bus_type, NULL, &cb, call_fn_known_sch);
129 /* Process unregistered subchannels. */
131 rc = for_each_subchannel(call_fn_unknown_sch, &cb);
138 static void css_sch_todo(struct work_struct *work);
140 static struct subchannel *
141 css_alloc_subchannel(struct subchannel_id schid)
143 struct subchannel *sch;
146 sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
148 return ERR_PTR(-ENOMEM);
149 ret = cio_validate_subchannel (sch, schid);
154 INIT_WORK(&sch->todo_work, css_sch_todo);
159 css_subchannel_release(struct device *dev)
161 struct subchannel *sch;
163 sch = to_subchannel(dev);
164 if (!cio_is_console(sch->schid)) {
165 /* Reset intparm to zeroes. */
166 sch->config.intparm = 0;
167 cio_commit_config(sch);
173 static int css_sch_device_register(struct subchannel *sch)
177 mutex_lock(&sch->reg_mutex);
178 dev_set_name(&sch->dev, "0.%x.%04x", sch->schid.ssid,
180 ret = device_register(&sch->dev);
181 mutex_unlock(&sch->reg_mutex);
186 * css_sch_device_unregister - unregister a subchannel
187 * @sch: subchannel to be unregistered
189 void css_sch_device_unregister(struct subchannel *sch)
191 mutex_lock(&sch->reg_mutex);
192 if (device_is_registered(&sch->dev))
193 device_unregister(&sch->dev);
194 mutex_unlock(&sch->reg_mutex);
196 EXPORT_SYMBOL_GPL(css_sch_device_unregister);
198 static void ssd_from_pmcw(struct chsc_ssd_info *ssd, struct pmcw *pmcw)
203 memset(ssd, 0, sizeof(struct chsc_ssd_info));
204 ssd->path_mask = pmcw->pim;
205 for (i = 0; i < 8; i++) {
207 if (pmcw->pim & mask) {
208 chp_id_init(&ssd->chpid[i]);
209 ssd->chpid[i].id = pmcw->chpid[i];
214 static void ssd_register_chpids(struct chsc_ssd_info *ssd)
219 for (i = 0; i < 8; i++) {
221 if (ssd->path_mask & mask)
222 if (!chp_is_registered(ssd->chpid[i]))
223 chp_new(ssd->chpid[i]);
227 void css_update_ssd_info(struct subchannel *sch)
231 if (cio_is_console(sch->schid)) {
232 /* Console is initialized too early for functions requiring
233 * memory allocation. */
234 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
236 ret = chsc_get_ssd_info(sch->schid, &sch->ssd_info);
238 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
239 ssd_register_chpids(&sch->ssd_info);
243 static ssize_t type_show(struct device *dev, struct device_attribute *attr,
246 struct subchannel *sch = to_subchannel(dev);
248 return sprintf(buf, "%01x\n", sch->st);
251 static DEVICE_ATTR(type, 0444, type_show, NULL);
253 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
256 struct subchannel *sch = to_subchannel(dev);
258 return sprintf(buf, "css:t%01X\n", sch->st);
261 static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
263 static struct attribute *subch_attrs[] = {
265 &dev_attr_modalias.attr,
269 static struct attribute_group subch_attr_group = {
270 .attrs = subch_attrs,
273 static const struct attribute_group *default_subch_attr_groups[] = {
278 static int css_register_subchannel(struct subchannel *sch)
282 /* Initialize the subchannel structure */
283 sch->dev.parent = &channel_subsystems[0]->device;
284 sch->dev.bus = &css_bus_type;
285 sch->dev.release = &css_subchannel_release;
286 sch->dev.groups = default_subch_attr_groups;
288 * We don't want to generate uevents for I/O subchannels that don't
289 * have a working ccw device behind them since they will be
290 * unregistered before they can be used anyway, so we delay the add
291 * uevent until after device recognition was successful.
292 * Note that we suppress the uevent for all subchannel types;
293 * the subchannel driver can decide itself when it wants to inform
294 * userspace of its existence.
296 dev_set_uevent_suppress(&sch->dev, 1);
297 css_update_ssd_info(sch);
298 /* make it known to the system */
299 ret = css_sch_device_register(sch);
301 CIO_MSG_EVENT(0, "Could not register sch 0.%x.%04x: %d\n",
302 sch->schid.ssid, sch->schid.sch_no, ret);
307 * No driver matched. Generate the uevent now so that
308 * a fitting driver module may be loaded based on the
311 dev_set_uevent_suppress(&sch->dev, 0);
312 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
317 int css_probe_device(struct subchannel_id schid)
320 struct subchannel *sch;
322 if (cio_is_console(schid))
323 sch = cio_get_console_subchannel();
325 sch = css_alloc_subchannel(schid);
329 ret = css_register_subchannel(sch);
331 if (!cio_is_console(schid))
332 put_device(&sch->dev);
338 check_subchannel(struct device * dev, void * data)
340 struct subchannel *sch;
341 struct subchannel_id *schid = data;
343 sch = to_subchannel(dev);
344 return schid_equal(&sch->schid, schid);
348 get_subchannel_by_schid(struct subchannel_id schid)
352 dev = bus_find_device(&css_bus_type, NULL,
353 &schid, check_subchannel);
355 return dev ? to_subchannel(dev) : NULL;
359 * css_sch_is_valid() - check if a subchannel is valid
360 * @schib: subchannel information block for the subchannel
362 int css_sch_is_valid(struct schib *schib)
364 if ((schib->pmcw.st == SUBCHANNEL_TYPE_IO) && !schib->pmcw.dnv)
366 if ((schib->pmcw.st == SUBCHANNEL_TYPE_MSG) && !schib->pmcw.w)
370 EXPORT_SYMBOL_GPL(css_sch_is_valid);
372 static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
377 /* Will be done on the slow path. */
380 if (stsch_err(schid, &schib)) {
381 /* Subchannel is not provided. */
384 if (!css_sch_is_valid(&schib)) {
385 /* Unusable - ignore. */
388 CIO_MSG_EVENT(4, "event: sch 0.%x.%04x, new\n", schid.ssid,
391 return css_probe_device(schid);
394 static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
399 if (sch->driver->sch_event)
400 ret = sch->driver->sch_event(sch, slow);
403 "Got subchannel machine check but "
404 "no sch_event handler provided.\n");
406 if (ret != 0 && ret != -EAGAIN) {
407 CIO_MSG_EVENT(2, "eval: sch 0.%x.%04x, rc=%d\n",
408 sch->schid.ssid, sch->schid.sch_no, ret);
413 static void css_evaluate_subchannel(struct subchannel_id schid, int slow)
415 struct subchannel *sch;
418 sch = get_subchannel_by_schid(schid);
420 ret = css_evaluate_known_subchannel(sch, slow);
421 put_device(&sch->dev);
423 ret = css_evaluate_new_subchannel(schid, slow);
425 css_schedule_eval(schid);
429 * css_sched_sch_todo - schedule a subchannel operation
433 * Schedule the operation identified by @todo to be performed on the slow path
434 * workqueue. Do nothing if another operation with higher priority is already
435 * scheduled. Needs to be called with subchannel lock held.
437 void css_sched_sch_todo(struct subchannel *sch, enum sch_todo todo)
439 CIO_MSG_EVENT(4, "sch_todo: sched sch=0.%x.%04x todo=%d\n",
440 sch->schid.ssid, sch->schid.sch_no, todo);
441 if (sch->todo >= todo)
443 /* Get workqueue ref. */
444 if (!get_device(&sch->dev))
447 if (!queue_work(cio_work_q, &sch->todo_work)) {
448 /* Already queued, release workqueue ref. */
449 put_device(&sch->dev);
452 EXPORT_SYMBOL_GPL(css_sched_sch_todo);
454 static void css_sch_todo(struct work_struct *work)
456 struct subchannel *sch;
460 sch = container_of(work, struct subchannel, todo_work);
462 spin_lock_irq(sch->lock);
464 CIO_MSG_EVENT(4, "sch_todo: sch=0.%x.%04x, todo=%d\n", sch->schid.ssid,
465 sch->schid.sch_no, todo);
466 sch->todo = SCH_TODO_NOTHING;
467 spin_unlock_irq(sch->lock);
470 case SCH_TODO_NOTHING:
473 ret = css_evaluate_known_subchannel(sch, 1);
474 if (ret == -EAGAIN) {
475 spin_lock_irq(sch->lock);
476 css_sched_sch_todo(sch, todo);
477 spin_unlock_irq(sch->lock);
481 css_sch_device_unregister(sch);
484 /* Release workqueue ref. */
485 put_device(&sch->dev);
488 static struct idset *slow_subchannel_set;
489 static spinlock_t slow_subchannel_lock;
490 static wait_queue_head_t css_eval_wq;
491 static atomic_t css_eval_scheduled;
493 static int __init slow_subchannel_init(void)
495 spin_lock_init(&slow_subchannel_lock);
496 atomic_set(&css_eval_scheduled, 0);
497 init_waitqueue_head(&css_eval_wq);
498 slow_subchannel_set = idset_sch_new();
499 if (!slow_subchannel_set) {
500 CIO_MSG_EVENT(0, "could not allocate slow subchannel set\n");
506 static int slow_eval_known_fn(struct subchannel *sch, void *data)
511 spin_lock_irq(&slow_subchannel_lock);
512 eval = idset_sch_contains(slow_subchannel_set, sch->schid);
513 idset_sch_del(slow_subchannel_set, sch->schid);
514 spin_unlock_irq(&slow_subchannel_lock);
516 rc = css_evaluate_known_subchannel(sch, 1);
518 css_schedule_eval(sch->schid);
523 static int slow_eval_unknown_fn(struct subchannel_id schid, void *data)
528 spin_lock_irq(&slow_subchannel_lock);
529 eval = idset_sch_contains(slow_subchannel_set, schid);
530 idset_sch_del(slow_subchannel_set, schid);
531 spin_unlock_irq(&slow_subchannel_lock);
533 rc = css_evaluate_new_subchannel(schid, 1);
536 css_schedule_eval(schid);
542 /* These should abort looping */
543 idset_sch_del_subseq(slow_subchannel_set, schid);
552 static void css_slow_path_func(struct work_struct *unused)
556 CIO_TRACE_EVENT(4, "slowpath");
557 for_each_subchannel_staged(slow_eval_known_fn, slow_eval_unknown_fn,
559 spin_lock_irqsave(&slow_subchannel_lock, flags);
560 if (idset_is_empty(slow_subchannel_set)) {
561 atomic_set(&css_eval_scheduled, 0);
562 wake_up(&css_eval_wq);
564 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
567 static DECLARE_WORK(slow_path_work, css_slow_path_func);
568 struct workqueue_struct *cio_work_q;
570 void css_schedule_eval(struct subchannel_id schid)
574 spin_lock_irqsave(&slow_subchannel_lock, flags);
575 idset_sch_add(slow_subchannel_set, schid);
576 atomic_set(&css_eval_scheduled, 1);
577 queue_work(cio_work_q, &slow_path_work);
578 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
581 void css_schedule_eval_all(void)
585 spin_lock_irqsave(&slow_subchannel_lock, flags);
586 idset_fill(slow_subchannel_set);
587 atomic_set(&css_eval_scheduled, 1);
588 queue_work(cio_work_q, &slow_path_work);
589 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
592 static int __unset_registered(struct device *dev, void *data)
594 struct idset *set = data;
595 struct subchannel *sch = to_subchannel(dev);
597 idset_sch_del(set, sch->schid);
601 static void css_schedule_eval_all_unreg(void)
604 struct idset *unreg_set;
606 /* Find unregistered subchannels. */
607 unreg_set = idset_sch_new();
610 css_schedule_eval_all();
613 idset_fill(unreg_set);
614 bus_for_each_dev(&css_bus_type, NULL, unreg_set, __unset_registered);
615 /* Apply to slow_subchannel_set. */
616 spin_lock_irqsave(&slow_subchannel_lock, flags);
617 idset_add_set(slow_subchannel_set, unreg_set);
618 atomic_set(&css_eval_scheduled, 1);
619 queue_work(cio_work_q, &slow_path_work);
620 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
621 idset_free(unreg_set);
624 void css_wait_for_slow_path(void)
626 flush_workqueue(cio_work_q);
629 /* Schedule reprobing of all unregistered subchannels. */
630 void css_schedule_reprobe(void)
632 css_schedule_eval_all_unreg();
634 EXPORT_SYMBOL_GPL(css_schedule_reprobe);
637 * Called from the machine check handler for subchannel report words.
639 static void css_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
641 struct subchannel_id mchk_schid;
642 struct subchannel *sch;
645 css_schedule_eval_all();
648 CIO_CRW_EVENT(2, "CRW0 reports slct=%d, oflw=%d, "
649 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
650 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
651 crw0->erc, crw0->rsid);
653 CIO_CRW_EVENT(2, "CRW1 reports slct=%d, oflw=%d, "
654 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
655 crw1->slct, crw1->oflw, crw1->chn, crw1->rsc,
656 crw1->anc, crw1->erc, crw1->rsid);
657 init_subchannel_id(&mchk_schid);
658 mchk_schid.sch_no = crw0->rsid;
660 mchk_schid.ssid = (crw1->rsid >> 4) & 3;
662 if (crw0->erc == CRW_ERC_PMOD) {
663 sch = get_subchannel_by_schid(mchk_schid);
665 css_update_ssd_info(sch);
666 put_device(&sch->dev);
670 * Since we are always presented with IPI in the CRW, we have to
671 * use stsch() to find out if the subchannel in question has come
674 css_evaluate_subchannel(mchk_schid, 0);
678 css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
682 if (css_general_characteristics.mcss) {
683 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
684 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
687 css->global_pgid.pgid_high.cpu_addr = stap();
689 css->global_pgid.pgid_high.cpu_addr = 0;
693 css->global_pgid.cpu_id = cpu_id.ident;
694 css->global_pgid.cpu_model = cpu_id.machine;
695 css->global_pgid.tod_high = tod_high;
700 channel_subsystem_release(struct device *dev)
702 struct channel_subsystem *css;
705 mutex_destroy(&css->mutex);
706 if (css->pseudo_subchannel) {
707 /* Implies that it has been generated but never registered. */
708 css_subchannel_release(&css->pseudo_subchannel->dev);
709 css->pseudo_subchannel = NULL;
715 css_cm_enable_show(struct device *dev, struct device_attribute *attr,
718 struct channel_subsystem *css = to_css(dev);
723 mutex_lock(&css->mutex);
724 ret = sprintf(buf, "%x\n", css->cm_enabled);
725 mutex_unlock(&css->mutex);
730 css_cm_enable_store(struct device *dev, struct device_attribute *attr,
731 const char *buf, size_t count)
733 struct channel_subsystem *css = to_css(dev);
737 ret = strict_strtoul(buf, 16, &val);
740 mutex_lock(&css->mutex);
743 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
746 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
751 mutex_unlock(&css->mutex);
752 return ret < 0 ? ret : count;
755 static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
757 static int __init setup_css(int nr)
761 struct channel_subsystem *css;
763 css = channel_subsystems[nr];
764 memset(css, 0, sizeof(struct channel_subsystem));
765 css->pseudo_subchannel =
766 kzalloc(sizeof(*css->pseudo_subchannel), GFP_KERNEL);
767 if (!css->pseudo_subchannel)
769 css->pseudo_subchannel->dev.parent = &css->device;
770 css->pseudo_subchannel->dev.release = css_subchannel_release;
771 dev_set_name(&css->pseudo_subchannel->dev, "defunct");
772 mutex_init(&css->pseudo_subchannel->reg_mutex);
773 ret = cio_create_sch_lock(css->pseudo_subchannel);
775 kfree(css->pseudo_subchannel);
778 mutex_init(&css->mutex);
781 dev_set_name(&css->device, "css%x", nr);
782 css->device.release = channel_subsystem_release;
783 tod_high = (u32) (get_tod_clock() >> 32);
784 css_generate_pgid(css, tod_high);
788 static int css_reboot_event(struct notifier_block *this,
795 for (i = 0; i <= __MAX_CSSID; i++) {
796 struct channel_subsystem *css;
798 css = channel_subsystems[i];
799 mutex_lock(&css->mutex);
801 if (chsc_secm(css, 0))
803 mutex_unlock(&css->mutex);
809 static struct notifier_block css_reboot_notifier = {
810 .notifier_call = css_reboot_event,
814 * Since the css devices are neither on a bus nor have a class
815 * nor have a special device type, we cannot stop/restart channel
816 * path measurements via the normal suspend/resume callbacks, but have
819 static int css_power_event(struct notifier_block *this, unsigned long event,
825 case PM_HIBERNATION_PREPARE:
826 case PM_SUSPEND_PREPARE:
828 for (i = 0; i <= __MAX_CSSID; i++) {
829 struct channel_subsystem *css;
831 css = channel_subsystems[i];
832 mutex_lock(&css->mutex);
833 if (!css->cm_enabled) {
834 mutex_unlock(&css->mutex);
837 ret = __chsc_do_secm(css, 0);
838 ret = notifier_from_errno(ret);
839 mutex_unlock(&css->mutex);
842 case PM_POST_HIBERNATION:
843 case PM_POST_SUSPEND:
845 for (i = 0; i <= __MAX_CSSID; i++) {
846 struct channel_subsystem *css;
848 css = channel_subsystems[i];
849 mutex_lock(&css->mutex);
850 if (!css->cm_enabled) {
851 mutex_unlock(&css->mutex);
854 ret = __chsc_do_secm(css, 1);
855 ret = notifier_from_errno(ret);
856 mutex_unlock(&css->mutex);
858 /* search for subchannels, which appeared during hibernation */
859 css_schedule_reprobe();
867 static struct notifier_block css_power_notifier = {
868 .notifier_call = css_power_event,
872 * Now that the driver core is running, we can setup our channel subsystem.
873 * The struct subchannel's are created during probing (except for the
874 * static console subchannel).
876 static int __init css_bus_init(void)
884 chsc_determine_css_characteristics();
885 /* Try to enable MSS. */
886 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
890 max_ssid = __MAX_SSID;
892 ret = slow_subchannel_init();
896 ret = crw_register_handler(CRW_RSC_SCH, css_process_crw);
900 if ((ret = bus_register(&css_bus_type)))
903 /* Setup css structure. */
904 for (i = 0; i <= __MAX_CSSID; i++) {
905 struct channel_subsystem *css;
907 css = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
912 channel_subsystems[i] = css;
915 kfree(channel_subsystems[i]);
918 ret = device_register(&css->device);
920 put_device(&css->device);
923 if (css_chsc_characteristics.secm) {
924 ret = device_create_file(&css->device,
925 &dev_attr_cm_enable);
929 ret = device_register(&css->pseudo_subchannel->dev);
931 put_device(&css->pseudo_subchannel->dev);
935 ret = register_reboot_notifier(&css_reboot_notifier);
938 ret = register_pm_notifier(&css_power_notifier);
940 unregister_reboot_notifier(&css_reboot_notifier);
945 /* Enable default isc for I/O subchannels. */
946 isc_register(IO_SCH_ISC);
950 if (css_chsc_characteristics.secm)
951 device_remove_file(&channel_subsystems[i]->device,
952 &dev_attr_cm_enable);
954 device_unregister(&channel_subsystems[i]->device);
957 struct channel_subsystem *css;
960 css = channel_subsystems[i];
961 device_unregister(&css->pseudo_subchannel->dev);
962 css->pseudo_subchannel = NULL;
963 if (css_chsc_characteristics.secm)
964 device_remove_file(&css->device,
965 &dev_attr_cm_enable);
966 device_unregister(&css->device);
968 bus_unregister(&css_bus_type);
970 crw_unregister_handler(CRW_RSC_SCH);
971 idset_free(slow_subchannel_set);
973 pr_alert("The CSS device driver initialization failed with "
978 static void __init css_bus_cleanup(void)
980 struct channel_subsystem *css;
983 for (i = 0; i <= __MAX_CSSID; i++) {
984 css = channel_subsystems[i];
985 device_unregister(&css->pseudo_subchannel->dev);
986 css->pseudo_subchannel = NULL;
987 if (css_chsc_characteristics.secm)
988 device_remove_file(&css->device, &dev_attr_cm_enable);
989 device_unregister(&css->device);
991 bus_unregister(&css_bus_type);
992 crw_unregister_handler(CRW_RSC_SCH);
993 idset_free(slow_subchannel_set);
995 isc_unregister(IO_SCH_ISC);
998 static int __init channel_subsystem_init(void)
1002 ret = css_bus_init();
1005 cio_work_q = create_singlethread_workqueue("cio");
1010 ret = io_subchannel_init();
1016 destroy_workqueue(cio_work_q);
1021 subsys_initcall(channel_subsystem_init);
1023 static int css_settle(struct device_driver *drv, void *unused)
1025 struct css_driver *cssdrv = to_cssdriver(drv);
1028 return cssdrv->settle();
1032 int css_complete_work(void)
1036 /* Wait for the evaluation of subchannels to finish. */
1037 ret = wait_event_interruptible(css_eval_wq,
1038 atomic_read(&css_eval_scheduled) == 0);
1041 flush_workqueue(cio_work_q);
1042 /* Wait for the subchannel type specific initialization to finish */
1043 return bus_for_each_drv(&css_bus_type, NULL, NULL, css_settle);
1048 * Wait for the initialization of devices to finish, to make sure we are
1049 * done with our setup if the search for the root device starts.
1051 static int __init channel_subsystem_init_sync(void)
1053 /* Start initial subchannel evaluation. */
1054 css_schedule_eval_all();
1055 css_complete_work();
1058 subsys_initcall_sync(channel_subsystem_init_sync);
1060 void channel_subsystem_reinit(void)
1062 struct channel_path *chp;
1063 struct chp_id chpid;
1065 chsc_enable_facility(CHSC_SDA_OC_MSS);
1066 chp_id_for_each(&chpid) {
1067 chp = chpid_to_chp(chpid);
1070 chsc_determine_base_channel_path_desc(chpid, &chp->desc);
1074 #ifdef CONFIG_PROC_FS
1075 static ssize_t cio_settle_write(struct file *file, const char __user *buf,
1076 size_t count, loff_t *ppos)
1080 /* Handle pending CRW's. */
1081 crw_wait_for_channel_report();
1082 ret = css_complete_work();
1084 return ret ? ret : count;
1087 static const struct file_operations cio_settle_proc_fops = {
1088 .open = nonseekable_open,
1089 .write = cio_settle_write,
1090 .llseek = no_llseek,
1093 static int __init cio_settle_init(void)
1095 struct proc_dir_entry *entry;
1097 entry = proc_create("cio_settle", S_IWUSR, NULL,
1098 &cio_settle_proc_fops);
1103 device_initcall(cio_settle_init);
1104 #endif /*CONFIG_PROC_FS*/
1106 int sch_is_pseudo_sch(struct subchannel *sch)
1108 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
1111 static int css_bus_match(struct device *dev, struct device_driver *drv)
1113 struct subchannel *sch = to_subchannel(dev);
1114 struct css_driver *driver = to_cssdriver(drv);
1115 struct css_device_id *id;
1117 for (id = driver->subchannel_type; id->match_flags; id++) {
1118 if (sch->st == id->type)
1125 static int css_probe(struct device *dev)
1127 struct subchannel *sch;
1130 sch = to_subchannel(dev);
1131 sch->driver = to_cssdriver(dev->driver);
1132 ret = sch->driver->probe ? sch->driver->probe(sch) : 0;
1138 static int css_remove(struct device *dev)
1140 struct subchannel *sch;
1143 sch = to_subchannel(dev);
1144 ret = sch->driver->remove ? sch->driver->remove(sch) : 0;
1149 static void css_shutdown(struct device *dev)
1151 struct subchannel *sch;
1153 sch = to_subchannel(dev);
1154 if (sch->driver && sch->driver->shutdown)
1155 sch->driver->shutdown(sch);
1158 static int css_uevent(struct device *dev, struct kobj_uevent_env *env)
1160 struct subchannel *sch = to_subchannel(dev);
1163 ret = add_uevent_var(env, "ST=%01X", sch->st);
1166 ret = add_uevent_var(env, "MODALIAS=css:t%01X", sch->st);
1170 static int css_pm_prepare(struct device *dev)
1172 struct subchannel *sch = to_subchannel(dev);
1173 struct css_driver *drv;
1175 if (mutex_is_locked(&sch->reg_mutex))
1177 if (!sch->dev.driver)
1179 drv = to_cssdriver(sch->dev.driver);
1180 /* Notify drivers that they may not register children. */
1181 return drv->prepare ? drv->prepare(sch) : 0;
1184 static void css_pm_complete(struct device *dev)
1186 struct subchannel *sch = to_subchannel(dev);
1187 struct css_driver *drv;
1189 if (!sch->dev.driver)
1191 drv = to_cssdriver(sch->dev.driver);
1196 static int css_pm_freeze(struct device *dev)
1198 struct subchannel *sch = to_subchannel(dev);
1199 struct css_driver *drv;
1201 if (!sch->dev.driver)
1203 drv = to_cssdriver(sch->dev.driver);
1204 return drv->freeze ? drv->freeze(sch) : 0;
1207 static int css_pm_thaw(struct device *dev)
1209 struct subchannel *sch = to_subchannel(dev);
1210 struct css_driver *drv;
1212 if (!sch->dev.driver)
1214 drv = to_cssdriver(sch->dev.driver);
1215 return drv->thaw ? drv->thaw(sch) : 0;
1218 static int css_pm_restore(struct device *dev)
1220 struct subchannel *sch = to_subchannel(dev);
1221 struct css_driver *drv;
1223 css_update_ssd_info(sch);
1224 if (!sch->dev.driver)
1226 drv = to_cssdriver(sch->dev.driver);
1227 return drv->restore ? drv->restore(sch) : 0;
1230 static const struct dev_pm_ops css_pm_ops = {
1231 .prepare = css_pm_prepare,
1232 .complete = css_pm_complete,
1233 .freeze = css_pm_freeze,
1234 .thaw = css_pm_thaw,
1235 .restore = css_pm_restore,
1238 static struct bus_type css_bus_type = {
1240 .match = css_bus_match,
1242 .remove = css_remove,
1243 .shutdown = css_shutdown,
1244 .uevent = css_uevent,
1249 * css_driver_register - register a css driver
1250 * @cdrv: css driver to register
1252 * This is mainly a wrapper around driver_register that sets name
1253 * and bus_type in the embedded struct device_driver correctly.
1255 int css_driver_register(struct css_driver *cdrv)
1257 cdrv->drv.bus = &css_bus_type;
1258 return driver_register(&cdrv->drv);
1260 EXPORT_SYMBOL_GPL(css_driver_register);
1263 * css_driver_unregister - unregister a css driver
1264 * @cdrv: css driver to unregister
1266 * This is a wrapper around driver_unregister.
1268 void css_driver_unregister(struct css_driver *cdrv)
1270 driver_unregister(&cdrv->drv);
1272 EXPORT_SYMBOL_GPL(css_driver_unregister);
1274 MODULE_LICENSE("GPL");