| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * sys.c - pseudo-bus for system 'devices' (cpus, PICs, timers, etc) | 
 | 3 |  * | 
 | 4 |  * Copyright (c) 2002-3 Patrick Mochel | 
 | 5 |  *               2002-3 Open Source Development Lab | 
 | 6 |  * | 
 | 7 |  * This file is released under the GPLv2 | 
 | 8 |  * | 
 | 9 |  * This exports a 'system' bus type. | 
 | 10 |  * By default, a 'sys' bus gets added to the root of the system. There will | 
 | 11 |  * always be core system devices. Devices can use sysdev_register() to | 
 | 12 |  * add themselves as children of the system bus. | 
 | 13 |  */ | 
 | 14 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/sysdev.h> | 
 | 16 | #include <linux/err.h> | 
 | 17 | #include <linux/module.h> | 
 | 18 | #include <linux/kernel.h> | 
 | 19 | #include <linux/init.h> | 
 | 20 | #include <linux/slab.h> | 
 | 21 | #include <linux/string.h> | 
| Pavel Machek | 438510f | 2005-04-16 15:25:24 -0700 | [diff] [blame] | 22 | #include <linux/pm.h> | 
| Adrian Bunk | f67d115 | 2006-01-19 17:30:17 +0100 | [diff] [blame] | 23 | #include <linux/device.h> | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 24 | #include <linux/mutex.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 |  | 
| Adrian Bunk | f67d115 | 2006-01-19 17:30:17 +0100 | [diff] [blame] | 26 | #include "base.h" | 
 | 27 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #define to_sysdev(k) container_of(k, struct sys_device, kobj) | 
 | 29 | #define to_sysdev_attr(a) container_of(a, struct sysdev_attribute, attr) | 
 | 30 |  | 
 | 31 |  | 
 | 32 | static ssize_t | 
 | 33 | sysdev_show(struct kobject * kobj, struct attribute * attr, char * buffer) | 
 | 34 | { | 
 | 35 | 	struct sys_device * sysdev = to_sysdev(kobj); | 
 | 36 | 	struct sysdev_attribute * sysdev_attr = to_sysdev_attr(attr); | 
 | 37 |  | 
 | 38 | 	if (sysdev_attr->show) | 
| Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 39 | 		return sysdev_attr->show(sysdev, sysdev_attr, buffer); | 
| Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 40 | 	return -EIO; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | } | 
 | 42 |  | 
 | 43 |  | 
 | 44 | static ssize_t | 
 | 45 | sysdev_store(struct kobject * kobj, struct attribute * attr, | 
 | 46 | 	     const char * buffer, size_t count) | 
 | 47 | { | 
 | 48 | 	struct sys_device * sysdev = to_sysdev(kobj); | 
 | 49 | 	struct sysdev_attribute * sysdev_attr = to_sysdev_attr(attr); | 
 | 50 |  | 
 | 51 | 	if (sysdev_attr->store) | 
| Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 52 | 		return sysdev_attr->store(sysdev, sysdev_attr, buffer, count); | 
| Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 53 | 	return -EIO; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } | 
 | 55 |  | 
 | 56 | static struct sysfs_ops sysfs_ops = { | 
 | 57 | 	.show	= sysdev_show, | 
 | 58 | 	.store	= sysdev_store, | 
 | 59 | }; | 
 | 60 |  | 
 | 61 | static struct kobj_type ktype_sysdev = { | 
 | 62 | 	.sysfs_ops	= &sysfs_ops, | 
 | 63 | }; | 
 | 64 |  | 
 | 65 |  | 
 | 66 | int sysdev_create_file(struct sys_device * s, struct sysdev_attribute * a) | 
 | 67 | { | 
 | 68 | 	return sysfs_create_file(&s->kobj, &a->attr); | 
 | 69 | } | 
 | 70 |  | 
 | 71 |  | 
 | 72 | void sysdev_remove_file(struct sys_device * s, struct sysdev_attribute * a) | 
 | 73 | { | 
 | 74 | 	sysfs_remove_file(&s->kobj, &a->attr); | 
 | 75 | } | 
 | 76 |  | 
 | 77 | EXPORT_SYMBOL_GPL(sysdev_create_file); | 
 | 78 | EXPORT_SYMBOL_GPL(sysdev_remove_file); | 
 | 79 |  | 
| Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 80 | #define to_sysdev_class(k) container_of(k, struct sysdev_class, kset.kobj) | 
 | 81 | #define to_sysdev_class_attr(a) container_of(a, \ | 
 | 82 | 	struct sysdev_class_attribute, attr) | 
 | 83 |  | 
 | 84 | static ssize_t sysdev_class_show(struct kobject *kobj, struct attribute *attr, | 
 | 85 | 				 char *buffer) | 
 | 86 | { | 
 | 87 | 	struct sysdev_class * class = to_sysdev_class(kobj); | 
 | 88 | 	struct sysdev_class_attribute *class_attr = to_sysdev_class_attr(attr); | 
 | 89 |  | 
 | 90 | 	if (class_attr->show) | 
 | 91 | 		return class_attr->show(class, buffer); | 
 | 92 | 	return -EIO; | 
 | 93 | } | 
 | 94 |  | 
 | 95 | static ssize_t sysdev_class_store(struct kobject *kobj, struct attribute *attr, | 
 | 96 | 				  const char *buffer, size_t count) | 
 | 97 | { | 
 | 98 | 	struct sysdev_class * class = to_sysdev_class(kobj); | 
 | 99 | 	struct sysdev_class_attribute * class_attr = to_sysdev_class_attr(attr); | 
 | 100 |  | 
 | 101 | 	if (class_attr->store) | 
 | 102 | 		return class_attr->store(class, buffer, count); | 
 | 103 | 	return -EIO; | 
 | 104 | } | 
 | 105 |  | 
 | 106 | static struct sysfs_ops sysfs_class_ops = { | 
 | 107 | 	.show	= sysdev_class_show, | 
 | 108 | 	.store	= sysdev_class_store, | 
 | 109 | }; | 
 | 110 |  | 
 | 111 | static struct kobj_type ktype_sysdev_class = { | 
 | 112 | 	.sysfs_ops	= &sysfs_class_ops, | 
 | 113 | }; | 
 | 114 |  | 
 | 115 | int sysdev_class_create_file(struct sysdev_class *c, | 
 | 116 | 			     struct sysdev_class_attribute *a) | 
 | 117 | { | 
 | 118 | 	return sysfs_create_file(&c->kset.kobj, &a->attr); | 
 | 119 | } | 
 | 120 | EXPORT_SYMBOL_GPL(sysdev_class_create_file); | 
 | 121 |  | 
 | 122 | void sysdev_class_remove_file(struct sysdev_class *c, | 
 | 123 | 			      struct sysdev_class_attribute *a) | 
 | 124 | { | 
 | 125 | 	sysfs_remove_file(&c->kset.kobj, &a->attr); | 
 | 126 | } | 
 | 127 | EXPORT_SYMBOL_GPL(sysdev_class_remove_file); | 
 | 128 |  | 
| Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 129 | static struct kset *system_kset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
 | 131 | int sysdev_class_register(struct sysdev_class * cls) | 
 | 132 | { | 
| Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 133 | 	pr_debug("Registering sysdev class '%s'\n", cls->name); | 
 | 134 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | 	INIT_LIST_HEAD(&cls->drivers); | 
| Greg Kroah-Hartman | ef79df26 | 2008-03-09 03:37:16 +0530 | [diff] [blame] | 136 | 	memset(&cls->kset.kobj, 0x00, sizeof(struct kobject)); | 
| Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 137 | 	cls->kset.kobj.parent = &system_kset->kobj; | 
| Greg Kroah-Hartman | 3514fac | 2007-10-16 10:11:44 -0600 | [diff] [blame] | 138 | 	cls->kset.kobj.ktype = &ktype_sysdev_class; | 
| Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 139 | 	cls->kset.kobj.kset = system_kset; | 
| Kay Sievers | af5ca3f | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 140 | 	kobject_set_name(&cls->kset.kobj, cls->name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | 	return kset_register(&cls->kset); | 
 | 142 | } | 
 | 143 |  | 
 | 144 | void sysdev_class_unregister(struct sysdev_class * cls) | 
 | 145 | { | 
 | 146 | 	pr_debug("Unregistering sysdev class '%s'\n", | 
 | 147 | 		 kobject_name(&cls->kset.kobj)); | 
 | 148 | 	kset_unregister(&cls->kset); | 
 | 149 | } | 
 | 150 |  | 
 | 151 | EXPORT_SYMBOL_GPL(sysdev_class_register); | 
 | 152 | EXPORT_SYMBOL_GPL(sysdev_class_unregister); | 
 | 153 |  | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 154 | static DEFINE_MUTEX(sysdev_drivers_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 |  | 
 | 156 | /** | 
 | 157 |  *	sysdev_driver_register - Register auxillary driver | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 158 |  *	@cls:	Device class driver belongs to. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 |  *	@drv:	Driver. | 
 | 160 |  * | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 161 |  *	@drv is inserted into @cls->drivers to be | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 |  *	called on each operation on devices of that class. The refcount | 
 | 163 |  *	of @cls is incremented. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 |  */ | 
 | 165 |  | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 166 | int sysdev_driver_register(struct sysdev_class *cls, struct sysdev_driver *drv) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 168 | 	int err = 0; | 
 | 169 |  | 
| Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 170 | 	if (!cls) { | 
| Arjan van de Ven | f810a5c | 2008-07-25 19:45:39 -0700 | [diff] [blame] | 171 | 		WARN(1, KERN_WARNING "sysdev: invalid class passed to " | 
| Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 172 | 			"sysdev_driver_register!\n"); | 
| Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 173 | 		return -EINVAL; | 
 | 174 | 	} | 
 | 175 |  | 
 | 176 | 	/* Check whether this driver has already been added to a class. */ | 
| Arjan van de Ven | f810a5c | 2008-07-25 19:45:39 -0700 | [diff] [blame] | 177 | 	if (drv->entry.next && !list_empty(&drv->entry)) | 
 | 178 | 		WARN(1, KERN_WARNING "sysdev: class %s: driver (%p) has already" | 
| Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 179 | 			" been registered to a class, something is wrong, but " | 
 | 180 | 			"will forge on!\n", cls->name, drv); | 
| Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 181 |  | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 182 | 	mutex_lock(&sysdev_drivers_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | 	if (cls && kset_get(&cls->kset)) { | 
 | 184 | 		list_add_tail(&drv->entry, &cls->drivers); | 
 | 185 |  | 
 | 186 | 		/* If devices of this class already exist, tell the driver */ | 
 | 187 | 		if (drv->add) { | 
 | 188 | 			struct sys_device *dev; | 
 | 189 | 			list_for_each_entry(dev, &cls->kset.list, kobj.entry) | 
 | 190 | 				drv->add(dev); | 
 | 191 | 		} | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 192 | 	} else { | 
 | 193 | 		err = -EINVAL; | 
| Arjan van de Ven | f810a5c | 2008-07-25 19:45:39 -0700 | [diff] [blame] | 194 | 		WARN(1, KERN_ERR "%s: invalid device class\n", __func__); | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 195 | 	} | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 196 | 	mutex_unlock(&sysdev_drivers_lock); | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 197 | 	return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } | 
 | 199 |  | 
 | 200 |  | 
 | 201 | /** | 
 | 202 |  *	sysdev_driver_unregister - Remove an auxillary driver. | 
 | 203 |  *	@cls:	Class driver belongs to. | 
 | 204 |  *	@drv:	Driver. | 
 | 205 |  */ | 
 | 206 | void sysdev_driver_unregister(struct sysdev_class * cls, | 
 | 207 | 			      struct sysdev_driver * drv) | 
 | 208 | { | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 209 | 	mutex_lock(&sysdev_drivers_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | 	list_del_init(&drv->entry); | 
 | 211 | 	if (cls) { | 
 | 212 | 		if (drv->remove) { | 
 | 213 | 			struct sys_device *dev; | 
 | 214 | 			list_for_each_entry(dev, &cls->kset.list, kobj.entry) | 
 | 215 | 				drv->remove(dev); | 
 | 216 | 		} | 
 | 217 | 		kset_put(&cls->kset); | 
 | 218 | 	} | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 219 | 	mutex_unlock(&sysdev_drivers_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | } | 
 | 221 |  | 
 | 222 | EXPORT_SYMBOL_GPL(sysdev_driver_register); | 
 | 223 | EXPORT_SYMBOL_GPL(sysdev_driver_unregister); | 
 | 224 |  | 
 | 225 |  | 
 | 226 |  | 
 | 227 | /** | 
 | 228 |  *	sysdev_register - add a system device to the tree | 
 | 229 |  *	@sysdev:	device in question | 
 | 230 |  * | 
 | 231 |  */ | 
 | 232 | int sysdev_register(struct sys_device * sysdev) | 
 | 233 | { | 
 | 234 | 	int error; | 
 | 235 | 	struct sysdev_class * cls = sysdev->cls; | 
 | 236 |  | 
 | 237 | 	if (!cls) | 
 | 238 | 		return -EINVAL; | 
 | 239 |  | 
| Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 240 | 	pr_debug("Registering sys device of class '%s'\n", | 
 | 241 | 		 kobject_name(&cls->kset.kobj)); | 
| Greg Kroah-Hartman | 61030bf | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 242 |  | 
| Greg Kroah-Hartman | ef79df26 | 2008-03-09 03:37:16 +0530 | [diff] [blame] | 243 | 	/* initialize the kobject to 0, in case it had previously been used */ | 
 | 244 | 	memset(&sysdev->kobj, 0x00, sizeof(struct kobject)); | 
 | 245 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | 	/* Make sure the kset is set */ | 
 | 247 | 	sysdev->kobj.kset = &cls->kset; | 
 | 248 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | 	/* Register the object */ | 
| Greg Kroah-Hartman | 61030bf | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 250 | 	error = kobject_init_and_add(&sysdev->kobj, &ktype_sysdev, NULL, | 
 | 251 | 				     "%s%d", kobject_name(&cls->kset.kobj), | 
 | 252 | 				     sysdev->id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 |  | 
 | 254 | 	if (!error) { | 
 | 255 | 		struct sysdev_driver * drv; | 
 | 256 |  | 
| Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 257 | 		pr_debug("Registering sys device '%s'\n", | 
 | 258 | 			 kobject_name(&sysdev->kobj)); | 
 | 259 |  | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 260 | 		mutex_lock(&sysdev_drivers_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | 		/* Generic notification is implicit, because it's that | 
 | 262 | 		 * code that should have called us. | 
 | 263 | 		 */ | 
 | 264 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | 		/* Notify class auxillary drivers */ | 
 | 266 | 		list_for_each_entry(drv, &cls->drivers, entry) { | 
 | 267 | 			if (drv->add) | 
 | 268 | 				drv->add(sysdev); | 
 | 269 | 		} | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 270 | 		mutex_unlock(&sysdev_drivers_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | 	} | 
| Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 272 |  | 
| Greg Kroah-Hartman | 61030bf | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 273 | 	kobject_uevent(&sysdev->kobj, KOBJ_ADD); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | 	return error; | 
 | 275 | } | 
 | 276 |  | 
 | 277 | void sysdev_unregister(struct sys_device * sysdev) | 
 | 278 | { | 
 | 279 | 	struct sysdev_driver * drv; | 
 | 280 |  | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 281 | 	mutex_lock(&sysdev_drivers_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | 	list_for_each_entry(drv, &sysdev->cls->drivers, entry) { | 
 | 283 | 		if (drv->remove) | 
 | 284 | 			drv->remove(sysdev); | 
 | 285 | 	} | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 286 | 	mutex_unlock(&sysdev_drivers_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 |  | 
| Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 288 | 	kobject_put(&sysdev->kobj); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | } | 
 | 290 |  | 
 | 291 |  | 
 | 292 |  | 
 | 293 | /** | 
 | 294 |  *	sysdev_shutdown - Shut down all system devices. | 
 | 295 |  * | 
 | 296 |  *	Loop over each class of system devices, and the devices in each | 
 | 297 |  *	of those classes. For each device, we call the shutdown method for | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 298 |  *	each driver registered for the device - the auxillaries, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 |  *	and the class driver. | 
 | 300 |  * | 
 | 301 |  *	Note: The list is iterated in reverse order, so that we shut down | 
 | 302 |  *	child devices before we shut down thier parents. The list ordering | 
 | 303 |  *	is guaranteed by virtue of the fact that child devices are registered | 
 | 304 |  *	after their parents. | 
 | 305 |  */ | 
 | 306 |  | 
 | 307 | void sysdev_shutdown(void) | 
 | 308 | { | 
 | 309 | 	struct sysdev_class * cls; | 
 | 310 |  | 
 | 311 | 	pr_debug("Shutting Down System Devices\n"); | 
 | 312 |  | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 313 | 	mutex_lock(&sysdev_drivers_lock); | 
| Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 314 | 	list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | 		struct sys_device * sysdev; | 
 | 316 |  | 
 | 317 | 		pr_debug("Shutting down type '%s':\n", | 
 | 318 | 			 kobject_name(&cls->kset.kobj)); | 
 | 319 |  | 
 | 320 | 		list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) { | 
 | 321 | 			struct sysdev_driver * drv; | 
 | 322 | 			pr_debug(" %s\n", kobject_name(&sysdev->kobj)); | 
 | 323 |  | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 324 | 			/* Call auxillary drivers first */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | 			list_for_each_entry(drv, &cls->drivers, entry) { | 
 | 326 | 				if (drv->shutdown) | 
 | 327 | 					drv->shutdown(sysdev); | 
 | 328 | 			} | 
 | 329 |  | 
 | 330 | 			/* Now call the generic one */ | 
 | 331 | 			if (cls->shutdown) | 
 | 332 | 				cls->shutdown(sysdev); | 
 | 333 | 		} | 
 | 334 | 	} | 
| Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 335 | 	mutex_unlock(&sysdev_drivers_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } | 
 | 337 |  | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 338 | static void __sysdev_resume(struct sys_device *dev) | 
 | 339 | { | 
 | 340 | 	struct sysdev_class *cls = dev->cls; | 
 | 341 | 	struct sysdev_driver *drv; | 
 | 342 |  | 
 | 343 | 	/* First, call the class-specific one */ | 
 | 344 | 	if (cls->resume) | 
 | 345 | 		cls->resume(dev); | 
 | 346 |  | 
 | 347 | 	/* Call auxillary drivers next. */ | 
 | 348 | 	list_for_each_entry(drv, &cls->drivers, entry) { | 
 | 349 | 		if (drv->resume) | 
 | 350 | 			drv->resume(dev); | 
 | 351 | 	} | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 352 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 |  | 
 | 354 | /** | 
 | 355 |  *	sysdev_suspend - Suspend all system devices. | 
 | 356 |  *	@state:		Power state to enter. | 
 | 357 |  * | 
 | 358 |  *	We perform an almost identical operation as sys_device_shutdown() | 
 | 359 |  *	above, though calling ->suspend() instead. Interrupts are disabled | 
 | 360 |  *	when this called. Devices are responsible for both saving state and | 
 | 361 |  *	quiescing or powering down the device. | 
 | 362 |  * | 
 | 363 |  *	This is only called by the device PM core, so we let them handle | 
 | 364 |  *	all synchronization. | 
 | 365 |  */ | 
 | 366 |  | 
| Pavel Machek | 438510f | 2005-04-16 15:25:24 -0700 | [diff] [blame] | 367 | int sysdev_suspend(pm_message_t state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | { | 
 | 369 | 	struct sysdev_class * cls; | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 370 | 	struct sys_device *sysdev, *err_dev; | 
 | 371 | 	struct sysdev_driver *drv, *err_drv; | 
 | 372 | 	int ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 |  | 
 | 374 | 	pr_debug("Suspending System Devices\n"); | 
 | 375 |  | 
| Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 376 | 	list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | 		pr_debug("Suspending type '%s':\n", | 
 | 378 | 			 kobject_name(&cls->kset.kobj)); | 
 | 379 |  | 
 | 380 | 		list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | 			pr_debug(" %s\n", kobject_name(&sysdev->kobj)); | 
 | 382 |  | 
| Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 383 | 			/* Call auxillary drivers first */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | 			list_for_each_entry(drv, &cls->drivers, entry) { | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 385 | 				if (drv->suspend) { | 
 | 386 | 					ret = drv->suspend(sysdev, state); | 
 | 387 | 					if (ret) | 
 | 388 | 						goto aux_driver; | 
 | 389 | 				} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | 			} | 
 | 391 |  | 
 | 392 | 			/* Now call the generic one */ | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 393 | 			if (cls->suspend) { | 
 | 394 | 				ret = cls->suspend(sysdev, state); | 
 | 395 | 				if (ret) | 
 | 396 | 					goto cls_driver; | 
 | 397 | 			} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | 		} | 
 | 399 | 	} | 
 | 400 | 	return 0; | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 401 | 	/* resume current sysdev */ | 
 | 402 | cls_driver: | 
 | 403 | 	drv = NULL; | 
 | 404 | 	printk(KERN_ERR "Class suspend failed for %s\n", | 
 | 405 | 		kobject_name(&sysdev->kobj)); | 
 | 406 |  | 
 | 407 | aux_driver: | 
 | 408 | 	if (drv) | 
 | 409 | 		printk(KERN_ERR "Class driver suspend failed for %s\n", | 
 | 410 | 				kobject_name(&sysdev->kobj)); | 
 | 411 | 	list_for_each_entry(err_drv, &cls->drivers, entry) { | 
 | 412 | 		if (err_drv == drv) | 
 | 413 | 			break; | 
 | 414 | 		if (err_drv->resume) | 
 | 415 | 			err_drv->resume(sysdev); | 
 | 416 | 	} | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 417 |  | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 418 | 	/* resume other sysdevs in current class */ | 
 | 419 | 	list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) { | 
 | 420 | 		if (err_dev == sysdev) | 
 | 421 | 			break; | 
 | 422 | 		pr_debug(" %s\n", kobject_name(&err_dev->kobj)); | 
 | 423 | 		__sysdev_resume(err_dev); | 
 | 424 | 	} | 
 | 425 |  | 
 | 426 | 	/* resume other classes */ | 
| Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 427 | 	list_for_each_entry_continue(cls, &system_kset->list, kset.kobj.entry) { | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 428 | 		list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) { | 
 | 429 | 			pr_debug(" %s\n", kobject_name(&err_dev->kobj)); | 
 | 430 | 			__sysdev_resume(err_dev); | 
 | 431 | 		} | 
 | 432 | 	} | 
 | 433 | 	return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } | 
 | 435 |  | 
 | 436 |  | 
 | 437 | /** | 
 | 438 |  *	sysdev_resume - Bring system devices back to life. | 
 | 439 |  * | 
 | 440 |  *	Similar to sys_device_suspend(), but we iterate the list forwards | 
 | 441 |  *	to guarantee that parent devices are resumed before their children. | 
 | 442 |  * | 
 | 443 |  *	Note: Interrupts are disabled when called. | 
 | 444 |  */ | 
 | 445 |  | 
 | 446 | int sysdev_resume(void) | 
 | 447 | { | 
 | 448 | 	struct sysdev_class * cls; | 
 | 449 |  | 
 | 450 | 	pr_debug("Resuming System Devices\n"); | 
 | 451 |  | 
| Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 452 | 	list_for_each_entry(cls, &system_kset->list, kset.kobj.entry) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | 		struct sys_device * sysdev; | 
 | 454 |  | 
 | 455 | 		pr_debug("Resuming type '%s':\n", | 
 | 456 | 			 kobject_name(&cls->kset.kobj)); | 
 | 457 |  | 
 | 458 | 		list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | 			pr_debug(" %s\n", kobject_name(&sysdev->kobj)); | 
 | 460 |  | 
| Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 461 | 			__sysdev_resume(sysdev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | 		} | 
 | 463 | 	} | 
 | 464 | 	return 0; | 
 | 465 | } | 
 | 466 |  | 
 | 467 |  | 
 | 468 | int __init system_bus_init(void) | 
 | 469 | { | 
| Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 470 | 	system_kset = kset_create_and_add("system", NULL, &devices_kset->kobj); | 
 | 471 | 	if (!system_kset) | 
 | 472 | 		return -ENOMEM; | 
 | 473 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } | 
 | 475 |  | 
 | 476 | EXPORT_SYMBOL_GPL(sysdev_register); | 
 | 477 | EXPORT_SYMBOL_GPL(sysdev_unregister); | 
| Andi Kleen | 9800794 | 2008-07-01 18:48:42 +0200 | [diff] [blame] | 478 |  | 
 | 479 | #define to_ext_attr(x) container_of(x, struct sysdev_ext_attribute, attr) | 
 | 480 |  | 
 | 481 | ssize_t sysdev_store_ulong(struct sys_device *sysdev, | 
 | 482 | 			   struct sysdev_attribute *attr, | 
 | 483 | 			   const char *buf, size_t size) | 
 | 484 | { | 
 | 485 | 	struct sysdev_ext_attribute *ea = to_ext_attr(attr); | 
 | 486 | 	char *end; | 
 | 487 | 	unsigned long new = simple_strtoul(buf, &end, 0); | 
 | 488 | 	if (end == buf) | 
 | 489 | 		return -EINVAL; | 
 | 490 | 	*(unsigned long *)(ea->var) = new; | 
 | 491 | 	return end - buf; | 
 | 492 | } | 
 | 493 | EXPORT_SYMBOL_GPL(sysdev_store_ulong); | 
 | 494 |  | 
 | 495 | ssize_t sysdev_show_ulong(struct sys_device *sysdev, | 
 | 496 | 			  struct sysdev_attribute *attr, | 
 | 497 | 			  char *buf) | 
 | 498 | { | 
 | 499 | 	struct sysdev_ext_attribute *ea = to_ext_attr(attr); | 
 | 500 | 	return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var)); | 
 | 501 | } | 
 | 502 | EXPORT_SYMBOL_GPL(sysdev_show_ulong); | 
 | 503 |  | 
 | 504 | ssize_t sysdev_store_int(struct sys_device *sysdev, | 
 | 505 | 			   struct sysdev_attribute *attr, | 
 | 506 | 			   const char *buf, size_t size) | 
 | 507 | { | 
 | 508 | 	struct sysdev_ext_attribute *ea = to_ext_attr(attr); | 
 | 509 | 	char *end; | 
 | 510 | 	long new = simple_strtol(buf, &end, 0); | 
 | 511 | 	if (end == buf || new > INT_MAX || new < INT_MIN) | 
 | 512 | 		return -EINVAL; | 
 | 513 | 	*(int *)(ea->var) = new; | 
 | 514 | 	return end - buf; | 
 | 515 | } | 
 | 516 | EXPORT_SYMBOL_GPL(sysdev_store_int); | 
 | 517 |  | 
 | 518 | ssize_t sysdev_show_int(struct sys_device *sysdev, | 
 | 519 | 			  struct sysdev_attribute *attr, | 
 | 520 | 			  char *buf) | 
 | 521 | { | 
 | 522 | 	struct sysdev_ext_attribute *ea = to_ext_attr(attr); | 
 | 523 | 	return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var)); | 
 | 524 | } | 
 | 525 | EXPORT_SYMBOL_GPL(sysdev_show_int); | 
 | 526 |  |