blob: 52eb8e644acd1bfa797b4f132474edc931363a1c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070013#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.dee9ba6362005-03-15 11:54:21 -080018#include <linux/err.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080019#include <linux/slab.h>
Kay Sieversedfaa7c2007-05-21 22:08:01 +020020#include <linux/genhd.h>
Dave Youngf75b1c62008-05-28 09:28:39 -070021#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "base.h"
23
24#define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080026static ssize_t class_attr_show(struct kobject *kobj, struct attribute *attr,
27 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080029 struct class_attribute *class_attr = to_class_attr(attr);
Kay Sievers6b6e39a2010-11-15 23:13:18 +010030 struct subsys_private *cp = to_subsys_private(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050031 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33 if (class_attr->show)
Andi Kleen28812fe2010-01-05 12:48:07 +010034 ret = class_attr->show(cp->class, class_attr, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 return ret;
36}
37
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080038static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr,
39 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080041 struct class_attribute *class_attr = to_class_attr(attr);
Kay Sievers6b6e39a2010-11-15 23:13:18 +010042 struct subsys_private *cp = to_subsys_private(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050043 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45 if (class_attr->store)
Andi Kleen28812fe2010-01-05 12:48:07 +010046 ret = class_attr->store(cp->class, class_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 return ret;
48}
49
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080050static void class_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Kay Sievers6b6e39a2010-11-15 23:13:18 +010052 struct subsys_private *cp = to_subsys_private(kobj);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050053 struct class *class = cp->class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55 pr_debug("class '%s': release.\n", class->name);
56
57 if (class->class_release)
58 class->class_release(class);
59 else
60 pr_debug("class '%s' does not have a release() function, "
61 "be careful\n", class->name);
Laurent Pinchart18d19c92010-02-10 13:32:49 +010062
63 kfree(cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
Eric W. Biedermanbc451f22010-03-30 11:31:25 -070066static const struct kobj_ns_type_operations *class_child_ns_type(struct kobject *kobj)
67{
Kay Sievers6b6e39a2010-11-15 23:13:18 +010068 struct subsys_private *cp = to_subsys_private(kobj);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -070069 struct class *class = cp->class;
70
71 return class->ns_type;
72}
73
Emese Revfy52cf25d2010-01-19 02:58:23 +010074static const struct sysfs_ops class_sysfs_ops = {
Eric W. Biederman672d82c2011-10-12 21:55:08 +000075 .show = class_attr_show,
76 .store = class_attr_store,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -060079static struct kobj_type class_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .sysfs_ops = &class_sysfs_ops,
81 .release = class_release,
Eric W. Biedermanbc451f22010-03-30 11:31:25 -070082 .child_ns_type = class_child_ns_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
Kay Sievers6b6e39a2010-11-15 23:13:18 +010085/* Hotplug events for classes go to the class subsys */
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -050086static struct kset *class_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88
Tejun Heo58292cbe2013-09-11 22:29:04 -040089int class_create_file_ns(struct class *cls, const struct class_attribute *attr,
90 const void *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 int error;
Cosmin Tomulescud34898d2015-03-08 12:31:54 +020093
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080094 if (cls)
Tejun Heo58292cbe2013-09-11 22:29:04 -040095 error = sysfs_create_file_ns(&cls->p->subsys.kobj,
96 &attr->attr, ns);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080097 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 error = -EINVAL;
99 return error;
100}
101
Tejun Heo58292cbe2013-09-11 22:29:04 -0400102void class_remove_file_ns(struct class *cls, const struct class_attribute *attr,
103 const void *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 if (cls)
Tejun Heo58292cbe2013-09-11 22:29:04 -0400106 sysfs_remove_file_ns(&cls->p->subsys.kobj, &attr->attr, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Greg Kroah-Hartman17407572006-05-02 16:59:59 +0200109static struct class *class_get(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 if (cls)
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100112 kset_get(&cls->p->subsys);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500113 return cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800116static void class_put(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700118 if (cls)
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100119 kset_put(&cls->p->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200122static void klist_class_dev_get(struct klist_node *n)
123{
124 struct device *dev = container_of(n, struct device, knode_class);
125
126 get_device(dev);
127}
128
129static void klist_class_dev_put(struct klist_node *n)
130{
131 struct device *dev = container_of(n, struct device, knode_class);
132
133 put_device(dev);
134}
135
Greg Kroah-Hartmanced64732016-11-28 16:41:41 +0100136static int class_add_groups(struct class *cls,
137 const struct attribute_group **groups)
138{
139 return sysfs_create_groups(&cls->p->subsys.kobj, groups);
140}
141
142static void class_remove_groups(struct class *cls,
143 const struct attribute_group **groups)
144{
145 return sysfs_remove_groups(&cls->p->subsys.kobj, groups);
146}
147
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700148int __class_register(struct class *cls, struct lock_class_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100150 struct subsys_private *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 int error;
152
153 pr_debug("device class '%s': registering\n", cls->name);
154
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500155 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
156 if (!cp)
157 return -ENOMEM;
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100158 klist_init(&cp->klist_devices, klist_class_dev_get, klist_class_dev_put);
Kay Sieversca22e562011-12-14 14:29:38 -0800159 INIT_LIST_HEAD(&cp->interfaces);
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100160 kset_init(&cp->glue_dirs);
Kay Sieversca22e562011-12-14 14:29:38 -0800161 __mutex_init(&cp->mutex, "subsys mutex", key);
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100162 error = kobject_set_name(&cp->subsys.kobj, "%s", cls->name);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500163 if (error) {
164 kfree(cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return error;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Dan Williamse105b8b2008-04-21 10:51:07 -0700168 /* set the default /sys/dev directory for devices of this class */
169 if (!cls->dev_kobj)
170 cls->dev_kobj = sysfs_dev_char_kobj;
171
Andi Kleene52eec12010-09-08 16:54:17 +0200172#if defined(CONFIG_BLOCK)
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200173 /* let the block class directory show up in the root of sysfs */
Andi Kleene52eec12010-09-08 16:54:17 +0200174 if (!sysfs_deprecated || cls != &block_class)
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100175 cp->subsys.kobj.kset = class_kset;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200176#else
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100177 cp->subsys.kobj.kset = class_kset;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200178#endif
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100179 cp->subsys.kobj.ktype = &class_ktype;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500180 cp->class = cls;
181 cls->p = cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100183 error = kset_register(&cp->subsys);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500184 if (error) {
185 kfree(cp);
186 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
Greg Kroah-Hartmanced64732016-11-28 16:41:41 +0100188 error = class_add_groups(class_get(cls), cls->class_groups);
189 class_put(cls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return error;
191}
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700192EXPORT_SYMBOL_GPL(__class_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800194void class_unregister(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 pr_debug("device class '%s': unregistering\n", cls->name);
Greg Kroah-Hartmanced64732016-11-28 16:41:41 +0100197 class_remove_groups(cls, cls->class_groups);
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100198 kset_unregister(&cls->p->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800201static void class_create_release(struct class *cls)
202{
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800203 pr_debug("%s called for %s\n", __func__, cls->name);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800204 kfree(cls);
205}
206
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800207/**
208 * class_create - create a struct class structure
209 * @owner: pointer to the module that is to "own" this struct class
210 * @name: pointer to a string for the name of this class.
Randy Dunlap0e241ff2008-07-24 16:58:42 -0700211 * @key: the lock_class_key for this class; used by mutex lock debugging
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800212 *
213 * This is used to create a struct class pointer that can then be used
Kay Sieversc3b19ff2008-03-12 20:47:35 +0100214 * in calls to device_create().
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800215 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +0200216 * Returns &struct class pointer on success, or ERR_PTR() on error.
217 *
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800218 * Note, the pointer created here is to be destroyed when finished by
219 * making a call to class_destroy().
220 */
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700221struct class *__class_create(struct module *owner, const char *name,
222 struct lock_class_key *key)
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800223{
224 struct class *cls;
225 int retval;
226
Jiri Slaby4aed0642005-09-13 01:25:01 -0700227 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800228 if (!cls) {
229 retval = -ENOMEM;
230 goto error;
231 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800232
233 cls->name = name;
234 cls->owner = owner;
235 cls->class_release = class_create_release;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800236
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700237 retval = __class_register(cls, key);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800238 if (retval)
239 goto error;
240
241 return cls;
242
243error:
244 kfree(cls);
245 return ERR_PTR(retval);
246}
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700247EXPORT_SYMBOL_GPL(__class_create);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800248
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800249/**
250 * class_destroy - destroys a struct class structure
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700251 * @cls: pointer to the struct class that is to be destroyed
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800252 *
253 * Note, the pointer to be destroyed must have been created with a call
254 * to class_create().
255 */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800256void class_destroy(struct class *cls)
257{
258 if ((cls == NULL) || (IS_ERR(cls)))
259 return;
260
261 class_unregister(cls);
262}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Dave Youngfd048972008-01-22 15:27:08 +0800264/**
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200265 * class_dev_iter_init - initialize class device iterator
266 * @iter: class iterator to initialize
267 * @class: the class we wanna iterate over
268 * @start: the device to start iterating from, if any
269 * @type: device_type of the devices to iterate over, NULL for all
270 *
271 * Initialize class iterator @iter such that it iterates over devices
272 * of @class. If @start is set, the list iteration will start there,
273 * otherwise if it is NULL, the iteration starts at the beginning of
274 * the list.
275 */
276void class_dev_iter_init(struct class_dev_iter *iter, struct class *class,
277 struct device *start, const struct device_type *type)
278{
279 struct klist_node *start_knode = NULL;
280
281 if (start)
282 start_knode = &start->knode_class;
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100283 klist_iter_init_node(&class->p->klist_devices, &iter->ki, start_knode);
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200284 iter->type = type;
285}
286EXPORT_SYMBOL_GPL(class_dev_iter_init);
287
288/**
289 * class_dev_iter_next - iterate to the next device
290 * @iter: class iterator to proceed
291 *
292 * Proceed @iter to the next device and return it. Returns NULL if
293 * iteration is complete.
294 *
295 * The returned device is referenced and won't be released till
296 * iterator is proceed to the next device or exited. The caller is
297 * free to do whatever it wants to do with the device including
298 * calling back into class code.
299 */
300struct device *class_dev_iter_next(struct class_dev_iter *iter)
301{
302 struct klist_node *knode;
303 struct device *dev;
304
305 while (1) {
306 knode = klist_next(&iter->ki);
307 if (!knode)
308 return NULL;
309 dev = container_of(knode, struct device, knode_class);
310 if (!iter->type || iter->type == dev->type)
311 return dev;
312 }
313}
314EXPORT_SYMBOL_GPL(class_dev_iter_next);
315
316/**
317 * class_dev_iter_exit - finish iteration
318 * @iter: class iterator to finish
319 *
320 * Finish an iteration. Always call this function after iteration is
321 * complete whether the iteration ran till the end or not.
322 */
323void class_dev_iter_exit(struct class_dev_iter *iter)
324{
325 klist_iter_exit(&iter->ki);
326}
327EXPORT_SYMBOL_GPL(class_dev_iter_exit);
328
329/**
Dave Youngfd048972008-01-22 15:27:08 +0800330 * class_for_each_device - device iterator
331 * @class: the class we're iterating
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400332 * @start: the device to start with in the list, if any.
Dave Youngfd048972008-01-22 15:27:08 +0800333 * @data: data for the callback
334 * @fn: function to be called for each device
335 *
336 * Iterate over @class's list of devices, and call @fn for each,
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400337 * passing it @data. If @start is set, the list iteration will start
338 * there, otherwise if it is NULL, the iteration starts at the
339 * beginning of the list.
Dave Youngfd048972008-01-22 15:27:08 +0800340 *
341 * We check the return of @fn each time. If it returns anything
342 * other than 0, we break out and return that value.
343 *
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200344 * @fn is allowed to do anything including calling back into class
345 * code. There's no locking restriction.
Dave Youngfd048972008-01-22 15:27:08 +0800346 */
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400347int class_for_each_device(struct class *class, struct device *start,
348 void *data, int (*fn)(struct device *, void *))
Dave Youngfd048972008-01-22 15:27:08 +0800349{
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200350 struct class_dev_iter iter;
Dave Youngfd048972008-01-22 15:27:08 +0800351 struct device *dev;
352 int error = 0;
353
354 if (!class)
355 return -EINVAL;
David Brownell7c225032008-08-06 18:52:44 -0700356 if (!class->p) {
357 WARN(1, "%s called for class '%s' before it was initialized",
358 __func__, class->name);
359 return -EINVAL;
360 }
361
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200362 class_dev_iter_init(&iter, class, start, NULL);
363 while ((dev = class_dev_iter_next(&iter))) {
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400364 error = fn(dev, data);
Dave Youngfd048972008-01-22 15:27:08 +0800365 if (error)
366 break;
367 }
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200368 class_dev_iter_exit(&iter);
Dave Youngfd048972008-01-22 15:27:08 +0800369
370 return error;
371}
372EXPORT_SYMBOL_GPL(class_for_each_device);
373
374/**
375 * class_find_device - device iterator for locating a particular device
376 * @class: the class we're iterating
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400377 * @start: Device to begin with
Dave Youngfd048972008-01-22 15:27:08 +0800378 * @data: data for the match function
379 * @match: function to check device
380 *
381 * This is similar to the class_for_each_dev() function above, but it
382 * returns a reference to a device that is 'found' for later use, as
383 * determined by the @match callback.
384 *
385 * The callback should return 0 if the device doesn't match and non-zero
386 * if it does. If the callback returns non-zero, this function will
387 * return to the caller and not iterate over any more devices.
Randy Dunlapa63ca8f2008-01-30 11:51:08 -0800388 *
Dave Youngfd048972008-01-22 15:27:08 +0800389 * Note, you will need to drop the reference with put_device() after use.
390 *
Rolf Eike Beer12077752015-09-04 20:49:14 +0200391 * @match is allowed to do anything including calling back into class
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200392 * code. There's no locking restriction.
Dave Youngfd048972008-01-22 15:27:08 +0800393 */
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400394struct device *class_find_device(struct class *class, struct device *start,
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100395 const void *data,
396 int (*match)(struct device *, const void *))
Dave Youngfd048972008-01-22 15:27:08 +0800397{
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200398 struct class_dev_iter iter;
Dave Youngfd048972008-01-22 15:27:08 +0800399 struct device *dev;
Dave Youngfd048972008-01-22 15:27:08 +0800400
401 if (!class)
402 return NULL;
David Brownell7c225032008-08-06 18:52:44 -0700403 if (!class->p) {
404 WARN(1, "%s called for class '%s' before it was initialized",
405 __func__, class->name);
406 return NULL;
407 }
Dave Youngfd048972008-01-22 15:27:08 +0800408
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200409 class_dev_iter_init(&iter, class, start, NULL);
410 while ((dev = class_dev_iter_next(&iter))) {
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400411 if (match(dev, data)) {
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200412 get_device(dev);
Dave Youngfd048972008-01-22 15:27:08 +0800413 break;
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200414 }
Dave Youngfd048972008-01-22 15:27:08 +0800415 }
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200416 class_dev_iter_exit(&iter);
Dave Youngfd048972008-01-22 15:27:08 +0800417
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200418 return dev;
Dave Youngfd048972008-01-22 15:27:08 +0800419}
420EXPORT_SYMBOL_GPL(class_find_device);
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422int class_interface_register(struct class_interface *class_intf)
423{
424 struct class *parent;
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200425 struct class_dev_iter iter;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200426 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 if (!class_intf || !class_intf->class)
429 return -ENODEV;
430
431 parent = class_get(class_intf->class);
432 if (!parent)
433 return -EINVAL;
434
Kay Sieversca22e562011-12-14 14:29:38 -0800435 mutex_lock(&parent->p->mutex);
436 list_add_tail(&class_intf->node, &parent->p->interfaces);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200437 if (class_intf->add_dev) {
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200438 class_dev_iter_init(&iter, parent, NULL, NULL);
439 while ((dev = class_dev_iter_next(&iter)))
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200440 class_intf->add_dev(dev, class_intf);
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200441 class_dev_iter_exit(&iter);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200442 }
Kay Sieversca22e562011-12-14 14:29:38 -0800443 mutex_unlock(&parent->p->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 return 0;
446}
447
448void class_interface_unregister(struct class_interface *class_intf)
449{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800450 struct class *parent = class_intf->class;
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200451 struct class_dev_iter iter;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200452 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 if (!parent)
455 return;
456
Kay Sieversca22e562011-12-14 14:29:38 -0800457 mutex_lock(&parent->p->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 list_del_init(&class_intf->node);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200459 if (class_intf->remove_dev) {
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200460 class_dev_iter_init(&iter, parent, NULL, NULL);
461 while ((dev = class_dev_iter_next(&iter)))
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200462 class_intf->remove_dev(dev, class_intf);
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200463 class_dev_iter_exit(&iter);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200464 }
Kay Sieversca22e562011-12-14 14:29:38 -0800465 mutex_unlock(&parent->p->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 class_put(parent);
468}
469
Brandon Philips319684b2010-11-06 21:19:22 -0400470ssize_t show_class_attr_string(struct class *class,
471 struct class_attribute *attr, char *buf)
Andi Kleen869dfc82010-01-05 12:48:08 +0100472{
473 struct class_attribute_string *cs;
Cosmin Tomulescud34898d2015-03-08 12:31:54 +0200474
Andi Kleen869dfc82010-01-05 12:48:08 +0100475 cs = container_of(attr, struct class_attribute_string, attr);
476 return snprintf(buf, PAGE_SIZE, "%s\n", cs->str);
477}
478
479EXPORT_SYMBOL_GPL(show_class_attr_string);
480
Jean Delvare46227092009-08-04 12:55:34 +0200481struct class_compat {
482 struct kobject *kobj;
483};
484
485/**
486 * class_compat_register - register a compatibility class
487 * @name: the name of the class
488 *
489 * Compatibility class are meant as a temporary user-space compatibility
490 * workaround when converting a family of class devices to a bus devices.
491 */
492struct class_compat *class_compat_register(const char *name)
493{
494 struct class_compat *cls;
495
496 cls = kmalloc(sizeof(struct class_compat), GFP_KERNEL);
497 if (!cls)
498 return NULL;
499 cls->kobj = kobject_create_and_add(name, &class_kset->kobj);
500 if (!cls->kobj) {
501 kfree(cls);
502 return NULL;
503 }
504 return cls;
505}
506EXPORT_SYMBOL_GPL(class_compat_register);
507
508/**
509 * class_compat_unregister - unregister a compatibility class
510 * @cls: the class to unregister
511 */
512void class_compat_unregister(struct class_compat *cls)
513{
514 kobject_put(cls->kobj);
515 kfree(cls);
516}
517EXPORT_SYMBOL_GPL(class_compat_unregister);
518
519/**
520 * class_compat_create_link - create a compatibility class device link to
521 * a bus device
522 * @cls: the compatibility class
523 * @dev: the target bus device
524 * @device_link: an optional device to which a "device" link should be created
525 */
526int class_compat_create_link(struct class_compat *cls, struct device *dev,
527 struct device *device_link)
528{
529 int error;
530
531 error = sysfs_create_link(cls->kobj, &dev->kobj, dev_name(dev));
532 if (error)
533 return error;
534
535 /*
536 * Optionally add a "device" link (typically to the parent), as a
537 * class device would have one and we want to provide as much
538 * backwards compatibility as possible.
539 */
540 if (device_link) {
541 error = sysfs_create_link(&dev->kobj, &device_link->kobj,
542 "device");
543 if (error)
544 sysfs_remove_link(cls->kobj, dev_name(dev));
545 }
546
547 return error;
548}
549EXPORT_SYMBOL_GPL(class_compat_create_link);
550
551/**
552 * class_compat_remove_link - remove a compatibility class device link to
553 * a bus device
554 * @cls: the compatibility class
555 * @dev: the target bus device
556 * @device_link: an optional device to which a "device" link was previously
557 * created
558 */
559void class_compat_remove_link(struct class_compat *cls, struct device *dev,
560 struct device *device_link)
561{
562 if (device_link)
563 sysfs_remove_link(&dev->kobj, "device");
564 sysfs_remove_link(cls->kobj, dev_name(dev));
565}
566EXPORT_SYMBOL_GPL(class_compat_remove_link);
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568int __init classes_init(void)
569{
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -0500570 class_kset = kset_create_and_add("class", NULL, NULL);
571 if (!class_kset)
572 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return 0;
574}
575
Tejun Heo58292cbe2013-09-11 22:29:04 -0400576EXPORT_SYMBOL_GPL(class_create_file_ns);
577EXPORT_SYMBOL_GPL(class_remove_file_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578EXPORT_SYMBOL_GPL(class_unregister);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800579EXPORT_SYMBOL_GPL(class_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581EXPORT_SYMBOL_GPL(class_interface_register);
582EXPORT_SYMBOL_GPL(class_interface_unregister);