blob: 40d4b3093b718cacbaca1c514e999aed44e10fca [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 Ottdcbd16d2009-06-16 10:30:22 +02004 * Copyright IBM Corp. 2002, 2009
5 *
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>
Cornelia Huck3a3fc292008-07-14 09:58:58 +020021#include <asm/isc.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010022#include <asm/crw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "css.h"
25#include "cio.h"
26#include "cio_debug.h"
27#include "ioasm.h"
28#include "chsc.h"
Peter Oberparleiter40154b82006-06-29 14:57:03 +020029#include "device.h"
Peter Oberparleiter83b33702007-04-27 16:01:34 +020030#include "idset.h"
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020031#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033int css_init_done = 0;
Peter Oberparleiter40154b82006-06-29 14:57:03 +020034static int need_reprobe = 0;
Cornelia Huckfb6958a2006-01-06 00:19:25 -080035static int max_ssid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Cornelia Huck7c9f4e32007-10-12 16:11:13 +020037struct channel_subsystem *channel_subsystems[__MAX_CSSID + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Heiko Carstens4d284ca2007-02-05 21:18:53 +010039int
Cornelia Huckf97a56f2006-01-06 00:19:22 -080040for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *data)
41{
42 struct subchannel_id schid;
43 int ret;
44
45 init_subchannel_id(&schid);
46 ret = -ENODEV;
47 do {
Cornelia Huckfb6958a2006-01-06 00:19:25 -080048 do {
49 ret = fn(schid, data);
50 if (ret)
51 break;
52 } while (schid.sch_no++ < __MAX_SUBCHANNEL);
53 schid.sch_no = 0;
54 } while (schid.ssid++ < max_ssid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -080055 return ret;
56}
57
Peter Oberparleitere82a1562008-01-26 14:10:48 +010058struct cb_data {
59 void *data;
60 struct idset *set;
61 int (*fn_known_sch)(struct subchannel *, void *);
62 int (*fn_unknown_sch)(struct subchannel_id, void *);
63};
64
65static int call_fn_known_sch(struct device *dev, void *data)
66{
67 struct subchannel *sch = to_subchannel(dev);
68 struct cb_data *cb = data;
69 int rc = 0;
70
71 idset_sch_del(cb->set, sch->schid);
72 if (cb->fn_known_sch)
73 rc = cb->fn_known_sch(sch, cb->data);
74 return rc;
75}
76
77static int call_fn_unknown_sch(struct subchannel_id schid, void *data)
78{
79 struct cb_data *cb = data;
80 int rc = 0;
81
82 if (idset_sch_contains(cb->set, schid))
83 rc = cb->fn_unknown_sch(schid, cb->data);
84 return rc;
85}
86
Sebastian Ott90ac24a2009-03-26 15:24:11 +010087static int call_fn_all_sch(struct subchannel_id schid, void *data)
88{
89 struct cb_data *cb = data;
90 struct subchannel *sch;
91 int rc = 0;
92
93 sch = get_subchannel_by_schid(schid);
94 if (sch) {
95 if (cb->fn_known_sch)
96 rc = cb->fn_known_sch(sch, cb->data);
97 put_device(&sch->dev);
98 } else {
99 if (cb->fn_unknown_sch)
100 rc = cb->fn_unknown_sch(schid, cb->data);
101 }
102
103 return rc;
104}
105
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100106int for_each_subchannel_staged(int (*fn_known)(struct subchannel *, void *),
107 int (*fn_unknown)(struct subchannel_id,
108 void *), void *data)
109{
110 struct cb_data cb;
111 int rc;
112
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100113 cb.data = data;
114 cb.fn_known_sch = fn_known;
115 cb.fn_unknown_sch = fn_unknown;
Sebastian Ott90ac24a2009-03-26 15:24:11 +0100116
117 cb.set = idset_sch_new();
118 if (!cb.set)
119 /* fall back to brute force scanning in case of oom */
120 return for_each_subchannel(call_fn_all_sch, &cb);
121
122 idset_fill(cb.set);
123
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100124 /* Process registered subchannels. */
125 rc = bus_for_each_dev(&css_bus_type, NULL, &cb, call_fn_known_sch);
126 if (rc)
127 goto out;
128 /* Process unregistered subchannels. */
129 if (fn_unknown)
130 rc = for_each_subchannel(call_fn_unknown_sch, &cb);
131out:
132 idset_free(cb.set);
133
134 return rc;
135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800138css_alloc_subchannel(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 struct subchannel *sch;
141 int ret;
142
143 sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
144 if (sch == NULL)
145 return ERR_PTR(-ENOMEM);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800146 ret = cio_validate_subchannel (sch, schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (ret < 0) {
148 kfree(sch);
149 return ERR_PTR(ret);
150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return sch;
152}
153
154static void
155css_free_subchannel(struct subchannel *sch)
156{
157 if (sch) {
158 /* Reset intparm to zeroes. */
Sebastian Ott13952ec2008-12-25 13:39:13 +0100159 sch->config.intparm = 0;
160 cio_commit_config(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100161 kfree(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 kfree(sch);
163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166static void
167css_subchannel_release(struct device *dev)
168{
169 struct subchannel *sch;
170
171 sch = to_subchannel(dev);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100172 if (!cio_is_console(sch->schid)) {
Peter Oberparleiter1da73bc2009-09-11 10:28:16 +0200173 /* Reset intparm to zeroes. */
174 sch->config.intparm = 0;
175 cio_commit_config(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100176 kfree(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 kfree(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Cornelia Huck07c6a332007-07-27 12:29:10 +0200181static int css_sch_device_register(struct subchannel *sch)
Cornelia Huck6ab48792006-07-12 16:39:50 +0200182{
183 int ret;
184
185 mutex_lock(&sch->reg_mutex);
186 ret = device_register(&sch->dev);
187 mutex_unlock(&sch->reg_mutex);
188 return ret;
189}
190
Cornelia Huck44a1c192008-07-14 09:58:47 +0200191/**
192 * css_sch_device_unregister - unregister a subchannel
193 * @sch: subchannel to be unregistered
194 */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200195void css_sch_device_unregister(struct subchannel *sch)
196{
197 mutex_lock(&sch->reg_mutex);
Sebastian Ottef60cd12008-07-14 09:59:20 +0200198 if (device_is_registered(&sch->dev))
199 device_unregister(&sch->dev);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200200 mutex_unlock(&sch->reg_mutex);
201}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200202EXPORT_SYMBOL_GPL(css_sch_device_unregister);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200203
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200204static void ssd_from_pmcw(struct chsc_ssd_info *ssd, struct pmcw *pmcw)
205{
206 int i;
207 int mask;
208
209 memset(ssd, 0, sizeof(struct chsc_ssd_info));
210 ssd->path_mask = pmcw->pim;
211 for (i = 0; i < 8; i++) {
212 mask = 0x80 >> i;
213 if (pmcw->pim & mask) {
214 chp_id_init(&ssd->chpid[i]);
215 ssd->chpid[i].id = pmcw->chpid[i];
216 }
217 }
218}
219
220static void ssd_register_chpids(struct chsc_ssd_info *ssd)
221{
222 int i;
223 int mask;
224
225 for (i = 0; i < 8; i++) {
226 mask = 0x80 >> i;
227 if (ssd->path_mask & mask)
228 if (!chp_is_registered(ssd->chpid[i]))
229 chp_new(ssd->chpid[i]);
230 }
231}
232
233void css_update_ssd_info(struct subchannel *sch)
234{
235 int ret;
236
237 if (cio_is_console(sch->schid)) {
238 /* Console is initialized too early for functions requiring
239 * memory allocation. */
240 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
241 } else {
242 ret = chsc_get_ssd_info(sch->schid, &sch->ssd_info);
243 if (ret)
244 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
245 ssd_register_chpids(&sch->ssd_info);
246 }
247}
248
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200249static ssize_t type_show(struct device *dev, struct device_attribute *attr,
250 char *buf)
251{
252 struct subchannel *sch = to_subchannel(dev);
253
254 return sprintf(buf, "%01x\n", sch->st);
255}
256
257static DEVICE_ATTR(type, 0444, type_show, NULL);
258
259static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
260 char *buf)
261{
262 struct subchannel *sch = to_subchannel(dev);
263
264 return sprintf(buf, "css:t%01X\n", sch->st);
265}
266
267static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
268
269static struct attribute *subch_attrs[] = {
270 &dev_attr_type.attr,
271 &dev_attr_modalias.attr,
272 NULL,
273};
274
275static struct attribute_group subch_attr_group = {
276 .attrs = subch_attrs,
277};
278
279static struct attribute_group *default_subch_attr_groups[] = {
280 &subch_attr_group,
281 NULL,
282};
283
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200284static int css_register_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 int ret;
287
288 /* Initialize the subchannel structure */
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200289 sch->dev.parent = &channel_subsystems[0]->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 sch->dev.bus = &css_bus_type;
291 sch->dev.release = &css_subchannel_release;
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200292 sch->dev.groups = default_subch_attr_groups;
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200293 /*
294 * We don't want to generate uevents for I/O subchannels that don't
295 * have a working ccw device behind them since they will be
296 * unregistered before they can be used anyway, so we delay the add
297 * uevent until after device recognition was successful.
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200298 * Note that we suppress the uevent for all subchannel types;
299 * the subchannel driver can decide itself when it wants to inform
300 * userspace of its existence.
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200301 */
Ming Leif67f1292009-03-01 21:10:49 +0800302 dev_set_uevent_suppress(&sch->dev, 1);
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200303 css_update_ssd_info(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* make it known to the system */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200305 ret = css_sch_device_register(sch);
Cornelia Huck7674da72006-12-08 15:54:21 +0100306 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200307 CIO_MSG_EVENT(0, "Could not register sch 0.%x.%04x: %d\n",
308 sch->schid.ssid, sch->schid.sch_no, ret);
Cornelia Huck7674da72006-12-08 15:54:21 +0100309 return ret;
310 }
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200311 if (!sch->driver) {
312 /*
313 * No driver matched. Generate the uevent now so that
314 * a fitting driver module may be loaded based on the
315 * modalias.
316 */
Ming Leif67f1292009-03-01 21:10:49 +0800317 dev_set_uevent_suppress(&sch->dev, 0);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200318 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return ret;
321}
322
Cornelia Huckc820de32008-07-14 09:58:45 +0200323int css_probe_device(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 int ret;
326 struct subchannel *sch;
327
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800328 sch = css_alloc_subchannel(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (IS_ERR(sch))
330 return PTR_ERR(sch);
331 ret = css_register_subchannel(sch);
332 if (ret)
333 css_free_subchannel(sch);
334 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 }
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100380 if (stsch_err(schid, &schib) || !css_sch_is_valid(&schib)) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200381 /* Unusable - ignore. */
382 return 0;
383 }
384 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, unknown, "
385 "slow path.\n", schid.ssid, schid.sch_no, CIO_OPER);
386
387 return css_probe_device(schid);
388}
389
Cornelia Huckc820de32008-07-14 09:58:45 +0200390static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
391{
392 int ret = 0;
393
394 if (sch->driver) {
395 if (sch->driver->sch_event)
396 ret = sch->driver->sch_event(sch, slow);
397 else
398 dev_dbg(&sch->dev,
399 "Got subchannel machine check but "
400 "no sch_event handler provided.\n");
401 }
402 return ret;
403}
404
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200405static void css_evaluate_subchannel(struct subchannel_id schid, int slow)
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200406{
407 struct subchannel *sch;
408 int ret;
409
410 sch = get_subchannel_by_schid(schid);
411 if (sch) {
412 ret = css_evaluate_known_subchannel(sch, slow);
413 put_device(&sch->dev);
414 } else
415 ret = css_evaluate_new_subchannel(schid, slow);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200416 if (ret == -EAGAIN)
417 css_schedule_eval(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200420static struct idset *slow_subchannel_set;
421static spinlock_t slow_subchannel_lock;
422
423static int __init slow_subchannel_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200425 spin_lock_init(&slow_subchannel_lock);
426 slow_subchannel_set = idset_sch_new();
427 if (!slow_subchannel_set) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200428 CIO_MSG_EVENT(0, "could not allocate slow subchannel set\n");
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200429 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200431 return 0;
432}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100434static int slow_eval_known_fn(struct subchannel *sch, void *data)
435{
436 int eval;
437 int rc;
438
439 spin_lock_irq(&slow_subchannel_lock);
440 eval = idset_sch_contains(slow_subchannel_set, sch->schid);
441 idset_sch_del(slow_subchannel_set, sch->schid);
442 spin_unlock_irq(&slow_subchannel_lock);
443 if (eval) {
444 rc = css_evaluate_known_subchannel(sch, 1);
445 if (rc == -EAGAIN)
446 css_schedule_eval(sch->schid);
447 }
448 return 0;
449}
450
451static int slow_eval_unknown_fn(struct subchannel_id schid, void *data)
452{
453 int eval;
454 int rc = 0;
455
456 spin_lock_irq(&slow_subchannel_lock);
457 eval = idset_sch_contains(slow_subchannel_set, schid);
458 idset_sch_del(slow_subchannel_set, schid);
459 spin_unlock_irq(&slow_subchannel_lock);
460 if (eval) {
461 rc = css_evaluate_new_subchannel(schid, 1);
462 switch (rc) {
463 case -EAGAIN:
464 css_schedule_eval(schid);
465 rc = 0;
466 break;
467 case -ENXIO:
468 case -ENOMEM:
469 case -EIO:
470 /* These should abort looping */
471 break;
472 default:
473 rc = 0;
474 }
475 }
476 return rc;
477}
478
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200479static void css_slow_path_func(struct work_struct *unused)
480{
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200481 CIO_TRACE_EVENT(4, "slowpath");
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100482 for_each_subchannel_staged(slow_eval_known_fn, slow_eval_unknown_fn,
483 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200486static DECLARE_WORK(slow_path_work, css_slow_path_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487struct workqueue_struct *slow_path_wq;
488
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200489void css_schedule_eval(struct subchannel_id schid)
490{
491 unsigned long flags;
492
493 spin_lock_irqsave(&slow_subchannel_lock, flags);
494 idset_sch_add(slow_subchannel_set, schid);
495 queue_work(slow_path_wq, &slow_path_work);
496 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
497}
498
499void css_schedule_eval_all(void)
500{
501 unsigned long flags;
502
503 spin_lock_irqsave(&slow_subchannel_lock, flags);
504 idset_fill(slow_subchannel_set);
505 queue_work(slow_path_wq, &slow_path_work);
506 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
507}
508
Cornelia Huck22806dc2008-04-17 07:45:59 +0200509void css_wait_for_slow_path(void)
510{
Cornelia Huck22806dc2008-04-17 07:45:59 +0200511 flush_workqueue(slow_path_wq);
512}
513
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200514/* Reprobe subchannel if unregistered. */
515static int reprobe_subchannel(struct subchannel_id schid, void *data)
516{
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200517 int ret;
518
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200519 CIO_MSG_EVENT(6, "cio: reprobe 0.%x.%04x\n",
520 schid.ssid, schid.sch_no);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200521 if (need_reprobe)
522 return -EAGAIN;
523
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200524 ret = css_probe_device(schid);
525 switch (ret) {
526 case 0:
527 break;
528 case -ENXIO:
529 case -ENOMEM:
Peter Oberparleiter671756162007-12-04 16:09:02 +0100530 case -EIO:
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200531 /* These should abort looping */
532 break;
533 default:
534 ret = 0;
535 }
536
537 return ret;
538}
539
Peter Oberparleiter56e25e92009-03-26 15:24:20 +0100540static void reprobe_after_idle(struct work_struct *unused)
541{
542 /* Make sure initial subchannel scan is done. */
543 wait_event(ccw_device_init_wq,
544 atomic_read(&ccw_device_init_count) == 0);
545 if (need_reprobe)
546 css_schedule_reprobe();
547}
548
549static DECLARE_WORK(reprobe_idle_work, reprobe_after_idle);
550
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200551/* Work function used to reprobe all unregistered subchannels. */
Al Viro4927b3f2006-12-06 19:18:20 +0000552static void reprobe_all(struct work_struct *unused)
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200553{
554 int ret;
555
Michael Ernst139b83d2008-05-07 09:22:54 +0200556 CIO_MSG_EVENT(4, "reprobe start\n");
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200557
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200558 /* Make sure initial subchannel scan is done. */
Peter Oberparleiter56e25e92009-03-26 15:24:20 +0100559 if (atomic_read(&ccw_device_init_count) != 0) {
560 queue_work(ccw_device_work, &reprobe_idle_work);
561 return;
562 }
563 need_reprobe = 0;
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100564 ret = for_each_subchannel_staged(NULL, reprobe_subchannel, NULL);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200565
Michael Ernst139b83d2008-05-07 09:22:54 +0200566 CIO_MSG_EVENT(4, "reprobe done (rc=%d, need_reprobe=%d)\n", ret,
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200567 need_reprobe);
568}
569
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100570static DECLARE_WORK(css_reprobe_work, reprobe_all);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200571
572/* Schedule reprobing of all unregistered subchannels. */
573void css_schedule_reprobe(void)
574{
575 need_reprobe = 1;
Cornelia Huckc5d4a992007-11-20 11:13:41 +0100576 queue_work(slow_path_wq, &css_reprobe_work);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200577}
578
579EXPORT_SYMBOL_GPL(css_schedule_reprobe);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 * Called from the machine check handler for subchannel report words.
583 */
Cornelia Huckc1156182008-07-14 09:58:46 +0200584static void css_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800586 struct subchannel_id mchk_schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Cornelia Huckc1156182008-07-14 09:58:46 +0200588 if (overflow) {
589 css_schedule_eval_all();
590 return;
591 }
592 CIO_CRW_EVENT(2, "CRW0 reports slct=%d, oflw=%d, "
593 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
594 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
595 crw0->erc, crw0->rsid);
596 if (crw1)
597 CIO_CRW_EVENT(2, "CRW1 reports slct=%d, oflw=%d, "
598 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
599 crw1->slct, crw1->oflw, crw1->chn, crw1->rsc,
600 crw1->anc, crw1->erc, crw1->rsid);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800601 init_subchannel_id(&mchk_schid);
Cornelia Huckc1156182008-07-14 09:58:46 +0200602 mchk_schid.sch_no = crw0->rsid;
603 if (crw1)
604 mchk_schid.ssid = (crw1->rsid >> 8) & 3;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800605
Cornelia Huckc1156182008-07-14 09:58:46 +0200606 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * Since we are always presented with IPI in the CRW, we have to
608 * use stsch() to find out if the subchannel in question has come
609 * or gone.
610 */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200611 css_evaluate_subchannel(mchk_schid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800614static int __init
615__init_channel_subsystem(struct subchannel_id schid, void *data)
616{
617 struct subchannel *sch;
618 int ret;
619
620 if (cio_is_console(schid))
621 sch = cio_get_console_subchannel();
622 else {
623 sch = css_alloc_subchannel(schid);
624 if (IS_ERR(sch))
625 ret = PTR_ERR(sch);
626 else
627 ret = 0;
628 switch (ret) {
629 case 0:
630 break;
631 case -ENOMEM:
632 panic("Out of memory in init_channel_subsystem\n");
633 /* -ENXIO: no more subchannels. */
634 case -ENXIO:
635 return ret;
Greg Smithe843e282006-03-14 19:50:17 -0800636 /* -EIO: this subchannel set not supported. */
637 case -EIO:
638 return ret;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800639 default:
640 return 0;
641 }
642 }
643 /*
644 * We register ALL valid subchannels in ioinfo, even those
645 * that have been present before init_channel_subsystem.
646 * These subchannels can't have been registered yet (kmalloc
647 * not working) so we do it now. This is true e.g. for the
648 * console subchannel.
649 */
650 css_register_subchannel(sch);
651 return 0;
652}
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654static void __init
Cornelia Hucka28c6942006-01-06 00:19:23 -0800655css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Cornelia Huck75784c02008-07-14 09:58:57 +0200657 if (css_general_characteristics.mcss) {
Cornelia Hucka28c6942006-01-06 00:19:23 -0800658 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
659 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
660 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661#ifdef CONFIG_SMP
Martin Schwidefsky7b468482009-03-26 15:24:42 +0100662 css->global_pgid.pgid_high.cpu_addr = stap();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663#else
Cornelia Hucka28c6942006-01-06 00:19:23 -0800664 css->global_pgid.pgid_high.cpu_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#endif
666 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800667 css->global_pgid.cpu_id = ((cpuid_t *) __LC_CPUID)->ident;
668 css->global_pgid.cpu_model = ((cpuid_t *) __LC_CPUID)->machine;
669 css->global_pgid.tod_high = tod_high;
670
671}
672
Cornelia Huck3b793062006-01-06 00:19:26 -0800673static void
674channel_subsystem_release(struct device *dev)
675{
676 struct channel_subsystem *css;
677
678 css = to_css(dev);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800679 mutex_destroy(&css->mutex);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200680 if (css->pseudo_subchannel) {
681 /* Implies that it has been generated but never registered. */
682 css_subchannel_release(&css->pseudo_subchannel->dev);
683 css->pseudo_subchannel = NULL;
684 }
Cornelia Huck3b793062006-01-06 00:19:26 -0800685 kfree(css);
686}
687
Cornelia Huck495a5b42006-03-24 03:15:14 -0800688static ssize_t
689css_cm_enable_show(struct device *dev, struct device_attribute *attr,
690 char *buf)
691{
692 struct channel_subsystem *css = to_css(dev);
Michael Ernst8284fb192008-04-17 07:46:01 +0200693 int ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800694
695 if (!css)
696 return 0;
Michael Ernst8284fb192008-04-17 07:46:01 +0200697 mutex_lock(&css->mutex);
698 ret = sprintf(buf, "%x\n", css->cm_enabled);
699 mutex_unlock(&css->mutex);
700 return ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800701}
702
703static ssize_t
704css_cm_enable_store(struct device *dev, struct device_attribute *attr,
705 const char *buf, size_t count)
706{
707 struct channel_subsystem *css = to_css(dev);
708 int ret;
Cornelia Huck2f972202008-04-30 13:38:33 +0200709 unsigned long val;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800710
Cornelia Huck2f972202008-04-30 13:38:33 +0200711 ret = strict_strtoul(buf, 16, &val);
712 if (ret)
713 return ret;
Michael Ernst8284fb192008-04-17 07:46:01 +0200714 mutex_lock(&css->mutex);
Cornelia Huck2f972202008-04-30 13:38:33 +0200715 switch (val) {
716 case 0:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800717 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
718 break;
Cornelia Huck2f972202008-04-30 13:38:33 +0200719 case 1:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800720 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
721 break;
722 default:
723 ret = -EINVAL;
724 }
Michael Ernst8284fb192008-04-17 07:46:01 +0200725 mutex_unlock(&css->mutex);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800726 return ret < 0 ? ret : count;
727}
728
729static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
730
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100731static int __init setup_css(int nr)
Cornelia Hucka28c6942006-01-06 00:19:23 -0800732{
733 u32 tod_high;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100734 int ret;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200735 struct channel_subsystem *css;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800736
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200737 css = channel_subsystems[nr];
738 memset(css, 0, sizeof(struct channel_subsystem));
739 css->pseudo_subchannel =
740 kzalloc(sizeof(*css->pseudo_subchannel), GFP_KERNEL);
741 if (!css->pseudo_subchannel)
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100742 return -ENOMEM;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200743 css->pseudo_subchannel->dev.parent = &css->device;
744 css->pseudo_subchannel->dev.release = css_subchannel_release;
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200745 dev_set_name(&css->pseudo_subchannel->dev, "defunct");
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200746 ret = cio_create_sch_lock(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100747 if (ret) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200748 kfree(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100749 return ret;
750 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200751 mutex_init(&css->mutex);
752 css->valid = 1;
753 css->cssid = nr;
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200754 dev_set_name(&css->device, "css%x", nr);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200755 css->device.release = channel_subsystem_release;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800756 tod_high = (u32) (get_clock() >> 32);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200757 css_generate_pgid(css, tod_high);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100758 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Cornelia Hucka55360d2007-10-12 16:11:20 +0200761static int css_reboot_event(struct notifier_block *this,
762 unsigned long event,
763 void *ptr)
764{
765 int ret, i;
766
767 ret = NOTIFY_DONE;
768 for (i = 0; i <= __MAX_CSSID; i++) {
769 struct channel_subsystem *css;
770
771 css = channel_subsystems[i];
Michael Ernst8284fb192008-04-17 07:46:01 +0200772 mutex_lock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200773 if (css->cm_enabled)
774 if (chsc_secm(css, 0))
775 ret = NOTIFY_BAD;
Michael Ernst8284fb192008-04-17 07:46:01 +0200776 mutex_unlock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200777 }
778
779 return ret;
780}
781
782static struct notifier_block css_reboot_notifier = {
783 .notifier_call = css_reboot_event,
784};
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786/*
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200787 * Since the css devices are neither on a bus nor have a class
788 * nor have a special device type, we cannot stop/restart channel
789 * path measurements via the normal suspend/resume callbacks, but have
790 * to use notifiers.
791 */
792static int css_power_event(struct notifier_block *this, unsigned long event,
793 void *ptr)
794{
795 void *secm_area;
796 int ret, i;
797
798 switch (event) {
799 case PM_HIBERNATION_PREPARE:
800 case PM_SUSPEND_PREPARE:
801 ret = NOTIFY_DONE;
802 for (i = 0; i <= __MAX_CSSID; i++) {
803 struct channel_subsystem *css;
804
805 css = channel_subsystems[i];
806 mutex_lock(&css->mutex);
807 if (!css->cm_enabled) {
808 mutex_unlock(&css->mutex);
809 continue;
810 }
811 secm_area = (void *)get_zeroed_page(GFP_KERNEL |
812 GFP_DMA);
813 if (secm_area) {
814 if (__chsc_do_secm(css, 0, secm_area))
815 ret = NOTIFY_BAD;
816 free_page((unsigned long)secm_area);
817 } else
818 ret = NOTIFY_BAD;
819
820 mutex_unlock(&css->mutex);
821 }
822 break;
823 case PM_POST_HIBERNATION:
824 case PM_POST_SUSPEND:
825 ret = NOTIFY_DONE;
826 for (i = 0; i <= __MAX_CSSID; i++) {
827 struct channel_subsystem *css;
828
829 css = channel_subsystems[i];
830 mutex_lock(&css->mutex);
831 if (!css->cm_enabled) {
832 mutex_unlock(&css->mutex);
833 continue;
834 }
835 secm_area = (void *)get_zeroed_page(GFP_KERNEL |
836 GFP_DMA);
837 if (secm_area) {
838 if (__chsc_do_secm(css, 1, secm_area))
839 ret = NOTIFY_BAD;
840 free_page((unsigned long)secm_area);
841 } else
842 ret = NOTIFY_BAD;
843
844 mutex_unlock(&css->mutex);
845 }
846 /* search for subchannels, which appeared during hibernation */
847 css_schedule_reprobe();
848 break;
849 default:
850 ret = NOTIFY_DONE;
851 }
852 return ret;
853
854}
855static struct notifier_block css_power_notifier = {
856 .notifier_call = css_power_event,
857};
858
859/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * Now that the driver core is running, we can setup our channel subsystem.
861 * The struct subchannel's are created during probing (except for the
862 * static console subchannel).
863 */
864static int __init
865init_channel_subsystem (void)
866{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800867 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Cornelia Huck4434a382007-07-27 12:29:21 +0200869 ret = chsc_determine_css_characteristics();
870 if (ret == -ENOMEM)
871 goto out; /* No need to continue. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Cornelia Huck4434a382007-07-27 12:29:21 +0200873 ret = chsc_alloc_sei_area();
874 if (ret)
875 goto out;
876
877 ret = slow_subchannel_init();
878 if (ret)
879 goto out;
880
Heiko Carstensf5daba12009-03-26 15:24:01 +0100881 ret = crw_register_handler(CRW_RSC_SCH, css_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +0200882 if (ret)
883 goto out;
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if ((ret = bus_register(&css_bus_type)))
886 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800888 /* Try to enable MSS. */
889 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
890 switch (ret) {
891 case 0: /* Success. */
892 max_ssid = __MAX_SSID;
893 break;
894 case -ENOMEM:
895 goto out_bus;
896 default:
897 max_ssid = 0;
898 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800899 /* Setup css structure. */
900 for (i = 0; i <= __MAX_CSSID; i++) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200901 struct channel_subsystem *css;
902
903 css = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
904 if (!css) {
Cornelia Hucka28c6942006-01-06 00:19:23 -0800905 ret = -ENOMEM;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800906 goto out_unregister;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800907 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200908 channel_subsystems[i] = css;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100909 ret = setup_css(i);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200910 if (ret) {
911 kfree(channel_subsystems[i]);
912 goto out_unregister;
913 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200914 ret = device_register(&css->device);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200915 if (ret) {
916 put_device(&css->device);
917 goto out_unregister;
918 }
Cornelia Huck75784c02008-07-14 09:58:57 +0200919 if (css_chsc_characteristics.secm) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200920 ret = device_create_file(&css->device,
Cornelia Huck7e560812006-07-12 16:40:19 +0200921 &dev_attr_cm_enable);
922 if (ret)
923 goto out_device;
924 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200925 ret = device_register(&css->pseudo_subchannel->dev);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100926 if (ret)
927 goto out_file;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800928 }
Cornelia Hucka55360d2007-10-12 16:11:20 +0200929 ret = register_reboot_notifier(&css_reboot_notifier);
930 if (ret)
Cornelia Hucka2164b82008-09-09 12:38:57 +0200931 goto out_unregister;
Sebastian Ottdcbd16d2009-06-16 10:30:22 +0200932 ret = register_pm_notifier(&css_power_notifier);
933 if (ret) {
934 unregister_reboot_notifier(&css_reboot_notifier);
935 goto out_unregister;
936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 css_init_done = 1;
938
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200939 /* Enable default isc for I/O subchannels. */
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200940 isc_register(IO_SCH_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800942 for_each_subchannel(__init_channel_subsystem, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return 0;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100944out_file:
Cornelia Hucka2164b82008-09-09 12:38:57 +0200945 if (css_chsc_characteristics.secm)
946 device_remove_file(&channel_subsystems[i]->device,
947 &dev_attr_cm_enable);
Cornelia Huck7e560812006-07-12 16:40:19 +0200948out_device:
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200949 device_unregister(&channel_subsystems[i]->device);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800950out_unregister:
Cornelia Hucka28c6942006-01-06 00:19:23 -0800951 while (i > 0) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200952 struct channel_subsystem *css;
953
Cornelia Hucka28c6942006-01-06 00:19:23 -0800954 i--;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200955 css = channel_subsystems[i];
956 device_unregister(&css->pseudo_subchannel->dev);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200957 css->pseudo_subchannel = NULL;
Cornelia Huck75784c02008-07-14 09:58:57 +0200958 if (css_chsc_characteristics.secm)
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200959 device_remove_file(&css->device,
Cornelia Huck495a5b42006-03-24 03:15:14 -0800960 &dev_attr_cm_enable);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200961 device_unregister(&css->device);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800962 }
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800963out_bus:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 bus_unregister(&css_bus_type);
965out:
Heiko Carstensf5daba12009-03-26 15:24:01 +0100966 crw_unregister_handler(CRW_RSC_CSS);
Cornelia Huck4434a382007-07-27 12:29:21 +0200967 chsc_free_sei_area();
968 kfree(slow_subchannel_set);
Michael Ernste6d5a422008-12-25 13:39:36 +0100969 pr_alert("The CSS device driver initialization failed with "
970 "errno=%d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return ret;
972}
973
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100974int sch_is_pseudo_sch(struct subchannel *sch)
975{
976 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
977}
978
Cornelia Huckf08adc02008-07-14 09:59:03 +0200979static int css_bus_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Cornelia Huck084325d2008-01-26 14:10:38 +0100981 struct subchannel *sch = to_subchannel(dev);
982 struct css_driver *driver = to_cssdriver(drv);
Cornelia Huckf08adc02008-07-14 09:59:03 +0200983 struct css_device_id *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Cornelia Huckf08adc02008-07-14 09:59:03 +0200985 for (id = driver->subchannel_type; id->match_flags; id++) {
986 if (sch->st == id->type)
987 return 1;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 return 0;
991}
992
Cornelia Huck98c13c22008-01-26 14:10:40 +0100993static int css_probe(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +0100994{
995 struct subchannel *sch;
Cornelia Huck98c13c22008-01-26 14:10:40 +0100996 int ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +0100997
998 sch = to_subchannel(dev);
Cornelia Huck084325d2008-01-26 14:10:38 +0100999 sch->driver = to_cssdriver(dev->driver);
Cornelia Huck98c13c22008-01-26 14:10:40 +01001000 ret = sch->driver->probe ? sch->driver->probe(sch) : 0;
1001 if (ret)
1002 sch->driver = NULL;
1003 return ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +01001004}
1005
Cornelia Huck98c13c22008-01-26 14:10:40 +01001006static int css_remove(struct device *dev)
1007{
1008 struct subchannel *sch;
1009 int ret;
1010
1011 sch = to_subchannel(dev);
1012 ret = sch->driver->remove ? sch->driver->remove(sch) : 0;
1013 sch->driver = NULL;
1014 return ret;
1015}
1016
1017static void css_shutdown(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001018{
1019 struct subchannel *sch;
1020
1021 sch = to_subchannel(dev);
Cornelia Huck98c13c22008-01-26 14:10:40 +01001022 if (sch->driver && sch->driver->shutdown)
Cornelia Huck8bbace72006-01-11 10:56:22 +01001023 sch->driver->shutdown(sch);
1024}
1025
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001026static int css_uevent(struct device *dev, struct kobj_uevent_env *env)
1027{
1028 struct subchannel *sch = to_subchannel(dev);
1029 int ret;
1030
1031 ret = add_uevent_var(env, "ST=%01X", sch->st);
1032 if (ret)
1033 return ret;
1034 ret = add_uevent_var(env, "MODALIAS=css:t%01X", sch->st);
1035 return ret;
1036}
1037
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001038static int css_pm_prepare(struct device *dev)
1039{
1040 struct subchannel *sch = to_subchannel(dev);
1041 struct css_driver *drv;
1042
1043 if (mutex_is_locked(&sch->reg_mutex))
1044 return -EAGAIN;
1045 if (!sch->dev.driver)
1046 return 0;
1047 drv = to_cssdriver(sch->dev.driver);
1048 /* Notify drivers that they may not register children. */
1049 return drv->prepare ? drv->prepare(sch) : 0;
1050}
1051
1052static void css_pm_complete(struct device *dev)
1053{
1054 struct subchannel *sch = to_subchannel(dev);
1055 struct css_driver *drv;
1056
1057 if (!sch->dev.driver)
1058 return;
1059 drv = to_cssdriver(sch->dev.driver);
1060 if (drv->complete)
1061 drv->complete(sch);
1062}
1063
1064static int css_pm_freeze(struct device *dev)
1065{
1066 struct subchannel *sch = to_subchannel(dev);
1067 struct css_driver *drv;
1068
1069 if (!sch->dev.driver)
1070 return 0;
1071 drv = to_cssdriver(sch->dev.driver);
1072 return drv->freeze ? drv->freeze(sch) : 0;
1073}
1074
1075static int css_pm_thaw(struct device *dev)
1076{
1077 struct subchannel *sch = to_subchannel(dev);
1078 struct css_driver *drv;
1079
1080 if (!sch->dev.driver)
1081 return 0;
1082 drv = to_cssdriver(sch->dev.driver);
1083 return drv->thaw ? drv->thaw(sch) : 0;
1084}
1085
1086static int css_pm_restore(struct device *dev)
1087{
1088 struct subchannel *sch = to_subchannel(dev);
1089 struct css_driver *drv;
1090
1091 if (!sch->dev.driver)
1092 return 0;
1093 drv = to_cssdriver(sch->dev.driver);
1094 return drv->restore ? drv->restore(sch) : 0;
1095}
1096
1097static struct dev_pm_ops css_pm_ops = {
1098 .prepare = css_pm_prepare,
1099 .complete = css_pm_complete,
1100 .freeze = css_pm_freeze,
1101 .thaw = css_pm_thaw,
1102 .restore = css_pm_restore,
1103};
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105struct bus_type css_bus_type = {
Cornelia Huck8bbace72006-01-11 10:56:22 +01001106 .name = "css",
1107 .match = css_bus_match,
1108 .probe = css_probe,
1109 .remove = css_remove,
1110 .shutdown = css_shutdown,
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001111 .uevent = css_uevent,
Sebastian Ottdcbd16d2009-06-16 10:30:22 +02001112 .pm = &css_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113};
1114
Cornelia Huck25b7bb52008-01-26 14:10:41 +01001115/**
1116 * css_driver_register - register a css driver
1117 * @cdrv: css driver to register
1118 *
1119 * This is mainly a wrapper around driver_register that sets name
1120 * and bus_type in the embedded struct device_driver correctly.
1121 */
1122int css_driver_register(struct css_driver *cdrv)
1123{
1124 cdrv->drv.name = cdrv->name;
1125 cdrv->drv.bus = &css_bus_type;
Cornelia Huck4beee642008-01-26 14:10:47 +01001126 cdrv->drv.owner = cdrv->owner;
Cornelia Huck25b7bb52008-01-26 14:10:41 +01001127 return driver_register(&cdrv->drv);
1128}
1129EXPORT_SYMBOL_GPL(css_driver_register);
1130
1131/**
1132 * css_driver_unregister - unregister a css driver
1133 * @cdrv: css driver to unregister
1134 *
1135 * This is a wrapper around driver_unregister.
1136 */
1137void css_driver_unregister(struct css_driver *cdrv)
1138{
1139 driver_unregister(&cdrv->drv);
1140}
1141EXPORT_SYMBOL_GPL(css_driver_unregister);
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143subsys_initcall(init_channel_subsystem);
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145MODULE_LICENSE("GPL");
1146EXPORT_SYMBOL(css_bus_type);