blob: 8c2cb87bccc5d8b1a195ff1dc43181309aa75d82 [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 Otte5dcf002013-04-13 13:08:01 +0200140static int css_sch_create_locks(struct subchannel *sch)
141{
142 sch->lock = kmalloc(sizeof(*sch->lock), GFP_KERNEL);
143 if (!sch->lock)
144 return -ENOMEM;
145
146 spin_lock_init(sch->lock);
147 mutex_init(&sch->reg_mutex);
148
149 return 0;
150}
151
Sebastian Ottc135ad12013-04-13 12:58:55 +0200152static void css_subchannel_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Sebastian Ott863fc842013-04-13 13:01:50 +0200154 struct subchannel *sch = to_subchannel(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Sebastian Ott863fc842013-04-13 13:01:50 +0200156 sch->config.intparm = 0;
157 cio_commit_config(sch);
158 kfree(sch->lock);
159 kfree(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Sebastian Ott863fc842013-04-13 13:01:50 +0200162struct subchannel *css_alloc_subchannel(struct subchannel_id schid)
Sebastian Ottc135ad12013-04-13 12:58:55 +0200163{
164 struct subchannel *sch;
165 int ret;
166
Sebastian Otte5dcf002013-04-13 13:08:01 +0200167 sch = kzalloc(sizeof(*sch), GFP_KERNEL | GFP_DMA);
168 if (!sch)
Sebastian Ottc135ad12013-04-13 12:58:55 +0200169 return ERR_PTR(-ENOMEM);
Sebastian Otte5dcf002013-04-13 13:08:01 +0200170
171 ret = cio_validate_subchannel(sch, schid);
172 if (ret < 0)
173 goto err;
174
175 ret = css_sch_create_locks(sch);
176 if (ret)
177 goto err;
178
Sebastian Ottc135ad12013-04-13 12:58:55 +0200179 INIT_WORK(&sch->todo_work, css_sch_todo);
180 sch->dev.release = &css_subchannel_release;
181 device_initialize(&sch->dev);
182 return sch;
Sebastian Otte5dcf002013-04-13 13:08:01 +0200183
184err:
185 kfree(sch);
186 return ERR_PTR(ret);
Sebastian Ottc135ad12013-04-13 12:58:55 +0200187}
188
Cornelia Huck07c6a332007-07-27 12:29:10 +0200189static int css_sch_device_register(struct subchannel *sch)
Cornelia Huck6ab48792006-07-12 16:39:50 +0200190{
191 int ret;
192
193 mutex_lock(&sch->reg_mutex);
Sebastian Ott6ee4fec2009-09-11 10:28:25 +0200194 dev_set_name(&sch->dev, "0.%x.%04x", sch->schid.ssid,
195 sch->schid.sch_no);
Sebastian Ottc135ad12013-04-13 12:58:55 +0200196 ret = device_add(&sch->dev);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200197 mutex_unlock(&sch->reg_mutex);
198 return ret;
199}
200
Cornelia Huck44a1c192008-07-14 09:58:47 +0200201/**
202 * css_sch_device_unregister - unregister a subchannel
203 * @sch: subchannel to be unregistered
204 */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200205void css_sch_device_unregister(struct subchannel *sch)
206{
207 mutex_lock(&sch->reg_mutex);
Sebastian Ottef60cd12008-07-14 09:59:20 +0200208 if (device_is_registered(&sch->dev))
209 device_unregister(&sch->dev);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200210 mutex_unlock(&sch->reg_mutex);
211}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200212EXPORT_SYMBOL_GPL(css_sch_device_unregister);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200213
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200214static void ssd_from_pmcw(struct chsc_ssd_info *ssd, struct pmcw *pmcw)
215{
216 int i;
217 int mask;
218
219 memset(ssd, 0, sizeof(struct chsc_ssd_info));
220 ssd->path_mask = pmcw->pim;
221 for (i = 0; i < 8; i++) {
222 mask = 0x80 >> i;
223 if (pmcw->pim & mask) {
224 chp_id_init(&ssd->chpid[i]);
225 ssd->chpid[i].id = pmcw->chpid[i];
226 }
227 }
228}
229
230static void ssd_register_chpids(struct chsc_ssd_info *ssd)
231{
232 int i;
233 int mask;
234
235 for (i = 0; i < 8; i++) {
236 mask = 0x80 >> i;
237 if (ssd->path_mask & mask)
238 if (!chp_is_registered(ssd->chpid[i]))
239 chp_new(ssd->chpid[i]);
240 }
241}
242
243void css_update_ssd_info(struct subchannel *sch)
244{
245 int ret;
246
Sebastian Ott14556b32013-04-13 13:03:54 +0200247 ret = chsc_get_ssd_info(sch->schid, &sch->ssd_info);
248 if (ret)
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200249 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
Sebastian Ott14556b32013-04-13 13:03:54 +0200250
251 ssd_register_chpids(&sch->ssd_info);
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200252}
253
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200254static ssize_t type_show(struct device *dev, struct device_attribute *attr,
255 char *buf)
256{
257 struct subchannel *sch = to_subchannel(dev);
258
259 return sprintf(buf, "%01x\n", sch->st);
260}
261
262static DEVICE_ATTR(type, 0444, type_show, NULL);
263
264static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
265 char *buf)
266{
267 struct subchannel *sch = to_subchannel(dev);
268
269 return sprintf(buf, "css:t%01X\n", sch->st);
270}
271
272static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
273
274static struct attribute *subch_attrs[] = {
275 &dev_attr_type.attr,
276 &dev_attr_modalias.attr,
277 NULL,
278};
279
280static struct attribute_group subch_attr_group = {
281 .attrs = subch_attrs,
282};
283
David Brownella4dbd672009-06-24 10:06:31 -0700284static const struct attribute_group *default_subch_attr_groups[] = {
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200285 &subch_attr_group,
286 NULL,
287};
288
Sebastian Ott14556b32013-04-13 13:03:54 +0200289int css_register_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 int ret;
292
293 /* Initialize the subchannel structure */
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200294 sch->dev.parent = &channel_subsystems[0]->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 sch->dev.bus = &css_bus_type;
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200296 sch->dev.groups = default_subch_attr_groups;
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200297 /*
298 * We don't want to generate uevents for I/O subchannels that don't
299 * have a working ccw device behind them since they will be
300 * unregistered before they can be used anyway, so we delay the add
301 * uevent until after device recognition was successful.
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200302 * Note that we suppress the uevent for all subchannel types;
303 * the subchannel driver can decide itself when it wants to inform
304 * userspace of its existence.
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200305 */
Ming Leif67f1292009-03-01 21:10:49 +0800306 dev_set_uevent_suppress(&sch->dev, 1);
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200307 css_update_ssd_info(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* make it known to the system */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200309 ret = css_sch_device_register(sch);
Cornelia Huck7674da72006-12-08 15:54:21 +0100310 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200311 CIO_MSG_EVENT(0, "Could not register sch 0.%x.%04x: %d\n",
312 sch->schid.ssid, sch->schid.sch_no, ret);
Cornelia Huck7674da72006-12-08 15:54:21 +0100313 return ret;
314 }
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200315 if (!sch->driver) {
316 /*
317 * No driver matched. Generate the uevent now so that
318 * a fitting driver module may be loaded based on the
319 * modalias.
320 */
Ming Leif67f1292009-03-01 21:10:49 +0800321 dev_set_uevent_suppress(&sch->dev, 0);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200322 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return ret;
325}
326
Sebastian Ott4e5ebd52013-04-13 13:04:49 +0200327static int css_probe_device(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 struct subchannel *sch;
Sebastian Ott4e5ebd52013-04-13 13:04:49 +0200330 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Sebastian Ott14556b32013-04-13 13:03:54 +0200332 sch = css_alloc_subchannel(schid);
333 if (IS_ERR(sch))
334 return PTR_ERR(sch);
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 ret = css_register_subchannel(sch);
Sebastian Ott863fc842013-04-13 13:01:50 +0200337 if (ret)
338 put_device(&sch->dev);
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return ret;
341}
342
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700343static int
344check_subchannel(struct device * dev, void * data)
345{
346 struct subchannel *sch;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800347 struct subchannel_id *schid = data;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700348
349 sch = to_subchannel(dev);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800350 return schid_equal(&sch->schid, schid);
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800354get_subchannel_by_schid(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 struct device *dev;
357
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700358 dev = bus_find_device(&css_bus_type, NULL,
Cornelia Huck12975ae2006-10-11 15:31:47 +0200359 &schid, check_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700361 return dev ? to_subchannel(dev) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100364/**
365 * css_sch_is_valid() - check if a subchannel is valid
366 * @schib: subchannel information block for the subchannel
367 */
368int css_sch_is_valid(struct schib *schib)
369{
370 if ((schib->pmcw.st == SUBCHANNEL_TYPE_IO) && !schib->pmcw.dnv)
371 return 0;
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200372 if ((schib->pmcw.st == SUBCHANNEL_TYPE_MSG) && !schib->pmcw.w)
373 return 0;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100374 return 1;
375}
376EXPORT_SYMBOL_GPL(css_sch_is_valid);
377
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200378static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
379{
380 struct schib schib;
381
382 if (!slow) {
383 /* Will be done on the slow path. */
384 return -EAGAIN;
385 }
Sebastian Ottcec85462012-10-15 12:24:56 +0200386 if (stsch_err(schid, &schib)) {
387 /* Subchannel is not provided. */
388 return -ENXIO;
389 }
390 if (!css_sch_is_valid(&schib)) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200391 /* Unusable - ignore. */
392 return 0;
393 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100394 CIO_MSG_EVENT(4, "event: sch 0.%x.%04x, new\n", schid.ssid,
395 schid.sch_no);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200396
397 return css_probe_device(schid);
398}
399
Cornelia Huckc820de32008-07-14 09:58:45 +0200400static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
401{
402 int ret = 0;
403
404 if (sch->driver) {
405 if (sch->driver->sch_event)
406 ret = sch->driver->sch_event(sch, slow);
407 else
408 dev_dbg(&sch->dev,
409 "Got subchannel machine check but "
410 "no sch_event handler provided.\n");
411 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100412 if (ret != 0 && ret != -EAGAIN) {
413 CIO_MSG_EVENT(2, "eval: sch 0.%x.%04x, rc=%d\n",
414 sch->schid.ssid, sch->schid.sch_no, ret);
415 }
Cornelia Huckc820de32008-07-14 09:58:45 +0200416 return ret;
417}
418
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200419static void css_evaluate_subchannel(struct subchannel_id schid, int slow)
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200420{
421 struct subchannel *sch;
422 int ret;
423
424 sch = get_subchannel_by_schid(schid);
425 if (sch) {
426 ret = css_evaluate_known_subchannel(sch, slow);
427 put_device(&sch->dev);
428 } else
429 ret = css_evaluate_new_subchannel(schid, slow);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200430 if (ret == -EAGAIN)
431 css_schedule_eval(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Sebastian Ott817e5002011-12-01 13:32:19 +0100434/**
435 * css_sched_sch_todo - schedule a subchannel operation
436 * @sch: subchannel
437 * @todo: todo
438 *
439 * Schedule the operation identified by @todo to be performed on the slow path
440 * workqueue. Do nothing if another operation with higher priority is already
441 * scheduled. Needs to be called with subchannel lock held.
442 */
443void css_sched_sch_todo(struct subchannel *sch, enum sch_todo todo)
444{
445 CIO_MSG_EVENT(4, "sch_todo: sched sch=0.%x.%04x todo=%d\n",
446 sch->schid.ssid, sch->schid.sch_no, todo);
447 if (sch->todo >= todo)
448 return;
449 /* Get workqueue ref. */
450 if (!get_device(&sch->dev))
451 return;
452 sch->todo = todo;
453 if (!queue_work(cio_work_q, &sch->todo_work)) {
454 /* Already queued, release workqueue ref. */
455 put_device(&sch->dev);
456 }
457}
Sebastian Ott01c5e6d2012-08-28 16:42:37 +0200458EXPORT_SYMBOL_GPL(css_sched_sch_todo);
Sebastian Ott817e5002011-12-01 13:32:19 +0100459
460static void css_sch_todo(struct work_struct *work)
461{
462 struct subchannel *sch;
463 enum sch_todo todo;
464 int ret;
465
466 sch = container_of(work, struct subchannel, todo_work);
467 /* Find out todo. */
468 spin_lock_irq(sch->lock);
469 todo = sch->todo;
470 CIO_MSG_EVENT(4, "sch_todo: sch=0.%x.%04x, todo=%d\n", sch->schid.ssid,
471 sch->schid.sch_no, todo);
472 sch->todo = SCH_TODO_NOTHING;
473 spin_unlock_irq(sch->lock);
474 /* Perform todo. */
475 switch (todo) {
476 case SCH_TODO_NOTHING:
477 break;
478 case SCH_TODO_EVAL:
479 ret = css_evaluate_known_subchannel(sch, 1);
480 if (ret == -EAGAIN) {
481 spin_lock_irq(sch->lock);
482 css_sched_sch_todo(sch, todo);
483 spin_unlock_irq(sch->lock);
484 }
485 break;
486 case SCH_TODO_UNREG:
487 css_sch_device_unregister(sch);
488 break;
489 }
490 /* Release workqueue ref. */
491 put_device(&sch->dev);
492}
493
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200494static struct idset *slow_subchannel_set;
495static spinlock_t slow_subchannel_lock;
Sebastian Ott25530552009-09-22 22:58:34 +0200496static wait_queue_head_t css_eval_wq;
497static atomic_t css_eval_scheduled;
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200498
499static int __init slow_subchannel_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200501 spin_lock_init(&slow_subchannel_lock);
Sebastian Ott25530552009-09-22 22:58:34 +0200502 atomic_set(&css_eval_scheduled, 0);
503 init_waitqueue_head(&css_eval_wq);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200504 slow_subchannel_set = idset_sch_new();
505 if (!slow_subchannel_set) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200506 CIO_MSG_EVENT(0, "could not allocate slow subchannel set\n");
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200507 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200509 return 0;
510}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100512static int slow_eval_known_fn(struct subchannel *sch, void *data)
513{
514 int eval;
515 int rc;
516
517 spin_lock_irq(&slow_subchannel_lock);
518 eval = idset_sch_contains(slow_subchannel_set, sch->schid);
519 idset_sch_del(slow_subchannel_set, sch->schid);
520 spin_unlock_irq(&slow_subchannel_lock);
521 if (eval) {
522 rc = css_evaluate_known_subchannel(sch, 1);
523 if (rc == -EAGAIN)
524 css_schedule_eval(sch->schid);
525 }
526 return 0;
527}
528
529static int slow_eval_unknown_fn(struct subchannel_id schid, void *data)
530{
531 int eval;
532 int rc = 0;
533
534 spin_lock_irq(&slow_subchannel_lock);
535 eval = idset_sch_contains(slow_subchannel_set, schid);
536 idset_sch_del(slow_subchannel_set, schid);
537 spin_unlock_irq(&slow_subchannel_lock);
538 if (eval) {
539 rc = css_evaluate_new_subchannel(schid, 1);
540 switch (rc) {
541 case -EAGAIN:
542 css_schedule_eval(schid);
543 rc = 0;
544 break;
545 case -ENXIO:
546 case -ENOMEM:
547 case -EIO:
548 /* These should abort looping */
Sebastian Otteb072a72013-08-29 20:31:06 +0200549 spin_lock_irq(&slow_subchannel_lock);
Sebastian Ottcec85462012-10-15 12:24:56 +0200550 idset_sch_del_subseq(slow_subchannel_set, schid);
Sebastian Otteb072a72013-08-29 20:31:06 +0200551 spin_unlock_irq(&slow_subchannel_lock);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100552 break;
553 default:
554 rc = 0;
555 }
556 }
557 return rc;
558}
559
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200560static void css_slow_path_func(struct work_struct *unused)
561{
Sebastian Ott25530552009-09-22 22:58:34 +0200562 unsigned long flags;
563
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200564 CIO_TRACE_EVENT(4, "slowpath");
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100565 for_each_subchannel_staged(slow_eval_known_fn, slow_eval_unknown_fn,
566 NULL);
Sebastian Ott25530552009-09-22 22:58:34 +0200567 spin_lock_irqsave(&slow_subchannel_lock, flags);
568 if (idset_is_empty(slow_subchannel_set)) {
569 atomic_set(&css_eval_scheduled, 0);
570 wake_up(&css_eval_wq);
571 }
572 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200575static DECLARE_WORK(slow_path_work, css_slow_path_func);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100576struct workqueue_struct *cio_work_q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200578void css_schedule_eval(struct subchannel_id schid)
579{
580 unsigned long flags;
581
582 spin_lock_irqsave(&slow_subchannel_lock, flags);
583 idset_sch_add(slow_subchannel_set, schid);
Sebastian Ott25530552009-09-22 22:58:34 +0200584 atomic_set(&css_eval_scheduled, 1);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100585 queue_work(cio_work_q, &slow_path_work);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200586 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
587}
588
589void css_schedule_eval_all(void)
590{
591 unsigned long flags;
592
593 spin_lock_irqsave(&slow_subchannel_lock, flags);
594 idset_fill(slow_subchannel_set);
Sebastian Ott25530552009-09-22 22:58:34 +0200595 atomic_set(&css_eval_scheduled, 1);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100596 queue_work(cio_work_q, &slow_path_work);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200597 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
598}
599
Sebastian Ott703e5c92009-09-22 22:58:38 +0200600static int __unset_registered(struct device *dev, void *data)
601{
602 struct idset *set = data;
603 struct subchannel *sch = to_subchannel(dev);
604
605 idset_sch_del(set, sch->schid);
606 return 0;
607}
608
Sebastian Otta8481c22010-10-25 16:10:23 +0200609static void css_schedule_eval_all_unreg(void)
Sebastian Ott703e5c92009-09-22 22:58:38 +0200610{
611 unsigned long flags;
612 struct idset *unreg_set;
613
614 /* Find unregistered subchannels. */
615 unreg_set = idset_sch_new();
616 if (!unreg_set) {
617 /* Fallback. */
618 css_schedule_eval_all();
619 return;
620 }
621 idset_fill(unreg_set);
622 bus_for_each_dev(&css_bus_type, NULL, unreg_set, __unset_registered);
623 /* Apply to slow_subchannel_set. */
624 spin_lock_irqsave(&slow_subchannel_lock, flags);
625 idset_add_set(slow_subchannel_set, unreg_set);
626 atomic_set(&css_eval_scheduled, 1);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100627 queue_work(cio_work_q, &slow_path_work);
Sebastian Ott703e5c92009-09-22 22:58:38 +0200628 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
629 idset_free(unreg_set);
630}
631
Cornelia Huck22806dc2008-04-17 07:45:59 +0200632void css_wait_for_slow_path(void)
633{
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100634 flush_workqueue(cio_work_q);
Cornelia Huck22806dc2008-04-17 07:45:59 +0200635}
636
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200637/* Schedule reprobing of all unregistered subchannels. */
638void css_schedule_reprobe(void)
639{
Sebastian Ott703e5c92009-09-22 22:58:38 +0200640 css_schedule_eval_all_unreg();
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200641}
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200642EXPORT_SYMBOL_GPL(css_schedule_reprobe);
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 * Called from the machine check handler for subchannel report words.
646 */
Cornelia Huckc1156182008-07-14 09:58:46 +0200647static void css_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800649 struct subchannel_id mchk_schid;
Sebastian Ott4bc4e962011-01-05 12:47:58 +0100650 struct subchannel *sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Cornelia Huckc1156182008-07-14 09:58:46 +0200652 if (overflow) {
653 css_schedule_eval_all();
654 return;
655 }
656 CIO_CRW_EVENT(2, "CRW0 reports slct=%d, oflw=%d, "
657 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
658 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
659 crw0->erc, crw0->rsid);
660 if (crw1)
661 CIO_CRW_EVENT(2, "CRW1 reports slct=%d, oflw=%d, "
662 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
663 crw1->slct, crw1->oflw, crw1->chn, crw1->rsc,
664 crw1->anc, crw1->erc, crw1->rsid);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800665 init_subchannel_id(&mchk_schid);
Cornelia Huckc1156182008-07-14 09:58:46 +0200666 mchk_schid.sch_no = crw0->rsid;
667 if (crw1)
Sebastian Ott8d7bfb42010-12-01 10:08:02 +0100668 mchk_schid.ssid = (crw1->rsid >> 4) & 3;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800669
Sebastian Ott4bc4e962011-01-05 12:47:58 +0100670 if (crw0->erc == CRW_ERC_PMOD) {
671 sch = get_subchannel_by_schid(mchk_schid);
672 if (sch) {
673 css_update_ssd_info(sch);
674 put_device(&sch->dev);
675 }
676 }
Cornelia Huckc1156182008-07-14 09:58:46 +0200677 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 * Since we are always presented with IPI in the CRW, we have to
679 * use stsch() to find out if the subchannel in question has come
680 * or gone.
681 */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200682 css_evaluate_subchannel(mchk_schid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
685static void __init
Cornelia Hucka28c6942006-01-06 00:19:23 -0800686css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Martin Schwidefsky94038a92010-05-17 10:00:00 +0200688 struct cpuid cpu_id;
689
Cornelia Huck75784c02008-07-14 09:58:57 +0200690 if (css_general_characteristics.mcss) {
Cornelia Hucka28c6942006-01-06 00:19:23 -0800691 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
692 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
693 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694#ifdef CONFIG_SMP
Martin Schwidefsky7b468482009-03-26 15:24:42 +0100695 css->global_pgid.pgid_high.cpu_addr = stap();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696#else
Cornelia Hucka28c6942006-01-06 00:19:23 -0800697 css->global_pgid.pgid_high.cpu_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698#endif
699 }
Martin Schwidefsky94038a92010-05-17 10:00:00 +0200700 get_cpu_id(&cpu_id);
701 css->global_pgid.cpu_id = cpu_id.ident;
702 css->global_pgid.cpu_model = cpu_id.machine;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800703 css->global_pgid.tod_high = tod_high;
704
705}
706
Cornelia Huck3b793062006-01-06 00:19:26 -0800707static void
708channel_subsystem_release(struct device *dev)
709{
710 struct channel_subsystem *css;
711
712 css = to_css(dev);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800713 mutex_destroy(&css->mutex);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200714 if (css->pseudo_subchannel) {
715 /* Implies that it has been generated but never registered. */
716 css_subchannel_release(&css->pseudo_subchannel->dev);
717 css->pseudo_subchannel = NULL;
718 }
Cornelia Huck3b793062006-01-06 00:19:26 -0800719 kfree(css);
720}
721
Cornelia Huck495a5b42006-03-24 03:15:14 -0800722static ssize_t
723css_cm_enable_show(struct device *dev, struct device_attribute *attr,
724 char *buf)
725{
726 struct channel_subsystem *css = to_css(dev);
Michael Ernst8284fb192008-04-17 07:46:01 +0200727 int ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800728
729 if (!css)
730 return 0;
Michael Ernst8284fb192008-04-17 07:46:01 +0200731 mutex_lock(&css->mutex);
732 ret = sprintf(buf, "%x\n", css->cm_enabled);
733 mutex_unlock(&css->mutex);
734 return ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800735}
736
737static ssize_t
738css_cm_enable_store(struct device *dev, struct device_attribute *attr,
739 const char *buf, size_t count)
740{
741 struct channel_subsystem *css = to_css(dev);
742 int ret;
Cornelia Huck2f972202008-04-30 13:38:33 +0200743 unsigned long val;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800744
Jingoo Han01787222013-07-22 10:18:15 +0900745 ret = kstrtoul(buf, 16, &val);
Cornelia Huck2f972202008-04-30 13:38:33 +0200746 if (ret)
747 return ret;
Michael Ernst8284fb192008-04-17 07:46:01 +0200748 mutex_lock(&css->mutex);
Cornelia Huck2f972202008-04-30 13:38:33 +0200749 switch (val) {
750 case 0:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800751 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
752 break;
Cornelia Huck2f972202008-04-30 13:38:33 +0200753 case 1:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800754 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
755 break;
756 default:
757 ret = -EINVAL;
758 }
Michael Ernst8284fb192008-04-17 07:46:01 +0200759 mutex_unlock(&css->mutex);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800760 return ret < 0 ? ret : count;
761}
762
763static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
764
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100765static int __init setup_css(int nr)
Cornelia Hucka28c6942006-01-06 00:19:23 -0800766{
767 u32 tod_high;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100768 int ret;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200769 struct channel_subsystem *css;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800770
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200771 css = channel_subsystems[nr];
772 memset(css, 0, sizeof(struct channel_subsystem));
773 css->pseudo_subchannel =
774 kzalloc(sizeof(*css->pseudo_subchannel), GFP_KERNEL);
775 if (!css->pseudo_subchannel)
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100776 return -ENOMEM;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200777 css->pseudo_subchannel->dev.parent = &css->device;
778 css->pseudo_subchannel->dev.release = css_subchannel_release;
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200779 dev_set_name(&css->pseudo_subchannel->dev, "defunct");
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100780 mutex_init(&css->pseudo_subchannel->reg_mutex);
Sebastian Otte5dcf002013-04-13 13:08:01 +0200781 ret = css_sch_create_locks(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100782 if (ret) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200783 kfree(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100784 return ret;
785 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200786 mutex_init(&css->mutex);
787 css->valid = 1;
788 css->cssid = nr;
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200789 dev_set_name(&css->device, "css%x", nr);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200790 css->device.release = channel_subsystem_release;
Heiko Carstens1aae0562013-01-30 09:49:40 +0100791 tod_high = (u32) (get_tod_clock() >> 32);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200792 css_generate_pgid(css, tod_high);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100793 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
Cornelia Hucka55360d2007-10-12 16:11:20 +0200796static int css_reboot_event(struct notifier_block *this,
797 unsigned long event,
798 void *ptr)
799{
800 int ret, i;
801
802 ret = NOTIFY_DONE;
803 for (i = 0; i <= __MAX_CSSID; i++) {
804 struct channel_subsystem *css;
805
806 css = channel_subsystems[i];
Michael Ernst8284fb192008-04-17 07:46:01 +0200807 mutex_lock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200808 if (css->cm_enabled)
809 if (chsc_secm(css, 0))
810 ret = NOTIFY_BAD;
Michael Ernst8284fb192008-04-17 07:46:01 +0200811 mutex_unlock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200812 }
813
814 return ret;
815}
816
817static struct notifier_block css_reboot_notifier = {
818 .notifier_call = css_reboot_event,
819};
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/*
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200822 * Since the css devices are neither on a bus nor have a class
823 * nor have a special device type, we cannot stop/restart channel
824 * path measurements via the normal suspend/resume callbacks, but have
825 * to use notifiers.
826 */
827static int css_power_event(struct notifier_block *this, unsigned long event,
828 void *ptr)
829{
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200830 int ret, i;
831
832 switch (event) {
833 case PM_HIBERNATION_PREPARE:
834 case PM_SUSPEND_PREPARE:
835 ret = NOTIFY_DONE;
836 for (i = 0; i <= __MAX_CSSID; i++) {
837 struct channel_subsystem *css;
838
839 css = channel_subsystems[i];
840 mutex_lock(&css->mutex);
841 if (!css->cm_enabled) {
842 mutex_unlock(&css->mutex);
843 continue;
844 }
Akinobu Mitaf0c077a2011-07-08 20:53:36 +0200845 ret = __chsc_do_secm(css, 0);
846 ret = notifier_from_errno(ret);
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200847 mutex_unlock(&css->mutex);
848 }
849 break;
850 case PM_POST_HIBERNATION:
851 case PM_POST_SUSPEND:
852 ret = NOTIFY_DONE;
853 for (i = 0; i <= __MAX_CSSID; i++) {
854 struct channel_subsystem *css;
855
856 css = channel_subsystems[i];
857 mutex_lock(&css->mutex);
858 if (!css->cm_enabled) {
859 mutex_unlock(&css->mutex);
860 continue;
861 }
Akinobu Mitaf0c077a2011-07-08 20:53:36 +0200862 ret = __chsc_do_secm(css, 1);
863 ret = notifier_from_errno(ret);
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200864 mutex_unlock(&css->mutex);
865 }
866 /* search for subchannels, which appeared during hibernation */
867 css_schedule_reprobe();
868 break;
869 default:
870 ret = NOTIFY_DONE;
871 }
872 return ret;
873
874}
875static struct notifier_block css_power_notifier = {
876 .notifier_call = css_power_event,
877};
878
879/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 * Now that the driver core is running, we can setup our channel subsystem.
Sebastian Ott14556b32013-04-13 13:03:54 +0200881 * The struct subchannel's are created during probing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 */
Sebastian Ott2f176442009-09-22 22:58:33 +0200883static int __init css_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800885 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Sebastian Ott34aec072010-10-25 16:10:28 +0200887 ret = chsc_init();
888 if (ret)
889 return ret;
890
Sebastian Ott34196f82010-10-25 16:10:29 +0200891 chsc_determine_css_characteristics();
Sebastian Ottb0a285d2009-09-22 22:58:37 +0200892 /* Try to enable MSS. */
893 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
Sebastian Ott818c2722010-04-22 17:17:03 +0200894 if (ret)
Sebastian Ottb0a285d2009-09-22 22:58:37 +0200895 max_ssid = 0;
Sebastian Ott818c2722010-04-22 17:17:03 +0200896 else /* Success. */
897 max_ssid = __MAX_SSID;
Sebastian Ottb0a285d2009-09-22 22:58:37 +0200898
Cornelia Huck4434a382007-07-27 12:29:21 +0200899 ret = slow_subchannel_init();
900 if (ret)
901 goto out;
902
Heiko Carstensf5daba12009-03-26 15:24:01 +0100903 ret = crw_register_handler(CRW_RSC_SCH, css_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +0200904 if (ret)
905 goto out;
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if ((ret = bus_register(&css_bus_type)))
908 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Cornelia Hucka28c6942006-01-06 00:19:23 -0800910 /* Setup css structure. */
911 for (i = 0; i <= __MAX_CSSID; i++) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200912 struct channel_subsystem *css;
913
914 css = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
915 if (!css) {
Cornelia Hucka28c6942006-01-06 00:19:23 -0800916 ret = -ENOMEM;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800917 goto out_unregister;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800918 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200919 channel_subsystems[i] = css;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100920 ret = setup_css(i);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200921 if (ret) {
922 kfree(channel_subsystems[i]);
923 goto out_unregister;
924 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200925 ret = device_register(&css->device);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200926 if (ret) {
927 put_device(&css->device);
928 goto out_unregister;
929 }
Cornelia Huck75784c02008-07-14 09:58:57 +0200930 if (css_chsc_characteristics.secm) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200931 ret = device_create_file(&css->device,
Cornelia Huck7e560812006-07-12 16:40:19 +0200932 &dev_attr_cm_enable);
933 if (ret)
934 goto out_device;
935 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200936 ret = device_register(&css->pseudo_subchannel->dev);
Sebastian Ottc6304932009-09-11 10:28:38 +0200937 if (ret) {
938 put_device(&css->pseudo_subchannel->dev);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100939 goto out_file;
Sebastian Ottc6304932009-09-11 10:28:38 +0200940 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800941 }
Cornelia Hucka55360d2007-10-12 16:11:20 +0200942 ret = register_reboot_notifier(&css_reboot_notifier);
943 if (ret)
Cornelia Hucka2164b82008-09-09 12:38:57 +0200944 goto out_unregister;
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200945 ret = register_pm_notifier(&css_power_notifier);
946 if (ret) {
947 unregister_reboot_notifier(&css_reboot_notifier);
948 goto out_unregister;
949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 css_init_done = 1;
951
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200952 /* Enable default isc for I/O subchannels. */
Cornelia Huck6ef556cc2008-07-14 09:59:01 +0200953 isc_register(IO_SCH_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return 0;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100956out_file:
Cornelia Hucka2164b82008-09-09 12:38:57 +0200957 if (css_chsc_characteristics.secm)
958 device_remove_file(&channel_subsystems[i]->device,
959 &dev_attr_cm_enable);
Cornelia Huck7e560812006-07-12 16:40:19 +0200960out_device:
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200961 device_unregister(&channel_subsystems[i]->device);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800962out_unregister:
Cornelia Hucka28c6942006-01-06 00:19:23 -0800963 while (i > 0) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200964 struct channel_subsystem *css;
965
Cornelia Hucka28c6942006-01-06 00:19:23 -0800966 i--;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200967 css = channel_subsystems[i];
968 device_unregister(&css->pseudo_subchannel->dev);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200969 css->pseudo_subchannel = NULL;
Cornelia Huck75784c02008-07-14 09:58:57 +0200970 if (css_chsc_characteristics.secm)
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200971 device_remove_file(&css->device,
Cornelia Huck495a5b42006-03-24 03:15:14 -0800972 &dev_attr_cm_enable);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200973 device_unregister(&css->device);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 bus_unregister(&css_bus_type);
976out:
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();
Michael Ernste6d5a422008-12-25 13:39:36 +0100980 pr_alert("The CSS device driver initialization failed with "
981 "errno=%d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return ret;
983}
984
Sebastian Ott2f176442009-09-22 22:58:33 +0200985static void __init css_bus_cleanup(void)
986{
987 struct channel_subsystem *css;
988 int i;
989
990 for (i = 0; i <= __MAX_CSSID; i++) {
991 css = channel_subsystems[i];
992 device_unregister(&css->pseudo_subchannel->dev);
993 css->pseudo_subchannel = NULL;
994 if (css_chsc_characteristics.secm)
995 device_remove_file(&css->device, &dev_attr_cm_enable);
996 device_unregister(&css->device);
997 }
998 bus_unregister(&css_bus_type);
Sebastian Ott34aec072010-10-25 16:10:28 +0200999 crw_unregister_handler(CRW_RSC_SCH);
Sebastian Ottb827d1c82009-09-22 22:58:36 +02001000 idset_free(slow_subchannel_set);
Sebastian Ott34aec072010-10-25 16:10:28 +02001001 chsc_init_cleanup();
Sebastian Ott2f176442009-09-22 22:58:33 +02001002 isc_unregister(IO_SCH_ISC);
1003}
1004
1005static int __init channel_subsystem_init(void)
1006{
1007 int ret;
1008
1009 ret = css_bus_init();
1010 if (ret)
1011 return ret;
Sebastian Ottbe5d3822010-02-26 22:37:24 +01001012 cio_work_q = create_singlethread_workqueue("cio");
1013 if (!cio_work_q) {
1014 ret = -ENOMEM;
1015 goto out_bus;
1016 }
Sebastian Ott2f176442009-09-22 22:58:33 +02001017 ret = io_subchannel_init();
1018 if (ret)
Sebastian Ottbe5d3822010-02-26 22:37:24 +01001019 goto out_wq;
Sebastian Ott2f176442009-09-22 22:58:33 +02001020
1021 return ret;
Sebastian Ottbe5d3822010-02-26 22:37:24 +01001022out_wq:
1023 destroy_workqueue(cio_work_q);
1024out_bus:
1025 css_bus_cleanup();
1026 return ret;
Sebastian Ott2f176442009-09-22 22:58:33 +02001027}
1028subsys_initcall(channel_subsystem_init);
1029
Sebastian Ott8ea7f552009-09-22 22:58:35 +02001030static int css_settle(struct device_driver *drv, void *unused)
1031{
1032 struct css_driver *cssdrv = to_cssdriver(drv);
1033
1034 if (cssdrv->settle)
Sebastian Ottb4c70722010-02-26 22:37:27 +01001035 return cssdrv->settle();
Sebastian Ott8ea7f552009-09-22 22:58:35 +02001036 return 0;
1037}
1038
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001039int css_complete_work(void)
Sebastian Ott879acca52010-02-26 22:37:25 +01001040{
1041 int ret;
1042
1043 /* Wait for the evaluation of subchannels to finish. */
Sebastian Ottb4c70722010-02-26 22:37:27 +01001044 ret = wait_event_interruptible(css_eval_wq,
1045 atomic_read(&css_eval_scheduled) == 0);
1046 if (ret)
1047 return -EINTR;
Sebastian Ott879acca52010-02-26 22:37:25 +01001048 flush_workqueue(cio_work_q);
1049 /* Wait for the subchannel type specific initialization to finish */
Sebastian Ottb4c70722010-02-26 22:37:27 +01001050 return bus_for_each_drv(&css_bus_type, NULL, NULL, css_settle);
Sebastian Ott879acca52010-02-26 22:37:25 +01001051}
1052
1053
Sebastian Ott2f176442009-09-22 22:58:33 +02001054/*
1055 * Wait for the initialization of devices to finish, to make sure we are
1056 * done with our setup if the search for the root device starts.
1057 */
1058static int __init channel_subsystem_init_sync(void)
1059{
Sebastian Ott14556b32013-04-13 13:03:54 +02001060 /* Register subchannels which are already in use. */
1061 cio_register_early_subchannels();
Sebastian Ott703e5c92009-09-22 22:58:38 +02001062 /* Start initial subchannel evaluation. */
1063 css_schedule_eval_all();
Sebastian Ott879acca52010-02-26 22:37:25 +01001064 css_complete_work();
1065 return 0;
Sebastian Ott2f176442009-09-22 22:58:33 +02001066}
1067subsys_initcall_sync(channel_subsystem_init_sync);
1068
Sebastian Ott889ee952010-04-22 17:17:04 +02001069void channel_subsystem_reinit(void)
1070{
Sebastian Ott62da1772010-10-25 16:10:32 +02001071 struct channel_path *chp;
1072 struct chp_id chpid;
1073
Sebastian Ott889ee952010-04-22 17:17:04 +02001074 chsc_enable_facility(CHSC_SDA_OC_MSS);
Sebastian Ott62da1772010-10-25 16:10:32 +02001075 chp_id_for_each(&chpid) {
1076 chp = chpid_to_chp(chpid);
Peter Oberparleitercce0eac2013-03-11 12:58:18 +01001077 if (chp)
1078 chp_update_desc(chp);
Sebastian Ott62da1772010-10-25 16:10:32 +02001079 }
Sebastian Ott889ee952010-04-22 17:17:04 +02001080}
1081
Sebastian Ott879acca52010-02-26 22:37:25 +01001082#ifdef CONFIG_PROC_FS
1083static ssize_t cio_settle_write(struct file *file, const char __user *buf,
1084 size_t count, loff_t *ppos)
1085{
Sebastian Ottb4c70722010-02-26 22:37:27 +01001086 int ret;
1087
Sebastian Ott879acca52010-02-26 22:37:25 +01001088 /* Handle pending CRW's. */
1089 crw_wait_for_channel_report();
Sebastian Ottb4c70722010-02-26 22:37:27 +01001090 ret = css_complete_work();
1091
1092 return ret ? ret : count;
Sebastian Ott879acca52010-02-26 22:37:25 +01001093}
1094
1095static const struct file_operations cio_settle_proc_fops = {
Martin Schwidefsky58ea91c2010-05-17 10:00:07 +02001096 .open = nonseekable_open,
Sebastian Ott879acca52010-02-26 22:37:25 +01001097 .write = cio_settle_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001098 .llseek = no_llseek,
Sebastian Ott879acca52010-02-26 22:37:25 +01001099};
1100
1101static int __init cio_settle_init(void)
1102{
1103 struct proc_dir_entry *entry;
1104
1105 entry = proc_create("cio_settle", S_IWUSR, NULL,
1106 &cio_settle_proc_fops);
1107 if (!entry)
1108 return -ENOMEM;
1109 return 0;
1110}
1111device_initcall(cio_settle_init);
1112#endif /*CONFIG_PROC_FS*/
1113
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +01001114int sch_is_pseudo_sch(struct subchannel *sch)
1115{
1116 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
1117}
1118
Cornelia Huckf08adc02008-07-14 09:59:03 +02001119static int css_bus_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Cornelia Huck084325d2008-01-26 14:10:38 +01001121 struct subchannel *sch = to_subchannel(dev);
1122 struct css_driver *driver = to_cssdriver(drv);
Cornelia Huckf08adc02008-07-14 09:59:03 +02001123 struct css_device_id *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Cornelia Huckf08adc02008-07-14 09:59:03 +02001125 for (id = driver->subchannel_type; id->match_flags; id++) {
1126 if (sch->st == id->type)
1127 return 1;
1128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 return 0;
1131}
1132
Cornelia Huck98c13c22008-01-26 14:10:40 +01001133static int css_probe(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001134{
1135 struct subchannel *sch;
Cornelia Huck98c13c22008-01-26 14:10:40 +01001136 int ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +01001137
1138 sch = to_subchannel(dev);
Cornelia Huck084325d2008-01-26 14:10:38 +01001139 sch->driver = to_cssdriver(dev->driver);
Cornelia Huck98c13c22008-01-26 14:10:40 +01001140 ret = sch->driver->probe ? sch->driver->probe(sch) : 0;
1141 if (ret)
1142 sch->driver = NULL;
1143 return ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +01001144}
1145
Cornelia Huck98c13c22008-01-26 14:10:40 +01001146static int css_remove(struct device *dev)
1147{
1148 struct subchannel *sch;
1149 int ret;
1150
1151 sch = to_subchannel(dev);
1152 ret = sch->driver->remove ? sch->driver->remove(sch) : 0;
1153 sch->driver = NULL;
1154 return ret;
1155}
1156
1157static void css_shutdown(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001158{
1159 struct subchannel *sch;
1160
1161 sch = to_subchannel(dev);
Cornelia Huck98c13c22008-01-26 14:10:40 +01001162 if (sch->driver && sch->driver->shutdown)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001163 sch->driver->shutdown(sch);
1164}
1165
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001166static int css_uevent(struct device *dev, struct kobj_uevent_env *env)
1167{
1168 struct subchannel *sch = to_subchannel(dev);
1169 int ret;
1170
1171 ret = add_uevent_var(env, "ST=%01X", sch->st);
1172 if (ret)
1173 return ret;
1174 ret = add_uevent_var(env, "MODALIAS=css:t%01X", sch->st);
1175 return ret;
1176}
1177
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001178static int css_pm_prepare(struct device *dev)
1179{
1180 struct subchannel *sch = to_subchannel(dev);
1181 struct css_driver *drv;
1182
1183 if (mutex_is_locked(&sch->reg_mutex))
1184 return -EAGAIN;
1185 if (!sch->dev.driver)
1186 return 0;
1187 drv = to_cssdriver(sch->dev.driver);
1188 /* Notify drivers that they may not register children. */
1189 return drv->prepare ? drv->prepare(sch) : 0;
1190}
1191
1192static void css_pm_complete(struct device *dev)
1193{
1194 struct subchannel *sch = to_subchannel(dev);
1195 struct css_driver *drv;
1196
1197 if (!sch->dev.driver)
1198 return;
1199 drv = to_cssdriver(sch->dev.driver);
1200 if (drv->complete)
1201 drv->complete(sch);
1202}
1203
1204static int css_pm_freeze(struct device *dev)
1205{
1206 struct subchannel *sch = to_subchannel(dev);
1207 struct css_driver *drv;
1208
1209 if (!sch->dev.driver)
1210 return 0;
1211 drv = to_cssdriver(sch->dev.driver);
1212 return drv->freeze ? drv->freeze(sch) : 0;
1213}
1214
1215static int css_pm_thaw(struct device *dev)
1216{
1217 struct subchannel *sch = to_subchannel(dev);
1218 struct css_driver *drv;
1219
1220 if (!sch->dev.driver)
1221 return 0;
1222 drv = to_cssdriver(sch->dev.driver);
1223 return drv->thaw ? drv->thaw(sch) : 0;
1224}
1225
1226static int css_pm_restore(struct device *dev)
1227{
1228 struct subchannel *sch = to_subchannel(dev);
1229 struct css_driver *drv;
1230
Sebastian Otteb4f5d92010-10-25 16:10:33 +02001231 css_update_ssd_info(sch);
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001232 if (!sch->dev.driver)
1233 return 0;
1234 drv = to_cssdriver(sch->dev.driver);
1235 return drv->restore ? drv->restore(sch) : 0;
1236}
1237
Alexey Dobriyan47145212009-12-14 18:00:08 -08001238static const struct dev_pm_ops css_pm_ops = {
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001239 .prepare = css_pm_prepare,
1240 .complete = css_pm_complete,
1241 .freeze = css_pm_freeze,
1242 .thaw = css_pm_thaw,
1243 .restore = css_pm_restore,
1244};
1245
Sebastian Ott3041b6a2011-03-15 17:08:31 +01001246static struct bus_type css_bus_type = {
Cornelia Huck8bbace72006-01-11 10:56:22 +01001247 .name = "css",
1248 .match = css_bus_match,
1249 .probe = css_probe,
1250 .remove = css_remove,
1251 .shutdown = css_shutdown,
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001252 .uevent = css_uevent,
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001253 .pm = &css_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254};
1255
Cornelia Huck25b7bb52008-01-26 14:10:41 +01001256/**
1257 * css_driver_register - register a css driver
1258 * @cdrv: css driver to register
1259 *
1260 * This is mainly a wrapper around driver_register that sets name
1261 * and bus_type in the embedded struct device_driver correctly.
1262 */
1263int css_driver_register(struct css_driver *cdrv)
1264{
Cornelia Huck25b7bb52008-01-26 14:10:41 +01001265 cdrv->drv.bus = &css_bus_type;
1266 return driver_register(&cdrv->drv);
1267}
1268EXPORT_SYMBOL_GPL(css_driver_register);
1269
1270/**
1271 * css_driver_unregister - unregister a css driver
1272 * @cdrv: css driver to unregister
1273 *
1274 * This is a wrapper around driver_unregister.
1275 */
1276void css_driver_unregister(struct css_driver *cdrv)
1277{
1278 driver_unregister(&cdrv->drv);
1279}
1280EXPORT_SYMBOL_GPL(css_driver_unregister);
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282MODULE_LICENSE("GPL");