1 // SPDX-License-Identifier: GPL-2.0
3 * driver for channel subsystem
5 * Copyright IBM Corp. 2002, 2010
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/device.h>
17 #include <linux/slab.h>
18 #include <linux/errno.h>
19 #include <linux/list.h>
20 #include <linux/reboot.h>
21 #include <linux/proc_fs.h>
22 #include <linux/genalloc.h>
23 #include <linux/dma-mapping.h>
29 #include "blacklist.h"
30 #include "cio_debug.h"
37 int css_init_done = 0;
41 struct channel_subsystem *channel_subsystems[MAX_CSS_IDX + 1];
42 static struct bus_type css_bus_type;
45 for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *data)
47 struct subchannel_id schid;
50 init_subchannel_id(&schid);
53 ret = fn(schid, data);
56 } while (schid.sch_no++ < __MAX_SUBCHANNEL);
58 } while (schid.ssid++ < max_ssid);
65 int (*fn_known_sch)(struct subchannel *, void *);
66 int (*fn_unknown_sch)(struct subchannel_id, void *);
69 static int call_fn_known_sch(struct device *dev, void *data)
71 struct subchannel *sch = to_subchannel(dev);
72 struct cb_data *cb = data;
76 idset_sch_del(cb->set, sch->schid);
78 rc = cb->fn_known_sch(sch, cb->data);
82 static int call_fn_unknown_sch(struct subchannel_id schid, void *data)
84 struct cb_data *cb = data;
87 if (idset_sch_contains(cb->set, schid))
88 rc = cb->fn_unknown_sch(schid, cb->data);
92 static int call_fn_all_sch(struct subchannel_id schid, void *data)
94 struct cb_data *cb = data;
95 struct subchannel *sch;
98 sch = get_subchannel_by_schid(schid);
100 if (cb->fn_known_sch)
101 rc = cb->fn_known_sch(sch, cb->data);
102 put_device(&sch->dev);
104 if (cb->fn_unknown_sch)
105 rc = cb->fn_unknown_sch(schid, cb->data);
111 int for_each_subchannel_staged(int (*fn_known)(struct subchannel *, void *),
112 int (*fn_unknown)(struct subchannel_id,
119 cb.fn_known_sch = fn_known;
120 cb.fn_unknown_sch = fn_unknown;
122 if (fn_known && !fn_unknown) {
123 /* Skip idset allocation in case of known-only loop. */
125 return bus_for_each_dev(&css_bus_type, NULL, &cb,
129 cb.set = idset_sch_new();
131 /* fall back to brute force scanning in case of oom */
132 return for_each_subchannel(call_fn_all_sch, &cb);
136 /* Process registered subchannels. */
137 rc = bus_for_each_dev(&css_bus_type, NULL, &cb, call_fn_known_sch);
140 /* Process unregistered subchannels. */
142 rc = for_each_subchannel(call_fn_unknown_sch, &cb);
149 static void css_sch_todo(struct work_struct *work);
151 static int css_sch_create_locks(struct subchannel *sch)
153 sch->lock = kmalloc(sizeof(*sch->lock), GFP_KERNEL);
157 spin_lock_init(sch->lock);
158 mutex_init(&sch->reg_mutex);
163 static void css_subchannel_release(struct device *dev)
165 struct subchannel *sch = to_subchannel(dev);
167 sch->config.intparm = 0;
168 cio_commit_config(sch);
169 kfree(sch->driver_override);
174 static int css_validate_subchannel(struct subchannel_id schid,
179 switch (schib->pmcw.st) {
180 case SUBCHANNEL_TYPE_IO:
181 case SUBCHANNEL_TYPE_MSG:
182 if (!css_sch_is_valid(schib))
184 else if (is_blacklisted(schid.ssid, schib->pmcw.dev)) {
185 CIO_MSG_EVENT(6, "Blacklisted device detected "
186 "at devno %04X, subchannel set %x\n",
187 schib->pmcw.dev, schid.ssid);
198 CIO_MSG_EVENT(4, "Subchannel 0.%x.%04x reports subchannel type %04X\n",
199 schid.ssid, schid.sch_no, schib->pmcw.st);
204 struct subchannel *css_alloc_subchannel(struct subchannel_id schid,
207 struct subchannel *sch;
210 ret = css_validate_subchannel(schid, schib);
214 sch = kzalloc(sizeof(*sch), GFP_KERNEL | GFP_DMA);
216 return ERR_PTR(-ENOMEM);
220 sch->st = schib->pmcw.st;
222 ret = css_sch_create_locks(sch);
226 INIT_WORK(&sch->todo_work, css_sch_todo);
227 sch->dev.release = &css_subchannel_release;
228 sch->dev.dma_mask = &sch->dma_mask;
229 device_initialize(&sch->dev);
231 * The physical addresses for some of the dma structures that can
232 * belong to a subchannel need to fit 31 bit width (e.g. ccw).
234 ret = dma_set_coherent_mask(&sch->dev, DMA_BIT_MASK(31));
238 * But we don't have such restrictions imposed on the stuff that
239 * is handled by the streaming API.
241 ret = dma_set_mask(&sch->dev, DMA_BIT_MASK(64));
252 static int css_sch_device_register(struct subchannel *sch)
256 mutex_lock(&sch->reg_mutex);
257 dev_set_name(&sch->dev, "0.%x.%04x", sch->schid.ssid,
259 ret = device_add(&sch->dev);
260 mutex_unlock(&sch->reg_mutex);
265 * css_sch_device_unregister - unregister a subchannel
266 * @sch: subchannel to be unregistered
268 void css_sch_device_unregister(struct subchannel *sch)
270 mutex_lock(&sch->reg_mutex);
271 if (device_is_registered(&sch->dev))
272 device_unregister(&sch->dev);
273 mutex_unlock(&sch->reg_mutex);
275 EXPORT_SYMBOL_GPL(css_sch_device_unregister);
277 static void ssd_from_pmcw(struct chsc_ssd_info *ssd, struct pmcw *pmcw)
282 memset(ssd, 0, sizeof(struct chsc_ssd_info));
283 ssd->path_mask = pmcw->pim;
284 for (i = 0; i < 8; i++) {
286 if (pmcw->pim & mask) {
287 chp_id_init(&ssd->chpid[i]);
288 ssd->chpid[i].id = pmcw->chpid[i];
293 static void ssd_register_chpids(struct chsc_ssd_info *ssd)
298 for (i = 0; i < 8; i++) {
300 if (ssd->path_mask & mask)
301 chp_new(ssd->chpid[i]);
305 void css_update_ssd_info(struct subchannel *sch)
309 ret = chsc_get_ssd_info(sch->schid, &sch->ssd_info);
311 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
313 ssd_register_chpids(&sch->ssd_info);
316 static ssize_t type_show(struct device *dev, struct device_attribute *attr,
319 struct subchannel *sch = to_subchannel(dev);
321 return sprintf(buf, "%01x\n", sch->st);
324 static DEVICE_ATTR_RO(type);
326 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
329 struct subchannel *sch = to_subchannel(dev);
331 return sprintf(buf, "css:t%01X\n", sch->st);
334 static DEVICE_ATTR_RO(modalias);
336 static ssize_t driver_override_store(struct device *dev,
337 struct device_attribute *attr,
338 const char *buf, size_t count)
340 struct subchannel *sch = to_subchannel(dev);
341 char *driver_override, *old, *cp;
343 /* We need to keep extra room for a newline */
344 if (count >= (PAGE_SIZE - 1))
347 driver_override = kstrndup(buf, count, GFP_KERNEL);
348 if (!driver_override)
351 cp = strchr(driver_override, '\n');
356 old = sch->driver_override;
357 if (strlen(driver_override)) {
358 sch->driver_override = driver_override;
360 kfree(driver_override);
361 sch->driver_override = NULL;
370 static ssize_t driver_override_show(struct device *dev,
371 struct device_attribute *attr, char *buf)
373 struct subchannel *sch = to_subchannel(dev);
377 len = snprintf(buf, PAGE_SIZE, "%s\n", sch->driver_override);
381 static DEVICE_ATTR_RW(driver_override);
383 static struct attribute *subch_attrs[] = {
385 &dev_attr_modalias.attr,
386 &dev_attr_driver_override.attr,
390 static struct attribute_group subch_attr_group = {
391 .attrs = subch_attrs,
394 static const struct attribute_group *default_subch_attr_groups[] = {
399 static ssize_t chpids_show(struct device *dev,
400 struct device_attribute *attr,
403 struct subchannel *sch = to_subchannel(dev);
404 struct chsc_ssd_info *ssd = &sch->ssd_info;
409 for (chp = 0; chp < 8; chp++) {
411 if (ssd->path_mask & mask)
412 ret += sprintf(buf + ret, "%02x ", ssd->chpid[chp].id);
414 ret += sprintf(buf + ret, "00 ");
416 ret += sprintf(buf + ret, "\n");
419 static DEVICE_ATTR_RO(chpids);
421 static ssize_t pimpampom_show(struct device *dev,
422 struct device_attribute *attr,
425 struct subchannel *sch = to_subchannel(dev);
426 struct pmcw *pmcw = &sch->schib.pmcw;
428 return sprintf(buf, "%02x %02x %02x\n",
429 pmcw->pim, pmcw->pam, pmcw->pom);
431 static DEVICE_ATTR_RO(pimpampom);
433 static ssize_t dev_busid_show(struct device *dev,
434 struct device_attribute *attr,
437 struct subchannel *sch = to_subchannel(dev);
438 struct pmcw *pmcw = &sch->schib.pmcw;
440 if ((pmcw->st == SUBCHANNEL_TYPE_IO ||
441 pmcw->st == SUBCHANNEL_TYPE_MSG) && pmcw->dnv)
442 return sysfs_emit(buf, "0.%x.%04x\n", sch->schid.ssid,
445 return sysfs_emit(buf, "none\n");
447 static DEVICE_ATTR_RO(dev_busid);
449 static struct attribute *io_subchannel_type_attrs[] = {
450 &dev_attr_chpids.attr,
451 &dev_attr_pimpampom.attr,
452 &dev_attr_dev_busid.attr,
455 ATTRIBUTE_GROUPS(io_subchannel_type);
457 static const struct device_type io_subchannel_type = {
458 .groups = io_subchannel_type_groups,
461 int css_register_subchannel(struct subchannel *sch)
465 /* Initialize the subchannel structure */
466 sch->dev.parent = &channel_subsystems[0]->device;
467 sch->dev.bus = &css_bus_type;
468 sch->dev.groups = default_subch_attr_groups;
470 if (sch->st == SUBCHANNEL_TYPE_IO)
471 sch->dev.type = &io_subchannel_type;
474 * We don't want to generate uevents for I/O subchannels that don't
475 * have a working ccw device behind them since they will be
476 * unregistered before they can be used anyway, so we delay the add
477 * uevent until after device recognition was successful.
478 * Note that we suppress the uevent for all subchannel types;
479 * the subchannel driver can decide itself when it wants to inform
480 * userspace of its existence.
482 dev_set_uevent_suppress(&sch->dev, 1);
483 css_update_ssd_info(sch);
484 /* make it known to the system */
485 ret = css_sch_device_register(sch);
487 CIO_MSG_EVENT(0, "Could not register sch 0.%x.%04x: %d\n",
488 sch->schid.ssid, sch->schid.sch_no, ret);
493 * No driver matched. Generate the uevent now so that
494 * a fitting driver module may be loaded based on the
497 dev_set_uevent_suppress(&sch->dev, 0);
498 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
503 static int css_probe_device(struct subchannel_id schid, struct schib *schib)
505 struct subchannel *sch;
508 sch = css_alloc_subchannel(schid, schib);
512 ret = css_register_subchannel(sch);
514 put_device(&sch->dev);
520 check_subchannel(struct device *dev, const void *data)
522 struct subchannel *sch;
523 struct subchannel_id *schid = (void *)data;
525 sch = to_subchannel(dev);
526 return schid_equal(&sch->schid, schid);
530 get_subchannel_by_schid(struct subchannel_id schid)
534 dev = bus_find_device(&css_bus_type, NULL,
535 &schid, check_subchannel);
537 return dev ? to_subchannel(dev) : NULL;
541 * css_sch_is_valid() - check if a subchannel is valid
542 * @schib: subchannel information block for the subchannel
544 int css_sch_is_valid(struct schib *schib)
546 if ((schib->pmcw.st == SUBCHANNEL_TYPE_IO) && !schib->pmcw.dnv)
548 if ((schib->pmcw.st == SUBCHANNEL_TYPE_MSG) && !schib->pmcw.w)
552 EXPORT_SYMBOL_GPL(css_sch_is_valid);
554 static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
560 /* Will be done on the slow path. */
564 * The first subchannel that is not-operational (ccode==3)
565 * indicates that there aren't any more devices available.
566 * If stsch gets an exception, it means the current subchannel set
569 ccode = stsch(schid, &schib);
571 return (ccode == 3) ? -ENXIO : ccode;
573 return css_probe_device(schid, &schib);
576 static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
581 if (sch->driver->sch_event)
582 ret = sch->driver->sch_event(sch, slow);
585 "Got subchannel machine check but "
586 "no sch_event handler provided.\n");
588 if (ret != 0 && ret != -EAGAIN) {
589 CIO_MSG_EVENT(2, "eval: sch 0.%x.%04x, rc=%d\n",
590 sch->schid.ssid, sch->schid.sch_no, ret);
595 static void css_evaluate_subchannel(struct subchannel_id schid, int slow)
597 struct subchannel *sch;
600 sch = get_subchannel_by_schid(schid);
602 ret = css_evaluate_known_subchannel(sch, slow);
603 put_device(&sch->dev);
605 ret = css_evaluate_new_subchannel(schid, slow);
607 css_schedule_eval(schid);
611 * css_sched_sch_todo - schedule a subchannel operation
615 * Schedule the operation identified by @todo to be performed on the slow path
616 * workqueue. Do nothing if another operation with higher priority is already
617 * scheduled. Needs to be called with subchannel lock held.
619 void css_sched_sch_todo(struct subchannel *sch, enum sch_todo todo)
621 CIO_MSG_EVENT(4, "sch_todo: sched sch=0.%x.%04x todo=%d\n",
622 sch->schid.ssid, sch->schid.sch_no, todo);
623 if (sch->todo >= todo)
625 /* Get workqueue ref. */
626 if (!get_device(&sch->dev))
629 if (!queue_work(cio_work_q, &sch->todo_work)) {
630 /* Already queued, release workqueue ref. */
631 put_device(&sch->dev);
634 EXPORT_SYMBOL_GPL(css_sched_sch_todo);
636 static void css_sch_todo(struct work_struct *work)
638 struct subchannel *sch;
642 sch = container_of(work, struct subchannel, todo_work);
644 spin_lock_irq(sch->lock);
646 CIO_MSG_EVENT(4, "sch_todo: sch=0.%x.%04x, todo=%d\n", sch->schid.ssid,
647 sch->schid.sch_no, todo);
648 sch->todo = SCH_TODO_NOTHING;
649 spin_unlock_irq(sch->lock);
652 case SCH_TODO_NOTHING:
655 ret = css_evaluate_known_subchannel(sch, 1);
656 if (ret == -EAGAIN) {
657 spin_lock_irq(sch->lock);
658 css_sched_sch_todo(sch, todo);
659 spin_unlock_irq(sch->lock);
663 css_sch_device_unregister(sch);
666 /* Release workqueue ref. */
667 put_device(&sch->dev);
670 static struct idset *slow_subchannel_set;
671 static DEFINE_SPINLOCK(slow_subchannel_lock);
672 static DECLARE_WAIT_QUEUE_HEAD(css_eval_wq);
673 static atomic_t css_eval_scheduled;
675 static int __init slow_subchannel_init(void)
677 atomic_set(&css_eval_scheduled, 0);
678 slow_subchannel_set = idset_sch_new();
679 if (!slow_subchannel_set) {
680 CIO_MSG_EVENT(0, "could not allocate slow subchannel set\n");
686 static int slow_eval_known_fn(struct subchannel *sch, void *data)
691 spin_lock_irq(&slow_subchannel_lock);
692 eval = idset_sch_contains(slow_subchannel_set, sch->schid);
693 idset_sch_del(slow_subchannel_set, sch->schid);
694 spin_unlock_irq(&slow_subchannel_lock);
696 rc = css_evaluate_known_subchannel(sch, 1);
698 css_schedule_eval(sch->schid);
700 * The loop might take long time for platforms with lots of
701 * known devices. Allow scheduling here.
708 static int slow_eval_unknown_fn(struct subchannel_id schid, void *data)
713 spin_lock_irq(&slow_subchannel_lock);
714 eval = idset_sch_contains(slow_subchannel_set, schid);
715 idset_sch_del(slow_subchannel_set, schid);
716 spin_unlock_irq(&slow_subchannel_lock);
718 rc = css_evaluate_new_subchannel(schid, 1);
721 css_schedule_eval(schid);
727 /* These should abort looping */
728 spin_lock_irq(&slow_subchannel_lock);
729 idset_sch_del_subseq(slow_subchannel_set, schid);
730 spin_unlock_irq(&slow_subchannel_lock);
735 /* Allow scheduling here since the containing loop might
742 static void css_slow_path_func(struct work_struct *unused)
746 CIO_TRACE_EVENT(4, "slowpath");
747 for_each_subchannel_staged(slow_eval_known_fn, slow_eval_unknown_fn,
749 spin_lock_irqsave(&slow_subchannel_lock, flags);
750 if (idset_is_empty(slow_subchannel_set)) {
751 atomic_set(&css_eval_scheduled, 0);
752 wake_up(&css_eval_wq);
754 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
757 static DECLARE_DELAYED_WORK(slow_path_work, css_slow_path_func);
758 struct workqueue_struct *cio_work_q;
760 void css_schedule_eval(struct subchannel_id schid)
764 spin_lock_irqsave(&slow_subchannel_lock, flags);
765 idset_sch_add(slow_subchannel_set, schid);
766 atomic_set(&css_eval_scheduled, 1);
767 queue_delayed_work(cio_work_q, &slow_path_work, 0);
768 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
771 void css_schedule_eval_all(void)
775 spin_lock_irqsave(&slow_subchannel_lock, flags);
776 idset_fill(slow_subchannel_set);
777 atomic_set(&css_eval_scheduled, 1);
778 queue_delayed_work(cio_work_q, &slow_path_work, 0);
779 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
782 static int __unset_registered(struct device *dev, void *data)
784 struct idset *set = data;
785 struct subchannel *sch = to_subchannel(dev);
787 idset_sch_del(set, sch->schid);
791 static int __unset_online(struct device *dev, void *data)
793 struct idset *set = data;
794 struct subchannel *sch = to_subchannel(dev);
795 struct ccw_device *cdev = sch_get_cdev(sch);
797 if (cdev && cdev->online)
798 idset_sch_del(set, sch->schid);
803 void css_schedule_eval_cond(enum css_eval_cond cond, unsigned long delay)
808 /* Find unregistered subchannels. */
809 set = idset_sch_new();
812 css_schedule_eval_all();
818 bus_for_each_dev(&css_bus_type, NULL, set, __unset_registered);
820 case CSS_EVAL_NOT_ONLINE:
821 bus_for_each_dev(&css_bus_type, NULL, set, __unset_online);
827 /* Apply to slow_subchannel_set. */
828 spin_lock_irqsave(&slow_subchannel_lock, flags);
829 idset_add_set(slow_subchannel_set, set);
830 atomic_set(&css_eval_scheduled, 1);
831 queue_delayed_work(cio_work_q, &slow_path_work, delay);
832 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
836 void css_wait_for_slow_path(void)
838 flush_workqueue(cio_work_q);
841 /* Schedule reprobing of all unregistered subchannels. */
842 void css_schedule_reprobe(void)
844 /* Schedule with a delay to allow merging of subsequent calls. */
845 css_schedule_eval_cond(CSS_EVAL_UNREG, 1 * HZ);
847 EXPORT_SYMBOL_GPL(css_schedule_reprobe);
850 * Called from the machine check handler for subchannel report words.
852 static void css_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
854 struct subchannel_id mchk_schid;
855 struct subchannel *sch;
858 css_schedule_eval_all();
861 CIO_CRW_EVENT(2, "CRW0 reports slct=%d, oflw=%d, "
862 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
863 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
864 crw0->erc, crw0->rsid);
866 CIO_CRW_EVENT(2, "CRW1 reports slct=%d, oflw=%d, "
867 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
868 crw1->slct, crw1->oflw, crw1->chn, crw1->rsc,
869 crw1->anc, crw1->erc, crw1->rsid);
870 init_subchannel_id(&mchk_schid);
871 mchk_schid.sch_no = crw0->rsid;
873 mchk_schid.ssid = (crw1->rsid >> 4) & 3;
875 if (crw0->erc == CRW_ERC_PMOD) {
876 sch = get_subchannel_by_schid(mchk_schid);
878 css_update_ssd_info(sch);
879 put_device(&sch->dev);
883 * Since we are always presented with IPI in the CRW, we have to
884 * use stsch() to find out if the subchannel in question has come
887 css_evaluate_subchannel(mchk_schid, 0);
891 css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
895 if (css_general_characteristics.mcss) {
896 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
897 css->global_pgid.pgid_high.ext_cssid.cssid =
898 css->id_valid ? css->cssid : 0;
900 css->global_pgid.pgid_high.cpu_addr = stap();
903 css->global_pgid.cpu_id = cpu_id.ident;
904 css->global_pgid.cpu_model = cpu_id.machine;
905 css->global_pgid.tod_high = tod_high;
908 static void channel_subsystem_release(struct device *dev)
910 struct channel_subsystem *css = to_css(dev);
912 mutex_destroy(&css->mutex);
916 static ssize_t real_cssid_show(struct device *dev, struct device_attribute *a,
919 struct channel_subsystem *css = to_css(dev);
924 return sprintf(buf, "%x\n", css->cssid);
926 static DEVICE_ATTR_RO(real_cssid);
928 static ssize_t rescan_store(struct device *dev, struct device_attribute *a,
929 const char *buf, size_t count)
931 CIO_TRACE_EVENT(4, "usr-rescan");
933 css_schedule_eval_all();
938 static DEVICE_ATTR_WO(rescan);
940 static ssize_t cm_enable_show(struct device *dev, struct device_attribute *a,
943 struct channel_subsystem *css = to_css(dev);
946 mutex_lock(&css->mutex);
947 ret = sprintf(buf, "%x\n", css->cm_enabled);
948 mutex_unlock(&css->mutex);
952 static ssize_t cm_enable_store(struct device *dev, struct device_attribute *a,
953 const char *buf, size_t count)
955 struct channel_subsystem *css = to_css(dev);
959 ret = kstrtoul(buf, 16, &val);
962 mutex_lock(&css->mutex);
965 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
968 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
973 mutex_unlock(&css->mutex);
974 return ret < 0 ? ret : count;
976 static DEVICE_ATTR_RW(cm_enable);
978 static umode_t cm_enable_mode(struct kobject *kobj, struct attribute *attr,
981 return css_chsc_characteristics.secm ? attr->mode : 0;
984 static struct attribute *cssdev_attrs[] = {
985 &dev_attr_real_cssid.attr,
986 &dev_attr_rescan.attr,
990 static struct attribute_group cssdev_attr_group = {
991 .attrs = cssdev_attrs,
994 static struct attribute *cssdev_cm_attrs[] = {
995 &dev_attr_cm_enable.attr,
999 static struct attribute_group cssdev_cm_attr_group = {
1000 .attrs = cssdev_cm_attrs,
1001 .is_visible = cm_enable_mode,
1004 static const struct attribute_group *cssdev_attr_groups[] = {
1006 &cssdev_cm_attr_group,
1010 static int __init setup_css(int nr)
1012 struct channel_subsystem *css;
1015 css = kzalloc(sizeof(*css), GFP_KERNEL);
1019 channel_subsystems[nr] = css;
1020 dev_set_name(&css->device, "css%x", nr);
1021 css->device.groups = cssdev_attr_groups;
1022 css->device.release = channel_subsystem_release;
1024 * We currently allocate notifier bits with this (using
1025 * css->device as the device argument with the DMA API)
1026 * and are fine with 64 bit addresses.
1028 ret = dma_coerce_mask_and_coherent(&css->device, DMA_BIT_MASK(64));
1034 mutex_init(&css->mutex);
1035 ret = chsc_get_cssid_iid(nr, &css->cssid, &css->iid);
1037 css->id_valid = true;
1038 pr_info("Partition identifier %01x.%01x\n", css->cssid,
1041 css_generate_pgid(css, (u32) (get_tod_clock() >> 32));
1043 ret = device_register(&css->device);
1045 put_device(&css->device);
1049 css->pseudo_subchannel = kzalloc(sizeof(*css->pseudo_subchannel),
1051 if (!css->pseudo_subchannel) {
1052 device_unregister(&css->device);
1057 css->pseudo_subchannel->dev.parent = &css->device;
1058 css->pseudo_subchannel->dev.release = css_subchannel_release;
1059 mutex_init(&css->pseudo_subchannel->reg_mutex);
1060 ret = css_sch_create_locks(css->pseudo_subchannel);
1062 kfree(css->pseudo_subchannel);
1063 device_unregister(&css->device);
1067 dev_set_name(&css->pseudo_subchannel->dev, "defunct");
1068 ret = device_register(&css->pseudo_subchannel->dev);
1070 put_device(&css->pseudo_subchannel->dev);
1071 device_unregister(&css->device);
1077 channel_subsystems[nr] = NULL;
1081 static int css_reboot_event(struct notifier_block *this,
1082 unsigned long event,
1085 struct channel_subsystem *css;
1090 mutex_lock(&css->mutex);
1091 if (css->cm_enabled)
1092 if (chsc_secm(css, 0))
1094 mutex_unlock(&css->mutex);
1100 static struct notifier_block css_reboot_notifier = {
1101 .notifier_call = css_reboot_event,
1104 #define CIO_DMA_GFP (GFP_KERNEL | __GFP_ZERO)
1105 static struct gen_pool *cio_dma_pool;
1107 /* Currently cio supports only a single css */
1108 struct device *cio_get_dma_css_dev(void)
1110 return &channel_subsystems[0]->device;
1113 struct gen_pool *cio_gp_dma_create(struct device *dma_dev, int nr_pages)
1115 struct gen_pool *gp_dma;
1117 dma_addr_t dma_addr;
1120 gp_dma = gen_pool_create(3, -1);
1123 for (i = 0; i < nr_pages; ++i) {
1124 cpu_addr = dma_alloc_coherent(dma_dev, PAGE_SIZE, &dma_addr,
1128 gen_pool_add_virt(gp_dma, (unsigned long) cpu_addr,
1129 dma_addr, PAGE_SIZE, -1);
1134 static void __gp_dma_free_dma(struct gen_pool *pool,
1135 struct gen_pool_chunk *chunk, void *data)
1137 size_t chunk_size = chunk->end_addr - chunk->start_addr + 1;
1139 dma_free_coherent((struct device *) data, chunk_size,
1140 (void *) chunk->start_addr,
1141 (dma_addr_t) chunk->phys_addr);
1144 void cio_gp_dma_destroy(struct gen_pool *gp_dma, struct device *dma_dev)
1148 /* this is quite ugly but no better idea */
1149 gen_pool_for_each_chunk(gp_dma, __gp_dma_free_dma, dma_dev);
1150 gen_pool_destroy(gp_dma);
1153 static int cio_dma_pool_init(void)
1155 /* No need to free up the resources: compiled in */
1156 cio_dma_pool = cio_gp_dma_create(cio_get_dma_css_dev(), 1);
1162 void *cio_gp_dma_zalloc(struct gen_pool *gp_dma, struct device *dma_dev,
1165 dma_addr_t dma_addr;
1171 addr = gen_pool_alloc(gp_dma, size);
1173 chunk_size = round_up(size, PAGE_SIZE);
1174 addr = (unsigned long) dma_alloc_coherent(dma_dev,
1175 chunk_size, &dma_addr, CIO_DMA_GFP);
1178 gen_pool_add_virt(gp_dma, addr, dma_addr, chunk_size, -1);
1179 addr = gen_pool_alloc(gp_dma, size);
1181 return (void *) addr;
1184 void cio_gp_dma_free(struct gen_pool *gp_dma, void *cpu_addr, size_t size)
1188 memset(cpu_addr, 0, size);
1189 gen_pool_free(gp_dma, (unsigned long) cpu_addr, size);
1193 * Allocate dma memory from the css global pool. Intended for memory not
1194 * specific to any single device within the css. The allocated memory
1195 * is not guaranteed to be 31-bit addressable.
1197 * Caution: Not suitable for early stuff like console.
1199 void *cio_dma_zalloc(size_t size)
1201 return cio_gp_dma_zalloc(cio_dma_pool, cio_get_dma_css_dev(), size);
1204 void cio_dma_free(void *cpu_addr, size_t size)
1206 cio_gp_dma_free(cio_dma_pool, cpu_addr, size);
1210 * Now that the driver core is running, we can setup our channel subsystem.
1211 * The struct subchannel's are created during probing.
1213 static int __init css_bus_init(void)
1221 chsc_determine_css_characteristics();
1222 /* Try to enable MSS. */
1223 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
1227 max_ssid = __MAX_SSID;
1229 ret = slow_subchannel_init();
1233 ret = crw_register_handler(CRW_RSC_SCH, css_process_crw);
1237 if ((ret = bus_register(&css_bus_type)))
1240 /* Setup css structure. */
1241 for (i = 0; i <= MAX_CSS_IDX; i++) {
1244 goto out_unregister;
1246 ret = register_reboot_notifier(&css_reboot_notifier);
1248 goto out_unregister;
1249 ret = cio_dma_pool_init();
1251 goto out_unregister_rn;
1255 /* Enable default isc for I/O subchannels. */
1256 isc_register(IO_SCH_ISC);
1260 unregister_reboot_notifier(&css_reboot_notifier);
1263 struct channel_subsystem *css = channel_subsystems[i];
1264 device_unregister(&css->pseudo_subchannel->dev);
1265 device_unregister(&css->device);
1267 bus_unregister(&css_bus_type);
1269 crw_unregister_handler(CRW_RSC_SCH);
1270 idset_free(slow_subchannel_set);
1271 chsc_init_cleanup();
1272 pr_alert("The CSS device driver initialization failed with "
1277 static void __init css_bus_cleanup(void)
1279 struct channel_subsystem *css;
1282 device_unregister(&css->pseudo_subchannel->dev);
1283 device_unregister(&css->device);
1285 bus_unregister(&css_bus_type);
1286 crw_unregister_handler(CRW_RSC_SCH);
1287 idset_free(slow_subchannel_set);
1288 chsc_init_cleanup();
1289 isc_unregister(IO_SCH_ISC);
1292 static int __init channel_subsystem_init(void)
1296 ret = css_bus_init();
1299 cio_work_q = create_singlethread_workqueue("cio");
1304 ret = io_subchannel_init();
1308 /* Register subchannels which are already in use. */
1309 cio_register_early_subchannels();
1310 /* Start initial subchannel evaluation. */
1311 css_schedule_eval_all();
1315 destroy_workqueue(cio_work_q);
1320 subsys_initcall(channel_subsystem_init);
1322 static int css_settle(struct device_driver *drv, void *unused)
1324 struct css_driver *cssdrv = to_cssdriver(drv);
1327 return cssdrv->settle();
1331 int css_complete_work(void)
1335 /* Wait for the evaluation of subchannels to finish. */
1336 ret = wait_event_interruptible(css_eval_wq,
1337 atomic_read(&css_eval_scheduled) == 0);
1340 flush_workqueue(cio_work_q);
1341 /* Wait for the subchannel type specific initialization to finish */
1342 return bus_for_each_drv(&css_bus_type, NULL, NULL, css_settle);
1347 * Wait for the initialization of devices to finish, to make sure we are
1348 * done with our setup if the search for the root device starts.
1350 static int __init channel_subsystem_init_sync(void)
1352 css_complete_work();
1355 subsys_initcall_sync(channel_subsystem_init_sync);
1357 #ifdef CONFIG_PROC_FS
1358 static ssize_t cio_settle_write(struct file *file, const char __user *buf,
1359 size_t count, loff_t *ppos)
1363 /* Handle pending CRW's. */
1364 crw_wait_for_channel_report();
1365 ret = css_complete_work();
1367 return ret ? ret : count;
1370 static const struct proc_ops cio_settle_proc_ops = {
1371 .proc_open = nonseekable_open,
1372 .proc_write = cio_settle_write,
1373 .proc_lseek = no_llseek,
1376 static int __init cio_settle_init(void)
1378 struct proc_dir_entry *entry;
1380 entry = proc_create("cio_settle", S_IWUSR, NULL, &cio_settle_proc_ops);
1385 device_initcall(cio_settle_init);
1386 #endif /*CONFIG_PROC_FS*/
1388 int sch_is_pseudo_sch(struct subchannel *sch)
1390 if (!sch->dev.parent)
1392 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
1395 static int css_bus_match(struct device *dev, struct device_driver *drv)
1397 struct subchannel *sch = to_subchannel(dev);
1398 struct css_driver *driver = to_cssdriver(drv);
1399 struct css_device_id *id;
1401 /* When driver_override is set, only bind to the matching driver */
1402 if (sch->driver_override && strcmp(sch->driver_override, drv->name))
1405 for (id = driver->subchannel_type; id->match_flags; id++) {
1406 if (sch->st == id->type)
1413 static int css_probe(struct device *dev)
1415 struct subchannel *sch;
1418 sch = to_subchannel(dev);
1419 sch->driver = to_cssdriver(dev->driver);
1420 ret = sch->driver->probe ? sch->driver->probe(sch) : 0;
1426 static void css_remove(struct device *dev)
1428 struct subchannel *sch;
1430 sch = to_subchannel(dev);
1431 if (sch->driver->remove)
1432 sch->driver->remove(sch);
1436 static void css_shutdown(struct device *dev)
1438 struct subchannel *sch;
1440 sch = to_subchannel(dev);
1441 if (sch->driver && sch->driver->shutdown)
1442 sch->driver->shutdown(sch);
1445 static int css_uevent(struct device *dev, struct kobj_uevent_env *env)
1447 struct subchannel *sch = to_subchannel(dev);
1450 ret = add_uevent_var(env, "ST=%01X", sch->st);
1453 ret = add_uevent_var(env, "MODALIAS=css:t%01X", sch->st);
1457 static struct bus_type css_bus_type = {
1459 .match = css_bus_match,
1461 .remove = css_remove,
1462 .shutdown = css_shutdown,
1463 .uevent = css_uevent,
1467 * css_driver_register - register a css driver
1468 * @cdrv: css driver to register
1470 * This is mainly a wrapper around driver_register that sets name
1471 * and bus_type in the embedded struct device_driver correctly.
1473 int css_driver_register(struct css_driver *cdrv)
1475 cdrv->drv.bus = &css_bus_type;
1476 return driver_register(&cdrv->drv);
1478 EXPORT_SYMBOL_GPL(css_driver_register);
1481 * css_driver_unregister - unregister a css driver
1482 * @cdrv: css driver to unregister
1484 * This is a wrapper around driver_unregister.
1486 void css_driver_unregister(struct css_driver *cdrv)
1488 driver_unregister(&cdrv->drv);
1490 EXPORT_SYMBOL_GPL(css_driver_unregister);