blob: a2b2896693d6439b43a57ae309e82e9e9a267b37 [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
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800122static int add_class_attrs(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 int i;
125 int error = 0;
126
127 if (cls->class_attrs) {
Greg Kroah-Hartman3e1026b2013-08-22 10:25:34 -0700128 for (i = 0; cls->class_attrs[i].attr.name; i++) {
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800129 error = class_create_file(cls, &cls->class_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (error)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800131 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133 }
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800134done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return error;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800136error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800138 class_remove_file(cls, &cls->class_attrs[i]);
139 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800142static void remove_class_attrs(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 int i;
145
146 if (cls->class_attrs) {
Greg Kroah-Hartman3e1026b2013-08-22 10:25:34 -0700147 for (i = 0; cls->class_attrs[i].attr.name; i++)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800148 class_remove_file(cls, &cls->class_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150}
151
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200152static void klist_class_dev_get(struct klist_node *n)
153{
154 struct device *dev = container_of(n, struct device, knode_class);
155
156 get_device(dev);
157}
158
159static void klist_class_dev_put(struct klist_node *n)
160{
161 struct device *dev = container_of(n, struct device, knode_class);
162
163 put_device(dev);
164}
165
Greg Kroah-Hartmanced64732016-11-28 16:41:41 +0100166static int class_add_groups(struct class *cls,
167 const struct attribute_group **groups)
168{
169 return sysfs_create_groups(&cls->p->subsys.kobj, groups);
170}
171
172static void class_remove_groups(struct class *cls,
173 const struct attribute_group **groups)
174{
175 return sysfs_remove_groups(&cls->p->subsys.kobj, groups);
176}
177
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700178int __class_register(struct class *cls, struct lock_class_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100180 struct subsys_private *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int error;
182
183 pr_debug("device class '%s': registering\n", cls->name);
184
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500185 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
186 if (!cp)
187 return -ENOMEM;
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100188 klist_init(&cp->klist_devices, klist_class_dev_get, klist_class_dev_put);
Kay Sieversca22e562011-12-14 14:29:38 -0800189 INIT_LIST_HEAD(&cp->interfaces);
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100190 kset_init(&cp->glue_dirs);
Kay Sieversca22e562011-12-14 14:29:38 -0800191 __mutex_init(&cp->mutex, "subsys mutex", key);
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100192 error = kobject_set_name(&cp->subsys.kobj, "%s", cls->name);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500193 if (error) {
194 kfree(cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return error;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Dan Williamse105b8b2008-04-21 10:51:07 -0700198 /* set the default /sys/dev directory for devices of this class */
199 if (!cls->dev_kobj)
200 cls->dev_kobj = sysfs_dev_char_kobj;
201
Andi Kleene52eec12010-09-08 16:54:17 +0200202#if defined(CONFIG_BLOCK)
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200203 /* let the block class directory show up in the root of sysfs */
Andi Kleene52eec12010-09-08 16:54:17 +0200204 if (!sysfs_deprecated || cls != &block_class)
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100205 cp->subsys.kobj.kset = class_kset;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200206#else
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100207 cp->subsys.kobj.kset = class_kset;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200208#endif
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100209 cp->subsys.kobj.ktype = &class_ktype;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500210 cp->class = cls;
211 cls->p = cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100213 error = kset_register(&cp->subsys);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500214 if (error) {
215 kfree(cp);
216 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
Greg Kroah-Hartmanced64732016-11-28 16:41:41 +0100218 error = class_add_groups(class_get(cls), cls->class_groups);
219 class_put(cls);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500220 error = add_class_attrs(class_get(cls));
221 class_put(cls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return error;
223}
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700224EXPORT_SYMBOL_GPL(__class_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800226void class_unregister(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 pr_debug("device class '%s': unregistering\n", cls->name);
229 remove_class_attrs(cls);
Greg Kroah-Hartmanced64732016-11-28 16:41:41 +0100230 class_remove_groups(cls, cls->class_groups);
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100231 kset_unregister(&cls->p->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800234static void class_create_release(struct class *cls)
235{
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800236 pr_debug("%s called for %s\n", __func__, cls->name);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800237 kfree(cls);
238}
239
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800240/**
241 * class_create - create a struct class structure
242 * @owner: pointer to the module that is to "own" this struct class
243 * @name: pointer to a string for the name of this class.
Randy Dunlap0e241ff2008-07-24 16:58:42 -0700244 * @key: the lock_class_key for this class; used by mutex lock debugging
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800245 *
246 * This is used to create a struct class pointer that can then be used
Kay Sieversc3b19ff2008-03-12 20:47:35 +0100247 * in calls to device_create().
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800248 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +0200249 * Returns &struct class pointer on success, or ERR_PTR() on error.
250 *
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800251 * Note, the pointer created here is to be destroyed when finished by
252 * making a call to class_destroy().
253 */
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700254struct class *__class_create(struct module *owner, const char *name,
255 struct lock_class_key *key)
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800256{
257 struct class *cls;
258 int retval;
259
Jiri Slaby4aed0642005-09-13 01:25:01 -0700260 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800261 if (!cls) {
262 retval = -ENOMEM;
263 goto error;
264 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800265
266 cls->name = name;
267 cls->owner = owner;
268 cls->class_release = class_create_release;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800269
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700270 retval = __class_register(cls, key);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800271 if (retval)
272 goto error;
273
274 return cls;
275
276error:
277 kfree(cls);
278 return ERR_PTR(retval);
279}
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700280EXPORT_SYMBOL_GPL(__class_create);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800281
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800282/**
283 * class_destroy - destroys a struct class structure
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700284 * @cls: pointer to the struct class that is to be destroyed
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800285 *
286 * Note, the pointer to be destroyed must have been created with a call
287 * to class_create().
288 */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800289void class_destroy(struct class *cls)
290{
291 if ((cls == NULL) || (IS_ERR(cls)))
292 return;
293
294 class_unregister(cls);
295}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Dave Youngfd048972008-01-22 15:27:08 +0800297/**
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200298 * class_dev_iter_init - initialize class device iterator
299 * @iter: class iterator to initialize
300 * @class: the class we wanna iterate over
301 * @start: the device to start iterating from, if any
302 * @type: device_type of the devices to iterate over, NULL for all
303 *
304 * Initialize class iterator @iter such that it iterates over devices
305 * of @class. If @start is set, the list iteration will start there,
306 * otherwise if it is NULL, the iteration starts at the beginning of
307 * the list.
308 */
309void class_dev_iter_init(struct class_dev_iter *iter, struct class *class,
310 struct device *start, const struct device_type *type)
311{
312 struct klist_node *start_knode = NULL;
313
314 if (start)
315 start_knode = &start->knode_class;
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100316 klist_iter_init_node(&class->p->klist_devices, &iter->ki, start_knode);
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200317 iter->type = type;
318}
319EXPORT_SYMBOL_GPL(class_dev_iter_init);
320
321/**
322 * class_dev_iter_next - iterate to the next device
323 * @iter: class iterator to proceed
324 *
325 * Proceed @iter to the next device and return it. Returns NULL if
326 * iteration is complete.
327 *
328 * The returned device is referenced and won't be released till
329 * iterator is proceed to the next device or exited. The caller is
330 * free to do whatever it wants to do with the device including
331 * calling back into class code.
332 */
333struct device *class_dev_iter_next(struct class_dev_iter *iter)
334{
335 struct klist_node *knode;
336 struct device *dev;
337
338 while (1) {
339 knode = klist_next(&iter->ki);
340 if (!knode)
341 return NULL;
342 dev = container_of(knode, struct device, knode_class);
343 if (!iter->type || iter->type == dev->type)
344 return dev;
345 }
346}
347EXPORT_SYMBOL_GPL(class_dev_iter_next);
348
349/**
350 * class_dev_iter_exit - finish iteration
351 * @iter: class iterator to finish
352 *
353 * Finish an iteration. Always call this function after iteration is
354 * complete whether the iteration ran till the end or not.
355 */
356void class_dev_iter_exit(struct class_dev_iter *iter)
357{
358 klist_iter_exit(&iter->ki);
359}
360EXPORT_SYMBOL_GPL(class_dev_iter_exit);
361
362/**
Dave Youngfd048972008-01-22 15:27:08 +0800363 * class_for_each_device - device iterator
364 * @class: the class we're iterating
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400365 * @start: the device to start with in the list, if any.
Dave Youngfd048972008-01-22 15:27:08 +0800366 * @data: data for the callback
367 * @fn: function to be called for each device
368 *
369 * Iterate over @class's list of devices, and call @fn for each,
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400370 * passing it @data. If @start is set, the list iteration will start
371 * there, otherwise if it is NULL, the iteration starts at the
372 * beginning of the list.
Dave Youngfd048972008-01-22 15:27:08 +0800373 *
374 * We check the return of @fn each time. If it returns anything
375 * other than 0, we break out and return that value.
376 *
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200377 * @fn is allowed to do anything including calling back into class
378 * code. There's no locking restriction.
Dave Youngfd048972008-01-22 15:27:08 +0800379 */
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400380int class_for_each_device(struct class *class, struct device *start,
381 void *data, int (*fn)(struct device *, void *))
Dave Youngfd048972008-01-22 15:27:08 +0800382{
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200383 struct class_dev_iter iter;
Dave Youngfd048972008-01-22 15:27:08 +0800384 struct device *dev;
385 int error = 0;
386
387 if (!class)
388 return -EINVAL;
David Brownell7c225032008-08-06 18:52:44 -0700389 if (!class->p) {
390 WARN(1, "%s called for class '%s' before it was initialized",
391 __func__, class->name);
392 return -EINVAL;
393 }
394
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200395 class_dev_iter_init(&iter, class, start, NULL);
396 while ((dev = class_dev_iter_next(&iter))) {
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400397 error = fn(dev, data);
Dave Youngfd048972008-01-22 15:27:08 +0800398 if (error)
399 break;
400 }
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200401 class_dev_iter_exit(&iter);
Dave Youngfd048972008-01-22 15:27:08 +0800402
403 return error;
404}
405EXPORT_SYMBOL_GPL(class_for_each_device);
406
407/**
408 * class_find_device - device iterator for locating a particular device
409 * @class: the class we're iterating
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400410 * @start: Device to begin with
Dave Youngfd048972008-01-22 15:27:08 +0800411 * @data: data for the match function
412 * @match: function to check device
413 *
414 * This is similar to the class_for_each_dev() function above, but it
415 * returns a reference to a device that is 'found' for later use, as
416 * determined by the @match callback.
417 *
418 * The callback should return 0 if the device doesn't match and non-zero
419 * if it does. If the callback returns non-zero, this function will
420 * return to the caller and not iterate over any more devices.
Randy Dunlapa63ca8f2008-01-30 11:51:08 -0800421 *
Dave Youngfd048972008-01-22 15:27:08 +0800422 * Note, you will need to drop the reference with put_device() after use.
423 *
Rolf Eike Beer12077752015-09-04 20:49:14 +0200424 * @match is allowed to do anything including calling back into class
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200425 * code. There's no locking restriction.
Dave Youngfd048972008-01-22 15:27:08 +0800426 */
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400427struct device *class_find_device(struct class *class, struct device *start,
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100428 const void *data,
429 int (*match)(struct device *, const void *))
Dave Youngfd048972008-01-22 15:27:08 +0800430{
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200431 struct class_dev_iter iter;
Dave Youngfd048972008-01-22 15:27:08 +0800432 struct device *dev;
Dave Youngfd048972008-01-22 15:27:08 +0800433
434 if (!class)
435 return NULL;
David Brownell7c225032008-08-06 18:52:44 -0700436 if (!class->p) {
437 WARN(1, "%s called for class '%s' before it was initialized",
438 __func__, class->name);
439 return NULL;
440 }
Dave Youngfd048972008-01-22 15:27:08 +0800441
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200442 class_dev_iter_init(&iter, class, start, NULL);
443 while ((dev = class_dev_iter_next(&iter))) {
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400444 if (match(dev, data)) {
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200445 get_device(dev);
Dave Youngfd048972008-01-22 15:27:08 +0800446 break;
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200447 }
Dave Youngfd048972008-01-22 15:27:08 +0800448 }
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200449 class_dev_iter_exit(&iter);
Dave Youngfd048972008-01-22 15:27:08 +0800450
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200451 return dev;
Dave Youngfd048972008-01-22 15:27:08 +0800452}
453EXPORT_SYMBOL_GPL(class_find_device);
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455int class_interface_register(struct class_interface *class_intf)
456{
457 struct class *parent;
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200458 struct class_dev_iter iter;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200459 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 if (!class_intf || !class_intf->class)
462 return -ENODEV;
463
464 parent = class_get(class_intf->class);
465 if (!parent)
466 return -EINVAL;
467
Kay Sieversca22e562011-12-14 14:29:38 -0800468 mutex_lock(&parent->p->mutex);
469 list_add_tail(&class_intf->node, &parent->p->interfaces);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200470 if (class_intf->add_dev) {
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200471 class_dev_iter_init(&iter, parent, NULL, NULL);
472 while ((dev = class_dev_iter_next(&iter)))
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200473 class_intf->add_dev(dev, class_intf);
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200474 class_dev_iter_exit(&iter);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200475 }
Kay Sieversca22e562011-12-14 14:29:38 -0800476 mutex_unlock(&parent->p->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 return 0;
479}
480
481void class_interface_unregister(struct class_interface *class_intf)
482{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800483 struct class *parent = class_intf->class;
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200484 struct class_dev_iter iter;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200485 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 if (!parent)
488 return;
489
Kay Sieversca22e562011-12-14 14:29:38 -0800490 mutex_lock(&parent->p->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 list_del_init(&class_intf->node);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200492 if (class_intf->remove_dev) {
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200493 class_dev_iter_init(&iter, parent, NULL, NULL);
494 while ((dev = class_dev_iter_next(&iter)))
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200495 class_intf->remove_dev(dev, class_intf);
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200496 class_dev_iter_exit(&iter);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200497 }
Kay Sieversca22e562011-12-14 14:29:38 -0800498 mutex_unlock(&parent->p->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 class_put(parent);
501}
502
Brandon Philips319684b2010-11-06 21:19:22 -0400503ssize_t show_class_attr_string(struct class *class,
504 struct class_attribute *attr, char *buf)
Andi Kleen869dfc82010-01-05 12:48:08 +0100505{
506 struct class_attribute_string *cs;
Cosmin Tomulescud34898d2015-03-08 12:31:54 +0200507
Andi Kleen869dfc82010-01-05 12:48:08 +0100508 cs = container_of(attr, struct class_attribute_string, attr);
509 return snprintf(buf, PAGE_SIZE, "%s\n", cs->str);
510}
511
512EXPORT_SYMBOL_GPL(show_class_attr_string);
513
Jean Delvare46227092009-08-04 12:55:34 +0200514struct class_compat {
515 struct kobject *kobj;
516};
517
518/**
519 * class_compat_register - register a compatibility class
520 * @name: the name of the class
521 *
522 * Compatibility class are meant as a temporary user-space compatibility
523 * workaround when converting a family of class devices to a bus devices.
524 */
525struct class_compat *class_compat_register(const char *name)
526{
527 struct class_compat *cls;
528
529 cls = kmalloc(sizeof(struct class_compat), GFP_KERNEL);
530 if (!cls)
531 return NULL;
532 cls->kobj = kobject_create_and_add(name, &class_kset->kobj);
533 if (!cls->kobj) {
534 kfree(cls);
535 return NULL;
536 }
537 return cls;
538}
539EXPORT_SYMBOL_GPL(class_compat_register);
540
541/**
542 * class_compat_unregister - unregister a compatibility class
543 * @cls: the class to unregister
544 */
545void class_compat_unregister(struct class_compat *cls)
546{
547 kobject_put(cls->kobj);
548 kfree(cls);
549}
550EXPORT_SYMBOL_GPL(class_compat_unregister);
551
552/**
553 * class_compat_create_link - create a compatibility class device link to
554 * a bus device
555 * @cls: the compatibility class
556 * @dev: the target bus device
557 * @device_link: an optional device to which a "device" link should be created
558 */
559int class_compat_create_link(struct class_compat *cls, struct device *dev,
560 struct device *device_link)
561{
562 int error;
563
564 error = sysfs_create_link(cls->kobj, &dev->kobj, dev_name(dev));
565 if (error)
566 return error;
567
568 /*
569 * Optionally add a "device" link (typically to the parent), as a
570 * class device would have one and we want to provide as much
571 * backwards compatibility as possible.
572 */
573 if (device_link) {
574 error = sysfs_create_link(&dev->kobj, &device_link->kobj,
575 "device");
576 if (error)
577 sysfs_remove_link(cls->kobj, dev_name(dev));
578 }
579
580 return error;
581}
582EXPORT_SYMBOL_GPL(class_compat_create_link);
583
584/**
585 * class_compat_remove_link - remove a compatibility class device link to
586 * a bus device
587 * @cls: the compatibility class
588 * @dev: the target bus device
589 * @device_link: an optional device to which a "device" link was previously
590 * created
591 */
592void class_compat_remove_link(struct class_compat *cls, struct device *dev,
593 struct device *device_link)
594{
595 if (device_link)
596 sysfs_remove_link(&dev->kobj, "device");
597 sysfs_remove_link(cls->kobj, dev_name(dev));
598}
599EXPORT_SYMBOL_GPL(class_compat_remove_link);
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601int __init classes_init(void)
602{
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -0500603 class_kset = kset_create_and_add("class", NULL, NULL);
604 if (!class_kset)
605 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return 0;
607}
608
Tejun Heo58292cbe2013-09-11 22:29:04 -0400609EXPORT_SYMBOL_GPL(class_create_file_ns);
610EXPORT_SYMBOL_GPL(class_remove_file_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611EXPORT_SYMBOL_GPL(class_unregister);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800612EXPORT_SYMBOL_GPL(class_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614EXPORT_SYMBOL_GPL(class_interface_register);
615EXPORT_SYMBOL_GPL(class_interface_unregister);