blob: 3b2245f58bdeeb4f41e3fd85e38ebe8e50fa3a7a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02002 * driver for channel subsystem
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Sebastian Ott34aec072010-10-25 16:10:28 +02004 * Copyright IBM Corp. 2002, 2010
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02005 *
6 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
7 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
Michael Ernste6d5a422008-12-25 13:39:36 +01009
10#define KMSG_COMPONENT "cio"
11#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#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>
Cornelia Hucka55360d2007-10-12 16:11:20 +020019#include <linux/reboot.h>
Sebastian Ottdcbd16d2009-06-16 10:30:22 +020020#include <linux/suspend.h>
Sebastian Ott879acca52010-02-26 22:37:25 +010021#include <linux/proc_fs.h>
Cornelia Huck3a3fc292008-07-14 09:58:58 +020022#include <asm/isc.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010023#include <asm/crw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "css.h"
26#include "cio.h"
27#include "cio_debug.h"
28#include "ioasm.h"
29#include "chsc.h"
Peter Oberparleiter40154b82006-06-29 14:57:03 +020030#include "device.h"
Peter Oberparleiter83b33702007-04-27 16:01:34 +020031#include "idset.h"
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020032#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034int css_init_done = 0;
Sebastian Ottb0a285d2009-09-22 22:58:37 +020035int max_ssid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Cornelia Huck7c9f4e32007-10-12 16:11:13 +020037struct channel_subsystem *channel_subsystems[__MAX_CSSID + 1];
Sebastian Ott3041b6a2011-03-15 17:08:31 +010038static struct bus_type css_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Heiko Carstens4d284ca2007-02-05 21:18:53 +010040int
Cornelia Huckf97a56f2006-01-06 00:19:22 -080041for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *data)
42{
43 struct subchannel_id schid;
44 int ret;
45
46 init_subchannel_id(&schid);
47 ret = -ENODEV;
48 do {
Cornelia Huckfb6958a2006-01-06 00:19:25 -080049 do {
50 ret = fn(schid, data);
51 if (ret)
52 break;
53 } while (schid.sch_no++ < __MAX_SUBCHANNEL);
54 schid.sch_no = 0;
55 } while (schid.ssid++ < max_ssid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -080056 return ret;
57}
58
Peter Oberparleitere82a1562008-01-26 14:10:48 +010059struct cb_data {
60 void *data;
61 struct idset *set;
62 int (*fn_known_sch)(struct subchannel *, void *);
63 int (*fn_unknown_sch)(struct subchannel_id, void *);
64};
65
66static int call_fn_known_sch(struct device *dev, void *data)
67{
68 struct subchannel *sch = to_subchannel(dev);
69 struct cb_data *cb = data;
70 int rc = 0;
71
72 idset_sch_del(cb->set, sch->schid);
73 if (cb->fn_known_sch)
74 rc = cb->fn_known_sch(sch, cb->data);
75 return rc;
76}
77
78static int call_fn_unknown_sch(struct subchannel_id schid, void *data)
79{
80 struct cb_data *cb = data;
81 int rc = 0;
82
83 if (idset_sch_contains(cb->set, schid))
84 rc = cb->fn_unknown_sch(schid, cb->data);
85 return rc;
86}
87
Sebastian Ott90ac24a2009-03-26 15:24:11 +010088static int call_fn_all_sch(struct subchannel_id schid, void *data)
89{
90 struct cb_data *cb = data;
91 struct subchannel *sch;
92 int rc = 0;
93
94 sch = get_subchannel_by_schid(schid);
95 if (sch) {
96 if (cb->fn_known_sch)
97 rc = cb->fn_known_sch(sch, cb->data);
98 put_device(&sch->dev);
99 } else {
100 if (cb->fn_unknown_sch)
101 rc = cb->fn_unknown_sch(schid, cb->data);
102 }
103
104 return rc;
105}
106
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100107int for_each_subchannel_staged(int (*fn_known)(struct subchannel *, void *),
108 int (*fn_unknown)(struct subchannel_id,
109 void *), void *data)
110{
111 struct cb_data cb;
112 int rc;
113
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100114 cb.data = data;
115 cb.fn_known_sch = fn_known;
116 cb.fn_unknown_sch = fn_unknown;
Sebastian Ott90ac24a2009-03-26 15:24:11 +0100117
118 cb.set = idset_sch_new();
119 if (!cb.set)
120 /* fall back to brute force scanning in case of oom */
121 return for_each_subchannel(call_fn_all_sch, &cb);
122
123 idset_fill(cb.set);
124
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100125 /* Process registered subchannels. */
126 rc = bus_for_each_dev(&css_bus_type, NULL, &cb, call_fn_known_sch);
127 if (rc)
128 goto out;
129 /* Process unregistered subchannels. */
130 if (fn_unknown)
131 rc = for_each_subchannel(call_fn_unknown_sch, &cb);
132out:
133 idset_free(cb.set);
134
135 return rc;
136}
137
Peter Oberparleiter390935a2009-12-07 12:51:18 +0100138static void css_sch_todo(struct work_struct *work);
139
Sebastian Ottc135ad12013-04-13 12:58:55 +0200140static void css_subchannel_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Sebastian Ott863fc842013-04-13 13:01:50 +0200142 struct subchannel *sch = to_subchannel(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Sebastian Ott863fc842013-04-13 13:01:50 +0200144 sch->config.intparm = 0;
145 cio_commit_config(sch);
146 kfree(sch->lock);
147 kfree(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Sebastian Ott863fc842013-04-13 13:01:50 +0200150struct subchannel *css_alloc_subchannel(struct subchannel_id schid)
Sebastian Ottc135ad12013-04-13 12:58:55 +0200151{
152 struct subchannel *sch;
153 int ret;
154
155 sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
156 if (sch == NULL)
157 return ERR_PTR(-ENOMEM);
158 ret = cio_validate_subchannel (sch, schid);
159 if (ret < 0) {
160 kfree(sch);
161 return ERR_PTR(ret);
162 }
163 INIT_WORK(&sch->todo_work, css_sch_todo);
164 sch->dev.release = &css_subchannel_release;
165 device_initialize(&sch->dev);
166 return sch;
167}
168
Cornelia Huck07c6a332007-07-27 12:29:10 +0200169static int css_sch_device_register(struct subchannel *sch)
Cornelia Huck6ab48792006-07-12 16:39:50 +0200170{
171 int ret;
172
173 mutex_lock(&sch->reg_mutex);
Sebastian Ott6ee4fec2009-09-11 10:28:25 +0200174 dev_set_name(&sch->dev, "0.%x.%04x", sch->schid.ssid,
175 sch->schid.sch_no);
Sebastian Ottc135ad12013-04-13 12:58:55 +0200176 ret = device_add(&sch->dev);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200177 mutex_unlock(&sch->reg_mutex);
178 return ret;
179}
180
Cornelia Huck44a1c192008-07-14 09:58:47 +0200181/**
182 * css_sch_device_unregister - unregister a subchannel
183 * @sch: subchannel to be unregistered
184 */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200185void css_sch_device_unregister(struct subchannel *sch)
186{
187 mutex_lock(&sch->reg_mutex);
Sebastian Ottef60cd12008-07-14 09:59:20 +0200188 if (device_is_registered(&sch->dev))
189 device_unregister(&sch->dev);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200190 mutex_unlock(&sch->reg_mutex);
191}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200192EXPORT_SYMBOL_GPL(css_sch_device_unregister);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200193
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200194static void ssd_from_pmcw(struct chsc_ssd_info *ssd, struct pmcw *pmcw)
195{
196 int i;
197 int mask;
198
199 memset(ssd, 0, sizeof(struct chsc_ssd_info));
200 ssd->path_mask = pmcw->pim;
201 for (i = 0; i < 8; i++) {
202 mask = 0x80 >> i;
203 if (pmcw->pim & mask) {
204 chp_id_init(&ssd->chpid[i]);
205 ssd->chpid[i].id = pmcw->chpid[i];
206 }
207 }
208}
209
210static void ssd_register_chpids(struct chsc_ssd_info *ssd)
211{
212 int i;
213 int mask;
214
215 for (i = 0; i < 8; i++) {
216 mask = 0x80 >> i;
217 if (ssd->path_mask & mask)
218 if (!chp_is_registered(ssd->chpid[i]))
219 chp_new(ssd->chpid[i]);
220 }
221}
222
223void css_update_ssd_info(struct subchannel *sch)
224{
225 int ret;
226
Sebastian Ott14556b32013-04-13 13:03:54 +0200227 ret = chsc_get_ssd_info(sch->schid, &sch->ssd_info);
228 if (ret)
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200229 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
Sebastian Ott14556b32013-04-13 13:03:54 +0200230
231 ssd_register_chpids(&sch->ssd_info);
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200232}
233
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200234static ssize_t type_show(struct device *dev, struct device_attribute *attr,
235 char *buf)
236{
237 struct subchannel *sch = to_subchannel(dev);
238
239 return sprintf(buf, "%01x\n", sch->st);
240}
241
242static DEVICE_ATTR(type, 0444, type_show, NULL);
243
244static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
245 char *buf)
246{
247 struct subchannel *sch = to_subchannel(dev);
248
249 return sprintf(buf, "css:t%01X\n", sch->st);
250}
251
252static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
253
254static struct attribute *subch_attrs[] = {
255 &dev_attr_type.attr,
256 &dev_attr_modalias.attr,
257 NULL,
258};
259
260static struct attribute_group subch_attr_group = {
261 .attrs = subch_attrs,
262};
263
David Brownella4dbd672009-06-24 10:06:31 -0700264static const struct attribute_group *default_subch_attr_groups[] = {
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200265 &subch_attr_group,
266 NULL,
267};
268
Sebastian Ott14556b32013-04-13 13:03:54 +0200269int css_register_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 int ret;
272
273 /* Initialize the subchannel structure */
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200274 sch->dev.parent = &channel_subsystems[0]->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 sch->dev.bus = &css_bus_type;
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200276 sch->dev.groups = default_subch_attr_groups;
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200277 /*
278 * We don't want to generate uevents for I/O subchannels that don't
279 * have a working ccw device behind them since they will be
280 * unregistered before they can be used anyway, so we delay the add
281 * uevent until after device recognition was successful.
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200282 * Note that we suppress the uevent for all subchannel types;
283 * the subchannel driver can decide itself when it wants to inform
284 * userspace of its existence.
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200285 */
Ming Leif67f1292009-03-01 21:10:49 +0800286 dev_set_uevent_suppress(&sch->dev, 1);
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200287 css_update_ssd_info(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* make it known to the system */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200289 ret = css_sch_device_register(sch);
Cornelia Huck7674da72006-12-08 15:54:21 +0100290 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200291 CIO_MSG_EVENT(0, "Could not register sch 0.%x.%04x: %d\n",
292 sch->schid.ssid, sch->schid.sch_no, ret);
Cornelia Huck7674da72006-12-08 15:54:21 +0100293 return ret;
294 }
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200295 if (!sch->driver) {
296 /*
297 * No driver matched. Generate the uevent now so that
298 * a fitting driver module may be loaded based on the
299 * modalias.
300 */
Ming Leif67f1292009-03-01 21:10:49 +0800301 dev_set_uevent_suppress(&sch->dev, 0);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200302 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return ret;
305}
306
Cornelia Huckc820de32008-07-14 09:58:45 +0200307int css_probe_device(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 int ret;
310 struct subchannel *sch;
311
Sebastian Ott14556b32013-04-13 13:03:54 +0200312 sch = css_alloc_subchannel(schid);
313 if (IS_ERR(sch))
314 return PTR_ERR(sch);
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 ret = css_register_subchannel(sch);
Sebastian Ott863fc842013-04-13 13:01:50 +0200317 if (ret)
318 put_device(&sch->dev);
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return ret;
321}
322
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700323static int
324check_subchannel(struct device * dev, void * data)
325{
326 struct subchannel *sch;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800327 struct subchannel_id *schid = data;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700328
329 sch = to_subchannel(dev);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800330 return schid_equal(&sch->schid, schid);
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800334get_subchannel_by_schid(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 struct device *dev;
337
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700338 dev = bus_find_device(&css_bus_type, NULL,
Cornelia Huck12975ae2006-10-11 15:31:47 +0200339 &schid, check_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700341 return dev ? to_subchannel(dev) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100344/**
345 * css_sch_is_valid() - check if a subchannel is valid
346 * @schib: subchannel information block for the subchannel
347 */
348int css_sch_is_valid(struct schib *schib)
349{
350 if ((schib->pmcw.st == SUBCHANNEL_TYPE_IO) && !schib->pmcw.dnv)
351 return 0;
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200352 if ((schib->pmcw.st == SUBCHANNEL_TYPE_MSG) && !schib->pmcw.w)
353 return 0;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100354 return 1;
355}
356EXPORT_SYMBOL_GPL(css_sch_is_valid);
357
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200358static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
359{
360 struct schib schib;
361
362 if (!slow) {
363 /* Will be done on the slow path. */
364 return -EAGAIN;
365 }
Sebastian Ottcec85462012-10-15 12:24:56 +0200366 if (stsch_err(schid, &schib)) {
367 /* Subchannel is not provided. */
368 return -ENXIO;
369 }
370 if (!css_sch_is_valid(&schib)) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200371 /* Unusable - ignore. */
372 return 0;
373 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100374 CIO_MSG_EVENT(4, "event: sch 0.%x.%04x, new\n", schid.ssid,
375 schid.sch_no);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200376
377 return css_probe_device(schid);
378}
379
Cornelia Huckc820de32008-07-14 09:58:45 +0200380static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
381{
382 int ret = 0;
383
384 if (sch->driver) {
385 if (sch->driver->sch_event)
386 ret = sch->driver->sch_event(sch, slow);
387 else
388 dev_dbg(&sch->dev,
389 "Got subchannel machine check but "
390 "no sch_event handler provided.\n");
391 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100392 if (ret != 0 && ret != -EAGAIN) {
393 CIO_MSG_EVENT(2, "eval: sch 0.%x.%04x, rc=%d\n",
394 sch->schid.ssid, sch->schid.sch_no, ret);
395 }
Cornelia Huckc820de32008-07-14 09:58:45 +0200396 return ret;
397}
398
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200399static void css_evaluate_subchannel(struct subchannel_id schid, int slow)
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200400{
401 struct subchannel *sch;
402 int ret;
403
404 sch = get_subchannel_by_schid(schid);
405 if (sch) {
406 ret = css_evaluate_known_subchannel(sch, slow);
407 put_device(&sch->dev);
408 } else
409 ret = css_evaluate_new_subchannel(schid, slow);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200410 if (ret == -EAGAIN)
411 css_schedule_eval(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Sebastian Ott817e5002011-12-01 13:32:19 +0100414/**
415 * css_sched_sch_todo - schedule a subchannel operation
416 * @sch: subchannel
417 * @todo: todo
418 *
419 * Schedule the operation identified by @todo to be performed on the slow path
420 * workqueue. Do nothing if another operation with higher priority is already
421 * scheduled. Needs to be called with subchannel lock held.
422 */
423void css_sched_sch_todo(struct subchannel *sch, enum sch_todo todo)
424{
425 CIO_MSG_EVENT(4, "sch_todo: sched sch=0.%x.%04x todo=%d\n",
426 sch->schid.ssid, sch->schid.sch_no, todo);
427 if (sch->todo >= todo)
428 return;
429 /* Get workqueue ref. */
430 if (!get_device(&sch->dev))
431 return;
432 sch->todo = todo;
433 if (!queue_work(cio_work_q, &sch->todo_work)) {
434 /* Already queued, release workqueue ref. */
435 put_device(&sch->dev);
436 }
437}
Sebastian Ott01c5e6d2012-08-28 16:42:37 +0200438EXPORT_SYMBOL_GPL(css_sched_sch_todo);
Sebastian Ott817e5002011-12-01 13:32:19 +0100439
440static void css_sch_todo(struct work_struct *work)
441{
442 struct subchannel *sch;
443 enum sch_todo todo;
444 int ret;
445
446 sch = container_of(work, struct subchannel, todo_work);
447 /* Find out todo. */
448 spin_lock_irq(sch->lock);
449 todo = sch->todo;
450 CIO_MSG_EVENT(4, "sch_todo: sch=0.%x.%04x, todo=%d\n", sch->schid.ssid,
451 sch->schid.sch_no, todo);
452 sch->todo = SCH_TODO_NOTHING;
453 spin_unlock_irq(sch->lock);
454 /* Perform todo. */
455 switch (todo) {
456 case SCH_TODO_NOTHING:
457 break;
458 case SCH_TODO_EVAL:
459 ret = css_evaluate_known_subchannel(sch, 1);
460 if (ret == -EAGAIN) {
461 spin_lock_irq(sch->lock);
462 css_sched_sch_todo(sch, todo);
463 spin_unlock_irq(sch->lock);
464 }
465 break;
466 case SCH_TODO_UNREG:
467 css_sch_device_unregister(sch);
468 break;
469 }
470 /* Release workqueue ref. */
471 put_device(&sch->dev);
472}
473
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200474static struct idset *slow_subchannel_set;
475static spinlock_t slow_subchannel_lock;
Sebastian Ott25530552009-09-22 22:58:34 +0200476static wait_queue_head_t css_eval_wq;
477static atomic_t css_eval_scheduled;
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200478
479static int __init slow_subchannel_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200481 spin_lock_init(&slow_subchannel_lock);
Sebastian Ott25530552009-09-22 22:58:34 +0200482 atomic_set(&css_eval_scheduled, 0);
483 init_waitqueue_head(&css_eval_wq);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200484 slow_subchannel_set = idset_sch_new();
485 if (!slow_subchannel_set) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200486 CIO_MSG_EVENT(0, "could not allocate slow subchannel set\n");
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200487 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200489 return 0;
490}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100492static int slow_eval_known_fn(struct subchannel *sch, void *data)
493{
494 int eval;
495 int rc;
496
497 spin_lock_irq(&slow_subchannel_lock);
498 eval = idset_sch_contains(slow_subchannel_set, sch->schid);
499 idset_sch_del(slow_subchannel_set, sch->schid);
500 spin_unlock_irq(&slow_subchannel_lock);
501 if (eval) {
502 rc = css_evaluate_known_subchannel(sch, 1);
503 if (rc == -EAGAIN)
504 css_schedule_eval(sch->schid);
505 }
506 return 0;
507}
508
509static int slow_eval_unknown_fn(struct subchannel_id schid, void *data)
510{
511 int eval;
512 int rc = 0;
513
514 spin_lock_irq(&slow_subchannel_lock);
515 eval = idset_sch_contains(slow_subchannel_set, schid);
516 idset_sch_del(slow_subchannel_set, schid);
517 spin_unlock_irq(&slow_subchannel_lock);
518 if (eval) {
519 rc = css_evaluate_new_subchannel(schid, 1);
520 switch (rc) {
521 case -EAGAIN:
522 css_schedule_eval(schid);
523 rc = 0;
524 break;
525 case -ENXIO:
526 case -ENOMEM:
527 case -EIO:
528 /* These should abort looping */
Sebastian Ottcec85462012-10-15 12:24:56 +0200529 idset_sch_del_subseq(slow_subchannel_set, schid);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100530 break;
531 default:
532 rc = 0;
533 }
534 }
535 return rc;
536}
537
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200538static void css_slow_path_func(struct work_struct *unused)
539{
Sebastian Ott25530552009-09-22 22:58:34 +0200540 unsigned long flags;
541
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200542 CIO_TRACE_EVENT(4, "slowpath");
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100543 for_each_subchannel_staged(slow_eval_known_fn, slow_eval_unknown_fn,
544 NULL);
Sebastian Ott25530552009-09-22 22:58:34 +0200545 spin_lock_irqsave(&slow_subchannel_lock, flags);
546 if (idset_is_empty(slow_subchannel_set)) {
547 atomic_set(&css_eval_scheduled, 0);
548 wake_up(&css_eval_wq);
549 }
550 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200553static DECLARE_WORK(slow_path_work, css_slow_path_func);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100554struct workqueue_struct *cio_work_q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200556void css_schedule_eval(struct subchannel_id schid)
557{
558 unsigned long flags;
559
560 spin_lock_irqsave(&slow_subchannel_lock, flags);
561 idset_sch_add(slow_subchannel_set, schid);
Sebastian Ott25530552009-09-22 22:58:34 +0200562 atomic_set(&css_eval_scheduled, 1);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100563 queue_work(cio_work_q, &slow_path_work);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200564 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
565}
566
567void css_schedule_eval_all(void)
568{
569 unsigned long flags;
570
571 spin_lock_irqsave(&slow_subchannel_lock, flags);
572 idset_fill(slow_subchannel_set);
Sebastian Ott25530552009-09-22 22:58:34 +0200573 atomic_set(&css_eval_scheduled, 1);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100574 queue_work(cio_work_q, &slow_path_work);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200575 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
576}
577
Sebastian Ott703e5c92009-09-22 22:58:38 +0200578static int __unset_registered(struct device *dev, void *data)
579{
580 struct idset *set = data;
581 struct subchannel *sch = to_subchannel(dev);
582
583 idset_sch_del(set, sch->schid);
584 return 0;
585}
586
Sebastian Otta8481c22010-10-25 16:10:23 +0200587static void css_schedule_eval_all_unreg(void)
Sebastian Ott703e5c92009-09-22 22:58:38 +0200588{
589 unsigned long flags;
590 struct idset *unreg_set;
591
592 /* Find unregistered subchannels. */
593 unreg_set = idset_sch_new();
594 if (!unreg_set) {
595 /* Fallback. */
596 css_schedule_eval_all();
597 return;
598 }
599 idset_fill(unreg_set);
600 bus_for_each_dev(&css_bus_type, NULL, unreg_set, __unset_registered);
601 /* Apply to slow_subchannel_set. */
602 spin_lock_irqsave(&slow_subchannel_lock, flags);
603 idset_add_set(slow_subchannel_set, unreg_set);
604 atomic_set(&css_eval_scheduled, 1);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100605 queue_work(cio_work_q, &slow_path_work);
Sebastian Ott703e5c92009-09-22 22:58:38 +0200606 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
607 idset_free(unreg_set);
608}
609
Cornelia Huck22806dc2008-04-17 07:45:59 +0200610void css_wait_for_slow_path(void)
611{
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100612 flush_workqueue(cio_work_q);
Cornelia Huck22806dc2008-04-17 07:45:59 +0200613}
614
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200615/* Schedule reprobing of all unregistered subchannels. */
616void css_schedule_reprobe(void)
617{
Sebastian Ott703e5c92009-09-22 22:58:38 +0200618 css_schedule_eval_all_unreg();
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200619}
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200620EXPORT_SYMBOL_GPL(css_schedule_reprobe);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 * Called from the machine check handler for subchannel report words.
624 */
Cornelia Huckc1156182008-07-14 09:58:46 +0200625static void css_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800627 struct subchannel_id mchk_schid;
Sebastian Ott4bc4e962011-01-05 12:47:58 +0100628 struct subchannel *sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Cornelia Huckc1156182008-07-14 09:58:46 +0200630 if (overflow) {
631 css_schedule_eval_all();
632 return;
633 }
634 CIO_CRW_EVENT(2, "CRW0 reports slct=%d, oflw=%d, "
635 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
636 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
637 crw0->erc, crw0->rsid);
638 if (crw1)
639 CIO_CRW_EVENT(2, "CRW1 reports slct=%d, oflw=%d, "
640 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
641 crw1->slct, crw1->oflw, crw1->chn, crw1->rsc,
642 crw1->anc, crw1->erc, crw1->rsid);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800643 init_subchannel_id(&mchk_schid);
Cornelia Huckc1156182008-07-14 09:58:46 +0200644 mchk_schid.sch_no = crw0->rsid;
645 if (crw1)
Sebastian Ott8d7bfb42010-12-01 10:08:02 +0100646 mchk_schid.ssid = (crw1->rsid >> 4) & 3;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800647
Sebastian Ott4bc4e962011-01-05 12:47:58 +0100648 if (crw0->erc == CRW_ERC_PMOD) {
649 sch = get_subchannel_by_schid(mchk_schid);
650 if (sch) {
651 css_update_ssd_info(sch);
652 put_device(&sch->dev);
653 }
654 }
Cornelia Huckc1156182008-07-14 09:58:46 +0200655 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 * Since we are always presented with IPI in the CRW, we have to
657 * use stsch() to find out if the subchannel in question has come
658 * or gone.
659 */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200660 css_evaluate_subchannel(mchk_schid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663static void __init
Cornelia Hucka28c6942006-01-06 00:19:23 -0800664css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Martin Schwidefsky94038a92010-05-17 10:00:00 +0200666 struct cpuid cpu_id;
667
Cornelia Huck75784c02008-07-14 09:58:57 +0200668 if (css_general_characteristics.mcss) {
Cornelia Hucka28c6942006-01-06 00:19:23 -0800669 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
670 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
671 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672#ifdef CONFIG_SMP
Martin Schwidefsky7b468482009-03-26 15:24:42 +0100673 css->global_pgid.pgid_high.cpu_addr = stap();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674#else
Cornelia Hucka28c6942006-01-06 00:19:23 -0800675 css->global_pgid.pgid_high.cpu_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676#endif
677 }
Martin Schwidefsky94038a92010-05-17 10:00:00 +0200678 get_cpu_id(&cpu_id);
679 css->global_pgid.cpu_id = cpu_id.ident;
680 css->global_pgid.cpu_model = cpu_id.machine;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800681 css->global_pgid.tod_high = tod_high;
682
683}
684
Cornelia Huck3b793062006-01-06 00:19:26 -0800685static void
686channel_subsystem_release(struct device *dev)
687{
688 struct channel_subsystem *css;
689
690 css = to_css(dev);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800691 mutex_destroy(&css->mutex);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200692 if (css->pseudo_subchannel) {
693 /* Implies that it has been generated but never registered. */
694 css_subchannel_release(&css->pseudo_subchannel->dev);
695 css->pseudo_subchannel = NULL;
696 }
Cornelia Huck3b793062006-01-06 00:19:26 -0800697 kfree(css);
698}
699
Cornelia Huck495a5b42006-03-24 03:15:14 -0800700static ssize_t
701css_cm_enable_show(struct device *dev, struct device_attribute *attr,
702 char *buf)
703{
704 struct channel_subsystem *css = to_css(dev);
Michael Ernst8284fb192008-04-17 07:46:01 +0200705 int ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800706
707 if (!css)
708 return 0;
Michael Ernst8284fb192008-04-17 07:46:01 +0200709 mutex_lock(&css->mutex);
710 ret = sprintf(buf, "%x\n", css->cm_enabled);
711 mutex_unlock(&css->mutex);
712 return ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800713}
714
715static ssize_t
716css_cm_enable_store(struct device *dev, struct device_attribute *attr,
717 const char *buf, size_t count)
718{
719 struct channel_subsystem *css = to_css(dev);
720 int ret;
Cornelia Huck2f972202008-04-30 13:38:33 +0200721 unsigned long val;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800722
Cornelia Huck2f972202008-04-30 13:38:33 +0200723 ret = strict_strtoul(buf, 16, &val);
724 if (ret)
725 return ret;
Michael Ernst8284fb192008-04-17 07:46:01 +0200726 mutex_lock(&css->mutex);
Cornelia Huck2f972202008-04-30 13:38:33 +0200727 switch (val) {
728 case 0:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800729 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
730 break;
Cornelia Huck2f972202008-04-30 13:38:33 +0200731 case 1:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800732 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
733 break;
734 default:
735 ret = -EINVAL;
736 }
Michael Ernst8284fb192008-04-17 07:46:01 +0200737 mutex_unlock(&css->mutex);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800738 return ret < 0 ? ret : count;
739}
740
741static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
742
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100743static int __init setup_css(int nr)
Cornelia Hucka28c6942006-01-06 00:19:23 -0800744{
745 u32 tod_high;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100746 int ret;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200747 struct channel_subsystem *css;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800748
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200749 css = channel_subsystems[nr];
750 memset(css, 0, sizeof(struct channel_subsystem));
751 css->pseudo_subchannel =
752 kzalloc(sizeof(*css->pseudo_subchannel), GFP_KERNEL);
753 if (!css->pseudo_subchannel)
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100754 return -ENOMEM;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200755 css->pseudo_subchannel->dev.parent = &css->device;
756 css->pseudo_subchannel->dev.release = css_subchannel_release;
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200757 dev_set_name(&css->pseudo_subchannel->dev, "defunct");
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100758 mutex_init(&css->pseudo_subchannel->reg_mutex);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200759 ret = cio_create_sch_lock(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100760 if (ret) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200761 kfree(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100762 return ret;
763 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200764 mutex_init(&css->mutex);
765 css->valid = 1;
766 css->cssid = nr;
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200767 dev_set_name(&css->device, "css%x", nr);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200768 css->device.release = channel_subsystem_release;
Heiko Carstens1aae0562013-01-30 09:49:40 +0100769 tod_high = (u32) (get_tod_clock() >> 32);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200770 css_generate_pgid(css, tod_high);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100771 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Cornelia Hucka55360d2007-10-12 16:11:20 +0200774static int css_reboot_event(struct notifier_block *this,
775 unsigned long event,
776 void *ptr)
777{
778 int ret, i;
779
780 ret = NOTIFY_DONE;
781 for (i = 0; i <= __MAX_CSSID; i++) {
782 struct channel_subsystem *css;
783
784 css = channel_subsystems[i];
Michael Ernst8284fb192008-04-17 07:46:01 +0200785 mutex_lock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200786 if (css->cm_enabled)
787 if (chsc_secm(css, 0))
788 ret = NOTIFY_BAD;
Michael Ernst8284fb192008-04-17 07:46:01 +0200789 mutex_unlock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200790 }
791
792 return ret;
793}
794
795static struct notifier_block css_reboot_notifier = {
796 .notifier_call = css_reboot_event,
797};
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799/*
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200800 * Since the css devices are neither on a bus nor have a class
801 * nor have a special device type, we cannot stop/restart channel
802 * path measurements via the normal suspend/resume callbacks, but have
803 * to use notifiers.
804 */
805static int css_power_event(struct notifier_block *this, unsigned long event,
806 void *ptr)
807{
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200808 int ret, i;
809
810 switch (event) {
811 case PM_HIBERNATION_PREPARE:
812 case PM_SUSPEND_PREPARE:
813 ret = NOTIFY_DONE;
814 for (i = 0; i <= __MAX_CSSID; i++) {
815 struct channel_subsystem *css;
816
817 css = channel_subsystems[i];
818 mutex_lock(&css->mutex);
819 if (!css->cm_enabled) {
820 mutex_unlock(&css->mutex);
821 continue;
822 }
Akinobu Mitaf0c077a2011-07-08 20:53:36 +0200823 ret = __chsc_do_secm(css, 0);
824 ret = notifier_from_errno(ret);
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200825 mutex_unlock(&css->mutex);
826 }
827 break;
828 case PM_POST_HIBERNATION:
829 case PM_POST_SUSPEND:
830 ret = NOTIFY_DONE;
831 for (i = 0; i <= __MAX_CSSID; i++) {
832 struct channel_subsystem *css;
833
834 css = channel_subsystems[i];
835 mutex_lock(&css->mutex);
836 if (!css->cm_enabled) {
837 mutex_unlock(&css->mutex);
838 continue;
839 }
Akinobu Mitaf0c077a2011-07-08 20:53:36 +0200840 ret = __chsc_do_secm(css, 1);
841 ret = notifier_from_errno(ret);
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200842 mutex_unlock(&css->mutex);
843 }
844 /* search for subchannels, which appeared during hibernation */
845 css_schedule_reprobe();
846 break;
847 default:
848 ret = NOTIFY_DONE;
849 }
850 return ret;
851
852}
853static struct notifier_block css_power_notifier = {
854 .notifier_call = css_power_event,
855};
856
857/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 * Now that the driver core is running, we can setup our channel subsystem.
Sebastian Ott14556b32013-04-13 13:03:54 +0200859 * The struct subchannel's are created during probing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 */
Sebastian Ott2f176442009-09-22 22:58:33 +0200861static int __init css_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800863 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Sebastian Ott34aec072010-10-25 16:10:28 +0200865 ret = chsc_init();
866 if (ret)
867 return ret;
868
Sebastian Ott34196f82010-10-25 16:10:29 +0200869 chsc_determine_css_characteristics();
Sebastian Ottb0a285d2009-09-22 22:58:37 +0200870 /* Try to enable MSS. */
871 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
Sebastian Ott818c2722010-04-22 17:17:03 +0200872 if (ret)
Sebastian Ottb0a285d2009-09-22 22:58:37 +0200873 max_ssid = 0;
Sebastian Ott818c2722010-04-22 17:17:03 +0200874 else /* Success. */
875 max_ssid = __MAX_SSID;
Sebastian Ottb0a285d2009-09-22 22:58:37 +0200876
Cornelia Huck4434a382007-07-27 12:29:21 +0200877 ret = slow_subchannel_init();
878 if (ret)
879 goto out;
880
Heiko Carstensf5daba12009-03-26 15:24:01 +0100881 ret = crw_register_handler(CRW_RSC_SCH, css_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +0200882 if (ret)
883 goto out;
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if ((ret = bus_register(&css_bus_type)))
886 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Cornelia Hucka28c6942006-01-06 00:19:23 -0800888 /* Setup css structure. */
889 for (i = 0; i <= __MAX_CSSID; i++) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200890 struct channel_subsystem *css;
891
892 css = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
893 if (!css) {
Cornelia Hucka28c6942006-01-06 00:19:23 -0800894 ret = -ENOMEM;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800895 goto out_unregister;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800896 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200897 channel_subsystems[i] = css;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100898 ret = setup_css(i);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200899 if (ret) {
900 kfree(channel_subsystems[i]);
901 goto out_unregister;
902 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200903 ret = device_register(&css->device);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200904 if (ret) {
905 put_device(&css->device);
906 goto out_unregister;
907 }
Cornelia Huck75784c02008-07-14 09:58:57 +0200908 if (css_chsc_characteristics.secm) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200909 ret = device_create_file(&css->device,
Cornelia Huck7e560812006-07-12 16:40:19 +0200910 &dev_attr_cm_enable);
911 if (ret)
912 goto out_device;
913 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200914 ret = device_register(&css->pseudo_subchannel->dev);
Sebastian Ottc6304932009-09-11 10:28:38 +0200915 if (ret) {
916 put_device(&css->pseudo_subchannel->dev);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100917 goto out_file;
Sebastian Ottc6304932009-09-11 10:28:38 +0200918 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800919 }
Cornelia Hucka55360d2007-10-12 16:11:20 +0200920 ret = register_reboot_notifier(&css_reboot_notifier);
921 if (ret)
Cornelia Hucka2164b82008-09-09 12:38:57 +0200922 goto out_unregister;
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200923 ret = register_pm_notifier(&css_power_notifier);
924 if (ret) {
925 unregister_reboot_notifier(&css_reboot_notifier);
926 goto out_unregister;
927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 css_init_done = 1;
929
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200930 /* Enable default isc for I/O subchannels. */
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200931 isc_register(IO_SCH_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return 0;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100934out_file:
Cornelia Hucka2164b82008-09-09 12:38:57 +0200935 if (css_chsc_characteristics.secm)
936 device_remove_file(&channel_subsystems[i]->device,
937 &dev_attr_cm_enable);
Cornelia Huck7e560812006-07-12 16:40:19 +0200938out_device:
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200939 device_unregister(&channel_subsystems[i]->device);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800940out_unregister:
Cornelia Hucka28c6942006-01-06 00:19:23 -0800941 while (i > 0) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200942 struct channel_subsystem *css;
943
Cornelia Hucka28c6942006-01-06 00:19:23 -0800944 i--;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200945 css = channel_subsystems[i];
946 device_unregister(&css->pseudo_subchannel->dev);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200947 css->pseudo_subchannel = NULL;
Cornelia Huck75784c02008-07-14 09:58:57 +0200948 if (css_chsc_characteristics.secm)
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200949 device_remove_file(&css->device,
Cornelia Huck495a5b42006-03-24 03:15:14 -0800950 &dev_attr_cm_enable);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200951 device_unregister(&css->device);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 bus_unregister(&css_bus_type);
954out:
Sebastian Ott34aec072010-10-25 16:10:28 +0200955 crw_unregister_handler(CRW_RSC_SCH);
Sebastian Ottb827d1c82009-09-22 22:58:36 +0200956 idset_free(slow_subchannel_set);
Sebastian Ott34aec072010-10-25 16:10:28 +0200957 chsc_init_cleanup();
Michael Ernste6d5a422008-12-25 13:39:36 +0100958 pr_alert("The CSS device driver initialization failed with "
959 "errno=%d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return ret;
961}
962
Sebastian Ott2f176442009-09-22 22:58:33 +0200963static void __init css_bus_cleanup(void)
964{
965 struct channel_subsystem *css;
966 int i;
967
968 for (i = 0; i <= __MAX_CSSID; i++) {
969 css = channel_subsystems[i];
970 device_unregister(&css->pseudo_subchannel->dev);
971 css->pseudo_subchannel = NULL;
972 if (css_chsc_characteristics.secm)
973 device_remove_file(&css->device, &dev_attr_cm_enable);
974 device_unregister(&css->device);
975 }
976 bus_unregister(&css_bus_type);
Sebastian Ott34aec072010-10-25 16:10:28 +0200977 crw_unregister_handler(CRW_RSC_SCH);
Sebastian Ottb827d1c82009-09-22 22:58:36 +0200978 idset_free(slow_subchannel_set);
Sebastian Ott34aec072010-10-25 16:10:28 +0200979 chsc_init_cleanup();
Sebastian Ott2f176442009-09-22 22:58:33 +0200980 isc_unregister(IO_SCH_ISC);
981}
982
983static int __init channel_subsystem_init(void)
984{
985 int ret;
986
987 ret = css_bus_init();
988 if (ret)
989 return ret;
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100990 cio_work_q = create_singlethread_workqueue("cio");
991 if (!cio_work_q) {
992 ret = -ENOMEM;
993 goto out_bus;
994 }
Sebastian Ott2f176442009-09-22 22:58:33 +0200995 ret = io_subchannel_init();
996 if (ret)
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100997 goto out_wq;
Sebastian Ott2f176442009-09-22 22:58:33 +0200998
999 return ret;
Sebastian Ottbe5d3822010-02-26 22:37:24 +01001000out_wq:
1001 destroy_workqueue(cio_work_q);
1002out_bus:
1003 css_bus_cleanup();
1004 return ret;
Sebastian Ott2f176442009-09-22 22:58:33 +02001005}
1006subsys_initcall(channel_subsystem_init);
1007
Sebastian Ott8ea7f552009-09-22 22:58:35 +02001008static int css_settle(struct device_driver *drv, void *unused)
1009{
1010 struct css_driver *cssdrv = to_cssdriver(drv);
1011
1012 if (cssdrv->settle)
Sebastian Ottb4c70722010-02-26 22:37:27 +01001013 return cssdrv->settle();
Sebastian Ott8ea7f552009-09-22 22:58:35 +02001014 return 0;
1015}
1016
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001017int css_complete_work(void)
Sebastian Ott879acca52010-02-26 22:37:25 +01001018{
1019 int ret;
1020
1021 /* Wait for the evaluation of subchannels to finish. */
Sebastian Ottb4c70722010-02-26 22:37:27 +01001022 ret = wait_event_interruptible(css_eval_wq,
1023 atomic_read(&css_eval_scheduled) == 0);
1024 if (ret)
1025 return -EINTR;
Sebastian Ott879acca52010-02-26 22:37:25 +01001026 flush_workqueue(cio_work_q);
1027 /* Wait for the subchannel type specific initialization to finish */
Sebastian Ottb4c70722010-02-26 22:37:27 +01001028 return bus_for_each_drv(&css_bus_type, NULL, NULL, css_settle);
Sebastian Ott879acca52010-02-26 22:37:25 +01001029}
1030
1031
Sebastian Ott2f176442009-09-22 22:58:33 +02001032/*
1033 * Wait for the initialization of devices to finish, to make sure we are
1034 * done with our setup if the search for the root device starts.
1035 */
1036static int __init channel_subsystem_init_sync(void)
1037{
Sebastian Ott14556b32013-04-13 13:03:54 +02001038 /* Register subchannels which are already in use. */
1039 cio_register_early_subchannels();
Sebastian Ott703e5c92009-09-22 22:58:38 +02001040 /* Start initial subchannel evaluation. */
1041 css_schedule_eval_all();
Sebastian Ott879acca52010-02-26 22:37:25 +01001042 css_complete_work();
1043 return 0;
Sebastian Ott2f176442009-09-22 22:58:33 +02001044}
1045subsys_initcall_sync(channel_subsystem_init_sync);
1046
Sebastian Ott889ee952010-04-22 17:17:04 +02001047void channel_subsystem_reinit(void)
1048{
Sebastian Ott62da1772010-10-25 16:10:32 +02001049 struct channel_path *chp;
1050 struct chp_id chpid;
1051
Sebastian Ott889ee952010-04-22 17:17:04 +02001052 chsc_enable_facility(CHSC_SDA_OC_MSS);
Sebastian Ott62da1772010-10-25 16:10:32 +02001053 chp_id_for_each(&chpid) {
1054 chp = chpid_to_chp(chpid);
Peter Oberparleitercce0eac2013-03-11 12:58:18 +01001055 if (chp)
1056 chp_update_desc(chp);
Sebastian Ott62da1772010-10-25 16:10:32 +02001057 }
Sebastian Ott889ee952010-04-22 17:17:04 +02001058}
1059
Sebastian Ott879acca52010-02-26 22:37:25 +01001060#ifdef CONFIG_PROC_FS
1061static ssize_t cio_settle_write(struct file *file, const char __user *buf,
1062 size_t count, loff_t *ppos)
1063{
Sebastian Ottb4c70722010-02-26 22:37:27 +01001064 int ret;
1065
Sebastian Ott879acca52010-02-26 22:37:25 +01001066 /* Handle pending CRW's. */
1067 crw_wait_for_channel_report();
Sebastian Ottb4c70722010-02-26 22:37:27 +01001068 ret = css_complete_work();
1069
1070 return ret ? ret : count;
Sebastian Ott879acca52010-02-26 22:37:25 +01001071}
1072
1073static const struct file_operations cio_settle_proc_fops = {
Martin Schwidefsky58ea91c2010-05-17 10:00:07 +02001074 .open = nonseekable_open,
Sebastian Ott879acca52010-02-26 22:37:25 +01001075 .write = cio_settle_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001076 .llseek = no_llseek,
Sebastian Ott879acca52010-02-26 22:37:25 +01001077};
1078
1079static int __init cio_settle_init(void)
1080{
1081 struct proc_dir_entry *entry;
1082
1083 entry = proc_create("cio_settle", S_IWUSR, NULL,
1084 &cio_settle_proc_fops);
1085 if (!entry)
1086 return -ENOMEM;
1087 return 0;
1088}
1089device_initcall(cio_settle_init);
1090#endif /*CONFIG_PROC_FS*/
1091
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +01001092int sch_is_pseudo_sch(struct subchannel *sch)
1093{
1094 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
1095}
1096
Cornelia Huckf08adc02008-07-14 09:59:03 +02001097static int css_bus_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Cornelia Huck084325d2008-01-26 14:10:38 +01001099 struct subchannel *sch = to_subchannel(dev);
1100 struct css_driver *driver = to_cssdriver(drv);
Cornelia Huckf08adc02008-07-14 09:59:03 +02001101 struct css_device_id *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Cornelia Huckf08adc02008-07-14 09:59:03 +02001103 for (id = driver->subchannel_type; id->match_flags; id++) {
1104 if (sch->st == id->type)
1105 return 1;
1106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 return 0;
1109}
1110
Cornelia Huck98c13c22008-01-26 14:10:40 +01001111static int css_probe(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001112{
1113 struct subchannel *sch;
Cornelia Huck98c13c22008-01-26 14:10:40 +01001114 int ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +01001115
1116 sch = to_subchannel(dev);
Cornelia Huck084325d2008-01-26 14:10:38 +01001117 sch->driver = to_cssdriver(dev->driver);
Cornelia Huck98c13c22008-01-26 14:10:40 +01001118 ret = sch->driver->probe ? sch->driver->probe(sch) : 0;
1119 if (ret)
1120 sch->driver = NULL;
1121 return ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +01001122}
1123
Cornelia Huck98c13c22008-01-26 14:10:40 +01001124static int css_remove(struct device *dev)
1125{
1126 struct subchannel *sch;
1127 int ret;
1128
1129 sch = to_subchannel(dev);
1130 ret = sch->driver->remove ? sch->driver->remove(sch) : 0;
1131 sch->driver = NULL;
1132 return ret;
1133}
1134
1135static void css_shutdown(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001136{
1137 struct subchannel *sch;
1138
1139 sch = to_subchannel(dev);
Cornelia Huck98c13c22008-01-26 14:10:40 +01001140 if (sch->driver && sch->driver->shutdown)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001141 sch->driver->shutdown(sch);
1142}
1143
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001144static int css_uevent(struct device *dev, struct kobj_uevent_env *env)
1145{
1146 struct subchannel *sch = to_subchannel(dev);
1147 int ret;
1148
1149 ret = add_uevent_var(env, "ST=%01X", sch->st);
1150 if (ret)
1151 return ret;
1152 ret = add_uevent_var(env, "MODALIAS=css:t%01X", sch->st);
1153 return ret;
1154}
1155
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001156static int css_pm_prepare(struct device *dev)
1157{
1158 struct subchannel *sch = to_subchannel(dev);
1159 struct css_driver *drv;
1160
1161 if (mutex_is_locked(&sch->reg_mutex))
1162 return -EAGAIN;
1163 if (!sch->dev.driver)
1164 return 0;
1165 drv = to_cssdriver(sch->dev.driver);
1166 /* Notify drivers that they may not register children. */
1167 return drv->prepare ? drv->prepare(sch) : 0;
1168}
1169
1170static void css_pm_complete(struct device *dev)
1171{
1172 struct subchannel *sch = to_subchannel(dev);
1173 struct css_driver *drv;
1174
1175 if (!sch->dev.driver)
1176 return;
1177 drv = to_cssdriver(sch->dev.driver);
1178 if (drv->complete)
1179 drv->complete(sch);
1180}
1181
1182static int css_pm_freeze(struct device *dev)
1183{
1184 struct subchannel *sch = to_subchannel(dev);
1185 struct css_driver *drv;
1186
1187 if (!sch->dev.driver)
1188 return 0;
1189 drv = to_cssdriver(sch->dev.driver);
1190 return drv->freeze ? drv->freeze(sch) : 0;
1191}
1192
1193static int css_pm_thaw(struct device *dev)
1194{
1195 struct subchannel *sch = to_subchannel(dev);
1196 struct css_driver *drv;
1197
1198 if (!sch->dev.driver)
1199 return 0;
1200 drv = to_cssdriver(sch->dev.driver);
1201 return drv->thaw ? drv->thaw(sch) : 0;
1202}
1203
1204static int css_pm_restore(struct device *dev)
1205{
1206 struct subchannel *sch = to_subchannel(dev);
1207 struct css_driver *drv;
1208
Sebastian Otteb4f5d92010-10-25 16:10:33 +02001209 css_update_ssd_info(sch);
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001210 if (!sch->dev.driver)
1211 return 0;
1212 drv = to_cssdriver(sch->dev.driver);
1213 return drv->restore ? drv->restore(sch) : 0;
1214}
1215
Alexey Dobriyan47145212009-12-14 18:00:08 -08001216static const struct dev_pm_ops css_pm_ops = {
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001217 .prepare = css_pm_prepare,
1218 .complete = css_pm_complete,
1219 .freeze = css_pm_freeze,
1220 .thaw = css_pm_thaw,
1221 .restore = css_pm_restore,
1222};
1223
Sebastian Ott3041b6a2011-03-15 17:08:31 +01001224static struct bus_type css_bus_type = {
Cornelia Huck8bbace72006-01-11 10:56:22 +01001225 .name = "css",
1226 .match = css_bus_match,
1227 .probe = css_probe,
1228 .remove = css_remove,
1229 .shutdown = css_shutdown,
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001230 .uevent = css_uevent,
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001231 .pm = &css_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232};
1233
Cornelia Huck25b7bb52008-01-26 14:10:41 +01001234/**
1235 * css_driver_register - register a css driver
1236 * @cdrv: css driver to register
1237 *
1238 * This is mainly a wrapper around driver_register that sets name
1239 * and bus_type in the embedded struct device_driver correctly.
1240 */
1241int css_driver_register(struct css_driver *cdrv)
1242{
Cornelia Huck25b7bb52008-01-26 14:10:41 +01001243 cdrv->drv.bus = &css_bus_type;
1244 return driver_register(&cdrv->drv);
1245}
1246EXPORT_SYMBOL_GPL(css_driver_register);
1247
1248/**
1249 * css_driver_unregister - unregister a css driver
1250 * @cdrv: css driver to unregister
1251 *
1252 * This is a wrapper around driver_unregister.
1253 */
1254void css_driver_unregister(struct css_driver *cdrv)
1255{
1256 driver_unregister(&cdrv->drv);
1257}
1258EXPORT_SYMBOL_GPL(css_driver_unregister);
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260MODULE_LICENSE("GPL");