2 * class.c - basic device class management
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.
9 * This file is released under the GPLv2
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>
18 #include <linux/err.h>
19 #include <linux/slab.h>
20 #include <linux/genhd.h>
23 #define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)
24 #define to_class(obj) container_of(obj, struct class, subsys.kobj)
26 static ssize_t class_attr_show(struct kobject *kobj, struct attribute *attr,
29 struct class_attribute *class_attr = to_class_attr(attr);
30 struct class *dc = to_class(kobj);
34 ret = class_attr->show(dc, buf);
38 static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr,
39 const char *buf, size_t count)
41 struct class_attribute *class_attr = to_class_attr(attr);
42 struct class *dc = to_class(kobj);
45 if (class_attr->store)
46 ret = class_attr->store(dc, buf, count);
50 static void class_release(struct kobject *kobj)
52 struct class *class = to_class(kobj);
54 pr_debug("class '%s': release.\n", class->name);
56 if (class->class_release)
57 class->class_release(class);
59 pr_debug("class '%s' does not have a release() function, "
60 "be careful\n", class->name);
63 static struct sysfs_ops class_sysfs_ops = {
64 .show = class_attr_show,
65 .store = class_attr_store,
68 static struct kobj_type class_ktype = {
69 .sysfs_ops = &class_sysfs_ops,
70 .release = class_release,
73 /* Hotplug events for classes go to the class_obj subsys */
74 static struct kset *class_kset;
77 int class_create_file(struct class *cls, const struct class_attribute *attr)
81 error = sysfs_create_file(&cls->subsys.kobj, &attr->attr);
87 void class_remove_file(struct class *cls, const struct class_attribute *attr)
90 sysfs_remove_file(&cls->subsys.kobj, &attr->attr);
93 static struct class *class_get(struct class *cls)
96 return container_of(kset_get(&cls->subsys),
97 struct class, subsys);
101 static void class_put(struct class *cls)
104 kset_put(&cls->subsys);
107 static int add_class_attrs(struct class *cls)
112 if (cls->class_attrs) {
113 for (i = 0; attr_name(cls->class_attrs[i]); i++) {
114 error = class_create_file(cls, &cls->class_attrs[i]);
123 class_remove_file(cls, &cls->class_attrs[i]);
127 static void remove_class_attrs(struct class *cls)
131 if (cls->class_attrs) {
132 for (i = 0; attr_name(cls->class_attrs[i]); i++)
133 class_remove_file(cls, &cls->class_attrs[i]);
137 int class_register(struct class *cls)
141 pr_debug("device class '%s': registering\n", cls->name);
143 INIT_LIST_HEAD(&cls->children);
144 INIT_LIST_HEAD(&cls->devices);
145 INIT_LIST_HEAD(&cls->interfaces);
146 kset_init(&cls->class_dirs);
147 init_MUTEX(&cls->sem);
148 error = kobject_set_name(&cls->subsys.kobj, "%s", cls->name);
152 #if defined(CONFIG_SYSFS_DEPRECATED) && defined(CONFIG_BLOCK)
153 /* let the block class directory show up in the root of sysfs */
154 if (cls != &block_class)
155 cls->subsys.kobj.kset = class_kset;
157 cls->subsys.kobj.kset = class_kset;
159 cls->subsys.kobj.ktype = &class_ktype;
161 error = kset_register(&cls->subsys);
163 error = add_class_attrs(class_get(cls));
169 void class_unregister(struct class *cls)
171 pr_debug("device class '%s': unregistering\n", cls->name);
172 remove_class_attrs(cls);
173 kset_unregister(&cls->subsys);
176 static void class_create_release(struct class *cls)
178 pr_debug("%s called for %s\n", __func__, cls->name);
183 * class_create - create a struct class structure
184 * @owner: pointer to the module that is to "own" this struct class
185 * @name: pointer to a string for the name of this class.
187 * This is used to create a struct class pointer that can then be used
188 * in calls to device_create().
190 * Note, the pointer created here is to be destroyed when finished by
191 * making a call to class_destroy().
193 struct class *class_create(struct module *owner, const char *name)
198 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
206 cls->class_release = class_create_release;
208 retval = class_register(cls);
216 return ERR_PTR(retval);
220 * class_destroy - destroys a struct class structure
221 * @cls: pointer to the struct class that is to be destroyed
223 * Note, the pointer to be destroyed must have been created with a call
226 void class_destroy(struct class *cls)
228 if ((cls == NULL) || (IS_ERR(cls)))
231 class_unregister(cls);
234 #ifdef CONFIG_SYSFS_DEPRECATED
235 char *make_class_name(const char *name, struct kobject *kobj)
240 size = strlen(name) + strlen(kobject_name(kobj)) + 2;
242 class_name = kmalloc(size, GFP_KERNEL);
246 strcpy(class_name, name);
247 strcat(class_name, ":");
248 strcat(class_name, kobject_name(kobj));
254 * class_for_each_device - device iterator
255 * @class: the class we're iterating
256 * @data: data for the callback
257 * @fn: function to be called for each device
259 * Iterate over @class's list of devices, and call @fn for each,
262 * We check the return of @fn each time. If it returns anything
263 * other than 0, we break out and return that value.
265 * Note, we hold class->sem in this function, so it can not be
266 * re-acquired in @fn, otherwise it will self-deadlocking. For
267 * example, calls to add or remove class members would be verboten.
269 int class_for_each_device(struct class *class, void *data,
270 int (*fn)(struct device *, void *))
278 list_for_each_entry(dev, &class->devices, node) {
279 dev = get_device(dev);
281 error = fn(dev, data);
292 EXPORT_SYMBOL_GPL(class_for_each_device);
295 * class_find_device - device iterator for locating a particular device
296 * @class: the class we're iterating
297 * @data: data for the match function
298 * @match: function to check device
300 * This is similar to the class_for_each_dev() function above, but it
301 * returns a reference to a device that is 'found' for later use, as
302 * determined by the @match callback.
304 * The callback should return 0 if the device doesn't match and non-zero
305 * if it does. If the callback returns non-zero, this function will
306 * return to the caller and not iterate over any more devices.
308 * Note, you will need to drop the reference with put_device() after use.
310 * We hold class->sem in this function, so it can not be
311 * re-acquired in @match, otherwise it will self-deadlocking. For
312 * example, calls to add or remove class members would be verboten.
314 struct device *class_find_device(struct class *class, void *data,
315 int (*match)(struct device *, void *))
324 list_for_each_entry(dev, &class->devices, node) {
325 dev = get_device(dev);
327 if (match(dev, data)) {
337 return found ? dev : NULL;
339 EXPORT_SYMBOL_GPL(class_find_device);
341 int class_interface_register(struct class_interface *class_intf)
343 struct class *parent;
346 if (!class_intf || !class_intf->class)
349 parent = class_get(class_intf->class);
354 list_add_tail(&class_intf->node, &parent->interfaces);
355 if (class_intf->add_dev) {
356 list_for_each_entry(dev, &parent->devices, node)
357 class_intf->add_dev(dev, class_intf);
364 void class_interface_unregister(struct class_interface *class_intf)
366 struct class *parent = class_intf->class;
373 list_del_init(&class_intf->node);
374 if (class_intf->remove_dev) {
375 list_for_each_entry(dev, &parent->devices, node)
376 class_intf->remove_dev(dev, class_intf);
383 int __init classes_init(void)
385 class_kset = kset_create_and_add("class", NULL, NULL);
391 EXPORT_SYMBOL_GPL(class_create_file);
392 EXPORT_SYMBOL_GPL(class_remove_file);
393 EXPORT_SYMBOL_GPL(class_register);
394 EXPORT_SYMBOL_GPL(class_unregister);
395 EXPORT_SYMBOL_GPL(class_create);
396 EXPORT_SYMBOL_GPL(class_destroy);
398 EXPORT_SYMBOL_GPL(class_interface_register);
399 EXPORT_SYMBOL_GPL(class_interface_unregister);