2 * drivers/s390/cio/css.c
3 * driver for channel subsystem
5 * Copyright IBM Corp. 2002,2008
6 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
7 * Cornelia Huck (cornelia.huck@de.ibm.com)
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/device.h>
12 #include <linux/slab.h>
13 #include <linux/errno.h>
14 #include <linux/list.h>
15 #include <linux/reboot.h>
17 #include "../s390mach.h"
20 #include "cio_debug.h"
27 int css_init_done = 0;
28 static int need_reprobe = 0;
29 static int max_ssid = 0;
31 struct channel_subsystem *channel_subsystems[__MAX_CSSID + 1];
34 for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *data)
36 struct subchannel_id schid;
39 init_subchannel_id(&schid);
43 ret = fn(schid, data);
46 } while (schid.sch_no++ < __MAX_SUBCHANNEL);
48 } while (schid.ssid++ < max_ssid);
55 int (*fn_known_sch)(struct subchannel *, void *);
56 int (*fn_unknown_sch)(struct subchannel_id, void *);
59 static int call_fn_known_sch(struct device *dev, void *data)
61 struct subchannel *sch = to_subchannel(dev);
62 struct cb_data *cb = data;
65 idset_sch_del(cb->set, sch->schid);
67 rc = cb->fn_known_sch(sch, cb->data);
71 static int call_fn_unknown_sch(struct subchannel_id schid, void *data)
73 struct cb_data *cb = data;
76 if (idset_sch_contains(cb->set, schid))
77 rc = cb->fn_unknown_sch(schid, cb->data);
81 int for_each_subchannel_staged(int (*fn_known)(struct subchannel *, void *),
82 int (*fn_unknown)(struct subchannel_id,
88 cb.set = idset_sch_new();
93 cb.fn_known_sch = fn_known;
94 cb.fn_unknown_sch = fn_unknown;
95 /* Process registered subchannels. */
96 rc = bus_for_each_dev(&css_bus_type, NULL, &cb, call_fn_known_sch);
99 /* Process unregistered subchannels. */
101 rc = for_each_subchannel(call_fn_unknown_sch, &cb);
108 static struct subchannel *
109 css_alloc_subchannel(struct subchannel_id schid)
111 struct subchannel *sch;
114 sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
116 return ERR_PTR(-ENOMEM);
117 ret = cio_validate_subchannel (sch, schid);
126 css_free_subchannel(struct subchannel *sch)
129 /* Reset intparm to zeroes. */
130 sch->schib.pmcw.intparm = 0;
138 css_subchannel_release(struct device *dev)
140 struct subchannel *sch;
142 sch = to_subchannel(dev);
143 if (!cio_is_console(sch->schid)) {
149 static int css_sch_device_register(struct subchannel *sch)
153 mutex_lock(&sch->reg_mutex);
154 ret = device_register(&sch->dev);
155 mutex_unlock(&sch->reg_mutex);
160 * css_sch_device_unregister - unregister a subchannel
161 * @sch: subchannel to be unregistered
163 void css_sch_device_unregister(struct subchannel *sch)
165 mutex_lock(&sch->reg_mutex);
166 device_unregister(&sch->dev);
167 mutex_unlock(&sch->reg_mutex);
169 EXPORT_SYMBOL_GPL(css_sch_device_unregister);
171 static void ssd_from_pmcw(struct chsc_ssd_info *ssd, struct pmcw *pmcw)
176 memset(ssd, 0, sizeof(struct chsc_ssd_info));
177 ssd->path_mask = pmcw->pim;
178 for (i = 0; i < 8; i++) {
180 if (pmcw->pim & mask) {
181 chp_id_init(&ssd->chpid[i]);
182 ssd->chpid[i].id = pmcw->chpid[i];
187 static void ssd_register_chpids(struct chsc_ssd_info *ssd)
192 for (i = 0; i < 8; i++) {
194 if (ssd->path_mask & mask)
195 if (!chp_is_registered(ssd->chpid[i]))
196 chp_new(ssd->chpid[i]);
200 void css_update_ssd_info(struct subchannel *sch)
204 if (cio_is_console(sch->schid)) {
205 /* Console is initialized too early for functions requiring
206 * memory allocation. */
207 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
209 ret = chsc_get_ssd_info(sch->schid, &sch->ssd_info);
211 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
212 ssd_register_chpids(&sch->ssd_info);
216 static ssize_t type_show(struct device *dev, struct device_attribute *attr,
219 struct subchannel *sch = to_subchannel(dev);
221 return sprintf(buf, "%01x\n", sch->st);
224 static DEVICE_ATTR(type, 0444, type_show, NULL);
226 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
229 struct subchannel *sch = to_subchannel(dev);
231 return sprintf(buf, "css:t%01X\n", sch->st);
234 static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
236 static struct attribute *subch_attrs[] = {
238 &dev_attr_modalias.attr,
242 static struct attribute_group subch_attr_group = {
243 .attrs = subch_attrs,
246 static struct attribute_group *default_subch_attr_groups[] = {
251 static int css_register_subchannel(struct subchannel *sch)
255 /* Initialize the subchannel structure */
256 sch->dev.parent = &channel_subsystems[0]->device;
257 sch->dev.bus = &css_bus_type;
258 sch->dev.release = &css_subchannel_release;
259 sch->dev.groups = default_subch_attr_groups;
261 * We don't want to generate uevents for I/O subchannels that don't
262 * have a working ccw device behind them since they will be
263 * unregistered before they can be used anyway, so we delay the add
264 * uevent until after device recognition was successful.
265 * Note that we suppress the uevent for all subchannel types;
266 * the subchannel driver can decide itself when it wants to inform
267 * userspace of its existence.
269 sch->dev.uevent_suppress = 1;
270 css_update_ssd_info(sch);
271 /* make it known to the system */
272 ret = css_sch_device_register(sch);
274 CIO_MSG_EVENT(0, "Could not register sch 0.%x.%04x: %d\n",
275 sch->schid.ssid, sch->schid.sch_no, ret);
280 * No driver matched. Generate the uevent now so that
281 * a fitting driver module may be loaded based on the
284 sch->dev.uevent_suppress = 0;
285 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
290 int css_probe_device(struct subchannel_id schid)
293 struct subchannel *sch;
295 sch = css_alloc_subchannel(schid);
298 ret = css_register_subchannel(sch);
300 css_free_subchannel(sch);
305 check_subchannel(struct device * dev, void * data)
307 struct subchannel *sch;
308 struct subchannel_id *schid = data;
310 sch = to_subchannel(dev);
311 return schid_equal(&sch->schid, schid);
315 get_subchannel_by_schid(struct subchannel_id schid)
319 dev = bus_find_device(&css_bus_type, NULL,
320 &schid, check_subchannel);
322 return dev ? to_subchannel(dev) : NULL;
326 * css_sch_is_valid() - check if a subchannel is valid
327 * @schib: subchannel information block for the subchannel
329 int css_sch_is_valid(struct schib *schib)
331 if ((schib->pmcw.st == SUBCHANNEL_TYPE_IO) && !schib->pmcw.dnv)
333 if ((schib->pmcw.st == SUBCHANNEL_TYPE_MSG) && !schib->pmcw.w)
337 EXPORT_SYMBOL_GPL(css_sch_is_valid);
339 static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
344 /* Will be done on the slow path. */
347 if (stsch_err(schid, &schib) || !css_sch_is_valid(&schib)) {
348 /* Unusable - ignore. */
351 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, unknown, "
352 "slow path.\n", schid.ssid, schid.sch_no, CIO_OPER);
354 return css_probe_device(schid);
357 static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
362 if (sch->driver->sch_event)
363 ret = sch->driver->sch_event(sch, slow);
366 "Got subchannel machine check but "
367 "no sch_event handler provided.\n");
372 static void css_evaluate_subchannel(struct subchannel_id schid, int slow)
374 struct subchannel *sch;
377 sch = get_subchannel_by_schid(schid);
379 ret = css_evaluate_known_subchannel(sch, slow);
380 put_device(&sch->dev);
382 ret = css_evaluate_new_subchannel(schid, slow);
384 css_schedule_eval(schid);
387 static struct idset *slow_subchannel_set;
388 static spinlock_t slow_subchannel_lock;
390 static int __init slow_subchannel_init(void)
392 spin_lock_init(&slow_subchannel_lock);
393 slow_subchannel_set = idset_sch_new();
394 if (!slow_subchannel_set) {
395 CIO_MSG_EVENT(0, "could not allocate slow subchannel set\n");
401 static int slow_eval_known_fn(struct subchannel *sch, void *data)
406 spin_lock_irq(&slow_subchannel_lock);
407 eval = idset_sch_contains(slow_subchannel_set, sch->schid);
408 idset_sch_del(slow_subchannel_set, sch->schid);
409 spin_unlock_irq(&slow_subchannel_lock);
411 rc = css_evaluate_known_subchannel(sch, 1);
413 css_schedule_eval(sch->schid);
418 static int slow_eval_unknown_fn(struct subchannel_id schid, void *data)
423 spin_lock_irq(&slow_subchannel_lock);
424 eval = idset_sch_contains(slow_subchannel_set, schid);
425 idset_sch_del(slow_subchannel_set, schid);
426 spin_unlock_irq(&slow_subchannel_lock);
428 rc = css_evaluate_new_subchannel(schid, 1);
431 css_schedule_eval(schid);
437 /* These should abort looping */
446 static void css_slow_path_func(struct work_struct *unused)
448 CIO_TRACE_EVENT(4, "slowpath");
449 for_each_subchannel_staged(slow_eval_known_fn, slow_eval_unknown_fn,
453 static DECLARE_WORK(slow_path_work, css_slow_path_func);
454 struct workqueue_struct *slow_path_wq;
456 void css_schedule_eval(struct subchannel_id schid)
460 spin_lock_irqsave(&slow_subchannel_lock, flags);
461 idset_sch_add(slow_subchannel_set, schid);
462 queue_work(slow_path_wq, &slow_path_work);
463 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
466 void css_schedule_eval_all(void)
470 spin_lock_irqsave(&slow_subchannel_lock, flags);
471 idset_fill(slow_subchannel_set);
472 queue_work(slow_path_wq, &slow_path_work);
473 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
476 void css_wait_for_slow_path(void)
478 flush_workqueue(ccw_device_notify_work);
479 flush_workqueue(slow_path_wq);
482 /* Reprobe subchannel if unregistered. */
483 static int reprobe_subchannel(struct subchannel_id schid, void *data)
487 CIO_MSG_EVENT(6, "cio: reprobe 0.%x.%04x\n",
488 schid.ssid, schid.sch_no);
492 ret = css_probe_device(schid);
499 /* These should abort looping */
508 /* Work function used to reprobe all unregistered subchannels. */
509 static void reprobe_all(struct work_struct *unused)
513 CIO_MSG_EVENT(4, "reprobe start\n");
516 /* Make sure initial subchannel scan is done. */
517 wait_event(ccw_device_init_wq,
518 atomic_read(&ccw_device_init_count) == 0);
519 ret = for_each_subchannel_staged(NULL, reprobe_subchannel, NULL);
521 CIO_MSG_EVENT(4, "reprobe done (rc=%d, need_reprobe=%d)\n", ret,
525 static DECLARE_WORK(css_reprobe_work, reprobe_all);
527 /* Schedule reprobing of all unregistered subchannels. */
528 void css_schedule_reprobe(void)
531 queue_work(slow_path_wq, &css_reprobe_work);
534 EXPORT_SYMBOL_GPL(css_schedule_reprobe);
537 * Called from the machine check handler for subchannel report words.
539 static void css_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
541 struct subchannel_id mchk_schid;
544 css_schedule_eval_all();
547 CIO_CRW_EVENT(2, "CRW0 reports slct=%d, oflw=%d, "
548 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
549 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
550 crw0->erc, crw0->rsid);
552 CIO_CRW_EVENT(2, "CRW1 reports slct=%d, oflw=%d, "
553 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
554 crw1->slct, crw1->oflw, crw1->chn, crw1->rsc,
555 crw1->anc, crw1->erc, crw1->rsid);
556 init_subchannel_id(&mchk_schid);
557 mchk_schid.sch_no = crw0->rsid;
559 mchk_schid.ssid = (crw1->rsid >> 8) & 3;
562 * Since we are always presented with IPI in the CRW, we have to
563 * use stsch() to find out if the subchannel in question has come
566 css_evaluate_subchannel(mchk_schid, 0);
570 __init_channel_subsystem(struct subchannel_id schid, void *data)
572 struct subchannel *sch;
575 if (cio_is_console(schid))
576 sch = cio_get_console_subchannel();
578 sch = css_alloc_subchannel(schid);
587 panic("Out of memory in init_channel_subsystem\n");
588 /* -ENXIO: no more subchannels. */
591 /* -EIO: this subchannel set not supported. */
599 * We register ALL valid subchannels in ioinfo, even those
600 * that have been present before init_channel_subsystem.
601 * These subchannels can't have been registered yet (kmalloc
602 * not working) so we do it now. This is true e.g. for the
603 * console subchannel.
605 css_register_subchannel(sch);
610 css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
612 if (css_general_characteristics.mcss) {
613 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
614 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
617 css->global_pgid.pgid_high.cpu_addr = hard_smp_processor_id();
619 css->global_pgid.pgid_high.cpu_addr = 0;
622 css->global_pgid.cpu_id = ((cpuid_t *) __LC_CPUID)->ident;
623 css->global_pgid.cpu_model = ((cpuid_t *) __LC_CPUID)->machine;
624 css->global_pgid.tod_high = tod_high;
629 channel_subsystem_release(struct device *dev)
631 struct channel_subsystem *css;
634 mutex_destroy(&css->mutex);
639 css_cm_enable_show(struct device *dev, struct device_attribute *attr,
642 struct channel_subsystem *css = to_css(dev);
647 mutex_lock(&css->mutex);
648 ret = sprintf(buf, "%x\n", css->cm_enabled);
649 mutex_unlock(&css->mutex);
654 css_cm_enable_store(struct device *dev, struct device_attribute *attr,
655 const char *buf, size_t count)
657 struct channel_subsystem *css = to_css(dev);
661 ret = strict_strtoul(buf, 16, &val);
664 mutex_lock(&css->mutex);
667 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
670 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
675 mutex_unlock(&css->mutex);
676 return ret < 0 ? ret : count;
679 static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
681 static int __init setup_css(int nr)
685 struct channel_subsystem *css;
687 css = channel_subsystems[nr];
688 memset(css, 0, sizeof(struct channel_subsystem));
689 css->pseudo_subchannel =
690 kzalloc(sizeof(*css->pseudo_subchannel), GFP_KERNEL);
691 if (!css->pseudo_subchannel)
693 css->pseudo_subchannel->dev.parent = &css->device;
694 css->pseudo_subchannel->dev.release = css_subchannel_release;
695 sprintf(css->pseudo_subchannel->dev.bus_id, "defunct");
696 ret = cio_create_sch_lock(css->pseudo_subchannel);
698 kfree(css->pseudo_subchannel);
701 mutex_init(&css->mutex);
704 sprintf(css->device.bus_id, "css%x", nr);
705 css->device.release = channel_subsystem_release;
706 tod_high = (u32) (get_clock() >> 32);
707 css_generate_pgid(css, tod_high);
711 static int css_reboot_event(struct notifier_block *this,
718 for (i = 0; i <= __MAX_CSSID; i++) {
719 struct channel_subsystem *css;
721 css = channel_subsystems[i];
722 mutex_lock(&css->mutex);
724 if (chsc_secm(css, 0))
726 mutex_unlock(&css->mutex);
732 static struct notifier_block css_reboot_notifier = {
733 .notifier_call = css_reboot_event,
737 * Now that the driver core is running, we can setup our channel subsystem.
738 * The struct subchannel's are created during probing (except for the
739 * static console subchannel).
742 init_channel_subsystem (void)
746 ret = chsc_determine_css_characteristics();
748 goto out; /* No need to continue. */
750 ret = chsc_alloc_sei_area();
754 ret = slow_subchannel_init();
758 ret = s390_register_crw_handler(CRW_RSC_SCH, css_process_crw);
762 if ((ret = bus_register(&css_bus_type)))
765 /* Try to enable MSS. */
766 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
768 case 0: /* Success. */
769 max_ssid = __MAX_SSID;
776 /* Setup css structure. */
777 for (i = 0; i <= __MAX_CSSID; i++) {
778 struct channel_subsystem *css;
780 css = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
785 channel_subsystems[i] = css;
789 ret = device_register(&css->device);
792 if (css_chsc_characteristics.secm) {
793 ret = device_create_file(&css->device,
794 &dev_attr_cm_enable);
798 ret = device_register(&css->pseudo_subchannel->dev);
802 ret = register_reboot_notifier(&css_reboot_notifier);
809 for_each_subchannel(__init_channel_subsystem, NULL);
812 device_unregister(&channel_subsystems[i]->pseudo_subchannel->dev);
814 device_remove_file(&channel_subsystems[i]->device,
815 &dev_attr_cm_enable);
817 device_unregister(&channel_subsystems[i]->device);
819 kfree(channel_subsystems[i]->pseudo_subchannel->lock);
820 kfree(channel_subsystems[i]->pseudo_subchannel);
822 kfree(channel_subsystems[i]);
825 struct channel_subsystem *css;
828 css = channel_subsystems[i];
829 device_unregister(&css->pseudo_subchannel->dev);
830 if (css_chsc_characteristics.secm)
831 device_remove_file(&css->device,
832 &dev_attr_cm_enable);
833 device_unregister(&css->device);
836 bus_unregister(&css_bus_type);
838 s390_unregister_crw_handler(CRW_RSC_CSS);
839 chsc_free_sei_area();
840 kfree(slow_subchannel_set);
841 printk(KERN_WARNING"cio: failed to initialize css driver (%d)!\n",
846 int sch_is_pseudo_sch(struct subchannel *sch)
848 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
852 * find a driver for a subchannel. They identify by the subchannel
853 * type with the exception that the console subchannel driver has its own
854 * subchannel type although the device is an i/o subchannel
857 css_bus_match (struct device *dev, struct device_driver *drv)
859 struct subchannel *sch = to_subchannel(dev);
860 struct css_driver *driver = to_cssdriver(drv);
862 if (sch->st == driver->subchannel_type)
868 static int css_probe(struct device *dev)
870 struct subchannel *sch;
873 sch = to_subchannel(dev);
874 sch->driver = to_cssdriver(dev->driver);
875 ret = sch->driver->probe ? sch->driver->probe(sch) : 0;
881 static int css_remove(struct device *dev)
883 struct subchannel *sch;
886 sch = to_subchannel(dev);
887 ret = sch->driver->remove ? sch->driver->remove(sch) : 0;
892 static void css_shutdown(struct device *dev)
894 struct subchannel *sch;
896 sch = to_subchannel(dev);
897 if (sch->driver && sch->driver->shutdown)
898 sch->driver->shutdown(sch);
901 static int css_uevent(struct device *dev, struct kobj_uevent_env *env)
903 struct subchannel *sch = to_subchannel(dev);
906 ret = add_uevent_var(env, "ST=%01X", sch->st);
909 ret = add_uevent_var(env, "MODALIAS=css:t%01X", sch->st);
913 struct bus_type css_bus_type = {
915 .match = css_bus_match,
917 .remove = css_remove,
918 .shutdown = css_shutdown,
919 .uevent = css_uevent,
923 * css_driver_register - register a css driver
924 * @cdrv: css driver to register
926 * This is mainly a wrapper around driver_register that sets name
927 * and bus_type in the embedded struct device_driver correctly.
929 int css_driver_register(struct css_driver *cdrv)
931 cdrv->drv.name = cdrv->name;
932 cdrv->drv.bus = &css_bus_type;
933 cdrv->drv.owner = cdrv->owner;
934 return driver_register(&cdrv->drv);
936 EXPORT_SYMBOL_GPL(css_driver_register);
939 * css_driver_unregister - unregister a css driver
940 * @cdrv: css driver to unregister
942 * This is a wrapper around driver_unregister.
944 void css_driver_unregister(struct css_driver *cdrv)
946 driver_unregister(&cdrv->drv);
948 EXPORT_SYMBOL_GPL(css_driver_unregister);
950 subsys_initcall(init_channel_subsystem);
952 MODULE_LICENSE("GPL");
953 EXPORT_SYMBOL(css_bus_type);