blob: f80d7f5418d3e4dc62f07eb721b9952763334fca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/s390/cio/device.c
3 * bus driver for ccw devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2002 IBM Deutschland Entwicklung GmbH,
6 * IBM Corporation
7 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
Cornelia Huck4ce3b302006-01-14 13:21:04 -08008 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Martin Schwidefsky (schwidefsky@de.ibm.com)
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/spinlock.h>
14#include <linux/errno.h>
15#include <linux/err.h>
16#include <linux/slab.h>
17#include <linux/list.h>
18#include <linux/device.h>
19#include <linux/workqueue.h>
20
21#include <asm/ccwdev.h>
22#include <asm/cio.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080023#include <asm/param.h> /* HZ */
Cornelia Huck1842f2b2007-10-12 16:11:22 +020024#include <asm/cmb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include "cio.h"
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +010027#include "cio_debug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "css.h"
29#include "device.h"
30#include "ioasm.h"
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010031#include "io_sch.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/******************* bus type handling ***********************/
34
35/* The Linux driver model distinguishes between a bus type and
36 * the bus itself. Of course we only have one channel
37 * subsystem driver and one channel system per machine, but
38 * we still use the abstraction. T.R. says it's a good idea. */
39static int
40ccw_bus_match (struct device * dev, struct device_driver * drv)
41{
42 struct ccw_device *cdev = to_ccwdev(dev);
43 struct ccw_driver *cdrv = to_ccwdrv(drv);
44 const struct ccw_device_id *ids = cdrv->ids, *found;
45
46 if (!ids)
47 return 0;
48
49 found = ccw_device_id_match(ids, &cdev->id);
50 if (!found)
51 return 0;
52
53 cdev->id.driver_info = found->driver_info;
54
55 return 1;
56}
57
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +020058/* Store modalias string delimited by prefix/suffix string into buffer with
59 * specified size. Return length of resulting string (excluding trailing '\0')
60 * even if string doesn't fit buffer (snprintf semantics). */
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +020061static int snprint_alias(char *buf, size_t size,
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +020062 struct ccw_device_id *id, const char *suffix)
63{
64 int len;
65
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +020066 len = snprintf(buf, size, "ccw:t%04Xm%02X", id->cu_type, id->cu_model);
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +020067 if (len > size)
68 return len;
69 buf += len;
70 size -= len;
71
72 if (id->dev_type != 0)
73 len += snprintf(buf, size, "dt%04Xdm%02X%s", id->dev_type,
74 id->dev_model, suffix);
75 else
76 len += snprintf(buf, size, "dtdm%s", suffix);
77
78 return len;
79}
80
81/* Set up environment variables for ccw device uevent. Return 0 on success,
82 * non-zero otherwise. */
Kay Sievers7eff2e72007-08-14 15:15:12 +020083static int ccw_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 struct ccw_device *cdev = to_ccwdev(dev);
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +020086 struct ccw_device_id *id = &(cdev->id);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +020087 int ret;
88 char modalias_buf[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +020090 /* CU_TYPE= */
Kay Sievers7eff2e72007-08-14 15:15:12 +020091 ret = add_uevent_var(env, "CU_TYPE=%04X", id->cu_type);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +020092 if (ret)
93 return ret;
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +020094
95 /* CU_MODEL= */
Kay Sievers7eff2e72007-08-14 15:15:12 +020096 ret = add_uevent_var(env, "CU_MODEL=%02X", id->cu_model);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +020097 if (ret)
98 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* The next two can be zero, that's ok for us */
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200101 /* DEV_TYPE= */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200102 ret = add_uevent_var(env, "DEV_TYPE=%04X", id->dev_type);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +0200103 if (ret)
104 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200106 /* DEV_MODEL= */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200107 ret = add_uevent_var(env, "DEV_MODEL=%02X", id->dev_model);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +0200108 if (ret)
109 return ret;
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200110
111 /* MODALIAS= */
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +0200112 snprint_alias(modalias_buf, sizeof(modalias_buf), id, "");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200113 ret = add_uevent_var(env, "MODALIAS=%s", modalias_buf);
114 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Cornelia Huck8bbace72006-01-11 10:56:22 +0100117struct bus_type ccw_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Cornelia Huck602b20f2008-01-26 14:10:39 +0100119static void io_subchannel_irq(struct subchannel *);
120static int io_subchannel_probe(struct subchannel *);
121static int io_subchannel_remove(struct subchannel *);
122static int io_subchannel_notify(struct subchannel *, int);
123static void io_subchannel_verify(struct subchannel *);
124static void io_subchannel_ioterm(struct subchannel *);
Cornelia Huck8bbace72006-01-11 10:56:22 +0100125static void io_subchannel_shutdown(struct subchannel *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Cornelia Huckf7e5d672007-05-10 15:45:43 +0200127static struct css_driver io_subchannel_driver = {
Cornelia Huck4beee642008-01-26 14:10:47 +0100128 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .subchannel_type = SUBCHANNEL_TYPE_IO,
Cornelia Huck25b7bb52008-01-26 14:10:41 +0100130 .name = "io_subchannel",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .irq = io_subchannel_irq,
132 .notify = io_subchannel_notify,
133 .verify = io_subchannel_verify,
134 .termination = io_subchannel_ioterm,
Cornelia Huck8bbace72006-01-11 10:56:22 +0100135 .probe = io_subchannel_probe,
136 .remove = io_subchannel_remove,
137 .shutdown = io_subchannel_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139
140struct workqueue_struct *ccw_device_work;
141struct workqueue_struct *ccw_device_notify_work;
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200142wait_queue_head_t ccw_device_init_wq;
143atomic_t ccw_device_init_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145static int __init
146init_ccw_bus_type (void)
147{
148 int ret;
149
150 init_waitqueue_head(&ccw_device_init_wq);
151 atomic_set(&ccw_device_init_count, 0);
152
153 ccw_device_work = create_singlethread_workqueue("cio");
154 if (!ccw_device_work)
155 return -ENOMEM; /* FIXME: better errno ? */
156 ccw_device_notify_work = create_singlethread_workqueue("cio_notify");
157 if (!ccw_device_notify_work) {
158 ret = -ENOMEM; /* FIXME: better errno ? */
159 goto out_err;
160 }
161 slow_path_wq = create_singlethread_workqueue("kslowcrw");
162 if (!slow_path_wq) {
163 ret = -ENOMEM; /* FIXME: better errno ? */
164 goto out_err;
165 }
166 if ((ret = bus_register (&ccw_bus_type)))
167 goto out_err;
168
Cornelia Huck25b7bb52008-01-26 14:10:41 +0100169 ret = css_driver_register(&io_subchannel_driver);
170 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 goto out_err;
172
173 wait_event(ccw_device_init_wq,
174 atomic_read(&ccw_device_init_count) == 0);
175 flush_workqueue(ccw_device_work);
176 return 0;
177out_err:
178 if (ccw_device_work)
179 destroy_workqueue(ccw_device_work);
180 if (ccw_device_notify_work)
181 destroy_workqueue(ccw_device_notify_work);
182 if (slow_path_wq)
183 destroy_workqueue(slow_path_wq);
184 return ret;
185}
186
187static void __exit
188cleanup_ccw_bus_type (void)
189{
Cornelia Huck25b7bb52008-01-26 14:10:41 +0100190 css_driver_unregister(&io_subchannel_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 bus_unregister(&ccw_bus_type);
192 destroy_workqueue(ccw_device_notify_work);
193 destroy_workqueue(ccw_device_work);
194}
195
196subsys_initcall(init_ccw_bus_type);
197module_exit(cleanup_ccw_bus_type);
198
199/************************ device handling **************************/
200
201/*
202 * A ccw_device has some interfaces in sysfs in addition to the
203 * standard ones.
204 * The following entries are designed to export the information which
205 * resided in 2.4 in /proc/subchannels. Subchannel and device number
206 * are obvious, so they don't have an entry :)
207 * TODO: Split chpids and pimpampom up? Where is "in use" in the tree?
208 */
209static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400210chpids_show (struct device * dev, struct device_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 struct subchannel *sch = to_subchannel(dev);
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200213 struct chsc_ssd_info *ssd = &sch->ssd_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 ssize_t ret = 0;
215 int chp;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200216 int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200218 for (chp = 0; chp < 8; chp++) {
219 mask = 0x80 >> chp;
220 if (ssd->path_mask & mask)
221 ret += sprintf(buf + ret, "%02x ", ssd->chpid[chp].id);
222 else
223 ret += sprintf(buf + ret, "00 ");
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 ret += sprintf (buf+ret, "\n");
226 return min((ssize_t)PAGE_SIZE, ret);
227}
228
229static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400230pimpampom_show (struct device * dev, struct device_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 struct subchannel *sch = to_subchannel(dev);
233 struct pmcw *pmcw = &sch->schib.pmcw;
234
235 return sprintf (buf, "%02x %02x %02x\n",
236 pmcw->pim, pmcw->pam, pmcw->pom);
237}
238
239static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400240devtype_show (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 struct ccw_device *cdev = to_ccwdev(dev);
243 struct ccw_device_id *id = &(cdev->id);
244
245 if (id->dev_type != 0)
246 return sprintf(buf, "%04x/%02x\n",
247 id->dev_type, id->dev_model);
248 else
249 return sprintf(buf, "n/a\n");
250}
251
252static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400253cutype_show (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct ccw_device *cdev = to_ccwdev(dev);
256 struct ccw_device_id *id = &(cdev->id);
257
258 return sprintf(buf, "%04x/%02x\n",
259 id->cu_type, id->cu_model);
260}
261
262static ssize_t
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800263modalias_show (struct device *dev, struct device_attribute *attr, char *buf)
264{
265 struct ccw_device *cdev = to_ccwdev(dev);
266 struct ccw_device_id *id = &(cdev->id);
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200267 int len;
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800268
Cornelia Huck086a6c62007-07-17 13:36:08 +0200269 len = snprint_alias(buf, PAGE_SIZE, id, "\n");
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200270
271 return len > PAGE_SIZE ? PAGE_SIZE : len;
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800272}
273
274static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400275online_show (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct ccw_device *cdev = to_ccwdev(dev);
278
279 return sprintf(buf, cdev->online ? "1\n" : "0\n");
280}
281
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100282int ccw_device_is_orphan(struct ccw_device *cdev)
283{
284 return sch_is_pseudo_sch(to_subchannel(cdev->dev.parent));
285}
286
Cornelia Huckef995162007-04-27 16:01:39 +0200287static void ccw_device_unregister(struct ccw_device *cdev)
Cornelia Huck7674da72006-12-08 15:54:21 +0100288{
Cornelia Huck7674da72006-12-08 15:54:21 +0100289 if (test_and_clear_bit(1, &cdev->private->registered))
Cornelia Huckef995162007-04-27 16:01:39 +0200290 device_del(&cdev->dev);
Cornelia Huck7674da72006-12-08 15:54:21 +0100291}
292
Cornelia Huck59a8a6e2007-05-31 17:38:06 +0200293static void ccw_device_remove_orphan_cb(struct device *dev)
294{
295 struct ccw_device *cdev = to_ccwdev(dev);
296
297 ccw_device_unregister(cdev);
298 put_device(&cdev->dev);
299}
300
301static void ccw_device_remove_sch_cb(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 struct subchannel *sch;
Cornelia Huck59a8a6e2007-05-31 17:38:06 +0200304
305 sch = to_subchannel(dev);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200306 css_sch_device_unregister(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /* Reset intparm to zeroes. */
308 sch->schib.pmcw.intparm = 0;
309 cio_modify(sch);
310 put_device(&sch->dev);
311}
312
Cornelia Huck59a8a6e2007-05-31 17:38:06 +0200313static void
314ccw_device_remove_disconnected(struct ccw_device *cdev)
315{
316 unsigned long flags;
317 int rc;
318
319 /*
320 * Forced offline in disconnected state means
321 * 'throw away device'.
322 */
323 if (ccw_device_is_orphan(cdev)) {
324 /*
325 * Deregister ccw device.
326 * Unfortunately, we cannot do this directly from the
327 * attribute method.
328 */
329 spin_lock_irqsave(cdev->ccwlock, flags);
330 cdev->private->state = DEV_STATE_NOT_OPER;
331 spin_unlock_irqrestore(cdev->ccwlock, flags);
332 rc = device_schedule_callback(&cdev->dev,
333 ccw_device_remove_orphan_cb);
334 if (rc)
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200335 CIO_MSG_EVENT(2, "Couldn't unregister orphan "
336 "0.%x.%04x\n",
337 cdev->private->dev_id.ssid,
338 cdev->private->dev_id.devno);
Cornelia Huck59a8a6e2007-05-31 17:38:06 +0200339 return;
340 }
341 /* Deregister subchannel, which will kill the ccw device. */
342 rc = device_schedule_callback(cdev->dev.parent,
343 ccw_device_remove_sch_cb);
344 if (rc)
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200345 CIO_MSG_EVENT(2, "Couldn't unregister disconnected device "
346 "0.%x.%04x\n",
347 cdev->private->dev_id.ssid,
348 cdev->private->dev_id.devno);
Cornelia Huck59a8a6e2007-05-31 17:38:06 +0200349}
350
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200351/**
352 * ccw_device_set_offline() - disable a ccw device for I/O
353 * @cdev: target ccw device
354 *
355 * This function calls the driver's set_offline() function for @cdev, if
356 * given, and then disables @cdev.
357 * Returns:
358 * %0 on success and a negative error value on failure.
359 * Context:
360 * enabled, ccw device lock not held
361 */
362int ccw_device_set_offline(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 int ret;
365
366 if (!cdev)
367 return -ENODEV;
368 if (!cdev->online || !cdev->drv)
369 return -EINVAL;
370
371 if (cdev->drv->set_offline) {
372 ret = cdev->drv->set_offline(cdev);
373 if (ret != 0)
374 return ret;
375 }
376 cdev->online = 0;
377 spin_lock_irq(cdev->ccwlock);
378 ret = ccw_device_offline(cdev);
379 if (ret == -ENODEV) {
380 if (cdev->private->state != DEV_STATE_NOT_OPER) {
381 cdev->private->state = DEV_STATE_OFFLINE;
382 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
383 }
384 spin_unlock_irq(cdev->ccwlock);
385 return ret;
386 }
387 spin_unlock_irq(cdev->ccwlock);
388 if (ret == 0)
389 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
390 else {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200391 CIO_MSG_EVENT(2, "ccw_device_offline returned %d, "
392 "device 0.%x.%04x\n",
393 ret, cdev->private->dev_id.ssid,
394 cdev->private->dev_id.devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 cdev->online = 1;
396 }
397 return ret;
398}
399
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200400/**
401 * ccw_device_set_online() - enable a ccw device for I/O
402 * @cdev: target ccw device
403 *
404 * This function first enables @cdev and then calls the driver's set_online()
405 * function for @cdev, if given. If set_online() returns an error, @cdev is
406 * disabled again.
407 * Returns:
408 * %0 on success and a negative error value on failure.
409 * Context:
410 * enabled, ccw device lock not held
411 */
412int ccw_device_set_online(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 int ret;
415
416 if (!cdev)
417 return -ENODEV;
418 if (cdev->online || !cdev->drv)
419 return -EINVAL;
420
421 spin_lock_irq(cdev->ccwlock);
422 ret = ccw_device_online(cdev);
423 spin_unlock_irq(cdev->ccwlock);
424 if (ret == 0)
425 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
426 else {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200427 CIO_MSG_EVENT(2, "ccw_device_online returned %d, "
428 "device 0.%x.%04x\n",
429 ret, cdev->private->dev_id.ssid,
430 cdev->private->dev_id.devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return ret;
432 }
433 if (cdev->private->state != DEV_STATE_ONLINE)
434 return -ENODEV;
435 if (!cdev->drv->set_online || cdev->drv->set_online(cdev) == 0) {
436 cdev->online = 1;
437 return 0;
438 }
439 spin_lock_irq(cdev->ccwlock);
440 ret = ccw_device_offline(cdev);
441 spin_unlock_irq(cdev->ccwlock);
442 if (ret == 0)
443 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200444 else
445 CIO_MSG_EVENT(2, "ccw_device_offline returned %d, "
446 "device 0.%x.%04x\n",
447 ret, cdev->private->dev_id.ssid,
448 cdev->private->dev_id.devno);
Cornelia Huck6cadb782006-02-17 13:52:49 -0800449 return (ret == 0) ? -ENODEV : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200452static void online_store_handle_offline(struct ccw_device *cdev)
453{
454 if (cdev->private->state == DEV_STATE_DISCONNECTED)
455 ccw_device_remove_disconnected(cdev);
456 else if (cdev->drv && cdev->drv->set_offline)
457 ccw_device_set_offline(cdev);
458}
459
460static int online_store_recog_and_online(struct ccw_device *cdev)
461{
462 int ret;
463
464 /* Do device recognition, if needed. */
465 if (cdev->id.cu_type == 0) {
466 ret = ccw_device_recognition(cdev);
467 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200468 CIO_MSG_EVENT(0, "Couldn't start recognition "
469 "for device 0.%x.%04x (ret=%d)\n",
470 cdev->private->dev_id.ssid,
471 cdev->private->dev_id.devno, ret);
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200472 return ret;
473 }
474 wait_event(cdev->private->wait_q,
475 cdev->private->flags.recog_done);
476 }
477 if (cdev->drv && cdev->drv->set_online)
478 ccw_device_set_online(cdev);
479 return 0;
480}
481static void online_store_handle_online(struct ccw_device *cdev, int force)
482{
483 int ret;
484
485 ret = online_store_recog_and_online(cdev);
486 if (ret)
487 return;
488 if (force && cdev->private->state == DEV_STATE_BOXED) {
489 ret = ccw_device_stlck(cdev);
490 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200491 dev_warn(&cdev->dev,
492 "ccw_device_stlck returned %d!\n", ret);
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200493 return;
494 }
495 if (cdev->id.cu_type == 0)
496 cdev->private->state = DEV_STATE_NOT_OPER;
497 online_store_recog_and_online(cdev);
498 }
499
500}
501
502static ssize_t online_store (struct device *dev, struct device_attribute *attr,
503 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 struct ccw_device *cdev = to_ccwdev(dev);
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200506 int i, force;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 char *tmp;
508
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800509 if (atomic_cmpxchg(&cdev->private->onoff, 0, 1) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return -EAGAIN;
511
512 if (cdev->drv && !try_module_get(cdev->drv->owner)) {
513 atomic_set(&cdev->private->onoff, 0);
514 return -EINVAL;
515 }
516 if (!strncmp(buf, "force\n", count)) {
517 force = 1;
518 i = 1;
519 } else {
520 force = 0;
521 i = simple_strtoul(buf, &tmp, 16);
522 }
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200523
524 switch (i) {
525 case 0:
526 online_store_handle_offline(cdev);
527 break;
528 case 1:
529 online_store_handle_online(cdev, force);
530 break;
531 default:
532 count = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (cdev->drv)
535 module_put(cdev->drv->owner);
536 atomic_set(&cdev->private->onoff, 0);
537 return count;
538}
539
540static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400541available_show (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 struct ccw_device *cdev = to_ccwdev(dev);
544 struct subchannel *sch;
545
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100546 if (ccw_device_is_orphan(cdev))
547 return sprintf(buf, "no device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 switch (cdev->private->state) {
549 case DEV_STATE_BOXED:
550 return sprintf(buf, "boxed\n");
551 case DEV_STATE_DISCONNECTED:
552 case DEV_STATE_DISCONNECTED_SENSE_ID:
553 case DEV_STATE_NOT_OPER:
554 sch = to_subchannel(dev->parent);
555 if (!sch->lpm)
556 return sprintf(buf, "no path\n");
557 else
558 return sprintf(buf, "no device\n");
559 default:
560 /* All other states considered fine. */
561 return sprintf(buf, "good\n");
562 }
563}
564
565static DEVICE_ATTR(chpids, 0444, chpids_show, NULL);
566static DEVICE_ATTR(pimpampom, 0444, pimpampom_show, NULL);
567static DEVICE_ATTR(devtype, 0444, devtype_show, NULL);
568static DEVICE_ATTR(cutype, 0444, cutype_show, NULL);
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800569static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570static DEVICE_ATTR(online, 0644, online_show, online_store);
571extern struct device_attribute dev_attr_cmb_enable;
572static DEVICE_ATTR(availability, 0444, available_show, NULL);
573
574static struct attribute * subch_attrs[] = {
575 &dev_attr_chpids.attr,
576 &dev_attr_pimpampom.attr,
577 NULL,
578};
579
580static struct attribute_group subch_attr_group = {
581 .attrs = subch_attrs,
582};
583
Cornelia Huck529192f2006-12-08 15:55:57 +0100584struct attribute_group *subch_attr_groups[] = {
585 &subch_attr_group,
586 NULL,
587};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589static struct attribute * ccwdev_attrs[] = {
590 &dev_attr_devtype.attr,
591 &dev_attr_cutype.attr,
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800592 &dev_attr_modalias.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 &dev_attr_online.attr,
594 &dev_attr_cmb_enable.attr,
595 &dev_attr_availability.attr,
596 NULL,
597};
598
599static struct attribute_group ccwdev_attr_group = {
600 .attrs = ccwdev_attrs,
601};
602
Cornelia Huckf7e5d672007-05-10 15:45:43 +0200603static struct attribute_group *ccwdev_attr_groups[] = {
Cornelia Huckef995162007-04-27 16:01:39 +0200604 &ccwdev_attr_group,
605 NULL,
606};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608/* this is a simple abstraction for device_register that sets the
609 * correct bus type and adds the bus specific files */
Cornelia Huck3c9da7b2006-10-27 12:39:33 +0200610static int ccw_device_register(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 struct device *dev = &cdev->dev;
613 int ret;
614
615 dev->bus = &ccw_bus_type;
616
617 if ((ret = device_add(dev)))
618 return ret;
619
620 set_bit(1, &cdev->private->registered);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return ret;
622}
623
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700624struct match_data {
Cornelia Huck78964262006-10-11 15:31:38 +0200625 struct ccw_dev_id dev_id;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700626 struct ccw_device * sibling;
627};
628
629static int
630match_devno(struct device * dev, void * data)
631{
Cornelia Huck78964262006-10-11 15:31:38 +0200632 struct match_data * d = data;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700633 struct ccw_device * cdev;
634
635 cdev = to_ccwdev(dev);
636 if ((cdev->private->state == DEV_STATE_DISCONNECTED) &&
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100637 !ccw_device_is_orphan(cdev) &&
Cornelia Huck78964262006-10-11 15:31:38 +0200638 ccw_dev_id_is_equal(&cdev->private->dev_id, &d->dev_id) &&
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100639 (cdev != d->sibling))
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700640 return 1;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700641 return 0;
642}
643
Cornelia Huck78964262006-10-11 15:31:38 +0200644static struct ccw_device * get_disc_ccwdev_by_dev_id(struct ccw_dev_id *dev_id,
645 struct ccw_device *sibling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 struct device *dev;
Heiko Carstens292888c2006-08-30 14:33:35 +0200648 struct match_data data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Cornelia Huck78964262006-10-11 15:31:38 +0200650 data.dev_id = *dev_id;
Heiko Carstens292888c2006-08-30 14:33:35 +0200651 data.sibling = sibling;
Cornelia Hucke5945b42005-10-11 08:28:59 -0700652 dev = bus_find_device(&ccw_bus_type, NULL, &data, match_devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700654 return dev ? to_ccwdev(dev) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100657static int match_orphan(struct device *dev, void *data)
658{
659 struct ccw_dev_id *dev_id;
660 struct ccw_device *cdev;
661
662 dev_id = data;
663 cdev = to_ccwdev(dev);
664 return ccw_dev_id_is_equal(&cdev->private->dev_id, dev_id);
665}
666
667static struct ccw_device *
668get_orphaned_ccwdev_by_dev_id(struct channel_subsystem *css,
669 struct ccw_dev_id *dev_id)
670{
671 struct device *dev;
672
673 dev = device_find_child(&css->pseudo_subchannel->dev, dev_id,
674 match_orphan);
675
676 return dev ? to_ccwdev(dev) : NULL;
677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679static void
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100680ccw_device_add_changed(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100682 struct ccw_device_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 struct ccw_device *cdev;
684
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100685 priv = container_of(work, struct ccw_device_private, kick_work);
686 cdev = priv->cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (device_add(&cdev->dev)) {
688 put_device(&cdev->dev);
689 return;
690 }
691 set_bit(1, &cdev->private->registered);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100694void ccw_device_do_unreg_rereg(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100696 struct ccw_device_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 struct ccw_device *cdev;
698 struct subchannel *sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100700 priv = container_of(work, struct ccw_device_private, kick_work);
701 cdev = priv->cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 sch = to_subchannel(cdev->dev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Cornelia Huckef995162007-04-27 16:01:39 +0200704 ccw_device_unregister(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 PREPARE_WORK(&cdev->private->kick_work,
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100706 ccw_device_add_changed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 queue_work(ccw_device_work, &cdev->private->kick_work);
708}
709
710static void
711ccw_device_release(struct device *dev)
712{
713 struct ccw_device *cdev;
714
715 cdev = to_ccwdev(dev);
716 kfree(cdev->private);
717 kfree(cdev);
718}
719
Cornelia Huck7674da72006-12-08 15:54:21 +0100720static struct ccw_device * io_subchannel_allocate_dev(struct subchannel *sch)
721{
722 struct ccw_device *cdev;
723
724 cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
725 if (cdev) {
726 cdev->private = kzalloc(sizeof(struct ccw_device_private),
727 GFP_KERNEL | GFP_DMA);
728 if (cdev->private)
729 return cdev;
730 }
731 kfree(cdev);
732 return ERR_PTR(-ENOMEM);
733}
734
735static int io_subchannel_initialize_dev(struct subchannel *sch,
736 struct ccw_device *cdev)
737{
738 cdev->private->cdev = cdev;
739 atomic_set(&cdev->private->onoff, 0);
740 cdev->dev.parent = &sch->dev;
741 cdev->dev.release = ccw_device_release;
Heiko Carstens33583c32007-11-05 11:10:07 +0100742 INIT_WORK(&cdev->private->kick_work, NULL);
Cornelia Huckef995162007-04-27 16:01:39 +0200743 cdev->dev.groups = ccwdev_attr_groups;
Cornelia Huck7674da72006-12-08 15:54:21 +0100744 /* Do first half of device_register. */
745 device_initialize(&cdev->dev);
746 if (!get_device(&sch->dev)) {
747 if (cdev->dev.release)
748 cdev->dev.release(&cdev->dev);
749 return -ENODEV;
750 }
751 return 0;
752}
753
754static struct ccw_device * io_subchannel_create_ccwdev(struct subchannel *sch)
755{
756 struct ccw_device *cdev;
757 int ret;
758
759 cdev = io_subchannel_allocate_dev(sch);
760 if (!IS_ERR(cdev)) {
761 ret = io_subchannel_initialize_dev(sch, cdev);
762 if (ret) {
763 kfree(cdev);
764 cdev = ERR_PTR(ret);
765 }
766 }
767 return cdev;
768}
769
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100770static int io_subchannel_recog(struct ccw_device *, struct subchannel *);
771
772static void sch_attach_device(struct subchannel *sch,
773 struct ccw_device *cdev)
774{
Cornelia Huck82b7ac02007-04-27 16:01:36 +0200775 css_update_ssd_info(sch);
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100776 spin_lock_irq(sch->lock);
Cornelia Huckdb6a6422008-01-26 14:10:46 +0100777 sch_set_cdev(sch, cdev);
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100778 cdev->private->schid = sch->schid;
779 cdev->ccwlock = sch->lock;
780 device_trigger_reprobe(sch);
781 spin_unlock_irq(sch->lock);
782}
783
784static void sch_attach_disconnected_device(struct subchannel *sch,
785 struct ccw_device *cdev)
786{
787 struct subchannel *other_sch;
788 int ret;
789
790 other_sch = to_subchannel(get_device(cdev->dev.parent));
791 ret = device_move(&cdev->dev, &sch->dev);
792 if (ret) {
793 CIO_MSG_EVENT(2, "Moving disconnected device 0.%x.%04x failed "
794 "(ret=%d)!\n", cdev->private->dev_id.ssid,
795 cdev->private->dev_id.devno, ret);
796 put_device(&other_sch->dev);
797 return;
798 }
Cornelia Huckdb6a6422008-01-26 14:10:46 +0100799 sch_set_cdev(other_sch, NULL);
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100800 /* No need to keep a subchannel without ccw device around. */
801 css_sch_device_unregister(other_sch);
802 put_device(&other_sch->dev);
803 sch_attach_device(sch, cdev);
804}
805
806static void sch_attach_orphaned_device(struct subchannel *sch,
807 struct ccw_device *cdev)
808{
809 int ret;
810
811 /* Try to move the ccw device to its new subchannel. */
812 ret = device_move(&cdev->dev, &sch->dev);
813 if (ret) {
814 CIO_MSG_EVENT(0, "Moving device 0.%x.%04x from orphanage "
815 "failed (ret=%d)!\n",
816 cdev->private->dev_id.ssid,
817 cdev->private->dev_id.devno, ret);
818 return;
819 }
820 sch_attach_device(sch, cdev);
821}
822
823static void sch_create_and_recog_new_device(struct subchannel *sch)
824{
825 struct ccw_device *cdev;
826
827 /* Need to allocate a new ccw device. */
828 cdev = io_subchannel_create_ccwdev(sch);
829 if (IS_ERR(cdev)) {
830 /* OK, we did everything we could... */
831 css_sch_device_unregister(sch);
832 return;
833 }
834 spin_lock_irq(sch->lock);
Cornelia Huckdb6a6422008-01-26 14:10:46 +0100835 sch_set_cdev(sch, cdev);
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100836 spin_unlock_irq(sch->lock);
837 /* Start recognition for the new ccw device. */
838 if (io_subchannel_recog(cdev, sch)) {
839 spin_lock_irq(sch->lock);
Cornelia Huckdb6a6422008-01-26 14:10:46 +0100840 sch_set_cdev(sch, NULL);
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100841 spin_unlock_irq(sch->lock);
842 if (cdev->dev.release)
843 cdev->dev.release(&cdev->dev);
844 css_sch_device_unregister(sch);
845 }
846}
847
848
849void ccw_device_move_to_orphanage(struct work_struct *work)
850{
851 struct ccw_device_private *priv;
852 struct ccw_device *cdev;
853 struct ccw_device *replacing_cdev;
854 struct subchannel *sch;
855 int ret;
856 struct channel_subsystem *css;
857 struct ccw_dev_id dev_id;
858
859 priv = container_of(work, struct ccw_device_private, kick_work);
860 cdev = priv->cdev;
861 sch = to_subchannel(cdev->dev.parent);
862 css = to_css(sch->dev.parent);
863 dev_id.devno = sch->schib.pmcw.dev;
864 dev_id.ssid = sch->schid.ssid;
865
866 /*
867 * Move the orphaned ccw device to the orphanage so the replacing
868 * ccw device can take its place on the subchannel.
869 */
870 ret = device_move(&cdev->dev, &css->pseudo_subchannel->dev);
871 if (ret) {
872 CIO_MSG_EVENT(0, "Moving device 0.%x.%04x to orphanage failed "
873 "(ret=%d)!\n", cdev->private->dev_id.ssid,
874 cdev->private->dev_id.devno, ret);
875 return;
876 }
877 cdev->ccwlock = css->pseudo_subchannel->lock;
878 /*
879 * Search for the replacing ccw device
880 * - among the disconnected devices
881 * - in the orphanage
882 */
883 replacing_cdev = get_disc_ccwdev_by_dev_id(&dev_id, cdev);
884 if (replacing_cdev) {
885 sch_attach_disconnected_device(sch, replacing_cdev);
886 return;
887 }
888 replacing_cdev = get_orphaned_ccwdev_by_dev_id(css, &dev_id);
889 if (replacing_cdev) {
890 sch_attach_orphaned_device(sch, replacing_cdev);
891 return;
892 }
893 sch_create_and_recog_new_device(sch);
894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896/*
897 * Register recognized device.
898 */
899static void
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100900io_subchannel_register(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100902 struct ccw_device_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 struct ccw_device *cdev;
904 struct subchannel *sch;
905 int ret;
906 unsigned long flags;
907
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100908 priv = container_of(work, struct ccw_device_private, kick_work);
909 cdev = priv->cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 sch = to_subchannel(cdev->dev.parent);
Cornelia Huck82b7ac02007-04-27 16:01:36 +0200911 css_update_ssd_info(sch);
Cornelia Huck47af5512006-12-04 15:41:07 +0100912 /*
913 * io_subchannel_register() will also be called after device
914 * recognition has been done for a boxed device (which will already
915 * be registered). We need to reprobe since we may now have sense id
916 * information.
917 */
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700918 if (klist_node_attached(&cdev->dev.knode_parent)) {
Cornelia Huck47af5512006-12-04 15:41:07 +0100919 if (!cdev->drv) {
920 ret = device_reprobe(&cdev->dev);
921 if (ret)
922 /* We can't do much here. */
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200923 CIO_MSG_EVENT(2, "device_reprobe() returned"
924 " %d for 0.%x.%04x\n", ret,
925 cdev->private->dev_id.ssid,
926 cdev->private->dev_id.devno);
Cornelia Huck47af5512006-12-04 15:41:07 +0100927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 goto out;
929 }
Cornelia Huckfa1a8c22007-04-26 00:12:03 -0700930 /*
931 * Now we know this subchannel will stay, we can throw
932 * our delayed uevent.
933 */
934 sch->dev.uevent_suppress = 0;
935 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /* make it known to the system */
937 ret = ccw_device_register(cdev);
938 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200939 CIO_MSG_EVENT(0, "Could not register ccw dev 0.%x.%04x: %d\n",
940 cdev->private->dev_id.ssid,
941 cdev->private->dev_id.devno, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 put_device(&cdev->dev);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100943 spin_lock_irqsave(sch->lock, flags);
Cornelia Huckdb6a6422008-01-26 14:10:46 +0100944 sch_set_cdev(sch, NULL);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100945 spin_unlock_irqrestore(sch->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 kfree (cdev->private);
947 kfree (cdev);
948 put_device(&sch->dev);
949 if (atomic_dec_and_test(&ccw_device_init_count))
950 wake_up(&ccw_device_init_wq);
951 return;
952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 put_device(&cdev->dev);
954out:
955 cdev->private->flags.recog_done = 1;
956 put_device(&sch->dev);
957 wake_up(&cdev->private->wait_q);
958 if (atomic_dec_and_test(&ccw_device_init_count))
959 wake_up(&ccw_device_init_wq);
960}
961
Cornelia Huck3f4cf6e2007-10-12 16:11:26 +0200962static void ccw_device_call_sch_unregister(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100964 struct ccw_device_private *priv;
965 struct ccw_device *cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 struct subchannel *sch;
967
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100968 priv = container_of(work, struct ccw_device_private, kick_work);
969 cdev = priv->cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 sch = to_subchannel(cdev->dev.parent);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200971 css_sch_device_unregister(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 /* Reset intparm to zeroes. */
973 sch->schib.pmcw.intparm = 0;
974 cio_modify(sch);
975 put_device(&cdev->dev);
976 put_device(&sch->dev);
977}
978
979/*
980 * subchannel recognition done. Called from the state machine.
981 */
982void
983io_subchannel_recog_done(struct ccw_device *cdev)
984{
985 struct subchannel *sch;
986
987 if (css_init_done == 0) {
988 cdev->private->flags.recog_done = 1;
989 return;
990 }
991 switch (cdev->private->state) {
992 case DEV_STATE_NOT_OPER:
993 cdev->private->flags.recog_done = 1;
994 /* Remove device found not operational. */
995 if (!get_device(&cdev->dev))
996 break;
997 sch = to_subchannel(cdev->dev.parent);
998 PREPARE_WORK(&cdev->private->kick_work,
Martin Schwidefskyc1637532006-12-08 15:53:57 +0100999 ccw_device_call_sch_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 queue_work(slow_path_wq, &cdev->private->kick_work);
1001 if (atomic_dec_and_test(&ccw_device_init_count))
1002 wake_up(&ccw_device_init_wq);
1003 break;
1004 case DEV_STATE_BOXED:
1005 /* Device did not respond in time. */
1006 case DEV_STATE_OFFLINE:
1007 /*
1008 * We can't register the device in interrupt context so
1009 * we schedule a work item.
1010 */
1011 if (!get_device(&cdev->dev))
1012 break;
1013 PREPARE_WORK(&cdev->private->kick_work,
Martin Schwidefskyc1637532006-12-08 15:53:57 +01001014 io_subchannel_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 queue_work(slow_path_wq, &cdev->private->kick_work);
1016 break;
1017 }
1018}
1019
1020static int
1021io_subchannel_recog(struct ccw_device *cdev, struct subchannel *sch)
1022{
1023 int rc;
1024 struct ccw_device_private *priv;
1025
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001026 sch_set_cdev(sch, cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 sch->driver = &io_subchannel_driver;
Cornelia Huck2ec22982006-12-08 15:54:26 +01001028 cdev->ccwlock = sch->lock;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 /* Init private data. */
1031 priv = cdev->private;
Cornelia Huck78964262006-10-11 15:31:38 +02001032 priv->dev_id.devno = sch->schib.pmcw.dev;
1033 priv->dev_id.ssid = sch->schid.ssid;
1034 priv->schid = sch->schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 priv->state = DEV_STATE_NOT_OPER;
1036 INIT_LIST_HEAD(&priv->cmb_list);
1037 init_waitqueue_head(&priv->wait_q);
1038 init_timer(&priv->timer);
1039
1040 /* Set an initial name for the device. */
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001041 snprintf (cdev->dev.bus_id, BUS_ID_SIZE, "0.%x.%04x",
1042 sch->schid.ssid, sch->schib.pmcw.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 /* Increase counter of devices currently in recognition. */
1045 atomic_inc(&ccw_device_init_count);
1046
1047 /* Start async. device sensing. */
Cornelia Huck2ec22982006-12-08 15:54:26 +01001048 spin_lock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 rc = ccw_device_recognition(cdev);
Cornelia Huck2ec22982006-12-08 15:54:26 +01001050 spin_unlock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (rc) {
1052 if (atomic_dec_and_test(&ccw_device_init_count))
1053 wake_up(&ccw_device_init_wq);
1054 }
1055 return rc;
1056}
1057
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +01001058static void ccw_device_move_to_sch(struct work_struct *work)
1059{
1060 struct ccw_device_private *priv;
1061 int rc;
1062 struct subchannel *sch;
1063 struct ccw_device *cdev;
1064 struct subchannel *former_parent;
1065
1066 priv = container_of(work, struct ccw_device_private, kick_work);
1067 sch = priv->sch;
1068 cdev = priv->cdev;
1069 former_parent = ccw_device_is_orphan(cdev) ?
1070 NULL : to_subchannel(get_device(cdev->dev.parent));
1071 mutex_lock(&sch->reg_mutex);
1072 /* Try to move the ccw device to its new subchannel. */
1073 rc = device_move(&cdev->dev, &sch->dev);
1074 mutex_unlock(&sch->reg_mutex);
1075 if (rc) {
1076 CIO_MSG_EVENT(2, "Moving device 0.%x.%04x to subchannel "
1077 "0.%x.%04x failed (ret=%d)!\n",
1078 cdev->private->dev_id.ssid,
1079 cdev->private->dev_id.devno, sch->schid.ssid,
1080 sch->schid.sch_no, rc);
1081 css_sch_device_unregister(sch);
1082 goto out;
1083 }
1084 if (former_parent) {
1085 spin_lock_irq(former_parent->lock);
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001086 sch_set_cdev(former_parent, NULL);
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +01001087 spin_unlock_irq(former_parent->lock);
1088 css_sch_device_unregister(former_parent);
1089 /* Reset intparm to zeroes. */
1090 former_parent->schib.pmcw.intparm = 0;
1091 cio_modify(former_parent);
1092 }
1093 sch_attach_device(sch, cdev);
1094out:
1095 if (former_parent)
1096 put_device(&former_parent->dev);
1097 put_device(&cdev->dev);
1098}
1099
Cornelia Huck602b20f2008-01-26 14:10:39 +01001100static void io_subchannel_irq(struct subchannel *sch)
1101{
1102 struct ccw_device *cdev;
1103
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001104 cdev = sch_get_cdev(sch);
Cornelia Huck602b20f2008-01-26 14:10:39 +01001105
1106 CIO_TRACE_EVENT(3, "IRQ");
1107 CIO_TRACE_EVENT(3, sch->dev.bus_id);
1108 if (cdev)
1109 dev_fsm_event(cdev, DEV_EVENT_INTERRUPT);
1110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112static int
Cornelia Huck8bbace72006-01-11 10:56:22 +01001113io_subchannel_probe (struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 struct ccw_device *cdev;
1116 int rc;
1117 unsigned long flags;
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +01001118 struct ccw_dev_id dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001120 cdev = sch_get_cdev(sch);
1121 if (cdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 /*
1123 * This subchannel already has an associated ccw_device.
1124 * Register it and exit. This happens for all early
1125 * device, e.g. the console.
1126 */
Cornelia Hucke1031782007-10-12 16:11:23 +02001127 cdev->dev.groups = ccwdev_attr_groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 device_initialize(&cdev->dev);
1129 ccw_device_register(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 /*
1131 * Check if the device is already online. If it is
1132 * the reference count needs to be corrected
1133 * (see ccw_device_online and css_init_done for the
1134 * ugly details).
1135 */
1136 if (cdev->private->state != DEV_STATE_NOT_OPER &&
1137 cdev->private->state != DEV_STATE_OFFLINE &&
1138 cdev->private->state != DEV_STATE_BOXED)
1139 get_device(&cdev->dev);
1140 return 0;
1141 }
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +01001142 /*
1143 * First check if a fitting device may be found amongst the
1144 * disconnected devices or in the orphanage.
1145 */
1146 dev_id.devno = sch->schib.pmcw.dev;
1147 dev_id.ssid = sch->schid.ssid;
Cornelia Huckcd6b4f22008-01-26 14:10:43 +01001148 /* Allocate I/O subchannel private data. */
1149 sch->private = kzalloc(sizeof(struct io_subchannel_private),
1150 GFP_KERNEL | GFP_DMA);
1151 if (!sch->private)
1152 return -ENOMEM;
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +01001153 cdev = get_disc_ccwdev_by_dev_id(&dev_id, NULL);
1154 if (!cdev)
1155 cdev = get_orphaned_ccwdev_by_dev_id(to_css(sch->dev.parent),
1156 &dev_id);
1157 if (cdev) {
1158 /*
1159 * Schedule moving the device until when we have a registered
1160 * subchannel to move to and succeed the probe. We can
1161 * unregister later again, when the probe is through.
1162 */
1163 cdev->private->sch = sch;
1164 PREPARE_WORK(&cdev->private->kick_work,
1165 ccw_device_move_to_sch);
1166 queue_work(slow_path_wq, &cdev->private->kick_work);
1167 return 0;
1168 }
Cornelia Huck7674da72006-12-08 15:54:21 +01001169 cdev = io_subchannel_create_ccwdev(sch);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +01001170 if (IS_ERR(cdev)) {
1171 kfree(sch->private);
Cornelia Huck7674da72006-12-08 15:54:21 +01001172 return PTR_ERR(cdev);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +01001173 }
Cornelia Huck8bbace72006-01-11 10:56:22 +01001174 rc = io_subchannel_recog(cdev, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (rc) {
Cornelia Huck2ec22982006-12-08 15:54:26 +01001176 spin_lock_irqsave(sch->lock, flags);
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001177 sch_set_cdev(sch, NULL);
Cornelia Huck2ec22982006-12-08 15:54:26 +01001178 spin_unlock_irqrestore(sch->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (cdev->dev.release)
1180 cdev->dev.release(&cdev->dev);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +01001181 kfree(sch->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183
1184 return rc;
1185}
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187static int
Cornelia Huck8bbace72006-01-11 10:56:22 +01001188io_subchannel_remove (struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
1190 struct ccw_device *cdev;
1191 unsigned long flags;
1192
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001193 cdev = sch_get_cdev(sch);
1194 if (!cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 /* Set ccw device to not operational and drop reference. */
1197 spin_lock_irqsave(cdev->ccwlock, flags);
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001198 sch_set_cdev(sch, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 cdev->private->state = DEV_STATE_NOT_OPER;
1200 spin_unlock_irqrestore(cdev->ccwlock, flags);
Cornelia Huckef995162007-04-27 16:01:39 +02001201 ccw_device_unregister(cdev);
1202 put_device(&cdev->dev);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +01001203 kfree(sch->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return 0;
1205}
1206
Cornelia Huck602b20f2008-01-26 14:10:39 +01001207static int io_subchannel_notify(struct subchannel *sch, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 struct ccw_device *cdev;
1210
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001211 cdev = sch_get_cdev(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (!cdev)
1213 return 0;
1214 if (!cdev->drv)
1215 return 0;
1216 if (!cdev->online)
1217 return 0;
1218 return cdev->drv->notify ? cdev->drv->notify(cdev, event) : 0;
1219}
1220
Cornelia Huck602b20f2008-01-26 14:10:39 +01001221static void io_subchannel_verify(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
1223 struct ccw_device *cdev;
1224
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001225 cdev = sch_get_cdev(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (cdev)
1227 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
1228}
1229
Cornelia Huck602b20f2008-01-26 14:10:39 +01001230static void io_subchannel_ioterm(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
1232 struct ccw_device *cdev;
1233
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001234 cdev = sch_get_cdev(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (!cdev)
1236 return;
Cornelia Huckd23861f2006-12-04 15:41:04 +01001237 /* Internal I/O will be retried by the interrupt handler. */
1238 if (cdev->private->flags.intretry)
1239 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 cdev->private->state = DEV_STATE_CLEAR_VERIFY;
1241 if (cdev->handler)
1242 cdev->handler(cdev, cdev->private->intparm,
1243 ERR_PTR(-EIO));
1244}
1245
1246static void
Cornelia Huck8bbace72006-01-11 10:56:22 +01001247io_subchannel_shutdown(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 struct ccw_device *cdev;
1250 int ret;
1251
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001252 cdev = sch_get_cdev(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Cornelia Hucka8237fc2006-01-06 00:19:21 -08001254 if (cio_is_console(sch->schid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return;
1256 if (!sch->schib.pmcw.ena)
1257 /* Nothing to do. */
1258 return;
1259 ret = cio_disable_subchannel(sch);
1260 if (ret != -EBUSY)
1261 /* Subchannel is disabled, we're done. */
1262 return;
1263 cdev->private->state = DEV_STATE_QUIESCE;
1264 if (cdev->handler)
1265 cdev->handler(cdev, cdev->private->intparm,
1266 ERR_PTR(-EIO));
1267 ret = ccw_device_cancel_halt_clear(cdev);
1268 if (ret == -EBUSY) {
1269 ccw_device_set_timeout(cdev, HZ/10);
1270 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
1271 }
1272 cio_disable_subchannel(sch);
1273}
1274
1275#ifdef CONFIG_CCW_CONSOLE
1276static struct ccw_device console_cdev;
1277static struct ccw_device_private console_private;
1278static int console_cdev_in_use;
1279
Cornelia Huck2ec22982006-12-08 15:54:26 +01001280static DEFINE_SPINLOCK(ccw_console_lock);
1281
1282spinlock_t * cio_get_console_lock(void)
1283{
1284 return &ccw_console_lock;
1285}
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287static int
1288ccw_device_console_enable (struct ccw_device *cdev, struct subchannel *sch)
1289{
1290 int rc;
1291
Cornelia Huckcd6b4f22008-01-26 14:10:43 +01001292 /* Attach subchannel private data. */
1293 sch->private = cio_get_console_priv();
1294 memset(sch->private, 0, sizeof(struct io_subchannel_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 /* Initialize the ccw_device structure. */
Heiko Carstens292888c2006-08-30 14:33:35 +02001296 cdev->dev.parent= &sch->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 rc = io_subchannel_recog(cdev, sch);
1298 if (rc)
1299 return rc;
1300
1301 /* Now wait for the async. recognition to come to an end. */
1302 spin_lock_irq(cdev->ccwlock);
1303 while (!dev_fsm_final_state(cdev))
1304 wait_cons_dev();
1305 rc = -EIO;
1306 if (cdev->private->state != DEV_STATE_OFFLINE)
1307 goto out_unlock;
1308 ccw_device_online(cdev);
1309 while (!dev_fsm_final_state(cdev))
1310 wait_cons_dev();
1311 if (cdev->private->state != DEV_STATE_ONLINE)
1312 goto out_unlock;
1313 rc = 0;
1314out_unlock:
1315 spin_unlock_irq(cdev->ccwlock);
1316 return 0;
1317}
1318
1319struct ccw_device *
1320ccw_device_probe_console(void)
1321{
1322 struct subchannel *sch;
1323 int ret;
1324
1325 if (xchg(&console_cdev_in_use, 1) != 0)
Peter Oberparleiter600b5d12006-02-01 03:06:35 -08001326 return ERR_PTR(-EBUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 sch = cio_probe_console();
1328 if (IS_ERR(sch)) {
1329 console_cdev_in_use = 0;
1330 return (void *) sch;
1331 }
1332 memset(&console_cdev, 0, sizeof(struct ccw_device));
1333 memset(&console_private, 0, sizeof(struct ccw_device_private));
1334 console_cdev.private = &console_private;
Martin Schwidefskyc1637532006-12-08 15:53:57 +01001335 console_private.cdev = &console_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 ret = ccw_device_console_enable(&console_cdev, sch);
1337 if (ret) {
1338 cio_release_console();
1339 console_cdev_in_use = 0;
1340 return ERR_PTR(ret);
1341 }
1342 console_cdev.online = 1;
1343 return &console_cdev;
1344}
1345#endif
1346
1347/*
1348 * get ccw_device matching the busid, but only if owned by cdrv
1349 */
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001350static int
1351__ccwdev_check_busid(struct device *dev, void *id)
1352{
1353 char *bus_id;
1354
Cornelia Huck12975ae2006-10-11 15:31:47 +02001355 bus_id = id;
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001356
1357 return (strncmp(bus_id, dev->bus_id, BUS_ID_SIZE) == 0);
1358}
1359
1360
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +02001361/**
1362 * get_ccwdev_by_busid() - obtain device from a bus id
1363 * @cdrv: driver the device is owned by
1364 * @bus_id: bus id of the device to be searched
1365 *
1366 * This function searches all devices owned by @cdrv for a device with a bus
1367 * id matching @bus_id.
1368 * Returns:
1369 * If a match is found, its reference count of the found device is increased
1370 * and it is returned; else %NULL is returned.
1371 */
1372struct ccw_device *get_ccwdev_by_busid(struct ccw_driver *cdrv,
1373 const char *bus_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001375 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 struct device_driver *drv;
1377
1378 drv = get_driver(&cdrv->driver);
1379 if (!drv)
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001380 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001382 dev = driver_find_device(drv, NULL, (void *)bus_id,
1383 __ccwdev_check_busid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 put_driver(drv);
1385
Heiko Carstensd2c993d2006-07-12 16:41:55 +02001386 return dev ? to_ccwdev(dev) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
1389/************************** device driver handling ************************/
1390
1391/* This is the implementation of the ccw_driver class. The probe, remove
1392 * and release methods are initially very similar to the device_driver
1393 * implementations, with the difference that they have ccw_device
1394 * arguments.
1395 *
1396 * A ccw driver also contains the information that is needed for
1397 * device matching.
1398 */
1399static int
1400ccw_device_probe (struct device *dev)
1401{
1402 struct ccw_device *cdev = to_ccwdev(dev);
1403 struct ccw_driver *cdrv = to_ccwdrv(dev->driver);
1404 int ret;
1405
1406 cdev->drv = cdrv; /* to let the driver call _set_online */
1407
1408 ret = cdrv->probe ? cdrv->probe(cdev) : -ENODEV;
1409
1410 if (ret) {
Heiko Carstensd2c993d2006-07-12 16:41:55 +02001411 cdev->drv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 return ret;
1413 }
1414
1415 return 0;
1416}
1417
1418static int
1419ccw_device_remove (struct device *dev)
1420{
1421 struct ccw_device *cdev = to_ccwdev(dev);
1422 struct ccw_driver *cdrv = cdev->drv;
1423 int ret;
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 if (cdrv->remove)
1426 cdrv->remove(cdev);
1427 if (cdev->online) {
1428 cdev->online = 0;
1429 spin_lock_irq(cdev->ccwlock);
1430 ret = ccw_device_offline(cdev);
1431 spin_unlock_irq(cdev->ccwlock);
1432 if (ret == 0)
1433 wait_event(cdev->private->wait_q,
1434 dev_fsm_final_state(cdev));
1435 else
1436 //FIXME: we can't fail!
Cornelia Hucke556bbb2007-07-27 12:29:19 +02001437 CIO_MSG_EVENT(2, "ccw_device_offline returned %d, "
1438 "device 0.%x.%04x\n",
1439 ret, cdev->private->dev_id.ssid,
1440 cdev->private->dev_id.devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
1442 ccw_device_set_timeout(cdev, 0);
Heiko Carstensd2c993d2006-07-12 16:41:55 +02001443 cdev->drv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 return 0;
1445}
1446
Cornelia Huck958974f2007-10-12 16:11:21 +02001447static void ccw_device_shutdown(struct device *dev)
1448{
1449 struct ccw_device *cdev;
1450
1451 cdev = to_ccwdev(dev);
1452 if (cdev->drv && cdev->drv->shutdown)
1453 cdev->drv->shutdown(cdev);
Cornelia Huck1842f2b2007-10-12 16:11:22 +02001454 disable_cmf(cdev);
Cornelia Huck958974f2007-10-12 16:11:21 +02001455}
1456
Cornelia Huck8bbace72006-01-11 10:56:22 +01001457struct bus_type ccw_bus_type = {
1458 .name = "ccw",
1459 .match = ccw_bus_match,
1460 .uevent = ccw_uevent,
1461 .probe = ccw_device_probe,
1462 .remove = ccw_device_remove,
Cornelia Huck958974f2007-10-12 16:11:21 +02001463 .shutdown = ccw_device_shutdown,
Cornelia Huck8bbace72006-01-11 10:56:22 +01001464};
1465
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +02001466/**
1467 * ccw_driver_register() - register a ccw driver
1468 * @cdriver: driver to be registered
1469 *
1470 * This function is mainly a wrapper around driver_register().
1471 * Returns:
1472 * %0 on success and a negative error value on failure.
1473 */
1474int ccw_driver_register(struct ccw_driver *cdriver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 struct device_driver *drv = &cdriver->driver;
1477
1478 drv->bus = &ccw_bus_type;
1479 drv->name = cdriver->name;
Cornelia Huck4beee642008-01-26 14:10:47 +01001480 drv->owner = cdriver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 return driver_register(drv);
1483}
1484
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +02001485/**
1486 * ccw_driver_unregister() - deregister a ccw driver
1487 * @cdriver: driver to be deregistered
1488 *
1489 * This function is mainly a wrapper around driver_unregister().
1490 */
1491void ccw_driver_unregister(struct ccw_driver *cdriver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
1493 driver_unregister(&cdriver->driver);
1494}
1495
Cornelia Hucka8237fc2006-01-06 00:19:21 -08001496/* Helper func for qdio. */
1497struct subchannel_id
1498ccw_device_get_subchannel_id(struct ccw_device *cdev)
1499{
1500 struct subchannel *sch;
1501
1502 sch = to_subchannel(cdev->dev.parent);
1503 return sch->schid;
1504}
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506MODULE_LICENSE("GPL");
1507EXPORT_SYMBOL(ccw_device_set_online);
1508EXPORT_SYMBOL(ccw_device_set_offline);
1509EXPORT_SYMBOL(ccw_driver_register);
1510EXPORT_SYMBOL(ccw_driver_unregister);
1511EXPORT_SYMBOL(get_ccwdev_by_busid);
1512EXPORT_SYMBOL(ccw_bus_type);
1513EXPORT_SYMBOL(ccw_device_work);
1514EXPORT_SYMBOL(ccw_device_notify_work);
Cornelia Hucka8237fc2006-01-06 00:19:21 -08001515EXPORT_SYMBOL_GPL(ccw_device_get_subchannel_id);