2 * drivers/base/core.c - core driver model code (device registration, etc)
4 * Copyright (c) 2002-3 Patrick Mochel
5 * Copyright (c) 2002-3 Open Source Development Labs
7 * This file is released under the GPLv2
11 #include <linux/config.h>
12 #include <linux/device.h>
13 #include <linux/err.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <linux/string.h>
19 #include <asm/semaphore.h>
22 #include "power/power.h"
24 int (*platform_notify)(struct device * dev) = NULL;
25 int (*platform_notify_remove)(struct device * dev) = NULL;
28 * sysfs bindings for devices.
31 #define to_dev(obj) container_of(obj, struct device, kobj)
32 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
35 dev_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
37 struct device_attribute * dev_attr = to_dev_attr(attr);
38 struct device * dev = to_dev(kobj);
42 ret = dev_attr->show(dev, dev_attr, buf);
47 dev_attr_store(struct kobject * kobj, struct attribute * attr,
48 const char * buf, size_t count)
50 struct device_attribute * dev_attr = to_dev_attr(attr);
51 struct device * dev = to_dev(kobj);
55 ret = dev_attr->store(dev, dev_attr, buf, count);
59 static struct sysfs_ops dev_sysfs_ops = {
60 .show = dev_attr_show,
61 .store = dev_attr_store,
66 * device_release - free device structure.
67 * @kobj: device's kobject.
69 * This is called once the reference count for the object
70 * reaches 0. We forward the call to the device's release
71 * method, which should handle actually freeing the structure.
73 static void device_release(struct kobject * kobj)
75 struct device * dev = to_dev(kobj);
80 printk(KERN_ERR "Device '%s' does not have a release() function, "
81 "it is broken and must be fixed.\n",
87 static struct kobj_type ktype_device = {
88 .release = device_release,
89 .sysfs_ops = &dev_sysfs_ops,
93 static int dev_hotplug_filter(struct kset *kset, struct kobject *kobj)
95 struct kobj_type *ktype = get_ktype(kobj);
97 if (ktype == &ktype_device) {
98 struct device *dev = to_dev(kobj);
105 static const char *dev_hotplug_name(struct kset *kset, struct kobject *kobj)
107 struct device *dev = to_dev(kobj);
109 return dev->bus->name;
112 static int dev_hotplug(struct kset *kset, struct kobject *kobj, char **envp,
113 int num_envp, char *buffer, int buffer_size)
115 struct device *dev = to_dev(kobj);
120 /* add bus name of physical device */
122 add_hotplug_env_var(envp, num_envp, &i,
123 buffer, buffer_size, &length,
124 "PHYSDEVBUS=%s", dev->bus->name);
126 /* add driver name of physical device */
128 add_hotplug_env_var(envp, num_envp, &i,
129 buffer, buffer_size, &length,
130 "PHYSDEVDRIVER=%s", dev->driver->name);
132 /* terminate, set to next free slot, shrink available space */
136 buffer = &buffer[length];
137 buffer_size -= length;
139 if (dev->bus && dev->bus->hotplug) {
140 /* have the bus specific function add its stuff */
141 retval = dev->bus->hotplug (dev, envp, num_envp, buffer, buffer_size);
143 pr_debug ("%s - hotplug() returned %d\n",
144 __FUNCTION__, retval);
151 static struct kset_hotplug_ops device_hotplug_ops = {
152 .filter = dev_hotplug_filter,
153 .name = dev_hotplug_name,
154 .hotplug = dev_hotplug,
158 * device_subsys - structure to be registered with kobject core.
161 decl_subsys(devices, &ktype_device, &device_hotplug_ops);
165 * device_create_file - create sysfs attribute file for device.
167 * @attr: device attribute descriptor.
170 int device_create_file(struct device * dev, struct device_attribute * attr)
173 if (get_device(dev)) {
174 error = sysfs_create_file(&dev->kobj, &attr->attr);
181 * device_remove_file - remove sysfs attribute file.
183 * @attr: device attribute descriptor.
186 void device_remove_file(struct device * dev, struct device_attribute * attr)
188 if (get_device(dev)) {
189 sysfs_remove_file(&dev->kobj, &attr->attr);
196 * device_initialize - init device structure.
199 * This prepares the device for use by other layers,
200 * including adding it to the device hierarchy.
201 * It is the first half of device_register(), if called by
202 * that, though it can also be called separately, so one
203 * may use @dev's fields (e.g. the refcount).
206 void device_initialize(struct device *dev)
208 kobj_set_kset_s(dev, devices_subsys);
209 kobject_init(&dev->kobj);
210 klist_init(&dev->klist_children);
211 INIT_LIST_HEAD(&dev->dma_pools);
212 init_MUTEX(&dev->sem);
216 * device_add - add device to device hierarchy.
219 * This is part 2 of device_register(), though may be called
220 * separately _iff_ device_initialize() has been called separately.
222 * This adds it to the kobject hierarchy via kobject_add(), adds it
223 * to the global and sibling lists for the device, then
224 * adds it to the other relevant subsystems of the driver model.
226 int device_add(struct device *dev)
228 struct device *parent = NULL;
231 dev = get_device(dev);
232 if (!dev || !strlen(dev->bus_id))
235 parent = get_device(dev->parent);
237 pr_debug("DEV: registering device: ID = '%s'\n", dev->bus_id);
239 /* first, register with generic layer. */
240 kobject_set_name(&dev->kobj, "%s", dev->bus_id);
242 dev->kobj.parent = &parent->kobj;
244 if ((error = kobject_add(&dev->kobj)))
246 kobject_hotplug(&dev->kobj, KOBJ_ADD);
247 if ((error = device_pm_add(dev)))
249 if ((error = bus_add_device(dev)))
252 klist_add_tail(&parent->klist_children, &dev->knode_parent);
254 /* notify platform of device entry */
256 platform_notify(dev);
261 device_pm_remove(dev);
263 kobject_hotplug(&dev->kobj, KOBJ_REMOVE);
264 kobject_del(&dev->kobj);
273 * device_register - register a device with the system.
274 * @dev: pointer to the device structure
276 * This happens in two clean steps - initialize the device
277 * and add it to the system. The two steps can be called
278 * separately, but this is the easiest and most common.
279 * I.e. you should only call the two helpers separately if
280 * have a clearly defined need to use and refcount the device
281 * before it is added to the hierarchy.
284 int device_register(struct device *dev)
286 device_initialize(dev);
287 return device_add(dev);
292 * get_device - increment reference count for device.
295 * This simply forwards the call to kobject_get(), though
296 * we do take care to provide for the case that we get a NULL
300 struct device * get_device(struct device * dev)
302 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
307 * put_device - decrement reference count.
308 * @dev: device in question.
310 void put_device(struct device * dev)
313 kobject_put(&dev->kobj);
318 * device_del - delete device from system.
321 * This is the first part of the device unregistration
322 * sequence. This removes the device from the lists we control
323 * from here, has it removed from the other driver model
324 * subsystems it was added to in device_add(), and removes it
325 * from the kobject hierarchy.
327 * NOTE: this should be called manually _iff_ device_add() was
328 * also called manually.
331 void device_del(struct device * dev)
333 struct device * parent = dev->parent;
336 klist_remove(&dev->knode_parent);
338 /* Notify the platform of the removal, in case they
339 * need to do anything...
341 if (platform_notify_remove)
342 platform_notify_remove(dev);
343 bus_remove_device(dev);
344 device_pm_remove(dev);
345 kobject_hotplug(&dev->kobj, KOBJ_REMOVE);
346 kobject_del(&dev->kobj);
352 * device_unregister - unregister device from system.
353 * @dev: device going away.
355 * We do this in two parts, like we do device_register(). First,
356 * we remove it from all the subsystems with device_del(), then
357 * we decrement the reference count via put_device(). If that
358 * is the final reference count, the device will be cleaned up
359 * via device_release() above. Otherwise, the structure will
360 * stick around until the final reference to the device is dropped.
362 void device_unregister(struct device * dev)
364 pr_debug("DEV: Unregistering device. ID = '%s'\n", dev->bus_id);
370 static struct device * next_device(struct klist_iter * i)
372 struct klist_node * n = klist_next(i);
373 return n ? container_of(n, struct device, knode_parent) : NULL;
377 * device_for_each_child - device child iterator.
378 * @dev: parent struct device.
379 * @data: data for the callback.
380 * @fn: function to be called for each device.
382 * Iterate over @dev's child devices, and call @fn for each,
385 * We check the return of @fn each time. If it returns anything
386 * other than 0, we break out and return that value.
388 int device_for_each_child(struct device * parent, void * data,
389 int (*fn)(struct device *, void *))
392 struct device * child;
395 klist_iter_init(&parent->klist_children, &i);
396 while ((child = next_device(&i)) && !error)
397 error = fn(child, data);
402 int __init devices_init(void)
404 return subsystem_register(&devices_subsys);
407 EXPORT_SYMBOL_GPL(device_for_each_child);
409 EXPORT_SYMBOL_GPL(device_initialize);
410 EXPORT_SYMBOL_GPL(device_add);
411 EXPORT_SYMBOL_GPL(device_register);
413 EXPORT_SYMBOL_GPL(device_del);
414 EXPORT_SYMBOL_GPL(device_unregister);
415 EXPORT_SYMBOL_GPL(get_device);
416 EXPORT_SYMBOL_GPL(put_device);
418 EXPORT_SYMBOL_GPL(device_create_file);
419 EXPORT_SYMBOL_GPL(device_remove_file);