blob: d8a92c650b43a7127018b180c98c773d618ef5fe [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-Hartman443dbf92007-10-29 23:22:26 -050074static struct kset *class_kset;
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-Hartman443dbf92007-10-29 23:22:26 -0500152 cls->subsys.kobj.kset = class_kset;
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600153 cls->subsys.kobj.ktype = &class_ktype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 error = subsystem_register(&cls->subsys);
156 if (!error) {
157 error = add_class_attrs(class_get(cls));
158 class_put(cls);
159 }
160 return error;
161}
162
163void class_unregister(struct class * cls)
164{
165 pr_debug("device class '%s': unregistering\n", cls->name);
166 remove_class_attrs(cls);
167 subsystem_unregister(&cls->subsys);
168}
169
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800170static void class_create_release(struct class *cls)
171{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700172 pr_debug("%s called for %s\n", __FUNCTION__, cls->name);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800173 kfree(cls);
174}
175
176static void class_device_create_release(struct class_device *class_dev)
177{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700178 pr_debug("%s called for %s\n", __FUNCTION__, class_dev->class_id);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800179 kfree(class_dev);
180}
181
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700182/* needed to allow these devices to have parent class devices */
Kay Sievers312c0042005-11-16 09:00:00 +0100183static int class_device_create_uevent(struct class_device *class_dev,
Kay Sievers7eff2e72007-08-14 15:15:12 +0200184 struct kobj_uevent_env *env)
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700185{
186 pr_debug("%s called for %s\n", __FUNCTION__, class_dev->class_id);
187 return 0;
188}
189
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800190/**
191 * class_create - create a struct class structure
192 * @owner: pointer to the module that is to "own" this struct class
193 * @name: pointer to a string for the name of this class.
194 *
195 * This is used to create a struct class pointer that can then be used
196 * in calls to class_device_create().
197 *
198 * Note, the pointer created here is to be destroyed when finished by
199 * making a call to class_destroy().
200 */
Miguel Ojeda Sandonisab7d7372006-09-13 15:34:05 +0200201struct class *class_create(struct module *owner, const char *name)
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800202{
203 struct class *cls;
204 int retval;
205
Jiri Slaby4aed0642005-09-13 01:25:01 -0700206 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800207 if (!cls) {
208 retval = -ENOMEM;
209 goto error;
210 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800211
212 cls->name = name;
213 cls->owner = owner;
214 cls->class_release = class_create_release;
215 cls->release = class_device_create_release;
216
217 retval = class_register(cls);
218 if (retval)
219 goto error;
220
221 return cls;
222
223error:
224 kfree(cls);
225 return ERR_PTR(retval);
226}
227
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800228/**
229 * class_destroy - destroys a struct class structure
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700230 * @cls: pointer to the struct class that is to be destroyed
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800231 *
232 * Note, the pointer to be destroyed must have been created with a call
233 * to class_create().
234 */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800235void class_destroy(struct class *cls)
236{
237 if ((cls == NULL) || (IS_ERR(cls)))
238 return;
239
240 class_unregister(cls);
241}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243/* Class Device Stuff */
244
245int class_device_create_file(struct class_device * class_dev,
246 const struct class_device_attribute * attr)
247{
248 int error = -EINVAL;
249 if (class_dev)
250 error = sysfs_create_file(&class_dev->kobj, &attr->attr);
251 return error;
252}
253
254void class_device_remove_file(struct class_device * class_dev,
255 const struct class_device_attribute * attr)
256{
257 if (class_dev)
258 sysfs_remove_file(&class_dev->kobj, &attr->attr);
259}
260
Greg Kroah-Hartmand919fd42007-10-31 12:51:29 -0700261int class_device_create_bin_file(struct class_device *class_dev,
262 struct bin_attribute *attr)
263{
264 int error = -EINVAL;
265 if (class_dev)
266 error = sysfs_create_bin_file(&class_dev->kobj, attr);
267 return error;
268}
269
270void class_device_remove_bin_file(struct class_device *class_dev,
271 struct bin_attribute *attr)
272{
273 if (class_dev)
274 sysfs_remove_bin_file(&class_dev->kobj, attr);
275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277static ssize_t
278class_device_attr_show(struct kobject * kobj, struct attribute * attr,
279 char * buf)
280{
281 struct class_device_attribute * class_dev_attr = to_class_dev_attr(attr);
282 struct class_device * cd = to_class_dev(kobj);
283 ssize_t ret = 0;
284
285 if (class_dev_attr->show)
286 ret = class_dev_attr->show(cd, buf);
287 return ret;
288}
289
290static ssize_t
291class_device_attr_store(struct kobject * kobj, struct attribute * attr,
292 const char * buf, size_t count)
293{
294 struct class_device_attribute * class_dev_attr = to_class_dev_attr(attr);
295 struct class_device * cd = to_class_dev(kobj);
296 ssize_t ret = 0;
297
298 if (class_dev_attr->store)
299 ret = class_dev_attr->store(cd, buf, count);
300 return ret;
301}
302
303static struct sysfs_ops class_dev_sysfs_ops = {
304 .show = class_device_attr_show,
305 .store = class_device_attr_store,
306};
307
308static void class_dev_release(struct kobject * kobj)
309{
310 struct class_device *cd = to_class_dev(kobj);
311 struct class * cls = cd->class;
312
313 pr_debug("device class '%s': release.\n", cd->class_id);
314
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700315 if (cd->release)
316 cd->release(cd);
317 else if (cls->release)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 cls->release(cd);
319 else {
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700320 printk(KERN_ERR "Class Device '%s' does not have a release() function, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 "it is broken and must be fixed.\n",
322 cd->class_id);
323 WARN_ON(1);
324 }
325}
326
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -0600327static struct kobj_type class_device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 .sysfs_ops = &class_dev_sysfs_ops,
329 .release = class_dev_release,
330};
331
Kay Sievers312c0042005-11-16 09:00:00 +0100332static int class_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 struct kobj_type *ktype = get_ktype(kobj);
335
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -0600336 if (ktype == &class_device_ktype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 struct class_device *class_dev = to_class_dev(kobj);
338 if (class_dev->class)
339 return 1;
340 }
341 return 0;
342}
343
Kay Sievers312c0042005-11-16 09:00:00 +0100344static const char *class_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 struct class_device *class_dev = to_class_dev(kobj);
347
348 return class_dev->class->name;
349}
350
Kay Sievers805fab42006-09-14 11:23:28 +0200351#ifdef CONFIG_SYSFS_DEPRECATED
352char *make_class_name(const char *name, struct kobject *kobj)
353{
354 char *class_name;
355 int size;
356
357 size = strlen(name) + strlen(kobject_name(kobj)) + 2;
358
359 class_name = kmalloc(size, GFP_KERNEL);
360 if (!class_name)
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100361 return NULL;
Kay Sievers805fab42006-09-14 11:23:28 +0200362
363 strcpy(class_name, name);
364 strcat(class_name, ":");
365 strcat(class_name, kobject_name(kobj));
366 return class_name;
367}
368
Kay Sievers805fab42006-09-14 11:23:28 +0200369static int make_deprecated_class_device_links(struct class_device *class_dev)
370{
371 char *class_name;
372 int error;
373
374 if (!class_dev->dev)
375 return 0;
376
377 class_name = make_class_name(class_dev->class->name, &class_dev->kobj);
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100378 if (class_name)
379 error = sysfs_create_link(&class_dev->dev->kobj,
380 &class_dev->kobj, class_name);
381 else
382 error = -ENOMEM;
Kay Sievers805fab42006-09-14 11:23:28 +0200383 kfree(class_name);
384 return error;
385}
386
387static void remove_deprecated_class_device_links(struct class_device *class_dev)
388{
389 char *class_name;
390
391 if (!class_dev->dev)
392 return;
393
394 class_name = make_class_name(class_dev->class->name, &class_dev->kobj);
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100395 if (class_name)
396 sysfs_remove_link(&class_dev->dev->kobj, class_name);
Kay Sievers805fab42006-09-14 11:23:28 +0200397 kfree(class_name);
398}
399#else
Kay Sievers805fab42006-09-14 11:23:28 +0200400static inline int make_deprecated_class_device_links(struct class_device *cd)
401{ return 0; }
402static void remove_deprecated_class_device_links(struct class_device *cd)
403{ }
404#endif
405
Kay Sievers7eff2e72007-08-14 15:15:12 +0200406static int class_uevent(struct kset *kset, struct kobject *kobj,
407 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 struct class_device *class_dev = to_class_dev(kobj);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200410 struct device *dev = class_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 int retval = 0;
412
413 pr_debug("%s - name = %s\n", __FUNCTION__, class_dev->class_id);
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (MAJOR(class_dev->devt)) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200416 add_uevent_var(env, "MAJOR=%u", MAJOR(class_dev->devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Kay Sievers7eff2e72007-08-14 15:15:12 +0200418 add_uevent_var(env, "MINOR=%u", MINOR(class_dev->devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
Kay Sievers2c7afd12007-05-01 13:46:26 +0200421 if (dev) {
422 const char *path = kobject_get_path(&dev->kobj, GFP_KERNEL);
423 if (path) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200424 add_uevent_var(env, "PHYSDEVPATH=%s", path);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200425 kfree(path);
426 }
427
428 if (dev->bus)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200429 add_uevent_var(env, "PHYSDEVBUS=%s", dev->bus->name);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200430
431 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200432 add_uevent_var(env, "PHYSDEVDRIVER=%s", dev->driver->name);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200433 }
434
Kay Sievers312c0042005-11-16 09:00:00 +0100435 if (class_dev->uevent) {
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700436 /* have the class device specific function add its stuff */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200437 retval = class_dev->uevent(class_dev, env);
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700438 if (retval)
Kay Sievers312c0042005-11-16 09:00:00 +0100439 pr_debug("class_dev->uevent() returned %d\n", retval);
440 } else if (class_dev->class->uevent) {
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700441 /* have the class specific function add its stuff */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200442 retval = class_dev->class->uevent(class_dev, env);
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700443 if (retval)
Kay Sievers312c0042005-11-16 09:00:00 +0100444 pr_debug("class->uevent() returned %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446
447 return retval;
448}
449
Kay Sievers312c0042005-11-16 09:00:00 +0100450static struct kset_uevent_ops class_uevent_ops = {
451 .filter = class_uevent_filter,
452 .name = class_uevent_name,
453 .uevent = class_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454};
455
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600456static decl_subsys(class_obj, &class_uevent_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458
459static int class_device_add_attrs(struct class_device * cd)
460{
461 int i;
462 int error = 0;
463 struct class * cls = cd->class;
464
465 if (cls->class_dev_attrs) {
466 for (i = 0; attr_name(cls->class_dev_attrs[i]); i++) {
467 error = class_device_create_file(cd,
468 &cls->class_dev_attrs[i]);
469 if (error)
470 goto Err;
471 }
472 }
473 Done:
474 return error;
475 Err:
476 while (--i >= 0)
477 class_device_remove_file(cd,&cls->class_dev_attrs[i]);
478 goto Done;
479}
480
481static void class_device_remove_attrs(struct class_device * cd)
482{
483 int i;
484 struct class * cls = cd->class;
485
486 if (cls->class_dev_attrs) {
487 for (i = 0; attr_name(cls->class_dev_attrs[i]); i++)
488 class_device_remove_file(cd,&cls->class_dev_attrs[i]);
489 }
490}
491
Stephen Hemminger14982212006-05-06 17:55:11 -0700492static int class_device_add_groups(struct class_device * cd)
493{
494 int i;
495 int error = 0;
496
497 if (cd->groups) {
498 for (i = 0; cd->groups[i]; i++) {
499 error = sysfs_create_group(&cd->kobj, cd->groups[i]);
500 if (error) {
501 while (--i >= 0)
502 sysfs_remove_group(&cd->kobj, cd->groups[i]);
503 goto out;
504 }
505 }
506 }
507out:
508 return error;
509}
510
511static void class_device_remove_groups(struct class_device * cd)
512{
513 int i;
514 if (cd->groups) {
515 for (i = 0; cd->groups[i]; i++) {
516 sysfs_remove_group(&cd->kobj, cd->groups[i]);
517 }
518 }
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521static ssize_t show_dev(struct class_device *class_dev, char *buf)
522{
523 return print_dev_t(buf, class_dev->devt);
524}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Tejun Heoad6a1e12007-06-14 03:45:17 +0900526static struct class_device_attribute class_devt_attr =
527 __ATTR(dev, S_IRUGO, show_dev, NULL);
528
Kay Sieversa7fd6702005-10-01 14:49:43 +0200529static ssize_t store_uevent(struct class_device *class_dev,
530 const char *buf, size_t count)
531{
Kay Sievers312c0042005-11-16 09:00:00 +0100532 kobject_uevent(&class_dev->kobj, KOBJ_ADD);
Kay Sieversa7fd6702005-10-01 14:49:43 +0200533 return count;
534}
535
Tejun Heoad6a1e12007-06-14 03:45:17 +0900536static struct class_device_attribute class_uevent_attr =
537 __ATTR(uevent, S_IWUSR, NULL, store_uevent);
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539void class_device_initialize(struct class_device *class_dev)
540{
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600541 class_dev->kobj.kset = &class_obj_subsys;
542 class_dev->kobj.ktype = &class_device_ktype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 kobject_init(&class_dev->kobj);
544 INIT_LIST_HEAD(&class_dev->node);
545}
546
547int class_device_add(struct class_device *class_dev)
548{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700549 struct class *parent_class = NULL;
550 struct class_device *parent_class_dev = NULL;
551 struct class_interface *class_intf;
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700552 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 class_dev = class_device_get(class_dev);
555 if (!class_dev)
556 return -EINVAL;
557
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700558 if (!strlen(class_dev->class_id))
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700559 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700561 parent_class = class_get(class_dev->class);
562 if (!parent_class)
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700563 goto out1;
564
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700565 parent_class_dev = class_device_get(class_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 pr_debug("CLASS: registering class device: ID = '%s'\n",
568 class_dev->class_id);
569
570 /* first, register with generic layer. */
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700571 error = kobject_set_name(&class_dev->kobj, "%s", class_dev->class_id);
572 if (error)
573 goto out2;
574
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700575 if (parent_class_dev)
576 class_dev->kobj.parent = &parent_class_dev->kobj;
577 else
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700578 class_dev->kobj.parent = &parent_class->subsys.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700580 error = kobject_add(&class_dev->kobj);
581 if (error)
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700582 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800584 /* add the needed attributes to this device */
Cornelia Huckf0e17612006-09-22 11:37:00 +0200585 error = sysfs_create_link(&class_dev->kobj,
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700586 &parent_class->subsys.kobj, "subsystem");
Cornelia Huckf0e17612006-09-22 11:37:00 +0200587 if (error)
588 goto out3;
Tejun Heoad6a1e12007-06-14 03:45:17 +0900589
590 error = class_device_create_file(class_dev, &class_uevent_attr);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700591 if (error)
592 goto out3;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200593
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800594 if (MAJOR(class_dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900595 error = class_device_create_file(class_dev, &class_devt_attr);
596 if (error)
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700597 goto out4;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800598 }
599
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700600 error = class_device_add_attrs(class_dev);
601 if (error)
602 goto out5;
603
Dmitry Torokhov76d1ce02005-07-10 01:21:24 -0500604 if (class_dev->dev) {
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700605 error = sysfs_create_link(&class_dev->kobj,
606 &class_dev->dev->kobj, "device");
607 if (error)
608 goto out6;
Dmitry Torokhov76d1ce02005-07-10 01:21:24 -0500609 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800610
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700611 error = class_device_add_groups(class_dev);
612 if (error)
Kay Sievers805fab42006-09-14 11:23:28 +0200613 goto out7;
614
615 error = make_deprecated_class_device_links(class_dev);
616 if (error)
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700617 goto out8;
Stephen Hemminger14982212006-05-06 17:55:11 -0700618
Kay Sievers312c0042005-11-16 09:00:00 +0100619 kobject_uevent(&class_dev->kobj, KOBJ_ADD);
Dmitry Torokhovdbe90352005-09-15 02:01:37 -0500620
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800621 /* notify any interfaces this device is now here */
Jayachandran Ca1438892006-04-03 12:31:53 -0700622 down(&parent_class->sem);
623 list_add_tail(&class_dev->node, &parent_class->children);
624 list_for_each_entry(class_intf, &parent_class->interfaces, node) {
625 if (class_intf->add)
626 class_intf->add(class_dev, class_intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Jayachandran Ca1438892006-04-03 12:31:53 -0700628 up(&parent_class->sem);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800629
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700630 goto out1;
631
632 out8:
Kay Sievers805fab42006-09-14 11:23:28 +0200633 class_device_remove_groups(class_dev);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700634 out7:
635 if (class_dev->dev)
636 sysfs_remove_link(&class_dev->kobj, "device");
637 out6:
638 class_device_remove_attrs(class_dev);
639 out5:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900640 if (MAJOR(class_dev->devt))
641 class_device_remove_file(class_dev, &class_devt_attr);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700642 out4:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900643 class_device_remove_file(class_dev, &class_uevent_attr);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700644 out3:
645 kobject_del(&class_dev->kobj);
646 out2:
647 if(parent_class_dev)
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700648 class_device_put(parent_class_dev);
Stephen Hemmingerb7fe4a62006-04-26 09:53:14 -0700649 class_put(parent_class);
650 out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 class_device_put(class_dev);
652 return error;
653}
654
655int class_device_register(struct class_device *class_dev)
656{
657 class_device_initialize(class_dev);
658 return class_device_add(class_dev);
659}
660
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800661/**
662 * class_device_create - creates a class device and registers it with sysfs
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700663 * @cls: pointer to the struct class that this device should be registered to.
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700664 * @parent: pointer to the parent struct class_device of this new device, if any.
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700665 * @devt: the dev_t for the char device to be added.
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800666 * @device: a pointer to a struct device that is assiociated with this class device.
667 * @fmt: string for the class device's name
668 *
669 * This function can be used by char device classes. A struct
670 * class_device will be created in sysfs, registered to the specified
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700671 * class.
672 * A "dev" file will be created, showing the dev_t for the device, if
673 * the dev_t is not 0,0.
674 * If a pointer to a parent struct class_device is passed in, the newly
675 * created struct class_device will be a child of that device in sysfs.
676 * The pointer to the struct class_device will be returned from the
677 * call. Any further sysfs files that might be required can be created
678 * using this pointer.
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800679 *
680 * Note: the struct class passed to this function must have previously
681 * been created with a call to class_create().
682 */
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700683struct class_device *class_device_create(struct class *cls,
684 struct class_device *parent,
685 dev_t devt,
Dmitry Torokhovddd5d352006-08-10 01:18:18 -0400686 struct device *device,
687 const char *fmt, ...)
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800688{
689 va_list args;
690 struct class_device *class_dev = NULL;
691 int retval = -ENODEV;
692
693 if (cls == NULL || IS_ERR(cls))
694 goto error;
695
Jiri Slaby4aed0642005-09-13 01:25:01 -0700696 class_dev = kzalloc(sizeof(*class_dev), GFP_KERNEL);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800697 if (!class_dev) {
698 retval = -ENOMEM;
699 goto error;
700 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800701
702 class_dev->devt = devt;
703 class_dev->dev = device;
704 class_dev->class = cls;
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700705 class_dev->parent = parent;
706 class_dev->release = class_device_create_release;
Kay Sievers312c0042005-11-16 09:00:00 +0100707 class_dev->uevent = class_device_create_uevent;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800708
709 va_start(args, fmt);
710 vsnprintf(class_dev->class_id, BUS_ID_SIZE, fmt, args);
711 va_end(args);
712 retval = class_device_register(class_dev);
713 if (retval)
714 goto error;
715
716 return class_dev;
717
718error:
719 kfree(class_dev);
720 return ERR_PTR(retval);
721}
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723void class_device_del(struct class_device *class_dev)
724{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700725 struct class *parent_class = class_dev->class;
726 struct class_device *parent_device = class_dev->parent;
727 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700729 if (parent_class) {
730 down(&parent_class->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 list_del_init(&class_dev->node);
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700732 list_for_each_entry(class_intf, &parent_class->interfaces, node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (class_intf->remove)
Dmitry Torokhovd8539d82005-09-15 02:01:36 -0500734 class_intf->remove(class_dev, class_intf);
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700735 up(&parent_class->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737
Dmitry Torokhov76d1ce02005-07-10 01:21:24 -0500738 if (class_dev->dev) {
Kay Sievers805fab42006-09-14 11:23:28 +0200739 remove_deprecated_class_device_links(class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 sysfs_remove_link(&class_dev->kobj, "device");
Dmitry Torokhov76d1ce02005-07-10 01:21:24 -0500741 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200742 sysfs_remove_link(&class_dev->kobj, "subsystem");
Tejun Heoad6a1e12007-06-14 03:45:17 +0900743 class_device_remove_file(class_dev, &class_uevent_attr);
744 if (MAJOR(class_dev->devt))
745 class_device_remove_file(class_dev, &class_devt_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 class_device_remove_attrs(class_dev);
Stephen Hemminger14982212006-05-06 17:55:11 -0700747 class_device_remove_groups(class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Kay Sievers312c0042005-11-16 09:00:00 +0100749 kobject_uevent(&class_dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 kobject_del(&class_dev->kobj);
751
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700752 class_device_put(parent_device);
753 class_put(parent_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
756void class_device_unregister(struct class_device *class_dev)
757{
758 pr_debug("CLASS: Unregistering class device. ID = '%s'\n",
759 class_dev->class_id);
760 class_device_del(class_dev);
761 class_device_put(class_dev);
762}
763
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800764/**
765 * class_device_destroy - removes a class device that was created with class_device_create()
766 * @cls: the pointer to the struct class that this device was registered * with.
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700767 * @devt: the dev_t of the device that was previously registered.
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800768 *
769 * This call unregisters and cleans up a class device that was created with a
770 * call to class_device_create()
771 */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800772void class_device_destroy(struct class *cls, dev_t devt)
773{
774 struct class_device *class_dev = NULL;
775 struct class_device *class_dev_tmp;
776
777 down(&cls->sem);
778 list_for_each_entry(class_dev_tmp, &cls->children, node) {
779 if (class_dev_tmp->devt == devt) {
780 class_dev = class_dev_tmp;
781 break;
782 }
783 }
784 up(&cls->sem);
785
786 if (class_dev)
787 class_device_unregister(class_dev);
788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790struct class_device * class_device_get(struct class_device *class_dev)
791{
792 if (class_dev)
793 return to_class_dev(kobject_get(&class_dev->kobj));
794 return NULL;
795}
796
797void class_device_put(struct class_device *class_dev)
798{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700799 if (class_dev)
800 kobject_put(&class_dev->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
803
804int class_interface_register(struct class_interface *class_intf)
805{
806 struct class *parent;
807 struct class_device *class_dev;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200808 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 if (!class_intf || !class_intf->class)
811 return -ENODEV;
812
813 parent = class_get(class_intf->class);
814 if (!parent)
815 return -EINVAL;
816
817 down(&parent->sem);
818 list_add_tail(&class_intf->node, &parent->interfaces);
819 if (class_intf->add) {
820 list_for_each_entry(class_dev, &parent->children, node)
Dmitry Torokhovd8539d82005-09-15 02:01:36 -0500821 class_intf->add(class_dev, class_intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200823 if (class_intf->add_dev) {
824 list_for_each_entry(dev, &parent->devices, node)
825 class_intf->add_dev(dev, class_intf);
826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 up(&parent->sem);
828
829 return 0;
830}
831
832void class_interface_unregister(struct class_interface *class_intf)
833{
834 struct class * parent = class_intf->class;
835 struct class_device *class_dev;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200836 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 if (!parent)
839 return;
840
841 down(&parent->sem);
842 list_del_init(&class_intf->node);
843 if (class_intf->remove) {
844 list_for_each_entry(class_dev, &parent->children, node)
Dmitry Torokhovd8539d82005-09-15 02:01:36 -0500845 class_intf->remove(class_dev, class_intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200847 if (class_intf->remove_dev) {
848 list_for_each_entry(dev, &parent->devices, node)
849 class_intf->remove_dev(dev, class_intf);
850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 up(&parent->sem);
852
853 class_put(parent);
854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856int __init classes_init(void)
857{
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -0500858 class_kset = kset_create_and_add("class", NULL, NULL);
859 if (!class_kset)
860 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
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);
Greg Kroah-Hartmand919fd42007-10-31 12:51:29 -0700888EXPORT_SYMBOL_GPL(class_device_create_bin_file);
889EXPORT_SYMBOL_GPL(class_device_remove_bin_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891EXPORT_SYMBOL_GPL(class_interface_register);
892EXPORT_SYMBOL_GPL(class_interface_unregister);