| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Sebastian Ott | dcbd16d | 2009-06-16 10:30:22 +0200 | [diff] [blame] | 2 |  * driver for channel subsystem | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 |  * | 
| Sebastian Ott | dcbd16d | 2009-06-16 10:30:22 +0200 | [diff] [blame] | 4 |  * Copyright IBM Corp. 2002, 2009 | 
 | 5 |  * | 
 | 6 |  * Author(s): Arnd Bergmann (arndb@de.ibm.com) | 
 | 7 |  *	      Cornelia Huck (cornelia.huck@de.ibm.com) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 |  */ | 
| Michael Ernst | e6d5a42 | 2008-12-25 13:39:36 +0100 | [diff] [blame] | 9 |  | 
 | 10 | #define KMSG_COMPONENT "cio" | 
 | 11 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt | 
 | 12 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/module.h> | 
 | 14 | #include <linux/init.h> | 
 | 15 | #include <linux/device.h> | 
 | 16 | #include <linux/slab.h> | 
 | 17 | #include <linux/errno.h> | 
 | 18 | #include <linux/list.h> | 
| Cornelia Huck | a55360d | 2007-10-12 16:11:20 +0200 | [diff] [blame] | 19 | #include <linux/reboot.h> | 
| Sebastian Ott | dcbd16d | 2009-06-16 10:30:22 +0200 | [diff] [blame] | 20 | #include <linux/suspend.h> | 
| Sebastian Ott | 879acca | 2010-02-26 22:37:25 +0100 | [diff] [blame] | 21 | #include <linux/proc_fs.h> | 
| Cornelia Huck | 3a3fc29 | 2008-07-14 09:58:58 +0200 | [diff] [blame] | 22 | #include <asm/isc.h> | 
| Heiko Carstens | f5daba1 | 2009-03-26 15:24:01 +0100 | [diff] [blame] | 23 | #include <asm/crw.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 |  | 
 | 25 | #include "css.h" | 
 | 26 | #include "cio.h" | 
 | 27 | #include "cio_debug.h" | 
 | 28 | #include "ioasm.h" | 
 | 29 | #include "chsc.h" | 
| Peter Oberparleiter | 40154b8 | 2006-06-29 14:57:03 +0200 | [diff] [blame] | 30 | #include "device.h" | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 31 | #include "idset.h" | 
| Peter Oberparleiter | 7ad6a24 | 2007-04-27 16:01:35 +0200 | [diff] [blame] | 32 | #include "chp.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | int css_init_done = 0; | 
| Sebastian Ott | b0a285d | 2009-09-22 22:58:37 +0200 | [diff] [blame] | 35 | int max_ssid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 |  | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 37 | struct channel_subsystem *channel_subsystems[__MAX_CSSID + 1]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 |  | 
| Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 39 | int | 
| Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 40 | for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *data) | 
 | 41 | { | 
 | 42 | 	struct subchannel_id schid; | 
 | 43 | 	int ret; | 
 | 44 |  | 
 | 45 | 	init_subchannel_id(&schid); | 
 | 46 | 	ret = -ENODEV; | 
 | 47 | 	do { | 
| Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 48 | 		do { | 
 | 49 | 			ret = fn(schid, data); | 
 | 50 | 			if (ret) | 
 | 51 | 				break; | 
 | 52 | 		} while (schid.sch_no++ < __MAX_SUBCHANNEL); | 
 | 53 | 		schid.sch_no = 0; | 
 | 54 | 	} while (schid.ssid++ < max_ssid); | 
| Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 55 | 	return ret; | 
 | 56 | } | 
 | 57 |  | 
| Peter Oberparleiter | e82a156 | 2008-01-26 14:10:48 +0100 | [diff] [blame] | 58 | struct cb_data { | 
 | 59 | 	void *data; | 
 | 60 | 	struct idset *set; | 
 | 61 | 	int (*fn_known_sch)(struct subchannel *, void *); | 
 | 62 | 	int (*fn_unknown_sch)(struct subchannel_id, void *); | 
 | 63 | }; | 
 | 64 |  | 
 | 65 | static int call_fn_known_sch(struct device *dev, void *data) | 
 | 66 | { | 
 | 67 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 68 | 	struct cb_data *cb = data; | 
 | 69 | 	int rc = 0; | 
 | 70 |  | 
 | 71 | 	idset_sch_del(cb->set, sch->schid); | 
 | 72 | 	if (cb->fn_known_sch) | 
 | 73 | 		rc = cb->fn_known_sch(sch, cb->data); | 
 | 74 | 	return rc; | 
 | 75 | } | 
 | 76 |  | 
 | 77 | static int call_fn_unknown_sch(struct subchannel_id schid, void *data) | 
 | 78 | { | 
 | 79 | 	struct cb_data *cb = data; | 
 | 80 | 	int rc = 0; | 
 | 81 |  | 
 | 82 | 	if (idset_sch_contains(cb->set, schid)) | 
 | 83 | 		rc = cb->fn_unknown_sch(schid, cb->data); | 
 | 84 | 	return rc; | 
 | 85 | } | 
 | 86 |  | 
| Sebastian Ott | 90ac24a | 2009-03-26 15:24:11 +0100 | [diff] [blame] | 87 | static int call_fn_all_sch(struct subchannel_id schid, void *data) | 
 | 88 | { | 
 | 89 | 	struct cb_data *cb = data; | 
 | 90 | 	struct subchannel *sch; | 
 | 91 | 	int rc = 0; | 
 | 92 |  | 
 | 93 | 	sch = get_subchannel_by_schid(schid); | 
 | 94 | 	if (sch) { | 
 | 95 | 		if (cb->fn_known_sch) | 
 | 96 | 			rc = cb->fn_known_sch(sch, cb->data); | 
 | 97 | 		put_device(&sch->dev); | 
 | 98 | 	} else { | 
 | 99 | 		if (cb->fn_unknown_sch) | 
 | 100 | 			rc = cb->fn_unknown_sch(schid, cb->data); | 
 | 101 | 	} | 
 | 102 |  | 
 | 103 | 	return rc; | 
 | 104 | } | 
 | 105 |  | 
| Peter Oberparleiter | e82a156 | 2008-01-26 14:10:48 +0100 | [diff] [blame] | 106 | int for_each_subchannel_staged(int (*fn_known)(struct subchannel *, void *), | 
 | 107 | 			       int (*fn_unknown)(struct subchannel_id, | 
 | 108 | 			       void *), void *data) | 
 | 109 | { | 
 | 110 | 	struct cb_data cb; | 
 | 111 | 	int rc; | 
 | 112 |  | 
| Peter Oberparleiter | e82a156 | 2008-01-26 14:10:48 +0100 | [diff] [blame] | 113 | 	cb.data = data; | 
 | 114 | 	cb.fn_known_sch = fn_known; | 
 | 115 | 	cb.fn_unknown_sch = fn_unknown; | 
| Sebastian Ott | 90ac24a | 2009-03-26 15:24:11 +0100 | [diff] [blame] | 116 |  | 
 | 117 | 	cb.set = idset_sch_new(); | 
 | 118 | 	if (!cb.set) | 
 | 119 | 		/* fall back to brute force scanning in case of oom */ | 
 | 120 | 		return for_each_subchannel(call_fn_all_sch, &cb); | 
 | 121 |  | 
 | 122 | 	idset_fill(cb.set); | 
 | 123 |  | 
| Peter Oberparleiter | e82a156 | 2008-01-26 14:10:48 +0100 | [diff] [blame] | 124 | 	/* Process registered subchannels. */ | 
 | 125 | 	rc = bus_for_each_dev(&css_bus_type, NULL, &cb, call_fn_known_sch); | 
 | 126 | 	if (rc) | 
 | 127 | 		goto out; | 
 | 128 | 	/* Process unregistered subchannels. */ | 
 | 129 | 	if (fn_unknown) | 
 | 130 | 		rc = for_each_subchannel(call_fn_unknown_sch, &cb); | 
 | 131 | out: | 
 | 132 | 	idset_free(cb.set); | 
 | 133 |  | 
 | 134 | 	return rc; | 
 | 135 | } | 
 | 136 |  | 
| Peter Oberparleiter | 390935a | 2009-12-07 12:51:18 +0100 | [diff] [blame] | 137 | static void css_sch_todo(struct work_struct *work); | 
 | 138 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | static struct subchannel * | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 140 | css_alloc_subchannel(struct subchannel_id schid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | { | 
 | 142 | 	struct subchannel *sch; | 
 | 143 | 	int ret; | 
 | 144 |  | 
 | 145 | 	sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA); | 
 | 146 | 	if (sch == NULL) | 
 | 147 | 		return ERR_PTR(-ENOMEM); | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 148 | 	ret = cio_validate_subchannel (sch, schid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | 	if (ret < 0) { | 
 | 150 | 		kfree(sch); | 
 | 151 | 		return ERR_PTR(ret); | 
 | 152 | 	} | 
| Peter Oberparleiter | 390935a | 2009-12-07 12:51:18 +0100 | [diff] [blame] | 153 | 	INIT_WORK(&sch->todo_work, css_sch_todo); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | 	return sch; | 
 | 155 | } | 
 | 156 |  | 
 | 157 | static void | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | css_subchannel_release(struct device *dev) | 
 | 159 | { | 
 | 160 | 	struct subchannel *sch; | 
 | 161 |  | 
 | 162 | 	sch = to_subchannel(dev); | 
| Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 163 | 	if (!cio_is_console(sch->schid)) { | 
| Peter Oberparleiter | 1da73bc | 2009-09-11 10:28:16 +0200 | [diff] [blame] | 164 | 		/* Reset intparm to zeroes. */ | 
 | 165 | 		sch->config.intparm = 0; | 
 | 166 | 		cio_commit_config(sch); | 
| Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 167 | 		kfree(sch->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | 		kfree(sch); | 
| Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 169 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | } | 
 | 171 |  | 
| Cornelia Huck | 07c6a33 | 2007-07-27 12:29:10 +0200 | [diff] [blame] | 172 | static int css_sch_device_register(struct subchannel *sch) | 
| Cornelia Huck | 6ab4879 | 2006-07-12 16:39:50 +0200 | [diff] [blame] | 173 | { | 
 | 174 | 	int ret; | 
 | 175 |  | 
 | 176 | 	mutex_lock(&sch->reg_mutex); | 
| Sebastian Ott | 6ee4fec | 2009-09-11 10:28:25 +0200 | [diff] [blame] | 177 | 	dev_set_name(&sch->dev, "0.%x.%04x", sch->schid.ssid, | 
 | 178 | 		     sch->schid.sch_no); | 
| Cornelia Huck | 6ab4879 | 2006-07-12 16:39:50 +0200 | [diff] [blame] | 179 | 	ret = device_register(&sch->dev); | 
 | 180 | 	mutex_unlock(&sch->reg_mutex); | 
 | 181 | 	return ret; | 
 | 182 | } | 
 | 183 |  | 
| Cornelia Huck | 44a1c19 | 2008-07-14 09:58:47 +0200 | [diff] [blame] | 184 | /** | 
 | 185 |  * css_sch_device_unregister - unregister a subchannel | 
 | 186 |  * @sch: subchannel to be unregistered | 
 | 187 |  */ | 
| Cornelia Huck | 6ab4879 | 2006-07-12 16:39:50 +0200 | [diff] [blame] | 188 | void css_sch_device_unregister(struct subchannel *sch) | 
 | 189 | { | 
 | 190 | 	mutex_lock(&sch->reg_mutex); | 
| Sebastian Ott | ef60cd1 | 2008-07-14 09:59:20 +0200 | [diff] [blame] | 191 | 	if (device_is_registered(&sch->dev)) | 
 | 192 | 		device_unregister(&sch->dev); | 
| Cornelia Huck | 6ab4879 | 2006-07-12 16:39:50 +0200 | [diff] [blame] | 193 | 	mutex_unlock(&sch->reg_mutex); | 
 | 194 | } | 
| Cornelia Huck | 44a1c19 | 2008-07-14 09:58:47 +0200 | [diff] [blame] | 195 | EXPORT_SYMBOL_GPL(css_sch_device_unregister); | 
| Cornelia Huck | 6ab4879 | 2006-07-12 16:39:50 +0200 | [diff] [blame] | 196 |  | 
| Peter Oberparleiter | 390935a | 2009-12-07 12:51:18 +0100 | [diff] [blame] | 197 | static void css_sch_todo(struct work_struct *work) | 
 | 198 | { | 
 | 199 | 	struct subchannel *sch; | 
 | 200 | 	enum sch_todo todo; | 
 | 201 |  | 
 | 202 | 	sch = container_of(work, struct subchannel, todo_work); | 
 | 203 | 	/* Find out todo. */ | 
 | 204 | 	spin_lock_irq(sch->lock); | 
 | 205 | 	todo = sch->todo; | 
 | 206 | 	CIO_MSG_EVENT(4, "sch_todo: sch=0.%x.%04x, todo=%d\n", sch->schid.ssid, | 
 | 207 | 		      sch->schid.sch_no, todo); | 
 | 208 | 	sch->todo = SCH_TODO_NOTHING; | 
 | 209 | 	spin_unlock_irq(sch->lock); | 
 | 210 | 	/* Perform todo. */ | 
 | 211 | 	if (todo == SCH_TODO_UNREG) | 
 | 212 | 		css_sch_device_unregister(sch); | 
 | 213 | 	/* Release workqueue ref. */ | 
 | 214 | 	put_device(&sch->dev); | 
 | 215 | } | 
 | 216 |  | 
 | 217 | /** | 
 | 218 |  * css_sched_sch_todo - schedule a subchannel operation | 
 | 219 |  * @sch: subchannel | 
 | 220 |  * @todo: todo | 
 | 221 |  * | 
 | 222 |  * Schedule the operation identified by @todo to be performed on the slow path | 
 | 223 |  * workqueue. Do nothing if another operation with higher priority is already | 
 | 224 |  * scheduled. Needs to be called with subchannel lock held. | 
 | 225 |  */ | 
 | 226 | void css_sched_sch_todo(struct subchannel *sch, enum sch_todo todo) | 
 | 227 | { | 
 | 228 | 	CIO_MSG_EVENT(4, "sch_todo: sched sch=0.%x.%04x todo=%d\n", | 
 | 229 | 		      sch->schid.ssid, sch->schid.sch_no, todo); | 
 | 230 | 	if (sch->todo >= todo) | 
 | 231 | 		return; | 
 | 232 | 	/* Get workqueue ref. */ | 
 | 233 | 	if (!get_device(&sch->dev)) | 
 | 234 | 		return; | 
 | 235 | 	sch->todo = todo; | 
| Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 236 | 	if (!queue_work(cio_work_q, &sch->todo_work)) { | 
| Peter Oberparleiter | 390935a | 2009-12-07 12:51:18 +0100 | [diff] [blame] | 237 | 		/* Already queued, release workqueue ref. */ | 
 | 238 | 		put_device(&sch->dev); | 
 | 239 | 	} | 
 | 240 | } | 
 | 241 |  | 
| Peter Oberparleiter | 7ad6a24 | 2007-04-27 16:01:35 +0200 | [diff] [blame] | 242 | static void ssd_from_pmcw(struct chsc_ssd_info *ssd, struct pmcw *pmcw) | 
 | 243 | { | 
 | 244 | 	int i; | 
 | 245 | 	int mask; | 
 | 246 |  | 
 | 247 | 	memset(ssd, 0, sizeof(struct chsc_ssd_info)); | 
 | 248 | 	ssd->path_mask = pmcw->pim; | 
 | 249 | 	for (i = 0; i < 8; i++) { | 
 | 250 | 		mask = 0x80 >> i; | 
 | 251 | 		if (pmcw->pim & mask) { | 
 | 252 | 			chp_id_init(&ssd->chpid[i]); | 
 | 253 | 			ssd->chpid[i].id = pmcw->chpid[i]; | 
 | 254 | 		} | 
 | 255 | 	} | 
 | 256 | } | 
 | 257 |  | 
 | 258 | static void ssd_register_chpids(struct chsc_ssd_info *ssd) | 
 | 259 | { | 
 | 260 | 	int i; | 
 | 261 | 	int mask; | 
 | 262 |  | 
 | 263 | 	for (i = 0; i < 8; i++) { | 
 | 264 | 		mask = 0x80 >> i; | 
 | 265 | 		if (ssd->path_mask & mask) | 
 | 266 | 			if (!chp_is_registered(ssd->chpid[i])) | 
 | 267 | 				chp_new(ssd->chpid[i]); | 
 | 268 | 	} | 
 | 269 | } | 
 | 270 |  | 
 | 271 | void css_update_ssd_info(struct subchannel *sch) | 
 | 272 | { | 
 | 273 | 	int ret; | 
 | 274 |  | 
 | 275 | 	if (cio_is_console(sch->schid)) { | 
 | 276 | 		/* Console is initialized too early for functions requiring | 
 | 277 | 		 * memory allocation. */ | 
 | 278 | 		ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw); | 
 | 279 | 	} else { | 
 | 280 | 		ret = chsc_get_ssd_info(sch->schid, &sch->ssd_info); | 
 | 281 | 		if (ret) | 
 | 282 | 			ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw); | 
 | 283 | 		ssd_register_chpids(&sch->ssd_info); | 
 | 284 | 	} | 
 | 285 | } | 
 | 286 |  | 
| Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 287 | static ssize_t type_show(struct device *dev, struct device_attribute *attr, | 
 | 288 | 			 char *buf) | 
 | 289 | { | 
 | 290 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 291 |  | 
 | 292 | 	return sprintf(buf, "%01x\n", sch->st); | 
 | 293 | } | 
 | 294 |  | 
 | 295 | static DEVICE_ATTR(type, 0444, type_show, NULL); | 
 | 296 |  | 
 | 297 | static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, | 
 | 298 | 			     char *buf) | 
 | 299 | { | 
 | 300 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 301 |  | 
 | 302 | 	return sprintf(buf, "css:t%01X\n", sch->st); | 
 | 303 | } | 
 | 304 |  | 
 | 305 | static DEVICE_ATTR(modalias, 0444, modalias_show, NULL); | 
 | 306 |  | 
 | 307 | static struct attribute *subch_attrs[] = { | 
 | 308 | 	&dev_attr_type.attr, | 
 | 309 | 	&dev_attr_modalias.attr, | 
 | 310 | 	NULL, | 
 | 311 | }; | 
 | 312 |  | 
 | 313 | static struct attribute_group subch_attr_group = { | 
 | 314 | 	.attrs = subch_attrs, | 
 | 315 | }; | 
 | 316 |  | 
| David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 317 | static const struct attribute_group *default_subch_attr_groups[] = { | 
| Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 318 | 	&subch_attr_group, | 
 | 319 | 	NULL, | 
 | 320 | }; | 
 | 321 |  | 
| Peter Oberparleiter | 7ad6a24 | 2007-04-27 16:01:35 +0200 | [diff] [blame] | 322 | static int css_register_subchannel(struct subchannel *sch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | { | 
 | 324 | 	int ret; | 
 | 325 |  | 
 | 326 | 	/* Initialize the subchannel structure */ | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 327 | 	sch->dev.parent = &channel_subsystems[0]->device; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | 	sch->dev.bus = &css_bus_type; | 
 | 329 | 	sch->dev.release = &css_subchannel_release; | 
| Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 330 | 	sch->dev.groups = default_subch_attr_groups; | 
| Cornelia Huck | 5bf04b2 | 2007-10-22 12:52:41 +0200 | [diff] [blame] | 331 | 	/* | 
 | 332 | 	 * We don't want to generate uevents for I/O subchannels that don't | 
 | 333 | 	 * have a working ccw device behind them since they will be | 
 | 334 | 	 * unregistered before they can be used anyway, so we delay the add | 
 | 335 | 	 * uevent until after device recognition was successful. | 
| Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 336 | 	 * Note that we suppress the uevent for all subchannel types; | 
 | 337 | 	 * the subchannel driver can decide itself when it wants to inform | 
 | 338 | 	 * userspace of its existence. | 
| Cornelia Huck | 5bf04b2 | 2007-10-22 12:52:41 +0200 | [diff] [blame] | 339 | 	 */ | 
| Ming Lei | f67f129 | 2009-03-01 21:10:49 +0800 | [diff] [blame] | 340 | 	dev_set_uevent_suppress(&sch->dev, 1); | 
| Peter Oberparleiter | 7ad6a24 | 2007-04-27 16:01:35 +0200 | [diff] [blame] | 341 | 	css_update_ssd_info(sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | 	/* make it known to the system */ | 
| Cornelia Huck | 6ab4879 | 2006-07-12 16:39:50 +0200 | [diff] [blame] | 343 | 	ret = css_sch_device_register(sch); | 
| Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 344 | 	if (ret) { | 
| Cornelia Huck | e556bbb | 2007-07-27 12:29:19 +0200 | [diff] [blame] | 345 | 		CIO_MSG_EVENT(0, "Could not register sch 0.%x.%04x: %d\n", | 
 | 346 | 			      sch->schid.ssid, sch->schid.sch_no, ret); | 
| Cornelia Huck | 7674da7 | 2006-12-08 15:54:21 +0100 | [diff] [blame] | 347 | 		return ret; | 
 | 348 | 	} | 
| Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 349 | 	if (!sch->driver) { | 
 | 350 | 		/* | 
 | 351 | 		 * No driver matched. Generate the uevent now so that | 
 | 352 | 		 * a fitting driver module may be loaded based on the | 
 | 353 | 		 * modalias. | 
 | 354 | 		 */ | 
| Ming Lei | f67f129 | 2009-03-01 21:10:49 +0800 | [diff] [blame] | 355 | 		dev_set_uevent_suppress(&sch->dev, 0); | 
| Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 356 | 		kobject_uevent(&sch->dev.kobj, KOBJ_ADD); | 
 | 357 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | 	return ret; | 
 | 359 | } | 
 | 360 |  | 
| Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 361 | int css_probe_device(struct subchannel_id schid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | { | 
 | 363 | 	int ret; | 
 | 364 | 	struct subchannel *sch; | 
 | 365 |  | 
| Sebastian Ott | 703e5c9 | 2009-09-22 22:58:38 +0200 | [diff] [blame] | 366 | 	if (cio_is_console(schid)) | 
 | 367 | 		sch = cio_get_console_subchannel(); | 
 | 368 | 	else { | 
 | 369 | 		sch = css_alloc_subchannel(schid); | 
 | 370 | 		if (IS_ERR(sch)) | 
 | 371 | 			return PTR_ERR(sch); | 
 | 372 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | 	ret = css_register_subchannel(sch); | 
| Sebastian Ott | 703e5c9 | 2009-09-22 22:58:38 +0200 | [diff] [blame] | 374 | 	if (ret) { | 
 | 375 | 		if (!cio_is_console(schid)) | 
 | 376 | 			put_device(&sch->dev); | 
 | 377 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | 	return ret; | 
 | 379 | } | 
 | 380 |  | 
| Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 381 | static int | 
 | 382 | check_subchannel(struct device * dev, void * data) | 
 | 383 | { | 
 | 384 | 	struct subchannel *sch; | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 385 | 	struct subchannel_id *schid = data; | 
| Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 386 |  | 
 | 387 | 	sch = to_subchannel(dev); | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 388 | 	return schid_equal(&sch->schid, schid); | 
| Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 389 | } | 
 | 390 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | struct subchannel * | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 392 | get_subchannel_by_schid(struct subchannel_id schid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | 	struct device *dev; | 
 | 395 |  | 
| Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 396 | 	dev = bus_find_device(&css_bus_type, NULL, | 
| Cornelia Huck | 12975ae | 2006-10-11 15:31:47 +0200 | [diff] [blame] | 397 | 			      &schid, check_subchannel); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 |  | 
| Cornelia Huck | b0744bd | 2005-06-25 14:55:27 -0700 | [diff] [blame] | 399 | 	return dev ? to_subchannel(dev) : NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | } | 
 | 401 |  | 
| Cornelia Huck | b279a4f | 2008-01-26 14:10:45 +0100 | [diff] [blame] | 402 | /** | 
 | 403 |  * css_sch_is_valid() - check if a subchannel is valid | 
 | 404 |  * @schib: subchannel information block for the subchannel | 
 | 405 |  */ | 
 | 406 | int css_sch_is_valid(struct schib *schib) | 
 | 407 | { | 
 | 408 | 	if ((schib->pmcw.st == SUBCHANNEL_TYPE_IO) && !schib->pmcw.dnv) | 
 | 409 | 		return 0; | 
| Cornelia Huck | b3a686f | 2008-07-14 09:58:48 +0200 | [diff] [blame] | 410 | 	if ((schib->pmcw.st == SUBCHANNEL_TYPE_MSG) && !schib->pmcw.w) | 
 | 411 | 		return 0; | 
| Cornelia Huck | b279a4f | 2008-01-26 14:10:45 +0100 | [diff] [blame] | 412 | 	return 1; | 
 | 413 | } | 
 | 414 | EXPORT_SYMBOL_GPL(css_sch_is_valid); | 
 | 415 |  | 
| Peter Oberparleiter | 564337f | 2006-09-20 16:00:01 +0200 | [diff] [blame] | 416 | static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow) | 
 | 417 | { | 
 | 418 | 	struct schib schib; | 
 | 419 |  | 
 | 420 | 	if (!slow) { | 
 | 421 | 		/* Will be done on the slow path. */ | 
 | 422 | 		return -EAGAIN; | 
 | 423 | 	} | 
| Cornelia Huck | b279a4f | 2008-01-26 14:10:45 +0100 | [diff] [blame] | 424 | 	if (stsch_err(schid, &schib) || !css_sch_is_valid(&schib)) { | 
| Peter Oberparleiter | 564337f | 2006-09-20 16:00:01 +0200 | [diff] [blame] | 425 | 		/* Unusable - ignore. */ | 
 | 426 | 		return 0; | 
 | 427 | 	} | 
| Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 428 | 	CIO_MSG_EVENT(4, "event: sch 0.%x.%04x, new\n", schid.ssid, | 
 | 429 | 		      schid.sch_no); | 
| Peter Oberparleiter | 564337f | 2006-09-20 16:00:01 +0200 | [diff] [blame] | 430 |  | 
 | 431 | 	return css_probe_device(schid); | 
 | 432 | } | 
 | 433 |  | 
| Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 434 | static int css_evaluate_known_subchannel(struct subchannel *sch, int slow) | 
 | 435 | { | 
 | 436 | 	int ret = 0; | 
 | 437 |  | 
 | 438 | 	if (sch->driver) { | 
 | 439 | 		if (sch->driver->sch_event) | 
 | 440 | 			ret = sch->driver->sch_event(sch, slow); | 
 | 441 | 		else | 
 | 442 | 			dev_dbg(&sch->dev, | 
 | 443 | 				"Got subchannel machine check but " | 
 | 444 | 				"no sch_event handler provided.\n"); | 
 | 445 | 	} | 
| Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 446 | 	if (ret != 0 && ret != -EAGAIN) { | 
 | 447 | 		CIO_MSG_EVENT(2, "eval: sch 0.%x.%04x, rc=%d\n", | 
 | 448 | 			      sch->schid.ssid, sch->schid.sch_no, ret); | 
 | 449 | 	} | 
| Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 450 | 	return ret; | 
 | 451 | } | 
 | 452 |  | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 453 | static void css_evaluate_subchannel(struct subchannel_id schid, int slow) | 
| Peter Oberparleiter | 564337f | 2006-09-20 16:00:01 +0200 | [diff] [blame] | 454 | { | 
 | 455 | 	struct subchannel *sch; | 
 | 456 | 	int ret; | 
 | 457 |  | 
 | 458 | 	sch = get_subchannel_by_schid(schid); | 
 | 459 | 	if (sch) { | 
 | 460 | 		ret = css_evaluate_known_subchannel(sch, slow); | 
 | 461 | 		put_device(&sch->dev); | 
 | 462 | 	} else | 
 | 463 | 		ret = css_evaluate_new_subchannel(schid, slow); | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 464 | 	if (ret == -EAGAIN) | 
 | 465 | 		css_schedule_eval(schid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | } | 
 | 467 |  | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 468 | static struct idset *slow_subchannel_set; | 
 | 469 | static spinlock_t slow_subchannel_lock; | 
| Sebastian Ott | 2553055 | 2009-09-22 22:58:34 +0200 | [diff] [blame] | 470 | static wait_queue_head_t css_eval_wq; | 
 | 471 | static atomic_t css_eval_scheduled; | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 472 |  | 
 | 473 | static int __init slow_subchannel_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | { | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 475 | 	spin_lock_init(&slow_subchannel_lock); | 
| Sebastian Ott | 2553055 | 2009-09-22 22:58:34 +0200 | [diff] [blame] | 476 | 	atomic_set(&css_eval_scheduled, 0); | 
 | 477 | 	init_waitqueue_head(&css_eval_wq); | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 478 | 	slow_subchannel_set = idset_sch_new(); | 
 | 479 | 	if (!slow_subchannel_set) { | 
| Cornelia Huck | e556bbb | 2007-07-27 12:29:19 +0200 | [diff] [blame] | 480 | 		CIO_MSG_EVENT(0, "could not allocate slow subchannel set\n"); | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 481 | 		return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | 	} | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 483 | 	return 0; | 
 | 484 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 |  | 
| Peter Oberparleiter | e82a156 | 2008-01-26 14:10:48 +0100 | [diff] [blame] | 486 | static int slow_eval_known_fn(struct subchannel *sch, void *data) | 
 | 487 | { | 
 | 488 | 	int eval; | 
 | 489 | 	int rc; | 
 | 490 |  | 
 | 491 | 	spin_lock_irq(&slow_subchannel_lock); | 
 | 492 | 	eval = idset_sch_contains(slow_subchannel_set, sch->schid); | 
 | 493 | 	idset_sch_del(slow_subchannel_set, sch->schid); | 
 | 494 | 	spin_unlock_irq(&slow_subchannel_lock); | 
 | 495 | 	if (eval) { | 
 | 496 | 		rc = css_evaluate_known_subchannel(sch, 1); | 
 | 497 | 		if (rc == -EAGAIN) | 
 | 498 | 			css_schedule_eval(sch->schid); | 
 | 499 | 	} | 
 | 500 | 	return 0; | 
 | 501 | } | 
 | 502 |  | 
 | 503 | static int slow_eval_unknown_fn(struct subchannel_id schid, void *data) | 
 | 504 | { | 
 | 505 | 	int eval; | 
 | 506 | 	int rc = 0; | 
 | 507 |  | 
 | 508 | 	spin_lock_irq(&slow_subchannel_lock); | 
 | 509 | 	eval = idset_sch_contains(slow_subchannel_set, schid); | 
 | 510 | 	idset_sch_del(slow_subchannel_set, schid); | 
 | 511 | 	spin_unlock_irq(&slow_subchannel_lock); | 
 | 512 | 	if (eval) { | 
 | 513 | 		rc = css_evaluate_new_subchannel(schid, 1); | 
 | 514 | 		switch (rc) { | 
 | 515 | 		case -EAGAIN: | 
 | 516 | 			css_schedule_eval(schid); | 
 | 517 | 			rc = 0; | 
 | 518 | 			break; | 
 | 519 | 		case -ENXIO: | 
 | 520 | 		case -ENOMEM: | 
 | 521 | 		case -EIO: | 
 | 522 | 			/* These should abort looping */ | 
 | 523 | 			break; | 
 | 524 | 		default: | 
 | 525 | 			rc = 0; | 
 | 526 | 		} | 
 | 527 | 	} | 
 | 528 | 	return rc; | 
 | 529 | } | 
 | 530 |  | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 531 | static void css_slow_path_func(struct work_struct *unused) | 
 | 532 | { | 
| Sebastian Ott | 2553055 | 2009-09-22 22:58:34 +0200 | [diff] [blame] | 533 | 	unsigned long flags; | 
 | 534 |  | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 535 | 	CIO_TRACE_EVENT(4, "slowpath"); | 
| Peter Oberparleiter | e82a156 | 2008-01-26 14:10:48 +0100 | [diff] [blame] | 536 | 	for_each_subchannel_staged(slow_eval_known_fn, slow_eval_unknown_fn, | 
 | 537 | 				   NULL); | 
| Sebastian Ott | 2553055 | 2009-09-22 22:58:34 +0200 | [diff] [blame] | 538 | 	spin_lock_irqsave(&slow_subchannel_lock, flags); | 
 | 539 | 	if (idset_is_empty(slow_subchannel_set)) { | 
 | 540 | 		atomic_set(&css_eval_scheduled, 0); | 
 | 541 | 		wake_up(&css_eval_wq); | 
 | 542 | 	} | 
 | 543 | 	spin_unlock_irqrestore(&slow_subchannel_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | } | 
 | 545 |  | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 546 | static DECLARE_WORK(slow_path_work, css_slow_path_func); | 
| Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 547 | struct workqueue_struct *cio_work_q; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 |  | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 549 | void css_schedule_eval(struct subchannel_id schid) | 
 | 550 | { | 
 | 551 | 	unsigned long flags; | 
 | 552 |  | 
 | 553 | 	spin_lock_irqsave(&slow_subchannel_lock, flags); | 
 | 554 | 	idset_sch_add(slow_subchannel_set, schid); | 
| Sebastian Ott | 2553055 | 2009-09-22 22:58:34 +0200 | [diff] [blame] | 555 | 	atomic_set(&css_eval_scheduled, 1); | 
| Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 556 | 	queue_work(cio_work_q, &slow_path_work); | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 557 | 	spin_unlock_irqrestore(&slow_subchannel_lock, flags); | 
 | 558 | } | 
 | 559 |  | 
 | 560 | void css_schedule_eval_all(void) | 
 | 561 | { | 
 | 562 | 	unsigned long flags; | 
 | 563 |  | 
 | 564 | 	spin_lock_irqsave(&slow_subchannel_lock, flags); | 
 | 565 | 	idset_fill(slow_subchannel_set); | 
| Sebastian Ott | 2553055 | 2009-09-22 22:58:34 +0200 | [diff] [blame] | 566 | 	atomic_set(&css_eval_scheduled, 1); | 
| Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 567 | 	queue_work(cio_work_q, &slow_path_work); | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 568 | 	spin_unlock_irqrestore(&slow_subchannel_lock, flags); | 
 | 569 | } | 
 | 570 |  | 
| Sebastian Ott | 703e5c9 | 2009-09-22 22:58:38 +0200 | [diff] [blame] | 571 | static int __unset_registered(struct device *dev, void *data) | 
 | 572 | { | 
 | 573 | 	struct idset *set = data; | 
 | 574 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 575 |  | 
 | 576 | 	idset_sch_del(set, sch->schid); | 
 | 577 | 	return 0; | 
 | 578 | } | 
 | 579 |  | 
 | 580 | void css_schedule_eval_all_unreg(void) | 
 | 581 | { | 
 | 582 | 	unsigned long flags; | 
 | 583 | 	struct idset *unreg_set; | 
 | 584 |  | 
 | 585 | 	/* Find unregistered subchannels. */ | 
 | 586 | 	unreg_set = idset_sch_new(); | 
 | 587 | 	if (!unreg_set) { | 
 | 588 | 		/* Fallback. */ | 
 | 589 | 		css_schedule_eval_all(); | 
 | 590 | 		return; | 
 | 591 | 	} | 
 | 592 | 	idset_fill(unreg_set); | 
 | 593 | 	bus_for_each_dev(&css_bus_type, NULL, unreg_set, __unset_registered); | 
 | 594 | 	/* Apply to slow_subchannel_set. */ | 
 | 595 | 	spin_lock_irqsave(&slow_subchannel_lock, flags); | 
 | 596 | 	idset_add_set(slow_subchannel_set, unreg_set); | 
 | 597 | 	atomic_set(&css_eval_scheduled, 1); | 
| Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 598 | 	queue_work(cio_work_q, &slow_path_work); | 
| Sebastian Ott | 703e5c9 | 2009-09-22 22:58:38 +0200 | [diff] [blame] | 599 | 	spin_unlock_irqrestore(&slow_subchannel_lock, flags); | 
 | 600 | 	idset_free(unreg_set); | 
 | 601 | } | 
 | 602 |  | 
| Cornelia Huck | 22806dc | 2008-04-17 07:45:59 +0200 | [diff] [blame] | 603 | void css_wait_for_slow_path(void) | 
 | 604 | { | 
| Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 605 | 	flush_workqueue(cio_work_q); | 
| Cornelia Huck | 22806dc | 2008-04-17 07:45:59 +0200 | [diff] [blame] | 606 | } | 
 | 607 |  | 
| Peter Oberparleiter | 40154b8 | 2006-06-29 14:57:03 +0200 | [diff] [blame] | 608 | /* Schedule reprobing of all unregistered subchannels. */ | 
 | 609 | void css_schedule_reprobe(void) | 
 | 610 | { | 
| Sebastian Ott | 703e5c9 | 2009-09-22 22:58:38 +0200 | [diff] [blame] | 611 | 	css_schedule_eval_all_unreg(); | 
| Peter Oberparleiter | 40154b8 | 2006-06-29 14:57:03 +0200 | [diff] [blame] | 612 | } | 
| Peter Oberparleiter | 40154b8 | 2006-06-29 14:57:03 +0200 | [diff] [blame] | 613 | EXPORT_SYMBOL_GPL(css_schedule_reprobe); | 
 | 614 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 |  * Called from the machine check handler for subchannel report words. | 
 | 617 |  */ | 
| Cornelia Huck | c115618 | 2008-07-14 09:58:46 +0200 | [diff] [blame] | 618 | static void css_process_crw(struct crw *crw0, struct crw *crw1, int overflow) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | { | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 620 | 	struct subchannel_id mchk_schid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 |  | 
| Cornelia Huck | c115618 | 2008-07-14 09:58:46 +0200 | [diff] [blame] | 622 | 	if (overflow) { | 
 | 623 | 		css_schedule_eval_all(); | 
 | 624 | 		return; | 
 | 625 | 	} | 
 | 626 | 	CIO_CRW_EVENT(2, "CRW0 reports slct=%d, oflw=%d, " | 
 | 627 | 		      "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n", | 
 | 628 | 		      crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc, | 
 | 629 | 		      crw0->erc, crw0->rsid); | 
 | 630 | 	if (crw1) | 
 | 631 | 		CIO_CRW_EVENT(2, "CRW1 reports slct=%d, oflw=%d, " | 
 | 632 | 			      "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n", | 
 | 633 | 			      crw1->slct, crw1->oflw, crw1->chn, crw1->rsc, | 
 | 634 | 			      crw1->anc, crw1->erc, crw1->rsid); | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 635 | 	init_subchannel_id(&mchk_schid); | 
| Cornelia Huck | c115618 | 2008-07-14 09:58:46 +0200 | [diff] [blame] | 636 | 	mchk_schid.sch_no = crw0->rsid; | 
 | 637 | 	if (crw1) | 
 | 638 | 		mchk_schid.ssid = (crw1->rsid >> 8) & 3; | 
| Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 639 |  | 
| Cornelia Huck | c115618 | 2008-07-14 09:58:46 +0200 | [diff] [blame] | 640 | 	/* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | 	 * Since we are always presented with IPI in the CRW, we have to | 
 | 642 | 	 * use stsch() to find out if the subchannel in question has come | 
 | 643 | 	 * or gone. | 
 | 644 | 	 */ | 
| Peter Oberparleiter | 83b3370 | 2007-04-27 16:01:34 +0200 | [diff] [blame] | 645 | 	css_evaluate_subchannel(mchk_schid, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | } | 
 | 647 |  | 
 | 648 | static void __init | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 649 | css_generate_pgid(struct channel_subsystem *css, u32 tod_high) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | { | 
| Martin Schwidefsky | 94038a9 | 2010-05-17 10:00:00 +0200 | [diff] [blame] | 651 | 	struct cpuid cpu_id; | 
 | 652 |  | 
| Cornelia Huck | 75784c0 | 2008-07-14 09:58:57 +0200 | [diff] [blame] | 653 | 	if (css_general_characteristics.mcss) { | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 654 | 		css->global_pgid.pgid_high.ext_cssid.version = 0x80; | 
 | 655 | 		css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid; | 
 | 656 | 	} else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | #ifdef CONFIG_SMP | 
| Martin Schwidefsky | 7b46848 | 2009-03-26 15:24:42 +0100 | [diff] [blame] | 658 | 		css->global_pgid.pgid_high.cpu_addr = stap(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | #else | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 660 | 		css->global_pgid.pgid_high.cpu_addr = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | #endif | 
 | 662 | 	} | 
| Martin Schwidefsky | 94038a9 | 2010-05-17 10:00:00 +0200 | [diff] [blame] | 663 | 	get_cpu_id(&cpu_id); | 
 | 664 | 	css->global_pgid.cpu_id = cpu_id.ident; | 
 | 665 | 	css->global_pgid.cpu_model = cpu_id.machine; | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 666 | 	css->global_pgid.tod_high = tod_high; | 
 | 667 |  | 
 | 668 | } | 
 | 669 |  | 
| Cornelia Huck | 3b79306 | 2006-01-06 00:19:26 -0800 | [diff] [blame] | 670 | static void | 
 | 671 | channel_subsystem_release(struct device *dev) | 
 | 672 | { | 
 | 673 | 	struct channel_subsystem *css; | 
 | 674 |  | 
 | 675 | 	css = to_css(dev); | 
| Cornelia Huck | 495a5b4 | 2006-03-24 03:15:14 -0800 | [diff] [blame] | 676 | 	mutex_destroy(&css->mutex); | 
| Cornelia Huck | a2164b8 | 2008-09-09 12:38:57 +0200 | [diff] [blame] | 677 | 	if (css->pseudo_subchannel) { | 
 | 678 | 		/* Implies that it has been generated but never registered. */ | 
 | 679 | 		css_subchannel_release(&css->pseudo_subchannel->dev); | 
 | 680 | 		css->pseudo_subchannel = NULL; | 
 | 681 | 	} | 
| Cornelia Huck | 3b79306 | 2006-01-06 00:19:26 -0800 | [diff] [blame] | 682 | 	kfree(css); | 
 | 683 | } | 
 | 684 |  | 
| Cornelia Huck | 495a5b4 | 2006-03-24 03:15:14 -0800 | [diff] [blame] | 685 | static ssize_t | 
 | 686 | css_cm_enable_show(struct device *dev, struct device_attribute *attr, | 
 | 687 | 		   char *buf) | 
 | 688 | { | 
 | 689 | 	struct channel_subsystem *css = to_css(dev); | 
| Michael Ernst | 8284fb19 | 2008-04-17 07:46:01 +0200 | [diff] [blame] | 690 | 	int ret; | 
| Cornelia Huck | 495a5b4 | 2006-03-24 03:15:14 -0800 | [diff] [blame] | 691 |  | 
 | 692 | 	if (!css) | 
 | 693 | 		return 0; | 
| Michael Ernst | 8284fb19 | 2008-04-17 07:46:01 +0200 | [diff] [blame] | 694 | 	mutex_lock(&css->mutex); | 
 | 695 | 	ret = sprintf(buf, "%x\n", css->cm_enabled); | 
 | 696 | 	mutex_unlock(&css->mutex); | 
 | 697 | 	return ret; | 
| Cornelia Huck | 495a5b4 | 2006-03-24 03:15:14 -0800 | [diff] [blame] | 698 | } | 
 | 699 |  | 
 | 700 | static ssize_t | 
 | 701 | css_cm_enable_store(struct device *dev, struct device_attribute *attr, | 
 | 702 | 		    const char *buf, size_t count) | 
 | 703 | { | 
 | 704 | 	struct channel_subsystem *css = to_css(dev); | 
 | 705 | 	int ret; | 
| Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 706 | 	unsigned long val; | 
| Cornelia Huck | 495a5b4 | 2006-03-24 03:15:14 -0800 | [diff] [blame] | 707 |  | 
| Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 708 | 	ret = strict_strtoul(buf, 16, &val); | 
 | 709 | 	if (ret) | 
 | 710 | 		return ret; | 
| Michael Ernst | 8284fb19 | 2008-04-17 07:46:01 +0200 | [diff] [blame] | 711 | 	mutex_lock(&css->mutex); | 
| Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 712 | 	switch (val) { | 
 | 713 | 	case 0: | 
| Cornelia Huck | 495a5b4 | 2006-03-24 03:15:14 -0800 | [diff] [blame] | 714 | 		ret = css->cm_enabled ? chsc_secm(css, 0) : 0; | 
 | 715 | 		break; | 
| Cornelia Huck | 2f97220 | 2008-04-30 13:38:33 +0200 | [diff] [blame] | 716 | 	case 1: | 
| Cornelia Huck | 495a5b4 | 2006-03-24 03:15:14 -0800 | [diff] [blame] | 717 | 		ret = css->cm_enabled ? 0 : chsc_secm(css, 1); | 
 | 718 | 		break; | 
 | 719 | 	default: | 
 | 720 | 		ret = -EINVAL; | 
 | 721 | 	} | 
| Michael Ernst | 8284fb19 | 2008-04-17 07:46:01 +0200 | [diff] [blame] | 722 | 	mutex_unlock(&css->mutex); | 
| Cornelia Huck | 495a5b4 | 2006-03-24 03:15:14 -0800 | [diff] [blame] | 723 | 	return ret < 0 ? ret : count; | 
 | 724 | } | 
 | 725 |  | 
 | 726 | static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store); | 
 | 727 |  | 
| Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 728 | static int __init setup_css(int nr) | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 729 | { | 
 | 730 | 	u32 tod_high; | 
| Cornelia Huck | d7b5a4c | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 731 | 	int ret; | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 732 | 	struct channel_subsystem *css; | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 733 |  | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 734 | 	css = channel_subsystems[nr]; | 
 | 735 | 	memset(css, 0, sizeof(struct channel_subsystem)); | 
 | 736 | 	css->pseudo_subchannel = | 
 | 737 | 		kzalloc(sizeof(*css->pseudo_subchannel), GFP_KERNEL); | 
 | 738 | 	if (!css->pseudo_subchannel) | 
| Cornelia Huck | d7b5a4c | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 739 | 		return -ENOMEM; | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 740 | 	css->pseudo_subchannel->dev.parent = &css->device; | 
 | 741 | 	css->pseudo_subchannel->dev.release = css_subchannel_release; | 
| Cornelia Huck | 1bf5b28 | 2008-10-10 21:33:10 +0200 | [diff] [blame] | 742 | 	dev_set_name(&css->pseudo_subchannel->dev, "defunct"); | 
| Peter Oberparleiter | 5d6e6b6 | 2009-12-07 12:51:17 +0100 | [diff] [blame] | 743 | 	mutex_init(&css->pseudo_subchannel->reg_mutex); | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 744 | 	ret = cio_create_sch_lock(css->pseudo_subchannel); | 
| Cornelia Huck | d7b5a4c | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 745 | 	if (ret) { | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 746 | 		kfree(css->pseudo_subchannel); | 
| Cornelia Huck | d7b5a4c | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 747 | 		return ret; | 
 | 748 | 	} | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 749 | 	mutex_init(&css->mutex); | 
 | 750 | 	css->valid = 1; | 
 | 751 | 	css->cssid = nr; | 
| Cornelia Huck | 1bf5b28 | 2008-10-10 21:33:10 +0200 | [diff] [blame] | 752 | 	dev_set_name(&css->device, "css%x", nr); | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 753 | 	css->device.release = channel_subsystem_release; | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 754 | 	tod_high = (u32) (get_clock() >> 32); | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 755 | 	css_generate_pgid(css, tod_high); | 
| Cornelia Huck | d7b5a4c | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 756 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | } | 
 | 758 |  | 
| Cornelia Huck | a55360d | 2007-10-12 16:11:20 +0200 | [diff] [blame] | 759 | static int css_reboot_event(struct notifier_block *this, | 
 | 760 | 			    unsigned long event, | 
 | 761 | 			    void *ptr) | 
 | 762 | { | 
 | 763 | 	int ret, i; | 
 | 764 |  | 
 | 765 | 	ret = NOTIFY_DONE; | 
 | 766 | 	for (i = 0; i <= __MAX_CSSID; i++) { | 
 | 767 | 		struct channel_subsystem *css; | 
 | 768 |  | 
 | 769 | 		css = channel_subsystems[i]; | 
| Michael Ernst | 8284fb19 | 2008-04-17 07:46:01 +0200 | [diff] [blame] | 770 | 		mutex_lock(&css->mutex); | 
| Cornelia Huck | a55360d | 2007-10-12 16:11:20 +0200 | [diff] [blame] | 771 | 		if (css->cm_enabled) | 
 | 772 | 			if (chsc_secm(css, 0)) | 
 | 773 | 				ret = NOTIFY_BAD; | 
| Michael Ernst | 8284fb19 | 2008-04-17 07:46:01 +0200 | [diff] [blame] | 774 | 		mutex_unlock(&css->mutex); | 
| Cornelia Huck | a55360d | 2007-10-12 16:11:20 +0200 | [diff] [blame] | 775 | 	} | 
 | 776 |  | 
 | 777 | 	return ret; | 
 | 778 | } | 
 | 779 |  | 
 | 780 | static struct notifier_block css_reboot_notifier = { | 
 | 781 | 	.notifier_call = css_reboot_event, | 
 | 782 | }; | 
 | 783 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | /* | 
| Sebastian Ott | dcbd16d | 2009-06-16 10:30:22 +0200 | [diff] [blame] | 785 |  * Since the css devices are neither on a bus nor have a class | 
 | 786 |  * nor have a special device type, we cannot stop/restart channel | 
 | 787 |  * path measurements via the normal suspend/resume callbacks, but have | 
 | 788 |  * to use notifiers. | 
 | 789 |  */ | 
 | 790 | static int css_power_event(struct notifier_block *this, unsigned long event, | 
 | 791 | 			   void *ptr) | 
 | 792 | { | 
 | 793 | 	void *secm_area; | 
 | 794 | 	int ret, i; | 
 | 795 |  | 
 | 796 | 	switch (event) { | 
 | 797 | 	case PM_HIBERNATION_PREPARE: | 
 | 798 | 	case PM_SUSPEND_PREPARE: | 
 | 799 | 		ret = NOTIFY_DONE; | 
 | 800 | 		for (i = 0; i <= __MAX_CSSID; i++) { | 
 | 801 | 			struct channel_subsystem *css; | 
 | 802 |  | 
 | 803 | 			css = channel_subsystems[i]; | 
 | 804 | 			mutex_lock(&css->mutex); | 
 | 805 | 			if (!css->cm_enabled) { | 
 | 806 | 				mutex_unlock(&css->mutex); | 
 | 807 | 				continue; | 
 | 808 | 			} | 
 | 809 | 			secm_area = (void *)get_zeroed_page(GFP_KERNEL | | 
 | 810 | 							    GFP_DMA); | 
 | 811 | 			if (secm_area) { | 
 | 812 | 				if (__chsc_do_secm(css, 0, secm_area)) | 
 | 813 | 					ret = NOTIFY_BAD; | 
 | 814 | 				free_page((unsigned long)secm_area); | 
 | 815 | 			} else | 
 | 816 | 				ret = NOTIFY_BAD; | 
 | 817 |  | 
 | 818 | 			mutex_unlock(&css->mutex); | 
 | 819 | 		} | 
 | 820 | 		break; | 
 | 821 | 	case PM_POST_HIBERNATION: | 
 | 822 | 	case PM_POST_SUSPEND: | 
 | 823 | 		ret = NOTIFY_DONE; | 
 | 824 | 		for (i = 0; i <= __MAX_CSSID; i++) { | 
 | 825 | 			struct channel_subsystem *css; | 
 | 826 |  | 
 | 827 | 			css = channel_subsystems[i]; | 
 | 828 | 			mutex_lock(&css->mutex); | 
 | 829 | 			if (!css->cm_enabled) { | 
 | 830 | 				mutex_unlock(&css->mutex); | 
 | 831 | 				continue; | 
 | 832 | 			} | 
 | 833 | 			secm_area = (void *)get_zeroed_page(GFP_KERNEL | | 
 | 834 | 							    GFP_DMA); | 
 | 835 | 			if (secm_area) { | 
 | 836 | 				if (__chsc_do_secm(css, 1, secm_area)) | 
 | 837 | 					ret = NOTIFY_BAD; | 
 | 838 | 				free_page((unsigned long)secm_area); | 
 | 839 | 			} else | 
 | 840 | 				ret = NOTIFY_BAD; | 
 | 841 |  | 
 | 842 | 			mutex_unlock(&css->mutex); | 
 | 843 | 		} | 
 | 844 | 		/* search for subchannels, which appeared during hibernation */ | 
 | 845 | 		css_schedule_reprobe(); | 
 | 846 | 		break; | 
 | 847 | 	default: | 
 | 848 | 		ret = NOTIFY_DONE; | 
 | 849 | 	} | 
 | 850 | 	return ret; | 
 | 851 |  | 
 | 852 | } | 
 | 853 | static struct notifier_block css_power_notifier = { | 
 | 854 | 	.notifier_call = css_power_event, | 
 | 855 | }; | 
 | 856 |  | 
 | 857 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 |  * Now that the driver core is running, we can setup our channel subsystem. | 
 | 859 |  * The struct subchannel's are created during probing (except for the | 
 | 860 |  * static console subchannel). | 
 | 861 |  */ | 
| Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 862 | static int __init css_bus_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | { | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 864 | 	int ret, i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 |  | 
| Cornelia Huck | 4434a38 | 2007-07-27 12:29:21 +0200 | [diff] [blame] | 866 | 	ret = chsc_determine_css_characteristics(); | 
 | 867 | 	if (ret == -ENOMEM) | 
| Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 868 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 |  | 
| Cornelia Huck | 4434a38 | 2007-07-27 12:29:21 +0200 | [diff] [blame] | 870 | 	ret = chsc_alloc_sei_area(); | 
 | 871 | 	if (ret) | 
 | 872 | 		goto out; | 
 | 873 |  | 
| Sebastian Ott | b0a285d | 2009-09-22 22:58:37 +0200 | [diff] [blame] | 874 | 	/* Try to enable MSS. */ | 
 | 875 | 	ret = chsc_enable_facility(CHSC_SDA_OC_MSS); | 
| Sebastian Ott | 818c272 | 2010-04-22 17:17:03 +0200 | [diff] [blame] | 876 | 	if (ret) | 
| Sebastian Ott | b0a285d | 2009-09-22 22:58:37 +0200 | [diff] [blame] | 877 | 		max_ssid = 0; | 
| Sebastian Ott | 818c272 | 2010-04-22 17:17:03 +0200 | [diff] [blame] | 878 | 	else /* Success. */ | 
 | 879 | 		max_ssid = __MAX_SSID; | 
| Sebastian Ott | b0a285d | 2009-09-22 22:58:37 +0200 | [diff] [blame] | 880 |  | 
| Cornelia Huck | 4434a38 | 2007-07-27 12:29:21 +0200 | [diff] [blame] | 881 | 	ret = slow_subchannel_init(); | 
 | 882 | 	if (ret) | 
 | 883 | 		goto out; | 
 | 884 |  | 
| Heiko Carstens | f5daba1 | 2009-03-26 15:24:01 +0100 | [diff] [blame] | 885 | 	ret = crw_register_handler(CRW_RSC_SCH, css_process_crw); | 
| Cornelia Huck | c115618 | 2008-07-14 09:58:46 +0200 | [diff] [blame] | 886 | 	if (ret) | 
 | 887 | 		goto out; | 
 | 888 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | 	if ((ret = bus_register(&css_bus_type))) | 
 | 890 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 |  | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 892 | 	/* Setup css structure. */ | 
 | 893 | 	for (i = 0; i <= __MAX_CSSID; i++) { | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 894 | 		struct channel_subsystem *css; | 
 | 895 |  | 
 | 896 | 		css = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL); | 
 | 897 | 		if (!css) { | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 898 | 			ret = -ENOMEM; | 
| Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 899 | 			goto out_unregister; | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 900 | 		} | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 901 | 		channel_subsystems[i] = css; | 
| Cornelia Huck | d7b5a4c | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 902 | 		ret = setup_css(i); | 
| Cornelia Huck | a2164b8 | 2008-09-09 12:38:57 +0200 | [diff] [blame] | 903 | 		if (ret) { | 
 | 904 | 			kfree(channel_subsystems[i]); | 
 | 905 | 			goto out_unregister; | 
 | 906 | 		} | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 907 | 		ret = device_register(&css->device); | 
| Cornelia Huck | a2164b8 | 2008-09-09 12:38:57 +0200 | [diff] [blame] | 908 | 		if (ret) { | 
 | 909 | 			put_device(&css->device); | 
 | 910 | 			goto out_unregister; | 
 | 911 | 		} | 
| Cornelia Huck | 75784c0 | 2008-07-14 09:58:57 +0200 | [diff] [blame] | 912 | 		if (css_chsc_characteristics.secm) { | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 913 | 			ret = device_create_file(&css->device, | 
| Cornelia Huck | 7e56081 | 2006-07-12 16:40:19 +0200 | [diff] [blame] | 914 | 						 &dev_attr_cm_enable); | 
 | 915 | 			if (ret) | 
 | 916 | 				goto out_device; | 
 | 917 | 		} | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 918 | 		ret = device_register(&css->pseudo_subchannel->dev); | 
| Sebastian Ott | c630493 | 2009-09-11 10:28:38 +0200 | [diff] [blame] | 919 | 		if (ret) { | 
 | 920 | 			put_device(&css->pseudo_subchannel->dev); | 
| Cornelia Huck | d7b5a4c | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 921 | 			goto out_file; | 
| Sebastian Ott | c630493 | 2009-09-11 10:28:38 +0200 | [diff] [blame] | 922 | 		} | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 923 | 	} | 
| Cornelia Huck | a55360d | 2007-10-12 16:11:20 +0200 | [diff] [blame] | 924 | 	ret = register_reboot_notifier(&css_reboot_notifier); | 
 | 925 | 	if (ret) | 
| Cornelia Huck | a2164b8 | 2008-09-09 12:38:57 +0200 | [diff] [blame] | 926 | 		goto out_unregister; | 
| Sebastian Ott | dcbd16d | 2009-06-16 10:30:22 +0200 | [diff] [blame] | 927 | 	ret = register_pm_notifier(&css_power_notifier); | 
 | 928 | 	if (ret) { | 
 | 929 | 		unregister_reboot_notifier(&css_reboot_notifier); | 
 | 930 | 		goto out_unregister; | 
 | 931 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | 	css_init_done = 1; | 
 | 933 |  | 
| Cornelia Huck | 3a3fc29 | 2008-07-14 09:58:58 +0200 | [diff] [blame] | 934 | 	/* Enable default isc for I/O subchannels. */ | 
| Cornelia Huck | 6ef556c | 2008-07-14 09:59:01 +0200 | [diff] [blame] | 935 | 	isc_register(IO_SCH_ISC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | 	return 0; | 
| Cornelia Huck | d7b5a4c | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 938 | out_file: | 
| Cornelia Huck | a2164b8 | 2008-09-09 12:38:57 +0200 | [diff] [blame] | 939 | 	if (css_chsc_characteristics.secm) | 
 | 940 | 		device_remove_file(&channel_subsystems[i]->device, | 
 | 941 | 				   &dev_attr_cm_enable); | 
| Cornelia Huck | 7e56081 | 2006-07-12 16:40:19 +0200 | [diff] [blame] | 942 | out_device: | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 943 | 	device_unregister(&channel_subsystems[i]->device); | 
| Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 944 | out_unregister: | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 945 | 	while (i > 0) { | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 946 | 		struct channel_subsystem *css; | 
 | 947 |  | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 948 | 		i--; | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 949 | 		css = channel_subsystems[i]; | 
 | 950 | 		device_unregister(&css->pseudo_subchannel->dev); | 
| Cornelia Huck | a2164b8 | 2008-09-09 12:38:57 +0200 | [diff] [blame] | 951 | 		css->pseudo_subchannel = NULL; | 
| Cornelia Huck | 75784c0 | 2008-07-14 09:58:57 +0200 | [diff] [blame] | 952 | 		if (css_chsc_characteristics.secm) | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 953 | 			device_remove_file(&css->device, | 
| Cornelia Huck | 495a5b4 | 2006-03-24 03:15:14 -0800 | [diff] [blame] | 954 | 					   &dev_attr_cm_enable); | 
| Cornelia Huck | 7c9f4e3 | 2007-10-12 16:11:13 +0200 | [diff] [blame] | 955 | 		device_unregister(&css->device); | 
| Cornelia Huck | a28c694 | 2006-01-06 00:19:23 -0800 | [diff] [blame] | 956 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | 	bus_unregister(&css_bus_type); | 
 | 958 | out: | 
| Heiko Carstens | f5daba1 | 2009-03-26 15:24:01 +0100 | [diff] [blame] | 959 | 	crw_unregister_handler(CRW_RSC_CSS); | 
| Cornelia Huck | 4434a38 | 2007-07-27 12:29:21 +0200 | [diff] [blame] | 960 | 	chsc_free_sei_area(); | 
| Sebastian Ott | b827d1c | 2009-09-22 22:58:36 +0200 | [diff] [blame] | 961 | 	idset_free(slow_subchannel_set); | 
| Michael Ernst | e6d5a42 | 2008-12-25 13:39:36 +0100 | [diff] [blame] | 962 | 	pr_alert("The CSS device driver initialization failed with " | 
 | 963 | 		 "errno=%d\n", ret); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | 	return ret; | 
 | 965 | } | 
 | 966 |  | 
| Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 967 | static void __init css_bus_cleanup(void) | 
 | 968 | { | 
 | 969 | 	struct channel_subsystem *css; | 
 | 970 | 	int i; | 
 | 971 |  | 
 | 972 | 	for (i = 0; i <= __MAX_CSSID; i++) { | 
 | 973 | 		css = channel_subsystems[i]; | 
 | 974 | 		device_unregister(&css->pseudo_subchannel->dev); | 
 | 975 | 		css->pseudo_subchannel = NULL; | 
 | 976 | 		if (css_chsc_characteristics.secm) | 
 | 977 | 			device_remove_file(&css->device, &dev_attr_cm_enable); | 
 | 978 | 		device_unregister(&css->device); | 
 | 979 | 	} | 
 | 980 | 	bus_unregister(&css_bus_type); | 
 | 981 | 	crw_unregister_handler(CRW_RSC_CSS); | 
 | 982 | 	chsc_free_sei_area(); | 
| Sebastian Ott | b827d1c | 2009-09-22 22:58:36 +0200 | [diff] [blame] | 983 | 	idset_free(slow_subchannel_set); | 
| Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 984 | 	isc_unregister(IO_SCH_ISC); | 
 | 985 | } | 
 | 986 |  | 
 | 987 | static int __init channel_subsystem_init(void) | 
 | 988 | { | 
 | 989 | 	int ret; | 
 | 990 |  | 
 | 991 | 	ret = css_bus_init(); | 
 | 992 | 	if (ret) | 
 | 993 | 		return ret; | 
| Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 994 | 	cio_work_q = create_singlethread_workqueue("cio"); | 
 | 995 | 	if (!cio_work_q) { | 
 | 996 | 		ret = -ENOMEM; | 
 | 997 | 		goto out_bus; | 
 | 998 | 	} | 
| Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 999 | 	ret = io_subchannel_init(); | 
 | 1000 | 	if (ret) | 
| Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 1001 | 		goto out_wq; | 
| Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 1002 |  | 
 | 1003 | 	return ret; | 
| Sebastian Ott | be5d382 | 2010-02-26 22:37:24 +0100 | [diff] [blame] | 1004 | out_wq: | 
 | 1005 | 	destroy_workqueue(cio_work_q); | 
 | 1006 | out_bus: | 
 | 1007 | 	css_bus_cleanup(); | 
 | 1008 | 	return ret; | 
| Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 1009 | } | 
 | 1010 | subsys_initcall(channel_subsystem_init); | 
 | 1011 |  | 
| Sebastian Ott | 8ea7f55 | 2009-09-22 22:58:35 +0200 | [diff] [blame] | 1012 | static int css_settle(struct device_driver *drv, void *unused) | 
 | 1013 | { | 
 | 1014 | 	struct css_driver *cssdrv = to_cssdriver(drv); | 
 | 1015 |  | 
 | 1016 | 	if (cssdrv->settle) | 
| Sebastian Ott | b4c7072 | 2010-02-26 22:37:27 +0100 | [diff] [blame] | 1017 | 		return cssdrv->settle(); | 
| Sebastian Ott | 8ea7f55 | 2009-09-22 22:58:35 +0200 | [diff] [blame] | 1018 | 	return 0; | 
 | 1019 | } | 
 | 1020 |  | 
| Sebastian Ott | 0d01bb8 | 2010-02-26 22:37:29 +0100 | [diff] [blame] | 1021 | int css_complete_work(void) | 
| Sebastian Ott | 879acca | 2010-02-26 22:37:25 +0100 | [diff] [blame] | 1022 | { | 
 | 1023 | 	int ret; | 
 | 1024 |  | 
 | 1025 | 	/* Wait for the evaluation of subchannels to finish. */ | 
| Sebastian Ott | b4c7072 | 2010-02-26 22:37:27 +0100 | [diff] [blame] | 1026 | 	ret = wait_event_interruptible(css_eval_wq, | 
 | 1027 | 				       atomic_read(&css_eval_scheduled) == 0); | 
 | 1028 | 	if (ret) | 
 | 1029 | 		return -EINTR; | 
| Sebastian Ott | 879acca | 2010-02-26 22:37:25 +0100 | [diff] [blame] | 1030 | 	flush_workqueue(cio_work_q); | 
 | 1031 | 	/* Wait for the subchannel type specific initialization to finish */ | 
| Sebastian Ott | b4c7072 | 2010-02-26 22:37:27 +0100 | [diff] [blame] | 1032 | 	return bus_for_each_drv(&css_bus_type, NULL, NULL, css_settle); | 
| Sebastian Ott | 879acca | 2010-02-26 22:37:25 +0100 | [diff] [blame] | 1033 | } | 
 | 1034 |  | 
 | 1035 |  | 
| Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 1036 | /* | 
 | 1037 |  * Wait for the initialization of devices to finish, to make sure we are | 
 | 1038 |  * done with our setup if the search for the root device starts. | 
 | 1039 |  */ | 
 | 1040 | static int __init channel_subsystem_init_sync(void) | 
 | 1041 | { | 
| Sebastian Ott | 703e5c9 | 2009-09-22 22:58:38 +0200 | [diff] [blame] | 1042 | 	/* Start initial subchannel evaluation. */ | 
 | 1043 | 	css_schedule_eval_all(); | 
| Sebastian Ott | 879acca | 2010-02-26 22:37:25 +0100 | [diff] [blame] | 1044 | 	css_complete_work(); | 
 | 1045 | 	return 0; | 
| Sebastian Ott | 2f17644 | 2009-09-22 22:58:33 +0200 | [diff] [blame] | 1046 | } | 
 | 1047 | subsys_initcall_sync(channel_subsystem_init_sync); | 
 | 1048 |  | 
| Sebastian Ott | 889ee95 | 2010-04-22 17:17:04 +0200 | [diff] [blame] | 1049 | void channel_subsystem_reinit(void) | 
 | 1050 | { | 
 | 1051 | 	chsc_enable_facility(CHSC_SDA_OC_MSS); | 
 | 1052 | } | 
 | 1053 |  | 
| Sebastian Ott | 879acca | 2010-02-26 22:37:25 +0100 | [diff] [blame] | 1054 | #ifdef CONFIG_PROC_FS | 
 | 1055 | static ssize_t cio_settle_write(struct file *file, const char __user *buf, | 
 | 1056 | 				size_t count, loff_t *ppos) | 
 | 1057 | { | 
| Sebastian Ott | b4c7072 | 2010-02-26 22:37:27 +0100 | [diff] [blame] | 1058 | 	int ret; | 
 | 1059 |  | 
| Sebastian Ott | 879acca | 2010-02-26 22:37:25 +0100 | [diff] [blame] | 1060 | 	/* Handle pending CRW's. */ | 
 | 1061 | 	crw_wait_for_channel_report(); | 
| Sebastian Ott | b4c7072 | 2010-02-26 22:37:27 +0100 | [diff] [blame] | 1062 | 	ret = css_complete_work(); | 
 | 1063 |  | 
 | 1064 | 	return ret ? ret : count; | 
| Sebastian Ott | 879acca | 2010-02-26 22:37:25 +0100 | [diff] [blame] | 1065 | } | 
 | 1066 |  | 
 | 1067 | static const struct file_operations cio_settle_proc_fops = { | 
| Martin Schwidefsky | 58ea91c | 2010-05-17 10:00:07 +0200 | [diff] [blame] | 1068 | 	.open = nonseekable_open, | 
| Sebastian Ott | 879acca | 2010-02-26 22:37:25 +0100 | [diff] [blame] | 1069 | 	.write = cio_settle_write, | 
 | 1070 | }; | 
 | 1071 |  | 
 | 1072 | static int __init cio_settle_init(void) | 
 | 1073 | { | 
 | 1074 | 	struct proc_dir_entry *entry; | 
 | 1075 |  | 
 | 1076 | 	entry = proc_create("cio_settle", S_IWUSR, NULL, | 
 | 1077 | 			    &cio_settle_proc_fops); | 
 | 1078 | 	if (!entry) | 
 | 1079 | 		return -ENOMEM; | 
 | 1080 | 	return 0; | 
 | 1081 | } | 
 | 1082 | device_initcall(cio_settle_init); | 
 | 1083 | #endif /*CONFIG_PROC_FS*/ | 
 | 1084 |  | 
| Cornelia Huck | d7b5a4c | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 1085 | int sch_is_pseudo_sch(struct subchannel *sch) | 
 | 1086 | { | 
 | 1087 | 	return sch == to_css(sch->dev.parent)->pseudo_subchannel; | 
 | 1088 | } | 
 | 1089 |  | 
| Cornelia Huck | f08adc0 | 2008-07-14 09:59:03 +0200 | [diff] [blame] | 1090 | static int css_bus_match(struct device *dev, struct device_driver *drv) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | { | 
| Cornelia Huck | 084325d | 2008-01-26 14:10:38 +0100 | [diff] [blame] | 1092 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 1093 | 	struct css_driver *driver = to_cssdriver(drv); | 
| Cornelia Huck | f08adc0 | 2008-07-14 09:59:03 +0200 | [diff] [blame] | 1094 | 	struct css_device_id *id; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 |  | 
| Cornelia Huck | f08adc0 | 2008-07-14 09:59:03 +0200 | [diff] [blame] | 1096 | 	for (id = driver->subchannel_type; id->match_flags; id++) { | 
 | 1097 | 		if (sch->st == id->type) | 
 | 1098 | 			return 1; | 
 | 1099 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 |  | 
 | 1101 | 	return 0; | 
 | 1102 | } | 
 | 1103 |  | 
| Cornelia Huck | 98c13c2 | 2008-01-26 14:10:40 +0100 | [diff] [blame] | 1104 | static int css_probe(struct device *dev) | 
| Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 1105 | { | 
 | 1106 | 	struct subchannel *sch; | 
| Cornelia Huck | 98c13c2 | 2008-01-26 14:10:40 +0100 | [diff] [blame] | 1107 | 	int ret; | 
| Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 1108 |  | 
 | 1109 | 	sch = to_subchannel(dev); | 
| Cornelia Huck | 084325d | 2008-01-26 14:10:38 +0100 | [diff] [blame] | 1110 | 	sch->driver = to_cssdriver(dev->driver); | 
| Cornelia Huck | 98c13c2 | 2008-01-26 14:10:40 +0100 | [diff] [blame] | 1111 | 	ret = sch->driver->probe ? sch->driver->probe(sch) : 0; | 
 | 1112 | 	if (ret) | 
 | 1113 | 		sch->driver = NULL; | 
 | 1114 | 	return ret; | 
| Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 1115 | } | 
 | 1116 |  | 
| Cornelia Huck | 98c13c2 | 2008-01-26 14:10:40 +0100 | [diff] [blame] | 1117 | static int css_remove(struct device *dev) | 
 | 1118 | { | 
 | 1119 | 	struct subchannel *sch; | 
 | 1120 | 	int ret; | 
 | 1121 |  | 
 | 1122 | 	sch = to_subchannel(dev); | 
 | 1123 | 	ret = sch->driver->remove ? sch->driver->remove(sch) : 0; | 
 | 1124 | 	sch->driver = NULL; | 
 | 1125 | 	return ret; | 
 | 1126 | } | 
 | 1127 |  | 
 | 1128 | static void css_shutdown(struct device *dev) | 
| Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 1129 | { | 
 | 1130 | 	struct subchannel *sch; | 
 | 1131 |  | 
 | 1132 | 	sch = to_subchannel(dev); | 
| Cornelia Huck | 98c13c2 | 2008-01-26 14:10:40 +0100 | [diff] [blame] | 1133 | 	if (sch->driver && sch->driver->shutdown) | 
| Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 1134 | 		sch->driver->shutdown(sch); | 
 | 1135 | } | 
 | 1136 |  | 
| Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 1137 | static int css_uevent(struct device *dev, struct kobj_uevent_env *env) | 
 | 1138 | { | 
 | 1139 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 1140 | 	int ret; | 
 | 1141 |  | 
 | 1142 | 	ret = add_uevent_var(env, "ST=%01X", sch->st); | 
 | 1143 | 	if (ret) | 
 | 1144 | 		return ret; | 
 | 1145 | 	ret = add_uevent_var(env, "MODALIAS=css:t%01X", sch->st); | 
 | 1146 | 	return ret; | 
 | 1147 | } | 
 | 1148 |  | 
| Sebastian Ott | dcbd16d | 2009-06-16 10:30:22 +0200 | [diff] [blame] | 1149 | static int css_pm_prepare(struct device *dev) | 
 | 1150 | { | 
 | 1151 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 1152 | 	struct css_driver *drv; | 
 | 1153 |  | 
 | 1154 | 	if (mutex_is_locked(&sch->reg_mutex)) | 
 | 1155 | 		return -EAGAIN; | 
 | 1156 | 	if (!sch->dev.driver) | 
 | 1157 | 		return 0; | 
 | 1158 | 	drv = to_cssdriver(sch->dev.driver); | 
 | 1159 | 	/* Notify drivers that they may not register children. */ | 
 | 1160 | 	return drv->prepare ? drv->prepare(sch) : 0; | 
 | 1161 | } | 
 | 1162 |  | 
 | 1163 | static void css_pm_complete(struct device *dev) | 
 | 1164 | { | 
 | 1165 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 1166 | 	struct css_driver *drv; | 
 | 1167 |  | 
 | 1168 | 	if (!sch->dev.driver) | 
 | 1169 | 		return; | 
 | 1170 | 	drv = to_cssdriver(sch->dev.driver); | 
 | 1171 | 	if (drv->complete) | 
 | 1172 | 		drv->complete(sch); | 
 | 1173 | } | 
 | 1174 |  | 
 | 1175 | static int css_pm_freeze(struct device *dev) | 
 | 1176 | { | 
 | 1177 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 1178 | 	struct css_driver *drv; | 
 | 1179 |  | 
 | 1180 | 	if (!sch->dev.driver) | 
 | 1181 | 		return 0; | 
 | 1182 | 	drv = to_cssdriver(sch->dev.driver); | 
 | 1183 | 	return drv->freeze ? drv->freeze(sch) : 0; | 
 | 1184 | } | 
 | 1185 |  | 
 | 1186 | static int css_pm_thaw(struct device *dev) | 
 | 1187 | { | 
 | 1188 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 1189 | 	struct css_driver *drv; | 
 | 1190 |  | 
 | 1191 | 	if (!sch->dev.driver) | 
 | 1192 | 		return 0; | 
 | 1193 | 	drv = to_cssdriver(sch->dev.driver); | 
 | 1194 | 	return drv->thaw ? drv->thaw(sch) : 0; | 
 | 1195 | } | 
 | 1196 |  | 
 | 1197 | static int css_pm_restore(struct device *dev) | 
 | 1198 | { | 
 | 1199 | 	struct subchannel *sch = to_subchannel(dev); | 
 | 1200 | 	struct css_driver *drv; | 
 | 1201 |  | 
 | 1202 | 	if (!sch->dev.driver) | 
 | 1203 | 		return 0; | 
 | 1204 | 	drv = to_cssdriver(sch->dev.driver); | 
 | 1205 | 	return drv->restore ? drv->restore(sch) : 0; | 
 | 1206 | } | 
 | 1207 |  | 
| Alexey Dobriyan | 4714521 | 2009-12-14 18:00:08 -0800 | [diff] [blame] | 1208 | static const struct dev_pm_ops css_pm_ops = { | 
| Sebastian Ott | dcbd16d | 2009-06-16 10:30:22 +0200 | [diff] [blame] | 1209 | 	.prepare = css_pm_prepare, | 
 | 1210 | 	.complete = css_pm_complete, | 
 | 1211 | 	.freeze = css_pm_freeze, | 
 | 1212 | 	.thaw = css_pm_thaw, | 
 | 1213 | 	.restore = css_pm_restore, | 
 | 1214 | }; | 
 | 1215 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | struct bus_type css_bus_type = { | 
| Cornelia Huck | 8bbace7 | 2006-01-11 10:56:22 +0100 | [diff] [blame] | 1217 | 	.name     = "css", | 
 | 1218 | 	.match    = css_bus_match, | 
 | 1219 | 	.probe    = css_probe, | 
 | 1220 | 	.remove   = css_remove, | 
 | 1221 | 	.shutdown = css_shutdown, | 
| Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 1222 | 	.uevent   = css_uevent, | 
| Sebastian Ott | dcbd16d | 2009-06-16 10:30:22 +0200 | [diff] [blame] | 1223 | 	.pm = &css_pm_ops, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | }; | 
 | 1225 |  | 
| Cornelia Huck | 25b7bb5 | 2008-01-26 14:10:41 +0100 | [diff] [blame] | 1226 | /** | 
 | 1227 |  * css_driver_register - register a css driver | 
 | 1228 |  * @cdrv: css driver to register | 
 | 1229 |  * | 
 | 1230 |  * This is mainly a wrapper around driver_register that sets name | 
 | 1231 |  * and bus_type in the embedded struct device_driver correctly. | 
 | 1232 |  */ | 
 | 1233 | int css_driver_register(struct css_driver *cdrv) | 
 | 1234 | { | 
 | 1235 | 	cdrv->drv.name = cdrv->name; | 
 | 1236 | 	cdrv->drv.bus = &css_bus_type; | 
| Cornelia Huck | 4beee64 | 2008-01-26 14:10:47 +0100 | [diff] [blame] | 1237 | 	cdrv->drv.owner = cdrv->owner; | 
| Cornelia Huck | 25b7bb5 | 2008-01-26 14:10:41 +0100 | [diff] [blame] | 1238 | 	return driver_register(&cdrv->drv); | 
 | 1239 | } | 
 | 1240 | EXPORT_SYMBOL_GPL(css_driver_register); | 
 | 1241 |  | 
 | 1242 | /** | 
 | 1243 |  * css_driver_unregister - unregister a css driver | 
 | 1244 |  * @cdrv: css driver to unregister | 
 | 1245 |  * | 
 | 1246 |  * This is a wrapper around driver_unregister. | 
 | 1247 |  */ | 
 | 1248 | void css_driver_unregister(struct css_driver *cdrv) | 
 | 1249 | { | 
 | 1250 | 	driver_unregister(&cdrv->drv); | 
 | 1251 | } | 
 | 1252 | EXPORT_SYMBOL_GPL(css_driver_unregister); | 
 | 1253 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | MODULE_LICENSE("GPL"); | 
 | 1255 | EXPORT_SYMBOL(css_bus_type); |