Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * class.c - basic device class management |
| 3 | * |
| 4 | * Copyright (c) 2002-3 Patrick Mochel |
| 5 | * Copyright (c) 2002-3 Open Source Development Labs |
| 6 | * Copyright (c) 2003-2004 Greg Kroah-Hartman |
| 7 | * Copyright (c) 2003-2004 IBM Corp. |
| 8 | * |
| 9 | * This file is released under the GPLv2 |
| 10 | * |
| 11 | */ |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/device.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/string.h> |
| 17 | #include <linux/kdev_t.h> |
gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 18 | #include <linux/err.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 19 | #include <linux/slab.h> |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 20 | #include <linux/genhd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "base.h" |
| 22 | |
| 23 | #define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 25 | static ssize_t class_attr_show(struct kobject *kobj, struct attribute *attr, |
| 26 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 28 | struct class_attribute *class_attr = to_class_attr(attr); |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 29 | struct class_private *cp = to_class(kobj); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 30 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | if (class_attr->show) |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 33 | ret = class_attr->show(cp->class, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | return ret; |
| 35 | } |
| 36 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 37 | static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr, |
| 38 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 40 | struct class_attribute *class_attr = to_class_attr(attr); |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 41 | struct class_private *cp = to_class(kobj); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 42 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | if (class_attr->store) |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 45 | ret = class_attr->store(cp->class, buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | return ret; |
| 47 | } |
| 48 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 49 | static void class_release(struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 51 | struct class_private *cp = to_class(kobj); |
| 52 | struct class *class = cp->class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | pr_debug("class '%s': release.\n", class->name); |
| 55 | |
| 56 | if (class->class_release) |
| 57 | class->class_release(class); |
| 58 | else |
| 59 | pr_debug("class '%s' does not have a release() function, " |
| 60 | "be careful\n", class->name); |
| 61 | } |
| 62 | |
| 63 | static struct sysfs_ops class_sysfs_ops = { |
| 64 | .show = class_attr_show, |
| 65 | .store = class_attr_store, |
| 66 | }; |
| 67 | |
Greg Kroah-Hartman | adc5680 | 2007-10-11 10:47:49 -0600 | [diff] [blame] | 68 | static struct kobj_type class_ktype = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | .sysfs_ops = &class_sysfs_ops, |
| 70 | .release = class_release, |
| 71 | }; |
| 72 | |
| 73 | /* Hotplug events for classes go to the class_obj subsys */ |
Greg Kroah-Hartman | 443dbf9 | 2007-10-29 23:22:26 -0500 | [diff] [blame] | 74 | static struct kset *class_kset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 77 | int class_create_file(struct class *cls, const struct class_attribute *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
| 79 | int error; |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 80 | if (cls) |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 81 | error = sysfs_create_file(&cls->p->subsys.kobj, &attr->attr); |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 82 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | error = -EINVAL; |
| 84 | return error; |
| 85 | } |
| 86 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 87 | void class_remove_file(struct class *cls, const struct class_attribute *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { |
| 89 | if (cls) |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 90 | sysfs_remove_file(&cls->p->subsys.kobj, &attr->attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Greg Kroah-Hartman | 1740757 | 2006-05-02 16:59:59 +0200 | [diff] [blame] | 93 | static struct class *class_get(struct class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { |
| 95 | if (cls) |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 96 | kset_get(&cls->p->subsys); |
| 97 | return cls; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 100 | static void class_put(struct class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | { |
Greg Kroah-Hartman | 51d172d | 2005-10-27 22:25:43 -0700 | [diff] [blame] | 102 | if (cls) |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 103 | kset_put(&cls->p->subsys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 106 | static int add_class_attrs(struct class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
| 108 | int i; |
| 109 | int error = 0; |
| 110 | |
| 111 | if (cls->class_attrs) { |
| 112 | for (i = 0; attr_name(cls->class_attrs[i]); i++) { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 113 | error = class_create_file(cls, &cls->class_attrs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | if (error) |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 115 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 118 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | return error; |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 120 | error: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | while (--i >= 0) |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 122 | class_remove_file(cls, &cls->class_attrs[i]); |
| 123 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 126 | static void remove_class_attrs(struct class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | { |
| 128 | int i; |
| 129 | |
| 130 | if (cls->class_attrs) { |
| 131 | for (i = 0; attr_name(cls->class_attrs[i]); i++) |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 132 | class_remove_file(cls, &cls->class_attrs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } |
| 134 | } |
| 135 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 136 | int class_register(struct class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | { |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 138 | struct class_private *cp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | int error; |
| 140 | |
| 141 | pr_debug("device class '%s': registering\n", cls->name); |
| 142 | |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 143 | cp = kzalloc(sizeof(*cp), GFP_KERNEL); |
| 144 | if (!cp) |
| 145 | return -ENOMEM; |
Greg Kroah-Hartman | 97ae69f | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 146 | INIT_LIST_HEAD(&cp->class_devices); |
Greg Kroah-Hartman | 184f1f7 | 2008-05-28 09:28:39 -0700 | [diff] [blame^] | 147 | INIT_LIST_HEAD(&cp->class_interfaces); |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 148 | kset_init(&cp->class_dirs); |
| 149 | init_MUTEX(&cp->sem); |
| 150 | error = kobject_set_name(&cp->subsys.kobj, "%s", cls->name); |
| 151 | if (error) { |
| 152 | kfree(cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | return error; |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 154 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 156 | /* set the default /sys/dev directory for devices of this class */ |
| 157 | if (!cls->dev_kobj) |
| 158 | cls->dev_kobj = sysfs_dev_char_kobj; |
| 159 | |
Greg Kroah-Hartman | 4e886c2 | 2008-01-27 12:12:43 -0800 | [diff] [blame] | 160 | #if defined(CONFIG_SYSFS_DEPRECATED) && defined(CONFIG_BLOCK) |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 161 | /* let the block class directory show up in the root of sysfs */ |
| 162 | if (cls != &block_class) |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 163 | cp->subsys.kobj.kset = class_kset; |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 164 | #else |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 165 | cp->subsys.kobj.kset = class_kset; |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 166 | #endif |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 167 | cp->subsys.kobj.ktype = &class_ktype; |
| 168 | cp->class = cls; |
| 169 | cls->p = cp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 171 | error = kset_register(&cp->subsys); |
| 172 | if (error) { |
| 173 | kfree(cp); |
| 174 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | } |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 176 | error = add_class_attrs(class_get(cls)); |
| 177 | class_put(cls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | return error; |
| 179 | } |
| 180 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 181 | void class_unregister(struct class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | { |
| 183 | pr_debug("device class '%s': unregistering\n", cls->name); |
| 184 | remove_class_attrs(cls); |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 185 | kset_unregister(&cls->p->subsys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 188 | static void class_create_release(struct class *cls) |
| 189 | { |
Harvey Harrison | 2b3a302 | 2008-03-04 16:41:05 -0800 | [diff] [blame] | 190 | pr_debug("%s called for %s\n", __func__, cls->name); |
gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 191 | kfree(cls); |
| 192 | } |
| 193 | |
gregkh@suse.de | 2fc6844 | 2005-03-23 10:02:56 -0800 | [diff] [blame] | 194 | /** |
| 195 | * class_create - create a struct class structure |
| 196 | * @owner: pointer to the module that is to "own" this struct class |
| 197 | * @name: pointer to a string for the name of this class. |
| 198 | * |
| 199 | * This is used to create a struct class pointer that can then be used |
Kay Sievers | c3b19ff | 2008-03-12 20:47:35 +0100 | [diff] [blame] | 200 | * in calls to device_create(). |
gregkh@suse.de | 2fc6844 | 2005-03-23 10:02:56 -0800 | [diff] [blame] | 201 | * |
| 202 | * Note, the pointer created here is to be destroyed when finished by |
| 203 | * making a call to class_destroy(). |
| 204 | */ |
Miguel Ojeda Sandonis | ab7d737 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 205 | struct class *class_create(struct module *owner, const char *name) |
gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 206 | { |
| 207 | struct class *cls; |
| 208 | int retval; |
| 209 | |
Jiri Slaby | 4aed064 | 2005-09-13 01:25:01 -0700 | [diff] [blame] | 210 | cls = kzalloc(sizeof(*cls), GFP_KERNEL); |
gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 211 | if (!cls) { |
| 212 | retval = -ENOMEM; |
| 213 | goto error; |
| 214 | } |
gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 215 | |
| 216 | cls->name = name; |
| 217 | cls->owner = owner; |
| 218 | cls->class_release = class_create_release; |
gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 219 | |
| 220 | retval = class_register(cls); |
| 221 | if (retval) |
| 222 | goto error; |
| 223 | |
| 224 | return cls; |
| 225 | |
| 226 | error: |
| 227 | kfree(cls); |
| 228 | return ERR_PTR(retval); |
| 229 | } |
| 230 | |
gregkh@suse.de | 2fc6844 | 2005-03-23 10:02:56 -0800 | [diff] [blame] | 231 | /** |
| 232 | * class_destroy - destroys a struct class structure |
Rolf Eike Beer | 92a0f86 | 2006-09-29 01:59:13 -0700 | [diff] [blame] | 233 | * @cls: pointer to the struct class that is to be destroyed |
gregkh@suse.de | 2fc6844 | 2005-03-23 10:02:56 -0800 | [diff] [blame] | 234 | * |
| 235 | * Note, the pointer to be destroyed must have been created with a call |
| 236 | * to class_create(). |
| 237 | */ |
gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 238 | void class_destroy(struct class *cls) |
| 239 | { |
| 240 | if ((cls == NULL) || (IS_ERR(cls))) |
| 241 | return; |
| 242 | |
| 243 | class_unregister(cls); |
| 244 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Kay Sievers | 805fab4 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 246 | #ifdef CONFIG_SYSFS_DEPRECATED |
| 247 | char *make_class_name(const char *name, struct kobject *kobj) |
| 248 | { |
| 249 | char *class_name; |
| 250 | int size; |
| 251 | |
| 252 | size = strlen(name) + strlen(kobject_name(kobj)) + 2; |
| 253 | |
| 254 | class_name = kmalloc(size, GFP_KERNEL); |
| 255 | if (!class_name) |
Cornelia Huck | cb360bb | 2006-11-27 10:35:05 +0100 | [diff] [blame] | 256 | return NULL; |
Kay Sievers | 805fab4 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 257 | |
| 258 | strcpy(class_name, name); |
| 259 | strcat(class_name, ":"); |
| 260 | strcat(class_name, kobject_name(kobj)); |
| 261 | return class_name; |
| 262 | } |
Kay Sievers | 805fab4 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 263 | #endif |
| 264 | |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 265 | /** |
| 266 | * class_for_each_device - device iterator |
| 267 | * @class: the class we're iterating |
Greg Kroah-Hartman | 93562b5 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 268 | * @start: the device to start with in the list, if any. |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 269 | * @data: data for the callback |
| 270 | * @fn: function to be called for each device |
| 271 | * |
| 272 | * Iterate over @class's list of devices, and call @fn for each, |
Greg Kroah-Hartman | 93562b5 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 273 | * passing it @data. If @start is set, the list iteration will start |
| 274 | * there, otherwise if it is NULL, the iteration starts at the |
| 275 | * beginning of the list. |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 276 | * |
| 277 | * We check the return of @fn each time. If it returns anything |
| 278 | * other than 0, we break out and return that value. |
| 279 | * |
| 280 | * Note, we hold class->sem in this function, so it can not be |
| 281 | * re-acquired in @fn, otherwise it will self-deadlocking. For |
| 282 | * example, calls to add or remove class members would be verboten. |
| 283 | */ |
Greg Kroah-Hartman | 93562b5 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 284 | int class_for_each_device(struct class *class, struct device *start, |
| 285 | void *data, int (*fn)(struct device *, void *)) |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 286 | { |
| 287 | struct device *dev; |
| 288 | int error = 0; |
| 289 | |
| 290 | if (!class) |
| 291 | return -EINVAL; |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 292 | down(&class->p->sem); |
Greg Kroah-Hartman | 97ae69f | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 293 | list_for_each_entry(dev, &class->p->class_devices, node) { |
Greg Kroah-Hartman | 93562b5 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 294 | if (start) { |
| 295 | if (start == dev) |
| 296 | start = NULL; |
| 297 | continue; |
| 298 | } |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 299 | dev = get_device(dev); |
Greg Kroah-Hartman | 93562b5 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 300 | error = fn(dev, data); |
| 301 | put_device(dev); |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 302 | if (error) |
| 303 | break; |
| 304 | } |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 305 | up(&class->p->sem); |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 306 | |
| 307 | return error; |
| 308 | } |
| 309 | EXPORT_SYMBOL_GPL(class_for_each_device); |
| 310 | |
| 311 | /** |
| 312 | * class_find_device - device iterator for locating a particular device |
| 313 | * @class: the class we're iterating |
Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 314 | * @start: Device to begin with |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 315 | * @data: data for the match function |
| 316 | * @match: function to check device |
| 317 | * |
| 318 | * This is similar to the class_for_each_dev() function above, but it |
| 319 | * returns a reference to a device that is 'found' for later use, as |
| 320 | * determined by the @match callback. |
| 321 | * |
| 322 | * The callback should return 0 if the device doesn't match and non-zero |
| 323 | * if it does. If the callback returns non-zero, this function will |
| 324 | * return to the caller and not iterate over any more devices. |
Randy Dunlap | a63ca8f | 2008-01-30 11:51:08 -0800 | [diff] [blame] | 325 | * |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 326 | * Note, you will need to drop the reference with put_device() after use. |
| 327 | * |
| 328 | * We hold class->sem in this function, so it can not be |
| 329 | * re-acquired in @match, otherwise it will self-deadlocking. For |
| 330 | * example, calls to add or remove class members would be verboten. |
| 331 | */ |
Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 332 | struct device *class_find_device(struct class *class, struct device *start, |
| 333 | void *data, |
| 334 | int (*match)(struct device *, void *)) |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 335 | { |
| 336 | struct device *dev; |
| 337 | int found = 0; |
| 338 | |
| 339 | if (!class) |
| 340 | return NULL; |
| 341 | |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 342 | down(&class->p->sem); |
Greg Kroah-Hartman | 97ae69f | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 343 | list_for_each_entry(dev, &class->p->class_devices, node) { |
Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 344 | if (start) { |
| 345 | if (start == dev) |
| 346 | start = NULL; |
| 347 | continue; |
| 348 | } |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 349 | dev = get_device(dev); |
Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 350 | if (match(dev, data)) { |
| 351 | found = 1; |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 352 | break; |
Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 353 | } else |
| 354 | put_device(dev); |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 355 | } |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 356 | up(&class->p->sem); |
Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 357 | |
| 358 | return found ? dev : NULL; |
| 359 | } |
| 360 | EXPORT_SYMBOL_GPL(class_find_device); |
| 361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | int class_interface_register(struct class_interface *class_intf) |
| 363 | { |
| 364 | struct class *parent; |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 365 | struct device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
| 367 | if (!class_intf || !class_intf->class) |
| 368 | return -ENODEV; |
| 369 | |
| 370 | parent = class_get(class_intf->class); |
| 371 | if (!parent) |
| 372 | return -EINVAL; |
| 373 | |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 374 | down(&parent->p->sem); |
Greg Kroah-Hartman | 184f1f7 | 2008-05-28 09:28:39 -0700 | [diff] [blame^] | 375 | list_add_tail(&class_intf->node, &parent->p->class_interfaces); |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 376 | if (class_intf->add_dev) { |
Greg Kroah-Hartman | 97ae69f | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 377 | list_for_each_entry(dev, &parent->p->class_devices, node) |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 378 | class_intf->add_dev(dev, class_intf); |
| 379 | } |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 380 | up(&parent->p->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
| 382 | return 0; |
| 383 | } |
| 384 | |
| 385 | void class_interface_unregister(struct class_interface *class_intf) |
| 386 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 387 | struct class *parent = class_intf->class; |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 388 | struct device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | |
| 390 | if (!parent) |
| 391 | return; |
| 392 | |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 393 | down(&parent->p->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | list_del_init(&class_intf->node); |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 395 | if (class_intf->remove_dev) { |
Greg Kroah-Hartman | 97ae69f | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 396 | list_for_each_entry(dev, &parent->p->class_devices, node) |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 397 | class_intf->remove_dev(dev, class_intf); |
| 398 | } |
Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 399 | up(&parent->p->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
| 401 | class_put(parent); |
| 402 | } |
| 403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | int __init classes_init(void) |
| 405 | { |
Greg Kroah-Hartman | 443dbf9 | 2007-10-29 23:22:26 -0500 | [diff] [blame] | 406 | class_kset = kset_create_and_add("class", NULL, NULL); |
| 407 | if (!class_kset) |
| 408 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | return 0; |
| 410 | } |
| 411 | |
| 412 | EXPORT_SYMBOL_GPL(class_create_file); |
| 413 | EXPORT_SYMBOL_GPL(class_remove_file); |
| 414 | EXPORT_SYMBOL_GPL(class_register); |
| 415 | EXPORT_SYMBOL_GPL(class_unregister); |
gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 416 | EXPORT_SYMBOL_GPL(class_create); |
| 417 | EXPORT_SYMBOL_GPL(class_destroy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | EXPORT_SYMBOL_GPL(class_interface_register); |
| 420 | EXPORT_SYMBOL_GPL(class_interface_unregister); |