blob: a239237d43f3e7bc4d5262bb3ca34ccd067f65dd [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140static struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800141css_alloc_subchannel(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 struct subchannel *sch;
144 int ret;
145
146 sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
147 if (sch == NULL)
148 return ERR_PTR(-ENOMEM);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800149 ret = cio_validate_subchannel (sch, schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (ret < 0) {
151 kfree(sch);
152 return ERR_PTR(ret);
153 }
Peter Oberparleiter390935a2009-12-07 12:51:18 +0100154 INIT_WORK(&sch->todo_work, css_sch_todo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return sch;
156}
157
158static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159css_subchannel_release(struct device *dev)
160{
161 struct subchannel *sch;
162
163 sch = to_subchannel(dev);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100164 if (!cio_is_console(sch->schid)) {
Peter Oberparleiter1da73bc2009-09-11 10:28:16 +0200165 /* Reset intparm to zeroes. */
166 sch->config.intparm = 0;
167 cio_commit_config(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100168 kfree(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 kfree(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Cornelia Huck07c6a332007-07-27 12:29:10 +0200173static int css_sch_device_register(struct subchannel *sch)
Cornelia Huck6ab48792006-07-12 16:39:50 +0200174{
175 int ret;
176
177 mutex_lock(&sch->reg_mutex);
Sebastian Ott6ee4fec2009-09-11 10:28:25 +0200178 dev_set_name(&sch->dev, "0.%x.%04x", sch->schid.ssid,
179 sch->schid.sch_no);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200180 ret = device_register(&sch->dev);
181 mutex_unlock(&sch->reg_mutex);
182 return ret;
183}
184
Cornelia Huck44a1c192008-07-14 09:58:47 +0200185/**
186 * css_sch_device_unregister - unregister a subchannel
187 * @sch: subchannel to be unregistered
188 */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200189void css_sch_device_unregister(struct subchannel *sch)
190{
191 mutex_lock(&sch->reg_mutex);
Sebastian Ottef60cd12008-07-14 09:59:20 +0200192 if (device_is_registered(&sch->dev))
193 device_unregister(&sch->dev);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200194 mutex_unlock(&sch->reg_mutex);
195}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200196EXPORT_SYMBOL_GPL(css_sch_device_unregister);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200197
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200198static void ssd_from_pmcw(struct chsc_ssd_info *ssd, struct pmcw *pmcw)
199{
200 int i;
201 int mask;
202
203 memset(ssd, 0, sizeof(struct chsc_ssd_info));
204 ssd->path_mask = pmcw->pim;
205 for (i = 0; i < 8; i++) {
206 mask = 0x80 >> i;
207 if (pmcw->pim & mask) {
208 chp_id_init(&ssd->chpid[i]);
209 ssd->chpid[i].id = pmcw->chpid[i];
210 }
211 }
212}
213
214static void ssd_register_chpids(struct chsc_ssd_info *ssd)
215{
216 int i;
217 int mask;
218
219 for (i = 0; i < 8; i++) {
220 mask = 0x80 >> i;
221 if (ssd->path_mask & mask)
222 if (!chp_is_registered(ssd->chpid[i]))
223 chp_new(ssd->chpid[i]);
224 }
225}
226
227void css_update_ssd_info(struct subchannel *sch)
228{
229 int ret;
230
231 if (cio_is_console(sch->schid)) {
232 /* Console is initialized too early for functions requiring
233 * memory allocation. */
234 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
235 } else {
236 ret = chsc_get_ssd_info(sch->schid, &sch->ssd_info);
237 if (ret)
238 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
239 ssd_register_chpids(&sch->ssd_info);
240 }
241}
242
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200243static ssize_t type_show(struct device *dev, struct device_attribute *attr,
244 char *buf)
245{
246 struct subchannel *sch = to_subchannel(dev);
247
248 return sprintf(buf, "%01x\n", sch->st);
249}
250
251static DEVICE_ATTR(type, 0444, type_show, NULL);
252
253static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
254 char *buf)
255{
256 struct subchannel *sch = to_subchannel(dev);
257
258 return sprintf(buf, "css:t%01X\n", sch->st);
259}
260
261static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
262
263static struct attribute *subch_attrs[] = {
264 &dev_attr_type.attr,
265 &dev_attr_modalias.attr,
266 NULL,
267};
268
269static struct attribute_group subch_attr_group = {
270 .attrs = subch_attrs,
271};
272
David Brownella4dbd672009-06-24 10:06:31 -0700273static const struct attribute_group *default_subch_attr_groups[] = {
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200274 &subch_attr_group,
275 NULL,
276};
277
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200278static int css_register_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 int ret;
281
282 /* Initialize the subchannel structure */
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200283 sch->dev.parent = &channel_subsystems[0]->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 sch->dev.bus = &css_bus_type;
285 sch->dev.release = &css_subchannel_release;
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200286 sch->dev.groups = default_subch_attr_groups;
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200287 /*
288 * We don't want to generate uevents for I/O subchannels that don't
289 * have a working ccw device behind them since they will be
290 * unregistered before they can be used anyway, so we delay the add
291 * uevent until after device recognition was successful.
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200292 * Note that we suppress the uevent for all subchannel types;
293 * the subchannel driver can decide itself when it wants to inform
294 * userspace of its existence.
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200295 */
Ming Leif67f1292009-03-01 21:10:49 +0800296 dev_set_uevent_suppress(&sch->dev, 1);
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200297 css_update_ssd_info(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /* make it known to the system */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200299 ret = css_sch_device_register(sch);
Cornelia Huck7674da72006-12-08 15:54:21 +0100300 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200301 CIO_MSG_EVENT(0, "Could not register sch 0.%x.%04x: %d\n",
302 sch->schid.ssid, sch->schid.sch_no, ret);
Cornelia Huck7674da72006-12-08 15:54:21 +0100303 return ret;
304 }
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200305 if (!sch->driver) {
306 /*
307 * No driver matched. Generate the uevent now so that
308 * a fitting driver module may be loaded based on the
309 * modalias.
310 */
Ming Leif67f1292009-03-01 21:10:49 +0800311 dev_set_uevent_suppress(&sch->dev, 0);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200312 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return ret;
315}
316
Cornelia Huckc820de32008-07-14 09:58:45 +0200317int css_probe_device(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 int ret;
320 struct subchannel *sch;
321
Sebastian Ott703e5c92009-09-22 22:58:38 +0200322 if (cio_is_console(schid))
323 sch = cio_get_console_subchannel();
324 else {
325 sch = css_alloc_subchannel(schid);
326 if (IS_ERR(sch))
327 return PTR_ERR(sch);
328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 ret = css_register_subchannel(sch);
Sebastian Ott703e5c92009-09-22 22:58:38 +0200330 if (ret) {
331 if (!cio_is_console(schid))
332 put_device(&sch->dev);
333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return ret;
335}
336
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700337static int
338check_subchannel(struct device * dev, void * data)
339{
340 struct subchannel *sch;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800341 struct subchannel_id *schid = data;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700342
343 sch = to_subchannel(dev);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800344 return schid_equal(&sch->schid, schid);
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700345}
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800348get_subchannel_by_schid(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct device *dev;
351
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700352 dev = bus_find_device(&css_bus_type, NULL,
Cornelia Huck12975ae2006-10-11 15:31:47 +0200353 &schid, check_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700355 return dev ? to_subchannel(dev) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100358/**
359 * css_sch_is_valid() - check if a subchannel is valid
360 * @schib: subchannel information block for the subchannel
361 */
362int css_sch_is_valid(struct schib *schib)
363{
364 if ((schib->pmcw.st == SUBCHANNEL_TYPE_IO) && !schib->pmcw.dnv)
365 return 0;
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200366 if ((schib->pmcw.st == SUBCHANNEL_TYPE_MSG) && !schib->pmcw.w)
367 return 0;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100368 return 1;
369}
370EXPORT_SYMBOL_GPL(css_sch_is_valid);
371
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200372static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
373{
374 struct schib schib;
375
376 if (!slow) {
377 /* Will be done on the slow path. */
378 return -EAGAIN;
379 }
Sebastian Ottcec85462012-10-15 12:24:56 +0200380 if (stsch_err(schid, &schib)) {
381 /* Subchannel is not provided. */
382 return -ENXIO;
383 }
384 if (!css_sch_is_valid(&schib)) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200385 /* Unusable - ignore. */
386 return 0;
387 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100388 CIO_MSG_EVENT(4, "event: sch 0.%x.%04x, new\n", schid.ssid,
389 schid.sch_no);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200390
391 return css_probe_device(schid);
392}
393
Cornelia Huckc820de32008-07-14 09:58:45 +0200394static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
395{
396 int ret = 0;
397
398 if (sch->driver) {
399 if (sch->driver->sch_event)
400 ret = sch->driver->sch_event(sch, slow);
401 else
402 dev_dbg(&sch->dev,
403 "Got subchannel machine check but "
404 "no sch_event handler provided.\n");
405 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100406 if (ret != 0 && ret != -EAGAIN) {
407 CIO_MSG_EVENT(2, "eval: sch 0.%x.%04x, rc=%d\n",
408 sch->schid.ssid, sch->schid.sch_no, ret);
409 }
Cornelia Huckc820de32008-07-14 09:58:45 +0200410 return ret;
411}
412
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200413static void css_evaluate_subchannel(struct subchannel_id schid, int slow)
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200414{
415 struct subchannel *sch;
416 int ret;
417
418 sch = get_subchannel_by_schid(schid);
419 if (sch) {
420 ret = css_evaluate_known_subchannel(sch, slow);
421 put_device(&sch->dev);
422 } else
423 ret = css_evaluate_new_subchannel(schid, slow);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200424 if (ret == -EAGAIN)
425 css_schedule_eval(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Sebastian Ott817e5002011-12-01 13:32:19 +0100428/**
429 * css_sched_sch_todo - schedule a subchannel operation
430 * @sch: subchannel
431 * @todo: todo
432 *
433 * Schedule the operation identified by @todo to be performed on the slow path
434 * workqueue. Do nothing if another operation with higher priority is already
435 * scheduled. Needs to be called with subchannel lock held.
436 */
437void css_sched_sch_todo(struct subchannel *sch, enum sch_todo todo)
438{
439 CIO_MSG_EVENT(4, "sch_todo: sched sch=0.%x.%04x todo=%d\n",
440 sch->schid.ssid, sch->schid.sch_no, todo);
441 if (sch->todo >= todo)
442 return;
443 /* Get workqueue ref. */
444 if (!get_device(&sch->dev))
445 return;
446 sch->todo = todo;
447 if (!queue_work(cio_work_q, &sch->todo_work)) {
448 /* Already queued, release workqueue ref. */
449 put_device(&sch->dev);
450 }
451}
Sebastian Ott01c5e6d2012-08-28 16:42:37 +0200452EXPORT_SYMBOL_GPL(css_sched_sch_todo);
Sebastian Ott817e5002011-12-01 13:32:19 +0100453
454static void css_sch_todo(struct work_struct *work)
455{
456 struct subchannel *sch;
457 enum sch_todo todo;
458 int ret;
459
460 sch = container_of(work, struct subchannel, todo_work);
461 /* Find out todo. */
462 spin_lock_irq(sch->lock);
463 todo = sch->todo;
464 CIO_MSG_EVENT(4, "sch_todo: sch=0.%x.%04x, todo=%d\n", sch->schid.ssid,
465 sch->schid.sch_no, todo);
466 sch->todo = SCH_TODO_NOTHING;
467 spin_unlock_irq(sch->lock);
468 /* Perform todo. */
469 switch (todo) {
470 case SCH_TODO_NOTHING:
471 break;
472 case SCH_TODO_EVAL:
473 ret = css_evaluate_known_subchannel(sch, 1);
474 if (ret == -EAGAIN) {
475 spin_lock_irq(sch->lock);
476 css_sched_sch_todo(sch, todo);
477 spin_unlock_irq(sch->lock);
478 }
479 break;
480 case SCH_TODO_UNREG:
481 css_sch_device_unregister(sch);
482 break;
483 }
484 /* Release workqueue ref. */
485 put_device(&sch->dev);
486}
487
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200488static struct idset *slow_subchannel_set;
489static spinlock_t slow_subchannel_lock;
Sebastian Ott25530552009-09-22 22:58:34 +0200490static wait_queue_head_t css_eval_wq;
491static atomic_t css_eval_scheduled;
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200492
493static int __init slow_subchannel_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200495 spin_lock_init(&slow_subchannel_lock);
Sebastian Ott25530552009-09-22 22:58:34 +0200496 atomic_set(&css_eval_scheduled, 0);
497 init_waitqueue_head(&css_eval_wq);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200498 slow_subchannel_set = idset_sch_new();
499 if (!slow_subchannel_set) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200500 CIO_MSG_EVENT(0, "could not allocate slow subchannel set\n");
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200501 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200503 return 0;
504}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100506static int slow_eval_known_fn(struct subchannel *sch, void *data)
507{
508 int eval;
509 int rc;
510
511 spin_lock_irq(&slow_subchannel_lock);
512 eval = idset_sch_contains(slow_subchannel_set, sch->schid);
513 idset_sch_del(slow_subchannel_set, sch->schid);
514 spin_unlock_irq(&slow_subchannel_lock);
515 if (eval) {
516 rc = css_evaluate_known_subchannel(sch, 1);
517 if (rc == -EAGAIN)
518 css_schedule_eval(sch->schid);
519 }
520 return 0;
521}
522
523static int slow_eval_unknown_fn(struct subchannel_id schid, void *data)
524{
525 int eval;
526 int rc = 0;
527
528 spin_lock_irq(&slow_subchannel_lock);
529 eval = idset_sch_contains(slow_subchannel_set, schid);
530 idset_sch_del(slow_subchannel_set, schid);
531 spin_unlock_irq(&slow_subchannel_lock);
532 if (eval) {
533 rc = css_evaluate_new_subchannel(schid, 1);
534 switch (rc) {
535 case -EAGAIN:
536 css_schedule_eval(schid);
537 rc = 0;
538 break;
539 case -ENXIO:
540 case -ENOMEM:
541 case -EIO:
542 /* These should abort looping */
Sebastian Ottcec85462012-10-15 12:24:56 +0200543 idset_sch_del_subseq(slow_subchannel_set, schid);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100544 break;
545 default:
546 rc = 0;
547 }
548 }
549 return rc;
550}
551
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200552static void css_slow_path_func(struct work_struct *unused)
553{
Sebastian Ott25530552009-09-22 22:58:34 +0200554 unsigned long flags;
555
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200556 CIO_TRACE_EVENT(4, "slowpath");
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100557 for_each_subchannel_staged(slow_eval_known_fn, slow_eval_unknown_fn,
558 NULL);
Sebastian Ott25530552009-09-22 22:58:34 +0200559 spin_lock_irqsave(&slow_subchannel_lock, flags);
560 if (idset_is_empty(slow_subchannel_set)) {
561 atomic_set(&css_eval_scheduled, 0);
562 wake_up(&css_eval_wq);
563 }
564 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200567static DECLARE_WORK(slow_path_work, css_slow_path_func);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100568struct workqueue_struct *cio_work_q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200570void css_schedule_eval(struct subchannel_id schid)
571{
572 unsigned long flags;
573
574 spin_lock_irqsave(&slow_subchannel_lock, flags);
575 idset_sch_add(slow_subchannel_set, schid);
Sebastian Ott25530552009-09-22 22:58:34 +0200576 atomic_set(&css_eval_scheduled, 1);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100577 queue_work(cio_work_q, &slow_path_work);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200578 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
579}
580
581void css_schedule_eval_all(void)
582{
583 unsigned long flags;
584
585 spin_lock_irqsave(&slow_subchannel_lock, flags);
586 idset_fill(slow_subchannel_set);
Sebastian Ott25530552009-09-22 22:58:34 +0200587 atomic_set(&css_eval_scheduled, 1);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100588 queue_work(cio_work_q, &slow_path_work);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200589 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
590}
591
Sebastian Ott703e5c92009-09-22 22:58:38 +0200592static int __unset_registered(struct device *dev, void *data)
593{
594 struct idset *set = data;
595 struct subchannel *sch = to_subchannel(dev);
596
597 idset_sch_del(set, sch->schid);
598 return 0;
599}
600
Sebastian Otta8481c22010-10-25 16:10:23 +0200601static void css_schedule_eval_all_unreg(void)
Sebastian Ott703e5c92009-09-22 22:58:38 +0200602{
603 unsigned long flags;
604 struct idset *unreg_set;
605
606 /* Find unregistered subchannels. */
607 unreg_set = idset_sch_new();
608 if (!unreg_set) {
609 /* Fallback. */
610 css_schedule_eval_all();
611 return;
612 }
613 idset_fill(unreg_set);
614 bus_for_each_dev(&css_bus_type, NULL, unreg_set, __unset_registered);
615 /* Apply to slow_subchannel_set. */
616 spin_lock_irqsave(&slow_subchannel_lock, flags);
617 idset_add_set(slow_subchannel_set, unreg_set);
618 atomic_set(&css_eval_scheduled, 1);
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100619 queue_work(cio_work_q, &slow_path_work);
Sebastian Ott703e5c92009-09-22 22:58:38 +0200620 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
621 idset_free(unreg_set);
622}
623
Cornelia Huck22806dc2008-04-17 07:45:59 +0200624void css_wait_for_slow_path(void)
625{
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100626 flush_workqueue(cio_work_q);
Cornelia Huck22806dc2008-04-17 07:45:59 +0200627}
628
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200629/* Schedule reprobing of all unregistered subchannels. */
630void css_schedule_reprobe(void)
631{
Sebastian Ott703e5c92009-09-22 22:58:38 +0200632 css_schedule_eval_all_unreg();
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200633}
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200634EXPORT_SYMBOL_GPL(css_schedule_reprobe);
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 * Called from the machine check handler for subchannel report words.
638 */
Cornelia Huckc1156182008-07-14 09:58:46 +0200639static void css_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800641 struct subchannel_id mchk_schid;
Sebastian Ott4bc4e962011-01-05 12:47:58 +0100642 struct subchannel *sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Cornelia Huckc1156182008-07-14 09:58:46 +0200644 if (overflow) {
645 css_schedule_eval_all();
646 return;
647 }
648 CIO_CRW_EVENT(2, "CRW0 reports slct=%d, oflw=%d, "
649 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
650 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
651 crw0->erc, crw0->rsid);
652 if (crw1)
653 CIO_CRW_EVENT(2, "CRW1 reports slct=%d, oflw=%d, "
654 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
655 crw1->slct, crw1->oflw, crw1->chn, crw1->rsc,
656 crw1->anc, crw1->erc, crw1->rsid);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800657 init_subchannel_id(&mchk_schid);
Cornelia Huckc1156182008-07-14 09:58:46 +0200658 mchk_schid.sch_no = crw0->rsid;
659 if (crw1)
Sebastian Ott8d7bfb42010-12-01 10:08:02 +0100660 mchk_schid.ssid = (crw1->rsid >> 4) & 3;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800661
Sebastian Ott4bc4e962011-01-05 12:47:58 +0100662 if (crw0->erc == CRW_ERC_PMOD) {
663 sch = get_subchannel_by_schid(mchk_schid);
664 if (sch) {
665 css_update_ssd_info(sch);
666 put_device(&sch->dev);
667 }
668 }
Cornelia Huckc1156182008-07-14 09:58:46 +0200669 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 * Since we are always presented with IPI in the CRW, we have to
671 * use stsch() to find out if the subchannel in question has come
672 * or gone.
673 */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200674 css_evaluate_subchannel(mchk_schid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
677static void __init
Cornelia Hucka28c6942006-01-06 00:19:23 -0800678css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Martin Schwidefsky94038a92010-05-17 10:00:00 +0200680 struct cpuid cpu_id;
681
Cornelia Huck75784c02008-07-14 09:58:57 +0200682 if (css_general_characteristics.mcss) {
Cornelia Hucka28c6942006-01-06 00:19:23 -0800683 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
684 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
685 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686#ifdef CONFIG_SMP
Martin Schwidefsky7b468482009-03-26 15:24:42 +0100687 css->global_pgid.pgid_high.cpu_addr = stap();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688#else
Cornelia Hucka28c6942006-01-06 00:19:23 -0800689 css->global_pgid.pgid_high.cpu_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690#endif
691 }
Martin Schwidefsky94038a92010-05-17 10:00:00 +0200692 get_cpu_id(&cpu_id);
693 css->global_pgid.cpu_id = cpu_id.ident;
694 css->global_pgid.cpu_model = cpu_id.machine;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800695 css->global_pgid.tod_high = tod_high;
696
697}
698
Cornelia Huck3b793062006-01-06 00:19:26 -0800699static void
700channel_subsystem_release(struct device *dev)
701{
702 struct channel_subsystem *css;
703
704 css = to_css(dev);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800705 mutex_destroy(&css->mutex);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200706 if (css->pseudo_subchannel) {
707 /* Implies that it has been generated but never registered. */
708 css_subchannel_release(&css->pseudo_subchannel->dev);
709 css->pseudo_subchannel = NULL;
710 }
Cornelia Huck3b793062006-01-06 00:19:26 -0800711 kfree(css);
712}
713
Cornelia Huck495a5b42006-03-24 03:15:14 -0800714static ssize_t
715css_cm_enable_show(struct device *dev, struct device_attribute *attr,
716 char *buf)
717{
718 struct channel_subsystem *css = to_css(dev);
Michael Ernst8284fb192008-04-17 07:46:01 +0200719 int ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800720
721 if (!css)
722 return 0;
Michael Ernst8284fb192008-04-17 07:46:01 +0200723 mutex_lock(&css->mutex);
724 ret = sprintf(buf, "%x\n", css->cm_enabled);
725 mutex_unlock(&css->mutex);
726 return ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800727}
728
729static ssize_t
730css_cm_enable_store(struct device *dev, struct device_attribute *attr,
731 const char *buf, size_t count)
732{
733 struct channel_subsystem *css = to_css(dev);
734 int ret;
Cornelia Huck2f972202008-04-30 13:38:33 +0200735 unsigned long val;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800736
Cornelia Huck2f972202008-04-30 13:38:33 +0200737 ret = strict_strtoul(buf, 16, &val);
738 if (ret)
739 return ret;
Michael Ernst8284fb192008-04-17 07:46:01 +0200740 mutex_lock(&css->mutex);
Cornelia Huck2f972202008-04-30 13:38:33 +0200741 switch (val) {
742 case 0:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800743 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
744 break;
Cornelia Huck2f972202008-04-30 13:38:33 +0200745 case 1:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800746 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
747 break;
748 default:
749 ret = -EINVAL;
750 }
Michael Ernst8284fb192008-04-17 07:46:01 +0200751 mutex_unlock(&css->mutex);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800752 return ret < 0 ? ret : count;
753}
754
755static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
756
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100757static int __init setup_css(int nr)
Cornelia Hucka28c6942006-01-06 00:19:23 -0800758{
759 u32 tod_high;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100760 int ret;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200761 struct channel_subsystem *css;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800762
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200763 css = channel_subsystems[nr];
764 memset(css, 0, sizeof(struct channel_subsystem));
765 css->pseudo_subchannel =
766 kzalloc(sizeof(*css->pseudo_subchannel), GFP_KERNEL);
767 if (!css->pseudo_subchannel)
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100768 return -ENOMEM;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200769 css->pseudo_subchannel->dev.parent = &css->device;
770 css->pseudo_subchannel->dev.release = css_subchannel_release;
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200771 dev_set_name(&css->pseudo_subchannel->dev, "defunct");
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100772 mutex_init(&css->pseudo_subchannel->reg_mutex);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200773 ret = cio_create_sch_lock(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100774 if (ret) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200775 kfree(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100776 return ret;
777 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200778 mutex_init(&css->mutex);
779 css->valid = 1;
780 css->cssid = nr;
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200781 dev_set_name(&css->device, "css%x", nr);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200782 css->device.release = channel_subsystem_release;
Heiko Carstens1aae0562013-01-30 09:49:40 +0100783 tod_high = (u32) (get_tod_clock() >> 32);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200784 css_generate_pgid(css, tod_high);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100785 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Cornelia Hucka55360d2007-10-12 16:11:20 +0200788static int css_reboot_event(struct notifier_block *this,
789 unsigned long event,
790 void *ptr)
791{
792 int ret, i;
793
794 ret = NOTIFY_DONE;
795 for (i = 0; i <= __MAX_CSSID; i++) {
796 struct channel_subsystem *css;
797
798 css = channel_subsystems[i];
Michael Ernst8284fb192008-04-17 07:46:01 +0200799 mutex_lock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200800 if (css->cm_enabled)
801 if (chsc_secm(css, 0))
802 ret = NOTIFY_BAD;
Michael Ernst8284fb192008-04-17 07:46:01 +0200803 mutex_unlock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200804 }
805
806 return ret;
807}
808
809static struct notifier_block css_reboot_notifier = {
810 .notifier_call = css_reboot_event,
811};
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813/*
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200814 * Since the css devices are neither on a bus nor have a class
815 * nor have a special device type, we cannot stop/restart channel
816 * path measurements via the normal suspend/resume callbacks, but have
817 * to use notifiers.
818 */
819static int css_power_event(struct notifier_block *this, unsigned long event,
820 void *ptr)
821{
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200822 int ret, i;
823
824 switch (event) {
825 case PM_HIBERNATION_PREPARE:
826 case PM_SUSPEND_PREPARE:
827 ret = NOTIFY_DONE;
828 for (i = 0; i <= __MAX_CSSID; i++) {
829 struct channel_subsystem *css;
830
831 css = channel_subsystems[i];
832 mutex_lock(&css->mutex);
833 if (!css->cm_enabled) {
834 mutex_unlock(&css->mutex);
835 continue;
836 }
Akinobu Mitaf0c077a2011-07-08 20:53:36 +0200837 ret = __chsc_do_secm(css, 0);
838 ret = notifier_from_errno(ret);
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200839 mutex_unlock(&css->mutex);
840 }
841 break;
842 case PM_POST_HIBERNATION:
843 case PM_POST_SUSPEND:
844 ret = NOTIFY_DONE;
845 for (i = 0; i <= __MAX_CSSID; i++) {
846 struct channel_subsystem *css;
847
848 css = channel_subsystems[i];
849 mutex_lock(&css->mutex);
850 if (!css->cm_enabled) {
851 mutex_unlock(&css->mutex);
852 continue;
853 }
Akinobu Mitaf0c077a2011-07-08 20:53:36 +0200854 ret = __chsc_do_secm(css, 1);
855 ret = notifier_from_errno(ret);
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200856 mutex_unlock(&css->mutex);
857 }
858 /* search for subchannels, which appeared during hibernation */
859 css_schedule_reprobe();
860 break;
861 default:
862 ret = NOTIFY_DONE;
863 }
864 return ret;
865
866}
867static struct notifier_block css_power_notifier = {
868 .notifier_call = css_power_event,
869};
870
871/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 * Now that the driver core is running, we can setup our channel subsystem.
873 * The struct subchannel's are created during probing (except for the
874 * static console subchannel).
875 */
Sebastian Ott2f176442009-09-22 22:58:33 +0200876static int __init css_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800878 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Sebastian Ott34aec072010-10-25 16:10:28 +0200880 ret = chsc_init();
881 if (ret)
882 return ret;
883
Sebastian Ott34196f82010-10-25 16:10:29 +0200884 chsc_determine_css_characteristics();
Sebastian Ottb0a285d2009-09-22 22:58:37 +0200885 /* Try to enable MSS. */
886 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
Sebastian Ott818c2722010-04-22 17:17:03 +0200887 if (ret)
Sebastian Ottb0a285d2009-09-22 22:58:37 +0200888 max_ssid = 0;
Sebastian Ott818c2722010-04-22 17:17:03 +0200889 else /* Success. */
890 max_ssid = __MAX_SSID;
Sebastian Ottb0a285d2009-09-22 22:58:37 +0200891
Cornelia Huck4434a382007-07-27 12:29:21 +0200892 ret = slow_subchannel_init();
893 if (ret)
894 goto out;
895
Heiko Carstensf5daba12009-03-26 15:24:01 +0100896 ret = crw_register_handler(CRW_RSC_SCH, css_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +0200897 if (ret)
898 goto out;
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if ((ret = bus_register(&css_bus_type)))
901 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Cornelia Hucka28c6942006-01-06 00:19:23 -0800903 /* Setup css structure. */
904 for (i = 0; i <= __MAX_CSSID; i++) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200905 struct channel_subsystem *css;
906
907 css = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
908 if (!css) {
Cornelia Hucka28c6942006-01-06 00:19:23 -0800909 ret = -ENOMEM;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800910 goto out_unregister;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800911 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200912 channel_subsystems[i] = css;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100913 ret = setup_css(i);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200914 if (ret) {
915 kfree(channel_subsystems[i]);
916 goto out_unregister;
917 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200918 ret = device_register(&css->device);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200919 if (ret) {
920 put_device(&css->device);
921 goto out_unregister;
922 }
Cornelia Huck75784c02008-07-14 09:58:57 +0200923 if (css_chsc_characteristics.secm) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200924 ret = device_create_file(&css->device,
Cornelia Huck7e560812006-07-12 16:40:19 +0200925 &dev_attr_cm_enable);
926 if (ret)
927 goto out_device;
928 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200929 ret = device_register(&css->pseudo_subchannel->dev);
Sebastian Ottc6304932009-09-11 10:28:38 +0200930 if (ret) {
931 put_device(&css->pseudo_subchannel->dev);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100932 goto out_file;
Sebastian Ottc6304932009-09-11 10:28:38 +0200933 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800934 }
Cornelia Hucka55360d2007-10-12 16:11:20 +0200935 ret = register_reboot_notifier(&css_reboot_notifier);
936 if (ret)
Cornelia Hucka2164b82008-09-09 12:38:57 +0200937 goto out_unregister;
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200938 ret = register_pm_notifier(&css_power_notifier);
939 if (ret) {
940 unregister_reboot_notifier(&css_reboot_notifier);
941 goto out_unregister;
942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 css_init_done = 1;
944
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200945 /* Enable default isc for I/O subchannels. */
Cornelia Huck6ef556cc2008-07-14 09:59:01 +0200946 isc_register(IO_SCH_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return 0;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100949out_file:
Cornelia Hucka2164b82008-09-09 12:38:57 +0200950 if (css_chsc_characteristics.secm)
951 device_remove_file(&channel_subsystems[i]->device,
952 &dev_attr_cm_enable);
Cornelia Huck7e560812006-07-12 16:40:19 +0200953out_device:
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200954 device_unregister(&channel_subsystems[i]->device);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800955out_unregister:
Cornelia Hucka28c6942006-01-06 00:19:23 -0800956 while (i > 0) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200957 struct channel_subsystem *css;
958
Cornelia Hucka28c6942006-01-06 00:19:23 -0800959 i--;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200960 css = channel_subsystems[i];
961 device_unregister(&css->pseudo_subchannel->dev);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200962 css->pseudo_subchannel = NULL;
Cornelia Huck75784c02008-07-14 09:58:57 +0200963 if (css_chsc_characteristics.secm)
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200964 device_remove_file(&css->device,
Cornelia Huck495a5b42006-03-24 03:15:14 -0800965 &dev_attr_cm_enable);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200966 device_unregister(&css->device);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 bus_unregister(&css_bus_type);
969out:
Sebastian Ott34aec072010-10-25 16:10:28 +0200970 crw_unregister_handler(CRW_RSC_SCH);
Sebastian Ottb827d1c82009-09-22 22:58:36 +0200971 idset_free(slow_subchannel_set);
Sebastian Ott34aec072010-10-25 16:10:28 +0200972 chsc_init_cleanup();
Michael Ernste6d5a422008-12-25 13:39:36 +0100973 pr_alert("The CSS device driver initialization failed with "
974 "errno=%d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return ret;
976}
977
Sebastian Ott2f176442009-09-22 22:58:33 +0200978static void __init css_bus_cleanup(void)
979{
980 struct channel_subsystem *css;
981 int i;
982
983 for (i = 0; i <= __MAX_CSSID; i++) {
984 css = channel_subsystems[i];
985 device_unregister(&css->pseudo_subchannel->dev);
986 css->pseudo_subchannel = NULL;
987 if (css_chsc_characteristics.secm)
988 device_remove_file(&css->device, &dev_attr_cm_enable);
989 device_unregister(&css->device);
990 }
991 bus_unregister(&css_bus_type);
Sebastian Ott34aec072010-10-25 16:10:28 +0200992 crw_unregister_handler(CRW_RSC_SCH);
Sebastian Ottb827d1c82009-09-22 22:58:36 +0200993 idset_free(slow_subchannel_set);
Sebastian Ott34aec072010-10-25 16:10:28 +0200994 chsc_init_cleanup();
Sebastian Ott2f176442009-09-22 22:58:33 +0200995 isc_unregister(IO_SCH_ISC);
996}
997
998static int __init channel_subsystem_init(void)
999{
1000 int ret;
1001
1002 ret = css_bus_init();
1003 if (ret)
1004 return ret;
Sebastian Ottbe5d3822010-02-26 22:37:24 +01001005 cio_work_q = create_singlethread_workqueue("cio");
1006 if (!cio_work_q) {
1007 ret = -ENOMEM;
1008 goto out_bus;
1009 }
Sebastian Ott2f176442009-09-22 22:58:33 +02001010 ret = io_subchannel_init();
1011 if (ret)
Sebastian Ottbe5d3822010-02-26 22:37:24 +01001012 goto out_wq;
Sebastian Ott2f176442009-09-22 22:58:33 +02001013
1014 return ret;
Sebastian Ottbe5d3822010-02-26 22:37:24 +01001015out_wq:
1016 destroy_workqueue(cio_work_q);
1017out_bus:
1018 css_bus_cleanup();
1019 return ret;
Sebastian Ott2f176442009-09-22 22:58:33 +02001020}
1021subsys_initcall(channel_subsystem_init);
1022
Sebastian Ott8ea7f552009-09-22 22:58:35 +02001023static int css_settle(struct device_driver *drv, void *unused)
1024{
1025 struct css_driver *cssdrv = to_cssdriver(drv);
1026
1027 if (cssdrv->settle)
Sebastian Ottb4c70722010-02-26 22:37:27 +01001028 return cssdrv->settle();
Sebastian Ott8ea7f552009-09-22 22:58:35 +02001029 return 0;
1030}
1031
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001032int css_complete_work(void)
Sebastian Ott879acca52010-02-26 22:37:25 +01001033{
1034 int ret;
1035
1036 /* Wait for the evaluation of subchannels to finish. */
Sebastian Ottb4c70722010-02-26 22:37:27 +01001037 ret = wait_event_interruptible(css_eval_wq,
1038 atomic_read(&css_eval_scheduled) == 0);
1039 if (ret)
1040 return -EINTR;
Sebastian Ott879acca52010-02-26 22:37:25 +01001041 flush_workqueue(cio_work_q);
1042 /* Wait for the subchannel type specific initialization to finish */
Sebastian Ottb4c70722010-02-26 22:37:27 +01001043 return bus_for_each_drv(&css_bus_type, NULL, NULL, css_settle);
Sebastian Ott879acca52010-02-26 22:37:25 +01001044}
1045
1046
Sebastian Ott2f176442009-09-22 22:58:33 +02001047/*
1048 * Wait for the initialization of devices to finish, to make sure we are
1049 * done with our setup if the search for the root device starts.
1050 */
1051static int __init channel_subsystem_init_sync(void)
1052{
Sebastian Ott703e5c92009-09-22 22:58:38 +02001053 /* Start initial subchannel evaluation. */
1054 css_schedule_eval_all();
Sebastian Ott879acca52010-02-26 22:37:25 +01001055 css_complete_work();
1056 return 0;
Sebastian Ott2f176442009-09-22 22:58:33 +02001057}
1058subsys_initcall_sync(channel_subsystem_init_sync);
1059
Sebastian Ott889ee952010-04-22 17:17:04 +02001060void channel_subsystem_reinit(void)
1061{
Sebastian Ott62da1772010-10-25 16:10:32 +02001062 struct channel_path *chp;
1063 struct chp_id chpid;
1064
Sebastian Ott889ee952010-04-22 17:17:04 +02001065 chsc_enable_facility(CHSC_SDA_OC_MSS);
Sebastian Ott62da1772010-10-25 16:10:32 +02001066 chp_id_for_each(&chpid) {
1067 chp = chpid_to_chp(chpid);
1068 if (!chp)
1069 continue;
1070 chsc_determine_base_channel_path_desc(chpid, &chp->desc);
1071 }
Sebastian Ott889ee952010-04-22 17:17:04 +02001072}
1073
Sebastian Ott879acca52010-02-26 22:37:25 +01001074#ifdef CONFIG_PROC_FS
1075static ssize_t cio_settle_write(struct file *file, const char __user *buf,
1076 size_t count, loff_t *ppos)
1077{
Sebastian Ottb4c70722010-02-26 22:37:27 +01001078 int ret;
1079
Sebastian Ott879acca52010-02-26 22:37:25 +01001080 /* Handle pending CRW's. */
1081 crw_wait_for_channel_report();
Sebastian Ottb4c70722010-02-26 22:37:27 +01001082 ret = css_complete_work();
1083
1084 return ret ? ret : count;
Sebastian Ott879acca52010-02-26 22:37:25 +01001085}
1086
1087static const struct file_operations cio_settle_proc_fops = {
Martin Schwidefsky58ea91c2010-05-17 10:00:07 +02001088 .open = nonseekable_open,
Sebastian Ott879acca52010-02-26 22:37:25 +01001089 .write = cio_settle_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001090 .llseek = no_llseek,
Sebastian Ott879acca52010-02-26 22:37:25 +01001091};
1092
1093static int __init cio_settle_init(void)
1094{
1095 struct proc_dir_entry *entry;
1096
1097 entry = proc_create("cio_settle", S_IWUSR, NULL,
1098 &cio_settle_proc_fops);
1099 if (!entry)
1100 return -ENOMEM;
1101 return 0;
1102}
1103device_initcall(cio_settle_init);
1104#endif /*CONFIG_PROC_FS*/
1105
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +01001106int sch_is_pseudo_sch(struct subchannel *sch)
1107{
1108 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
1109}
1110
Cornelia Huckf08adc02008-07-14 09:59:03 +02001111static int css_bus_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Cornelia Huck084325d2008-01-26 14:10:38 +01001113 struct subchannel *sch = to_subchannel(dev);
1114 struct css_driver *driver = to_cssdriver(drv);
Cornelia Huckf08adc02008-07-14 09:59:03 +02001115 struct css_device_id *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Cornelia Huckf08adc02008-07-14 09:59:03 +02001117 for (id = driver->subchannel_type; id->match_flags; id++) {
1118 if (sch->st == id->type)
1119 return 1;
1120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 return 0;
1123}
1124
Cornelia Huck98c13c22008-01-26 14:10:40 +01001125static int css_probe(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001126{
1127 struct subchannel *sch;
Cornelia Huck98c13c22008-01-26 14:10:40 +01001128 int ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +01001129
1130 sch = to_subchannel(dev);
Cornelia Huck084325d2008-01-26 14:10:38 +01001131 sch->driver = to_cssdriver(dev->driver);
Cornelia Huck98c13c22008-01-26 14:10:40 +01001132 ret = sch->driver->probe ? sch->driver->probe(sch) : 0;
1133 if (ret)
1134 sch->driver = NULL;
1135 return ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +01001136}
1137
Cornelia Huck98c13c22008-01-26 14:10:40 +01001138static int css_remove(struct device *dev)
1139{
1140 struct subchannel *sch;
1141 int ret;
1142
1143 sch = to_subchannel(dev);
1144 ret = sch->driver->remove ? sch->driver->remove(sch) : 0;
1145 sch->driver = NULL;
1146 return ret;
1147}
1148
1149static void css_shutdown(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001150{
1151 struct subchannel *sch;
1152
1153 sch = to_subchannel(dev);
Cornelia Huck98c13c22008-01-26 14:10:40 +01001154 if (sch->driver && sch->driver->shutdown)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001155 sch->driver->shutdown(sch);
1156}
1157
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001158static int css_uevent(struct device *dev, struct kobj_uevent_env *env)
1159{
1160 struct subchannel *sch = to_subchannel(dev);
1161 int ret;
1162
1163 ret = add_uevent_var(env, "ST=%01X", sch->st);
1164 if (ret)
1165 return ret;
1166 ret = add_uevent_var(env, "MODALIAS=css:t%01X", sch->st);
1167 return ret;
1168}
1169
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001170static int css_pm_prepare(struct device *dev)
1171{
1172 struct subchannel *sch = to_subchannel(dev);
1173 struct css_driver *drv;
1174
1175 if (mutex_is_locked(&sch->reg_mutex))
1176 return -EAGAIN;
1177 if (!sch->dev.driver)
1178 return 0;
1179 drv = to_cssdriver(sch->dev.driver);
1180 /* Notify drivers that they may not register children. */
1181 return drv->prepare ? drv->prepare(sch) : 0;
1182}
1183
1184static void css_pm_complete(struct device *dev)
1185{
1186 struct subchannel *sch = to_subchannel(dev);
1187 struct css_driver *drv;
1188
1189 if (!sch->dev.driver)
1190 return;
1191 drv = to_cssdriver(sch->dev.driver);
1192 if (drv->complete)
1193 drv->complete(sch);
1194}
1195
1196static int css_pm_freeze(struct device *dev)
1197{
1198 struct subchannel *sch = to_subchannel(dev);
1199 struct css_driver *drv;
1200
1201 if (!sch->dev.driver)
1202 return 0;
1203 drv = to_cssdriver(sch->dev.driver);
1204 return drv->freeze ? drv->freeze(sch) : 0;
1205}
1206
1207static int css_pm_thaw(struct device *dev)
1208{
1209 struct subchannel *sch = to_subchannel(dev);
1210 struct css_driver *drv;
1211
1212 if (!sch->dev.driver)
1213 return 0;
1214 drv = to_cssdriver(sch->dev.driver);
1215 return drv->thaw ? drv->thaw(sch) : 0;
1216}
1217
1218static int css_pm_restore(struct device *dev)
1219{
1220 struct subchannel *sch = to_subchannel(dev);
1221 struct css_driver *drv;
1222
Sebastian Otteb4f5d92010-10-25 16:10:33 +02001223 css_update_ssd_info(sch);
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001224 if (!sch->dev.driver)
1225 return 0;
1226 drv = to_cssdriver(sch->dev.driver);
1227 return drv->restore ? drv->restore(sch) : 0;
1228}
1229
Alexey Dobriyan47145212009-12-14 18:00:08 -08001230static const struct dev_pm_ops css_pm_ops = {
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001231 .prepare = css_pm_prepare,
1232 .complete = css_pm_complete,
1233 .freeze = css_pm_freeze,
1234 .thaw = css_pm_thaw,
1235 .restore = css_pm_restore,
1236};
1237
Sebastian Ott3041b6a2011-03-15 17:08:31 +01001238static struct bus_type css_bus_type = {
Cornelia Huck8bbace72006-01-11 10:56:22 +01001239 .name = "css",
1240 .match = css_bus_match,
1241 .probe = css_probe,
1242 .remove = css_remove,
1243 .shutdown = css_shutdown,
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001244 .uevent = css_uevent,
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001245 .pm = &css_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246};
1247
Cornelia Huck25b7bb52008-01-26 14:10:41 +01001248/**
1249 * css_driver_register - register a css driver
1250 * @cdrv: css driver to register
1251 *
1252 * This is mainly a wrapper around driver_register that sets name
1253 * and bus_type in the embedded struct device_driver correctly.
1254 */
1255int css_driver_register(struct css_driver *cdrv)
1256{
Cornelia Huck25b7bb52008-01-26 14:10:41 +01001257 cdrv->drv.bus = &css_bus_type;
1258 return driver_register(&cdrv->drv);
1259}
1260EXPORT_SYMBOL_GPL(css_driver_register);
1261
1262/**
1263 * css_driver_unregister - unregister a css driver
1264 * @cdrv: css driver to unregister
1265 *
1266 * This is a wrapper around driver_unregister.
1267 */
1268void css_driver_unregister(struct css_driver *cdrv)
1269{
1270 driver_unregister(&cdrv->drv);
1271}
1272EXPORT_SYMBOL_GPL(css_driver_unregister);
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274MODULE_LICENSE("GPL");