Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/s390/cio/device.c |
| 3 | * bus driver for ccw devices |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 5 | * Copyright IBM Corp. 2002,2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * Author(s): Arnd Bergmann (arndb@de.ibm.com) |
Cornelia Huck | 4ce3b30 | 2006-01-14 13:21:04 -0800 | [diff] [blame] | 7 | * Cornelia Huck (cornelia.huck@de.ibm.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Martin Schwidefsky (schwidefsky@de.ibm.com) |
| 9 | */ |
Peter Oberparleiter | a7ae2c02 | 2009-12-07 12:51:20 +0100 | [diff] [blame] | 10 | |
| 11 | #define KMSG_COMPONENT "cio" |
| 12 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #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 Oberparleiter | 90ab133 | 2008-01-26 14:10:52 +0100 | [diff] [blame] | 23 | #include <linux/timer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #include <asm/ccwdev.h> |
| 26 | #include <asm/cio.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 27 | #include <asm/param.h> /* HZ */ |
Cornelia Huck | 1842f2b | 2007-10-12 16:11:22 +0200 | [diff] [blame] | 28 | #include <asm/cmb.h> |
Cornelia Huck | 3a3fc29 | 2008-07-14 09:58:58 +0200 | [diff] [blame] | 29 | #include <asm/isc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 31 | #include "chp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "cio.h" |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 33 | #include "cio_debug.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include "css.h" |
| 35 | #include "device.h" |
| 36 | #include "ioasm.h" |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 37 | #include "io_sch.h" |
Peter Oberparleiter | ecf5d9e | 2008-10-10 21:33:06 +0200 | [diff] [blame] | 38 | #include "blacklist.h" |
Michael Ernst | fd0457a | 2010-08-09 18:12:50 +0200 | [diff] [blame] | 39 | #include "chsc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Peter Oberparleiter | 90ab133 | 2008-01-26 14:10:52 +0100 | [diff] [blame] | 41 | static struct timer_list recovery_timer; |
Cornelia Huck | 486d0a0 | 2008-02-19 15:29:23 +0100 | [diff] [blame] | 42 | static DEFINE_SPINLOCK(recovery_lock); |
Peter Oberparleiter | 90ab133 | 2008-01-26 14:10:52 +0100 | [diff] [blame] | 43 | static int recovery_phase; |
| 44 | static const unsigned long recovery_delay[] = { 3, 30, 300 }; |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /******************* bus type handling ***********************/ |
| 47 | |
| 48 | /* The Linux driver model distinguishes between a bus type and |
| 49 | * the bus itself. Of course we only have one channel |
| 50 | * subsystem driver and one channel system per machine, but |
| 51 | * we still use the abstraction. T.R. says it's a good idea. */ |
| 52 | static int |
| 53 | ccw_bus_match (struct device * dev, struct device_driver * drv) |
| 54 | { |
| 55 | struct ccw_device *cdev = to_ccwdev(dev); |
| 56 | struct ccw_driver *cdrv = to_ccwdrv(drv); |
| 57 | const struct ccw_device_id *ids = cdrv->ids, *found; |
| 58 | |
| 59 | if (!ids) |
| 60 | return 0; |
| 61 | |
| 62 | found = ccw_device_id_match(ids, &cdev->id); |
| 63 | if (!found) |
| 64 | return 0; |
| 65 | |
| 66 | cdev->id.driver_info = found->driver_info; |
| 67 | |
| 68 | return 1; |
| 69 | } |
| 70 | |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 71 | /* Store modalias string delimited by prefix/suffix string into buffer with |
| 72 | * specified size. Return length of resulting string (excluding trailing '\0') |
| 73 | * even if string doesn't fit buffer (snprintf semantics). */ |
Cornelia Huck | cfbe9bb | 2007-04-27 16:01:32 +0200 | [diff] [blame] | 74 | static int snprint_alias(char *buf, size_t size, |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 75 | struct ccw_device_id *id, const char *suffix) |
| 76 | { |
| 77 | int len; |
| 78 | |
Cornelia Huck | cfbe9bb | 2007-04-27 16:01:32 +0200 | [diff] [blame] | 79 | len = snprintf(buf, size, "ccw:t%04Xm%02X", id->cu_type, id->cu_model); |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 80 | if (len > size) |
| 81 | return len; |
| 82 | buf += len; |
| 83 | size -= len; |
| 84 | |
| 85 | if (id->dev_type != 0) |
| 86 | len += snprintf(buf, size, "dt%04Xdm%02X%s", id->dev_type, |
| 87 | id->dev_model, suffix); |
| 88 | else |
| 89 | len += snprintf(buf, size, "dtdm%s", suffix); |
| 90 | |
| 91 | return len; |
| 92 | } |
| 93 | |
| 94 | /* Set up environment variables for ccw device uevent. Return 0 on success, |
| 95 | * non-zero otherwise. */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 96 | static int ccw_uevent(struct device *dev, struct kobj_uevent_env *env) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
| 98 | struct ccw_device *cdev = to_ccwdev(dev); |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 99 | struct ccw_device_id *id = &(cdev->id); |
Cornelia Huck | cfbe9bb | 2007-04-27 16:01:32 +0200 | [diff] [blame] | 100 | int ret; |
| 101 | char modalias_buf[30]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 103 | /* CU_TYPE= */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 104 | ret = add_uevent_var(env, "CU_TYPE=%04X", id->cu_type); |
Cornelia Huck | cfbe9bb | 2007-04-27 16:01:32 +0200 | [diff] [blame] | 105 | if (ret) |
| 106 | return ret; |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 107 | |
| 108 | /* CU_MODEL= */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 109 | ret = add_uevent_var(env, "CU_MODEL=%02X", id->cu_model); |
Cornelia Huck | cfbe9bb | 2007-04-27 16:01:32 +0200 | [diff] [blame] | 110 | if (ret) |
| 111 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | /* The next two can be zero, that's ok for us */ |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 114 | /* DEV_TYPE= */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 115 | ret = add_uevent_var(env, "DEV_TYPE=%04X", id->dev_type); |
Cornelia Huck | cfbe9bb | 2007-04-27 16:01:32 +0200 | [diff] [blame] | 116 | if (ret) |
| 117 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 119 | /* DEV_MODEL= */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 120 | ret = add_uevent_var(env, "DEV_MODEL=%02X", id->dev_model); |
Cornelia Huck | cfbe9bb | 2007-04-27 16:01:32 +0200 | [diff] [blame] | 121 | if (ret) |
| 122 | return ret; |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 123 | |
| 124 | /* MODALIAS= */ |
Cornelia Huck | cfbe9bb | 2007-04-27 16:01:32 +0200 | [diff] [blame] | 125 | snprint_alias(modalias_buf, sizeof(modalias_buf), id, ""); |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 126 | ret = add_uevent_var(env, "MODALIAS=%s", modalias_buf); |
| 127 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 130 | struct bus_type ccw_bus_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Cornelia Huck | 602b20f | 2008-01-26 14:10:39 +0100 | [diff] [blame] | 132 | static void io_subchannel_irq(struct subchannel *); |
| 133 | static int io_subchannel_probe(struct subchannel *); |
| 134 | static int io_subchannel_remove(struct subchannel *); |
Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 135 | static void io_subchannel_shutdown(struct subchannel *); |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 136 | static int io_subchannel_sch_event(struct subchannel *, int); |
Cornelia Huck | 99611f8 | 2008-07-14 09:59:02 +0200 | [diff] [blame] | 137 | static int io_subchannel_chp_event(struct subchannel *, struct chp_link *, |
| 138 | int); |
Sebastian Ott | 8ea7f55 | 2009-09-22 22:58:35 +0200 | [diff] [blame] | 139 | static void recovery_func(unsigned long data); |
Sebastian Ott | 8ea7f55 | 2009-09-22 22:58:35 +0200 | [diff] [blame] | 140 | wait_queue_head_t ccw_device_init_wq; |
| 141 | atomic_t ccw_device_init_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Cornelia Huck | f08adc0 | 2008-07-14 09:59:03 +0200 | [diff] [blame] | 143 | static struct css_device_id io_subchannel_ids[] = { |
| 144 | { .match_flags = 0x1, .type = SUBCHANNEL_TYPE_IO, }, |
| 145 | { /* end of list */ }, |
| 146 | }; |
| 147 | MODULE_DEVICE_TABLE(css, io_subchannel_ids); |
| 148 | |
Cornelia Huck | 93a2759 | 2009-06-16 10:30:23 +0200 | [diff] [blame] | 149 | static int io_subchannel_prepare(struct subchannel *sch) |
| 150 | { |
| 151 | struct ccw_device *cdev; |
| 152 | /* |
| 153 | * Don't allow suspend while a ccw device registration |
| 154 | * is still outstanding. |
| 155 | */ |
| 156 | cdev = sch_get_cdev(sch); |
| 157 | if (cdev && !device_is_registered(&cdev->dev)) |
| 158 | return -EAGAIN; |
| 159 | return 0; |
| 160 | } |
| 161 | |
Sebastian Ott | b4c7072 | 2010-02-26 22:37:27 +0100 | [diff] [blame] | 162 | static int io_subchannel_settle(void) |
Sebastian Ott | 8ea7f55 | 2009-09-22 22:58:35 +0200 | [diff] [blame] | 163 | { |
Sebastian Ott | b4c7072 | 2010-02-26 22:37:27 +0100 | [diff] [blame] | 164 | int ret; |
| 165 | |
| 166 | ret = wait_event_interruptible(ccw_device_init_wq, |
| 167 | atomic_read(&ccw_device_init_count) == 0); |
| 168 | if (ret) |
| 169 | return -EINTR; |
Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 170 | flush_workqueue(cio_work_q); |
Sebastian Ott | b4c7072 | 2010-02-26 22:37:27 +0100 | [diff] [blame] | 171 | return 0; |
Sebastian Ott | 8ea7f55 | 2009-09-22 22:58:35 +0200 | [diff] [blame] | 172 | } |
| 173 | |
Cornelia Huck | f7e5d67 | 2007-05-10 15:45:43 +0200 | [diff] [blame] | 174 | static struct css_driver io_subchannel_driver = { |
Cornelia Huck | 4beee64 | 2008-01-26 14:10:47 +0100 | [diff] [blame] | 175 | .owner = THIS_MODULE, |
Cornelia Huck | f08adc0 | 2008-07-14 09:59:03 +0200 | [diff] [blame] | 176 | .subchannel_type = io_subchannel_ids, |
Cornelia Huck | 25b7bb5 | 2008-01-26 14:10:41 +0100 | [diff] [blame] | 177 | .name = "io_subchannel", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | .irq = io_subchannel_irq, |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 179 | .sch_event = io_subchannel_sch_event, |
| 180 | .chp_event = io_subchannel_chp_event, |
Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 181 | .probe = io_subchannel_probe, |
| 182 | .remove = io_subchannel_remove, |
| 183 | .shutdown = io_subchannel_shutdown, |
Cornelia Huck | 93a2759 | 2009-06-16 10:30:23 +0200 | [diff] [blame] | 184 | .prepare = io_subchannel_prepare, |
Sebastian Ott | 8ea7f55 | 2009-09-22 22:58:35 +0200 | [diff] [blame] | 185 | .settle = io_subchannel_settle, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | }; |
| 187 | |
Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 188 | int __init io_subchannel_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
| 190 | int ret; |
| 191 | |
| 192 | init_waitqueue_head(&ccw_device_init_wq); |
| 193 | atomic_set(&ccw_device_init_count, 0); |
Peter Oberparleiter | 90ab133 | 2008-01-26 14:10:52 +0100 | [diff] [blame] | 194 | setup_timer(&recovery_timer, recovery_func, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 196 | ret = bus_register(&ccw_bus_type); |
| 197 | if (ret) |
| 198 | return ret; |
Cornelia Huck | 25b7bb5 | 2008-01-26 14:10:41 +0100 | [diff] [blame] | 199 | ret = css_driver_register(&io_subchannel_driver); |
| 200 | if (ret) |
Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 201 | bus_unregister(&ccw_bus_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | return ret; |
| 204 | } |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
| 207 | /************************ device handling **************************/ |
| 208 | |
| 209 | /* |
| 210 | * A ccw_device has some interfaces in sysfs in addition to the |
| 211 | * standard ones. |
| 212 | * The following entries are designed to export the information which |
| 213 | * resided in 2.4 in /proc/subchannels. Subchannel and device number |
| 214 | * are obvious, so they don't have an entry :) |
| 215 | * TODO: Split chpids and pimpampom up? Where is "in use" in the tree? |
| 216 | */ |
| 217 | static ssize_t |
Yani Ioannou | 3fd3c0a | 2005-05-17 06:43:27 -0400 | [diff] [blame] | 218 | chpids_show (struct device * dev, struct device_attribute *attr, char * buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | { |
| 220 | struct subchannel *sch = to_subchannel(dev); |
Peter Oberparleiter | 7ad6a24 | 2007-04-27 16:01:35 +0200 | [diff] [blame] | 221 | struct chsc_ssd_info *ssd = &sch->ssd_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | ssize_t ret = 0; |
| 223 | int chp; |
Peter Oberparleiter | 7ad6a24 | 2007-04-27 16:01:35 +0200 | [diff] [blame] | 224 | int mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Peter Oberparleiter | 7ad6a24 | 2007-04-27 16:01:35 +0200 | [diff] [blame] | 226 | for (chp = 0; chp < 8; chp++) { |
| 227 | mask = 0x80 >> chp; |
| 228 | if (ssd->path_mask & mask) |
| 229 | ret += sprintf(buf + ret, "%02x ", ssd->chpid[chp].id); |
| 230 | else |
| 231 | ret += sprintf(buf + ret, "00 "); |
| 232 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | ret += sprintf (buf+ret, "\n"); |
| 234 | return min((ssize_t)PAGE_SIZE, ret); |
| 235 | } |
| 236 | |
| 237 | static ssize_t |
Yani Ioannou | 3fd3c0a | 2005-05-17 06:43:27 -0400 | [diff] [blame] | 238 | pimpampom_show (struct device * dev, struct device_attribute *attr, char * buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | { |
| 240 | struct subchannel *sch = to_subchannel(dev); |
| 241 | struct pmcw *pmcw = &sch->schib.pmcw; |
| 242 | |
| 243 | return sprintf (buf, "%02x %02x %02x\n", |
| 244 | pmcw->pim, pmcw->pam, pmcw->pom); |
| 245 | } |
| 246 | |
| 247 | static ssize_t |
Yani Ioannou | 3fd3c0a | 2005-05-17 06:43:27 -0400 | [diff] [blame] | 248 | devtype_show (struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | { |
| 250 | struct ccw_device *cdev = to_ccwdev(dev); |
| 251 | struct ccw_device_id *id = &(cdev->id); |
| 252 | |
| 253 | if (id->dev_type != 0) |
| 254 | return sprintf(buf, "%04x/%02x\n", |
| 255 | id->dev_type, id->dev_model); |
| 256 | else |
| 257 | return sprintf(buf, "n/a\n"); |
| 258 | } |
| 259 | |
| 260 | static ssize_t |
Yani Ioannou | 3fd3c0a | 2005-05-17 06:43:27 -0400 | [diff] [blame] | 261 | cutype_show (struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | { |
| 263 | struct ccw_device *cdev = to_ccwdev(dev); |
| 264 | struct ccw_device_id *id = &(cdev->id); |
| 265 | |
| 266 | return sprintf(buf, "%04x/%02x\n", |
| 267 | id->cu_type, id->cu_model); |
| 268 | } |
| 269 | |
| 270 | static ssize_t |
Bastian Blank | f1fc78a | 2005-10-30 15:00:12 -0800 | [diff] [blame] | 271 | modalias_show (struct device *dev, struct device_attribute *attr, char *buf) |
| 272 | { |
| 273 | struct ccw_device *cdev = to_ccwdev(dev); |
| 274 | struct ccw_device_id *id = &(cdev->id); |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 275 | int len; |
Bastian Blank | f1fc78a | 2005-10-30 15:00:12 -0800 | [diff] [blame] | 276 | |
Cornelia Huck | 086a6c6 | 2007-07-17 13:36:08 +0200 | [diff] [blame] | 277 | len = snprint_alias(buf, PAGE_SIZE, id, "\n"); |
Peter Oberparleiter | db0c2d5 | 2006-09-20 15:59:49 +0200 | [diff] [blame] | 278 | |
| 279 | return len > PAGE_SIZE ? PAGE_SIZE : len; |
Bastian Blank | f1fc78a | 2005-10-30 15:00:12 -0800 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | static ssize_t |
Yani Ioannou | 3fd3c0a | 2005-05-17 06:43:27 -0400 | [diff] [blame] | 283 | online_show (struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | { |
| 285 | struct ccw_device *cdev = to_ccwdev(dev); |
| 286 | |
| 287 | return sprintf(buf, cdev->online ? "1\n" : "0\n"); |
| 288 | } |
| 289 | |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 290 | int ccw_device_is_orphan(struct ccw_device *cdev) |
| 291 | { |
| 292 | return sch_is_pseudo_sch(to_subchannel(cdev->dev.parent)); |
| 293 | } |
| 294 | |
Cornelia Huck | ef99516 | 2007-04-27 16:01:39 +0200 | [diff] [blame] | 295 | static void ccw_device_unregister(struct ccw_device *cdev) |
Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 296 | { |
Sebastian Ott | 7d253b9 | 2009-12-07 12:51:33 +0100 | [diff] [blame] | 297 | if (device_is_registered(&cdev->dev)) { |
Sebastian Ott | 24a1872 | 2009-12-07 12:51:34 +0100 | [diff] [blame] | 298 | /* Undo device_add(). */ |
Cornelia Huck | ef99516 | 2007-04-27 16:01:39 +0200 | [diff] [blame] | 299 | device_del(&cdev->dev); |
Sebastian Ott | 24a1872 | 2009-12-07 12:51:34 +0100 | [diff] [blame] | 300 | } |
| 301 | if (cdev->private->flags.initialized) { |
| 302 | cdev->private->flags.initialized = 0; |
Sebastian Ott | 3b554a1 | 2009-09-11 10:28:26 +0200 | [diff] [blame] | 303 | /* Release reference from device_initialize(). */ |
| 304 | put_device(&cdev->dev); |
| 305 | } |
Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 306 | } |
| 307 | |
Sebastian Ott | d40f7b7 | 2009-12-07 12:51:41 +0100 | [diff] [blame] | 308 | static void io_subchannel_quiesce(struct subchannel *); |
| 309 | |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 310 | /** |
| 311 | * ccw_device_set_offline() - disable a ccw device for I/O |
| 312 | * @cdev: target ccw device |
| 313 | * |
| 314 | * This function calls the driver's set_offline() function for @cdev, if |
| 315 | * given, and then disables @cdev. |
| 316 | * Returns: |
| 317 | * %0 on success and a negative error value on failure. |
| 318 | * Context: |
| 319 | * enabled, ccw device lock not held |
| 320 | */ |
| 321 | int ccw_device_set_offline(struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | { |
Sebastian Ott | d40f7b7 | 2009-12-07 12:51:41 +0100 | [diff] [blame] | 323 | struct subchannel *sch; |
| 324 | int ret, state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
| 326 | if (!cdev) |
| 327 | return -ENODEV; |
| 328 | if (!cdev->online || !cdev->drv) |
| 329 | return -EINVAL; |
| 330 | |
| 331 | if (cdev->drv->set_offline) { |
| 332 | ret = cdev->drv->set_offline(cdev); |
| 333 | if (ret != 0) |
| 334 | return ret; |
| 335 | } |
| 336 | cdev->online = 0; |
| 337 | spin_lock_irq(cdev->ccwlock); |
Sebastian Ott | d40f7b7 | 2009-12-07 12:51:41 +0100 | [diff] [blame] | 338 | sch = to_subchannel(cdev->dev.parent); |
Michael Ernst | 217ee6c | 2009-09-11 10:28:21 +0200 | [diff] [blame] | 339 | /* Wait until a final state or DISCONNECTED is reached */ |
| 340 | while (!dev_fsm_final_state(cdev) && |
| 341 | cdev->private->state != DEV_STATE_DISCONNECTED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | spin_unlock_irq(cdev->ccwlock); |
Michael Ernst | 217ee6c | 2009-09-11 10:28:21 +0200 | [diff] [blame] | 343 | wait_event(cdev->private->wait_q, (dev_fsm_final_state(cdev) || |
| 344 | cdev->private->state == DEV_STATE_DISCONNECTED)); |
| 345 | spin_lock_irq(cdev->ccwlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | } |
Sebastian Ott | d40f7b7 | 2009-12-07 12:51:41 +0100 | [diff] [blame] | 347 | do { |
| 348 | ret = ccw_device_offline(cdev); |
| 349 | if (!ret) |
| 350 | break; |
| 351 | CIO_MSG_EVENT(0, "ccw_device_offline returned %d, device " |
| 352 | "0.%x.%04x\n", ret, cdev->private->dev_id.ssid, |
| 353 | cdev->private->dev_id.devno); |
| 354 | if (ret != -EBUSY) |
| 355 | goto error; |
| 356 | state = cdev->private->state; |
| 357 | spin_unlock_irq(cdev->ccwlock); |
| 358 | io_subchannel_quiesce(sch); |
| 359 | spin_lock_irq(cdev->ccwlock); |
| 360 | cdev->private->state = state; |
| 361 | } while (ret == -EBUSY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | spin_unlock_irq(cdev->ccwlock); |
Michael Ernst | 217ee6c | 2009-09-11 10:28:21 +0200 | [diff] [blame] | 363 | wait_event(cdev->private->wait_q, (dev_fsm_final_state(cdev) || |
| 364 | cdev->private->state == DEV_STATE_DISCONNECTED)); |
Peter Oberparleiter | a7ae2c02 | 2009-12-07 12:51:20 +0100 | [diff] [blame] | 365 | /* Inform the user if set offline failed. */ |
| 366 | if (cdev->private->state == DEV_STATE_BOXED) { |
| 367 | pr_warning("%s: The device entered boxed state while " |
| 368 | "being set offline\n", dev_name(&cdev->dev)); |
| 369 | } else if (cdev->private->state == DEV_STATE_NOT_OPER) { |
| 370 | pr_warning("%s: The device stopped operating while " |
| 371 | "being set offline\n", dev_name(&cdev->dev)); |
| 372 | } |
Michael Ernst | 217ee6c | 2009-09-11 10:28:21 +0200 | [diff] [blame] | 373 | /* Give up reference from ccw_device_set_online(). */ |
| 374 | put_device(&cdev->dev); |
| 375 | return 0; |
| 376 | |
| 377 | error: |
Michael Ernst | 217ee6c | 2009-09-11 10:28:21 +0200 | [diff] [blame] | 378 | cdev->private->state = DEV_STATE_OFFLINE; |
| 379 | dev_fsm_event(cdev, DEV_EVENT_NOTOPER); |
| 380 | spin_unlock_irq(cdev->ccwlock); |
| 381 | /* Give up reference from ccw_device_set_online(). */ |
| 382 | put_device(&cdev->dev); |
| 383 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | } |
| 385 | |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 386 | /** |
| 387 | * ccw_device_set_online() - enable a ccw device for I/O |
| 388 | * @cdev: target ccw device |
| 389 | * |
| 390 | * This function first enables @cdev and then calls the driver's set_online() |
| 391 | * function for @cdev, if given. If set_online() returns an error, @cdev is |
| 392 | * disabled again. |
| 393 | * Returns: |
| 394 | * %0 on success and a negative error value on failure. |
| 395 | * Context: |
| 396 | * enabled, ccw device lock not held |
| 397 | */ |
| 398 | int ccw_device_set_online(struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
| 400 | int ret; |
Michael Ernst | 217ee6c | 2009-09-11 10:28:21 +0200 | [diff] [blame] | 401 | int ret2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
| 403 | if (!cdev) |
| 404 | return -ENODEV; |
| 405 | if (cdev->online || !cdev->drv) |
| 406 | return -EINVAL; |
Cornelia Huck | 9cd6742 | 2008-12-25 13:39:06 +0100 | [diff] [blame] | 407 | /* Hold on to an extra reference while device is online. */ |
| 408 | if (!get_device(&cdev->dev)) |
| 409 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
| 411 | spin_lock_irq(cdev->ccwlock); |
| 412 | ret = ccw_device_online(cdev); |
| 413 | spin_unlock_irq(cdev->ccwlock); |
| 414 | if (ret == 0) |
| 415 | wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev)); |
| 416 | else { |
Michael Ernst | 139b83d | 2008-05-07 09:22:54 +0200 | [diff] [blame] | 417 | CIO_MSG_EVENT(0, "ccw_device_online returned %d, " |
Cornelia Huck | e556bbb | 2007-07-27 12:29:19 +0200 | [diff] [blame] | 418 | "device 0.%x.%04x\n", |
| 419 | ret, cdev->private->dev_id.ssid, |
| 420 | cdev->private->dev_id.devno); |
Cornelia Huck | 9cd6742 | 2008-12-25 13:39:06 +0100 | [diff] [blame] | 421 | /* Give up online reference since onlining failed. */ |
| 422 | put_device(&cdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | return ret; |
| 424 | } |
Michael Ernst | 217ee6c | 2009-09-11 10:28:21 +0200 | [diff] [blame] | 425 | spin_lock_irq(cdev->ccwlock); |
| 426 | /* Check if online processing was successful */ |
| 427 | if ((cdev->private->state != DEV_STATE_ONLINE) && |
| 428 | (cdev->private->state != DEV_STATE_W4SENSE)) { |
| 429 | spin_unlock_irq(cdev->ccwlock); |
Peter Oberparleiter | a7ae2c02 | 2009-12-07 12:51:20 +0100 | [diff] [blame] | 430 | /* Inform the user that set online failed. */ |
| 431 | if (cdev->private->state == DEV_STATE_BOXED) { |
| 432 | pr_warning("%s: Setting the device online failed " |
| 433 | "because it is boxed\n", |
| 434 | dev_name(&cdev->dev)); |
| 435 | } else if (cdev->private->state == DEV_STATE_NOT_OPER) { |
| 436 | pr_warning("%s: Setting the device online failed " |
| 437 | "because it is not operational\n", |
| 438 | dev_name(&cdev->dev)); |
| 439 | } |
Cornelia Huck | 9cd6742 | 2008-12-25 13:39:06 +0100 | [diff] [blame] | 440 | /* Give up online reference since onlining failed. */ |
| 441 | put_device(&cdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | return -ENODEV; |
Cornelia Huck | 9cd6742 | 2008-12-25 13:39:06 +0100 | [diff] [blame] | 443 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | spin_unlock_irq(cdev->ccwlock); |
Michael Ernst | 217ee6c | 2009-09-11 10:28:21 +0200 | [diff] [blame] | 445 | if (cdev->drv->set_online) |
| 446 | ret = cdev->drv->set_online(cdev); |
| 447 | if (ret) |
| 448 | goto rollback; |
| 449 | cdev->online = 1; |
| 450 | return 0; |
| 451 | |
| 452 | rollback: |
| 453 | spin_lock_irq(cdev->ccwlock); |
| 454 | /* Wait until a final state or DISCONNECTED is reached */ |
| 455 | while (!dev_fsm_final_state(cdev) && |
| 456 | cdev->private->state != DEV_STATE_DISCONNECTED) { |
| 457 | spin_unlock_irq(cdev->ccwlock); |
| 458 | wait_event(cdev->private->wait_q, (dev_fsm_final_state(cdev) || |
| 459 | cdev->private->state == DEV_STATE_DISCONNECTED)); |
| 460 | spin_lock_irq(cdev->ccwlock); |
| 461 | } |
| 462 | ret2 = ccw_device_offline(cdev); |
| 463 | if (ret2) |
| 464 | goto error; |
| 465 | spin_unlock_irq(cdev->ccwlock); |
| 466 | wait_event(cdev->private->wait_q, (dev_fsm_final_state(cdev) || |
| 467 | cdev->private->state == DEV_STATE_DISCONNECTED)); |
Cornelia Huck | 9cd6742 | 2008-12-25 13:39:06 +0100 | [diff] [blame] | 468 | /* Give up online reference since onlining failed. */ |
| 469 | put_device(&cdev->dev); |
Michael Ernst | 217ee6c | 2009-09-11 10:28:21 +0200 | [diff] [blame] | 470 | return ret; |
| 471 | |
| 472 | error: |
| 473 | CIO_MSG_EVENT(0, "rollback ccw_device_offline returned %d, " |
| 474 | "device 0.%x.%04x\n", |
| 475 | ret2, cdev->private->dev_id.ssid, |
| 476 | cdev->private->dev_id.devno); |
| 477 | cdev->private->state = DEV_STATE_OFFLINE; |
| 478 | spin_unlock_irq(cdev->ccwlock); |
| 479 | /* Give up online reference since onlining failed. */ |
| 480 | put_device(&cdev->dev); |
| 481 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | } |
| 483 | |
Sebastian Ott | e74fe0c | 2009-03-26 15:24:08 +0100 | [diff] [blame] | 484 | static int online_store_handle_offline(struct ccw_device *cdev) |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 485 | { |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 486 | if (cdev->private->state == DEV_STATE_DISCONNECTED) { |
| 487 | spin_lock_irq(cdev->ccwlock); |
| 488 | ccw_device_sched_todo(cdev, CDEV_TODO_UNREG_EVAL); |
| 489 | spin_unlock_irq(cdev->ccwlock); |
Sebastian Ott | 7cd4031 | 2010-08-09 18:12:52 +0200 | [diff] [blame] | 490 | return 0; |
| 491 | } |
| 492 | if (cdev->drv && cdev->drv->set_offline) |
Sebastian Ott | e74fe0c | 2009-03-26 15:24:08 +0100 | [diff] [blame] | 493 | return ccw_device_set_offline(cdev); |
Sebastian Ott | 7cd4031 | 2010-08-09 18:12:52 +0200 | [diff] [blame] | 494 | return -EINVAL; |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | static int online_store_recog_and_online(struct ccw_device *cdev) |
| 498 | { |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 499 | /* Do device recognition, if needed. */ |
Sebastian Ott | 99f6a570 | 2009-03-31 19:16:07 +0200 | [diff] [blame] | 500 | if (cdev->private->state == DEV_STATE_BOXED) { |
Peter Oberparleiter | 1f5bd38 | 2009-12-07 12:51:23 +0100 | [diff] [blame] | 501 | spin_lock_irq(cdev->ccwlock); |
Peter Oberparleiter | 736b5db | 2009-12-07 12:51:21 +0100 | [diff] [blame] | 502 | ccw_device_recognition(cdev); |
Peter Oberparleiter | 1f5bd38 | 2009-12-07 12:51:23 +0100 | [diff] [blame] | 503 | spin_unlock_irq(cdev->ccwlock); |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 504 | wait_event(cdev->private->wait_q, |
| 505 | cdev->private->flags.recog_done); |
Sebastian Ott | 156013f | 2009-03-31 19:16:03 +0200 | [diff] [blame] | 506 | if (cdev->private->state != DEV_STATE_OFFLINE) |
| 507 | /* recognition failed */ |
| 508 | return -EAGAIN; |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 509 | } |
| 510 | if (cdev->drv && cdev->drv->set_online) |
Sebastian Ott | 7cd4031 | 2010-08-09 18:12:52 +0200 | [diff] [blame] | 511 | return ccw_device_set_online(cdev); |
| 512 | return -EINVAL; |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 513 | } |
Sebastian Ott | 156013f | 2009-03-31 19:16:03 +0200 | [diff] [blame] | 514 | |
Michael Ernst | c78aa6c | 2008-07-14 09:59:22 +0200 | [diff] [blame] | 515 | static int online_store_handle_online(struct ccw_device *cdev, int force) |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 516 | { |
| 517 | int ret; |
| 518 | |
| 519 | ret = online_store_recog_and_online(cdev); |
Sebastian Ott | 156013f | 2009-03-31 19:16:03 +0200 | [diff] [blame] | 520 | if (ret && !force) |
Michael Ernst | c78aa6c | 2008-07-14 09:59:22 +0200 | [diff] [blame] | 521 | return ret; |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 522 | if (force && cdev->private->state == DEV_STATE_BOXED) { |
| 523 | ret = ccw_device_stlck(cdev); |
Michael Ernst | c78aa6c | 2008-07-14 09:59:22 +0200 | [diff] [blame] | 524 | if (ret) |
| 525 | return ret; |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 526 | if (cdev->id.cu_type == 0) |
| 527 | cdev->private->state = DEV_STATE_NOT_OPER; |
Sebastian Ott | 156013f | 2009-03-31 19:16:03 +0200 | [diff] [blame] | 528 | ret = online_store_recog_and_online(cdev); |
| 529 | if (ret) |
| 530 | return ret; |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 531 | } |
Michael Ernst | c78aa6c | 2008-07-14 09:59:22 +0200 | [diff] [blame] | 532 | return 0; |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | static ssize_t online_store (struct device *dev, struct device_attribute *attr, |
| 536 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | { |
| 538 | struct ccw_device *cdev = to_ccwdev(dev); |
Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 539 | int force, ret; |
| 540 | unsigned long i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
Peter Oberparleiter | 350e912 | 2009-12-07 12:51:28 +0100 | [diff] [blame] | 542 | if (!dev_fsm_final_state(cdev) && |
| 543 | cdev->private->state != DEV_STATE_DISCONNECTED) |
| 544 | return -EAGAIN; |
| 545 | if (atomic_cmpxchg(&cdev->private->onoff, 0, 1) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | return -EAGAIN; |
| 547 | |
| 548 | if (cdev->drv && !try_module_get(cdev->drv->owner)) { |
| 549 | atomic_set(&cdev->private->onoff, 0); |
| 550 | return -EINVAL; |
| 551 | } |
| 552 | if (!strncmp(buf, "force\n", count)) { |
| 553 | force = 1; |
| 554 | i = 1; |
Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 555 | ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | } else { |
| 557 | force = 0; |
Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 558 | ret = strict_strtoul(buf, 16, &i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | } |
Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 560 | if (ret) |
| 561 | goto out; |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 562 | switch (i) { |
| 563 | case 0: |
Sebastian Ott | e74fe0c | 2009-03-26 15:24:08 +0100 | [diff] [blame] | 564 | ret = online_store_handle_offline(cdev); |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 565 | break; |
| 566 | case 1: |
Michael Ernst | c78aa6c | 2008-07-14 09:59:22 +0200 | [diff] [blame] | 567 | ret = online_store_handle_online(cdev, force); |
Cornelia Huck | f5ba6c8 | 2007-04-27 16:01:30 +0200 | [diff] [blame] | 568 | break; |
| 569 | default: |
Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 570 | ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 572 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | if (cdev->drv) |
| 574 | module_put(cdev->drv->owner); |
| 575 | atomic_set(&cdev->private->onoff, 0); |
Sebastian Ott | e74fe0c | 2009-03-26 15:24:08 +0100 | [diff] [blame] | 576 | return (ret < 0) ? ret : count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | static ssize_t |
Yani Ioannou | 3fd3c0a | 2005-05-17 06:43:27 -0400 | [diff] [blame] | 580 | available_show (struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | { |
| 582 | struct ccw_device *cdev = to_ccwdev(dev); |
| 583 | struct subchannel *sch; |
| 584 | |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 585 | if (ccw_device_is_orphan(cdev)) |
| 586 | return sprintf(buf, "no device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | switch (cdev->private->state) { |
| 588 | case DEV_STATE_BOXED: |
| 589 | return sprintf(buf, "boxed\n"); |
| 590 | case DEV_STATE_DISCONNECTED: |
| 591 | case DEV_STATE_DISCONNECTED_SENSE_ID: |
| 592 | case DEV_STATE_NOT_OPER: |
| 593 | sch = to_subchannel(dev->parent); |
| 594 | if (!sch->lpm) |
| 595 | return sprintf(buf, "no path\n"); |
| 596 | else |
| 597 | return sprintf(buf, "no device\n"); |
| 598 | default: |
| 599 | /* All other states considered fine. */ |
| 600 | return sprintf(buf, "good\n"); |
| 601 | } |
| 602 | } |
| 603 | |
Michael Ernst | fd0457a | 2010-08-09 18:12:50 +0200 | [diff] [blame] | 604 | static ssize_t |
| 605 | initiate_logging(struct device *dev, struct device_attribute *attr, |
| 606 | const char *buf, size_t count) |
| 607 | { |
| 608 | struct subchannel *sch = to_subchannel(dev); |
| 609 | int rc; |
| 610 | |
| 611 | rc = chsc_siosl(sch->schid); |
| 612 | if (rc < 0) { |
| 613 | pr_warning("Logging for subchannel 0.%x.%04x failed with " |
| 614 | "errno=%d\n", |
| 615 | sch->schid.ssid, sch->schid.sch_no, rc); |
| 616 | return rc; |
| 617 | } |
| 618 | pr_notice("Logging for subchannel 0.%x.%04x was triggered\n", |
| 619 | sch->schid.ssid, sch->schid.sch_no); |
| 620 | return count; |
| 621 | } |
| 622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | static DEVICE_ATTR(chpids, 0444, chpids_show, NULL); |
| 624 | static DEVICE_ATTR(pimpampom, 0444, pimpampom_show, NULL); |
| 625 | static DEVICE_ATTR(devtype, 0444, devtype_show, NULL); |
| 626 | static DEVICE_ATTR(cutype, 0444, cutype_show, NULL); |
Bastian Blank | f1fc78a | 2005-10-30 15:00:12 -0800 | [diff] [blame] | 627 | static DEVICE_ATTR(modalias, 0444, modalias_show, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | static DEVICE_ATTR(online, 0644, online_show, online_store); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | static DEVICE_ATTR(availability, 0444, available_show, NULL); |
Michael Ernst | fd0457a | 2010-08-09 18:12:50 +0200 | [diff] [blame] | 630 | static DEVICE_ATTR(logging, 0200, NULL, initiate_logging); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 632 | static struct attribute *io_subchannel_attrs[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | &dev_attr_chpids.attr, |
| 634 | &dev_attr_pimpampom.attr, |
Michael Ernst | fd0457a | 2010-08-09 18:12:50 +0200 | [diff] [blame] | 635 | &dev_attr_logging.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | NULL, |
| 637 | }; |
| 638 | |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 639 | static struct attribute_group io_subchannel_attr_group = { |
| 640 | .attrs = io_subchannel_attrs, |
Cornelia Huck | 529192f | 2006-12-08 15:55:57 +0100 | [diff] [blame] | 641 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
| 643 | static struct attribute * ccwdev_attrs[] = { |
| 644 | &dev_attr_devtype.attr, |
| 645 | &dev_attr_cutype.attr, |
Bastian Blank | f1fc78a | 2005-10-30 15:00:12 -0800 | [diff] [blame] | 646 | &dev_attr_modalias.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | &dev_attr_online.attr, |
| 648 | &dev_attr_cmb_enable.attr, |
| 649 | &dev_attr_availability.attr, |
| 650 | NULL, |
| 651 | }; |
| 652 | |
| 653 | static struct attribute_group ccwdev_attr_group = { |
| 654 | .attrs = ccwdev_attrs, |
| 655 | }; |
| 656 | |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 657 | static const struct attribute_group *ccwdev_attr_groups[] = { |
Cornelia Huck | ef99516 | 2007-04-27 16:01:39 +0200 | [diff] [blame] | 658 | &ccwdev_attr_group, |
| 659 | NULL, |
| 660 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | |
| 662 | /* this is a simple abstraction for device_register that sets the |
| 663 | * correct bus type and adds the bus specific files */ |
Cornelia Huck | 3c9da7b | 2006-10-27 12:39:33 +0200 | [diff] [blame] | 664 | static int ccw_device_register(struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | { |
| 666 | struct device *dev = &cdev->dev; |
| 667 | int ret; |
| 668 | |
| 669 | dev->bus = &ccw_bus_type; |
Sebastian Ott | 3ac276f | 2009-09-11 10:28:27 +0200 | [diff] [blame] | 670 | ret = dev_set_name(&cdev->dev, "0.%x.%04x", cdev->private->dev_id.ssid, |
| 671 | cdev->private->dev_id.devno); |
| 672 | if (ret) |
| 673 | return ret; |
Sebastian Ott | 7d253b9 | 2009-12-07 12:51:33 +0100 | [diff] [blame] | 674 | return device_add(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | } |
| 676 | |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 677 | static int match_dev_id(struct device *dev, void *data) |
Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 678 | { |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 679 | struct ccw_device *cdev = to_ccwdev(dev); |
| 680 | struct ccw_dev_id *dev_id = data; |
Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 681 | |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 682 | return ccw_dev_id_is_equal(&cdev->private->dev_id, dev_id); |
| 683 | } |
| 684 | |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 685 | static struct ccw_device *get_ccwdev_by_dev_id(struct ccw_dev_id *dev_id) |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 686 | { |
| 687 | struct device *dev; |
| 688 | |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 689 | dev = bus_find_device(&ccw_bus_type, NULL, dev_id, match_dev_id); |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 690 | |
| 691 | return dev ? to_ccwdev(dev) : NULL; |
| 692 | } |
| 693 | |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 694 | static void ccw_device_do_unbind_bind(struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | { |
Cornelia Huck | eb32ae8 | 2009-03-26 15:24:05 +0100 | [diff] [blame] | 696 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | |
Sebastian Ott | 7d253b9 | 2009-12-07 12:51:33 +0100 | [diff] [blame] | 698 | if (device_is_registered(&cdev->dev)) { |
Cornelia Huck | eb32ae8 | 2009-03-26 15:24:05 +0100 | [diff] [blame] | 699 | device_release_driver(&cdev->dev); |
| 700 | ret = device_attach(&cdev->dev); |
| 701 | WARN_ON(ret == -ENODEV); |
| 702 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | static void |
| 706 | ccw_device_release(struct device *dev) |
| 707 | { |
| 708 | struct ccw_device *cdev; |
| 709 | |
| 710 | cdev = to_ccwdev(dev); |
Cornelia Huck | 6eff208 | 2008-12-25 13:39:07 +0100 | [diff] [blame] | 711 | /* Release reference of parent subchannel. */ |
| 712 | put_device(cdev->dev.parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | kfree(cdev->private); |
| 714 | kfree(cdev); |
| 715 | } |
| 716 | |
Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 717 | static struct ccw_device * io_subchannel_allocate_dev(struct subchannel *sch) |
| 718 | { |
| 719 | struct ccw_device *cdev; |
| 720 | |
| 721 | cdev = kzalloc(sizeof(*cdev), GFP_KERNEL); |
| 722 | if (cdev) { |
| 723 | cdev->private = kzalloc(sizeof(struct ccw_device_private), |
| 724 | GFP_KERNEL | GFP_DMA); |
| 725 | if (cdev->private) |
| 726 | return cdev; |
| 727 | } |
| 728 | kfree(cdev); |
| 729 | return ERR_PTR(-ENOMEM); |
| 730 | } |
| 731 | |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 732 | static void ccw_device_todo(struct work_struct *work); |
| 733 | |
Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 734 | static int io_subchannel_initialize_dev(struct subchannel *sch, |
| 735 | struct ccw_device *cdev) |
| 736 | { |
| 737 | cdev->private->cdev = cdev; |
| 738 | atomic_set(&cdev->private->onoff, 0); |
| 739 | cdev->dev.parent = &sch->dev; |
| 740 | cdev->dev.release = ccw_device_release; |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 741 | INIT_WORK(&cdev->private->todo_work, ccw_device_todo); |
Cornelia Huck | ef99516 | 2007-04-27 16:01:39 +0200 | [diff] [blame] | 742 | cdev->dev.groups = ccwdev_attr_groups; |
Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 743 | /* Do first half of device_register. */ |
| 744 | device_initialize(&cdev->dev); |
| 745 | if (!get_device(&sch->dev)) { |
Cornelia Huck | 283fdd0 | 2008-12-25 13:39:10 +0100 | [diff] [blame] | 746 | /* Release reference from device_initialize(). */ |
| 747 | put_device(&cdev->dev); |
Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 748 | return -ENODEV; |
| 749 | } |
Sebastian Ott | 24a1872 | 2009-12-07 12:51:34 +0100 | [diff] [blame] | 750 | cdev->private->flags.initialized = 1; |
Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 751 | return 0; |
| 752 | } |
| 753 | |
| 754 | static struct ccw_device * io_subchannel_create_ccwdev(struct subchannel *sch) |
| 755 | { |
| 756 | struct ccw_device *cdev; |
| 757 | int ret; |
| 758 | |
| 759 | cdev = io_subchannel_allocate_dev(sch); |
| 760 | if (!IS_ERR(cdev)) { |
| 761 | ret = io_subchannel_initialize_dev(sch, cdev); |
Sebastian Ott | 06739a8 | 2009-08-23 18:09:04 +0200 | [diff] [blame] | 762 | if (ret) |
Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 763 | cdev = ERR_PTR(ret); |
Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 764 | } |
| 765 | return cdev; |
| 766 | } |
| 767 | |
Peter Oberparleiter | 736b5db | 2009-12-07 12:51:21 +0100 | [diff] [blame] | 768 | static void io_subchannel_recog(struct ccw_device *, struct subchannel *); |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 769 | |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 770 | static void sch_create_and_recog_new_device(struct subchannel *sch) |
| 771 | { |
| 772 | struct ccw_device *cdev; |
| 773 | |
| 774 | /* Need to allocate a new ccw device. */ |
| 775 | cdev = io_subchannel_create_ccwdev(sch); |
| 776 | if (IS_ERR(cdev)) { |
| 777 | /* OK, we did everything we could... */ |
| 778 | css_sch_device_unregister(sch); |
| 779 | return; |
| 780 | } |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 781 | /* Start recognition for the new ccw device. */ |
Peter Oberparleiter | 736b5db | 2009-12-07 12:51:21 +0100 | [diff] [blame] | 782 | io_subchannel_recog(cdev, sch); |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 783 | } |
| 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | /* |
| 786 | * Register recognized device. |
| 787 | */ |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 788 | static void io_subchannel_register(struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | struct subchannel *sch; |
Sebastian Ott | a290156 | 2010-03-08 12:25:17 +0100 | [diff] [blame] | 791 | int ret, adjust_init_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | unsigned long flags; |
| 793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | sch = to_subchannel(cdev->dev.parent); |
Cornelia Huck | 5fb6b85 | 2008-12-25 13:39:08 +0100 | [diff] [blame] | 795 | /* |
| 796 | * Check if subchannel is still registered. It may have become |
| 797 | * unregistered if a machine check hit us after finishing |
| 798 | * device recognition but before the register work could be |
| 799 | * queued. |
| 800 | */ |
| 801 | if (!device_is_registered(&sch->dev)) |
| 802 | goto out_err; |
Cornelia Huck | 82b7ac0 | 2007-04-27 16:01:36 +0200 | [diff] [blame] | 803 | css_update_ssd_info(sch); |
Cornelia Huck | 47af551 | 2006-12-04 15:41:07 +0100 | [diff] [blame] | 804 | /* |
| 805 | * io_subchannel_register() will also be called after device |
| 806 | * recognition has been done for a boxed device (which will already |
| 807 | * be registered). We need to reprobe since we may now have sense id |
| 808 | * information. |
| 809 | */ |
Cornelia Huck | d6a3076 | 2008-12-25 13:39:11 +0100 | [diff] [blame] | 810 | if (device_is_registered(&cdev->dev)) { |
Cornelia Huck | 47af551 | 2006-12-04 15:41:07 +0100 | [diff] [blame] | 811 | if (!cdev->drv) { |
| 812 | ret = device_reprobe(&cdev->dev); |
| 813 | if (ret) |
| 814 | /* We can't do much here. */ |
Michael Ernst | 139b83d | 2008-05-07 09:22:54 +0200 | [diff] [blame] | 815 | CIO_MSG_EVENT(0, "device_reprobe() returned" |
Cornelia Huck | e556bbb | 2007-07-27 12:29:19 +0200 | [diff] [blame] | 816 | " %d for 0.%x.%04x\n", ret, |
| 817 | cdev->private->dev_id.ssid, |
| 818 | cdev->private->dev_id.devno); |
Cornelia Huck | 47af551 | 2006-12-04 15:41:07 +0100 | [diff] [blame] | 819 | } |
Sebastian Ott | a290156 | 2010-03-08 12:25:17 +0100 | [diff] [blame] | 820 | adjust_init_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | goto out; |
| 822 | } |
Cornelia Huck | fa1a8c2 | 2007-04-26 00:12:03 -0700 | [diff] [blame] | 823 | /* |
| 824 | * Now we know this subchannel will stay, we can throw |
| 825 | * our delayed uevent. |
| 826 | */ |
Ming Lei | f67f129 | 2009-03-01 21:10:49 +0800 | [diff] [blame] | 827 | dev_set_uevent_suppress(&sch->dev, 0); |
Cornelia Huck | fa1a8c2 | 2007-04-26 00:12:03 -0700 | [diff] [blame] | 828 | kobject_uevent(&sch->dev.kobj, KOBJ_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | /* make it known to the system */ |
| 830 | ret = ccw_device_register(cdev); |
| 831 | if (ret) { |
Cornelia Huck | e556bbb | 2007-07-27 12:29:19 +0200 | [diff] [blame] | 832 | CIO_MSG_EVENT(0, "Could not register ccw dev 0.%x.%04x: %d\n", |
| 833 | cdev->private->dev_id.ssid, |
| 834 | cdev->private->dev_id.devno, ret); |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 835 | spin_lock_irqsave(sch->lock, flags); |
Cornelia Huck | db6a642 | 2008-01-26 14:10:46 +0100 | [diff] [blame] | 836 | sch_set_cdev(sch, NULL); |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 837 | spin_unlock_irqrestore(sch->lock, flags); |
Cornelia Huck | 6eff208 | 2008-12-25 13:39:07 +0100 | [diff] [blame] | 838 | /* Release initial device reference. */ |
| 839 | put_device(&cdev->dev); |
Cornelia Huck | 5fb6b85 | 2008-12-25 13:39:08 +0100 | [diff] [blame] | 840 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | out: |
| 843 | cdev->private->flags.recog_done = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | wake_up(&cdev->private->wait_q); |
Cornelia Huck | 5fb6b85 | 2008-12-25 13:39:08 +0100 | [diff] [blame] | 845 | out_err: |
Sebastian Ott | a290156 | 2010-03-08 12:25:17 +0100 | [diff] [blame] | 846 | if (adjust_init_count && atomic_dec_and_test(&ccw_device_init_count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | wake_up(&ccw_device_init_wq); |
| 848 | } |
| 849 | |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 850 | static void ccw_device_call_sch_unregister(struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | struct subchannel *sch; |
| 853 | |
Peter Oberparleiter | 46fbe4e | 2008-10-10 21:33:05 +0200 | [diff] [blame] | 854 | /* Get subchannel reference for local processing. */ |
| 855 | if (!get_device(cdev->dev.parent)) |
| 856 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | sch = to_subchannel(cdev->dev.parent); |
Cornelia Huck | 6ab4879 | 2006-07-12 16:39:50 +0200 | [diff] [blame] | 858 | css_sch_device_unregister(sch); |
Peter Oberparleiter | 46fbe4e | 2008-10-10 21:33:05 +0200 | [diff] [blame] | 859 | /* Release subchannel reference for local processing. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | put_device(&sch->dev); |
| 861 | } |
| 862 | |
| 863 | /* |
| 864 | * subchannel recognition done. Called from the state machine. |
| 865 | */ |
| 866 | void |
| 867 | io_subchannel_recog_done(struct ccw_device *cdev) |
| 868 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | if (css_init_done == 0) { |
| 870 | cdev->private->flags.recog_done = 1; |
| 871 | return; |
| 872 | } |
| 873 | switch (cdev->private->state) { |
Sebastian Ott | 47593bf | 2009-03-31 19:16:05 +0200 | [diff] [blame] | 874 | case DEV_STATE_BOXED: |
| 875 | /* Device did not respond in time. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | case DEV_STATE_NOT_OPER: |
| 877 | cdev->private->flags.recog_done = 1; |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 878 | /* Remove device found not operational. */ |
| 879 | ccw_device_sched_todo(cdev, CDEV_TODO_UNREG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | if (atomic_dec_and_test(&ccw_device_init_count)) |
| 881 | wake_up(&ccw_device_init_wq); |
| 882 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | case DEV_STATE_OFFLINE: |
| 884 | /* |
| 885 | * We can't register the device in interrupt context so |
| 886 | * we schedule a work item. |
| 887 | */ |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 888 | ccw_device_sched_todo(cdev, CDEV_TODO_REGISTER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | break; |
| 890 | } |
| 891 | } |
| 892 | |
Peter Oberparleiter | 736b5db | 2009-12-07 12:51:21 +0100 | [diff] [blame] | 893 | static void io_subchannel_recog(struct ccw_device *cdev, struct subchannel *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | struct ccw_device_private *priv; |
| 896 | |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 897 | cdev->ccwlock = sch->lock; |
Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 898 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | /* Init private data. */ |
| 900 | priv = cdev->private; |
Cornelia Huck | 7896426 | 2006-10-11 15:31:38 +0200 | [diff] [blame] | 901 | priv->dev_id.devno = sch->schib.pmcw.dev; |
| 902 | priv->dev_id.ssid = sch->schid.ssid; |
| 903 | priv->schid = sch->schid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | priv->state = DEV_STATE_NOT_OPER; |
| 905 | INIT_LIST_HEAD(&priv->cmb_list); |
| 906 | init_waitqueue_head(&priv->wait_q); |
| 907 | init_timer(&priv->timer); |
| 908 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | /* Increase counter of devices currently in recognition. */ |
| 910 | atomic_inc(&ccw_device_init_count); |
| 911 | |
| 912 | /* Start async. device sensing. */ |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 913 | spin_lock_irq(sch->lock); |
Peter Oberparleiter | 60e4dac | 2009-12-07 12:51:16 +0100 | [diff] [blame] | 914 | sch_set_cdev(sch, cdev); |
Peter Oberparleiter | 736b5db | 2009-12-07 12:51:21 +0100 | [diff] [blame] | 915 | ccw_device_recognition(cdev); |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 916 | spin_unlock_irq(sch->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } |
| 918 | |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 919 | static int ccw_device_move_to_sch(struct ccw_device *cdev, |
| 920 | struct subchannel *sch) |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 921 | { |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 922 | struct subchannel *old_sch; |
Sebastian Ott | 0c609fc | 2009-12-07 12:51:37 +0100 | [diff] [blame] | 923 | int rc, old_enabled = 0; |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 924 | |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 925 | old_sch = to_subchannel(cdev->dev.parent); |
| 926 | /* Obtain child reference for new parent. */ |
Cornelia Huck | 6eff208 | 2008-12-25 13:39:07 +0100 | [diff] [blame] | 927 | if (!get_device(&sch->dev)) |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 928 | return -ENODEV; |
Sebastian Ott | 0c609fc | 2009-12-07 12:51:37 +0100 | [diff] [blame] | 929 | |
| 930 | if (!sch_is_pseudo_sch(old_sch)) { |
| 931 | spin_lock_irq(old_sch->lock); |
| 932 | old_enabled = old_sch->schib.pmcw.ena; |
| 933 | rc = 0; |
| 934 | if (old_enabled) |
| 935 | rc = cio_disable_subchannel(old_sch); |
| 936 | spin_unlock_irq(old_sch->lock); |
| 937 | if (rc == -EBUSY) { |
| 938 | /* Release child reference for new parent. */ |
| 939 | put_device(&sch->dev); |
| 940 | return rc; |
| 941 | } |
| 942 | } |
| 943 | |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 944 | mutex_lock(&sch->reg_mutex); |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 945 | rc = device_move(&cdev->dev, &sch->dev, DPM_ORDER_PARENT_BEFORE_DEV); |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 946 | mutex_unlock(&sch->reg_mutex); |
| 947 | if (rc) { |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 948 | CIO_MSG_EVENT(0, "device_move(0.%x.%04x,0.%x.%04x)=%d\n", |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 949 | cdev->private->dev_id.ssid, |
| 950 | cdev->private->dev_id.devno, sch->schid.ssid, |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 951 | sch->schib.pmcw.dev, rc); |
Sebastian Ott | 0c609fc | 2009-12-07 12:51:37 +0100 | [diff] [blame] | 952 | if (old_enabled) { |
| 953 | /* Try to reenable the old subchannel. */ |
| 954 | spin_lock_irq(old_sch->lock); |
| 955 | cio_enable_subchannel(old_sch, (u32)(addr_t)old_sch); |
| 956 | spin_unlock_irq(old_sch->lock); |
| 957 | } |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 958 | /* Release child reference for new parent. */ |
Cornelia Huck | 6eff208 | 2008-12-25 13:39:07 +0100 | [diff] [blame] | 959 | put_device(&sch->dev); |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 960 | return rc; |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 961 | } |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 962 | /* Clean up old subchannel. */ |
| 963 | if (!sch_is_pseudo_sch(old_sch)) { |
| 964 | spin_lock_irq(old_sch->lock); |
| 965 | sch_set_cdev(old_sch, NULL); |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 966 | spin_unlock_irq(old_sch->lock); |
| 967 | css_schedule_eval(old_sch->schid); |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 968 | } |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 969 | /* Release child reference for old parent. */ |
| 970 | put_device(&old_sch->dev); |
| 971 | /* Initialize new subchannel. */ |
| 972 | spin_lock_irq(sch->lock); |
| 973 | cdev->private->schid = sch->schid; |
| 974 | cdev->ccwlock = sch->lock; |
| 975 | if (!sch_is_pseudo_sch(sch)) |
| 976 | sch_set_cdev(sch, cdev); |
| 977 | spin_unlock_irq(sch->lock); |
| 978 | if (!sch_is_pseudo_sch(sch)) |
| 979 | css_update_ssd_info(sch); |
| 980 | return 0; |
| 981 | } |
| 982 | |
| 983 | static int ccw_device_move_to_orph(struct ccw_device *cdev) |
| 984 | { |
| 985 | struct subchannel *sch = to_subchannel(cdev->dev.parent); |
| 986 | struct channel_subsystem *css = to_css(sch->dev.parent); |
| 987 | |
| 988 | return ccw_device_move_to_sch(cdev, css->pseudo_subchannel); |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 989 | } |
| 990 | |
Cornelia Huck | 602b20f | 2008-01-26 14:10:39 +0100 | [diff] [blame] | 991 | static void io_subchannel_irq(struct subchannel *sch) |
| 992 | { |
| 993 | struct ccw_device *cdev; |
| 994 | |
Cornelia Huck | db6a642 | 2008-01-26 14:10:46 +0100 | [diff] [blame] | 995 | cdev = sch_get_cdev(sch); |
Cornelia Huck | 602b20f | 2008-01-26 14:10:39 +0100 | [diff] [blame] | 996 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 997 | CIO_TRACE_EVENT(6, "IRQ"); |
| 998 | CIO_TRACE_EVENT(6, dev_name(&sch->dev)); |
Cornelia Huck | 602b20f | 2008-01-26 14:10:39 +0100 | [diff] [blame] | 999 | if (cdev) |
| 1000 | dev_fsm_event(cdev, DEV_EVENT_INTERRUPT); |
| 1001 | } |
| 1002 | |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 1003 | void io_subchannel_init_config(struct subchannel *sch) |
| 1004 | { |
| 1005 | memset(&sch->config, 0, sizeof(sch->config)); |
| 1006 | sch->config.csense = 1; |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 1007 | } |
| 1008 | |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 1009 | static void io_subchannel_init_fields(struct subchannel *sch) |
| 1010 | { |
| 1011 | if (cio_is_console(sch->schid)) |
| 1012 | sch->opm = 0xff; |
| 1013 | else |
| 1014 | sch->opm = chp_get_sch_opm(sch); |
| 1015 | sch->lpm = sch->schib.pmcw.pam & sch->opm; |
Cornelia Huck | 3a3fc29 | 2008-07-14 09:58:58 +0200 | [diff] [blame] | 1016 | sch->isc = cio_is_console(sch->schid) ? CONSOLE_ISC : IO_SCH_ISC; |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 1017 | |
| 1018 | CIO_MSG_EVENT(6, "Detected device %04x on subchannel 0.%x.%04X" |
| 1019 | " - PIM = %02X, PAM = %02X, POM = %02X\n", |
| 1020 | sch->schib.pmcw.dev, sch->schid.ssid, |
| 1021 | sch->schid.sch_no, sch->schib.pmcw.pim, |
| 1022 | sch->schib.pmcw.pam, sch->schib.pmcw.pom); |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 1023 | |
| 1024 | io_subchannel_init_config(sch); |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 1025 | } |
| 1026 | |
Cornelia Huck | 90ed2b6 | 2008-12-25 13:39:09 +0100 | [diff] [blame] | 1027 | /* |
| 1028 | * Note: We always return 0 so that we bind to the device even on error. |
| 1029 | * This is needed so that our remove function is called on unregister. |
| 1030 | */ |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 1031 | static int io_subchannel_probe(struct subchannel *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | struct ccw_device *cdev; |
| 1034 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | |
Peter Oberparleiter | 6d7c5af | 2009-10-14 12:43:50 +0200 | [diff] [blame] | 1036 | if (cio_is_console(sch->schid)) { |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 1037 | rc = sysfs_create_group(&sch->dev.kobj, |
| 1038 | &io_subchannel_attr_group); |
| 1039 | if (rc) |
| 1040 | CIO_MSG_EVENT(0, "Failed to create io subchannel " |
| 1041 | "attributes for subchannel " |
| 1042 | "0.%x.%04x (rc=%d)\n", |
| 1043 | sch->schid.ssid, sch->schid.sch_no, rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | /* |
Peter Oberparleiter | 6d7c5af | 2009-10-14 12:43:50 +0200 | [diff] [blame] | 1045 | * The console subchannel already has an associated ccw_device. |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 1046 | * Throw the delayed uevent for the subchannel, register |
Peter Oberparleiter | 6d7c5af | 2009-10-14 12:43:50 +0200 | [diff] [blame] | 1047 | * the ccw_device and exit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | */ |
Ming Lei | f67f129 | 2009-03-01 21:10:49 +0800 | [diff] [blame] | 1049 | dev_set_uevent_suppress(&sch->dev, 0); |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 1050 | kobject_uevent(&sch->dev.kobj, KOBJ_ADD); |
Peter Oberparleiter | 6d7c5af | 2009-10-14 12:43:50 +0200 | [diff] [blame] | 1051 | cdev = sch_get_cdev(sch); |
Cornelia Huck | e103178 | 2007-10-12 16:11:23 +0200 | [diff] [blame] | 1052 | cdev->dev.groups = ccwdev_attr_groups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | device_initialize(&cdev->dev); |
Sebastian Ott | 24a1872 | 2009-12-07 12:51:34 +0100 | [diff] [blame] | 1054 | cdev->private->flags.initialized = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | ccw_device_register(cdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | /* |
| 1057 | * Check if the device is already online. If it is |
Cornelia Huck | 9cd6742 | 2008-12-25 13:39:06 +0100 | [diff] [blame] | 1058 | * the reference count needs to be corrected since we |
| 1059 | * didn't obtain a reference in ccw_device_set_online. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | */ |
| 1061 | if (cdev->private->state != DEV_STATE_NOT_OPER && |
| 1062 | cdev->private->state != DEV_STATE_OFFLINE && |
| 1063 | cdev->private->state != DEV_STATE_BOXED) |
| 1064 | get_device(&cdev->dev); |
| 1065 | return 0; |
| 1066 | } |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 1067 | io_subchannel_init_fields(sch); |
Sebastian Ott | f444cc0 | 2008-12-25 13:39:14 +0100 | [diff] [blame] | 1068 | rc = cio_commit_config(sch); |
| 1069 | if (rc) |
| 1070 | goto out_schedule; |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 1071 | rc = sysfs_create_group(&sch->dev.kobj, |
| 1072 | &io_subchannel_attr_group); |
| 1073 | if (rc) |
Cornelia Huck | 90ed2b6 | 2008-12-25 13:39:09 +0100 | [diff] [blame] | 1074 | goto out_schedule; |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 1075 | /* Allocate I/O subchannel private data. */ |
| 1076 | sch->private = kzalloc(sizeof(struct io_subchannel_private), |
| 1077 | GFP_KERNEL | GFP_DMA); |
Cornelia Huck | 90ed2b6 | 2008-12-25 13:39:09 +0100 | [diff] [blame] | 1078 | if (!sch->private) |
Peter Oberparleiter | 48e4c38 | 2009-12-07 12:51:15 +0100 | [diff] [blame] | 1079 | goto out_schedule; |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1080 | css_schedule_eval(sch->schid); |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 1081 | return 0; |
Peter Oberparleiter | 48e4c38 | 2009-12-07 12:51:15 +0100 | [diff] [blame] | 1082 | |
Cornelia Huck | 90ed2b6 | 2008-12-25 13:39:09 +0100 | [diff] [blame] | 1083 | out_schedule: |
Peter Oberparleiter | 390935a | 2009-12-07 12:51:18 +0100 | [diff] [blame] | 1084 | spin_lock_irq(sch->lock); |
| 1085 | css_sched_sch_todo(sch, SCH_TODO_UNREG); |
| 1086 | spin_unlock_irq(sch->lock); |
Cornelia Huck | 90ed2b6 | 2008-12-25 13:39:09 +0100 | [diff] [blame] | 1087 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | } |
| 1089 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | static int |
Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 1091 | io_subchannel_remove (struct subchannel *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | { |
| 1093 | struct ccw_device *cdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | |
Cornelia Huck | db6a642 | 2008-01-26 14:10:46 +0100 | [diff] [blame] | 1095 | cdev = sch_get_cdev(sch); |
| 1096 | if (!cdev) |
Peter Oberparleiter | 48e4c38 | 2009-12-07 12:51:15 +0100 | [diff] [blame] | 1097 | goto out_free; |
Sebastian Ott | 6e9a0f6 | 2009-12-07 12:51:38 +0100 | [diff] [blame] | 1098 | io_subchannel_quiesce(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | /* Set ccw device to not operational and drop reference. */ |
Sebastian Ott | 7a8ad10 | 2009-12-07 12:51:39 +0100 | [diff] [blame] | 1100 | spin_lock_irq(cdev->ccwlock); |
Cornelia Huck | db6a642 | 2008-01-26 14:10:46 +0100 | [diff] [blame] | 1101 | sch_set_cdev(sch, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | cdev->private->state = DEV_STATE_NOT_OPER; |
Sebastian Ott | 7a8ad10 | 2009-12-07 12:51:39 +0100 | [diff] [blame] | 1103 | spin_unlock_irq(cdev->ccwlock); |
Cornelia Huck | ef99516 | 2007-04-27 16:01:39 +0200 | [diff] [blame] | 1104 | ccw_device_unregister(cdev); |
Peter Oberparleiter | 48e4c38 | 2009-12-07 12:51:15 +0100 | [diff] [blame] | 1105 | out_free: |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 1106 | kfree(sch->private); |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 1107 | sysfs_remove_group(&sch->dev.kobj, &io_subchannel_attr_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | return 0; |
| 1109 | } |
| 1110 | |
Cornelia Huck | 602b20f | 2008-01-26 14:10:39 +0100 | [diff] [blame] | 1111 | static void io_subchannel_verify(struct subchannel *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | { |
| 1113 | struct ccw_device *cdev; |
| 1114 | |
Cornelia Huck | db6a642 | 2008-01-26 14:10:46 +0100 | [diff] [blame] | 1115 | cdev = sch_get_cdev(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | if (cdev) |
| 1117 | dev_fsm_event(cdev, DEV_EVENT_VERIFY); |
| 1118 | } |
| 1119 | |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1120 | static void io_subchannel_terminate_path(struct subchannel *sch, u8 mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | { |
| 1122 | struct ccw_device *cdev; |
| 1123 | |
Cornelia Huck | db6a642 | 2008-01-26 14:10:46 +0100 | [diff] [blame] | 1124 | cdev = sch_get_cdev(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | if (!cdev) |
| 1126 | return; |
Peter Oberparleiter | 4257aae | 2009-12-07 12:51:29 +0100 | [diff] [blame] | 1127 | if (cio_update_schib(sch)) |
| 1128 | goto err; |
| 1129 | /* Check for I/O on path. */ |
| 1130 | if (scsw_actl(&sch->schib.scsw) == 0 || sch->schib.pmcw.lpum != mask) |
| 1131 | goto out; |
| 1132 | if (cdev->private->state == DEV_STATE_ONLINE) { |
| 1133 | ccw_device_kill_io(cdev); |
| 1134 | goto out; |
| 1135 | } |
| 1136 | if (cio_clear(sch)) |
| 1137 | goto err; |
| 1138 | out: |
| 1139 | /* Trigger path verification. */ |
| 1140 | dev_fsm_event(cdev, DEV_EVENT_VERIFY); |
| 1141 | return; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1142 | |
Peter Oberparleiter | 4257aae | 2009-12-07 12:51:29 +0100 | [diff] [blame] | 1143 | err: |
| 1144 | dev_fsm_event(cdev, DEV_EVENT_NOTOPER); |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1145 | } |
| 1146 | |
Cornelia Huck | 99611f8 | 2008-07-14 09:59:02 +0200 | [diff] [blame] | 1147 | static int io_subchannel_chp_event(struct subchannel *sch, |
| 1148 | struct chp_link *link, int event) |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1149 | { |
| 1150 | int mask; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1151 | |
Cornelia Huck | 99611f8 | 2008-07-14 09:59:02 +0200 | [diff] [blame] | 1152 | mask = chp_ssd_get_mask(&sch->ssd_info, link); |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1153 | if (!mask) |
| 1154 | return 0; |
| 1155 | switch (event) { |
| 1156 | case CHP_VARY_OFF: |
| 1157 | sch->opm &= ~mask; |
| 1158 | sch->lpm &= ~mask; |
| 1159 | io_subchannel_terminate_path(sch, mask); |
| 1160 | break; |
| 1161 | case CHP_VARY_ON: |
| 1162 | sch->opm |= mask; |
| 1163 | sch->lpm |= mask; |
| 1164 | io_subchannel_verify(sch); |
| 1165 | break; |
| 1166 | case CHP_OFFLINE: |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 1167 | if (cio_update_schib(sch)) |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1168 | return -ENODEV; |
| 1169 | io_subchannel_terminate_path(sch, mask); |
| 1170 | break; |
| 1171 | case CHP_ONLINE: |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 1172 | if (cio_update_schib(sch)) |
| 1173 | return -ENODEV; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1174 | sch->lpm |= mask & sch->opm; |
| 1175 | io_subchannel_verify(sch); |
| 1176 | break; |
| 1177 | } |
| 1178 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | } |
| 1180 | |
Sebastian Ott | 6e9a0f6 | 2009-12-07 12:51:38 +0100 | [diff] [blame] | 1181 | static void io_subchannel_quiesce(struct subchannel *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | struct ccw_device *cdev; |
| 1184 | int ret; |
| 1185 | |
Sebastian Ott | 56e6b79 | 2009-12-07 12:51:35 +0100 | [diff] [blame] | 1186 | spin_lock_irq(sch->lock); |
Cornelia Huck | db6a642 | 2008-01-26 14:10:46 +0100 | [diff] [blame] | 1187 | cdev = sch_get_cdev(sch); |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 1188 | if (cio_is_console(sch->schid)) |
Sebastian Ott | 56e6b79 | 2009-12-07 12:51:35 +0100 | [diff] [blame] | 1189 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | if (!sch->schib.pmcw.ena) |
Sebastian Ott | 56e6b79 | 2009-12-07 12:51:35 +0100 | [diff] [blame] | 1191 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | ret = cio_disable_subchannel(sch); |
| 1193 | if (ret != -EBUSY) |
Sebastian Ott | 56e6b79 | 2009-12-07 12:51:35 +0100 | [diff] [blame] | 1194 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | if (cdev->handler) |
Sebastian Ott | 56e6b79 | 2009-12-07 12:51:35 +0100 | [diff] [blame] | 1196 | cdev->handler(cdev, cdev->private->intparm, ERR_PTR(-EIO)); |
| 1197 | while (ret == -EBUSY) { |
| 1198 | cdev->private->state = DEV_STATE_QUIESCE; |
| 1199 | ret = ccw_device_cancel_halt_clear(cdev); |
| 1200 | if (ret == -EBUSY) { |
| 1201 | ccw_device_set_timeout(cdev, HZ/10); |
| 1202 | spin_unlock_irq(sch->lock); |
| 1203 | wait_event(cdev->private->wait_q, |
| 1204 | cdev->private->state != DEV_STATE_QUIESCE); |
| 1205 | spin_lock_irq(sch->lock); |
| 1206 | } |
| 1207 | ret = cio_disable_subchannel(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | } |
Sebastian Ott | 56e6b79 | 2009-12-07 12:51:35 +0100 | [diff] [blame] | 1209 | out_unlock: |
| 1210 | spin_unlock_irq(sch->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | } |
| 1212 | |
Sebastian Ott | 6e9a0f6 | 2009-12-07 12:51:38 +0100 | [diff] [blame] | 1213 | static void io_subchannel_shutdown(struct subchannel *sch) |
| 1214 | { |
| 1215 | io_subchannel_quiesce(sch); |
| 1216 | } |
| 1217 | |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1218 | static int device_is_disconnected(struct ccw_device *cdev) |
| 1219 | { |
| 1220 | if (!cdev) |
| 1221 | return 0; |
| 1222 | return (cdev->private->state == DEV_STATE_DISCONNECTED || |
| 1223 | cdev->private->state == DEV_STATE_DISCONNECTED_SENSE_ID); |
| 1224 | } |
| 1225 | |
| 1226 | static int recovery_check(struct device *dev, void *data) |
| 1227 | { |
| 1228 | struct ccw_device *cdev = to_ccwdev(dev); |
| 1229 | int *redo = data; |
| 1230 | |
| 1231 | spin_lock_irq(cdev->ccwlock); |
| 1232 | switch (cdev->private->state) { |
| 1233 | case DEV_STATE_DISCONNECTED: |
| 1234 | CIO_MSG_EVENT(3, "recovery: trigger 0.%x.%04x\n", |
| 1235 | cdev->private->dev_id.ssid, |
| 1236 | cdev->private->dev_id.devno); |
| 1237 | dev_fsm_event(cdev, DEV_EVENT_VERIFY); |
| 1238 | *redo = 1; |
| 1239 | break; |
| 1240 | case DEV_STATE_DISCONNECTED_SENSE_ID: |
| 1241 | *redo = 1; |
| 1242 | break; |
| 1243 | } |
| 1244 | spin_unlock_irq(cdev->ccwlock); |
| 1245 | |
| 1246 | return 0; |
| 1247 | } |
| 1248 | |
| 1249 | static void recovery_work_func(struct work_struct *unused) |
| 1250 | { |
| 1251 | int redo = 0; |
| 1252 | |
| 1253 | bus_for_each_dev(&ccw_bus_type, NULL, &redo, recovery_check); |
| 1254 | if (redo) { |
| 1255 | spin_lock_irq(&recovery_lock); |
| 1256 | if (!timer_pending(&recovery_timer)) { |
| 1257 | if (recovery_phase < ARRAY_SIZE(recovery_delay) - 1) |
| 1258 | recovery_phase++; |
| 1259 | mod_timer(&recovery_timer, jiffies + |
| 1260 | recovery_delay[recovery_phase] * HZ); |
| 1261 | } |
| 1262 | spin_unlock_irq(&recovery_lock); |
| 1263 | } else |
| 1264 | CIO_MSG_EVENT(4, "recovery: end\n"); |
| 1265 | } |
| 1266 | |
| 1267 | static DECLARE_WORK(recovery_work, recovery_work_func); |
| 1268 | |
| 1269 | static void recovery_func(unsigned long data) |
| 1270 | { |
| 1271 | /* |
| 1272 | * We can't do our recovery in softirq context and it's not |
| 1273 | * performance critical, so we schedule it. |
| 1274 | */ |
| 1275 | schedule_work(&recovery_work); |
| 1276 | } |
| 1277 | |
| 1278 | static void ccw_device_schedule_recovery(void) |
| 1279 | { |
| 1280 | unsigned long flags; |
| 1281 | |
| 1282 | CIO_MSG_EVENT(4, "recovery: schedule\n"); |
| 1283 | spin_lock_irqsave(&recovery_lock, flags); |
| 1284 | if (!timer_pending(&recovery_timer) || (recovery_phase != 0)) { |
| 1285 | recovery_phase = 0; |
| 1286 | mod_timer(&recovery_timer, jiffies + recovery_delay[0] * HZ); |
| 1287 | } |
| 1288 | spin_unlock_irqrestore(&recovery_lock, flags); |
| 1289 | } |
| 1290 | |
Peter Oberparleiter | ecf5d9e | 2008-10-10 21:33:06 +0200 | [diff] [blame] | 1291 | static int purge_fn(struct device *dev, void *data) |
| 1292 | { |
| 1293 | struct ccw_device *cdev = to_ccwdev(dev); |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 1294 | struct ccw_dev_id *id = &cdev->private->dev_id; |
Peter Oberparleiter | ecf5d9e | 2008-10-10 21:33:06 +0200 | [diff] [blame] | 1295 | |
| 1296 | spin_lock_irq(cdev->ccwlock); |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 1297 | if (is_blacklisted(id->ssid, id->devno) && |
| 1298 | (cdev->private->state == DEV_STATE_OFFLINE)) { |
| 1299 | CIO_MSG_EVENT(3, "ccw: purging 0.%x.%04x\n", id->ssid, |
| 1300 | id->devno); |
| 1301 | ccw_device_sched_todo(cdev, CDEV_TODO_UNREG); |
| 1302 | } |
Peter Oberparleiter | ecf5d9e | 2008-10-10 21:33:06 +0200 | [diff] [blame] | 1303 | spin_unlock_irq(cdev->ccwlock); |
Peter Oberparleiter | ecf5d9e | 2008-10-10 21:33:06 +0200 | [diff] [blame] | 1304 | /* Abort loop in case of pending signal. */ |
| 1305 | if (signal_pending(current)) |
| 1306 | return -EINTR; |
| 1307 | |
| 1308 | return 0; |
| 1309 | } |
| 1310 | |
| 1311 | /** |
| 1312 | * ccw_purge_blacklisted - purge unused, blacklisted devices |
| 1313 | * |
| 1314 | * Unregister all ccw devices that are offline and on the blacklist. |
| 1315 | */ |
| 1316 | int ccw_purge_blacklisted(void) |
| 1317 | { |
| 1318 | CIO_MSG_EVENT(2, "ccw: purging blacklisted devices\n"); |
| 1319 | bus_for_each_dev(&ccw_bus_type, NULL, NULL, purge_fn); |
| 1320 | return 0; |
| 1321 | } |
| 1322 | |
Peter Oberparleiter | 6afcc77 | 2009-10-06 10:34:02 +0200 | [diff] [blame] | 1323 | void ccw_device_set_disconnected(struct ccw_device *cdev) |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1324 | { |
| 1325 | if (!cdev) |
| 1326 | return; |
| 1327 | ccw_device_set_timeout(cdev, 0); |
| 1328 | cdev->private->flags.fake_irb = 0; |
| 1329 | cdev->private->state = DEV_STATE_DISCONNECTED; |
| 1330 | if (cdev->online) |
| 1331 | ccw_device_schedule_recovery(); |
| 1332 | } |
| 1333 | |
Peter Oberparleiter | 91c3691 | 2008-08-21 19:46:39 +0200 | [diff] [blame] | 1334 | void ccw_device_set_notoper(struct ccw_device *cdev) |
| 1335 | { |
| 1336 | struct subchannel *sch = to_subchannel(cdev->dev.parent); |
| 1337 | |
| 1338 | CIO_TRACE_EVENT(2, "notoper"); |
Cornelia Huck | b9d3aed | 2008-10-10 21:33:11 +0200 | [diff] [blame] | 1339 | CIO_TRACE_EVENT(2, dev_name(&sch->dev)); |
Peter Oberparleiter | 91c3691 | 2008-08-21 19:46:39 +0200 | [diff] [blame] | 1340 | ccw_device_set_timeout(cdev, 0); |
| 1341 | cio_disable_subchannel(sch); |
| 1342 | cdev->private->state = DEV_STATE_NOT_OPER; |
| 1343 | } |
| 1344 | |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1345 | enum io_sch_action { |
| 1346 | IO_SCH_UNREG, |
| 1347 | IO_SCH_ORPH_UNREG, |
| 1348 | IO_SCH_ATTACH, |
| 1349 | IO_SCH_UNREG_ATTACH, |
| 1350 | IO_SCH_ORPH_ATTACH, |
| 1351 | IO_SCH_REPROBE, |
| 1352 | IO_SCH_VERIFY, |
| 1353 | IO_SCH_DISC, |
| 1354 | IO_SCH_NOP, |
| 1355 | }; |
| 1356 | |
| 1357 | static enum io_sch_action sch_get_action(struct subchannel *sch) |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1358 | { |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1359 | struct ccw_device *cdev; |
| 1360 | |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1361 | cdev = sch_get_cdev(sch); |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1362 | if (cio_update_schib(sch)) { |
| 1363 | /* Not operational. */ |
| 1364 | if (!cdev) |
| 1365 | return IO_SCH_UNREG; |
Sebastian Ott | 76e6fb4 | 2010-02-26 22:37:28 +0100 | [diff] [blame] | 1366 | if (ccw_device_notify(cdev, CIO_GONE) != NOTIFY_OK) |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1367 | return IO_SCH_UNREG; |
| 1368 | return IO_SCH_ORPH_UNREG; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1369 | } |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1370 | /* Operational. */ |
| 1371 | if (!cdev) |
| 1372 | return IO_SCH_ATTACH; |
| 1373 | if (sch->schib.pmcw.dev != cdev->private->dev_id.devno) { |
Sebastian Ott | 76e6fb4 | 2010-02-26 22:37:28 +0100 | [diff] [blame] | 1374 | if (ccw_device_notify(cdev, CIO_GONE) != NOTIFY_OK) |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1375 | return IO_SCH_UNREG_ATTACH; |
| 1376 | return IO_SCH_ORPH_ATTACH; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1377 | } |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1378 | if ((sch->schib.pmcw.pam & sch->opm) == 0) { |
Sebastian Ott | 76e6fb4 | 2010-02-26 22:37:28 +0100 | [diff] [blame] | 1379 | if (ccw_device_notify(cdev, CIO_NO_PATH) != NOTIFY_OK) |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1380 | return IO_SCH_UNREG; |
| 1381 | return IO_SCH_DISC; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1382 | } |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1383 | if (device_is_disconnected(cdev)) |
| 1384 | return IO_SCH_REPROBE; |
| 1385 | if (cdev->online) |
| 1386 | return IO_SCH_VERIFY; |
| 1387 | return IO_SCH_NOP; |
| 1388 | } |
| 1389 | |
| 1390 | /** |
| 1391 | * io_subchannel_sch_event - process subchannel event |
| 1392 | * @sch: subchannel |
| 1393 | * @process: non-zero if function is called in process context |
| 1394 | * |
| 1395 | * An unspecified event occurred for this subchannel. Adjust data according |
| 1396 | * to the current operational state of the subchannel and device. Return |
| 1397 | * zero when the event has been handled sufficiently or -EAGAIN when this |
| 1398 | * function should be called again in process context. |
| 1399 | */ |
| 1400 | static int io_subchannel_sch_event(struct subchannel *sch, int process) |
| 1401 | { |
| 1402 | unsigned long flags; |
| 1403 | struct ccw_device *cdev; |
| 1404 | struct ccw_dev_id dev_id; |
| 1405 | enum io_sch_action action; |
| 1406 | int rc = -EAGAIN; |
| 1407 | |
| 1408 | spin_lock_irqsave(sch->lock, flags); |
| 1409 | if (!device_is_registered(&sch->dev)) |
| 1410 | goto out_unlock; |
Peter Oberparleiter | 390935a | 2009-12-07 12:51:18 +0100 | [diff] [blame] | 1411 | if (work_pending(&sch->todo_work)) |
| 1412 | goto out_unlock; |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 1413 | cdev = sch_get_cdev(sch); |
| 1414 | if (cdev && work_pending(&cdev->private->todo_work)) |
| 1415 | goto out_unlock; |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1416 | action = sch_get_action(sch); |
| 1417 | CIO_MSG_EVENT(2, "event: sch 0.%x.%04x, process=%d, action=%d\n", |
| 1418 | sch->schid.ssid, sch->schid.sch_no, process, |
| 1419 | action); |
| 1420 | /* Perform immediate actions while holding the lock. */ |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1421 | switch (action) { |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1422 | case IO_SCH_REPROBE: |
| 1423 | /* Trigger device recognition. */ |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1424 | ccw_device_trigger_reprobe(cdev); |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1425 | rc = 0; |
| 1426 | goto out_unlock; |
| 1427 | case IO_SCH_VERIFY: |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1428 | if (cdev->private->flags.resuming == 1) { |
| 1429 | if (cio_enable_subchannel(sch, (u32)(addr_t)sch)) { |
| 1430 | ccw_device_set_notoper(cdev); |
| 1431 | break; |
| 1432 | } |
| 1433 | } |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1434 | /* Trigger path verification. */ |
| 1435 | io_subchannel_verify(sch); |
| 1436 | rc = 0; |
| 1437 | goto out_unlock; |
| 1438 | case IO_SCH_DISC: |
| 1439 | ccw_device_set_disconnected(cdev); |
| 1440 | rc = 0; |
| 1441 | goto out_unlock; |
| 1442 | case IO_SCH_ORPH_UNREG: |
| 1443 | case IO_SCH_ORPH_ATTACH: |
Peter Oberparleiter | 6afcc77 | 2009-10-06 10:34:02 +0200 | [diff] [blame] | 1444 | ccw_device_set_disconnected(cdev); |
Peter Oberparleiter | 91c3691 | 2008-08-21 19:46:39 +0200 | [diff] [blame] | 1445 | break; |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1446 | case IO_SCH_UNREG_ATTACH: |
| 1447 | case IO_SCH_UNREG: |
| 1448 | if (cdev) |
| 1449 | ccw_device_set_notoper(cdev); |
| 1450 | break; |
| 1451 | case IO_SCH_NOP: |
| 1452 | rc = 0; |
| 1453 | goto out_unlock; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1454 | default: |
| 1455 | break; |
| 1456 | } |
| 1457 | spin_unlock_irqrestore(sch->lock, flags); |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1458 | /* All other actions require process context. */ |
| 1459 | if (!process) |
| 1460 | goto out; |
| 1461 | /* Handle attached ccw device. */ |
| 1462 | switch (action) { |
| 1463 | case IO_SCH_ORPH_UNREG: |
| 1464 | case IO_SCH_ORPH_ATTACH: |
| 1465 | /* Move ccw device to orphanage. */ |
| 1466 | rc = ccw_device_move_to_orph(cdev); |
| 1467 | if (rc) |
| 1468 | goto out; |
| 1469 | break; |
| 1470 | case IO_SCH_UNREG_ATTACH: |
| 1471 | /* Unregister ccw device. */ |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1472 | if (!cdev->private->flags.resuming) |
| 1473 | ccw_device_unregister(cdev); |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1474 | break; |
| 1475 | default: |
| 1476 | break; |
| 1477 | } |
| 1478 | /* Handle subchannel. */ |
| 1479 | switch (action) { |
| 1480 | case IO_SCH_ORPH_UNREG: |
| 1481 | case IO_SCH_UNREG: |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1482 | if (!cdev || !cdev->private->flags.resuming) |
| 1483 | css_sch_device_unregister(sch); |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1484 | break; |
| 1485 | case IO_SCH_ORPH_ATTACH: |
| 1486 | case IO_SCH_UNREG_ATTACH: |
| 1487 | case IO_SCH_ATTACH: |
| 1488 | dev_id.ssid = sch->schid.ssid; |
| 1489 | dev_id.devno = sch->schib.pmcw.dev; |
| 1490 | cdev = get_ccwdev_by_dev_id(&dev_id); |
| 1491 | if (!cdev) { |
| 1492 | sch_create_and_recog_new_device(sch); |
| 1493 | break; |
| 1494 | } |
| 1495 | rc = ccw_device_move_to_sch(cdev, sch); |
| 1496 | if (rc) { |
| 1497 | /* Release reference from get_ccwdev_by_dev_id() */ |
| 1498 | put_device(&cdev->dev); |
| 1499 | goto out; |
| 1500 | } |
| 1501 | spin_lock_irqsave(sch->lock, flags); |
| 1502 | ccw_device_trigger_reprobe(cdev); |
| 1503 | spin_unlock_irqrestore(sch->lock, flags); |
| 1504 | /* Release reference from get_ccwdev_by_dev_id() */ |
| 1505 | put_device(&cdev->dev); |
| 1506 | break; |
| 1507 | default: |
| 1508 | break; |
| 1509 | } |
| 1510 | return 0; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1511 | |
Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 1512 | out_unlock: |
| 1513 | spin_unlock_irqrestore(sch->lock, flags); |
| 1514 | out: |
| 1515 | return rc; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 1516 | } |
| 1517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | #ifdef CONFIG_CCW_CONSOLE |
| 1519 | static struct ccw_device console_cdev; |
| 1520 | static struct ccw_device_private console_private; |
| 1521 | static int console_cdev_in_use; |
| 1522 | |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 1523 | static DEFINE_SPINLOCK(ccw_console_lock); |
| 1524 | |
| 1525 | spinlock_t * cio_get_console_lock(void) |
| 1526 | { |
| 1527 | return &ccw_console_lock; |
| 1528 | } |
| 1529 | |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 1530 | static int ccw_device_console_enable(struct ccw_device *cdev, |
| 1531 | struct subchannel *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | { |
| 1533 | int rc; |
| 1534 | |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 1535 | /* Attach subchannel private data. */ |
| 1536 | sch->private = cio_get_console_priv(); |
| 1537 | memset(sch->private, 0, sizeof(struct io_subchannel_private)); |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 1538 | io_subchannel_init_fields(sch); |
Sebastian Ott | f444cc0 | 2008-12-25 13:39:14 +0100 | [diff] [blame] | 1539 | rc = cio_commit_config(sch); |
| 1540 | if (rc) |
| 1541 | return rc; |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 1542 | sch->driver = &io_subchannel_driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | /* Initialize the ccw_device structure. */ |
Heiko Carstens | 292888c | 2006-08-30 14:33:35 +0200 | [diff] [blame] | 1544 | cdev->dev.parent= &sch->dev; |
Sebastian Ott | ffa8d2a | 2009-12-18 17:43:15 +0100 | [diff] [blame] | 1545 | sch_set_cdev(sch, cdev); |
Peter Oberparleiter | 736b5db | 2009-12-07 12:51:21 +0100 | [diff] [blame] | 1546 | io_subchannel_recog(cdev, sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | /* Now wait for the async. recognition to come to an end. */ |
| 1548 | spin_lock_irq(cdev->ccwlock); |
| 1549 | while (!dev_fsm_final_state(cdev)) |
| 1550 | wait_cons_dev(); |
| 1551 | rc = -EIO; |
| 1552 | if (cdev->private->state != DEV_STATE_OFFLINE) |
| 1553 | goto out_unlock; |
| 1554 | ccw_device_online(cdev); |
| 1555 | while (!dev_fsm_final_state(cdev)) |
| 1556 | wait_cons_dev(); |
| 1557 | if (cdev->private->state != DEV_STATE_ONLINE) |
| 1558 | goto out_unlock; |
| 1559 | rc = 0; |
| 1560 | out_unlock: |
| 1561 | spin_unlock_irq(cdev->ccwlock); |
Peter Oberparleiter | 736b5db | 2009-12-07 12:51:21 +0100 | [diff] [blame] | 1562 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | } |
| 1564 | |
| 1565 | struct ccw_device * |
| 1566 | ccw_device_probe_console(void) |
| 1567 | { |
| 1568 | struct subchannel *sch; |
| 1569 | int ret; |
| 1570 | |
| 1571 | if (xchg(&console_cdev_in_use, 1) != 0) |
Peter Oberparleiter | 600b5d1 | 2006-02-01 03:06:35 -0800 | [diff] [blame] | 1572 | return ERR_PTR(-EBUSY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | sch = cio_probe_console(); |
| 1574 | if (IS_ERR(sch)) { |
| 1575 | console_cdev_in_use = 0; |
| 1576 | return (void *) sch; |
| 1577 | } |
| 1578 | memset(&console_cdev, 0, sizeof(struct ccw_device)); |
| 1579 | memset(&console_private, 0, sizeof(struct ccw_device_private)); |
| 1580 | console_cdev.private = &console_private; |
Martin Schwidefsky | c163753 | 2006-12-08 15:53:57 +0100 | [diff] [blame] | 1581 | console_private.cdev = &console_cdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | ret = ccw_device_console_enable(&console_cdev, sch); |
| 1583 | if (ret) { |
| 1584 | cio_release_console(); |
| 1585 | console_cdev_in_use = 0; |
| 1586 | return ERR_PTR(ret); |
| 1587 | } |
| 1588 | console_cdev.online = 1; |
| 1589 | return &console_cdev; |
| 1590 | } |
Cornelia Huck | 1f4e7ed | 2008-10-10 21:33:14 +0200 | [diff] [blame] | 1591 | |
Martin Schwidefsky | 6664845 | 2009-06-16 10:30:28 +0200 | [diff] [blame] | 1592 | static int ccw_device_pm_restore(struct device *dev); |
| 1593 | |
| 1594 | int ccw_device_force_console(void) |
| 1595 | { |
| 1596 | if (!console_cdev_in_use) |
| 1597 | return -ENODEV; |
| 1598 | return ccw_device_pm_restore(&console_cdev.dev); |
| 1599 | } |
| 1600 | EXPORT_SYMBOL_GPL(ccw_device_force_console); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | #endif |
| 1602 | |
| 1603 | /* |
| 1604 | * get ccw_device matching the busid, but only if owned by cdrv |
| 1605 | */ |
Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 1606 | static int |
| 1607 | __ccwdev_check_busid(struct device *dev, void *id) |
| 1608 | { |
| 1609 | char *bus_id; |
| 1610 | |
Cornelia Huck | 12975ae | 2006-10-11 15:31:47 +0200 | [diff] [blame] | 1611 | bus_id = id; |
Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 1612 | |
Kay Sievers | 98df67b | 2008-12-25 13:38:55 +0100 | [diff] [blame] | 1613 | return (strcmp(bus_id, dev_name(dev)) == 0); |
Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 1614 | } |
| 1615 | |
| 1616 | |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 1617 | /** |
| 1618 | * get_ccwdev_by_busid() - obtain device from a bus id |
| 1619 | * @cdrv: driver the device is owned by |
| 1620 | * @bus_id: bus id of the device to be searched |
| 1621 | * |
| 1622 | * This function searches all devices owned by @cdrv for a device with a bus |
| 1623 | * id matching @bus_id. |
| 1624 | * Returns: |
| 1625 | * If a match is found, its reference count of the found device is increased |
| 1626 | * and it is returned; else %NULL is returned. |
| 1627 | */ |
| 1628 | struct ccw_device *get_ccwdev_by_busid(struct ccw_driver *cdrv, |
| 1629 | const char *bus_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | { |
Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 1631 | struct device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | struct device_driver *drv; |
| 1633 | |
| 1634 | drv = get_driver(&cdrv->driver); |
| 1635 | if (!drv) |
Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 1636 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | |
Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 1638 | dev = driver_find_device(drv, NULL, (void *)bus_id, |
| 1639 | __ccwdev_check_busid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | put_driver(drv); |
| 1641 | |
Heiko Carstens | d2c993d | 2006-07-12 16:41:55 +0200 | [diff] [blame] | 1642 | return dev ? to_ccwdev(dev) : NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | } |
| 1644 | |
| 1645 | /************************** device driver handling ************************/ |
| 1646 | |
| 1647 | /* This is the implementation of the ccw_driver class. The probe, remove |
| 1648 | * and release methods are initially very similar to the device_driver |
| 1649 | * implementations, with the difference that they have ccw_device |
| 1650 | * arguments. |
| 1651 | * |
| 1652 | * A ccw driver also contains the information that is needed for |
| 1653 | * device matching. |
| 1654 | */ |
| 1655 | static int |
| 1656 | ccw_device_probe (struct device *dev) |
| 1657 | { |
| 1658 | struct ccw_device *cdev = to_ccwdev(dev); |
| 1659 | struct ccw_driver *cdrv = to_ccwdrv(dev->driver); |
| 1660 | int ret; |
| 1661 | |
| 1662 | cdev->drv = cdrv; /* to let the driver call _set_online */ |
| 1663 | |
| 1664 | ret = cdrv->probe ? cdrv->probe(cdev) : -ENODEV; |
| 1665 | |
| 1666 | if (ret) { |
Heiko Carstens | d2c993d | 2006-07-12 16:41:55 +0200 | [diff] [blame] | 1667 | cdev->drv = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | return ret; |
| 1669 | } |
| 1670 | |
| 1671 | return 0; |
| 1672 | } |
| 1673 | |
| 1674 | static int |
| 1675 | ccw_device_remove (struct device *dev) |
| 1676 | { |
| 1677 | struct ccw_device *cdev = to_ccwdev(dev); |
| 1678 | struct ccw_driver *cdrv = cdev->drv; |
| 1679 | int ret; |
| 1680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | if (cdrv->remove) |
| 1682 | cdrv->remove(cdev); |
| 1683 | if (cdev->online) { |
| 1684 | cdev->online = 0; |
| 1685 | spin_lock_irq(cdev->ccwlock); |
| 1686 | ret = ccw_device_offline(cdev); |
| 1687 | spin_unlock_irq(cdev->ccwlock); |
| 1688 | if (ret == 0) |
| 1689 | wait_event(cdev->private->wait_q, |
| 1690 | dev_fsm_final_state(cdev)); |
| 1691 | else |
Michael Ernst | 139b83d | 2008-05-07 09:22:54 +0200 | [diff] [blame] | 1692 | CIO_MSG_EVENT(0, "ccw_device_offline returned %d, " |
Cornelia Huck | e556bbb | 2007-07-27 12:29:19 +0200 | [diff] [blame] | 1693 | "device 0.%x.%04x\n", |
| 1694 | ret, cdev->private->dev_id.ssid, |
| 1695 | cdev->private->dev_id.devno); |
Cornelia Huck | 9cd6742 | 2008-12-25 13:39:06 +0100 | [diff] [blame] | 1696 | /* Give up reference obtained in ccw_device_set_online(). */ |
| 1697 | put_device(&cdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | } |
| 1699 | ccw_device_set_timeout(cdev, 0); |
Heiko Carstens | d2c993d | 2006-07-12 16:41:55 +0200 | [diff] [blame] | 1700 | cdev->drv = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | return 0; |
| 1702 | } |
| 1703 | |
Cornelia Huck | 958974fb | 2007-10-12 16:11:21 +0200 | [diff] [blame] | 1704 | static void ccw_device_shutdown(struct device *dev) |
| 1705 | { |
| 1706 | struct ccw_device *cdev; |
| 1707 | |
| 1708 | cdev = to_ccwdev(dev); |
| 1709 | if (cdev->drv && cdev->drv->shutdown) |
| 1710 | cdev->drv->shutdown(cdev); |
Cornelia Huck | 1842f2b | 2007-10-12 16:11:22 +0200 | [diff] [blame] | 1711 | disable_cmf(cdev); |
Cornelia Huck | 958974fb | 2007-10-12 16:11:21 +0200 | [diff] [blame] | 1712 | } |
| 1713 | |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1714 | static int ccw_device_pm_prepare(struct device *dev) |
| 1715 | { |
| 1716 | struct ccw_device *cdev = to_ccwdev(dev); |
| 1717 | |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 1718 | if (work_pending(&cdev->private->todo_work)) |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1719 | return -EAGAIN; |
| 1720 | /* Fail while device is being set online/offline. */ |
| 1721 | if (atomic_read(&cdev->private->onoff)) |
| 1722 | return -EAGAIN; |
| 1723 | |
| 1724 | if (cdev->online && cdev->drv && cdev->drv->prepare) |
| 1725 | return cdev->drv->prepare(cdev); |
| 1726 | |
| 1727 | return 0; |
| 1728 | } |
| 1729 | |
| 1730 | static void ccw_device_pm_complete(struct device *dev) |
| 1731 | { |
| 1732 | struct ccw_device *cdev = to_ccwdev(dev); |
| 1733 | |
| 1734 | if (cdev->online && cdev->drv && cdev->drv->complete) |
| 1735 | cdev->drv->complete(cdev); |
| 1736 | } |
| 1737 | |
| 1738 | static int ccw_device_pm_freeze(struct device *dev) |
| 1739 | { |
| 1740 | struct ccw_device *cdev = to_ccwdev(dev); |
| 1741 | struct subchannel *sch = to_subchannel(cdev->dev.parent); |
| 1742 | int ret, cm_enabled; |
| 1743 | |
| 1744 | /* Fail suspend while device is in transistional state. */ |
| 1745 | if (!dev_fsm_final_state(cdev)) |
| 1746 | return -EAGAIN; |
| 1747 | if (!cdev->online) |
| 1748 | return 0; |
| 1749 | if (cdev->drv && cdev->drv->freeze) { |
| 1750 | ret = cdev->drv->freeze(cdev); |
| 1751 | if (ret) |
| 1752 | return ret; |
| 1753 | } |
| 1754 | |
| 1755 | spin_lock_irq(sch->lock); |
| 1756 | cm_enabled = cdev->private->cmb != NULL; |
| 1757 | spin_unlock_irq(sch->lock); |
| 1758 | if (cm_enabled) { |
| 1759 | /* Don't have the css write on memory. */ |
| 1760 | ret = ccw_set_cmf(cdev, 0); |
| 1761 | if (ret) |
| 1762 | return ret; |
| 1763 | } |
| 1764 | /* From here on, disallow device driver I/O. */ |
| 1765 | spin_lock_irq(sch->lock); |
| 1766 | ret = cio_disable_subchannel(sch); |
| 1767 | spin_unlock_irq(sch->lock); |
| 1768 | |
| 1769 | return ret; |
| 1770 | } |
| 1771 | |
| 1772 | static int ccw_device_pm_thaw(struct device *dev) |
| 1773 | { |
| 1774 | struct ccw_device *cdev = to_ccwdev(dev); |
| 1775 | struct subchannel *sch = to_subchannel(cdev->dev.parent); |
| 1776 | int ret, cm_enabled; |
| 1777 | |
| 1778 | if (!cdev->online) |
| 1779 | return 0; |
| 1780 | |
| 1781 | spin_lock_irq(sch->lock); |
| 1782 | /* Allow device driver I/O again. */ |
| 1783 | ret = cio_enable_subchannel(sch, (u32)(addr_t)sch); |
| 1784 | cm_enabled = cdev->private->cmb != NULL; |
| 1785 | spin_unlock_irq(sch->lock); |
| 1786 | if (ret) |
| 1787 | return ret; |
| 1788 | |
| 1789 | if (cm_enabled) { |
| 1790 | ret = ccw_set_cmf(cdev, 1); |
| 1791 | if (ret) |
| 1792 | return ret; |
| 1793 | } |
| 1794 | |
| 1795 | if (cdev->drv && cdev->drv->thaw) |
| 1796 | ret = cdev->drv->thaw(cdev); |
| 1797 | |
| 1798 | return ret; |
| 1799 | } |
| 1800 | |
| 1801 | static void __ccw_device_pm_restore(struct ccw_device *cdev) |
| 1802 | { |
| 1803 | struct subchannel *sch = to_subchannel(cdev->dev.parent); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1804 | |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1805 | spin_lock_irq(sch->lock); |
| 1806 | if (cio_is_console(sch->schid)) { |
| 1807 | cio_enable_subchannel(sch, (u32)(addr_t)sch); |
| 1808 | goto out_unlock; |
| 1809 | } |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1810 | /* |
| 1811 | * While we were sleeping, devices may have gone or become |
| 1812 | * available again. Kick re-detection. |
| 1813 | */ |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1814 | cdev->private->flags.resuming = 1; |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1815 | css_schedule_eval(sch->schid); |
| 1816 | spin_unlock_irq(sch->lock); |
| 1817 | css_complete_work(); |
| 1818 | |
| 1819 | /* cdev may have been moved to a different subchannel. */ |
| 1820 | sch = to_subchannel(cdev->dev.parent); |
| 1821 | spin_lock_irq(sch->lock); |
| 1822 | if (cdev->private->state != DEV_STATE_ONLINE && |
| 1823 | cdev->private->state != DEV_STATE_OFFLINE) |
| 1824 | goto out_unlock; |
| 1825 | |
Peter Oberparleiter | 736b5db | 2009-12-07 12:51:21 +0100 | [diff] [blame] | 1826 | ccw_device_recognition(cdev); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1827 | spin_unlock_irq(sch->lock); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1828 | wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev) || |
| 1829 | cdev->private->state == DEV_STATE_DISCONNECTED); |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1830 | spin_lock_irq(sch->lock); |
| 1831 | |
| 1832 | out_unlock: |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1833 | cdev->private->flags.resuming = 0; |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1834 | spin_unlock_irq(sch->lock); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1835 | } |
| 1836 | |
| 1837 | static int resume_handle_boxed(struct ccw_device *cdev) |
| 1838 | { |
| 1839 | cdev->private->state = DEV_STATE_BOXED; |
Sebastian Ott | 76e6fb4 | 2010-02-26 22:37:28 +0100 | [diff] [blame] | 1840 | if (ccw_device_notify(cdev, CIO_BOXED) == NOTIFY_OK) |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1841 | return 0; |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 1842 | ccw_device_sched_todo(cdev, CDEV_TODO_UNREG); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1843 | return -ENODEV; |
| 1844 | } |
| 1845 | |
| 1846 | static int resume_handle_disc(struct ccw_device *cdev) |
| 1847 | { |
| 1848 | cdev->private->state = DEV_STATE_DISCONNECTED; |
Sebastian Ott | 76e6fb4 | 2010-02-26 22:37:28 +0100 | [diff] [blame] | 1849 | if (ccw_device_notify(cdev, CIO_GONE) == NOTIFY_OK) |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1850 | return 0; |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 1851 | ccw_device_sched_todo(cdev, CDEV_TODO_UNREG); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1852 | return -ENODEV; |
| 1853 | } |
| 1854 | |
| 1855 | static int ccw_device_pm_restore(struct device *dev) |
| 1856 | { |
| 1857 | struct ccw_device *cdev = to_ccwdev(dev); |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1858 | struct subchannel *sch; |
| 1859 | int ret = 0; |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1860 | |
| 1861 | __ccw_device_pm_restore(cdev); |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1862 | sch = to_subchannel(cdev->dev.parent); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1863 | spin_lock_irq(sch->lock); |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1864 | if (cio_is_console(sch->schid)) |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1865 | goto out_restore; |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1866 | |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1867 | /* check recognition results */ |
| 1868 | switch (cdev->private->state) { |
| 1869 | case DEV_STATE_OFFLINE: |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1870 | case DEV_STATE_ONLINE: |
| 1871 | cdev->private->flags.donotify = 0; |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1872 | break; |
| 1873 | case DEV_STATE_BOXED: |
| 1874 | ret = resume_handle_boxed(cdev); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1875 | if (ret) |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1876 | goto out_unlock; |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1877 | goto out_restore; |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1878 | default: |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1879 | ret = resume_handle_disc(cdev); |
| 1880 | if (ret) |
| 1881 | goto out_unlock; |
| 1882 | goto out_restore; |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1883 | } |
| 1884 | /* check if the device type has changed */ |
| 1885 | if (!ccw_device_test_sense_data(cdev)) { |
| 1886 | ccw_device_update_sense_data(cdev); |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 1887 | ccw_device_sched_todo(cdev, CDEV_TODO_REBIND); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1888 | ret = -ENODEV; |
| 1889 | goto out_unlock; |
| 1890 | } |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1891 | if (!cdev->online) |
| 1892 | goto out_unlock; |
| 1893 | |
| 1894 | if (ccw_device_online(cdev)) { |
| 1895 | ret = resume_handle_disc(cdev); |
| 1896 | if (ret) |
| 1897 | goto out_unlock; |
| 1898 | goto out_restore; |
| 1899 | } |
| 1900 | spin_unlock_irq(sch->lock); |
| 1901 | wait_event(cdev->private->wait_q, dev_fsm_final_state(cdev)); |
| 1902 | spin_lock_irq(sch->lock); |
| 1903 | |
| 1904 | if (ccw_device_notify(cdev, CIO_OPER) == NOTIFY_BAD) { |
| 1905 | ccw_device_sched_todo(cdev, CDEV_TODO_UNREG); |
| 1906 | ret = -ENODEV; |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1907 | goto out_unlock; |
| 1908 | } |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1909 | |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1910 | /* reenable cmf, if needed */ |
| 1911 | if (cdev->private->cmb) { |
| 1912 | spin_unlock_irq(sch->lock); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1913 | ret = ccw_set_cmf(cdev, 1); |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1914 | spin_lock_irq(sch->lock); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1915 | if (ret) { |
Sebastian Ott | f014824 | 2009-09-11 10:28:23 +0200 | [diff] [blame] | 1916 | CIO_MSG_EVENT(2, "resume: cdev 0.%x.%04x: cmf failed " |
| 1917 | "(rc=%d)\n", cdev->private->dev_id.ssid, |
| 1918 | cdev->private->dev_id.devno, ret); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1919 | ret = 0; |
| 1920 | } |
| 1921 | } |
| 1922 | |
| 1923 | out_restore: |
Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1924 | spin_unlock_irq(sch->lock); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1925 | if (cdev->online && cdev->drv && cdev->drv->restore) |
| 1926 | ret = cdev->drv->restore(cdev); |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1927 | return ret; |
| 1928 | |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1929 | out_unlock: |
| 1930 | spin_unlock_irq(sch->lock); |
| 1931 | return ret; |
| 1932 | } |
| 1933 | |
Alexey Dobriyan | 4714521 | 2009-12-14 18:00:08 -0800 | [diff] [blame] | 1934 | static const struct dev_pm_ops ccw_pm_ops = { |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1935 | .prepare = ccw_device_pm_prepare, |
| 1936 | .complete = ccw_device_pm_complete, |
| 1937 | .freeze = ccw_device_pm_freeze, |
| 1938 | .thaw = ccw_device_pm_thaw, |
| 1939 | .restore = ccw_device_pm_restore, |
| 1940 | }; |
| 1941 | |
Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 1942 | struct bus_type ccw_bus_type = { |
| 1943 | .name = "ccw", |
| 1944 | .match = ccw_bus_match, |
| 1945 | .uevent = ccw_uevent, |
| 1946 | .probe = ccw_device_probe, |
| 1947 | .remove = ccw_device_remove, |
Cornelia Huck | 958974fb | 2007-10-12 16:11:21 +0200 | [diff] [blame] | 1948 | .shutdown = ccw_device_shutdown, |
Sebastian Ott | 823d494 | 2009-06-16 10:30:20 +0200 | [diff] [blame] | 1949 | .pm = &ccw_pm_ops, |
Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 1950 | }; |
| 1951 | |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 1952 | /** |
| 1953 | * ccw_driver_register() - register a ccw driver |
| 1954 | * @cdriver: driver to be registered |
| 1955 | * |
| 1956 | * This function is mainly a wrapper around driver_register(). |
| 1957 | * Returns: |
| 1958 | * %0 on success and a negative error value on failure. |
| 1959 | */ |
| 1960 | int ccw_driver_register(struct ccw_driver *cdriver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | { |
| 1962 | struct device_driver *drv = &cdriver->driver; |
| 1963 | |
| 1964 | drv->bus = &ccw_bus_type; |
| 1965 | drv->name = cdriver->name; |
Cornelia Huck | 4beee64 | 2008-01-26 14:10:47 +0100 | [diff] [blame] | 1966 | drv->owner = cdriver->owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1967 | |
| 1968 | return driver_register(drv); |
| 1969 | } |
| 1970 | |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 1971 | /** |
| 1972 | * ccw_driver_unregister() - deregister a ccw driver |
| 1973 | * @cdriver: driver to be deregistered |
| 1974 | * |
| 1975 | * This function is mainly a wrapper around driver_unregister(). |
| 1976 | */ |
| 1977 | void ccw_driver_unregister(struct ccw_driver *cdriver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | { |
| 1979 | driver_unregister(&cdriver->driver); |
| 1980 | } |
| 1981 | |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 1982 | /* Helper func for qdio. */ |
| 1983 | struct subchannel_id |
| 1984 | ccw_device_get_subchannel_id(struct ccw_device *cdev) |
| 1985 | { |
| 1986 | struct subchannel *sch; |
| 1987 | |
| 1988 | sch = to_subchannel(cdev->dev.parent); |
| 1989 | return sch->schid; |
| 1990 | } |
| 1991 | |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 1992 | static void ccw_device_todo(struct work_struct *work) |
| 1993 | { |
| 1994 | struct ccw_device_private *priv; |
| 1995 | struct ccw_device *cdev; |
| 1996 | struct subchannel *sch; |
| 1997 | enum cdev_todo todo; |
| 1998 | |
| 1999 | priv = container_of(work, struct ccw_device_private, todo_work); |
| 2000 | cdev = priv->cdev; |
| 2001 | sch = to_subchannel(cdev->dev.parent); |
| 2002 | /* Find out todo. */ |
| 2003 | spin_lock_irq(cdev->ccwlock); |
| 2004 | todo = priv->todo; |
| 2005 | priv->todo = CDEV_TODO_NOTHING; |
| 2006 | CIO_MSG_EVENT(4, "cdev_todo: cdev=0.%x.%04x todo=%d\n", |
| 2007 | priv->dev_id.ssid, priv->dev_id.devno, todo); |
| 2008 | spin_unlock_irq(cdev->ccwlock); |
| 2009 | /* Perform todo. */ |
| 2010 | switch (todo) { |
| 2011 | case CDEV_TODO_ENABLE_CMF: |
| 2012 | cmf_reenable(cdev); |
| 2013 | break; |
| 2014 | case CDEV_TODO_REBIND: |
| 2015 | ccw_device_do_unbind_bind(cdev); |
| 2016 | break; |
| 2017 | case CDEV_TODO_REGISTER: |
| 2018 | io_subchannel_register(cdev); |
| 2019 | break; |
| 2020 | case CDEV_TODO_UNREG_EVAL: |
| 2021 | if (!sch_is_pseudo_sch(sch)) |
| 2022 | css_schedule_eval(sch->schid); |
| 2023 | /* fall-through */ |
| 2024 | case CDEV_TODO_UNREG: |
| 2025 | if (sch_is_pseudo_sch(sch)) |
| 2026 | ccw_device_unregister(cdev); |
| 2027 | else |
| 2028 | ccw_device_call_sch_unregister(cdev); |
| 2029 | break; |
| 2030 | default: |
| 2031 | break; |
| 2032 | } |
| 2033 | /* Release workqueue ref. */ |
| 2034 | put_device(&cdev->dev); |
| 2035 | } |
| 2036 | |
| 2037 | /** |
| 2038 | * ccw_device_sched_todo - schedule ccw device operation |
| 2039 | * @cdev: ccw device |
| 2040 | * @todo: todo |
| 2041 | * |
| 2042 | * Schedule the operation identified by @todo to be performed on the slow path |
| 2043 | * workqueue. Do nothing if another operation with higher priority is already |
| 2044 | * scheduled. Needs to be called with ccwdev lock held. |
| 2045 | */ |
| 2046 | void ccw_device_sched_todo(struct ccw_device *cdev, enum cdev_todo todo) |
| 2047 | { |
| 2048 | CIO_MSG_EVENT(4, "cdev_todo: sched cdev=0.%x.%04x todo=%d\n", |
| 2049 | cdev->private->dev_id.ssid, cdev->private->dev_id.devno, |
| 2050 | todo); |
| 2051 | if (cdev->private->todo >= todo) |
| 2052 | return; |
| 2053 | cdev->private->todo = todo; |
| 2054 | /* Get workqueue ref. */ |
| 2055 | if (!get_device(&cdev->dev)) |
| 2056 | return; |
Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 2057 | if (!queue_work(cio_work_q, &cdev->private->todo_work)) { |
Peter Oberparleiter | 37de53b | 2009-12-07 12:51:19 +0100 | [diff] [blame] | 2058 | /* Already queued, release workqueue ref. */ |
| 2059 | put_device(&cdev->dev); |
| 2060 | } |
| 2061 | } |
| 2062 | |
Michael Ernst | fd0457a | 2010-08-09 18:12:50 +0200 | [diff] [blame] | 2063 | /** |
| 2064 | * ccw_device_siosl() - initiate logging |
| 2065 | * @cdev: ccw device |
| 2066 | * |
| 2067 | * This function is used to invoke model-dependent logging within the channel |
| 2068 | * subsystem. |
| 2069 | */ |
| 2070 | int ccw_device_siosl(struct ccw_device *cdev) |
| 2071 | { |
| 2072 | struct subchannel *sch = to_subchannel(cdev->dev.parent); |
| 2073 | |
| 2074 | return chsc_siosl(sch->schid); |
| 2075 | } |
| 2076 | EXPORT_SYMBOL_GPL(ccw_device_siosl); |
| 2077 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | MODULE_LICENSE("GPL"); |
| 2079 | EXPORT_SYMBOL(ccw_device_set_online); |
| 2080 | EXPORT_SYMBOL(ccw_device_set_offline); |
| 2081 | EXPORT_SYMBOL(ccw_driver_register); |
| 2082 | EXPORT_SYMBOL(ccw_driver_unregister); |
| 2083 | EXPORT_SYMBOL(get_ccwdev_by_busid); |
| 2084 | EXPORT_SYMBOL(ccw_bus_type); |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 2085 | EXPORT_SYMBOL_GPL(ccw_device_get_subchannel_id); |