blob: f8f952d520457232f23f92272f7891bb5a03fecf [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 *
Cornelia Huckc820de32008-07-14 09:58:45 +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 * Martin Schwidefsky (schwidefsky@de.ibm.com)
9 */
Peter Oberparleitera7ae2c022009-12-07 12:51:20 +010010
11#define KMSG_COMPONENT "cio"
12#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/spinlock.h>
17#include <linux/errno.h>
18#include <linux/err.h>
19#include <linux/slab.h>
20#include <linux/list.h>
21#include <linux/device.h>
22#include <linux/workqueue.h>
Peter Oberparleiter90ab1332008-01-26 14:10:52 +010023#include <linux/timer.h>
Peter Oberparleiterde400d62011-10-30 15:16:04 +010024#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <asm/ccwdev.h>
27#include <asm/cio.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080028#include <asm/param.h> /* HZ */
Cornelia Huck1842f2b2007-10-12 16:11:22 +020029#include <asm/cmb.h>
Cornelia Huck3a3fc292008-07-14 09:58:58 +020030#include <asm/isc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +020032#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "cio.h"
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +010034#include "cio_debug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "css.h"
36#include "device.h"
37#include "ioasm.h"
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010038#include "io_sch.h"
Peter Oberparleiterecf5d9e2008-10-10 21:33:06 +020039#include "blacklist.h"
Michael Ernstfd0457a2010-08-09 18:12:50 +020040#include "chsc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Peter Oberparleiter90ab1332008-01-26 14:10:52 +010042static struct timer_list recovery_timer;
Cornelia Huck486d0a02008-02-19 15:29:23 +010043static DEFINE_SPINLOCK(recovery_lock);
Peter Oberparleiter90ab1332008-01-26 14:10:52 +010044static int recovery_phase;
45static const unsigned long recovery_delay[] = { 3, 30, 300 };
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/******************* bus type handling ***********************/
48
49/* The Linux driver model distinguishes between a bus type and
50 * the bus itself. Of course we only have one channel
51 * subsystem driver and one channel system per machine, but
52 * we still use the abstraction. T.R. says it's a good idea. */
53static int
54ccw_bus_match (struct device * dev, struct device_driver * drv)
55{
56 struct ccw_device *cdev = to_ccwdev(dev);
57 struct ccw_driver *cdrv = to_ccwdrv(drv);
58 const struct ccw_device_id *ids = cdrv->ids, *found;
59
60 if (!ids)
61 return 0;
62
63 found = ccw_device_id_match(ids, &cdev->id);
64 if (!found)
65 return 0;
66
67 cdev->id.driver_info = found->driver_info;
68
69 return 1;
70}
71
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +020072/* Store modalias string delimited by prefix/suffix string into buffer with
73 * specified size. Return length of resulting string (excluding trailing '\0')
74 * even if string doesn't fit buffer (snprintf semantics). */
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +020075static int snprint_alias(char *buf, size_t size,
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +020076 struct ccw_device_id *id, const char *suffix)
77{
78 int len;
79
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +020080 len = snprintf(buf, size, "ccw:t%04Xm%02X", id->cu_type, id->cu_model);
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +020081 if (len > size)
82 return len;
83 buf += len;
84 size -= len;
85
86 if (id->dev_type != 0)
87 len += snprintf(buf, size, "dt%04Xdm%02X%s", id->dev_type,
88 id->dev_model, suffix);
89 else
90 len += snprintf(buf, size, "dtdm%s", suffix);
91
92 return len;
93}
94
95/* Set up environment variables for ccw device uevent. Return 0 on success,
96 * non-zero otherwise. */
Kay Sievers7eff2e72007-08-14 15:15:12 +020097static int ccw_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 struct ccw_device *cdev = to_ccwdev(dev);
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200100 struct ccw_device_id *id = &(cdev->id);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +0200101 int ret;
102 char modalias_buf[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200104 /* CU_TYPE= */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200105 ret = add_uevent_var(env, "CU_TYPE=%04X", id->cu_type);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +0200106 if (ret)
107 return ret;
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200108
109 /* CU_MODEL= */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200110 ret = add_uevent_var(env, "CU_MODEL=%02X", id->cu_model);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +0200111 if (ret)
112 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 /* The next two can be zero, that's ok for us */
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200115 /* DEV_TYPE= */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200116 ret = add_uevent_var(env, "DEV_TYPE=%04X", id->dev_type);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +0200117 if (ret)
118 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200120 /* DEV_MODEL= */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200121 ret = add_uevent_var(env, "DEV_MODEL=%02X", id->dev_model);
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +0200122 if (ret)
123 return ret;
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200124
125 /* MODALIAS= */
Cornelia Huckcfbe9bb2007-04-27 16:01:32 +0200126 snprint_alias(modalias_buf, sizeof(modalias_buf), id, "");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200127 ret = add_uevent_var(env, "MODALIAS=%s", modalias_buf);
128 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Sebastian Ottd5ab5272011-03-23 10:16:03 +0100131static struct bus_type ccw_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Cornelia Huck602b20f2008-01-26 14:10:39 +0100133static void io_subchannel_irq(struct subchannel *);
134static int io_subchannel_probe(struct subchannel *);
135static int io_subchannel_remove(struct subchannel *);
Cornelia Huck8bbace72006-01-11 10:56:22 +0100136static void io_subchannel_shutdown(struct subchannel *);
Cornelia Huckc820de32008-07-14 09:58:45 +0200137static int io_subchannel_sch_event(struct subchannel *, int);
Cornelia Huck99611f82008-07-14 09:59:02 +0200138static int io_subchannel_chp_event(struct subchannel *, struct chp_link *,
139 int);
Sebastian Ott8ea7f552009-09-22 22:58:35 +0200140static void recovery_func(unsigned long data);
Sebastian Ott8ea7f552009-09-22 22:58:35 +0200141wait_queue_head_t ccw_device_init_wq;
142atomic_t ccw_device_init_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Cornelia Huckf08adc02008-07-14 09:59:03 +0200144static struct css_device_id io_subchannel_ids[] = {
145 { .match_flags = 0x1, .type = SUBCHANNEL_TYPE_IO, },
146 { /* end of list */ },
147};
148MODULE_DEVICE_TABLE(css, io_subchannel_ids);
149
Cornelia Huck93a27592009-06-16 10:30:23 +0200150static int io_subchannel_prepare(struct subchannel *sch)
151{
152 struct ccw_device *cdev;
153 /*
154 * Don't allow suspend while a ccw device registration
155 * is still outstanding.
156 */
157 cdev = sch_get_cdev(sch);
158 if (cdev && !device_is_registered(&cdev->dev))
159 return -EAGAIN;
160 return 0;
161}
162
Sebastian Ottb4c70722010-02-26 22:37:27 +0100163static int io_subchannel_settle(void)
Sebastian Ott8ea7f552009-09-22 22:58:35 +0200164{
Sebastian Ottb4c70722010-02-26 22:37:27 +0100165 int ret;
166
167 ret = wait_event_interruptible(ccw_device_init_wq,
168 atomic_read(&ccw_device_init_count) == 0);
169 if (ret)
170 return -EINTR;
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100171 flush_workqueue(cio_work_q);
Sebastian Ottb4c70722010-02-26 22:37:27 +0100172 return 0;
Sebastian Ott8ea7f552009-09-22 22:58:35 +0200173}
174
Cornelia Huckf7e5d672007-05-10 15:45:43 +0200175static struct css_driver io_subchannel_driver = {
Sebastian Otte6aed122011-03-15 17:08:30 +0100176 .drv = {
177 .owner = THIS_MODULE,
178 .name = "io_subchannel",
179 },
Cornelia Huckf08adc02008-07-14 09:59:03 +0200180 .subchannel_type = io_subchannel_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 .irq = io_subchannel_irq,
Cornelia Huckc820de32008-07-14 09:58:45 +0200182 .sch_event = io_subchannel_sch_event,
183 .chp_event = io_subchannel_chp_event,
Cornelia Huck8bbace72006-01-11 10:56:22 +0100184 .probe = io_subchannel_probe,
185 .remove = io_subchannel_remove,
186 .shutdown = io_subchannel_shutdown,
Cornelia Huck93a27592009-06-16 10:30:23 +0200187 .prepare = io_subchannel_prepare,
Sebastian Ott8ea7f552009-09-22 22:58:35 +0200188 .settle = io_subchannel_settle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189};
190
Sebastian Ott2f176442009-09-22 22:58:33 +0200191int __init io_subchannel_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 int ret;
194
195 init_waitqueue_head(&ccw_device_init_wq);
196 atomic_set(&ccw_device_init_count, 0);
Peter Oberparleiter90ab1332008-01-26 14:10:52 +0100197 setup_timer(&recovery_timer, recovery_func, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100199 ret = bus_register(&ccw_bus_type);
200 if (ret)
201 return ret;
Cornelia Huck25b7bb52008-01-26 14:10:41 +0100202 ret = css_driver_register(&io_subchannel_driver);
203 if (ret)
Sebastian Ottbe5d3822010-02-26 22:37:24 +0100204 bus_unregister(&ccw_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return ret;
207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210/************************ device handling **************************/
211
212/*
213 * A ccw_device has some interfaces in sysfs in addition to the
214 * standard ones.
215 * The following entries are designed to export the information which
216 * resided in 2.4 in /proc/subchannels. Subchannel and device number
217 * are obvious, so they don't have an entry :)
218 * TODO: Split chpids and pimpampom up? Where is "in use" in the tree?
219 */
220static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400221chpids_show (struct device * dev, struct device_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct subchannel *sch = to_subchannel(dev);
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200224 struct chsc_ssd_info *ssd = &sch->ssd_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 ssize_t ret = 0;
226 int chp;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200227 int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200229 for (chp = 0; chp < 8; chp++) {
230 mask = 0x80 >> chp;
231 if (ssd->path_mask & mask)
232 ret += sprintf(buf + ret, "%02x ", ssd->chpid[chp].id);
233 else
234 ret += sprintf(buf + ret, "00 ");
235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 ret += sprintf (buf+ret, "\n");
237 return min((ssize_t)PAGE_SIZE, ret);
238}
239
240static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400241pimpampom_show (struct device * dev, struct device_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 struct subchannel *sch = to_subchannel(dev);
244 struct pmcw *pmcw = &sch->schib.pmcw;
245
246 return sprintf (buf, "%02x %02x %02x\n",
247 pmcw->pim, pmcw->pam, pmcw->pom);
248}
249
250static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400251devtype_show (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 struct ccw_device *cdev = to_ccwdev(dev);
254 struct ccw_device_id *id = &(cdev->id);
255
256 if (id->dev_type != 0)
257 return sprintf(buf, "%04x/%02x\n",
258 id->dev_type, id->dev_model);
259 else
260 return sprintf(buf, "n/a\n");
261}
262
263static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400264cutype_show (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 struct ccw_device *cdev = to_ccwdev(dev);
267 struct ccw_device_id *id = &(cdev->id);
268
269 return sprintf(buf, "%04x/%02x\n",
270 id->cu_type, id->cu_model);
271}
272
273static ssize_t
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800274modalias_show (struct device *dev, struct device_attribute *attr, char *buf)
275{
276 struct ccw_device *cdev = to_ccwdev(dev);
277 struct ccw_device_id *id = &(cdev->id);
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200278 int len;
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800279
Cornelia Huck086a6c62007-07-17 13:36:08 +0200280 len = snprint_alias(buf, PAGE_SIZE, id, "\n");
Peter Oberparleiterdb0c2d52006-09-20 15:59:49 +0200281
282 return len > PAGE_SIZE ? PAGE_SIZE : len;
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800283}
284
285static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400286online_show (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct ccw_device *cdev = to_ccwdev(dev);
289
290 return sprintf(buf, cdev->online ? "1\n" : "0\n");
291}
292
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100293int ccw_device_is_orphan(struct ccw_device *cdev)
294{
295 return sch_is_pseudo_sch(to_subchannel(cdev->dev.parent));
296}
297
Cornelia Huckef995162007-04-27 16:01:39 +0200298static void ccw_device_unregister(struct ccw_device *cdev)
Cornelia Huck7674da72006-12-08 15:54:21 +0100299{
Sebastian Ott7d253b92009-12-07 12:51:33 +0100300 if (device_is_registered(&cdev->dev)) {
Sebastian Ott24a18722009-12-07 12:51:34 +0100301 /* Undo device_add(). */
Cornelia Huckef995162007-04-27 16:01:39 +0200302 device_del(&cdev->dev);
Sebastian Ott24a18722009-12-07 12:51:34 +0100303 }
304 if (cdev->private->flags.initialized) {
305 cdev->private->flags.initialized = 0;
Sebastian Ott3b554a12009-09-11 10:28:26 +0200306 /* Release reference from device_initialize(). */
307 put_device(&cdev->dev);
308 }
Cornelia Huck7674da72006-12-08 15:54:21 +0100309}
310
Sebastian Ottd40f7b72009-12-07 12:51:41 +0100311static void io_subchannel_quiesce(struct subchannel *);
312
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200313/**
314 * ccw_device_set_offline() - disable a ccw device for I/O
315 * @cdev: target ccw device
316 *
317 * This function calls the driver's set_offline() function for @cdev, if
318 * given, and then disables @cdev.
319 * Returns:
320 * %0 on success and a negative error value on failure.
321 * Context:
322 * enabled, ccw device lock not held
323 */
324int ccw_device_set_offline(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Sebastian Ottd40f7b72009-12-07 12:51:41 +0100326 struct subchannel *sch;
327 int ret, state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 if (!cdev)
330 return -ENODEV;
331 if (!cdev->online || !cdev->drv)
332 return -EINVAL;
333
334 if (cdev->drv->set_offline) {
335 ret = cdev->drv->set_offline(cdev);
336 if (ret != 0)
337 return ret;
338 }
339 cdev->online = 0;
340 spin_lock_irq(cdev->ccwlock);
Sebastian Ottd40f7b72009-12-07 12:51:41 +0100341 sch = to_subchannel(cdev->dev.parent);
Michael Ernst217ee6c2009-09-11 10:28:21 +0200342 /* Wait until a final state or DISCONNECTED is reached */
343 while (!dev_fsm_final_state(cdev) &&
344 cdev->private->state != DEV_STATE_DISCONNECTED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 spin_unlock_irq(cdev->ccwlock);
Michael Ernst217ee6c2009-09-11 10:28:21 +0200346 wait_event(cdev->private->wait_q, (dev_fsm_final_state(cdev) ||
347 cdev->private->state == DEV_STATE_DISCONNECTED));
348 spin_lock_irq(cdev->ccwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Sebastian Ottd40f7b72009-12-07 12:51:41 +0100350 do {
351 ret = ccw_device_offline(cdev);
352 if (!ret)
353 break;
354 CIO_MSG_EVENT(0, "ccw_device_offline returned %d, device "
355 "0.%x.%04x\n", ret, cdev->private->dev_id.ssid,
356 cdev->private->dev_id.devno);
357 if (ret != -EBUSY)
358 goto error;
359 state = cdev->private->state;
360 spin_unlock_irq(cdev->ccwlock);
361 io_subchannel_quiesce(sch);
362 spin_lock_irq(cdev->ccwlock);
363 cdev->private->state = state;
364 } while (ret == -EBUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 spin_unlock_irq(cdev->ccwlock);
Michael Ernst217ee6c2009-09-11 10:28:21 +0200366 wait_event(cdev->private->wait_q, (dev_fsm_final_state(cdev) ||
367 cdev->private->state == DEV_STATE_DISCONNECTED));
Peter Oberparleitera7ae2c022009-12-07 12:51:20 +0100368 /* Inform the user if set offline failed. */
369 if (cdev->private->state == DEV_STATE_BOXED) {
370 pr_warning("%s: The device entered boxed state while "
371 "being set offline\n", dev_name(&cdev->dev));
372 } else if (cdev->private->state == DEV_STATE_NOT_OPER) {
373 pr_warning("%s: The device stopped operating while "
374 "being set offline\n", dev_name(&cdev->dev));
375 }
Michael Ernst217ee6c2009-09-11 10:28:21 +0200376 /* Give up reference from ccw_device_set_online(). */
377 put_device(&cdev->dev);
378 return 0;
379
380error:
Michael Ernst217ee6c2009-09-11 10:28:21 +0200381 cdev->private->state = DEV_STATE_OFFLINE;
382 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
383 spin_unlock_irq(cdev->ccwlock);
384 /* Give up reference from ccw_device_set_online(). */
385 put_device(&cdev->dev);
386 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200389/**
390 * ccw_device_set_online() - enable a ccw device for I/O
391 * @cdev: target ccw device
392 *
393 * This function first enables @cdev and then calls the driver's set_online()
394 * function for @cdev, if given. If set_online() returns an error, @cdev is
395 * disabled again.
396 * Returns:
397 * %0 on success and a negative error value on failure.
398 * Context:
399 * enabled, ccw device lock not held
400 */
401int ccw_device_set_online(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 int ret;
Michael Ernst217ee6c2009-09-11 10:28:21 +0200404 int ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 if (!cdev)
407 return -ENODEV;
408 if (cdev->online || !cdev->drv)
409 return -EINVAL;
Cornelia Huck9cd67422008-12-25 13:39:06 +0100410 /* Hold on to an extra reference while device is online. */
411 if (!get_device(&cdev->dev))
412 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 spin_lock_irq(cdev->ccwlock);
415 ret = ccw_device_online(cdev);
416 spin_unlock_irq(cdev->ccwlock);
417 if (ret == 0)
418 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
419 else {
Michael Ernst139b83d2008-05-07 09:22:54 +0200420 CIO_MSG_EVENT(0, "ccw_device_online returned %d, "
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200421 "device 0.%x.%04x\n",
422 ret, cdev->private->dev_id.ssid,
423 cdev->private->dev_id.devno);
Cornelia Huck9cd67422008-12-25 13:39:06 +0100424 /* Give up online reference since onlining failed. */
425 put_device(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return ret;
427 }
Michael Ernst217ee6c2009-09-11 10:28:21 +0200428 spin_lock_irq(cdev->ccwlock);
429 /* Check if online processing was successful */
430 if ((cdev->private->state != DEV_STATE_ONLINE) &&
431 (cdev->private->state != DEV_STATE_W4SENSE)) {
432 spin_unlock_irq(cdev->ccwlock);
Peter Oberparleitera7ae2c022009-12-07 12:51:20 +0100433 /* Inform the user that set online failed. */
434 if (cdev->private->state == DEV_STATE_BOXED) {
435 pr_warning("%s: Setting the device online failed "
436 "because it is boxed\n",
437 dev_name(&cdev->dev));
438 } else if (cdev->private->state == DEV_STATE_NOT_OPER) {
439 pr_warning("%s: Setting the device online failed "
440 "because it is not operational\n",
441 dev_name(&cdev->dev));
442 }
Cornelia Huck9cd67422008-12-25 13:39:06 +0100443 /* Give up online reference since onlining failed. */
444 put_device(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return -ENODEV;
Cornelia Huck9cd67422008-12-25 13:39:06 +0100446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 spin_unlock_irq(cdev->ccwlock);
Michael Ernst217ee6c2009-09-11 10:28:21 +0200448 if (cdev->drv->set_online)
449 ret = cdev->drv->set_online(cdev);
450 if (ret)
451 goto rollback;
452 cdev->online = 1;
453 return 0;
454
455rollback:
456 spin_lock_irq(cdev->ccwlock);
457 /* Wait until a final state or DISCONNECTED is reached */
458 while (!dev_fsm_final_state(cdev) &&
459 cdev->private->state != DEV_STATE_DISCONNECTED) {
460 spin_unlock_irq(cdev->ccwlock);
461 wait_event(cdev->private->wait_q, (dev_fsm_final_state(cdev) ||
462 cdev->private->state == DEV_STATE_DISCONNECTED));
463 spin_lock_irq(cdev->ccwlock);
464 }
465 ret2 = ccw_device_offline(cdev);
466 if (ret2)
467 goto error;
468 spin_unlock_irq(cdev->ccwlock);
469 wait_event(cdev->private->wait_q, (dev_fsm_final_state(cdev) ||
470 cdev->private->state == DEV_STATE_DISCONNECTED));
Cornelia Huck9cd67422008-12-25 13:39:06 +0100471 /* Give up online reference since onlining failed. */
472 put_device(&cdev->dev);
Michael Ernst217ee6c2009-09-11 10:28:21 +0200473 return ret;
474
475error:
476 CIO_MSG_EVENT(0, "rollback ccw_device_offline returned %d, "
477 "device 0.%x.%04x\n",
478 ret2, cdev->private->dev_id.ssid,
479 cdev->private->dev_id.devno);
480 cdev->private->state = DEV_STATE_OFFLINE;
481 spin_unlock_irq(cdev->ccwlock);
482 /* Give up online reference since onlining failed. */
483 put_device(&cdev->dev);
484 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Sebastian Otte74fe0c2009-03-26 15:24:08 +0100487static int online_store_handle_offline(struct ccw_device *cdev)
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200488{
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100489 if (cdev->private->state == DEV_STATE_DISCONNECTED) {
490 spin_lock_irq(cdev->ccwlock);
491 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG_EVAL);
492 spin_unlock_irq(cdev->ccwlock);
Sebastian Ott7cd40312010-08-09 18:12:52 +0200493 return 0;
494 }
495 if (cdev->drv && cdev->drv->set_offline)
Sebastian Otte74fe0c2009-03-26 15:24:08 +0100496 return ccw_device_set_offline(cdev);
Sebastian Ott7cd40312010-08-09 18:12:52 +0200497 return -EINVAL;
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200498}
499
500static int online_store_recog_and_online(struct ccw_device *cdev)
501{
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200502 /* Do device recognition, if needed. */
Sebastian Ott99f6a5702009-03-31 19:16:07 +0200503 if (cdev->private->state == DEV_STATE_BOXED) {
Peter Oberparleiter1f5bd382009-12-07 12:51:23 +0100504 spin_lock_irq(cdev->ccwlock);
Peter Oberparleiter736b5db2009-12-07 12:51:21 +0100505 ccw_device_recognition(cdev);
Peter Oberparleiter1f5bd382009-12-07 12:51:23 +0100506 spin_unlock_irq(cdev->ccwlock);
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200507 wait_event(cdev->private->wait_q,
508 cdev->private->flags.recog_done);
Sebastian Ott156013f2009-03-31 19:16:03 +0200509 if (cdev->private->state != DEV_STATE_OFFLINE)
510 /* recognition failed */
511 return -EAGAIN;
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200512 }
513 if (cdev->drv && cdev->drv->set_online)
Sebastian Ott7cd40312010-08-09 18:12:52 +0200514 return ccw_device_set_online(cdev);
515 return -EINVAL;
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200516}
Sebastian Ott156013f2009-03-31 19:16:03 +0200517
Michael Ernstc78aa6c2008-07-14 09:59:22 +0200518static int online_store_handle_online(struct ccw_device *cdev, int force)
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200519{
520 int ret;
521
522 ret = online_store_recog_and_online(cdev);
Sebastian Ott156013f2009-03-31 19:16:03 +0200523 if (ret && !force)
Michael Ernstc78aa6c2008-07-14 09:59:22 +0200524 return ret;
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200525 if (force && cdev->private->state == DEV_STATE_BOXED) {
526 ret = ccw_device_stlck(cdev);
Michael Ernstc78aa6c2008-07-14 09:59:22 +0200527 if (ret)
528 return ret;
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200529 if (cdev->id.cu_type == 0)
530 cdev->private->state = DEV_STATE_NOT_OPER;
Sebastian Ott156013f2009-03-31 19:16:03 +0200531 ret = online_store_recog_and_online(cdev);
532 if (ret)
533 return ret;
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200534 }
Michael Ernstc78aa6c2008-07-14 09:59:22 +0200535 return 0;
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200536}
537
538static ssize_t online_store (struct device *dev, struct device_attribute *attr,
539 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 struct ccw_device *cdev = to_ccwdev(dev);
Cornelia Huck2f972202008-04-30 13:38:33 +0200542 int force, ret;
543 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Peter Oberparleitera2fc8482011-04-04 09:43:32 +0200545 /* Prevent conflict between multiple on-/offline processing requests. */
Peter Oberparleiter350e9122009-12-07 12:51:28 +0100546 if (atomic_cmpxchg(&cdev->private->onoff, 0, 1) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return -EAGAIN;
Peter Oberparleitera2fc8482011-04-04 09:43:32 +0200548 /* Prevent conflict between internal I/Os and on-/offline processing. */
549 if (!dev_fsm_final_state(cdev) &&
550 cdev->private->state != DEV_STATE_DISCONNECTED) {
551 ret = -EAGAIN;
552 goto out_onoff;
553 }
554 /* Prevent conflict between pending work and on-/offline processing.*/
555 if (work_pending(&cdev->private->todo_work)) {
556 ret = -EAGAIN;
557 goto out_onoff;
558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Sebastian Ott3bda0582011-03-23 10:16:02 +0100560 if (cdev->drv && !try_module_get(cdev->drv->driver.owner)) {
Peter Oberparleitera2fc8482011-04-04 09:43:32 +0200561 ret = -EINVAL;
562 goto out_onoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564 if (!strncmp(buf, "force\n", count)) {
565 force = 1;
566 i = 1;
Cornelia Huck2f972202008-04-30 13:38:33 +0200567 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 } else {
569 force = 0;
Cornelia Huck2f972202008-04-30 13:38:33 +0200570 ret = strict_strtoul(buf, 16, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Cornelia Huck2f972202008-04-30 13:38:33 +0200572 if (ret)
573 goto out;
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200574 switch (i) {
575 case 0:
Sebastian Otte74fe0c2009-03-26 15:24:08 +0100576 ret = online_store_handle_offline(cdev);
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200577 break;
578 case 1:
Michael Ernstc78aa6c2008-07-14 09:59:22 +0200579 ret = online_store_handle_online(cdev, force);
Cornelia Huckf5ba6c82007-04-27 16:01:30 +0200580 break;
581 default:
Cornelia Huck2f972202008-04-30 13:38:33 +0200582 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Cornelia Huck2f972202008-04-30 13:38:33 +0200584out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (cdev->drv)
Sebastian Ott3bda0582011-03-23 10:16:02 +0100586 module_put(cdev->drv->driver.owner);
Peter Oberparleitera2fc8482011-04-04 09:43:32 +0200587out_onoff:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 atomic_set(&cdev->private->onoff, 0);
Sebastian Otte74fe0c2009-03-26 15:24:08 +0100589 return (ret < 0) ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
592static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400593available_show (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 struct ccw_device *cdev = to_ccwdev(dev);
596 struct subchannel *sch;
597
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100598 if (ccw_device_is_orphan(cdev))
599 return sprintf(buf, "no device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 switch (cdev->private->state) {
601 case DEV_STATE_BOXED:
602 return sprintf(buf, "boxed\n");
603 case DEV_STATE_DISCONNECTED:
604 case DEV_STATE_DISCONNECTED_SENSE_ID:
605 case DEV_STATE_NOT_OPER:
606 sch = to_subchannel(dev->parent);
607 if (!sch->lpm)
608 return sprintf(buf, "no path\n");
609 else
610 return sprintf(buf, "no device\n");
611 default:
612 /* All other states considered fine. */
613 return sprintf(buf, "good\n");
614 }
615}
616
Michael Ernstfd0457a2010-08-09 18:12:50 +0200617static ssize_t
618initiate_logging(struct device *dev, struct device_attribute *attr,
619 const char *buf, size_t count)
620{
621 struct subchannel *sch = to_subchannel(dev);
622 int rc;
623
624 rc = chsc_siosl(sch->schid);
625 if (rc < 0) {
626 pr_warning("Logging for subchannel 0.%x.%04x failed with "
627 "errno=%d\n",
628 sch->schid.ssid, sch->schid.sch_no, rc);
629 return rc;
630 }
631 pr_notice("Logging for subchannel 0.%x.%04x was triggered\n",
632 sch->schid.ssid, sch->schid.sch_no);
633 return count;
634}
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636static DEVICE_ATTR(chpids, 0444, chpids_show, NULL);
637static DEVICE_ATTR(pimpampom, 0444, pimpampom_show, NULL);
638static DEVICE_ATTR(devtype, 0444, devtype_show, NULL);
639static DEVICE_ATTR(cutype, 0444, cutype_show, NULL);
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800640static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641static DEVICE_ATTR(online, 0644, online_show, online_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642static DEVICE_ATTR(availability, 0444, available_show, NULL);
Michael Ernstfd0457a2010-08-09 18:12:50 +0200643static DEVICE_ATTR(logging, 0200, NULL, initiate_logging);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200645static struct attribute *io_subchannel_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 &dev_attr_chpids.attr,
647 &dev_attr_pimpampom.attr,
Michael Ernstfd0457a2010-08-09 18:12:50 +0200648 &dev_attr_logging.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 NULL,
650};
651
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200652static struct attribute_group io_subchannel_attr_group = {
653 .attrs = io_subchannel_attrs,
Cornelia Huck529192f2006-12-08 15:55:57 +0100654};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656static struct attribute * ccwdev_attrs[] = {
657 &dev_attr_devtype.attr,
658 &dev_attr_cutype.attr,
Bastian Blankf1fc78a2005-10-30 15:00:12 -0800659 &dev_attr_modalias.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 &dev_attr_online.attr,
661 &dev_attr_cmb_enable.attr,
662 &dev_attr_availability.attr,
663 NULL,
664};
665
666static struct attribute_group ccwdev_attr_group = {
667 .attrs = ccwdev_attrs,
668};
669
David Brownella4dbd672009-06-24 10:06:31 -0700670static const struct attribute_group *ccwdev_attr_groups[] = {
Cornelia Huckef995162007-04-27 16:01:39 +0200671 &ccwdev_attr_group,
672 NULL,
673};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675/* this is a simple abstraction for device_register that sets the
676 * correct bus type and adds the bus specific files */
Cornelia Huck3c9da7b2006-10-27 12:39:33 +0200677static int ccw_device_register(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
679 struct device *dev = &cdev->dev;
680 int ret;
681
682 dev->bus = &ccw_bus_type;
Sebastian Ott3ac276f2009-09-11 10:28:27 +0200683 ret = dev_set_name(&cdev->dev, "0.%x.%04x", cdev->private->dev_id.ssid,
684 cdev->private->dev_id.devno);
685 if (ret)
686 return ret;
Sebastian Ott7d253b92009-12-07 12:51:33 +0100687 return device_add(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100690static int match_dev_id(struct device *dev, void *data)
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700691{
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100692 struct ccw_device *cdev = to_ccwdev(dev);
693 struct ccw_dev_id *dev_id = data;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700694
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100695 return ccw_dev_id_is_equal(&cdev->private->dev_id, dev_id);
696}
697
Sebastian Ottb7a610f2012-05-15 17:52:07 +0200698/**
699 * get_ccwdev_by_dev_id() - obtain device from a ccw device id
700 * @dev_id: id of the device to be searched
701 *
702 * This function searches all devices attached to the ccw bus for a device
703 * matching @dev_id.
704 * Returns:
705 * If a device is found its reference count is increased and returned;
706 * else %NULL is returned.
707 */
708struct ccw_device *get_ccwdev_by_dev_id(struct ccw_dev_id *dev_id)
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100709{
710 struct device *dev;
711
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100712 dev = bus_find_device(&ccw_bus_type, NULL, dev_id, match_dev_id);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100713
714 return dev ? to_ccwdev(dev) : NULL;
715}
Sebastian Ottb7a610f2012-05-15 17:52:07 +0200716EXPORT_SYMBOL_GPL(get_ccwdev_by_dev_id);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100717
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100718static void ccw_device_do_unbind_bind(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Cornelia Huckeb32ae82009-03-26 15:24:05 +0100720 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Sebastian Ott7d253b92009-12-07 12:51:33 +0100722 if (device_is_registered(&cdev->dev)) {
Cornelia Huckeb32ae82009-03-26 15:24:05 +0100723 device_release_driver(&cdev->dev);
724 ret = device_attach(&cdev->dev);
725 WARN_ON(ret == -ENODEV);
726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
729static void
730ccw_device_release(struct device *dev)
731{
732 struct ccw_device *cdev;
733
734 cdev = to_ccwdev(dev);
Cornelia Huck6eff2082008-12-25 13:39:07 +0100735 /* Release reference of parent subchannel. */
736 put_device(cdev->dev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 kfree(cdev->private);
738 kfree(cdev);
739}
740
Cornelia Huck7674da72006-12-08 15:54:21 +0100741static struct ccw_device * io_subchannel_allocate_dev(struct subchannel *sch)
742{
743 struct ccw_device *cdev;
744
745 cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
746 if (cdev) {
747 cdev->private = kzalloc(sizeof(struct ccw_device_private),
748 GFP_KERNEL | GFP_DMA);
749 if (cdev->private)
750 return cdev;
751 }
752 kfree(cdev);
753 return ERR_PTR(-ENOMEM);
754}
755
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100756static void ccw_device_todo(struct work_struct *work);
757
Cornelia Huck7674da72006-12-08 15:54:21 +0100758static int io_subchannel_initialize_dev(struct subchannel *sch,
759 struct ccw_device *cdev)
760{
761 cdev->private->cdev = cdev;
Peter Oberparleiterde400d62011-10-30 15:16:04 +0100762 cdev->private->int_class = IOINT_CIO;
Cornelia Huck7674da72006-12-08 15:54:21 +0100763 atomic_set(&cdev->private->onoff, 0);
764 cdev->dev.parent = &sch->dev;
765 cdev->dev.release = ccw_device_release;
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100766 INIT_WORK(&cdev->private->todo_work, ccw_device_todo);
Cornelia Huckef995162007-04-27 16:01:39 +0200767 cdev->dev.groups = ccwdev_attr_groups;
Cornelia Huck7674da72006-12-08 15:54:21 +0100768 /* Do first half of device_register. */
769 device_initialize(&cdev->dev);
770 if (!get_device(&sch->dev)) {
Cornelia Huck283fdd02008-12-25 13:39:10 +0100771 /* Release reference from device_initialize(). */
772 put_device(&cdev->dev);
Cornelia Huck7674da72006-12-08 15:54:21 +0100773 return -ENODEV;
774 }
Sebastian Ott24a18722009-12-07 12:51:34 +0100775 cdev->private->flags.initialized = 1;
Cornelia Huck7674da72006-12-08 15:54:21 +0100776 return 0;
777}
778
779static struct ccw_device * io_subchannel_create_ccwdev(struct subchannel *sch)
780{
781 struct ccw_device *cdev;
782 int ret;
783
784 cdev = io_subchannel_allocate_dev(sch);
785 if (!IS_ERR(cdev)) {
786 ret = io_subchannel_initialize_dev(sch, cdev);
Sebastian Ott06739a82009-08-23 18:09:04 +0200787 if (ret)
Cornelia Huck7674da72006-12-08 15:54:21 +0100788 cdev = ERR_PTR(ret);
Cornelia Huck7674da72006-12-08 15:54:21 +0100789 }
790 return cdev;
791}
792
Peter Oberparleiter736b5db2009-12-07 12:51:21 +0100793static void io_subchannel_recog(struct ccw_device *, struct subchannel *);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100794
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100795static void sch_create_and_recog_new_device(struct subchannel *sch)
796{
797 struct ccw_device *cdev;
798
799 /* Need to allocate a new ccw device. */
800 cdev = io_subchannel_create_ccwdev(sch);
801 if (IS_ERR(cdev)) {
802 /* OK, we did everything we could... */
803 css_sch_device_unregister(sch);
804 return;
805 }
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100806 /* Start recognition for the new ccw device. */
Peter Oberparleiter736b5db2009-12-07 12:51:21 +0100807 io_subchannel_recog(cdev, sch);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100808}
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810/*
811 * Register recognized device.
812 */
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100813static void io_subchannel_register(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 struct subchannel *sch;
Sebastian Otta2901562010-03-08 12:25:17 +0100816 int ret, adjust_init_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 unsigned long flags;
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 sch = to_subchannel(cdev->dev.parent);
Cornelia Huck5fb6b852008-12-25 13:39:08 +0100820 /*
821 * Check if subchannel is still registered. It may have become
822 * unregistered if a machine check hit us after finishing
823 * device recognition but before the register work could be
824 * queued.
825 */
826 if (!device_is_registered(&sch->dev))
827 goto out_err;
Cornelia Huck82b7ac02007-04-27 16:01:36 +0200828 css_update_ssd_info(sch);
Cornelia Huck47af5512006-12-04 15:41:07 +0100829 /*
830 * io_subchannel_register() will also be called after device
831 * recognition has been done for a boxed device (which will already
832 * be registered). We need to reprobe since we may now have sense id
833 * information.
834 */
Cornelia Huckd6a30762008-12-25 13:39:11 +0100835 if (device_is_registered(&cdev->dev)) {
Cornelia Huck47af5512006-12-04 15:41:07 +0100836 if (!cdev->drv) {
837 ret = device_reprobe(&cdev->dev);
838 if (ret)
839 /* We can't do much here. */
Michael Ernst139b83d2008-05-07 09:22:54 +0200840 CIO_MSG_EVENT(0, "device_reprobe() returned"
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200841 " %d for 0.%x.%04x\n", ret,
842 cdev->private->dev_id.ssid,
843 cdev->private->dev_id.devno);
Cornelia Huck47af5512006-12-04 15:41:07 +0100844 }
Sebastian Otta2901562010-03-08 12:25:17 +0100845 adjust_init_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 goto out;
847 }
Cornelia Huckfa1a8c22007-04-26 00:12:03 -0700848 /*
849 * Now we know this subchannel will stay, we can throw
850 * our delayed uevent.
851 */
Ming Leif67f1292009-03-01 21:10:49 +0800852 dev_set_uevent_suppress(&sch->dev, 0);
Cornelia Huckfa1a8c22007-04-26 00:12:03 -0700853 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /* make it known to the system */
855 ret = ccw_device_register(cdev);
856 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200857 CIO_MSG_EVENT(0, "Could not register ccw dev 0.%x.%04x: %d\n",
858 cdev->private->dev_id.ssid,
859 cdev->private->dev_id.devno, ret);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100860 spin_lock_irqsave(sch->lock, flags);
Cornelia Huckdb6a6422008-01-26 14:10:46 +0100861 sch_set_cdev(sch, NULL);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100862 spin_unlock_irqrestore(sch->lock, flags);
Cornelia Huck6eff2082008-12-25 13:39:07 +0100863 /* Release initial device reference. */
864 put_device(&cdev->dev);
Cornelia Huck5fb6b852008-12-25 13:39:08 +0100865 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867out:
868 cdev->private->flags.recog_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 wake_up(&cdev->private->wait_q);
Cornelia Huck5fb6b852008-12-25 13:39:08 +0100870out_err:
Sebastian Otta2901562010-03-08 12:25:17 +0100871 if (adjust_init_count && atomic_dec_and_test(&ccw_device_init_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 wake_up(&ccw_device_init_wq);
873}
874
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100875static void ccw_device_call_sch_unregister(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 struct subchannel *sch;
878
Peter Oberparleiter46fbe4e2008-10-10 21:33:05 +0200879 /* Get subchannel reference for local processing. */
880 if (!get_device(cdev->dev.parent))
881 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 sch = to_subchannel(cdev->dev.parent);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200883 css_sch_device_unregister(sch);
Peter Oberparleiter46fbe4e2008-10-10 21:33:05 +0200884 /* Release subchannel reference for local processing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 put_device(&sch->dev);
886}
887
888/*
889 * subchannel recognition done. Called from the state machine.
890 */
891void
892io_subchannel_recog_done(struct ccw_device *cdev)
893{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (css_init_done == 0) {
895 cdev->private->flags.recog_done = 1;
896 return;
897 }
898 switch (cdev->private->state) {
Sebastian Ott47593bf2009-03-31 19:16:05 +0200899 case DEV_STATE_BOXED:
900 /* Device did not respond in time. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 case DEV_STATE_NOT_OPER:
902 cdev->private->flags.recog_done = 1;
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100903 /* Remove device found not operational. */
904 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (atomic_dec_and_test(&ccw_device_init_count))
906 wake_up(&ccw_device_init_wq);
907 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 case DEV_STATE_OFFLINE:
909 /*
910 * We can't register the device in interrupt context so
911 * we schedule a work item.
912 */
Peter Oberparleiter37de53b2009-12-07 12:51:19 +0100913 ccw_device_sched_todo(cdev, CDEV_TODO_REGISTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 break;
915 }
916}
917
Peter Oberparleiter736b5db2009-12-07 12:51:21 +0100918static void io_subchannel_recog(struct ccw_device *cdev, struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 struct ccw_device_private *priv;
921
Cornelia Huck2ec22982006-12-08 15:54:26 +0100922 cdev->ccwlock = sch->lock;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /* Init private data. */
925 priv = cdev->private;
Cornelia Huck78964262006-10-11 15:31:38 +0200926 priv->dev_id.devno = sch->schib.pmcw.dev;
927 priv->dev_id.ssid = sch->schid.ssid;
928 priv->schid = sch->schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 priv->state = DEV_STATE_NOT_OPER;
930 INIT_LIST_HEAD(&priv->cmb_list);
931 init_waitqueue_head(&priv->wait_q);
932 init_timer(&priv->timer);
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 /* Increase counter of devices currently in recognition. */
935 atomic_inc(&ccw_device_init_count);
936
937 /* Start async. device sensing. */
Cornelia Huck2ec22982006-12-08 15:54:26 +0100938 spin_lock_irq(sch->lock);
Peter Oberparleiter60e4dac2009-12-07 12:51:16 +0100939 sch_set_cdev(sch, cdev);
Peter Oberparleiter736b5db2009-12-07 12:51:21 +0100940 ccw_device_recognition(cdev);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100941 spin_unlock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100944static int ccw_device_move_to_sch(struct ccw_device *cdev,
945 struct subchannel *sch)
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100946{
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100947 struct subchannel *old_sch;
Sebastian Ott0c609fc2009-12-07 12:51:37 +0100948 int rc, old_enabled = 0;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100949
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100950 old_sch = to_subchannel(cdev->dev.parent);
951 /* Obtain child reference for new parent. */
Cornelia Huck6eff2082008-12-25 13:39:07 +0100952 if (!get_device(&sch->dev))
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100953 return -ENODEV;
Sebastian Ott0c609fc2009-12-07 12:51:37 +0100954
955 if (!sch_is_pseudo_sch(old_sch)) {
956 spin_lock_irq(old_sch->lock);
957 old_enabled = old_sch->schib.pmcw.ena;
958 rc = 0;
959 if (old_enabled)
960 rc = cio_disable_subchannel(old_sch);
961 spin_unlock_irq(old_sch->lock);
962 if (rc == -EBUSY) {
963 /* Release child reference for new parent. */
964 put_device(&sch->dev);
965 return rc;
966 }
967 }
968
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100969 mutex_lock(&sch->reg_mutex);
Cornelia Huckffa6a702009-03-04 12:44:00 +0100970 rc = device_move(&cdev->dev, &sch->dev, DPM_ORDER_PARENT_BEFORE_DEV);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100971 mutex_unlock(&sch->reg_mutex);
972 if (rc) {
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100973 CIO_MSG_EVENT(0, "device_move(0.%x.%04x,0.%x.%04x)=%d\n",
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100974 cdev->private->dev_id.ssid,
975 cdev->private->dev_id.devno, sch->schid.ssid,
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100976 sch->schib.pmcw.dev, rc);
Sebastian Ott0c609fc2009-12-07 12:51:37 +0100977 if (old_enabled) {
978 /* Try to reenable the old subchannel. */
979 spin_lock_irq(old_sch->lock);
980 cio_enable_subchannel(old_sch, (u32)(addr_t)old_sch);
981 spin_unlock_irq(old_sch->lock);
982 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100983 /* Release child reference for new parent. */
Cornelia Huck6eff2082008-12-25 13:39:07 +0100984 put_device(&sch->dev);
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100985 return rc;
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100986 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100987 /* Clean up old subchannel. */
988 if (!sch_is_pseudo_sch(old_sch)) {
989 spin_lock_irq(old_sch->lock);
990 sch_set_cdev(old_sch, NULL);
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100991 spin_unlock_irq(old_sch->lock);
992 css_schedule_eval(old_sch->schid);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100993 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +0100994 /* Release child reference for old parent. */
995 put_device(&old_sch->dev);
996 /* Initialize new subchannel. */
997 spin_lock_irq(sch->lock);
998 cdev->private->schid = sch->schid;
999 cdev->ccwlock = sch->lock;
1000 if (!sch_is_pseudo_sch(sch))
1001 sch_set_cdev(sch, cdev);
1002 spin_unlock_irq(sch->lock);
1003 if (!sch_is_pseudo_sch(sch))
1004 css_update_ssd_info(sch);
1005 return 0;
1006}
1007
1008static int ccw_device_move_to_orph(struct ccw_device *cdev)
1009{
1010 struct subchannel *sch = to_subchannel(cdev->dev.parent);
1011 struct channel_subsystem *css = to_css(sch->dev.parent);
1012
1013 return ccw_device_move_to_sch(cdev, css->pseudo_subchannel);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +01001014}
1015
Cornelia Huck602b20f2008-01-26 14:10:39 +01001016static void io_subchannel_irq(struct subchannel *sch)
1017{
1018 struct ccw_device *cdev;
1019
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001020 cdev = sch_get_cdev(sch);
Cornelia Huck602b20f2008-01-26 14:10:39 +01001021
Sebastian Ottefd986d2009-09-11 10:28:18 +02001022 CIO_TRACE_EVENT(6, "IRQ");
1023 CIO_TRACE_EVENT(6, dev_name(&sch->dev));
Cornelia Huck602b20f2008-01-26 14:10:39 +01001024 if (cdev)
1025 dev_fsm_event(cdev, DEV_EVENT_INTERRUPT);
Peter Oberparleiterde400d62011-10-30 15:16:04 +01001026 else
1027 kstat_cpu(smp_processor_id()).irqs[IOINT_CIO]++;
Cornelia Huck602b20f2008-01-26 14:10:39 +01001028}
1029
Sebastian Ott13952ec2008-12-25 13:39:13 +01001030void io_subchannel_init_config(struct subchannel *sch)
1031{
1032 memset(&sch->config, 0, sizeof(sch->config));
1033 sch->config.csense = 1;
Sebastian Ott13952ec2008-12-25 13:39:13 +01001034}
1035
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +02001036static void io_subchannel_init_fields(struct subchannel *sch)
1037{
1038 if (cio_is_console(sch->schid))
1039 sch->opm = 0xff;
1040 else
1041 sch->opm = chp_get_sch_opm(sch);
1042 sch->lpm = sch->schib.pmcw.pam & sch->opm;
Cornelia Huck3a3fc292008-07-14 09:58:58 +02001043 sch->isc = cio_is_console(sch->schid) ? CONSOLE_ISC : IO_SCH_ISC;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +02001044
1045 CIO_MSG_EVENT(6, "Detected device %04x on subchannel 0.%x.%04X"
1046 " - PIM = %02X, PAM = %02X, POM = %02X\n",
1047 sch->schib.pmcw.dev, sch->schid.ssid,
1048 sch->schid.sch_no, sch->schib.pmcw.pim,
1049 sch->schib.pmcw.pam, sch->schib.pmcw.pom);
Sebastian Ott13952ec2008-12-25 13:39:13 +01001050
1051 io_subchannel_init_config(sch);
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +02001052}
1053
Cornelia Huck90ed2b62008-12-25 13:39:09 +01001054/*
1055 * Note: We always return 0 so that we bind to the device even on error.
1056 * This is needed so that our remove function is called on unregister.
1057 */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +02001058static int io_subchannel_probe(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Sebastian Ottf92519e2011-03-15 17:08:27 +01001060 struct io_subchannel_private *io_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct ccw_device *cdev;
1062 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Peter Oberparleiter6d7c5af2009-10-14 12:43:50 +02001064 if (cio_is_console(sch->schid)) {
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001065 rc = sysfs_create_group(&sch->dev.kobj,
1066 &io_subchannel_attr_group);
1067 if (rc)
1068 CIO_MSG_EVENT(0, "Failed to create io subchannel "
1069 "attributes for subchannel "
1070 "0.%x.%04x (rc=%d)\n",
1071 sch->schid.ssid, sch->schid.sch_no, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 /*
Peter Oberparleiter6d7c5af2009-10-14 12:43:50 +02001073 * The console subchannel already has an associated ccw_device.
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001074 * Throw the delayed uevent for the subchannel, register
Peter Oberparleiter6d7c5af2009-10-14 12:43:50 +02001075 * the ccw_device and exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 */
Ming Leif67f1292009-03-01 21:10:49 +08001077 dev_set_uevent_suppress(&sch->dev, 0);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001078 kobject_uevent(&sch->dev.kobj, KOBJ_ADD);
Peter Oberparleiter6d7c5af2009-10-14 12:43:50 +02001079 cdev = sch_get_cdev(sch);
Cornelia Hucke1031782007-10-12 16:11:23 +02001080 cdev->dev.groups = ccwdev_attr_groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 device_initialize(&cdev->dev);
Sebastian Ott24a18722009-12-07 12:51:34 +01001082 cdev->private->flags.initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 ccw_device_register(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 /*
1085 * Check if the device is already online. If it is
Cornelia Huck9cd67422008-12-25 13:39:06 +01001086 * the reference count needs to be corrected since we
1087 * didn't obtain a reference in ccw_device_set_online.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 */
1089 if (cdev->private->state != DEV_STATE_NOT_OPER &&
1090 cdev->private->state != DEV_STATE_OFFLINE &&
1091 cdev->private->state != DEV_STATE_BOXED)
1092 get_device(&cdev->dev);
1093 return 0;
1094 }
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +02001095 io_subchannel_init_fields(sch);
Sebastian Ottf444cc02008-12-25 13:39:14 +01001096 rc = cio_commit_config(sch);
1097 if (rc)
1098 goto out_schedule;
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001099 rc = sysfs_create_group(&sch->dev.kobj,
1100 &io_subchannel_attr_group);
1101 if (rc)
Cornelia Huck90ed2b62008-12-25 13:39:09 +01001102 goto out_schedule;
Cornelia Huckcd6b4f22008-01-26 14:10:43 +01001103 /* Allocate I/O subchannel private data. */
Sebastian Ottf92519e2011-03-15 17:08:27 +01001104 io_priv = kzalloc(sizeof(*io_priv), GFP_KERNEL | GFP_DMA);
1105 if (!io_priv)
Peter Oberparleiter48e4c382009-12-07 12:51:15 +01001106 goto out_schedule;
Sebastian Ottf92519e2011-03-15 17:08:27 +01001107
1108 set_io_private(sch, io_priv);
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001109 css_schedule_eval(sch->schid);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001110 return 0;
Peter Oberparleiter48e4c382009-12-07 12:51:15 +01001111
Cornelia Huck90ed2b62008-12-25 13:39:09 +01001112out_schedule:
Peter Oberparleiter390935a2009-12-07 12:51:18 +01001113 spin_lock_irq(sch->lock);
1114 css_sched_sch_todo(sch, SCH_TODO_UNREG);
1115 spin_unlock_irq(sch->lock);
Cornelia Huck90ed2b62008-12-25 13:39:09 +01001116 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119static int
Cornelia Huck8bbace72006-01-11 10:56:22 +01001120io_subchannel_remove (struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Sebastian Ottf92519e2011-03-15 17:08:27 +01001122 struct io_subchannel_private *io_priv = to_io_private(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 struct ccw_device *cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001125 cdev = sch_get_cdev(sch);
1126 if (!cdev)
Peter Oberparleiter48e4c382009-12-07 12:51:15 +01001127 goto out_free;
Sebastian Ott6e9a0f62009-12-07 12:51:38 +01001128 io_subchannel_quiesce(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 /* Set ccw device to not operational and drop reference. */
Sebastian Ott7a8ad102009-12-07 12:51:39 +01001130 spin_lock_irq(cdev->ccwlock);
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001131 sch_set_cdev(sch, NULL);
Sebastian Ottf92519e2011-03-15 17:08:27 +01001132 set_io_private(sch, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 cdev->private->state = DEV_STATE_NOT_OPER;
Sebastian Ott7a8ad102009-12-07 12:51:39 +01001134 spin_unlock_irq(cdev->ccwlock);
Cornelia Huckef995162007-04-27 16:01:39 +02001135 ccw_device_unregister(cdev);
Peter Oberparleiter48e4c382009-12-07 12:51:15 +01001136out_free:
Sebastian Ottf92519e2011-03-15 17:08:27 +01001137 kfree(io_priv);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02001138 sysfs_remove_group(&sch->dev.kobj, &io_subchannel_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return 0;
1140}
1141
Cornelia Huck602b20f2008-01-26 14:10:39 +01001142static void io_subchannel_verify(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
1144 struct ccw_device *cdev;
1145
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001146 cdev = sch_get_cdev(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (cdev)
1148 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
1149}
1150
Cornelia Huckc820de32008-07-14 09:58:45 +02001151static void io_subchannel_terminate_path(struct subchannel *sch, u8 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
1153 struct ccw_device *cdev;
1154
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001155 cdev = sch_get_cdev(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (!cdev)
1157 return;
Peter Oberparleiter4257aae2009-12-07 12:51:29 +01001158 if (cio_update_schib(sch))
1159 goto err;
1160 /* Check for I/O on path. */
1161 if (scsw_actl(&sch->schib.scsw) == 0 || sch->schib.pmcw.lpum != mask)
1162 goto out;
1163 if (cdev->private->state == DEV_STATE_ONLINE) {
1164 ccw_device_kill_io(cdev);
1165 goto out;
1166 }
1167 if (cio_clear(sch))
1168 goto err;
1169out:
1170 /* Trigger path verification. */
1171 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
1172 return;
Cornelia Huckc820de32008-07-14 09:58:45 +02001173
Peter Oberparleiter4257aae2009-12-07 12:51:29 +01001174err:
1175 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
Cornelia Huckc820de32008-07-14 09:58:45 +02001176}
1177
Cornelia Huck99611f82008-07-14 09:59:02 +02001178static int io_subchannel_chp_event(struct subchannel *sch,
1179 struct chp_link *link, int event)
Cornelia Huckc820de32008-07-14 09:58:45 +02001180{
Sebastian Ott585b9542010-10-25 16:10:34 +02001181 struct ccw_device *cdev = sch_get_cdev(sch);
Cornelia Huckc820de32008-07-14 09:58:45 +02001182 int mask;
Cornelia Huckc820de32008-07-14 09:58:45 +02001183
Cornelia Huck99611f82008-07-14 09:59:02 +02001184 mask = chp_ssd_get_mask(&sch->ssd_info, link);
Cornelia Huckc820de32008-07-14 09:58:45 +02001185 if (!mask)
1186 return 0;
1187 switch (event) {
1188 case CHP_VARY_OFF:
1189 sch->opm &= ~mask;
1190 sch->lpm &= ~mask;
Sebastian Ott585b9542010-10-25 16:10:34 +02001191 if (cdev)
1192 cdev->private->path_gone_mask |= mask;
Cornelia Huckc820de32008-07-14 09:58:45 +02001193 io_subchannel_terminate_path(sch, mask);
1194 break;
1195 case CHP_VARY_ON:
1196 sch->opm |= mask;
1197 sch->lpm |= mask;
Sebastian Ott585b9542010-10-25 16:10:34 +02001198 if (cdev)
1199 cdev->private->path_new_mask |= mask;
Cornelia Huckc820de32008-07-14 09:58:45 +02001200 io_subchannel_verify(sch);
1201 break;
1202 case CHP_OFFLINE:
Sebastian Ottcdb912a2008-12-25 13:39:12 +01001203 if (cio_update_schib(sch))
Cornelia Huckc820de32008-07-14 09:58:45 +02001204 return -ENODEV;
Sebastian Ott585b9542010-10-25 16:10:34 +02001205 if (cdev)
1206 cdev->private->path_gone_mask |= mask;
Cornelia Huckc820de32008-07-14 09:58:45 +02001207 io_subchannel_terminate_path(sch, mask);
1208 break;
1209 case CHP_ONLINE:
Sebastian Ottcdb912a2008-12-25 13:39:12 +01001210 if (cio_update_schib(sch))
1211 return -ENODEV;
Cornelia Huckc820de32008-07-14 09:58:45 +02001212 sch->lpm |= mask & sch->opm;
Sebastian Ott585b9542010-10-25 16:10:34 +02001213 if (cdev)
1214 cdev->private->path_new_mask |= mask;
Cornelia Huckc820de32008-07-14 09:58:45 +02001215 io_subchannel_verify(sch);
1216 break;
1217 }
1218 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Sebastian Ott6e9a0f62009-12-07 12:51:38 +01001221static void io_subchannel_quiesce(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct ccw_device *cdev;
1224 int ret;
1225
Sebastian Ott56e6b792009-12-07 12:51:35 +01001226 spin_lock_irq(sch->lock);
Cornelia Huckdb6a6422008-01-26 14:10:46 +01001227 cdev = sch_get_cdev(sch);
Cornelia Hucka8237fc2006-01-06 00:19:21 -08001228 if (cio_is_console(sch->schid))
Sebastian Ott56e6b792009-12-07 12:51:35 +01001229 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (!sch->schib.pmcw.ena)
Sebastian Ott56e6b792009-12-07 12:51:35 +01001231 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 ret = cio_disable_subchannel(sch);
1233 if (ret != -EBUSY)
Sebastian Ott56e6b792009-12-07 12:51:35 +01001234 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (cdev->handler)
Sebastian Ott56e6b792009-12-07 12:51:35 +01001236 cdev->handler(cdev, cdev->private->intparm, ERR_PTR(-EIO));
1237 while (ret == -EBUSY) {
1238 cdev->private->state = DEV_STATE_QUIESCE;
Peter Oberparleiter376ae472010-10-25 16:10:44 +02001239 cdev->private->iretry = 255;
Sebastian Ott56e6b792009-12-07 12:51:35 +01001240 ret = ccw_device_cancel_halt_clear(cdev);
1241 if (ret == -EBUSY) {
1242 ccw_device_set_timeout(cdev, HZ/10);
1243 spin_unlock_irq(sch->lock);
1244 wait_event(cdev->private->wait_q,
1245 cdev->private->state != DEV_STATE_QUIESCE);
1246 spin_lock_irq(sch->lock);
1247 }
1248 ret = cio_disable_subchannel(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
Sebastian Ott56e6b792009-12-07 12:51:35 +01001250out_unlock:
1251 spin_unlock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
Sebastian Ott6e9a0f62009-12-07 12:51:38 +01001254static void io_subchannel_shutdown(struct subchannel *sch)
1255{
1256 io_subchannel_quiesce(sch);
1257}
1258
Cornelia Huckc820de32008-07-14 09:58:45 +02001259static int device_is_disconnected(struct ccw_device *cdev)
1260{
1261 if (!cdev)
1262 return 0;
1263 return (cdev->private->state == DEV_STATE_DISCONNECTED ||
1264 cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID);
1265}
1266
1267static int recovery_check(struct device *dev, void *data)
1268{
1269 struct ccw_device *cdev = to_ccwdev(dev);
1270 int *redo = data;
1271
1272 spin_lock_irq(cdev->ccwlock);
1273 switch (cdev->private->state) {
1274 case DEV_STATE_DISCONNECTED:
1275 CIO_MSG_EVENT(3, "recovery: trigger 0.%x.%04x\n",
1276 cdev->private->dev_id.ssid,
1277 cdev->private->dev_id.devno);
1278 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
1279 *redo = 1;
1280 break;
1281 case DEV_STATE_DISCONNECTED_SENSE_ID:
1282 *redo = 1;
1283 break;
1284 }
1285 spin_unlock_irq(cdev->ccwlock);
1286
1287 return 0;
1288}
1289
1290static void recovery_work_func(struct work_struct *unused)
1291{
1292 int redo = 0;
1293
1294 bus_for_each_dev(&ccw_bus_type, NULL, &redo, recovery_check);
1295 if (redo) {
1296 spin_lock_irq(&recovery_lock);
1297 if (!timer_pending(&recovery_timer)) {
1298 if (recovery_phase < ARRAY_SIZE(recovery_delay) - 1)
1299 recovery_phase++;
1300 mod_timer(&recovery_timer, jiffies +
1301 recovery_delay[recovery_phase] * HZ);
1302 }
1303 spin_unlock_irq(&recovery_lock);
1304 } else
1305 CIO_MSG_EVENT(4, "recovery: end\n");
1306}
1307
1308static DECLARE_WORK(recovery_work, recovery_work_func);
1309
1310static void recovery_func(unsigned long data)
1311{
1312 /*
1313 * We can't do our recovery in softirq context and it's not
1314 * performance critical, so we schedule it.
1315 */
1316 schedule_work(&recovery_work);
1317}
1318
1319static void ccw_device_schedule_recovery(void)
1320{
1321 unsigned long flags;
1322
1323 CIO_MSG_EVENT(4, "recovery: schedule\n");
1324 spin_lock_irqsave(&recovery_lock, flags);
1325 if (!timer_pending(&recovery_timer) || (recovery_phase != 0)) {
1326 recovery_phase = 0;
1327 mod_timer(&recovery_timer, jiffies + recovery_delay[0] * HZ);
1328 }
1329 spin_unlock_irqrestore(&recovery_lock, flags);
1330}
1331
Peter Oberparleiterecf5d9e2008-10-10 21:33:06 +02001332static int purge_fn(struct device *dev, void *data)
1333{
1334 struct ccw_device *cdev = to_ccwdev(dev);
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01001335 struct ccw_dev_id *id = &cdev->private->dev_id;
Peter Oberparleiterecf5d9e2008-10-10 21:33:06 +02001336
1337 spin_lock_irq(cdev->ccwlock);
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01001338 if (is_blacklisted(id->ssid, id->devno) &&
Peter Oberparleitera2fc8482011-04-04 09:43:32 +02001339 (cdev->private->state == DEV_STATE_OFFLINE) &&
1340 (atomic_cmpxchg(&cdev->private->onoff, 0, 1) == 0)) {
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01001341 CIO_MSG_EVENT(3, "ccw: purging 0.%x.%04x\n", id->ssid,
1342 id->devno);
1343 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG);
Peter Oberparleitera2fc8482011-04-04 09:43:32 +02001344 atomic_set(&cdev->private->onoff, 0);
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01001345 }
Peter Oberparleiterecf5d9e2008-10-10 21:33:06 +02001346 spin_unlock_irq(cdev->ccwlock);
Peter Oberparleiterecf5d9e2008-10-10 21:33:06 +02001347 /* Abort loop in case of pending signal. */
1348 if (signal_pending(current))
1349 return -EINTR;
1350
1351 return 0;
1352}
1353
1354/**
1355 * ccw_purge_blacklisted - purge unused, blacklisted devices
1356 *
1357 * Unregister all ccw devices that are offline and on the blacklist.
1358 */
1359int ccw_purge_blacklisted(void)
1360{
1361 CIO_MSG_EVENT(2, "ccw: purging blacklisted devices\n");
1362 bus_for_each_dev(&ccw_bus_type, NULL, NULL, purge_fn);
1363 return 0;
1364}
1365
Peter Oberparleiter6afcc772009-10-06 10:34:02 +02001366void ccw_device_set_disconnected(struct ccw_device *cdev)
Cornelia Huckc820de32008-07-14 09:58:45 +02001367{
1368 if (!cdev)
1369 return;
1370 ccw_device_set_timeout(cdev, 0);
1371 cdev->private->flags.fake_irb = 0;
1372 cdev->private->state = DEV_STATE_DISCONNECTED;
1373 if (cdev->online)
1374 ccw_device_schedule_recovery();
1375}
1376
Peter Oberparleiter91c36912008-08-21 19:46:39 +02001377void ccw_device_set_notoper(struct ccw_device *cdev)
1378{
1379 struct subchannel *sch = to_subchannel(cdev->dev.parent);
1380
1381 CIO_TRACE_EVENT(2, "notoper");
Cornelia Huckb9d3aed2008-10-10 21:33:11 +02001382 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Peter Oberparleiter91c36912008-08-21 19:46:39 +02001383 ccw_device_set_timeout(cdev, 0);
1384 cio_disable_subchannel(sch);
1385 cdev->private->state = DEV_STATE_NOT_OPER;
1386}
1387
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001388enum io_sch_action {
1389 IO_SCH_UNREG,
1390 IO_SCH_ORPH_UNREG,
1391 IO_SCH_ATTACH,
1392 IO_SCH_UNREG_ATTACH,
1393 IO_SCH_ORPH_ATTACH,
1394 IO_SCH_REPROBE,
1395 IO_SCH_VERIFY,
1396 IO_SCH_DISC,
1397 IO_SCH_NOP,
1398};
1399
1400static enum io_sch_action sch_get_action(struct subchannel *sch)
Cornelia Huckc820de32008-07-14 09:58:45 +02001401{
Cornelia Huckc820de32008-07-14 09:58:45 +02001402 struct ccw_device *cdev;
1403
Cornelia Huckc820de32008-07-14 09:58:45 +02001404 cdev = sch_get_cdev(sch);
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001405 if (cio_update_schib(sch)) {
1406 /* Not operational. */
1407 if (!cdev)
1408 return IO_SCH_UNREG;
Sebastian Ott76e6fb42010-02-26 22:37:28 +01001409 if (ccw_device_notify(cdev, CIO_GONE) != NOTIFY_OK)
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001410 return IO_SCH_UNREG;
1411 return IO_SCH_ORPH_UNREG;
Cornelia Huckc820de32008-07-14 09:58:45 +02001412 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001413 /* Operational. */
1414 if (!cdev)
1415 return IO_SCH_ATTACH;
1416 if (sch->schib.pmcw.dev != cdev->private->dev_id.devno) {
Sebastian Ott76e6fb42010-02-26 22:37:28 +01001417 if (ccw_device_notify(cdev, CIO_GONE) != NOTIFY_OK)
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001418 return IO_SCH_UNREG_ATTACH;
1419 return IO_SCH_ORPH_ATTACH;
Cornelia Huckc820de32008-07-14 09:58:45 +02001420 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001421 if ((sch->schib.pmcw.pam & sch->opm) == 0) {
Sebastian Ott76e6fb42010-02-26 22:37:28 +01001422 if (ccw_device_notify(cdev, CIO_NO_PATH) != NOTIFY_OK)
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001423 return IO_SCH_UNREG;
1424 return IO_SCH_DISC;
Cornelia Huckc820de32008-07-14 09:58:45 +02001425 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001426 if (device_is_disconnected(cdev))
1427 return IO_SCH_REPROBE;
1428 if (cdev->online)
1429 return IO_SCH_VERIFY;
1430 return IO_SCH_NOP;
1431}
1432
1433/**
1434 * io_subchannel_sch_event - process subchannel event
1435 * @sch: subchannel
1436 * @process: non-zero if function is called in process context
1437 *
1438 * An unspecified event occurred for this subchannel. Adjust data according
1439 * to the current operational state of the subchannel and device. Return
1440 * zero when the event has been handled sufficiently or -EAGAIN when this
1441 * function should be called again in process context.
1442 */
1443static int io_subchannel_sch_event(struct subchannel *sch, int process)
1444{
1445 unsigned long flags;
1446 struct ccw_device *cdev;
1447 struct ccw_dev_id dev_id;
1448 enum io_sch_action action;
1449 int rc = -EAGAIN;
1450
1451 spin_lock_irqsave(sch->lock, flags);
1452 if (!device_is_registered(&sch->dev))
1453 goto out_unlock;
Peter Oberparleiter390935a2009-12-07 12:51:18 +01001454 if (work_pending(&sch->todo_work))
1455 goto out_unlock;
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01001456 cdev = sch_get_cdev(sch);
1457 if (cdev && work_pending(&cdev->private->todo_work))
1458 goto out_unlock;
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001459 action = sch_get_action(sch);
1460 CIO_MSG_EVENT(2, "event: sch 0.%x.%04x, process=%d, action=%d\n",
1461 sch->schid.ssid, sch->schid.sch_no, process,
1462 action);
1463 /* Perform immediate actions while holding the lock. */
Cornelia Huckc820de32008-07-14 09:58:45 +02001464 switch (action) {
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001465 case IO_SCH_REPROBE:
1466 /* Trigger device recognition. */
Cornelia Huckc820de32008-07-14 09:58:45 +02001467 ccw_device_trigger_reprobe(cdev);
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001468 rc = 0;
1469 goto out_unlock;
1470 case IO_SCH_VERIFY:
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001471 if (cdev->private->flags.resuming == 1) {
1472 if (cio_enable_subchannel(sch, (u32)(addr_t)sch)) {
1473 ccw_device_set_notoper(cdev);
1474 break;
1475 }
1476 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001477 /* Trigger path verification. */
1478 io_subchannel_verify(sch);
1479 rc = 0;
1480 goto out_unlock;
1481 case IO_SCH_DISC:
1482 ccw_device_set_disconnected(cdev);
1483 rc = 0;
1484 goto out_unlock;
1485 case IO_SCH_ORPH_UNREG:
1486 case IO_SCH_ORPH_ATTACH:
Peter Oberparleiter6afcc772009-10-06 10:34:02 +02001487 ccw_device_set_disconnected(cdev);
Peter Oberparleiter91c36912008-08-21 19:46:39 +02001488 break;
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001489 case IO_SCH_UNREG_ATTACH:
1490 case IO_SCH_UNREG:
Sebastian Ott16d2ce22010-11-10 10:05:53 +01001491 if (!cdev)
1492 break;
1493 if (cdev->private->state == DEV_STATE_SENSE_ID) {
1494 /*
1495 * Note: delayed work triggered by this event
1496 * and repeated calls to sch_event are synchronized
1497 * by the above check for work_pending(cdev).
1498 */
1499 dev_fsm_event(cdev, DEV_EVENT_NOTOPER);
1500 } else
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001501 ccw_device_set_notoper(cdev);
1502 break;
1503 case IO_SCH_NOP:
1504 rc = 0;
1505 goto out_unlock;
Cornelia Huckc820de32008-07-14 09:58:45 +02001506 default:
1507 break;
1508 }
1509 spin_unlock_irqrestore(sch->lock, flags);
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001510 /* All other actions require process context. */
1511 if (!process)
1512 goto out;
1513 /* Handle attached ccw device. */
1514 switch (action) {
1515 case IO_SCH_ORPH_UNREG:
1516 case IO_SCH_ORPH_ATTACH:
1517 /* Move ccw device to orphanage. */
1518 rc = ccw_device_move_to_orph(cdev);
1519 if (rc)
1520 goto out;
1521 break;
1522 case IO_SCH_UNREG_ATTACH:
Sebastian Ott74b61272010-10-25 16:10:26 +02001523 if (cdev->private->flags.resuming) {
1524 /* Device will be handled later. */
1525 rc = 0;
1526 goto out;
1527 }
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001528 /* Unregister ccw device. */
Sebastian Ott74b61272010-10-25 16:10:26 +02001529 ccw_device_unregister(cdev);
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001530 break;
1531 default:
1532 break;
1533 }
1534 /* Handle subchannel. */
1535 switch (action) {
1536 case IO_SCH_ORPH_UNREG:
1537 case IO_SCH_UNREG:
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001538 if (!cdev || !cdev->private->flags.resuming)
1539 css_sch_device_unregister(sch);
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001540 break;
1541 case IO_SCH_ORPH_ATTACH:
1542 case IO_SCH_UNREG_ATTACH:
1543 case IO_SCH_ATTACH:
1544 dev_id.ssid = sch->schid.ssid;
1545 dev_id.devno = sch->schib.pmcw.dev;
1546 cdev = get_ccwdev_by_dev_id(&dev_id);
1547 if (!cdev) {
1548 sch_create_and_recog_new_device(sch);
1549 break;
1550 }
1551 rc = ccw_device_move_to_sch(cdev, sch);
1552 if (rc) {
1553 /* Release reference from get_ccwdev_by_dev_id() */
1554 put_device(&cdev->dev);
1555 goto out;
1556 }
1557 spin_lock_irqsave(sch->lock, flags);
1558 ccw_device_trigger_reprobe(cdev);
1559 spin_unlock_irqrestore(sch->lock, flags);
1560 /* Release reference from get_ccwdev_by_dev_id() */
1561 put_device(&cdev->dev);
1562 break;
1563 default:
1564 break;
1565 }
1566 return 0;
Cornelia Huckc820de32008-07-14 09:58:45 +02001567
Peter Oberparleiter5d6e6b62009-12-07 12:51:17 +01001568out_unlock:
1569 spin_unlock_irqrestore(sch->lock, flags);
1570out:
1571 return rc;
Cornelia Huckc820de32008-07-14 09:58:45 +02001572}
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574#ifdef CONFIG_CCW_CONSOLE
1575static struct ccw_device console_cdev;
1576static struct ccw_device_private console_private;
1577static int console_cdev_in_use;
1578
Cornelia Huck2ec22982006-12-08 15:54:26 +01001579static DEFINE_SPINLOCK(ccw_console_lock);
1580
1581spinlock_t * cio_get_console_lock(void)
1582{
1583 return &ccw_console_lock;
1584}
1585
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +02001586static int ccw_device_console_enable(struct ccw_device *cdev,
1587 struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Sebastian Ottf92519e2011-03-15 17:08:27 +01001589 struct io_subchannel_private *io_priv = cio_get_console_priv();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 int rc;
1591
Cornelia Huckcd6b4f22008-01-26 14:10:43 +01001592 /* Attach subchannel private data. */
Sebastian Ottf92519e2011-03-15 17:08:27 +01001593 memset(io_priv, 0, sizeof(*io_priv));
1594 set_io_private(sch, io_priv);
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +02001595 io_subchannel_init_fields(sch);
Sebastian Ottf444cc02008-12-25 13:39:14 +01001596 rc = cio_commit_config(sch);
1597 if (rc)
1598 return rc;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +02001599 sch->driver = &io_subchannel_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 /* Initialize the ccw_device structure. */
Heiko Carstens292888c2006-08-30 14:33:35 +02001601 cdev->dev.parent= &sch->dev;
Sebastian Ottffa8d2a2009-12-18 17:43:15 +01001602 sch_set_cdev(sch, cdev);
Peter Oberparleiter736b5db2009-12-07 12:51:21 +01001603 io_subchannel_recog(cdev, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 /* Now wait for the async. recognition to come to an end. */
1605 spin_lock_irq(cdev->ccwlock);
1606 while (!dev_fsm_final_state(cdev))
1607 wait_cons_dev();
1608 rc = -EIO;
1609 if (cdev->private->state != DEV_STATE_OFFLINE)
1610 goto out_unlock;
1611 ccw_device_online(cdev);
1612 while (!dev_fsm_final_state(cdev))
1613 wait_cons_dev();
1614 if (cdev->private->state != DEV_STATE_ONLINE)
1615 goto out_unlock;
1616 rc = 0;
1617out_unlock:
1618 spin_unlock_irq(cdev->ccwlock);
Peter Oberparleiter736b5db2009-12-07 12:51:21 +01001619 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
1622struct ccw_device *
1623ccw_device_probe_console(void)
1624{
1625 struct subchannel *sch;
1626 int ret;
1627
1628 if (xchg(&console_cdev_in_use, 1) != 0)
Peter Oberparleiter600b5d12006-02-01 03:06:35 -08001629 return ERR_PTR(-EBUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 sch = cio_probe_console();
1631 if (IS_ERR(sch)) {
1632 console_cdev_in_use = 0;
1633 return (void *) sch;
1634 }
1635 memset(&console_cdev, 0, sizeof(struct ccw_device));
1636 memset(&console_private, 0, sizeof(struct ccw_device_private));
1637 console_cdev.private = &console_private;
Martin Schwidefskyc1637532006-12-08 15:53:57 +01001638 console_private.cdev = &console_cdev;
Peter Oberparleiterde400d62011-10-30 15:16:04 +01001639 console_private.int_class = IOINT_CIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 ret = ccw_device_console_enable(&console_cdev, sch);
1641 if (ret) {
1642 cio_release_console();
1643 console_cdev_in_use = 0;
1644 return ERR_PTR(ret);
1645 }
1646 console_cdev.online = 1;
1647 return &console_cdev;
1648}
Cornelia Huck1f4e7ed2008-10-10 21:33:14 +02001649
Martin Schwidefsky66648452009-06-16 10:30:28 +02001650static int ccw_device_pm_restore(struct device *dev);
1651
1652int ccw_device_force_console(void)
1653{
1654 if (!console_cdev_in_use)
1655 return -ENODEV;
1656 return ccw_device_pm_restore(&console_cdev.dev);
1657}
1658EXPORT_SYMBOL_GPL(ccw_device_force_console);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659#endif
1660
1661/*
1662 * get ccw_device matching the busid, but only if owned by cdrv
1663 */
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001664static int
1665__ccwdev_check_busid(struct device *dev, void *id)
1666{
1667 char *bus_id;
1668
Cornelia Huck12975ae2006-10-11 15:31:47 +02001669 bus_id = id;
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001670
Kay Sievers98df67b2008-12-25 13:38:55 +01001671 return (strcmp(bus_id, dev_name(dev)) == 0);
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001672}
1673
1674
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +02001675/**
1676 * get_ccwdev_by_busid() - obtain device from a bus id
1677 * @cdrv: driver the device is owned by
1678 * @bus_id: bus id of the device to be searched
1679 *
1680 * This function searches all devices owned by @cdrv for a device with a bus
1681 * id matching @bus_id.
1682 * Returns:
1683 * If a match is found, its reference count of the found device is increased
1684 * and it is returned; else %NULL is returned.
1685 */
1686struct ccw_device *get_ccwdev_by_busid(struct ccw_driver *cdrv,
1687 const char *bus_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001689 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Sebastian Ott9f30ea92012-01-24 13:35:02 -05001691 dev = driver_find_device(&cdrv->driver, NULL, (void *)bus_id,
Cornelia Huckb0744bd2005-06-25 14:55:27 -07001692 __ccwdev_check_busid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Heiko Carstensd2c993d2006-07-12 16:41:55 +02001694 return dev ? to_ccwdev(dev) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
1697/************************** device driver handling ************************/
1698
1699/* This is the implementation of the ccw_driver class. The probe, remove
1700 * and release methods are initially very similar to the device_driver
1701 * implementations, with the difference that they have ccw_device
1702 * arguments.
1703 *
1704 * A ccw driver also contains the information that is needed for
1705 * device matching.
1706 */
1707static int
1708ccw_device_probe (struct device *dev)
1709{
1710 struct ccw_device *cdev = to_ccwdev(dev);
1711 struct ccw_driver *cdrv = to_ccwdrv(dev->driver);
1712 int ret;
1713
1714 cdev->drv = cdrv; /* to let the driver call _set_online */
Peter Oberparleiterde400d62011-10-30 15:16:04 +01001715 /* Note: we interpret class 0 in this context as an uninitialized
1716 * field since it translates to a non-I/O interrupt class. */
1717 if (cdrv->int_class != 0)
1718 cdev->private->int_class = cdrv->int_class;
1719 else
1720 cdev->private->int_class = IOINT_CIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 ret = cdrv->probe ? cdrv->probe(cdev) : -ENODEV;
1723
1724 if (ret) {
Heiko Carstensd2c993d2006-07-12 16:41:55 +02001725 cdev->drv = NULL;
Peter Oberparleiterde400d62011-10-30 15:16:04 +01001726 cdev->private->int_class = IOINT_CIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 return ret;
1728 }
1729
1730 return 0;
1731}
1732
1733static int
1734ccw_device_remove (struct device *dev)
1735{
1736 struct ccw_device *cdev = to_ccwdev(dev);
1737 struct ccw_driver *cdrv = cdev->drv;
1738 int ret;
1739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (cdrv->remove)
1741 cdrv->remove(cdev);
1742 if (cdev->online) {
1743 cdev->online = 0;
1744 spin_lock_irq(cdev->ccwlock);
1745 ret = ccw_device_offline(cdev);
1746 spin_unlock_irq(cdev->ccwlock);
1747 if (ret == 0)
1748 wait_event(cdev->private->wait_q,
1749 dev_fsm_final_state(cdev));
1750 else
Michael Ernst139b83d2008-05-07 09:22:54 +02001751 CIO_MSG_EVENT(0, "ccw_device_offline returned %d, "
Cornelia Hucke556bbb2007-07-27 12:29:19 +02001752 "device 0.%x.%04x\n",
1753 ret, cdev->private->dev_id.ssid,
1754 cdev->private->dev_id.devno);
Cornelia Huck9cd67422008-12-25 13:39:06 +01001755 /* Give up reference obtained in ccw_device_set_online(). */
1756 put_device(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 }
1758 ccw_device_set_timeout(cdev, 0);
Heiko Carstensd2c993d2006-07-12 16:41:55 +02001759 cdev->drv = NULL;
Peter Oberparleiterde400d62011-10-30 15:16:04 +01001760 cdev->private->int_class = IOINT_CIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 return 0;
1762}
1763
Cornelia Huck958974fb2007-10-12 16:11:21 +02001764static void ccw_device_shutdown(struct device *dev)
1765{
1766 struct ccw_device *cdev;
1767
1768 cdev = to_ccwdev(dev);
1769 if (cdev->drv && cdev->drv->shutdown)
1770 cdev->drv->shutdown(cdev);
Cornelia Huck1842f2b2007-10-12 16:11:22 +02001771 disable_cmf(cdev);
Cornelia Huck958974fb2007-10-12 16:11:21 +02001772}
1773
Sebastian Ott823d4942009-06-16 10:30:20 +02001774static int ccw_device_pm_prepare(struct device *dev)
1775{
1776 struct ccw_device *cdev = to_ccwdev(dev);
1777
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01001778 if (work_pending(&cdev->private->todo_work))
Sebastian Ott823d4942009-06-16 10:30:20 +02001779 return -EAGAIN;
1780 /* Fail while device is being set online/offline. */
1781 if (atomic_read(&cdev->private->onoff))
1782 return -EAGAIN;
1783
1784 if (cdev->online && cdev->drv && cdev->drv->prepare)
1785 return cdev->drv->prepare(cdev);
1786
1787 return 0;
1788}
1789
1790static void ccw_device_pm_complete(struct device *dev)
1791{
1792 struct ccw_device *cdev = to_ccwdev(dev);
1793
1794 if (cdev->online && cdev->drv && cdev->drv->complete)
1795 cdev->drv->complete(cdev);
1796}
1797
1798static int ccw_device_pm_freeze(struct device *dev)
1799{
1800 struct ccw_device *cdev = to_ccwdev(dev);
1801 struct subchannel *sch = to_subchannel(cdev->dev.parent);
1802 int ret, cm_enabled;
1803
1804 /* Fail suspend while device is in transistional state. */
1805 if (!dev_fsm_final_state(cdev))
1806 return -EAGAIN;
1807 if (!cdev->online)
1808 return 0;
1809 if (cdev->drv && cdev->drv->freeze) {
1810 ret = cdev->drv->freeze(cdev);
1811 if (ret)
1812 return ret;
1813 }
1814
1815 spin_lock_irq(sch->lock);
1816 cm_enabled = cdev->private->cmb != NULL;
1817 spin_unlock_irq(sch->lock);
1818 if (cm_enabled) {
1819 /* Don't have the css write on memory. */
1820 ret = ccw_set_cmf(cdev, 0);
1821 if (ret)
1822 return ret;
1823 }
1824 /* From here on, disallow device driver I/O. */
1825 spin_lock_irq(sch->lock);
1826 ret = cio_disable_subchannel(sch);
1827 spin_unlock_irq(sch->lock);
1828
1829 return ret;
1830}
1831
1832static int ccw_device_pm_thaw(struct device *dev)
1833{
1834 struct ccw_device *cdev = to_ccwdev(dev);
1835 struct subchannel *sch = to_subchannel(cdev->dev.parent);
1836 int ret, cm_enabled;
1837
1838 if (!cdev->online)
1839 return 0;
1840
1841 spin_lock_irq(sch->lock);
1842 /* Allow device driver I/O again. */
1843 ret = cio_enable_subchannel(sch, (u32)(addr_t)sch);
1844 cm_enabled = cdev->private->cmb != NULL;
1845 spin_unlock_irq(sch->lock);
1846 if (ret)
1847 return ret;
1848
1849 if (cm_enabled) {
1850 ret = ccw_set_cmf(cdev, 1);
1851 if (ret)
1852 return ret;
1853 }
1854
1855 if (cdev->drv && cdev->drv->thaw)
1856 ret = cdev->drv->thaw(cdev);
1857
1858 return ret;
1859}
1860
1861static void __ccw_device_pm_restore(struct ccw_device *cdev)
1862{
1863 struct subchannel *sch = to_subchannel(cdev->dev.parent);
Sebastian Ott823d4942009-06-16 10:30:20 +02001864
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001865 spin_lock_irq(sch->lock);
1866 if (cio_is_console(sch->schid)) {
1867 cio_enable_subchannel(sch, (u32)(addr_t)sch);
1868 goto out_unlock;
1869 }
Sebastian Ott823d4942009-06-16 10:30:20 +02001870 /*
1871 * While we were sleeping, devices may have gone or become
1872 * available again. Kick re-detection.
1873 */
Sebastian Ott823d4942009-06-16 10:30:20 +02001874 cdev->private->flags.resuming = 1;
Sebastian Ottb17295e2011-01-12 09:55:10 +01001875 cdev->private->path_new_mask = LPM_ANYPATH;
Sebastian Ott817e5002011-12-01 13:32:19 +01001876 css_sched_sch_todo(sch, SCH_TODO_EVAL);
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001877 spin_unlock_irq(sch->lock);
Sebastian Ott817e5002011-12-01 13:32:19 +01001878 css_wait_for_slow_path();
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001879
1880 /* cdev may have been moved to a different subchannel. */
1881 sch = to_subchannel(cdev->dev.parent);
1882 spin_lock_irq(sch->lock);
1883 if (cdev->private->state != DEV_STATE_ONLINE &&
1884 cdev->private->state != DEV_STATE_OFFLINE)
1885 goto out_unlock;
1886
Peter Oberparleiter736b5db2009-12-07 12:51:21 +01001887 ccw_device_recognition(cdev);
Sebastian Ott823d4942009-06-16 10:30:20 +02001888 spin_unlock_irq(sch->lock);
Sebastian Ott823d4942009-06-16 10:30:20 +02001889 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev) ||
1890 cdev->private->state == DEV_STATE_DISCONNECTED);
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001891 spin_lock_irq(sch->lock);
1892
1893out_unlock:
Sebastian Ott823d4942009-06-16 10:30:20 +02001894 cdev->private->flags.resuming = 0;
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001895 spin_unlock_irq(sch->lock);
Sebastian Ott823d4942009-06-16 10:30:20 +02001896}
1897
1898static int resume_handle_boxed(struct ccw_device *cdev)
1899{
1900 cdev->private->state = DEV_STATE_BOXED;
Sebastian Ott76e6fb42010-02-26 22:37:28 +01001901 if (ccw_device_notify(cdev, CIO_BOXED) == NOTIFY_OK)
Sebastian Ott823d4942009-06-16 10:30:20 +02001902 return 0;
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01001903 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG);
Sebastian Ott823d4942009-06-16 10:30:20 +02001904 return -ENODEV;
1905}
1906
1907static int resume_handle_disc(struct ccw_device *cdev)
1908{
1909 cdev->private->state = DEV_STATE_DISCONNECTED;
Sebastian Ott76e6fb42010-02-26 22:37:28 +01001910 if (ccw_device_notify(cdev, CIO_GONE) == NOTIFY_OK)
Sebastian Ott823d4942009-06-16 10:30:20 +02001911 return 0;
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01001912 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG);
Sebastian Ott823d4942009-06-16 10:30:20 +02001913 return -ENODEV;
1914}
1915
1916static int ccw_device_pm_restore(struct device *dev)
1917{
1918 struct ccw_device *cdev = to_ccwdev(dev);
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001919 struct subchannel *sch;
1920 int ret = 0;
Sebastian Ott823d4942009-06-16 10:30:20 +02001921
1922 __ccw_device_pm_restore(cdev);
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001923 sch = to_subchannel(cdev->dev.parent);
Sebastian Ott823d4942009-06-16 10:30:20 +02001924 spin_lock_irq(sch->lock);
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001925 if (cio_is_console(sch->schid))
Sebastian Ott823d4942009-06-16 10:30:20 +02001926 goto out_restore;
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001927
Sebastian Ott823d4942009-06-16 10:30:20 +02001928 /* check recognition results */
1929 switch (cdev->private->state) {
1930 case DEV_STATE_OFFLINE:
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001931 case DEV_STATE_ONLINE:
1932 cdev->private->flags.donotify = 0;
Sebastian Ott823d4942009-06-16 10:30:20 +02001933 break;
1934 case DEV_STATE_BOXED:
1935 ret = resume_handle_boxed(cdev);
Sebastian Ott823d4942009-06-16 10:30:20 +02001936 if (ret)
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001937 goto out_unlock;
Sebastian Ott823d4942009-06-16 10:30:20 +02001938 goto out_restore;
Sebastian Ott823d4942009-06-16 10:30:20 +02001939 default:
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001940 ret = resume_handle_disc(cdev);
1941 if (ret)
1942 goto out_unlock;
1943 goto out_restore;
Sebastian Ott823d4942009-06-16 10:30:20 +02001944 }
1945 /* check if the device type has changed */
1946 if (!ccw_device_test_sense_data(cdev)) {
1947 ccw_device_update_sense_data(cdev);
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01001948 ccw_device_sched_todo(cdev, CDEV_TODO_REBIND);
Sebastian Ott823d4942009-06-16 10:30:20 +02001949 ret = -ENODEV;
1950 goto out_unlock;
1951 }
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001952 if (!cdev->online)
1953 goto out_unlock;
1954
1955 if (ccw_device_online(cdev)) {
1956 ret = resume_handle_disc(cdev);
1957 if (ret)
1958 goto out_unlock;
1959 goto out_restore;
1960 }
1961 spin_unlock_irq(sch->lock);
1962 wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev));
1963 spin_lock_irq(sch->lock);
1964
1965 if (ccw_device_notify(cdev, CIO_OPER) == NOTIFY_BAD) {
1966 ccw_device_sched_todo(cdev, CDEV_TODO_UNREG);
1967 ret = -ENODEV;
Sebastian Ott823d4942009-06-16 10:30:20 +02001968 goto out_unlock;
1969 }
Sebastian Ott823d4942009-06-16 10:30:20 +02001970
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001971 /* reenable cmf, if needed */
1972 if (cdev->private->cmb) {
1973 spin_unlock_irq(sch->lock);
Sebastian Ott823d4942009-06-16 10:30:20 +02001974 ret = ccw_set_cmf(cdev, 1);
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001975 spin_lock_irq(sch->lock);
Sebastian Ott823d4942009-06-16 10:30:20 +02001976 if (ret) {
Sebastian Ottf0148242009-09-11 10:28:23 +02001977 CIO_MSG_EVENT(2, "resume: cdev 0.%x.%04x: cmf failed "
1978 "(rc=%d)\n", cdev->private->dev_id.ssid,
1979 cdev->private->dev_id.devno, ret);
Sebastian Ott823d4942009-06-16 10:30:20 +02001980 ret = 0;
1981 }
1982 }
1983
1984out_restore:
Sebastian Ott0d01bb82010-02-26 22:37:29 +01001985 spin_unlock_irq(sch->lock);
Sebastian Ott823d4942009-06-16 10:30:20 +02001986 if (cdev->online && cdev->drv && cdev->drv->restore)
1987 ret = cdev->drv->restore(cdev);
Sebastian Ott823d4942009-06-16 10:30:20 +02001988 return ret;
1989
Sebastian Ott823d4942009-06-16 10:30:20 +02001990out_unlock:
1991 spin_unlock_irq(sch->lock);
1992 return ret;
1993}
1994
Alexey Dobriyan47145212009-12-14 18:00:08 -08001995static const struct dev_pm_ops ccw_pm_ops = {
Sebastian Ott823d4942009-06-16 10:30:20 +02001996 .prepare = ccw_device_pm_prepare,
1997 .complete = ccw_device_pm_complete,
1998 .freeze = ccw_device_pm_freeze,
1999 .thaw = ccw_device_pm_thaw,
2000 .restore = ccw_device_pm_restore,
2001};
2002
Sebastian Ottd5ab5272011-03-23 10:16:03 +01002003static struct bus_type ccw_bus_type = {
Cornelia Huck8bbace72006-01-11 10:56:22 +01002004 .name = "ccw",
2005 .match = ccw_bus_match,
2006 .uevent = ccw_uevent,
2007 .probe = ccw_device_probe,
2008 .remove = ccw_device_remove,
Cornelia Huck958974fb2007-10-12 16:11:21 +02002009 .shutdown = ccw_device_shutdown,
Sebastian Ott823d4942009-06-16 10:30:20 +02002010 .pm = &ccw_pm_ops,
Cornelia Huck8bbace72006-01-11 10:56:22 +01002011};
2012
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +02002013/**
2014 * ccw_driver_register() - register a ccw driver
2015 * @cdriver: driver to be registered
2016 *
2017 * This function is mainly a wrapper around driver_register().
2018 * Returns:
2019 * %0 on success and a negative error value on failure.
2020 */
2021int ccw_driver_register(struct ccw_driver *cdriver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
2023 struct device_driver *drv = &cdriver->driver;
2024
2025 drv->bus = &ccw_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 return driver_register(drv);
2028}
2029
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +02002030/**
2031 * ccw_driver_unregister() - deregister a ccw driver
2032 * @cdriver: driver to be deregistered
2033 *
2034 * This function is mainly a wrapper around driver_unregister().
2035 */
2036void ccw_driver_unregister(struct ccw_driver *cdriver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
2038 driver_unregister(&cdriver->driver);
2039}
2040
Cornelia Hucka8237fc2006-01-06 00:19:21 -08002041/* Helper func for qdio. */
2042struct subchannel_id
2043ccw_device_get_subchannel_id(struct ccw_device *cdev)
2044{
2045 struct subchannel *sch;
2046
2047 sch = to_subchannel(cdev->dev.parent);
2048 return sch->schid;
2049}
2050
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01002051static void ccw_device_todo(struct work_struct *work)
2052{
2053 struct ccw_device_private *priv;
2054 struct ccw_device *cdev;
2055 struct subchannel *sch;
2056 enum cdev_todo todo;
2057
2058 priv = container_of(work, struct ccw_device_private, todo_work);
2059 cdev = priv->cdev;
2060 sch = to_subchannel(cdev->dev.parent);
2061 /* Find out todo. */
2062 spin_lock_irq(cdev->ccwlock);
2063 todo = priv->todo;
2064 priv->todo = CDEV_TODO_NOTHING;
2065 CIO_MSG_EVENT(4, "cdev_todo: cdev=0.%x.%04x todo=%d\n",
2066 priv->dev_id.ssid, priv->dev_id.devno, todo);
2067 spin_unlock_irq(cdev->ccwlock);
2068 /* Perform todo. */
2069 switch (todo) {
2070 case CDEV_TODO_ENABLE_CMF:
2071 cmf_reenable(cdev);
2072 break;
2073 case CDEV_TODO_REBIND:
2074 ccw_device_do_unbind_bind(cdev);
2075 break;
2076 case CDEV_TODO_REGISTER:
2077 io_subchannel_register(cdev);
2078 break;
2079 case CDEV_TODO_UNREG_EVAL:
2080 if (!sch_is_pseudo_sch(sch))
2081 css_schedule_eval(sch->schid);
2082 /* fall-through */
2083 case CDEV_TODO_UNREG:
2084 if (sch_is_pseudo_sch(sch))
2085 ccw_device_unregister(cdev);
2086 else
2087 ccw_device_call_sch_unregister(cdev);
2088 break;
2089 default:
2090 break;
2091 }
2092 /* Release workqueue ref. */
2093 put_device(&cdev->dev);
2094}
2095
2096/**
2097 * ccw_device_sched_todo - schedule ccw device operation
2098 * @cdev: ccw device
2099 * @todo: todo
2100 *
2101 * Schedule the operation identified by @todo to be performed on the slow path
2102 * workqueue. Do nothing if another operation with higher priority is already
2103 * scheduled. Needs to be called with ccwdev lock held.
2104 */
2105void ccw_device_sched_todo(struct ccw_device *cdev, enum cdev_todo todo)
2106{
2107 CIO_MSG_EVENT(4, "cdev_todo: sched cdev=0.%x.%04x todo=%d\n",
2108 cdev->private->dev_id.ssid, cdev->private->dev_id.devno,
2109 todo);
2110 if (cdev->private->todo >= todo)
2111 return;
2112 cdev->private->todo = todo;
2113 /* Get workqueue ref. */
2114 if (!get_device(&cdev->dev))
2115 return;
Sebastian Ottbe5d3822010-02-26 22:37:24 +01002116 if (!queue_work(cio_work_q, &cdev->private->todo_work)) {
Peter Oberparleiter37de53b2009-12-07 12:51:19 +01002117 /* Already queued, release workqueue ref. */
2118 put_device(&cdev->dev);
2119 }
2120}
2121
Michael Ernstfd0457a2010-08-09 18:12:50 +02002122/**
2123 * ccw_device_siosl() - initiate logging
2124 * @cdev: ccw device
2125 *
2126 * This function is used to invoke model-dependent logging within the channel
2127 * subsystem.
2128 */
2129int ccw_device_siosl(struct ccw_device *cdev)
2130{
2131 struct subchannel *sch = to_subchannel(cdev->dev.parent);
2132
2133 return chsc_siosl(sch->schid);
2134}
2135EXPORT_SYMBOL_GPL(ccw_device_siosl);
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137MODULE_LICENSE("GPL");
2138EXPORT_SYMBOL(ccw_device_set_online);
2139EXPORT_SYMBOL(ccw_device_set_offline);
2140EXPORT_SYMBOL(ccw_driver_register);
2141EXPORT_SYMBOL(ccw_driver_unregister);
2142EXPORT_SYMBOL(get_ccwdev_by_busid);
Cornelia Hucka8237fc2006-01-06 00:19:21 -08002143EXPORT_SYMBOL_GPL(ccw_device_get_subchannel_id);