2 * drivers/s390/cio/css.c
3 * driver for channel subsystem
5 * Copyright (C) 2002 IBM Deutschland Entwicklung GmbH,
7 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
8 * Cornelia Huck (cornelia.huck@de.ibm.com)
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/device.h>
13 #include <linux/slab.h>
14 #include <linux/errno.h>
15 #include <linux/list.h>
19 #include "cio_debug.h"
25 int css_init_done = 0;
26 static int need_reprobe = 0;
27 static int max_ssid = 0;
29 struct channel_subsystem *css[__MAX_CSSID + 1];
31 int css_characteristics_avail = 0;
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);
52 static struct subchannel *
53 css_alloc_subchannel(struct subchannel_id schid)
55 struct subchannel *sch;
58 sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
60 return ERR_PTR(-ENOMEM);
61 ret = cio_validate_subchannel (sch, schid);
67 if (sch->st != SUBCHANNEL_TYPE_IO) {
68 /* For now we ignore all non-io subchannels. */
70 return ERR_PTR(-EINVAL);
74 * Set intparm to subchannel address.
75 * This is fine even on 64bit since the subchannel is always located
78 sch->schib.pmcw.intparm = (__u32)(unsigned long)sch;
79 ret = cio_modify(sch);
88 css_free_subchannel(struct subchannel *sch)
91 /* Reset intparm to zeroes. */
92 sch->schib.pmcw.intparm = 0;
100 css_subchannel_release(struct device *dev)
102 struct subchannel *sch;
104 sch = to_subchannel(dev);
105 if (!cio_is_console(sch->schid)) {
111 int css_sch_device_register(struct subchannel *sch)
115 mutex_lock(&sch->reg_mutex);
116 ret = device_register(&sch->dev);
117 mutex_unlock(&sch->reg_mutex);
121 void css_sch_device_unregister(struct subchannel *sch)
123 mutex_lock(&sch->reg_mutex);
124 device_unregister(&sch->dev);
125 mutex_unlock(&sch->reg_mutex);
129 css_register_subchannel(struct subchannel *sch)
133 /* Initialize the subchannel structure */
134 sch->dev.parent = &css[0]->device;
135 sch->dev.bus = &css_bus_type;
136 sch->dev.release = &css_subchannel_release;
137 sch->dev.groups = subch_attr_groups;
139 css_get_ssd_info(sch);
141 /* make it known to the system */
142 ret = css_sch_device_register(sch);
144 printk (KERN_WARNING "%s: could not register %s\n",
145 __func__, sch->dev.bus_id);
152 css_probe_device(struct subchannel_id schid)
155 struct subchannel *sch;
157 sch = css_alloc_subchannel(schid);
160 ret = css_register_subchannel(sch);
162 css_free_subchannel(sch);
167 check_subchannel(struct device * dev, void * data)
169 struct subchannel *sch;
170 struct subchannel_id *schid = data;
172 sch = to_subchannel(dev);
173 return schid_equal(&sch->schid, schid);
177 get_subchannel_by_schid(struct subchannel_id schid)
181 dev = bus_find_device(&css_bus_type, NULL,
182 &schid, check_subchannel);
184 return dev ? to_subchannel(dev) : NULL;
187 static int css_get_subchannel_status(struct subchannel *sch)
191 if (stsch(sch->schid, &schib) || !schib.pmcw.dnv)
193 if (sch->schib.pmcw.dnv && (schib.pmcw.dev != sch->schib.pmcw.dev))
194 return CIO_REVALIDATE;
200 static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
202 int event, ret, disc;
204 enum { NONE, UNREGISTER, UNREGISTER_PROBE, REPROBE } action;
206 spin_lock_irqsave(sch->lock, flags);
207 disc = device_is_disconnected(sch);
209 /* Disconnected devices are evaluated directly only.*/
210 spin_unlock_irqrestore(sch->lock, flags);
213 /* No interrupt after machine check - kill pending timers. */
214 device_kill_pending_timer(sch);
215 if (!disc && !slow) {
216 /* Non-disconnected devices are evaluated on the slow path. */
217 spin_unlock_irqrestore(sch->lock, flags);
220 event = css_get_subchannel_status(sch);
221 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, %s, %s path.\n",
222 sch->schid.ssid, sch->schid.sch_no, event,
223 disc ? "disconnected" : "normal",
224 slow ? "slow" : "fast");
225 /* Analyze subchannel status. */
230 /* Check if paths have become available. */
236 /* Prevent unwanted effects when opening lock. */
237 cio_disable_subchannel(sch);
238 device_set_disconnected(sch);
239 /* Ask driver what to do with device. */
241 if (sch->driver && sch->driver->notify) {
242 spin_unlock_irqrestore(sch->lock, flags);
243 ret = sch->driver->notify(&sch->dev, event);
244 spin_lock_irqsave(sch->lock, flags);
250 /* Device will be removed, so no notify necessary. */
252 /* Reprobe because immediate unregister might block. */
255 action = UNREGISTER_PROBE;
259 /* Get device operational again. */
263 /* Perform action. */
267 case UNREGISTER_PROBE:
268 /* Unregister device (will use subchannel lock). */
269 spin_unlock_irqrestore(sch->lock, flags);
270 css_sch_device_unregister(sch);
271 spin_lock_irqsave(sch->lock, flags);
273 /* Reset intparm to zeroes. */
274 sch->schib.pmcw.intparm = 0;
278 device_trigger_reprobe(sch);
283 spin_unlock_irqrestore(sch->lock, flags);
284 /* Probe if necessary. */
285 if (action == UNREGISTER_PROBE)
286 ret = css_probe_device(sch->schid);
291 static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
296 /* Will be done on the slow path. */
299 if (stsch_err(schid, &schib) || !schib.pmcw.dnv) {
300 /* Unusable - ignore. */
303 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, unknown, "
304 "slow path.\n", schid.ssid, schid.sch_no, CIO_OPER);
306 return css_probe_device(schid);
309 static int css_evaluate_subchannel(struct subchannel_id schid, int slow)
311 struct subchannel *sch;
314 sch = get_subchannel_by_schid(schid);
316 ret = css_evaluate_known_subchannel(sch, slow);
317 put_device(&sch->dev);
319 ret = css_evaluate_new_subchannel(schid, slow);
325 css_rescan_devices(struct subchannel_id schid, void *data)
327 return css_evaluate_subchannel(schid, 1);
330 struct slow_subchannel {
331 struct list_head slow_list;
332 struct subchannel_id schid;
335 static LIST_HEAD(slow_subchannels_head);
336 static DEFINE_SPINLOCK(slow_subchannel_lock);
339 css_trigger_slow_path(struct work_struct *unused)
341 CIO_TRACE_EVENT(4, "slowpath");
345 for_each_subchannel(css_rescan_devices, NULL);
349 spin_lock_irq(&slow_subchannel_lock);
350 while (!list_empty(&slow_subchannels_head)) {
351 struct slow_subchannel *slow_sch =
352 list_entry(slow_subchannels_head.next,
353 struct slow_subchannel, slow_list);
355 list_del_init(slow_subchannels_head.next);
356 spin_unlock_irq(&slow_subchannel_lock);
357 css_evaluate_subchannel(slow_sch->schid, 1);
358 spin_lock_irq(&slow_subchannel_lock);
361 spin_unlock_irq(&slow_subchannel_lock);
364 DECLARE_WORK(slow_path_work, css_trigger_slow_path);
365 struct workqueue_struct *slow_path_wq;
367 /* Reprobe subchannel if unregistered. */
368 static int reprobe_subchannel(struct subchannel_id schid, void *data)
370 struct subchannel *sch;
373 CIO_DEBUG(KERN_INFO, 6, "cio: reprobe 0.%x.%04x\n",
374 schid.ssid, schid.sch_no);
378 sch = get_subchannel_by_schid(schid);
381 put_device(&sch->dev);
385 ret = css_probe_device(schid);
391 /* These should abort looping */
400 /* Work function used to reprobe all unregistered subchannels. */
401 static void reprobe_all(struct work_struct *unused)
405 CIO_MSG_EVENT(2, "reprobe start\n");
408 /* Make sure initial subchannel scan is done. */
409 wait_event(ccw_device_init_wq,
410 atomic_read(&ccw_device_init_count) == 0);
411 ret = for_each_subchannel(reprobe_subchannel, NULL);
413 CIO_MSG_EVENT(2, "reprobe done (rc=%d, need_reprobe=%d)\n", ret,
417 static DECLARE_WORK(css_reprobe_work, reprobe_all);
419 /* Schedule reprobing of all unregistered subchannels. */
420 void css_schedule_reprobe(void)
423 queue_work(ccw_device_work, &css_reprobe_work);
426 EXPORT_SYMBOL_GPL(css_schedule_reprobe);
429 * Rescan for new devices. FIXME: This is slow.
430 * This function is called when we have lost CRWs due to overflows and we have
431 * to do subchannel housekeeping.
434 css_reiterate_subchannels(void)
436 css_clear_subchannel_slow_list();
441 * Called from the machine check handler for subchannel report words.
444 css_process_crw(int rsid1, int rsid2)
447 struct subchannel_id mchk_schid;
449 CIO_CRW_EVENT(2, "source is subchannel %04X, subsystem id %x\n",
453 /* We need to iterate all subchannels anyway. */
456 init_subchannel_id(&mchk_schid);
457 mchk_schid.sch_no = rsid1;
459 mchk_schid.ssid = (rsid2 >> 8) & 3;
462 * Since we are always presented with IPI in the CRW, we have to
463 * use stsch() to find out if the subchannel in question has come
466 ret = css_evaluate_subchannel(mchk_schid, 0);
467 if (ret == -EAGAIN) {
468 if (css_enqueue_subchannel_slow(mchk_schid)) {
469 css_clear_subchannel_slow_list();
477 __init_channel_subsystem(struct subchannel_id schid, void *data)
479 struct subchannel *sch;
482 if (cio_is_console(schid))
483 sch = cio_get_console_subchannel();
485 sch = css_alloc_subchannel(schid);
494 panic("Out of memory in init_channel_subsystem\n");
495 /* -ENXIO: no more subchannels. */
498 /* -EIO: this subchannel set not supported. */
506 * We register ALL valid subchannels in ioinfo, even those
507 * that have been present before init_channel_subsystem.
508 * These subchannels can't have been registered yet (kmalloc
509 * not working) so we do it now. This is true e.g. for the
510 * console subchannel.
512 css_register_subchannel(sch);
517 css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
519 if (css_characteristics_avail && css_general_characteristics.mcss) {
520 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
521 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
524 css->global_pgid.pgid_high.cpu_addr = hard_smp_processor_id();
526 css->global_pgid.pgid_high.cpu_addr = 0;
529 css->global_pgid.cpu_id = ((cpuid_t *) __LC_CPUID)->ident;
530 css->global_pgid.cpu_model = ((cpuid_t *) __LC_CPUID)->machine;
531 css->global_pgid.tod_high = tod_high;
536 channel_subsystem_release(struct device *dev)
538 struct channel_subsystem *css;
541 mutex_destroy(&css->mutex);
546 css_cm_enable_show(struct device *dev, struct device_attribute *attr,
549 struct channel_subsystem *css = to_css(dev);
553 return sprintf(buf, "%x\n", css->cm_enabled);
557 css_cm_enable_store(struct device *dev, struct device_attribute *attr,
558 const char *buf, size_t count)
560 struct channel_subsystem *css = to_css(dev);
565 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
568 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
573 return ret < 0 ? ret : count;
576 static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
578 static int __init setup_css(int nr)
583 memset(css[nr], 0, sizeof(struct channel_subsystem));
584 css[nr]->pseudo_subchannel =
585 kzalloc(sizeof(*css[nr]->pseudo_subchannel), GFP_KERNEL);
586 if (!css[nr]->pseudo_subchannel)
588 css[nr]->pseudo_subchannel->dev.parent = &css[nr]->device;
589 css[nr]->pseudo_subchannel->dev.release = css_subchannel_release;
590 sprintf(css[nr]->pseudo_subchannel->dev.bus_id, "defunct");
591 ret = cio_create_sch_lock(css[nr]->pseudo_subchannel);
593 kfree(css[nr]->pseudo_subchannel);
596 mutex_init(&css[nr]->mutex);
599 sprintf(css[nr]->device.bus_id, "css%x", nr);
600 css[nr]->device.release = channel_subsystem_release;
601 tod_high = (u32) (get_clock() >> 32);
602 css_generate_pgid(css[nr], tod_high);
607 * Now that the driver core is running, we can setup our channel subsystem.
608 * The struct subchannel's are created during probing (except for the
609 * static console subchannel).
612 init_channel_subsystem (void)
616 if (chsc_determine_css_characteristics() == 0)
617 css_characteristics_avail = 1;
619 if ((ret = bus_register(&css_bus_type)))
622 /* Try to enable MSS. */
623 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
625 case 0: /* Success. */
626 max_ssid = __MAX_SSID;
633 /* Setup css structure. */
634 for (i = 0; i <= __MAX_CSSID; i++) {
635 css[i] = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
643 ret = device_register(&css[i]->device);
646 if (css_characteristics_avail &&
647 css_chsc_characteristics.secm) {
648 ret = device_create_file(&css[i]->device,
649 &dev_attr_cm_enable);
653 ret = device_register(&css[i]->pseudo_subchannel->dev);
661 for_each_subchannel(__init_channel_subsystem, NULL);
664 device_remove_file(&css[i]->device, &dev_attr_cm_enable);
666 device_unregister(&css[i]->device);
668 kfree(css[i]->pseudo_subchannel->lock);
669 kfree(css[i]->pseudo_subchannel);
675 device_unregister(&css[i]->pseudo_subchannel->dev);
676 if (css_characteristics_avail && css_chsc_characteristics.secm)
677 device_remove_file(&css[i]->device,
678 &dev_attr_cm_enable);
679 device_unregister(&css[i]->device);
682 bus_unregister(&css_bus_type);
687 int sch_is_pseudo_sch(struct subchannel *sch)
689 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
693 * find a driver for a subchannel. They identify by the subchannel
694 * type with the exception that the console subchannel driver has its own
695 * subchannel type although the device is an i/o subchannel
698 css_bus_match (struct device *dev, struct device_driver *drv)
700 struct subchannel *sch = container_of (dev, struct subchannel, dev);
701 struct css_driver *driver = container_of (drv, struct css_driver, drv);
703 if (sch->st == driver->subchannel_type)
710 css_probe (struct device *dev)
712 struct subchannel *sch;
714 sch = to_subchannel(dev);
715 sch->driver = container_of (dev->driver, struct css_driver, drv);
716 return (sch->driver->probe ? sch->driver->probe(sch) : 0);
720 css_remove (struct device *dev)
722 struct subchannel *sch;
724 sch = to_subchannel(dev);
725 return (sch->driver->remove ? sch->driver->remove(sch) : 0);
729 css_shutdown (struct device *dev)
731 struct subchannel *sch;
733 sch = to_subchannel(dev);
734 if (sch->driver->shutdown)
735 sch->driver->shutdown(sch);
738 struct bus_type css_bus_type = {
740 .match = css_bus_match,
742 .remove = css_remove,
743 .shutdown = css_shutdown,
746 subsys_initcall(init_channel_subsystem);
749 css_enqueue_subchannel_slow(struct subchannel_id schid)
751 struct slow_subchannel *new_slow_sch;
754 new_slow_sch = kzalloc(sizeof(struct slow_subchannel), GFP_ATOMIC);
757 new_slow_sch->schid = schid;
758 spin_lock_irqsave(&slow_subchannel_lock, flags);
759 list_add_tail(&new_slow_sch->slow_list, &slow_subchannels_head);
760 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
765 css_clear_subchannel_slow_list(void)
769 spin_lock_irqsave(&slow_subchannel_lock, flags);
770 while (!list_empty(&slow_subchannels_head)) {
771 struct slow_subchannel *slow_sch =
772 list_entry(slow_subchannels_head.next,
773 struct slow_subchannel, slow_list);
775 list_del_init(slow_subchannels_head.next);
778 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
784 css_slow_subchannels_exist(void)
786 return (!list_empty(&slow_subchannels_head));
789 MODULE_LICENSE("GPL");
790 EXPORT_SYMBOL(css_bus_type);
791 EXPORT_SYMBOL_GPL(css_characteristics_avail);