blob: 53e7496dc90c4d0321ba58e00eab603e9acc0e12 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/s390/cio/css.c
3 * driver for channel subsystem
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02005 * Copyright IBM Corp. 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
Cornelia Huck4ce3b302006-01-14 13:21:04 -08007 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9#include <linux/module.h>
10#include <linux/init.h>
11#include <linux/device.h>
12#include <linux/slab.h>
13#include <linux/errno.h>
14#include <linux/list.h>
Cornelia Hucka55360d2007-10-12 16:11:20 +020015#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#include "css.h"
18#include "cio.h"
19#include "cio_debug.h"
20#include "ioasm.h"
21#include "chsc.h"
Peter Oberparleiter40154b82006-06-29 14:57:03 +020022#include "device.h"
Peter Oberparleiter83b33702007-04-27 16:01:34 +020023#include "idset.h"
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020024#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026int css_init_done = 0;
Peter Oberparleiter40154b82006-06-29 14:57:03 +020027static int need_reprobe = 0;
Cornelia Huckfb6958a2006-01-06 00:19:25 -080028static int max_ssid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Cornelia Huck7c9f4e32007-10-12 16:11:13 +020030struct channel_subsystem *channel_subsystems[__MAX_CSSID + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Cornelia Hucka28c6942006-01-06 00:19:23 -080032int css_characteristics_avail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Heiko Carstens4d284ca2007-02-05 21:18:53 +010034int
Cornelia Huckf97a56f2006-01-06 00:19:22 -080035for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *data)
36{
37 struct subchannel_id schid;
38 int ret;
39
40 init_subchannel_id(&schid);
41 ret = -ENODEV;
42 do {
Cornelia Huckfb6958a2006-01-06 00:19:25 -080043 do {
44 ret = fn(schid, data);
45 if (ret)
46 break;
47 } while (schid.sch_no++ < __MAX_SUBCHANNEL);
48 schid.sch_no = 0;
49 } while (schid.ssid++ < max_ssid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -080050 return ret;
51}
52
Peter Oberparleitere82a1562008-01-26 14:10:48 +010053struct cb_data {
54 void *data;
55 struct idset *set;
56 int (*fn_known_sch)(struct subchannel *, void *);
57 int (*fn_unknown_sch)(struct subchannel_id, void *);
58};
59
60static int call_fn_known_sch(struct device *dev, void *data)
61{
62 struct subchannel *sch = to_subchannel(dev);
63 struct cb_data *cb = data;
64 int rc = 0;
65
66 idset_sch_del(cb->set, sch->schid);
67 if (cb->fn_known_sch)
68 rc = cb->fn_known_sch(sch, cb->data);
69 return rc;
70}
71
72static int call_fn_unknown_sch(struct subchannel_id schid, void *data)
73{
74 struct cb_data *cb = data;
75 int rc = 0;
76
77 if (idset_sch_contains(cb->set, schid))
78 rc = cb->fn_unknown_sch(schid, cb->data);
79 return rc;
80}
81
82int for_each_subchannel_staged(int (*fn_known)(struct subchannel *, void *),
83 int (*fn_unknown)(struct subchannel_id,
84 void *), void *data)
85{
86 struct cb_data cb;
87 int rc;
88
89 cb.set = idset_sch_new();
90 if (!cb.set)
91 return -ENOMEM;
92 idset_fill(cb.set);
93 cb.data = data;
94 cb.fn_known_sch = fn_known;
95 cb.fn_unknown_sch = fn_unknown;
96 /* Process registered subchannels. */
97 rc = bus_for_each_dev(&css_bus_type, NULL, &cb, call_fn_known_sch);
98 if (rc)
99 goto out;
100 /* Process unregistered subchannels. */
101 if (fn_unknown)
102 rc = for_each_subchannel(call_fn_unknown_sch, &cb);
103out:
104 idset_free(cb.set);
105
106 return rc;
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800110css_alloc_subchannel(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 struct subchannel *sch;
113 int ret;
114
115 sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
116 if (sch == NULL)
117 return ERR_PTR(-ENOMEM);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800118 ret = cio_validate_subchannel (sch, schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (ret < 0) {
120 kfree(sch);
121 return ERR_PTR(ret);
122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return sch;
124}
125
126static void
127css_free_subchannel(struct subchannel *sch)
128{
129 if (sch) {
130 /* Reset intparm to zeroes. */
131 sch->schib.pmcw.intparm = 0;
132 cio_modify(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100133 kfree(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 kfree(sch);
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138static void
139css_subchannel_release(struct device *dev)
140{
141 struct subchannel *sch;
142
143 sch = to_subchannel(dev);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100144 if (!cio_is_console(sch->schid)) {
145 kfree(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 kfree(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Cornelia Huck07c6a332007-07-27 12:29:10 +0200150static int css_sch_device_register(struct subchannel *sch)
Cornelia Huck6ab48792006-07-12 16:39:50 +0200151{
152 int ret;
153
154 mutex_lock(&sch->reg_mutex);
155 ret = device_register(&sch->dev);
156 mutex_unlock(&sch->reg_mutex);
157 return ret;
158}
159
160void css_sch_device_unregister(struct subchannel *sch)
161{
162 mutex_lock(&sch->reg_mutex);
163 device_unregister(&sch->dev);
164 mutex_unlock(&sch->reg_mutex);
165}
166
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200167static void ssd_from_pmcw(struct chsc_ssd_info *ssd, struct pmcw *pmcw)
168{
169 int i;
170 int mask;
171
172 memset(ssd, 0, sizeof(struct chsc_ssd_info));
173 ssd->path_mask = pmcw->pim;
174 for (i = 0; i < 8; i++) {
175 mask = 0x80 >> i;
176 if (pmcw->pim & mask) {
177 chp_id_init(&ssd->chpid[i]);
178 ssd->chpid[i].id = pmcw->chpid[i];
179 }
180 }
181}
182
183static void ssd_register_chpids(struct chsc_ssd_info *ssd)
184{
185 int i;
186 int mask;
187
188 for (i = 0; i < 8; i++) {
189 mask = 0x80 >> i;
190 if (ssd->path_mask & mask)
191 if (!chp_is_registered(ssd->chpid[i]))
192 chp_new(ssd->chpid[i]);
193 }
194}
195
196void css_update_ssd_info(struct subchannel *sch)
197{
198 int ret;
199
200 if (cio_is_console(sch->schid)) {
201 /* Console is initialized too early for functions requiring
202 * memory allocation. */
203 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
204 } else {
205 ret = chsc_get_ssd_info(sch->schid, &sch->ssd_info);
206 if (ret)
207 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
208 ssd_register_chpids(&sch->ssd_info);
209 }
210}
211
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200212static ssize_t type_show(struct device *dev, struct device_attribute *attr,
213 char *buf)
214{
215 struct subchannel *sch = to_subchannel(dev);
216
217 return sprintf(buf, "%01x\n", sch->st);
218}
219
220static DEVICE_ATTR(type, 0444, type_show, NULL);
221
222static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
223 char *buf)
224{
225 struct subchannel *sch = to_subchannel(dev);
226
227 return sprintf(buf, "css:t%01X\n", sch->st);
228}
229
230static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
231
232static struct attribute *subch_attrs[] = {
233 &dev_attr_type.attr,
234 &dev_attr_modalias.attr,
235 NULL,
236};
237
238static struct attribute_group subch_attr_group = {
239 .attrs = subch_attrs,
240};
241
242static struct attribute_group *default_subch_attr_groups[] = {
243 &subch_attr_group,
244 NULL,
245};
246
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200247static int css_register_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 int ret;
250
251 /* Initialize the subchannel structure */
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200252 sch->dev.parent = &channel_subsystems[0]->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 sch->dev.bus = &css_bus_type;
254 sch->dev.release = &css_subchannel_release;
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200255 sch->dev.groups = default_subch_attr_groups;
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200256 /*
257 * We don't want to generate uevents for I/O subchannels that don't
258 * have a working ccw device behind them since they will be
259 * unregistered before they can be used anyway, so we delay the add
260 * uevent until after device recognition was successful.
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200261 * Note that we suppress the uevent for all subchannel types;
262 * the subchannel driver can decide itself when it wants to inform
263 * userspace of its existence.
Cornelia Huck5bf04b22007-10-22 12:52:41 +0200264 */
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200265 sch->dev.uevent_suppress = 1;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200266 css_update_ssd_info(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* make it known to the system */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200268 ret = css_sch_device_register(sch);
Cornelia Huck7674da72006-12-08 15:54:21 +0100269 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200270 CIO_MSG_EVENT(0, "Could not register sch 0.%x.%04x: %d\n",
271 sch->schid.ssid, sch->schid.sch_no, ret);
Cornelia Huck7674da72006-12-08 15:54:21 +0100272 return ret;
273 }
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200274 if (!sch->driver) {
275 /*
276 * No driver matched. Generate the uevent now so that
277 * a fitting driver module may be loaded based on the
278 * modalias.
279 */
280 sch->dev.uevent_suppress = 0;
281 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return ret;
284}
285
Cornelia Huckf7e5d672007-05-10 15:45:43 +0200286static int css_probe_device(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 int ret;
289 struct subchannel *sch;
290
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800291 sch = css_alloc_subchannel(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (IS_ERR(sch))
293 return PTR_ERR(sch);
294 ret = css_register_subchannel(sch);
295 if (ret)
296 css_free_subchannel(sch);
297 return ret;
298}
299
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700300static int
301check_subchannel(struct device * dev, void * data)
302{
303 struct subchannel *sch;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800304 struct subchannel_id *schid = data;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700305
306 sch = to_subchannel(dev);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800307 return schid_equal(&sch->schid, schid);
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800311get_subchannel_by_schid(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct device *dev;
314
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700315 dev = bus_find_device(&css_bus_type, NULL,
Cornelia Huck12975ae2006-10-11 15:31:47 +0200316 &schid, check_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700318 return dev ? to_subchannel(dev) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100321/**
322 * css_sch_is_valid() - check if a subchannel is valid
323 * @schib: subchannel information block for the subchannel
324 */
325int css_sch_is_valid(struct schib *schib)
326{
327 if ((schib->pmcw.st == SUBCHANNEL_TYPE_IO) && !schib->pmcw.dnv)
328 return 0;
329 return 1;
330}
331EXPORT_SYMBOL_GPL(css_sch_is_valid);
332
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100333static int css_get_subchannel_status(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100337 if (stsch(sch->schid, &schib))
338 return CIO_GONE;
339 if (!css_sch_is_valid(&schib))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return CIO_GONE;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200341 if (sch->schib.pmcw.dnv && (schib.pmcw.dev != sch->schib.pmcw.dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return CIO_REVALIDATE;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200343 if (!sch->lpm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return CIO_NO_PATH;
345 return CIO_OPER;
346}
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200347
348static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 int event, ret, disc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 unsigned long flags;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200352 enum { NONE, UNREGISTER, UNREGISTER_PROBE, REPROBE } action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Cornelia Huck2ec22982006-12-08 15:54:26 +0100354 spin_lock_irqsave(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200355 disc = device_is_disconnected(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (disc && slow) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200357 /* Disconnected devices are evaluated directly only.*/
Cornelia Huck2ec22982006-12-08 15:54:26 +0100358 spin_unlock_irqrestore(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200359 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200361 /* No interrupt after machine check - kill pending timers. */
362 device_kill_pending_timer(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (!disc && !slow) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200364 /* Non-disconnected devices are evaluated on the slow path. */
Cornelia Huck2ec22982006-12-08 15:54:26 +0100365 spin_unlock_irqrestore(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200366 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200368 event = css_get_subchannel_status(sch);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800369 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, %s, %s path.\n",
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200370 sch->schid.ssid, sch->schid.sch_no, event,
371 disc ? "disconnected" : "normal",
372 slow ? "slow" : "fast");
373 /* Analyze subchannel status. */
374 action = NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 switch (event) {
376 case CIO_NO_PATH:
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200377 if (disc) {
378 /* Check if paths have become available. */
379 action = REPROBE;
380 break;
381 }
382 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 case CIO_GONE:
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200384 /* Prevent unwanted effects when opening lock. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 cio_disable_subchannel(sch);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200386 device_set_disconnected(sch);
387 /* Ask driver what to do with device. */
388 action = UNREGISTER;
389 if (sch->driver && sch->driver->notify) {
Cornelia Huck2ec22982006-12-08 15:54:26 +0100390 spin_unlock_irqrestore(sch->lock, flags);
Cornelia Huck602b20f2008-01-26 14:10:39 +0100391 ret = sch->driver->notify(sch, event);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100392 spin_lock_irqsave(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200393 if (ret)
394 action = NONE;
395 }
396 break;
397 case CIO_REVALIDATE:
398 /* Device will be removed, so no notify necessary. */
399 if (disc)
400 /* Reprobe because immediate unregister might block. */
401 action = REPROBE;
402 else
403 action = UNREGISTER_PROBE;
404 break;
405 case CIO_OPER:
406 if (disc)
407 /* Get device operational again. */
408 action = REPROBE;
409 break;
410 }
411 /* Perform action. */
412 ret = 0;
413 switch (action) {
414 case UNREGISTER:
415 case UNREGISTER_PROBE:
416 /* Unregister device (will use subchannel lock). */
Cornelia Huck2ec22982006-12-08 15:54:26 +0100417 spin_unlock_irqrestore(sch->lock, flags);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200418 css_sch_device_unregister(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100419 spin_lock_irqsave(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 /* Reset intparm to zeroes. */
422 sch->schib.pmcw.intparm = 0;
423 cio_modify(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 break;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200425 case REPROBE:
426 device_trigger_reprobe(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 break;
428 default:
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200429 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
Cornelia Huck2ec22982006-12-08 15:54:26 +0100431 spin_unlock_irqrestore(sch->lock, flags);
Cornelia Huckc2b14492006-10-27 12:39:17 +0200432 /* Probe if necessary. */
433 if (action == UNREGISTER_PROBE)
434 ret = css_probe_device(sch->schid);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200435
436 return ret;
437}
438
439static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
440{
441 struct schib schib;
442
443 if (!slow) {
444 /* Will be done on the slow path. */
445 return -EAGAIN;
446 }
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100447 if (stsch_err(schid, &schib) || !css_sch_is_valid(&schib)) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200448 /* Unusable - ignore. */
449 return 0;
450 }
451 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, unknown, "
452 "slow path.\n", schid.ssid, schid.sch_no, CIO_OPER);
453
454 return css_probe_device(schid);
455}
456
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200457static void css_evaluate_subchannel(struct subchannel_id schid, int slow)
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200458{
459 struct subchannel *sch;
460 int ret;
461
462 sch = get_subchannel_by_schid(schid);
463 if (sch) {
464 ret = css_evaluate_known_subchannel(sch, slow);
465 put_device(&sch->dev);
466 } else
467 ret = css_evaluate_new_subchannel(schid, slow);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200468 if (ret == -EAGAIN)
469 css_schedule_eval(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200472static struct idset *slow_subchannel_set;
473static spinlock_t slow_subchannel_lock;
474
475static int __init slow_subchannel_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200477 spin_lock_init(&slow_subchannel_lock);
478 slow_subchannel_set = idset_sch_new();
479 if (!slow_subchannel_set) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200480 CIO_MSG_EVENT(0, "could not allocate slow subchannel set\n");
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200481 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200483 return 0;
484}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100486static int slow_eval_known_fn(struct subchannel *sch, void *data)
487{
488 int eval;
489 int rc;
490
491 spin_lock_irq(&slow_subchannel_lock);
492 eval = idset_sch_contains(slow_subchannel_set, sch->schid);
493 idset_sch_del(slow_subchannel_set, sch->schid);
494 spin_unlock_irq(&slow_subchannel_lock);
495 if (eval) {
496 rc = css_evaluate_known_subchannel(sch, 1);
497 if (rc == -EAGAIN)
498 css_schedule_eval(sch->schid);
499 }
500 return 0;
501}
502
503static int slow_eval_unknown_fn(struct subchannel_id schid, void *data)
504{
505 int eval;
506 int rc = 0;
507
508 spin_lock_irq(&slow_subchannel_lock);
509 eval = idset_sch_contains(slow_subchannel_set, schid);
510 idset_sch_del(slow_subchannel_set, schid);
511 spin_unlock_irq(&slow_subchannel_lock);
512 if (eval) {
513 rc = css_evaluate_new_subchannel(schid, 1);
514 switch (rc) {
515 case -EAGAIN:
516 css_schedule_eval(schid);
517 rc = 0;
518 break;
519 case -ENXIO:
520 case -ENOMEM:
521 case -EIO:
522 /* These should abort looping */
523 break;
524 default:
525 rc = 0;
526 }
527 }
528 return rc;
529}
530
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200531static void css_slow_path_func(struct work_struct *unused)
532{
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200533 CIO_TRACE_EVENT(4, "slowpath");
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100534 for_each_subchannel_staged(slow_eval_known_fn, slow_eval_unknown_fn,
535 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200538static DECLARE_WORK(slow_path_work, css_slow_path_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539struct workqueue_struct *slow_path_wq;
540
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200541void css_schedule_eval(struct subchannel_id schid)
542{
543 unsigned long flags;
544
545 spin_lock_irqsave(&slow_subchannel_lock, flags);
546 idset_sch_add(slow_subchannel_set, schid);
547 queue_work(slow_path_wq, &slow_path_work);
548 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
549}
550
551void css_schedule_eval_all(void)
552{
553 unsigned long flags;
554
555 spin_lock_irqsave(&slow_subchannel_lock, flags);
556 idset_fill(slow_subchannel_set);
557 queue_work(slow_path_wq, &slow_path_work);
558 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
559}
560
Cornelia Huck22806dc2008-04-17 07:45:59 +0200561void css_wait_for_slow_path(void)
562{
563 flush_workqueue(ccw_device_notify_work);
564 flush_workqueue(slow_path_wq);
565}
566
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200567/* Reprobe subchannel if unregistered. */
568static int reprobe_subchannel(struct subchannel_id schid, void *data)
569{
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200570 int ret;
571
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200572 CIO_MSG_EVENT(6, "cio: reprobe 0.%x.%04x\n",
573 schid.ssid, schid.sch_no);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200574 if (need_reprobe)
575 return -EAGAIN;
576
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200577 ret = css_probe_device(schid);
578 switch (ret) {
579 case 0:
580 break;
581 case -ENXIO:
582 case -ENOMEM:
Peter Oberparleiter671756162007-12-04 16:09:02 +0100583 case -EIO:
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200584 /* These should abort looping */
585 break;
586 default:
587 ret = 0;
588 }
589
590 return ret;
591}
592
593/* Work function used to reprobe all unregistered subchannels. */
Al Viro4927b3f2006-12-06 19:18:20 +0000594static void reprobe_all(struct work_struct *unused)
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200595{
596 int ret;
597
Michael Ernst139b83d2008-05-07 09:22:54 +0200598 CIO_MSG_EVENT(4, "reprobe start\n");
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200599
600 need_reprobe = 0;
601 /* Make sure initial subchannel scan is done. */
602 wait_event(ccw_device_init_wq,
603 atomic_read(&ccw_device_init_count) == 0);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100604 ret = for_each_subchannel_staged(NULL, reprobe_subchannel, NULL);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200605
Michael Ernst139b83d2008-05-07 09:22:54 +0200606 CIO_MSG_EVENT(4, "reprobe done (rc=%d, need_reprobe=%d)\n", ret,
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200607 need_reprobe);
608}
609
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100610static DECLARE_WORK(css_reprobe_work, reprobe_all);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200611
612/* Schedule reprobing of all unregistered subchannels. */
613void css_schedule_reprobe(void)
614{
615 need_reprobe = 1;
Cornelia Huckc5d4a992007-11-20 11:13:41 +0100616 queue_work(slow_path_wq, &css_reprobe_work);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200617}
618
619EXPORT_SYMBOL_GPL(css_schedule_reprobe);
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 * Called from the machine check handler for subchannel report words.
623 */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200624void css_process_crw(int rsid1, int rsid2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800626 struct subchannel_id mchk_schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800628 CIO_CRW_EVENT(2, "source is subchannel %04X, subsystem id %x\n",
629 rsid1, rsid2);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800630 init_subchannel_id(&mchk_schid);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800631 mchk_schid.sch_no = rsid1;
632 if (rsid2 != 0)
633 mchk_schid.ssid = (rsid2 >> 8) & 3;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 /*
636 * Since we are always presented with IPI in the CRW, we have to
637 * use stsch() to find out if the subchannel in question has come
638 * or gone.
639 */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200640 css_evaluate_subchannel(mchk_schid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800643static int __init
644__init_channel_subsystem(struct subchannel_id schid, void *data)
645{
646 struct subchannel *sch;
647 int ret;
648
649 if (cio_is_console(schid))
650 sch = cio_get_console_subchannel();
651 else {
652 sch = css_alloc_subchannel(schid);
653 if (IS_ERR(sch))
654 ret = PTR_ERR(sch);
655 else
656 ret = 0;
657 switch (ret) {
658 case 0:
659 break;
660 case -ENOMEM:
661 panic("Out of memory in init_channel_subsystem\n");
662 /* -ENXIO: no more subchannels. */
663 case -ENXIO:
664 return ret;
Greg Smithe843e282006-03-14 19:50:17 -0800665 /* -EIO: this subchannel set not supported. */
666 case -EIO:
667 return ret;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800668 default:
669 return 0;
670 }
671 }
672 /*
673 * We register ALL valid subchannels in ioinfo, even those
674 * that have been present before init_channel_subsystem.
675 * These subchannels can't have been registered yet (kmalloc
676 * not working) so we do it now. This is true e.g. for the
677 * console subchannel.
678 */
679 css_register_subchannel(sch);
680 return 0;
681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683static void __init
Cornelia Hucka28c6942006-01-06 00:19:23 -0800684css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800686 if (css_characteristics_avail && css_general_characteristics.mcss) {
687 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
688 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
689 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690#ifdef CONFIG_SMP
Cornelia Hucka28c6942006-01-06 00:19:23 -0800691 css->global_pgid.pgid_high.cpu_addr = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692#else
Cornelia Hucka28c6942006-01-06 00:19:23 -0800693 css->global_pgid.pgid_high.cpu_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694#endif
695 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800696 css->global_pgid.cpu_id = ((cpuid_t *) __LC_CPUID)->ident;
697 css->global_pgid.cpu_model = ((cpuid_t *) __LC_CPUID)->machine;
698 css->global_pgid.tod_high = tod_high;
699
700}
701
Cornelia Huck3b793062006-01-06 00:19:26 -0800702static void
703channel_subsystem_release(struct device *dev)
704{
705 struct channel_subsystem *css;
706
707 css = to_css(dev);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800708 mutex_destroy(&css->mutex);
Cornelia Huck3b793062006-01-06 00:19:26 -0800709 kfree(css);
710}
711
Cornelia Huck495a5b42006-03-24 03:15:14 -0800712static ssize_t
713css_cm_enable_show(struct device *dev, struct device_attribute *attr,
714 char *buf)
715{
716 struct channel_subsystem *css = to_css(dev);
Michael Ernst8284fb192008-04-17 07:46:01 +0200717 int ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800718
719 if (!css)
720 return 0;
Michael Ernst8284fb192008-04-17 07:46:01 +0200721 mutex_lock(&css->mutex);
722 ret = sprintf(buf, "%x\n", css->cm_enabled);
723 mutex_unlock(&css->mutex);
724 return ret;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800725}
726
727static ssize_t
728css_cm_enable_store(struct device *dev, struct device_attribute *attr,
729 const char *buf, size_t count)
730{
731 struct channel_subsystem *css = to_css(dev);
732 int ret;
Cornelia Huck2f972202008-04-30 13:38:33 +0200733 unsigned long val;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800734
Cornelia Huck2f972202008-04-30 13:38:33 +0200735 ret = strict_strtoul(buf, 16, &val);
736 if (ret)
737 return ret;
Michael Ernst8284fb192008-04-17 07:46:01 +0200738 mutex_lock(&css->mutex);
Cornelia Huck2f972202008-04-30 13:38:33 +0200739 switch (val) {
740 case 0:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800741 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
742 break;
Cornelia Huck2f972202008-04-30 13:38:33 +0200743 case 1:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800744 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
745 break;
746 default:
747 ret = -EINVAL;
748 }
Michael Ernst8284fb192008-04-17 07:46:01 +0200749 mutex_unlock(&css->mutex);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800750 return ret < 0 ? ret : count;
751}
752
753static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
754
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100755static int __init setup_css(int nr)
Cornelia Hucka28c6942006-01-06 00:19:23 -0800756{
757 u32 tod_high;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100758 int ret;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200759 struct channel_subsystem *css;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800760
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200761 css = channel_subsystems[nr];
762 memset(css, 0, sizeof(struct channel_subsystem));
763 css->pseudo_subchannel =
764 kzalloc(sizeof(*css->pseudo_subchannel), GFP_KERNEL);
765 if (!css->pseudo_subchannel)
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100766 return -ENOMEM;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200767 css->pseudo_subchannel->dev.parent = &css->device;
768 css->pseudo_subchannel->dev.release = css_subchannel_release;
769 sprintf(css->pseudo_subchannel->dev.bus_id, "defunct");
770 ret = cio_create_sch_lock(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100771 if (ret) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200772 kfree(css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100773 return ret;
774 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200775 mutex_init(&css->mutex);
776 css->valid = 1;
777 css->cssid = nr;
778 sprintf(css->device.bus_id, "css%x", nr);
779 css->device.release = channel_subsystem_release;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800780 tod_high = (u32) (get_clock() >> 32);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200781 css_generate_pgid(css, tod_high);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Cornelia Hucka55360d2007-10-12 16:11:20 +0200785static int css_reboot_event(struct notifier_block *this,
786 unsigned long event,
787 void *ptr)
788{
789 int ret, i;
790
791 ret = NOTIFY_DONE;
792 for (i = 0; i <= __MAX_CSSID; i++) {
793 struct channel_subsystem *css;
794
795 css = channel_subsystems[i];
Michael Ernst8284fb192008-04-17 07:46:01 +0200796 mutex_lock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200797 if (css->cm_enabled)
798 if (chsc_secm(css, 0))
799 ret = NOTIFY_BAD;
Michael Ernst8284fb192008-04-17 07:46:01 +0200800 mutex_unlock(&css->mutex);
Cornelia Hucka55360d2007-10-12 16:11:20 +0200801 }
802
803 return ret;
804}
805
806static struct notifier_block css_reboot_notifier = {
807 .notifier_call = css_reboot_event,
808};
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810/*
811 * Now that the driver core is running, we can setup our channel subsystem.
812 * The struct subchannel's are created during probing (except for the
813 * static console subchannel).
814 */
815static int __init
816init_channel_subsystem (void)
817{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800818 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Cornelia Huck4434a382007-07-27 12:29:21 +0200820 ret = chsc_determine_css_characteristics();
821 if (ret == -ENOMEM)
822 goto out; /* No need to continue. */
823 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 css_characteristics_avail = 1;
825
Cornelia Huck4434a382007-07-27 12:29:21 +0200826 ret = chsc_alloc_sei_area();
827 if (ret)
828 goto out;
829
830 ret = slow_subchannel_init();
831 if (ret)
832 goto out;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if ((ret = bus_register(&css_bus_type)))
835 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800837 /* Try to enable MSS. */
838 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
839 switch (ret) {
840 case 0: /* Success. */
841 max_ssid = __MAX_SSID;
842 break;
843 case -ENOMEM:
844 goto out_bus;
845 default:
846 max_ssid = 0;
847 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800848 /* Setup css structure. */
849 for (i = 0; i <= __MAX_CSSID; i++) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200850 struct channel_subsystem *css;
851
852 css = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
853 if (!css) {
Cornelia Hucka28c6942006-01-06 00:19:23 -0800854 ret = -ENOMEM;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800855 goto out_unregister;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800856 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200857 channel_subsystems[i] = css;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100858 ret = setup_css(i);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800859 if (ret)
860 goto out_free;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200861 ret = device_register(&css->device);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100862 if (ret)
863 goto out_free_all;
Cornelia Huck7e560812006-07-12 16:40:19 +0200864 if (css_characteristics_avail &&
865 css_chsc_characteristics.secm) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200866 ret = device_create_file(&css->device,
Cornelia Huck7e560812006-07-12 16:40:19 +0200867 &dev_attr_cm_enable);
868 if (ret)
869 goto out_device;
870 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200871 ret = device_register(&css->pseudo_subchannel->dev);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100872 if (ret)
873 goto out_file;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800874 }
Cornelia Hucka55360d2007-10-12 16:11:20 +0200875 ret = register_reboot_notifier(&css_reboot_notifier);
876 if (ret)
877 goto out_pseudo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 css_init_done = 1;
879
880 ctl_set_bit(6, 28);
881
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800882 for_each_subchannel(__init_channel_subsystem, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return 0;
Cornelia Hucka55360d2007-10-12 16:11:20 +0200884out_pseudo:
885 device_unregister(&channel_subsystems[i]->pseudo_subchannel->dev);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100886out_file:
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200887 device_remove_file(&channel_subsystems[i]->device,
888 &dev_attr_cm_enable);
Cornelia Huck7e560812006-07-12 16:40:19 +0200889out_device:
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200890 device_unregister(&channel_subsystems[i]->device);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100891out_free_all:
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200892 kfree(channel_subsystems[i]->pseudo_subchannel->lock);
893 kfree(channel_subsystems[i]->pseudo_subchannel);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800894out_free:
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200895 kfree(channel_subsystems[i]);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800896out_unregister:
Cornelia Hucka28c6942006-01-06 00:19:23 -0800897 while (i > 0) {
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200898 struct channel_subsystem *css;
899
Cornelia Hucka28c6942006-01-06 00:19:23 -0800900 i--;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200901 css = channel_subsystems[i];
902 device_unregister(&css->pseudo_subchannel->dev);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800903 if (css_characteristics_avail && css_chsc_characteristics.secm)
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200904 device_remove_file(&css->device,
Cornelia Huck495a5b42006-03-24 03:15:14 -0800905 &dev_attr_cm_enable);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200906 device_unregister(&css->device);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800907 }
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800908out_bus:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 bus_unregister(&css_bus_type);
910out:
Cornelia Huck4434a382007-07-27 12:29:21 +0200911 chsc_free_sei_area();
912 kfree(slow_subchannel_set);
913 printk(KERN_WARNING"cio: failed to initialize css driver (%d)!\n",
914 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return ret;
916}
917
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100918int sch_is_pseudo_sch(struct subchannel *sch)
919{
920 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
921}
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923/*
924 * find a driver for a subchannel. They identify by the subchannel
925 * type with the exception that the console subchannel driver has its own
926 * subchannel type although the device is an i/o subchannel
927 */
928static int
929css_bus_match (struct device *dev, struct device_driver *drv)
930{
Cornelia Huck084325d2008-01-26 14:10:38 +0100931 struct subchannel *sch = to_subchannel(dev);
932 struct css_driver *driver = to_cssdriver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 if (sch->st == driver->subchannel_type)
935 return 1;
936
937 return 0;
938}
939
Cornelia Huck98c13c22008-01-26 14:10:40 +0100940static int css_probe(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +0100941{
942 struct subchannel *sch;
Cornelia Huck98c13c22008-01-26 14:10:40 +0100943 int ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +0100944
945 sch = to_subchannel(dev);
Cornelia Huck084325d2008-01-26 14:10:38 +0100946 sch->driver = to_cssdriver(dev->driver);
Cornelia Huck98c13c22008-01-26 14:10:40 +0100947 ret = sch->driver->probe ? sch->driver->probe(sch) : 0;
948 if (ret)
949 sch->driver = NULL;
950 return ret;
Cornelia Huck8bbace72006-01-11 10:56:22 +0100951}
952
Cornelia Huck98c13c22008-01-26 14:10:40 +0100953static int css_remove(struct device *dev)
954{
955 struct subchannel *sch;
956 int ret;
957
958 sch = to_subchannel(dev);
959 ret = sch->driver->remove ? sch->driver->remove(sch) : 0;
960 sch->driver = NULL;
961 return ret;
962}
963
964static void css_shutdown(struct device *dev)
Cornelia Huck8bbace72006-01-11 10:56:22 +0100965{
966 struct subchannel *sch;
967
968 sch = to_subchannel(dev);
Cornelia Huck98c13c22008-01-26 14:10:40 +0100969 if (sch->driver && sch->driver->shutdown)
Cornelia Huck8bbace72006-01-11 10:56:22 +0100970 sch->driver->shutdown(sch);
971}
972
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200973static int css_uevent(struct device *dev, struct kobj_uevent_env *env)
974{
975 struct subchannel *sch = to_subchannel(dev);
976 int ret;
977
978 ret = add_uevent_var(env, "ST=%01X", sch->st);
979 if (ret)
980 return ret;
981 ret = add_uevent_var(env, "MODALIAS=css:t%01X", sch->st);
982 return ret;
983}
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985struct bus_type css_bus_type = {
Cornelia Huck8bbace72006-01-11 10:56:22 +0100986 .name = "css",
987 .match = css_bus_match,
988 .probe = css_probe,
989 .remove = css_remove,
990 .shutdown = css_shutdown,
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200991 .uevent = css_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992};
993
Cornelia Huck25b7bb52008-01-26 14:10:41 +0100994/**
995 * css_driver_register - register a css driver
996 * @cdrv: css driver to register
997 *
998 * This is mainly a wrapper around driver_register that sets name
999 * and bus_type in the embedded struct device_driver correctly.
1000 */
1001int css_driver_register(struct css_driver *cdrv)
1002{
1003 cdrv->drv.name = cdrv->name;
1004 cdrv->drv.bus = &css_bus_type;
Cornelia Huck4beee642008-01-26 14:10:47 +01001005 cdrv->drv.owner = cdrv->owner;
Cornelia Huck25b7bb52008-01-26 14:10:41 +01001006 return driver_register(&cdrv->drv);
1007}
1008EXPORT_SYMBOL_GPL(css_driver_register);
1009
1010/**
1011 * css_driver_unregister - unregister a css driver
1012 * @cdrv: css driver to unregister
1013 *
1014 * This is a wrapper around driver_unregister.
1015 */
1016void css_driver_unregister(struct css_driver *cdrv)
1017{
1018 driver_unregister(&cdrv->drv);
1019}
1020EXPORT_SYMBOL_GPL(css_driver_unregister);
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022subsys_initcall(init_channel_subsystem);
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024MODULE_LICENSE("GPL");
1025EXPORT_SYMBOL(css_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026EXPORT_SYMBOL_GPL(css_characteristics_avail);