blob: a863bb091e11db26e6e996dfa6fb341285d11991 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "base.h"
21
22#define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070023#define to_class(obj) container_of(obj, struct class, subsys.kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25static ssize_t
26class_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
27{
28 struct class_attribute * class_attr = to_class_attr(attr);
29 struct class * dc = to_class(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050030 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32 if (class_attr->show)
33 ret = class_attr->show(dc, buf);
34 return ret;
35}
36
37static ssize_t
38class_attr_store(struct kobject * kobj, struct attribute * attr,
39 const char * buf, size_t count)
40{
41 struct class_attribute * class_attr = to_class_attr(attr);
42 struct class * dc = to_class(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)
46 ret = class_attr->store(dc, buf, count);
47 return ret;
48}
49
50static void class_release(struct kobject * kobj)
51{
52 struct class *class = to_class(kobj);
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
63static struct sysfs_ops class_sysfs_ops = {
64 .show = class_attr_show,
65 .store = class_attr_store,
66};
67
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -060068static struct kobj_type class_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 .sysfs_ops = &class_sysfs_ops,
70 .release = class_release,
71};
72
73/* Hotplug events for classes go to the class_obj subsys */
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -060074static decl_subsys(class, &class_ktype, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76
77int class_create_file(struct class * cls, const struct class_attribute * attr)
78{
79 int error;
80 if (cls) {
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070081 error = sysfs_create_file(&cls->subsys.kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 } else
83 error = -EINVAL;
84 return error;
85}
86
87void class_remove_file(struct class * cls, const struct class_attribute * attr)
88{
89 if (cls)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070090 sysfs_remove_file(&cls->subsys.kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Greg Kroah-Hartman17407572006-05-02 16:59:59 +020093static struct class *class_get(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 if (cls)
Greg Kroah-Hartman1ef4cfa2007-09-12 15:06:57 -070096 return container_of(kset_get(&cls->subsys), struct class, subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return NULL;
98}
99
Greg Kroah-Hartman17407572006-05-02 16:59:59 +0200100static void class_put(struct class * cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700102 if (cls)
Greg Kroah-Hartman6e9d9302007-09-12 15:06:57 -0700103 kset_put(&cls->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106
107static int add_class_attrs(struct class * cls)
108{
109 int i;
110 int error = 0;
111
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]);
115 if (error)
116 goto Err;
117 }
118 }
119 Done:
120 return error;
121 Err:
122 while (--i >= 0)
123 class_remove_file(cls,&cls->class_attrs[i]);
124 goto Done;
125}
126
127static void remove_class_attrs(struct class * cls)
128{
129 int i;
130
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]);
134 }
135}
136
137int class_register(struct class * cls)
138{
139 int error;
140
141 pr_debug("device class '%s': registering\n", cls->name);
142
143 INIT_LIST_HEAD(&cls->children);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700144 INIT_LIST_HEAD(&cls->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 INIT_LIST_HEAD(&cls->interfaces);
Kay Sievers86406242007-03-14 03:25:56 +0100146 kset_init(&cls->class_dirs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 init_MUTEX(&cls->sem);
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700148 error = kobject_set_name(&cls->subsys.kobj, "%s", cls->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (error)
150 return error;
151
Greg Kroah-Hartmand6b05b82007-09-12 15:06:57 -0700152 cls->subsys.kobj.kset = &class_subsys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 error = subsystem_register(&cls->subsys);
155 if (!error) {
156 error = add_class_attrs(class_get(cls));
157 class_put(cls);
158 }
159 return error;
160}
161
162void class_unregister(struct class * cls)
163{
164 pr_debug("device class '%s': unregistering\n", cls->name);
165 remove_class_attrs(cls);
166 subsystem_unregister(&cls->subsys);
167}
168
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800169static void class_create_release(struct class *cls)
170{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700171 pr_debug("%s called for %s\n", __FUNCTION__, cls->name);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800172 kfree(cls);
173}
174
175static void class_device_create_release(struct class_device *class_dev)
176{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700177 pr_debug("%s called for %s\n", __FUNCTION__, class_dev->class_id);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800178 kfree(class_dev);
179}
180
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700181/* needed to allow these devices to have parent class devices */
Kay Sievers312c0042005-11-16 09:00:00 +0100182static int class_device_create_uevent(struct class_device *class_dev,
Kay Sievers7eff2e72007-08-14 15:15:12 +0200183 struct kobj_uevent_env *env)
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700184{
185 pr_debug("%s called for %s\n", __FUNCTION__, class_dev->class_id);
186 return 0;
187}
188
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800189/**
190 * class_create - create a struct class structure
191 * @owner: pointer to the module that is to "own" this struct class
192 * @name: pointer to a string for the name of this class.
193 *
194 * This is used to create a struct class pointer that can then be used
195 * in calls to class_device_create().
196 *
197 * Note, the pointer created here is to be destroyed when finished by
198 * making a call to class_destroy().
199 */
Miguel Ojeda Sandonisab7d7372006-09-13 15:34:05 +0200200struct class *class_create(struct module *owner, const char *name)
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800201{
202 struct class *cls;
203 int retval;
204
Jiri Slaby4aed0642005-09-13 01:25:01 -0700205 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800206 if (!cls) {
207 retval = -ENOMEM;
208 goto error;
209 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800210
211 cls->name = name;
212 cls->owner = owner;
213 cls->class_release = class_create_release;
214 cls->release = class_device_create_release;
215
216 retval = class_register(cls);
217 if (retval)
218 goto error;
219
220 return cls;
221
222error:
223 kfree(cls);
224 return ERR_PTR(retval);
225}
226
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800227/**
228 * class_destroy - destroys a struct class structure
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700229 * @cls: pointer to the struct class that is to be destroyed
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800230 *
231 * Note, the pointer to be destroyed must have been created with a call
232 * to class_create().
233 */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800234void class_destroy(struct class *cls)
235{
236 if ((cls == NULL) || (IS_ERR(cls)))
237 return;
238
239 class_unregister(cls);
240}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242/* Class Device Stuff */
243
244int class_device_create_file(struct class_device * class_dev,
245 const struct class_device_attribute * attr)
246{
247 int error = -EINVAL;
248 if (class_dev)
249 error = sysfs_create_file(&class_dev->kobj, &attr->attr);
250 return error;
251}
252
253void class_device_remove_file(struct class_device * class_dev,
254 const struct class_device_attribute * attr)
255{
256 if (class_dev)
257 sysfs_remove_file(&class_dev->kobj, &attr->attr);
258}
259
260int class_device_create_bin_file(struct class_device *class_dev,
261 struct bin_attribute *attr)
262{
263 int error = -EINVAL;
264 if (class_dev)
265 error = sysfs_create_bin_file(&class_dev->kobj, attr);
266 return error;
267}
268
269void class_device_remove_bin_file(struct class_device *class_dev,
270 struct bin_attribute *attr)
271{
272 if (class_dev)
273 sysfs_remove_bin_file(&class_dev->kobj, attr);
274}
275
276static ssize_t
277class_device_attr_show(struct kobject * kobj, struct attribute * attr,
278 char * buf)
279{
280 struct class_device_attribute * class_dev_attr = to_class_dev_attr(attr);
281 struct class_device * cd = to_class_dev(kobj);
282 ssize_t ret = 0;
283
284 if (class_dev_attr->show)
285 ret = class_dev_attr->show(cd, buf);
286 return ret;
287}
288
289static ssize_t
290class_device_attr_store(struct kobject * kobj, struct attribute * attr,
291 const char * buf, size_t count)
292{
293 struct class_device_attribute * class_dev_attr = to_class_dev_attr(attr);
294 struct class_device * cd = to_class_dev(kobj);
295 ssize_t ret = 0;
296
297 if (class_dev_attr->store)
298 ret = class_dev_attr->store(cd, buf, count);
299 return ret;
300}
301
302static struct sysfs_ops class_dev_sysfs_ops = {
303 .show = class_device_attr_show,
304 .store = class_device_attr_store,
305};
306
307static void class_dev_release(struct kobject * kobj)
308{
309 struct class_device *cd = to_class_dev(kobj);
310 struct class * cls = cd->class;
311
312 pr_debug("device class '%s': release.\n", cd->class_id);
313
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700314 if (cd->release)
315 cd->release(cd);
316 else if (cls->release)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 cls->release(cd);
318 else {
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700319 printk(KERN_ERR "Class Device '%s' does not have a release() function, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 "it is broken and must be fixed.\n",
321 cd->class_id);
322 WARN_ON(1);
323 }
324}
325
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -0600326static struct kobj_type class_device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 .sysfs_ops = &class_dev_sysfs_ops,
328 .release = class_dev_release,
329};
330
Kay Sievers312c0042005-11-16 09:00:00 +0100331static int class_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 struct kobj_type *ktype = get_ktype(kobj);
334
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -0600335 if (ktype == &class_device_ktype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 struct class_device *class_dev = to_class_dev(kobj);
337 if (class_dev->class)
338 return 1;
339 }
340 return 0;
341}
342
Kay Sievers312c0042005-11-16 09:00:00 +0100343static const char *class_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 struct class_device *class_dev = to_class_dev(kobj);
346
347 return class_dev->class->name;
348}
349
Kay Sievers805fab42006-09-14 11:23:28 +0200350#ifdef CONFIG_SYSFS_DEPRECATED
351char *make_class_name(const char *name, struct kobject *kobj)
352{
353 char *class_name;
354 int size;
355
356 size = strlen(name) + strlen(kobject_name(kobj)) + 2;
357
358 class_name = kmalloc(size, GFP_KERNEL);
359 if (!class_name)
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100360 return NULL;
Kay Sievers805fab42006-09-14 11:23:28 +0200361
362 strcpy(class_name, name);
363 strcat(class_name, ":");
364 strcat(class_name, kobject_name(kobj));
365 return class_name;
366}
367
Kay Sievers805fab42006-09-14 11:23:28 +0200368static int make_deprecated_class_device_links(struct class_device *class_dev)
369{
370 char *class_name;
371 int error;
372
373 if (!class_dev->dev)
374 return 0;
375
376 class_name = make_class_name(class_dev->class->name, &class_dev->kobj);
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100377 if (class_name)
378 error = sysfs_create_link(&class_dev->dev->kobj,
379 &class_dev->kobj, class_name);
380 else
381 error = -ENOMEM;
Kay Sievers805fab42006-09-14 11:23:28 +0200382 kfree(class_name);
383 return error;
384}
385
386static void remove_deprecated_class_device_links(struct class_device *class_dev)
387{
388 char *class_name;
389
390 if (!class_dev->dev)
391 return;
392
393 class_name = make_class_name(class_dev->class->name, &class_dev->kobj);
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100394 if (class_name)
395 sysfs_remove_link(&class_dev->dev->kobj, class_name);
Kay Sievers805fab42006-09-14 11:23:28 +0200396 kfree(class_name);
397}
398#else
Kay Sievers805fab42006-09-14 11:23:28 +0200399static inline int make_deprecated_class_device_links(struct class_device *cd)
400{ return 0; }
401static void remove_deprecated_class_device_links(struct class_device *cd)
402{ }
403#endif
404
Kay Sievers7eff2e72007-08-14 15:15:12 +0200405static int class_uevent(struct kset *kset, struct kobject *kobj,
406 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 struct class_device *class_dev = to_class_dev(kobj);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200409 struct device *dev = class_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 int retval = 0;
411
412 pr_debug("%s - name = %s\n", __FUNCTION__, class_dev->class_id);
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (MAJOR(class_dev->devt)) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200415 add_uevent_var(env, "MAJOR=%u", MAJOR(class_dev->devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Kay Sievers7eff2e72007-08-14 15:15:12 +0200417 add_uevent_var(env, "MINOR=%u", MINOR(class_dev->devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419
Kay Sievers2c7afd12007-05-01 13:46:26 +0200420 if (dev) {
421 const char *path = kobject_get_path(&dev->kobj, GFP_KERNEL);
422 if (path) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200423 add_uevent_var(env, "PHYSDEVPATH=%s", path);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200424 kfree(path);
425 }
426
427 if (dev->bus)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200428 add_uevent_var(env, "PHYSDEVBUS=%s", dev->bus->name);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200429
430 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200431 add_uevent_var(env, "PHYSDEVDRIVER=%s", dev->driver->name);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200432 }
433
Kay Sievers312c0042005-11-16 09:00:00 +0100434 if (class_dev->uevent) {
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700435 /* have the class device specific function add its stuff */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200436 retval = class_dev->uevent(class_dev, env);
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700437 if (retval)
Kay Sievers312c0042005-11-16 09:00:00 +0100438 pr_debug("class_dev->uevent() returned %d\n", retval);
439 } else if (class_dev->class->uevent) {
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700440 /* have the class specific function add its stuff */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200441 retval = class_dev->class->uevent(class_dev, env);
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700442 if (retval)
Kay Sievers312c0042005-11-16 09:00:00 +0100443 pr_debug("class->uevent() returned %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
446 return retval;
447}
448
Kay Sievers312c0042005-11-16 09:00:00 +0100449static struct kset_uevent_ops class_uevent_ops = {
450 .filter = class_uevent_filter,
451 .name = class_uevent_name,
452 .uevent = class_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453};
454
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -0600455static decl_subsys(class_obj, &class_device_ktype, &class_uevent_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457
458static int class_device_add_attrs(struct class_device * cd)
459{
460 int i;
461 int error = 0;
462 struct class * cls = cd->class;
463
464 if (cls->class_dev_attrs) {
465 for (i = 0; attr_name(cls->class_dev_attrs[i]); i++) {
466 error = class_device_create_file(cd,
467 &cls->class_dev_attrs[i]);
468 if (error)
469 goto Err;
470 }
471 }
472 Done:
473 return error;
474 Err:
475 while (--i >= 0)
476 class_device_remove_file(cd,&cls->class_dev_attrs[i]);
477 goto Done;
478}
479
480static void class_device_remove_attrs(struct class_device * cd)
481{
482 int i;
483 struct class * cls = cd->class;
484
485 if (cls->class_dev_attrs) {
486 for (i = 0; attr_name(cls->class_dev_attrs[i]); i++)
487 class_device_remove_file(cd,&cls->class_dev_attrs[i]);
488 }
489}
490
Stephen Hemminger14982212006-05-06 17:55:11 -0700491static int class_device_add_groups(struct class_device * cd)
492{
493 int i;
494 int error = 0;
495
496 if (cd->groups) {
497 for (i = 0; cd->groups[i]; i++) {
498 error = sysfs_create_group(&cd->kobj, cd->groups[i]);
499 if (error) {
500 while (--i >= 0)
501 sysfs_remove_group(&cd->kobj, cd->groups[i]);
502 goto out;
503 }
504 }
505 }
506out:
507 return error;
508}
509
510static void class_device_remove_groups(struct class_device * cd)
511{
512 int i;
513 if (cd->groups) {
514 for (i = 0; cd->groups[i]; i++) {
515 sysfs_remove_group(&cd->kobj, cd->groups[i]);
516 }
517 }
518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520static ssize_t show_dev(struct class_device *class_dev, char *buf)
521{
522 return print_dev_t(buf, class_dev->devt);
523}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Tejun Heoad6a1e12007-06-14 03:45:17 +0900525static struct class_device_attribute class_devt_attr =
526 __ATTR(dev, S_IRUGO, show_dev, NULL);
527
Kay Sieversa7fd6702005-10-01 14:49:43 +0200528static ssize_t store_uevent(struct class_device *class_dev,
529 const char *buf, size_t count)
530{
Kay Sievers312c0042005-11-16 09:00:00 +0100531 kobject_uevent(&class_dev->kobj, KOBJ_ADD);
Kay Sieversa7fd6702005-10-01 14:49:43 +0200532 return count;
533}
534
Tejun Heoad6a1e12007-06-14 03:45:17 +0900535static struct class_device_attribute class_uevent_attr =
536 __ATTR(uevent, S_IWUSR, NULL, store_uevent);
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538void class_device_initialize(struct class_device *class_dev)
539{
540 kobj_set_kset_s(class_dev, class_obj_subsys);
541 kobject_init(&class_dev->kobj);
542 INIT_LIST_HEAD(&class_dev->node);
543}
544
545int class_device_add(struct class_device *class_dev)
546{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700547 struct class *parent_class = NULL;
548 struct class_device *parent_class_dev = NULL;
549 struct class_interface *class_intf;
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700550 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 class_dev = class_device_get(class_dev);
553 if (!class_dev)
554 return -EINVAL;
555
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700556 if (!strlen(class_dev->class_id))
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700557 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700559 parent_class = class_get(class_dev->class);
560 if (!parent_class)
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700561 goto out1;
562
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700563 parent_class_dev = class_device_get(class_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 pr_debug("CLASS: registering class device: ID = '%s'\n",
566 class_dev->class_id);
567
568 /* first, register with generic layer. */
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700569 error = kobject_set_name(&class_dev->kobj, "%s", class_dev->class_id);
570 if (error)
571 goto out2;
572
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700573 if (parent_class_dev)
574 class_dev->kobj.parent = &parent_class_dev->kobj;
575 else
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700576 class_dev->kobj.parent = &parent_class->subsys.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700578 error = kobject_add(&class_dev->kobj);
579 if (error)
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700580 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800582 /* add the needed attributes to this device */
Cornelia Huckf0e17612006-09-22 11:37:00 +0200583 error = sysfs_create_link(&class_dev->kobj,
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700584 &parent_class->subsys.kobj, "subsystem");
Cornelia Huckf0e17612006-09-22 11:37:00 +0200585 if (error)
586 goto out3;
Tejun Heoad6a1e12007-06-14 03:45:17 +0900587
588 error = class_device_create_file(class_dev, &class_uevent_attr);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700589 if (error)
590 goto out3;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200591
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800592 if (MAJOR(class_dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900593 error = class_device_create_file(class_dev, &class_devt_attr);
594 if (error)
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700595 goto out4;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800596 }
597
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700598 error = class_device_add_attrs(class_dev);
599 if (error)
600 goto out5;
601
Dmitry Torokhov76d1ce02005-07-10 01:21:24 -0500602 if (class_dev->dev) {
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700603 error = sysfs_create_link(&class_dev->kobj,
604 &class_dev->dev->kobj, "device");
605 if (error)
606 goto out6;
Dmitry Torokhov76d1ce02005-07-10 01:21:24 -0500607 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800608
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700609 error = class_device_add_groups(class_dev);
610 if (error)
Kay Sievers805fab42006-09-14 11:23:28 +0200611 goto out7;
612
613 error = make_deprecated_class_device_links(class_dev);
614 if (error)
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700615 goto out8;
Stephen Hemminger14982212006-05-06 17:55:11 -0700616
Kay Sievers312c0042005-11-16 09:00:00 +0100617 kobject_uevent(&class_dev->kobj, KOBJ_ADD);
Dmitry Torokhovdbe90352005-09-15 02:01:37 -0500618
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800619 /* notify any interfaces this device is now here */
Jayachandran Ca1438892006-04-03 12:31:53 -0700620 down(&parent_class->sem);
621 list_add_tail(&class_dev->node, &parent_class->children);
622 list_for_each_entry(class_intf, &parent_class->interfaces, node) {
623 if (class_intf->add)
624 class_intf->add(class_dev, class_intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Jayachandran Ca1438892006-04-03 12:31:53 -0700626 up(&parent_class->sem);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800627
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700628 goto out1;
629
630 out8:
Kay Sievers805fab42006-09-14 11:23:28 +0200631 class_device_remove_groups(class_dev);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700632 out7:
633 if (class_dev->dev)
634 sysfs_remove_link(&class_dev->kobj, "device");
635 out6:
636 class_device_remove_attrs(class_dev);
637 out5:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900638 if (MAJOR(class_dev->devt))
639 class_device_remove_file(class_dev, &class_devt_attr);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700640 out4:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900641 class_device_remove_file(class_dev, &class_uevent_attr);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700642 out3:
643 kobject_del(&class_dev->kobj);
644 out2:
645 if(parent_class_dev)
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700646 class_device_put(parent_class_dev);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700647 class_put(parent_class);
648 out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 class_device_put(class_dev);
650 return error;
651}
652
653int class_device_register(struct class_device *class_dev)
654{
655 class_device_initialize(class_dev);
656 return class_device_add(class_dev);
657}
658
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800659/**
660 * class_device_create - creates a class device and registers it with sysfs
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700661 * @cls: pointer to the struct class that this device should be registered to.
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700662 * @parent: pointer to the parent struct class_device of this new device, if any.
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700663 * @devt: the dev_t for the char device to be added.
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800664 * @device: a pointer to a struct device that is assiociated with this class device.
665 * @fmt: string for the class device's name
666 *
667 * This function can be used by char device classes. A struct
668 * class_device will be created in sysfs, registered to the specified
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700669 * class.
670 * A "dev" file will be created, showing the dev_t for the device, if
671 * the dev_t is not 0,0.
672 * If a pointer to a parent struct class_device is passed in, the newly
673 * created struct class_device will be a child of that device in sysfs.
674 * The pointer to the struct class_device will be returned from the
675 * call. Any further sysfs files that might be required can be created
676 * using this pointer.
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800677 *
678 * Note: the struct class passed to this function must have previously
679 * been created with a call to class_create().
680 */
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700681struct class_device *class_device_create(struct class *cls,
682 struct class_device *parent,
683 dev_t devt,
Dmitry Torokhovddd5d352006-08-10 01:18:18 -0400684 struct device *device,
685 const char *fmt, ...)
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800686{
687 va_list args;
688 struct class_device *class_dev = NULL;
689 int retval = -ENODEV;
690
691 if (cls == NULL || IS_ERR(cls))
692 goto error;
693
Jiri Slaby4aed0642005-09-13 01:25:01 -0700694 class_dev = kzalloc(sizeof(*class_dev), GFP_KERNEL);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800695 if (!class_dev) {
696 retval = -ENOMEM;
697 goto error;
698 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800699
700 class_dev->devt = devt;
701 class_dev->dev = device;
702 class_dev->class = cls;
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700703 class_dev->parent = parent;
704 class_dev->release = class_device_create_release;
Kay Sievers312c0042005-11-16 09:00:00 +0100705 class_dev->uevent = class_device_create_uevent;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800706
707 va_start(args, fmt);
708 vsnprintf(class_dev->class_id, BUS_ID_SIZE, fmt, args);
709 va_end(args);
710 retval = class_device_register(class_dev);
711 if (retval)
712 goto error;
713
714 return class_dev;
715
716error:
717 kfree(class_dev);
718 return ERR_PTR(retval);
719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721void class_device_del(struct class_device *class_dev)
722{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700723 struct class *parent_class = class_dev->class;
724 struct class_device *parent_device = class_dev->parent;
725 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700727 if (parent_class) {
728 down(&parent_class->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 list_del_init(&class_dev->node);
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700730 list_for_each_entry(class_intf, &parent_class->interfaces, node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (class_intf->remove)
Dmitry Torokhovd8539d82005-09-15 02:01:36 -0500732 class_intf->remove(class_dev, class_intf);
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700733 up(&parent_class->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735
Dmitry Torokhov76d1ce02005-07-10 01:21:24 -0500736 if (class_dev->dev) {
Kay Sievers805fab42006-09-14 11:23:28 +0200737 remove_deprecated_class_device_links(class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 sysfs_remove_link(&class_dev->kobj, "device");
Dmitry Torokhov76d1ce02005-07-10 01:21:24 -0500739 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200740 sysfs_remove_link(&class_dev->kobj, "subsystem");
Tejun Heoad6a1e12007-06-14 03:45:17 +0900741 class_device_remove_file(class_dev, &class_uevent_attr);
742 if (MAJOR(class_dev->devt))
743 class_device_remove_file(class_dev, &class_devt_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 class_device_remove_attrs(class_dev);
Stephen Hemminger14982212006-05-06 17:55:11 -0700745 class_device_remove_groups(class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Kay Sievers312c0042005-11-16 09:00:00 +0100747 kobject_uevent(&class_dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 kobject_del(&class_dev->kobj);
749
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700750 class_device_put(parent_device);
751 class_put(parent_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754void class_device_unregister(struct class_device *class_dev)
755{
756 pr_debug("CLASS: Unregistering class device. ID = '%s'\n",
757 class_dev->class_id);
758 class_device_del(class_dev);
759 class_device_put(class_dev);
760}
761
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800762/**
763 * class_device_destroy - removes a class device that was created with class_device_create()
764 * @cls: the pointer to the struct class that this device was registered * with.
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700765 * @devt: the dev_t of the device that was previously registered.
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800766 *
767 * This call unregisters and cleans up a class device that was created with a
768 * call to class_device_create()
769 */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800770void class_device_destroy(struct class *cls, dev_t devt)
771{
772 struct class_device *class_dev = NULL;
773 struct class_device *class_dev_tmp;
774
775 down(&cls->sem);
776 list_for_each_entry(class_dev_tmp, &cls->children, node) {
777 if (class_dev_tmp->devt == devt) {
778 class_dev = class_dev_tmp;
779 break;
780 }
781 }
782 up(&cls->sem);
783
784 if (class_dev)
785 class_device_unregister(class_dev);
786}
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788struct class_device * class_device_get(struct class_device *class_dev)
789{
790 if (class_dev)
791 return to_class_dev(kobject_get(&class_dev->kobj));
792 return NULL;
793}
794
795void class_device_put(struct class_device *class_dev)
796{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700797 if (class_dev)
798 kobject_put(&class_dev->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801
802int class_interface_register(struct class_interface *class_intf)
803{
804 struct class *parent;
805 struct class_device *class_dev;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200806 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 if (!class_intf || !class_intf->class)
809 return -ENODEV;
810
811 parent = class_get(class_intf->class);
812 if (!parent)
813 return -EINVAL;
814
815 down(&parent->sem);
816 list_add_tail(&class_intf->node, &parent->interfaces);
817 if (class_intf->add) {
818 list_for_each_entry(class_dev, &parent->children, node)
Dmitry Torokhovd8539d82005-09-15 02:01:36 -0500819 class_intf->add(class_dev, class_intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200821 if (class_intf->add_dev) {
822 list_for_each_entry(dev, &parent->devices, node)
823 class_intf->add_dev(dev, class_intf);
824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 up(&parent->sem);
826
827 return 0;
828}
829
830void class_interface_unregister(struct class_interface *class_intf)
831{
832 struct class * parent = class_intf->class;
833 struct class_device *class_dev;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200834 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 if (!parent)
837 return;
838
839 down(&parent->sem);
840 list_del_init(&class_intf->node);
841 if (class_intf->remove) {
842 list_for_each_entry(class_dev, &parent->children, node)
Dmitry Torokhovd8539d82005-09-15 02:01:36 -0500843 class_intf->remove(class_dev, class_intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200845 if (class_intf->remove_dev) {
846 list_for_each_entry(dev, &parent->devices, node)
847 class_intf->remove_dev(dev, class_intf);
848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 up(&parent->sem);
850
851 class_put(parent);
852}
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854int __init classes_init(void)
855{
856 int retval;
857
858 retval = subsystem_register(&class_subsys);
859 if (retval)
860 return retval;
861
862 /* ick, this is ugly, the things we go through to keep from showing up
863 * in sysfs... */
Greg Kroah-Hartmane4bc1662007-09-26 11:12:00 -0700864 kset_init(&class_obj_subsys);
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700865 if (!class_obj_subsys.kobj.parent)
866 class_obj_subsys.kobj.parent = &class_obj_subsys.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return 0;
868}
869
870EXPORT_SYMBOL_GPL(class_create_file);
871EXPORT_SYMBOL_GPL(class_remove_file);
872EXPORT_SYMBOL_GPL(class_register);
873EXPORT_SYMBOL_GPL(class_unregister);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800874EXPORT_SYMBOL_GPL(class_create);
875EXPORT_SYMBOL_GPL(class_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877EXPORT_SYMBOL_GPL(class_device_register);
878EXPORT_SYMBOL_GPL(class_device_unregister);
879EXPORT_SYMBOL_GPL(class_device_initialize);
880EXPORT_SYMBOL_GPL(class_device_add);
881EXPORT_SYMBOL_GPL(class_device_del);
882EXPORT_SYMBOL_GPL(class_device_get);
883EXPORT_SYMBOL_GPL(class_device_put);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800884EXPORT_SYMBOL_GPL(class_device_create);
885EXPORT_SYMBOL_GPL(class_device_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886EXPORT_SYMBOL_GPL(class_device_create_file);
887EXPORT_SYMBOL_GPL(class_device_remove_file);
888EXPORT_SYMBOL_GPL(class_device_create_bin_file);
889EXPORT_SYMBOL_GPL(class_device_remove_bin_file);
890
891EXPORT_SYMBOL_GPL(class_interface_register);
892EXPORT_SYMBOL_GPL(class_interface_unregister);