1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/base/core.c - core driver model code (device registration, etc)
5 * Copyright (c) 2002-3 Patrick Mochel
6 * Copyright (c) 2002-3 Open Source Development Labs
7 * Copyright (c) 2006 Greg Kroah-Hartman <gregkh@suse.de>
8 * Copyright (c) 2006 Novell, Inc.
11 #include <linux/acpi.h>
12 #include <linux/cpufreq.h>
13 #include <linux/device.h>
14 #include <linux/err.h>
15 #include <linux/fwnode.h>
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <linux/string.h>
20 #include <linux/kdev_t.h>
21 #include <linux/notifier.h>
23 #include <linux/of_device.h>
24 #include <linux/blkdev.h>
25 #include <linux/mutex.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/netdevice.h>
28 #include <linux/sched/signal.h>
29 #include <linux/sched/mm.h>
30 #include <linux/swiotlb.h>
31 #include <linux/sysfs.h>
32 #include <linux/dma-map-ops.h> /* for dma_default_coherent */
35 #include "physical_location.h"
36 #include "power/power.h"
38 #ifdef CONFIG_SYSFS_DEPRECATED
39 #ifdef CONFIG_SYSFS_DEPRECATED_V2
40 long sysfs_deprecated = 1;
42 long sysfs_deprecated = 0;
44 static int __init sysfs_deprecated_setup(char *arg)
46 return kstrtol(arg, 10, &sysfs_deprecated);
48 early_param("sysfs.deprecated", sysfs_deprecated_setup);
51 /* Device links support. */
52 static LIST_HEAD(deferred_sync);
53 static unsigned int defer_sync_state_count = 1;
54 static DEFINE_MUTEX(fwnode_link_lock);
55 static bool fw_devlink_is_permissive(void);
56 static bool fw_devlink_drv_reg_done;
59 * fwnode_link_add - Create a link between two fwnode_handles.
60 * @con: Consumer end of the link.
61 * @sup: Supplier end of the link.
63 * Create a fwnode link between fwnode handles @con and @sup. The fwnode link
64 * represents the detail that the firmware lists @sup fwnode as supplying a
67 * The driver core will use the fwnode link to create a device link between the
68 * two device objects corresponding to @con and @sup when they are created. The
69 * driver core will automatically delete the fwnode link between @con and @sup
72 * Attempts to create duplicate links between the same pair of fwnode handles
73 * are ignored and there is no reference counting.
75 int fwnode_link_add(struct fwnode_handle *con, struct fwnode_handle *sup)
77 struct fwnode_link *link;
80 mutex_lock(&fwnode_link_lock);
82 list_for_each_entry(link, &sup->consumers, s_hook)
83 if (link->consumer == con)
86 link = kzalloc(sizeof(*link), GFP_KERNEL);
93 INIT_LIST_HEAD(&link->s_hook);
95 INIT_LIST_HEAD(&link->c_hook);
97 list_add(&link->s_hook, &sup->consumers);
98 list_add(&link->c_hook, &con->suppliers);
99 pr_debug("%pfwP Linked as a fwnode consumer to %pfwP\n",
102 mutex_unlock(&fwnode_link_lock);
108 * __fwnode_link_del - Delete a link between two fwnode_handles.
109 * @link: the fwnode_link to be deleted
111 * The fwnode_link_lock needs to be held when this function is called.
113 static void __fwnode_link_del(struct fwnode_link *link)
115 pr_debug("%pfwP Dropping the fwnode link to %pfwP\n",
116 link->consumer, link->supplier);
117 list_del(&link->s_hook);
118 list_del(&link->c_hook);
123 * fwnode_links_purge_suppliers - Delete all supplier links of fwnode_handle.
124 * @fwnode: fwnode whose supplier links need to be deleted
126 * Deletes all supplier links connecting directly to @fwnode.
128 static void fwnode_links_purge_suppliers(struct fwnode_handle *fwnode)
130 struct fwnode_link *link, *tmp;
132 mutex_lock(&fwnode_link_lock);
133 list_for_each_entry_safe(link, tmp, &fwnode->suppliers, c_hook)
134 __fwnode_link_del(link);
135 mutex_unlock(&fwnode_link_lock);
139 * fwnode_links_purge_consumers - Delete all consumer links of fwnode_handle.
140 * @fwnode: fwnode whose consumer links need to be deleted
142 * Deletes all consumer links connecting directly to @fwnode.
144 static void fwnode_links_purge_consumers(struct fwnode_handle *fwnode)
146 struct fwnode_link *link, *tmp;
148 mutex_lock(&fwnode_link_lock);
149 list_for_each_entry_safe(link, tmp, &fwnode->consumers, s_hook)
150 __fwnode_link_del(link);
151 mutex_unlock(&fwnode_link_lock);
155 * fwnode_links_purge - Delete all links connected to a fwnode_handle.
156 * @fwnode: fwnode whose links needs to be deleted
158 * Deletes all links connecting directly to a fwnode.
160 void fwnode_links_purge(struct fwnode_handle *fwnode)
162 fwnode_links_purge_suppliers(fwnode);
163 fwnode_links_purge_consumers(fwnode);
166 void fw_devlink_purge_absent_suppliers(struct fwnode_handle *fwnode)
168 struct fwnode_handle *child;
170 /* Don't purge consumer links of an added child */
174 fwnode->flags |= FWNODE_FLAG_NOT_DEVICE;
175 fwnode_links_purge_consumers(fwnode);
177 fwnode_for_each_available_child_node(fwnode, child)
178 fw_devlink_purge_absent_suppliers(child);
180 EXPORT_SYMBOL_GPL(fw_devlink_purge_absent_suppliers);
183 static DEFINE_MUTEX(device_links_lock);
184 DEFINE_STATIC_SRCU(device_links_srcu);
186 static inline void device_links_write_lock(void)
188 mutex_lock(&device_links_lock);
191 static inline void device_links_write_unlock(void)
193 mutex_unlock(&device_links_lock);
196 int device_links_read_lock(void) __acquires(&device_links_srcu)
198 return srcu_read_lock(&device_links_srcu);
201 void device_links_read_unlock(int idx) __releases(&device_links_srcu)
203 srcu_read_unlock(&device_links_srcu, idx);
206 int device_links_read_lock_held(void)
208 return srcu_read_lock_held(&device_links_srcu);
211 static void device_link_synchronize_removal(void)
213 synchronize_srcu(&device_links_srcu);
216 static void device_link_remove_from_lists(struct device_link *link)
218 list_del_rcu(&link->s_node);
219 list_del_rcu(&link->c_node);
221 #else /* !CONFIG_SRCU */
222 static DECLARE_RWSEM(device_links_lock);
224 static inline void device_links_write_lock(void)
226 down_write(&device_links_lock);
229 static inline void device_links_write_unlock(void)
231 up_write(&device_links_lock);
234 int device_links_read_lock(void)
236 down_read(&device_links_lock);
240 void device_links_read_unlock(int not_used)
242 up_read(&device_links_lock);
245 #ifdef CONFIG_DEBUG_LOCK_ALLOC
246 int device_links_read_lock_held(void)
248 return lockdep_is_held(&device_links_lock);
252 static inline void device_link_synchronize_removal(void)
256 static void device_link_remove_from_lists(struct device_link *link)
258 list_del(&link->s_node);
259 list_del(&link->c_node);
261 #endif /* !CONFIG_SRCU */
263 static bool device_is_ancestor(struct device *dev, struct device *target)
265 while (target->parent) {
266 target = target->parent;
274 * device_is_dependent - Check if one device depends on another one
275 * @dev: Device to check dependencies for.
276 * @target: Device to check against.
278 * Check if @target depends on @dev or any device dependent on it (its child or
279 * its consumer etc). Return 1 if that is the case or 0 otherwise.
281 int device_is_dependent(struct device *dev, void *target)
283 struct device_link *link;
287 * The "ancestors" check is needed to catch the case when the target
288 * device has not been completely initialized yet and it is still
289 * missing from the list of children of its parent device.
291 if (dev == target || device_is_ancestor(dev, target))
294 ret = device_for_each_child(dev, target, device_is_dependent);
298 list_for_each_entry(link, &dev->links.consumers, s_node) {
299 if ((link->flags & ~DL_FLAG_INFERRED) ==
300 (DL_FLAG_SYNC_STATE_ONLY | DL_FLAG_MANAGED))
303 if (link->consumer == target)
306 ret = device_is_dependent(link->consumer, target);
313 static void device_link_init_status(struct device_link *link,
314 struct device *consumer,
315 struct device *supplier)
317 switch (supplier->links.status) {
319 switch (consumer->links.status) {
322 * A consumer driver can create a link to a supplier
323 * that has not completed its probing yet as long as it
324 * knows that the supplier is already functional (for
325 * example, it has just acquired some resources from the
328 link->status = DL_STATE_CONSUMER_PROBE;
331 link->status = DL_STATE_DORMANT;
335 case DL_DEV_DRIVER_BOUND:
336 switch (consumer->links.status) {
338 link->status = DL_STATE_CONSUMER_PROBE;
340 case DL_DEV_DRIVER_BOUND:
341 link->status = DL_STATE_ACTIVE;
344 link->status = DL_STATE_AVAILABLE;
348 case DL_DEV_UNBINDING:
349 link->status = DL_STATE_SUPPLIER_UNBIND;
352 link->status = DL_STATE_DORMANT;
357 static int device_reorder_to_tail(struct device *dev, void *not_used)
359 struct device_link *link;
362 * Devices that have not been registered yet will be put to the ends
363 * of the lists during the registration, so skip them here.
365 if (device_is_registered(dev))
366 devices_kset_move_last(dev);
368 if (device_pm_initialized(dev))
369 device_pm_move_last(dev);
371 device_for_each_child(dev, NULL, device_reorder_to_tail);
372 list_for_each_entry(link, &dev->links.consumers, s_node) {
373 if ((link->flags & ~DL_FLAG_INFERRED) ==
374 (DL_FLAG_SYNC_STATE_ONLY | DL_FLAG_MANAGED))
376 device_reorder_to_tail(link->consumer, NULL);
383 * device_pm_move_to_tail - Move set of devices to the end of device lists
384 * @dev: Device to move
386 * This is a device_reorder_to_tail() wrapper taking the requisite locks.
388 * It moves the @dev along with all of its children and all of its consumers
389 * to the ends of the device_kset and dpm_list, recursively.
391 void device_pm_move_to_tail(struct device *dev)
395 idx = device_links_read_lock();
397 device_reorder_to_tail(dev, NULL);
399 device_links_read_unlock(idx);
402 #define to_devlink(dev) container_of((dev), struct device_link, link_dev)
404 static ssize_t status_show(struct device *dev,
405 struct device_attribute *attr, char *buf)
409 switch (to_devlink(dev)->status) {
411 output = "not tracked";
413 case DL_STATE_DORMANT:
416 case DL_STATE_AVAILABLE:
417 output = "available";
419 case DL_STATE_CONSUMER_PROBE:
420 output = "consumer probing";
422 case DL_STATE_ACTIVE:
425 case DL_STATE_SUPPLIER_UNBIND:
426 output = "supplier unbinding";
433 return sysfs_emit(buf, "%s\n", output);
435 static DEVICE_ATTR_RO(status);
437 static ssize_t auto_remove_on_show(struct device *dev,
438 struct device_attribute *attr, char *buf)
440 struct device_link *link = to_devlink(dev);
443 if (link->flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
444 output = "supplier unbind";
445 else if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER)
446 output = "consumer unbind";
450 return sysfs_emit(buf, "%s\n", output);
452 static DEVICE_ATTR_RO(auto_remove_on);
454 static ssize_t runtime_pm_show(struct device *dev,
455 struct device_attribute *attr, char *buf)
457 struct device_link *link = to_devlink(dev);
459 return sysfs_emit(buf, "%d\n", !!(link->flags & DL_FLAG_PM_RUNTIME));
461 static DEVICE_ATTR_RO(runtime_pm);
463 static ssize_t sync_state_only_show(struct device *dev,
464 struct device_attribute *attr, char *buf)
466 struct device_link *link = to_devlink(dev);
468 return sysfs_emit(buf, "%d\n",
469 !!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
471 static DEVICE_ATTR_RO(sync_state_only);
473 static struct attribute *devlink_attrs[] = {
474 &dev_attr_status.attr,
475 &dev_attr_auto_remove_on.attr,
476 &dev_attr_runtime_pm.attr,
477 &dev_attr_sync_state_only.attr,
480 ATTRIBUTE_GROUPS(devlink);
482 static void device_link_release_fn(struct work_struct *work)
484 struct device_link *link = container_of(work, struct device_link, rm_work);
486 /* Ensure that all references to the link object have been dropped. */
487 device_link_synchronize_removal();
489 pm_runtime_release_supplier(link);
491 * If supplier_preactivated is set, the link has been dropped between
492 * the pm_runtime_get_suppliers() and pm_runtime_put_suppliers() calls
493 * in __driver_probe_device(). In that case, drop the supplier's
494 * PM-runtime usage counter to remove the reference taken by
495 * pm_runtime_get_suppliers().
497 if (link->supplier_preactivated)
498 pm_runtime_put_noidle(link->supplier);
500 pm_request_idle(link->supplier);
502 put_device(link->consumer);
503 put_device(link->supplier);
507 static void devlink_dev_release(struct device *dev)
509 struct device_link *link = to_devlink(dev);
511 INIT_WORK(&link->rm_work, device_link_release_fn);
513 * It may take a while to complete this work because of the SRCU
514 * synchronization in device_link_release_fn() and if the consumer or
515 * supplier devices get deleted when it runs, so put it into the "long"
518 queue_work(system_long_wq, &link->rm_work);
521 static struct class devlink_class = {
523 .owner = THIS_MODULE,
524 .dev_groups = devlink_groups,
525 .dev_release = devlink_dev_release,
528 static int devlink_add_symlinks(struct device *dev,
529 struct class_interface *class_intf)
533 struct device_link *link = to_devlink(dev);
534 struct device *sup = link->supplier;
535 struct device *con = link->consumer;
538 len = max(strlen(dev_bus_name(sup)) + strlen(dev_name(sup)),
539 strlen(dev_bus_name(con)) + strlen(dev_name(con)));
541 len += strlen("supplier:") + 1;
542 buf = kzalloc(len, GFP_KERNEL);
546 ret = sysfs_create_link(&link->link_dev.kobj, &sup->kobj, "supplier");
550 ret = sysfs_create_link(&link->link_dev.kobj, &con->kobj, "consumer");
554 snprintf(buf, len, "consumer:%s:%s", dev_bus_name(con), dev_name(con));
555 ret = sysfs_create_link(&sup->kobj, &link->link_dev.kobj, buf);
559 snprintf(buf, len, "supplier:%s:%s", dev_bus_name(sup), dev_name(sup));
560 ret = sysfs_create_link(&con->kobj, &link->link_dev.kobj, buf);
567 snprintf(buf, len, "consumer:%s:%s", dev_bus_name(con), dev_name(con));
568 sysfs_remove_link(&sup->kobj, buf);
570 sysfs_remove_link(&link->link_dev.kobj, "consumer");
572 sysfs_remove_link(&link->link_dev.kobj, "supplier");
578 static void devlink_remove_symlinks(struct device *dev,
579 struct class_interface *class_intf)
581 struct device_link *link = to_devlink(dev);
583 struct device *sup = link->supplier;
584 struct device *con = link->consumer;
587 sysfs_remove_link(&link->link_dev.kobj, "consumer");
588 sysfs_remove_link(&link->link_dev.kobj, "supplier");
590 len = max(strlen(dev_bus_name(sup)) + strlen(dev_name(sup)),
591 strlen(dev_bus_name(con)) + strlen(dev_name(con)));
593 len += strlen("supplier:") + 1;
594 buf = kzalloc(len, GFP_KERNEL);
596 WARN(1, "Unable to properly free device link symlinks!\n");
600 if (device_is_registered(con)) {
601 snprintf(buf, len, "supplier:%s:%s", dev_bus_name(sup), dev_name(sup));
602 sysfs_remove_link(&con->kobj, buf);
604 snprintf(buf, len, "consumer:%s:%s", dev_bus_name(con), dev_name(con));
605 sysfs_remove_link(&sup->kobj, buf);
609 static struct class_interface devlink_class_intf = {
610 .class = &devlink_class,
611 .add_dev = devlink_add_symlinks,
612 .remove_dev = devlink_remove_symlinks,
615 static int __init devlink_class_init(void)
619 ret = class_register(&devlink_class);
623 ret = class_interface_register(&devlink_class_intf);
625 class_unregister(&devlink_class);
629 postcore_initcall(devlink_class_init);
631 #define DL_MANAGED_LINK_FLAGS (DL_FLAG_AUTOREMOVE_CONSUMER | \
632 DL_FLAG_AUTOREMOVE_SUPPLIER | \
633 DL_FLAG_AUTOPROBE_CONSUMER | \
634 DL_FLAG_SYNC_STATE_ONLY | \
637 #define DL_ADD_VALID_FLAGS (DL_MANAGED_LINK_FLAGS | DL_FLAG_STATELESS | \
638 DL_FLAG_PM_RUNTIME | DL_FLAG_RPM_ACTIVE)
641 * device_link_add - Create a link between two devices.
642 * @consumer: Consumer end of the link.
643 * @supplier: Supplier end of the link.
644 * @flags: Link flags.
646 * The caller is responsible for the proper synchronization of the link creation
647 * with runtime PM. First, setting the DL_FLAG_PM_RUNTIME flag will cause the
648 * runtime PM framework to take the link into account. Second, if the
649 * DL_FLAG_RPM_ACTIVE flag is set in addition to it, the supplier devices will
650 * be forced into the active meta state and reference-counted upon the creation
651 * of the link. If DL_FLAG_PM_RUNTIME is not set, DL_FLAG_RPM_ACTIVE will be
654 * If DL_FLAG_STATELESS is set in @flags, the caller of this function is
655 * expected to release the link returned by it directly with the help of either
656 * device_link_del() or device_link_remove().
658 * If that flag is not set, however, the caller of this function is handing the
659 * management of the link over to the driver core entirely and its return value
660 * can only be used to check whether or not the link is present. In that case,
661 * the DL_FLAG_AUTOREMOVE_CONSUMER and DL_FLAG_AUTOREMOVE_SUPPLIER device link
662 * flags can be used to indicate to the driver core when the link can be safely
663 * deleted. Namely, setting one of them in @flags indicates to the driver core
664 * that the link is not going to be used (by the given caller of this function)
665 * after unbinding the consumer or supplier driver, respectively, from its
666 * device, so the link can be deleted at that point. If none of them is set,
667 * the link will be maintained until one of the devices pointed to by it (either
668 * the consumer or the supplier) is unregistered.
670 * Also, if DL_FLAG_STATELESS, DL_FLAG_AUTOREMOVE_CONSUMER and
671 * DL_FLAG_AUTOREMOVE_SUPPLIER are not set in @flags (that is, a persistent
672 * managed device link is being added), the DL_FLAG_AUTOPROBE_CONSUMER flag can
673 * be used to request the driver core to automatically probe for a consumer
674 * driver after successfully binding a driver to the supplier device.
676 * The combination of DL_FLAG_STATELESS and one of DL_FLAG_AUTOREMOVE_CONSUMER,
677 * DL_FLAG_AUTOREMOVE_SUPPLIER, or DL_FLAG_AUTOPROBE_CONSUMER set in @flags at
678 * the same time is invalid and will cause NULL to be returned upfront.
679 * However, if a device link between the given @consumer and @supplier pair
680 * exists already when this function is called for them, the existing link will
681 * be returned regardless of its current type and status (the link's flags may
682 * be modified then). The caller of this function is then expected to treat
683 * the link as though it has just been created, so (in particular) if
684 * DL_FLAG_STATELESS was passed in @flags, the link needs to be released
685 * explicitly when not needed any more (as stated above).
687 * A side effect of the link creation is re-ordering of dpm_list and the
688 * devices_kset list by moving the consumer device and all devices depending
689 * on it to the ends of these lists (that does not happen to devices that have
690 * not been registered when this function is called).
692 * The supplier device is required to be registered when this function is called
693 * and NULL will be returned if that is not the case. The consumer device need
694 * not be registered, however.
696 struct device_link *device_link_add(struct device *consumer,
697 struct device *supplier, u32 flags)
699 struct device_link *link;
701 if (!consumer || !supplier || consumer == supplier ||
702 flags & ~DL_ADD_VALID_FLAGS ||
703 (flags & DL_FLAG_STATELESS && flags & DL_MANAGED_LINK_FLAGS) ||
704 (flags & DL_FLAG_SYNC_STATE_ONLY &&
705 (flags & ~DL_FLAG_INFERRED) != DL_FLAG_SYNC_STATE_ONLY) ||
706 (flags & DL_FLAG_AUTOPROBE_CONSUMER &&
707 flags & (DL_FLAG_AUTOREMOVE_CONSUMER |
708 DL_FLAG_AUTOREMOVE_SUPPLIER)))
711 if (flags & DL_FLAG_PM_RUNTIME && flags & DL_FLAG_RPM_ACTIVE) {
712 if (pm_runtime_get_sync(supplier) < 0) {
713 pm_runtime_put_noidle(supplier);
718 if (!(flags & DL_FLAG_STATELESS))
719 flags |= DL_FLAG_MANAGED;
721 device_links_write_lock();
725 * If the supplier has not been fully registered yet or there is a
726 * reverse (non-SYNC_STATE_ONLY) dependency between the consumer and
727 * the supplier already in the graph, return NULL. If the link is a
728 * SYNC_STATE_ONLY link, we don't check for reverse dependencies
729 * because it only affects sync_state() callbacks.
731 if (!device_pm_initialized(supplier)
732 || (!(flags & DL_FLAG_SYNC_STATE_ONLY) &&
733 device_is_dependent(consumer, supplier))) {
739 * SYNC_STATE_ONLY links are useless once a consumer device has probed.
740 * So, only create it if the consumer hasn't probed yet.
742 if (flags & DL_FLAG_SYNC_STATE_ONLY &&
743 consumer->links.status != DL_DEV_NO_DRIVER &&
744 consumer->links.status != DL_DEV_PROBING) {
750 * DL_FLAG_AUTOREMOVE_SUPPLIER indicates that the link will be needed
751 * longer than for DL_FLAG_AUTOREMOVE_CONSUMER and setting them both
752 * together doesn't make sense, so prefer DL_FLAG_AUTOREMOVE_SUPPLIER.
754 if (flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
755 flags &= ~DL_FLAG_AUTOREMOVE_CONSUMER;
757 list_for_each_entry(link, &supplier->links.consumers, s_node) {
758 if (link->consumer != consumer)
761 if (link->flags & DL_FLAG_INFERRED &&
762 !(flags & DL_FLAG_INFERRED))
763 link->flags &= ~DL_FLAG_INFERRED;
765 if (flags & DL_FLAG_PM_RUNTIME) {
766 if (!(link->flags & DL_FLAG_PM_RUNTIME)) {
767 pm_runtime_new_link(consumer);
768 link->flags |= DL_FLAG_PM_RUNTIME;
770 if (flags & DL_FLAG_RPM_ACTIVE)
771 refcount_inc(&link->rpm_active);
774 if (flags & DL_FLAG_STATELESS) {
775 kref_get(&link->kref);
776 if (link->flags & DL_FLAG_SYNC_STATE_ONLY &&
777 !(link->flags & DL_FLAG_STATELESS)) {
778 link->flags |= DL_FLAG_STATELESS;
781 link->flags |= DL_FLAG_STATELESS;
787 * If the life time of the link following from the new flags is
788 * longer than indicated by the flags of the existing link,
789 * update the existing link to stay around longer.
791 if (flags & DL_FLAG_AUTOREMOVE_SUPPLIER) {
792 if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER) {
793 link->flags &= ~DL_FLAG_AUTOREMOVE_CONSUMER;
794 link->flags |= DL_FLAG_AUTOREMOVE_SUPPLIER;
796 } else if (!(flags & DL_FLAG_AUTOREMOVE_CONSUMER)) {
797 link->flags &= ~(DL_FLAG_AUTOREMOVE_CONSUMER |
798 DL_FLAG_AUTOREMOVE_SUPPLIER);
800 if (!(link->flags & DL_FLAG_MANAGED)) {
801 kref_get(&link->kref);
802 link->flags |= DL_FLAG_MANAGED;
803 device_link_init_status(link, consumer, supplier);
805 if (link->flags & DL_FLAG_SYNC_STATE_ONLY &&
806 !(flags & DL_FLAG_SYNC_STATE_ONLY)) {
807 link->flags &= ~DL_FLAG_SYNC_STATE_ONLY;
814 link = kzalloc(sizeof(*link), GFP_KERNEL);
818 refcount_set(&link->rpm_active, 1);
820 get_device(supplier);
821 link->supplier = supplier;
822 INIT_LIST_HEAD(&link->s_node);
823 get_device(consumer);
824 link->consumer = consumer;
825 INIT_LIST_HEAD(&link->c_node);
827 kref_init(&link->kref);
829 link->link_dev.class = &devlink_class;
830 device_set_pm_not_required(&link->link_dev);
831 dev_set_name(&link->link_dev, "%s:%s--%s:%s",
832 dev_bus_name(supplier), dev_name(supplier),
833 dev_bus_name(consumer), dev_name(consumer));
834 if (device_register(&link->link_dev)) {
835 put_device(&link->link_dev);
840 if (flags & DL_FLAG_PM_RUNTIME) {
841 if (flags & DL_FLAG_RPM_ACTIVE)
842 refcount_inc(&link->rpm_active);
844 pm_runtime_new_link(consumer);
847 /* Determine the initial link state. */
848 if (flags & DL_FLAG_STATELESS)
849 link->status = DL_STATE_NONE;
851 device_link_init_status(link, consumer, supplier);
854 * Some callers expect the link creation during consumer driver probe to
855 * resume the supplier even without DL_FLAG_RPM_ACTIVE.
857 if (link->status == DL_STATE_CONSUMER_PROBE &&
858 flags & DL_FLAG_PM_RUNTIME)
859 pm_runtime_resume(supplier);
861 list_add_tail_rcu(&link->s_node, &supplier->links.consumers);
862 list_add_tail_rcu(&link->c_node, &consumer->links.suppliers);
864 if (flags & DL_FLAG_SYNC_STATE_ONLY) {
866 "Linked as a sync state only consumer to %s\n",
873 * Move the consumer and all of the devices depending on it to the end
874 * of dpm_list and the devices_kset list.
876 * It is necessary to hold dpm_list locked throughout all that or else
877 * we may end up suspending with a wrong ordering of it.
879 device_reorder_to_tail(consumer, NULL);
881 dev_dbg(consumer, "Linked as a consumer to %s\n", dev_name(supplier));
885 device_links_write_unlock();
887 if ((flags & DL_FLAG_PM_RUNTIME && flags & DL_FLAG_RPM_ACTIVE) && !link)
888 pm_runtime_put(supplier);
892 EXPORT_SYMBOL_GPL(device_link_add);
894 static void __device_link_del(struct kref *kref)
896 struct device_link *link = container_of(kref, struct device_link, kref);
898 dev_dbg(link->consumer, "Dropping the link to %s\n",
899 dev_name(link->supplier));
901 pm_runtime_drop_link(link);
903 device_link_remove_from_lists(link);
904 device_unregister(&link->link_dev);
907 static void device_link_put_kref(struct device_link *link)
909 if (link->flags & DL_FLAG_STATELESS)
910 kref_put(&link->kref, __device_link_del);
911 else if (!device_is_registered(link->consumer))
912 __device_link_del(&link->kref);
914 WARN(1, "Unable to drop a managed device link reference\n");
918 * device_link_del - Delete a stateless link between two devices.
919 * @link: Device link to delete.
921 * The caller must ensure proper synchronization of this function with runtime
922 * PM. If the link was added multiple times, it needs to be deleted as often.
923 * Care is required for hotplugged devices: Their links are purged on removal
924 * and calling device_link_del() is then no longer allowed.
926 void device_link_del(struct device_link *link)
928 device_links_write_lock();
929 device_link_put_kref(link);
930 device_links_write_unlock();
932 EXPORT_SYMBOL_GPL(device_link_del);
935 * device_link_remove - Delete a stateless link between two devices.
936 * @consumer: Consumer end of the link.
937 * @supplier: Supplier end of the link.
939 * The caller must ensure proper synchronization of this function with runtime
942 void device_link_remove(void *consumer, struct device *supplier)
944 struct device_link *link;
946 if (WARN_ON(consumer == supplier))
949 device_links_write_lock();
951 list_for_each_entry(link, &supplier->links.consumers, s_node) {
952 if (link->consumer == consumer) {
953 device_link_put_kref(link);
958 device_links_write_unlock();
960 EXPORT_SYMBOL_GPL(device_link_remove);
962 static void device_links_missing_supplier(struct device *dev)
964 struct device_link *link;
966 list_for_each_entry(link, &dev->links.suppliers, c_node) {
967 if (link->status != DL_STATE_CONSUMER_PROBE)
970 if (link->supplier->links.status == DL_DEV_DRIVER_BOUND) {
971 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
973 WARN_ON(!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
974 WRITE_ONCE(link->status, DL_STATE_DORMANT);
980 * device_links_check_suppliers - Check presence of supplier drivers.
981 * @dev: Consumer device.
983 * Check links from this device to any suppliers. Walk the list of the device's
984 * links to suppliers and see if all of them are available. If not, simply
985 * return -EPROBE_DEFER.
987 * We need to guarantee that the supplier will not go away after the check has
988 * been positive here. It only can go away in __device_release_driver() and
989 * that function checks the device's links to consumers. This means we need to
990 * mark the link as "consumer probe in progress" to make the supplier removal
991 * wait for us to complete (or bad things may happen).
993 * Links without the DL_FLAG_MANAGED flag set are ignored.
995 int device_links_check_suppliers(struct device *dev)
997 struct device_link *link;
999 struct fwnode_handle *sup_fw;
1002 * Device waiting for supplier to become available is not allowed to
1005 mutex_lock(&fwnode_link_lock);
1006 if (dev->fwnode && !list_empty(&dev->fwnode->suppliers) &&
1007 !fw_devlink_is_permissive()) {
1008 sup_fw = list_first_entry(&dev->fwnode->suppliers,
1011 dev_err_probe(dev, -EPROBE_DEFER, "wait for supplier %pfwP\n",
1013 mutex_unlock(&fwnode_link_lock);
1014 return -EPROBE_DEFER;
1016 mutex_unlock(&fwnode_link_lock);
1018 device_links_write_lock();
1020 list_for_each_entry(link, &dev->links.suppliers, c_node) {
1021 if (!(link->flags & DL_FLAG_MANAGED))
1024 if (link->status != DL_STATE_AVAILABLE &&
1025 !(link->flags & DL_FLAG_SYNC_STATE_ONLY)) {
1026 device_links_missing_supplier(dev);
1027 dev_err_probe(dev, -EPROBE_DEFER,
1028 "supplier %s not ready\n",
1029 dev_name(link->supplier));
1030 ret = -EPROBE_DEFER;
1033 WRITE_ONCE(link->status, DL_STATE_CONSUMER_PROBE);
1035 dev->links.status = DL_DEV_PROBING;
1037 device_links_write_unlock();
1042 * __device_links_queue_sync_state - Queue a device for sync_state() callback
1043 * @dev: Device to call sync_state() on
1044 * @list: List head to queue the @dev on
1046 * Queues a device for a sync_state() callback when the device links write lock
1047 * isn't held. This allows the sync_state() execution flow to use device links
1048 * APIs. The caller must ensure this function is called with
1049 * device_links_write_lock() held.
1051 * This function does a get_device() to make sure the device is not freed while
1054 * So the caller must also ensure that device_links_flush_sync_list() is called
1055 * as soon as the caller releases device_links_write_lock(). This is necessary
1056 * to make sure the sync_state() is called in a timely fashion and the
1057 * put_device() is called on this device.
1059 static void __device_links_queue_sync_state(struct device *dev,
1060 struct list_head *list)
1062 struct device_link *link;
1064 if (!dev_has_sync_state(dev))
1066 if (dev->state_synced)
1069 list_for_each_entry(link, &dev->links.consumers, s_node) {
1070 if (!(link->flags & DL_FLAG_MANAGED))
1072 if (link->status != DL_STATE_ACTIVE)
1077 * Set the flag here to avoid adding the same device to a list more
1078 * than once. This can happen if new consumers get added to the device
1079 * and probed before the list is flushed.
1081 dev->state_synced = true;
1083 if (WARN_ON(!list_empty(&dev->links.defer_sync)))
1087 list_add_tail(&dev->links.defer_sync, list);
1091 * device_links_flush_sync_list - Call sync_state() on a list of devices
1092 * @list: List of devices to call sync_state() on
1093 * @dont_lock_dev: Device for which lock is already held by the caller
1095 * Calls sync_state() on all the devices that have been queued for it. This
1096 * function is used in conjunction with __device_links_queue_sync_state(). The
1097 * @dont_lock_dev parameter is useful when this function is called from a
1098 * context where a device lock is already held.
1100 static void device_links_flush_sync_list(struct list_head *list,
1101 struct device *dont_lock_dev)
1103 struct device *dev, *tmp;
1105 list_for_each_entry_safe(dev, tmp, list, links.defer_sync) {
1106 list_del_init(&dev->links.defer_sync);
1108 if (dev != dont_lock_dev)
1111 if (dev->bus->sync_state)
1112 dev->bus->sync_state(dev);
1113 else if (dev->driver && dev->driver->sync_state)
1114 dev->driver->sync_state(dev);
1116 if (dev != dont_lock_dev)
1123 void device_links_supplier_sync_state_pause(void)
1125 device_links_write_lock();
1126 defer_sync_state_count++;
1127 device_links_write_unlock();
1130 void device_links_supplier_sync_state_resume(void)
1132 struct device *dev, *tmp;
1133 LIST_HEAD(sync_list);
1135 device_links_write_lock();
1136 if (!defer_sync_state_count) {
1137 WARN(true, "Unmatched sync_state pause/resume!");
1140 defer_sync_state_count--;
1141 if (defer_sync_state_count)
1144 list_for_each_entry_safe(dev, tmp, &deferred_sync, links.defer_sync) {
1146 * Delete from deferred_sync list before queuing it to
1147 * sync_list because defer_sync is used for both lists.
1149 list_del_init(&dev->links.defer_sync);
1150 __device_links_queue_sync_state(dev, &sync_list);
1153 device_links_write_unlock();
1155 device_links_flush_sync_list(&sync_list, NULL);
1158 static int sync_state_resume_initcall(void)
1160 device_links_supplier_sync_state_resume();
1163 late_initcall(sync_state_resume_initcall);
1165 static void __device_links_supplier_defer_sync(struct device *sup)
1167 if (list_empty(&sup->links.defer_sync) && dev_has_sync_state(sup))
1168 list_add_tail(&sup->links.defer_sync, &deferred_sync);
1171 static void device_link_drop_managed(struct device_link *link)
1173 link->flags &= ~DL_FLAG_MANAGED;
1174 WRITE_ONCE(link->status, DL_STATE_NONE);
1175 kref_put(&link->kref, __device_link_del);
1178 static ssize_t waiting_for_supplier_show(struct device *dev,
1179 struct device_attribute *attr,
1185 val = !list_empty(&dev->fwnode->suppliers);
1187 return sysfs_emit(buf, "%u\n", val);
1189 static DEVICE_ATTR_RO(waiting_for_supplier);
1192 * device_links_force_bind - Prepares device to be force bound
1193 * @dev: Consumer device.
1195 * device_bind_driver() force binds a device to a driver without calling any
1196 * driver probe functions. So the consumer really isn't going to wait for any
1197 * supplier before it's bound to the driver. We still want the device link
1198 * states to be sensible when this happens.
1200 * In preparation for device_bind_driver(), this function goes through each
1201 * supplier device links and checks if the supplier is bound. If it is, then
1202 * the device link status is set to CONSUMER_PROBE. Otherwise, the device link
1203 * is dropped. Links without the DL_FLAG_MANAGED flag set are ignored.
1205 void device_links_force_bind(struct device *dev)
1207 struct device_link *link, *ln;
1209 device_links_write_lock();
1211 list_for_each_entry_safe(link, ln, &dev->links.suppliers, c_node) {
1212 if (!(link->flags & DL_FLAG_MANAGED))
1215 if (link->status != DL_STATE_AVAILABLE) {
1216 device_link_drop_managed(link);
1219 WRITE_ONCE(link->status, DL_STATE_CONSUMER_PROBE);
1221 dev->links.status = DL_DEV_PROBING;
1223 device_links_write_unlock();
1227 * device_links_driver_bound - Update device links after probing its driver.
1228 * @dev: Device to update the links for.
1230 * The probe has been successful, so update links from this device to any
1231 * consumers by changing their status to "available".
1233 * Also change the status of @dev's links to suppliers to "active".
1235 * Links without the DL_FLAG_MANAGED flag set are ignored.
1237 void device_links_driver_bound(struct device *dev)
1239 struct device_link *link, *ln;
1240 LIST_HEAD(sync_list);
1243 * If a device binds successfully, it's expected to have created all
1244 * the device links it needs to or make new device links as it needs
1245 * them. So, fw_devlink no longer needs to create device links to any
1246 * of the device's suppliers.
1248 * Also, if a child firmware node of this bound device is not added as
1249 * a device by now, assume it is never going to be added and make sure
1250 * other devices don't defer probe indefinitely by waiting for such a
1253 if (dev->fwnode && dev->fwnode->dev == dev) {
1254 struct fwnode_handle *child;
1255 fwnode_links_purge_suppliers(dev->fwnode);
1256 fwnode_for_each_available_child_node(dev->fwnode, child)
1257 fw_devlink_purge_absent_suppliers(child);
1259 device_remove_file(dev, &dev_attr_waiting_for_supplier);
1261 device_links_write_lock();
1263 list_for_each_entry(link, &dev->links.consumers, s_node) {
1264 if (!(link->flags & DL_FLAG_MANAGED))
1268 * Links created during consumer probe may be in the "consumer
1269 * probe" state to start with if the supplier is still probing
1270 * when they are created and they may become "active" if the
1271 * consumer probe returns first. Skip them here.
1273 if (link->status == DL_STATE_CONSUMER_PROBE ||
1274 link->status == DL_STATE_ACTIVE)
1277 WARN_ON(link->status != DL_STATE_DORMANT);
1278 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
1280 if (link->flags & DL_FLAG_AUTOPROBE_CONSUMER)
1281 driver_deferred_probe_add(link->consumer);
1284 if (defer_sync_state_count)
1285 __device_links_supplier_defer_sync(dev);
1287 __device_links_queue_sync_state(dev, &sync_list);
1289 list_for_each_entry_safe(link, ln, &dev->links.suppliers, c_node) {
1290 struct device *supplier;
1292 if (!(link->flags & DL_FLAG_MANAGED))
1295 supplier = link->supplier;
1296 if (link->flags & DL_FLAG_SYNC_STATE_ONLY) {
1298 * When DL_FLAG_SYNC_STATE_ONLY is set, it means no
1299 * other DL_MANAGED_LINK_FLAGS have been set. So, it's
1300 * save to drop the managed link completely.
1302 device_link_drop_managed(link);
1304 WARN_ON(link->status != DL_STATE_CONSUMER_PROBE);
1305 WRITE_ONCE(link->status, DL_STATE_ACTIVE);
1309 * This needs to be done even for the deleted
1310 * DL_FLAG_SYNC_STATE_ONLY device link in case it was the last
1311 * device link that was preventing the supplier from getting a
1312 * sync_state() call.
1314 if (defer_sync_state_count)
1315 __device_links_supplier_defer_sync(supplier);
1317 __device_links_queue_sync_state(supplier, &sync_list);
1320 dev->links.status = DL_DEV_DRIVER_BOUND;
1322 device_links_write_unlock();
1324 device_links_flush_sync_list(&sync_list, dev);
1328 * __device_links_no_driver - Update links of a device without a driver.
1329 * @dev: Device without a drvier.
1331 * Delete all non-persistent links from this device to any suppliers.
1333 * Persistent links stay around, but their status is changed to "available",
1334 * unless they already are in the "supplier unbind in progress" state in which
1335 * case they need not be updated.
1337 * Links without the DL_FLAG_MANAGED flag set are ignored.
1339 static void __device_links_no_driver(struct device *dev)
1341 struct device_link *link, *ln;
1343 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
1344 if (!(link->flags & DL_FLAG_MANAGED))
1347 if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER) {
1348 device_link_drop_managed(link);
1352 if (link->status != DL_STATE_CONSUMER_PROBE &&
1353 link->status != DL_STATE_ACTIVE)
1356 if (link->supplier->links.status == DL_DEV_DRIVER_BOUND) {
1357 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
1359 WARN_ON(!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
1360 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1364 dev->links.status = DL_DEV_NO_DRIVER;
1368 * device_links_no_driver - Update links after failing driver probe.
1369 * @dev: Device whose driver has just failed to probe.
1371 * Clean up leftover links to consumers for @dev and invoke
1372 * %__device_links_no_driver() to update links to suppliers for it as
1375 * Links without the DL_FLAG_MANAGED flag set are ignored.
1377 void device_links_no_driver(struct device *dev)
1379 struct device_link *link;
1381 device_links_write_lock();
1383 list_for_each_entry(link, &dev->links.consumers, s_node) {
1384 if (!(link->flags & DL_FLAG_MANAGED))
1388 * The probe has failed, so if the status of the link is
1389 * "consumer probe" or "active", it must have been added by
1390 * a probing consumer while this device was still probing.
1391 * Change its state to "dormant", as it represents a valid
1392 * relationship, but it is not functionally meaningful.
1394 if (link->status == DL_STATE_CONSUMER_PROBE ||
1395 link->status == DL_STATE_ACTIVE)
1396 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1399 __device_links_no_driver(dev);
1401 device_links_write_unlock();
1405 * device_links_driver_cleanup - Update links after driver removal.
1406 * @dev: Device whose driver has just gone away.
1408 * Update links to consumers for @dev by changing their status to "dormant" and
1409 * invoke %__device_links_no_driver() to update links to suppliers for it as
1412 * Links without the DL_FLAG_MANAGED flag set are ignored.
1414 void device_links_driver_cleanup(struct device *dev)
1416 struct device_link *link, *ln;
1418 device_links_write_lock();
1420 list_for_each_entry_safe(link, ln, &dev->links.consumers, s_node) {
1421 if (!(link->flags & DL_FLAG_MANAGED))
1424 WARN_ON(link->flags & DL_FLAG_AUTOREMOVE_CONSUMER);
1425 WARN_ON(link->status != DL_STATE_SUPPLIER_UNBIND);
1428 * autoremove the links between this @dev and its consumer
1429 * devices that are not active, i.e. where the link state
1430 * has moved to DL_STATE_SUPPLIER_UNBIND.
1432 if (link->status == DL_STATE_SUPPLIER_UNBIND &&
1433 link->flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
1434 device_link_drop_managed(link);
1436 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1439 list_del_init(&dev->links.defer_sync);
1440 __device_links_no_driver(dev);
1442 device_links_write_unlock();
1446 * device_links_busy - Check if there are any busy links to consumers.
1447 * @dev: Device to check.
1449 * Check each consumer of the device and return 'true' if its link's status
1450 * is one of "consumer probe" or "active" (meaning that the given consumer is
1451 * probing right now or its driver is present). Otherwise, change the link
1452 * state to "supplier unbind" to prevent the consumer from being probed
1453 * successfully going forward.
1455 * Return 'false' if there are no probing or active consumers.
1457 * Links without the DL_FLAG_MANAGED flag set are ignored.
1459 bool device_links_busy(struct device *dev)
1461 struct device_link *link;
1464 device_links_write_lock();
1466 list_for_each_entry(link, &dev->links.consumers, s_node) {
1467 if (!(link->flags & DL_FLAG_MANAGED))
1470 if (link->status == DL_STATE_CONSUMER_PROBE
1471 || link->status == DL_STATE_ACTIVE) {
1475 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
1478 dev->links.status = DL_DEV_UNBINDING;
1480 device_links_write_unlock();
1485 * device_links_unbind_consumers - Force unbind consumers of the given device.
1486 * @dev: Device to unbind the consumers of.
1488 * Walk the list of links to consumers for @dev and if any of them is in the
1489 * "consumer probe" state, wait for all device probes in progress to complete
1492 * If that's not the case, change the status of the link to "supplier unbind"
1493 * and check if the link was in the "active" state. If so, force the consumer
1494 * driver to unbind and start over (the consumer will not re-probe as we have
1495 * changed the state of the link already).
1497 * Links without the DL_FLAG_MANAGED flag set are ignored.
1499 void device_links_unbind_consumers(struct device *dev)
1501 struct device_link *link;
1504 device_links_write_lock();
1506 list_for_each_entry(link, &dev->links.consumers, s_node) {
1507 enum device_link_state status;
1509 if (!(link->flags & DL_FLAG_MANAGED) ||
1510 link->flags & DL_FLAG_SYNC_STATE_ONLY)
1513 status = link->status;
1514 if (status == DL_STATE_CONSUMER_PROBE) {
1515 device_links_write_unlock();
1517 wait_for_device_probe();
1520 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
1521 if (status == DL_STATE_ACTIVE) {
1522 struct device *consumer = link->consumer;
1524 get_device(consumer);
1526 device_links_write_unlock();
1528 device_release_driver_internal(consumer, NULL,
1530 put_device(consumer);
1535 device_links_write_unlock();
1539 * device_links_purge - Delete existing links to other devices.
1540 * @dev: Target device.
1542 static void device_links_purge(struct device *dev)
1544 struct device_link *link, *ln;
1546 if (dev->class == &devlink_class)
1550 * Delete all of the remaining links from this device to any other
1551 * devices (either consumers or suppliers).
1553 device_links_write_lock();
1555 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
1556 WARN_ON(link->status == DL_STATE_ACTIVE);
1557 __device_link_del(&link->kref);
1560 list_for_each_entry_safe_reverse(link, ln, &dev->links.consumers, s_node) {
1561 WARN_ON(link->status != DL_STATE_DORMANT &&
1562 link->status != DL_STATE_NONE);
1563 __device_link_del(&link->kref);
1566 device_links_write_unlock();
1569 #define FW_DEVLINK_FLAGS_PERMISSIVE (DL_FLAG_INFERRED | \
1570 DL_FLAG_SYNC_STATE_ONLY)
1571 #define FW_DEVLINK_FLAGS_ON (DL_FLAG_INFERRED | \
1572 DL_FLAG_AUTOPROBE_CONSUMER)
1573 #define FW_DEVLINK_FLAGS_RPM (FW_DEVLINK_FLAGS_ON | \
1576 static u32 fw_devlink_flags = FW_DEVLINK_FLAGS_ON;
1577 static int __init fw_devlink_setup(char *arg)
1582 if (strcmp(arg, "off") == 0) {
1583 fw_devlink_flags = 0;
1584 } else if (strcmp(arg, "permissive") == 0) {
1585 fw_devlink_flags = FW_DEVLINK_FLAGS_PERMISSIVE;
1586 } else if (strcmp(arg, "on") == 0) {
1587 fw_devlink_flags = FW_DEVLINK_FLAGS_ON;
1588 } else if (strcmp(arg, "rpm") == 0) {
1589 fw_devlink_flags = FW_DEVLINK_FLAGS_RPM;
1593 early_param("fw_devlink", fw_devlink_setup);
1595 static bool fw_devlink_strict;
1596 static int __init fw_devlink_strict_setup(char *arg)
1598 return strtobool(arg, &fw_devlink_strict);
1600 early_param("fw_devlink.strict", fw_devlink_strict_setup);
1602 u32 fw_devlink_get_flags(void)
1604 return fw_devlink_flags;
1607 static bool fw_devlink_is_permissive(void)
1609 return fw_devlink_flags == FW_DEVLINK_FLAGS_PERMISSIVE;
1612 bool fw_devlink_is_strict(void)
1614 return fw_devlink_strict && !fw_devlink_is_permissive();
1617 static void fw_devlink_parse_fwnode(struct fwnode_handle *fwnode)
1619 if (fwnode->flags & FWNODE_FLAG_LINKS_ADDED)
1622 fwnode_call_int_op(fwnode, add_links);
1623 fwnode->flags |= FWNODE_FLAG_LINKS_ADDED;
1626 static void fw_devlink_parse_fwtree(struct fwnode_handle *fwnode)
1628 struct fwnode_handle *child = NULL;
1630 fw_devlink_parse_fwnode(fwnode);
1632 while ((child = fwnode_get_next_available_child_node(fwnode, child)))
1633 fw_devlink_parse_fwtree(child);
1636 static void fw_devlink_relax_link(struct device_link *link)
1638 if (!(link->flags & DL_FLAG_INFERRED))
1641 if (link->flags == (DL_FLAG_MANAGED | FW_DEVLINK_FLAGS_PERMISSIVE))
1644 pm_runtime_drop_link(link);
1645 link->flags = DL_FLAG_MANAGED | FW_DEVLINK_FLAGS_PERMISSIVE;
1646 dev_dbg(link->consumer, "Relaxing link with %s\n",
1647 dev_name(link->supplier));
1650 static int fw_devlink_no_driver(struct device *dev, void *data)
1652 struct device_link *link = to_devlink(dev);
1654 if (!link->supplier->can_match)
1655 fw_devlink_relax_link(link);
1660 void fw_devlink_drivers_done(void)
1662 fw_devlink_drv_reg_done = true;
1663 device_links_write_lock();
1664 class_for_each_device(&devlink_class, NULL, NULL,
1665 fw_devlink_no_driver);
1666 device_links_write_unlock();
1669 static void fw_devlink_unblock_consumers(struct device *dev)
1671 struct device_link *link;
1673 if (!fw_devlink_flags || fw_devlink_is_permissive())
1676 device_links_write_lock();
1677 list_for_each_entry(link, &dev->links.consumers, s_node)
1678 fw_devlink_relax_link(link);
1679 device_links_write_unlock();
1683 * fw_devlink_relax_cycle - Convert cyclic links to SYNC_STATE_ONLY links
1684 * @con: Device to check dependencies for.
1685 * @sup: Device to check against.
1687 * Check if @sup depends on @con or any device dependent on it (its child or
1688 * its consumer etc). When such a cyclic dependency is found, convert all
1689 * device links created solely by fw_devlink into SYNC_STATE_ONLY device links.
1690 * This is the equivalent of doing fw_devlink=permissive just between the
1691 * devices in the cycle. We need to do this because, at this point, fw_devlink
1692 * can't tell which of these dependencies is not a real dependency.
1694 * Return 1 if a cycle is found. Otherwise, return 0.
1696 static int fw_devlink_relax_cycle(struct device *con, void *sup)
1698 struct device_link *link;
1704 ret = device_for_each_child(con, sup, fw_devlink_relax_cycle);
1708 list_for_each_entry(link, &con->links.consumers, s_node) {
1709 if ((link->flags & ~DL_FLAG_INFERRED) ==
1710 (DL_FLAG_SYNC_STATE_ONLY | DL_FLAG_MANAGED))
1713 if (!fw_devlink_relax_cycle(link->consumer, sup))
1718 fw_devlink_relax_link(link);
1724 * fw_devlink_create_devlink - Create a device link from a consumer to fwnode
1725 * @con: consumer device for the device link
1726 * @sup_handle: fwnode handle of supplier
1727 * @flags: devlink flags
1729 * This function will try to create a device link between the consumer device
1730 * @con and the supplier device represented by @sup_handle.
1732 * The supplier has to be provided as a fwnode because incorrect cycles in
1733 * fwnode links can sometimes cause the supplier device to never be created.
1734 * This function detects such cases and returns an error if it cannot create a
1735 * device link from the consumer to a missing supplier.
1738 * 0 on successfully creating a device link
1739 * -EINVAL if the device link cannot be created as expected
1740 * -EAGAIN if the device link cannot be created right now, but it may be
1741 * possible to do that in the future
1743 static int fw_devlink_create_devlink(struct device *con,
1744 struct fwnode_handle *sup_handle, u32 flags)
1746 struct device *sup_dev;
1750 * In some cases, a device P might also be a supplier to its child node
1751 * C. However, this would defer the probe of C until the probe of P
1752 * completes successfully. This is perfectly fine in the device driver
1753 * model. device_add() doesn't guarantee probe completion of the device
1754 * by the time it returns.
1756 * However, there are a few drivers that assume C will finish probing
1757 * as soon as it's added and before P finishes probing. So, we provide
1758 * a flag to let fw_devlink know not to delay the probe of C until the
1759 * probe of P completes successfully.
1761 * When such a flag is set, we can't create device links where P is the
1762 * supplier of C as that would delay the probe of C.
1764 if (sup_handle->flags & FWNODE_FLAG_NEEDS_CHILD_BOUND_ON_ADD &&
1765 fwnode_is_ancestor_of(sup_handle, con->fwnode))
1768 sup_dev = get_dev_from_fwnode(sup_handle);
1771 * If it's one of those drivers that don't actually bind to
1772 * their device using driver core, then don't wait on this
1773 * supplier device indefinitely.
1775 if (sup_dev->links.status == DL_DEV_NO_DRIVER &&
1776 sup_handle->flags & FWNODE_FLAG_INITIALIZED) {
1782 * If this fails, it is due to cycles in device links. Just
1783 * give up on this link and treat it as invalid.
1785 if (!device_link_add(con, sup_dev, flags) &&
1786 !(flags & DL_FLAG_SYNC_STATE_ONLY)) {
1787 dev_info(con, "Fixing up cyclic dependency with %s\n",
1789 device_links_write_lock();
1790 fw_devlink_relax_cycle(con, sup_dev);
1791 device_links_write_unlock();
1792 device_link_add(con, sup_dev,
1793 FW_DEVLINK_FLAGS_PERMISSIVE);
1800 /* Supplier that's already initialized without a struct device. */
1801 if (sup_handle->flags & FWNODE_FLAG_INITIALIZED)
1805 * DL_FLAG_SYNC_STATE_ONLY doesn't block probing and supports
1806 * cycles. So cycle detection isn't necessary and shouldn't be
1809 if (flags & DL_FLAG_SYNC_STATE_ONLY)
1813 * If we can't find the supplier device from its fwnode, it might be
1814 * due to a cyclic dependency between fwnodes. Some of these cycles can
1815 * be broken by applying logic. Check for these types of cycles and
1816 * break them so that devices in the cycle probe properly.
1818 * If the supplier's parent is dependent on the consumer, then the
1819 * consumer and supplier have a cyclic dependency. Since fw_devlink
1820 * can't tell which of the inferred dependencies are incorrect, don't
1821 * enforce probe ordering between any of the devices in this cyclic
1822 * dependency. Do this by relaxing all the fw_devlink device links in
1823 * this cycle and by treating the fwnode link between the consumer and
1824 * the supplier as an invalid dependency.
1826 sup_dev = fwnode_get_next_parent_dev(sup_handle);
1827 if (sup_dev && device_is_dependent(con, sup_dev)) {
1828 dev_info(con, "Fixing up cyclic dependency with %pfwP (%s)\n",
1829 sup_handle, dev_name(sup_dev));
1830 device_links_write_lock();
1831 fw_devlink_relax_cycle(con, sup_dev);
1832 device_links_write_unlock();
1836 * Can't check for cycles or no cycles. So let's try
1843 put_device(sup_dev);
1848 * __fw_devlink_link_to_consumers - Create device links to consumers of a device
1849 * @dev: Device that needs to be linked to its consumers
1851 * This function looks at all the consumer fwnodes of @dev and creates device
1852 * links between the consumer device and @dev (supplier).
1854 * If the consumer device has not been added yet, then this function creates a
1855 * SYNC_STATE_ONLY link between @dev (supplier) and the closest ancestor device
1856 * of the consumer fwnode. This is necessary to make sure @dev doesn't get a
1857 * sync_state() callback before the real consumer device gets to be added and
1860 * Once device links are created from the real consumer to @dev (supplier), the
1861 * fwnode links are deleted.
1863 static void __fw_devlink_link_to_consumers(struct device *dev)
1865 struct fwnode_handle *fwnode = dev->fwnode;
1866 struct fwnode_link *link, *tmp;
1868 list_for_each_entry_safe(link, tmp, &fwnode->consumers, s_hook) {
1869 u32 dl_flags = fw_devlink_get_flags();
1870 struct device *con_dev;
1871 bool own_link = true;
1874 con_dev = get_dev_from_fwnode(link->consumer);
1876 * If consumer device is not available yet, make a "proxy"
1877 * SYNC_STATE_ONLY link from the consumer's parent device to
1878 * the supplier device. This is necessary to make sure the
1879 * supplier doesn't get a sync_state() callback before the real
1880 * consumer can create a device link to the supplier.
1882 * This proxy link step is needed to handle the case where the
1883 * consumer's parent device is added before the supplier.
1886 con_dev = fwnode_get_next_parent_dev(link->consumer);
1888 * However, if the consumer's parent device is also the
1889 * parent of the supplier, don't create a
1890 * consumer-supplier link from the parent to its child
1891 * device. Such a dependency is impossible.
1894 fwnode_is_ancestor_of(con_dev->fwnode, fwnode)) {
1895 put_device(con_dev);
1899 dl_flags = FW_DEVLINK_FLAGS_PERMISSIVE;
1906 ret = fw_devlink_create_devlink(con_dev, fwnode, dl_flags);
1907 put_device(con_dev);
1908 if (!own_link || ret == -EAGAIN)
1911 __fwnode_link_del(link);
1916 * __fw_devlink_link_to_suppliers - Create device links to suppliers of a device
1917 * @dev: The consumer device that needs to be linked to its suppliers
1918 * @fwnode: Root of the fwnode tree that is used to create device links
1920 * This function looks at all the supplier fwnodes of fwnode tree rooted at
1921 * @fwnode and creates device links between @dev (consumer) and all the
1922 * supplier devices of the entire fwnode tree at @fwnode.
1924 * The function creates normal (non-SYNC_STATE_ONLY) device links between @dev
1925 * and the real suppliers of @dev. Once these device links are created, the
1926 * fwnode links are deleted. When such device links are successfully created,
1927 * this function is called recursively on those supplier devices. This is
1928 * needed to detect and break some invalid cycles in fwnode links. See
1929 * fw_devlink_create_devlink() for more details.
1931 * In addition, it also looks at all the suppliers of the entire fwnode tree
1932 * because some of the child devices of @dev that have not been added yet
1933 * (because @dev hasn't probed) might already have their suppliers added to
1934 * driver core. So, this function creates SYNC_STATE_ONLY device links between
1935 * @dev (consumer) and these suppliers to make sure they don't execute their
1936 * sync_state() callbacks before these child devices have a chance to create
1937 * their device links. The fwnode links that correspond to the child devices
1938 * aren't delete because they are needed later to create the device links
1939 * between the real consumer and supplier devices.
1941 static void __fw_devlink_link_to_suppliers(struct device *dev,
1942 struct fwnode_handle *fwnode)
1944 bool own_link = (dev->fwnode == fwnode);
1945 struct fwnode_link *link, *tmp;
1946 struct fwnode_handle *child = NULL;
1950 dl_flags = fw_devlink_get_flags();
1952 dl_flags = FW_DEVLINK_FLAGS_PERMISSIVE;
1954 list_for_each_entry_safe(link, tmp, &fwnode->suppliers, c_hook) {
1956 struct device *sup_dev;
1957 struct fwnode_handle *sup = link->supplier;
1959 ret = fw_devlink_create_devlink(dev, sup, dl_flags);
1960 if (!own_link || ret == -EAGAIN)
1963 __fwnode_link_del(link);
1965 /* If no device link was created, nothing more to do. */
1970 * If a device link was successfully created to a supplier, we
1971 * now need to try and link the supplier to all its suppliers.
1973 * This is needed to detect and delete false dependencies in
1974 * fwnode links that haven't been converted to a device link
1975 * yet. See comments in fw_devlink_create_devlink() for more
1976 * details on the false dependency.
1978 * Without deleting these false dependencies, some devices will
1979 * never probe because they'll keep waiting for their false
1980 * dependency fwnode links to be converted to device links.
1982 sup_dev = get_dev_from_fwnode(sup);
1983 __fw_devlink_link_to_suppliers(sup_dev, sup_dev->fwnode);
1984 put_device(sup_dev);
1988 * Make "proxy" SYNC_STATE_ONLY device links to represent the needs of
1989 * all the descendants. This proxy link step is needed to handle the
1990 * case where the supplier is added before the consumer's parent device
1993 while ((child = fwnode_get_next_available_child_node(fwnode, child)))
1994 __fw_devlink_link_to_suppliers(dev, child);
1997 static void fw_devlink_link_device(struct device *dev)
1999 struct fwnode_handle *fwnode = dev->fwnode;
2001 if (!fw_devlink_flags)
2004 fw_devlink_parse_fwtree(fwnode);
2006 mutex_lock(&fwnode_link_lock);
2007 __fw_devlink_link_to_consumers(dev);
2008 __fw_devlink_link_to_suppliers(dev, fwnode);
2009 mutex_unlock(&fwnode_link_lock);
2012 /* Device links support end. */
2014 int (*platform_notify)(struct device *dev) = NULL;
2015 int (*platform_notify_remove)(struct device *dev) = NULL;
2016 static struct kobject *dev_kobj;
2017 struct kobject *sysfs_dev_char_kobj;
2018 struct kobject *sysfs_dev_block_kobj;
2020 static DEFINE_MUTEX(device_hotplug_lock);
2022 void lock_device_hotplug(void)
2024 mutex_lock(&device_hotplug_lock);
2027 void unlock_device_hotplug(void)
2029 mutex_unlock(&device_hotplug_lock);
2032 int lock_device_hotplug_sysfs(void)
2034 if (mutex_trylock(&device_hotplug_lock))
2037 /* Avoid busy looping (5 ms of sleep should do). */
2039 return restart_syscall();
2043 static inline int device_is_not_partition(struct device *dev)
2045 return !(dev->type == &part_type);
2048 static inline int device_is_not_partition(struct device *dev)
2054 static void device_platform_notify(struct device *dev)
2056 acpi_device_notify(dev);
2058 software_node_notify(dev);
2060 if (platform_notify)
2061 platform_notify(dev);
2064 static void device_platform_notify_remove(struct device *dev)
2066 acpi_device_notify_remove(dev);
2068 software_node_notify_remove(dev);
2070 if (platform_notify_remove)
2071 platform_notify_remove(dev);
2075 * dev_driver_string - Return a device's driver name, if at all possible
2076 * @dev: struct device to get the name of
2078 * Will return the device's driver's name if it is bound to a device. If
2079 * the device is not bound to a driver, it will return the name of the bus
2080 * it is attached to. If it is not attached to a bus either, an empty
2081 * string will be returned.
2083 const char *dev_driver_string(const struct device *dev)
2085 struct device_driver *drv;
2087 /* dev->driver can change to NULL underneath us because of unbinding,
2088 * so be careful about accessing it. dev->bus and dev->class should
2089 * never change once they are set, so they don't need special care.
2091 drv = READ_ONCE(dev->driver);
2092 return drv ? drv->name : dev_bus_name(dev);
2094 EXPORT_SYMBOL(dev_driver_string);
2096 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
2098 static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
2101 struct device_attribute *dev_attr = to_dev_attr(attr);
2102 struct device *dev = kobj_to_dev(kobj);
2106 ret = dev_attr->show(dev, dev_attr, buf);
2107 if (ret >= (ssize_t)PAGE_SIZE) {
2108 printk("dev_attr_show: %pS returned bad count\n",
2114 static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
2115 const char *buf, size_t count)
2117 struct device_attribute *dev_attr = to_dev_attr(attr);
2118 struct device *dev = kobj_to_dev(kobj);
2121 if (dev_attr->store)
2122 ret = dev_attr->store(dev, dev_attr, buf, count);
2126 static const struct sysfs_ops dev_sysfs_ops = {
2127 .show = dev_attr_show,
2128 .store = dev_attr_store,
2131 #define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr)
2133 ssize_t device_store_ulong(struct device *dev,
2134 struct device_attribute *attr,
2135 const char *buf, size_t size)
2137 struct dev_ext_attribute *ea = to_ext_attr(attr);
2141 ret = kstrtoul(buf, 0, &new);
2144 *(unsigned long *)(ea->var) = new;
2145 /* Always return full write size even if we didn't consume all */
2148 EXPORT_SYMBOL_GPL(device_store_ulong);
2150 ssize_t device_show_ulong(struct device *dev,
2151 struct device_attribute *attr,
2154 struct dev_ext_attribute *ea = to_ext_attr(attr);
2155 return sysfs_emit(buf, "%lx\n", *(unsigned long *)(ea->var));
2157 EXPORT_SYMBOL_GPL(device_show_ulong);
2159 ssize_t device_store_int(struct device *dev,
2160 struct device_attribute *attr,
2161 const char *buf, size_t size)
2163 struct dev_ext_attribute *ea = to_ext_attr(attr);
2167 ret = kstrtol(buf, 0, &new);
2171 if (new > INT_MAX || new < INT_MIN)
2173 *(int *)(ea->var) = new;
2174 /* Always return full write size even if we didn't consume all */
2177 EXPORT_SYMBOL_GPL(device_store_int);
2179 ssize_t device_show_int(struct device *dev,
2180 struct device_attribute *attr,
2183 struct dev_ext_attribute *ea = to_ext_attr(attr);
2185 return sysfs_emit(buf, "%d\n", *(int *)(ea->var));
2187 EXPORT_SYMBOL_GPL(device_show_int);
2189 ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
2190 const char *buf, size_t size)
2192 struct dev_ext_attribute *ea = to_ext_attr(attr);
2194 if (strtobool(buf, ea->var) < 0)
2199 EXPORT_SYMBOL_GPL(device_store_bool);
2201 ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
2204 struct dev_ext_attribute *ea = to_ext_attr(attr);
2206 return sysfs_emit(buf, "%d\n", *(bool *)(ea->var));
2208 EXPORT_SYMBOL_GPL(device_show_bool);
2211 * device_release - free device structure.
2212 * @kobj: device's kobject.
2214 * This is called once the reference count for the object
2215 * reaches 0. We forward the call to the device's release
2216 * method, which should handle actually freeing the structure.
2218 static void device_release(struct kobject *kobj)
2220 struct device *dev = kobj_to_dev(kobj);
2221 struct device_private *p = dev->p;
2224 * Some platform devices are driven without driver attached
2225 * and managed resources may have been acquired. Make sure
2226 * all resources are released.
2228 * Drivers still can add resources into device after device
2229 * is deleted but alive, so release devres here to avoid
2230 * possible memory leak.
2232 devres_release_all(dev);
2234 kfree(dev->dma_range_map);
2238 else if (dev->type && dev->type->release)
2239 dev->type->release(dev);
2240 else if (dev->class && dev->class->dev_release)
2241 dev->class->dev_release(dev);
2243 WARN(1, KERN_ERR "Device '%s' does not have a release() function, it is broken and must be fixed. See Documentation/core-api/kobject.rst.\n",
2248 static const void *device_namespace(struct kobject *kobj)
2250 struct device *dev = kobj_to_dev(kobj);
2251 const void *ns = NULL;
2253 if (dev->class && dev->class->ns_type)
2254 ns = dev->class->namespace(dev);
2259 static void device_get_ownership(struct kobject *kobj, kuid_t *uid, kgid_t *gid)
2261 struct device *dev = kobj_to_dev(kobj);
2263 if (dev->class && dev->class->get_ownership)
2264 dev->class->get_ownership(dev, uid, gid);
2267 static struct kobj_type device_ktype = {
2268 .release = device_release,
2269 .sysfs_ops = &dev_sysfs_ops,
2270 .namespace = device_namespace,
2271 .get_ownership = device_get_ownership,
2275 static int dev_uevent_filter(struct kobject *kobj)
2277 const struct kobj_type *ktype = get_ktype(kobj);
2279 if (ktype == &device_ktype) {
2280 struct device *dev = kobj_to_dev(kobj);
2289 static const char *dev_uevent_name(struct kobject *kobj)
2291 struct device *dev = kobj_to_dev(kobj);
2294 return dev->bus->name;
2296 return dev->class->name;
2300 static int dev_uevent(struct kobject *kobj, struct kobj_uevent_env *env)
2302 struct device *dev = kobj_to_dev(kobj);
2305 /* add device node properties if present */
2306 if (MAJOR(dev->devt)) {
2310 kuid_t uid = GLOBAL_ROOT_UID;
2311 kgid_t gid = GLOBAL_ROOT_GID;
2313 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
2314 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
2315 name = device_get_devnode(dev, &mode, &uid, &gid, &tmp);
2317 add_uevent_var(env, "DEVNAME=%s", name);
2319 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
2320 if (!uid_eq(uid, GLOBAL_ROOT_UID))
2321 add_uevent_var(env, "DEVUID=%u", from_kuid(&init_user_ns, uid));
2322 if (!gid_eq(gid, GLOBAL_ROOT_GID))
2323 add_uevent_var(env, "DEVGID=%u", from_kgid(&init_user_ns, gid));
2328 if (dev->type && dev->type->name)
2329 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
2332 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
2334 /* Add common DT information about the device */
2335 of_device_uevent(dev, env);
2337 /* have the bus specific function add its stuff */
2338 if (dev->bus && dev->bus->uevent) {
2339 retval = dev->bus->uevent(dev, env);
2341 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
2342 dev_name(dev), __func__, retval);
2345 /* have the class specific function add its stuff */
2346 if (dev->class && dev->class->dev_uevent) {
2347 retval = dev->class->dev_uevent(dev, env);
2349 pr_debug("device: '%s': %s: class uevent() "
2350 "returned %d\n", dev_name(dev),
2354 /* have the device type specific function add its stuff */
2355 if (dev->type && dev->type->uevent) {
2356 retval = dev->type->uevent(dev, env);
2358 pr_debug("device: '%s': %s: dev_type uevent() "
2359 "returned %d\n", dev_name(dev),
2366 static const struct kset_uevent_ops device_uevent_ops = {
2367 .filter = dev_uevent_filter,
2368 .name = dev_uevent_name,
2369 .uevent = dev_uevent,
2372 static ssize_t uevent_show(struct device *dev, struct device_attribute *attr,
2375 struct kobject *top_kobj;
2377 struct kobj_uevent_env *env = NULL;
2382 /* search the kset, the device belongs to */
2383 top_kobj = &dev->kobj;
2384 while (!top_kobj->kset && top_kobj->parent)
2385 top_kobj = top_kobj->parent;
2386 if (!top_kobj->kset)
2389 kset = top_kobj->kset;
2390 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
2393 /* respect filter */
2394 if (kset->uevent_ops && kset->uevent_ops->filter)
2395 if (!kset->uevent_ops->filter(&dev->kobj))
2398 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
2402 /* let the kset specific function add its keys */
2403 retval = kset->uevent_ops->uevent(&dev->kobj, env);
2407 /* copy keys to file */
2408 for (i = 0; i < env->envp_idx; i++)
2409 len += sysfs_emit_at(buf, len, "%s\n", env->envp[i]);
2415 static ssize_t uevent_store(struct device *dev, struct device_attribute *attr,
2416 const char *buf, size_t count)
2420 rc = kobject_synth_uevent(&dev->kobj, buf, count);
2423 dev_err(dev, "uevent: failed to send synthetic uevent\n");
2429 static DEVICE_ATTR_RW(uevent);
2431 static ssize_t online_show(struct device *dev, struct device_attribute *attr,
2437 val = !dev->offline;
2439 return sysfs_emit(buf, "%u\n", val);
2442 static ssize_t online_store(struct device *dev, struct device_attribute *attr,
2443 const char *buf, size_t count)
2448 ret = strtobool(buf, &val);
2452 ret = lock_device_hotplug_sysfs();
2456 ret = val ? device_online(dev) : device_offline(dev);
2457 unlock_device_hotplug();
2458 return ret < 0 ? ret : count;
2460 static DEVICE_ATTR_RW(online);
2462 static ssize_t removable_show(struct device *dev, struct device_attribute *attr,
2467 switch (dev->removable) {
2468 case DEVICE_REMOVABLE:
2477 return sysfs_emit(buf, "%s\n", loc);
2479 static DEVICE_ATTR_RO(removable);
2481 int device_add_groups(struct device *dev, const struct attribute_group **groups)
2483 return sysfs_create_groups(&dev->kobj, groups);
2485 EXPORT_SYMBOL_GPL(device_add_groups);
2487 void device_remove_groups(struct device *dev,
2488 const struct attribute_group **groups)
2490 sysfs_remove_groups(&dev->kobj, groups);
2492 EXPORT_SYMBOL_GPL(device_remove_groups);
2494 union device_attr_group_devres {
2495 const struct attribute_group *group;
2496 const struct attribute_group **groups;
2499 static int devm_attr_group_match(struct device *dev, void *res, void *data)
2501 return ((union device_attr_group_devres *)res)->group == data;
2504 static void devm_attr_group_remove(struct device *dev, void *res)
2506 union device_attr_group_devres *devres = res;
2507 const struct attribute_group *group = devres->group;
2509 dev_dbg(dev, "%s: removing group %p\n", __func__, group);
2510 sysfs_remove_group(&dev->kobj, group);
2513 static void devm_attr_groups_remove(struct device *dev, void *res)
2515 union device_attr_group_devres *devres = res;
2516 const struct attribute_group **groups = devres->groups;
2518 dev_dbg(dev, "%s: removing groups %p\n", __func__, groups);
2519 sysfs_remove_groups(&dev->kobj, groups);
2523 * devm_device_add_group - given a device, create a managed attribute group
2524 * @dev: The device to create the group for
2525 * @grp: The attribute group to create
2527 * This function creates a group for the first time. It will explicitly
2528 * warn and error if any of the attribute files being created already exist.
2530 * Returns 0 on success or error code on failure.
2532 int devm_device_add_group(struct device *dev, const struct attribute_group *grp)
2534 union device_attr_group_devres *devres;
2537 devres = devres_alloc(devm_attr_group_remove,
2538 sizeof(*devres), GFP_KERNEL);
2542 error = sysfs_create_group(&dev->kobj, grp);
2544 devres_free(devres);
2548 devres->group = grp;
2549 devres_add(dev, devres);
2552 EXPORT_SYMBOL_GPL(devm_device_add_group);
2555 * devm_device_remove_group: remove a managed group from a device
2556 * @dev: device to remove the group from
2557 * @grp: group to remove
2559 * This function removes a group of attributes from a device. The attributes
2560 * previously have to have been created for this group, otherwise it will fail.
2562 void devm_device_remove_group(struct device *dev,
2563 const struct attribute_group *grp)
2565 WARN_ON(devres_release(dev, devm_attr_group_remove,
2566 devm_attr_group_match,
2567 /* cast away const */ (void *)grp));
2569 EXPORT_SYMBOL_GPL(devm_device_remove_group);
2572 * devm_device_add_groups - create a bunch of managed attribute groups
2573 * @dev: The device to create the group for
2574 * @groups: The attribute groups to create, NULL terminated
2576 * This function creates a bunch of managed attribute groups. If an error
2577 * occurs when creating a group, all previously created groups will be
2578 * removed, unwinding everything back to the original state when this
2579 * function was called. It will explicitly warn and error if any of the
2580 * attribute files being created already exist.
2582 * Returns 0 on success or error code from sysfs_create_group on failure.
2584 int devm_device_add_groups(struct device *dev,
2585 const struct attribute_group **groups)
2587 union device_attr_group_devres *devres;
2590 devres = devres_alloc(devm_attr_groups_remove,
2591 sizeof(*devres), GFP_KERNEL);
2595 error = sysfs_create_groups(&dev->kobj, groups);
2597 devres_free(devres);
2601 devres->groups = groups;
2602 devres_add(dev, devres);
2605 EXPORT_SYMBOL_GPL(devm_device_add_groups);
2608 * devm_device_remove_groups - remove a list of managed groups
2610 * @dev: The device for the groups to be removed from
2611 * @groups: NULL terminated list of groups to be removed
2613 * If groups is not NULL, remove the specified groups from the device.
2615 void devm_device_remove_groups(struct device *dev,
2616 const struct attribute_group **groups)
2618 WARN_ON(devres_release(dev, devm_attr_groups_remove,
2619 devm_attr_group_match,
2620 /* cast away const */ (void *)groups));
2622 EXPORT_SYMBOL_GPL(devm_device_remove_groups);
2624 static int device_add_attrs(struct device *dev)
2626 struct class *class = dev->class;
2627 const struct device_type *type = dev->type;
2631 error = device_add_groups(dev, class->dev_groups);
2637 error = device_add_groups(dev, type->groups);
2639 goto err_remove_class_groups;
2642 error = device_add_groups(dev, dev->groups);
2644 goto err_remove_type_groups;
2646 if (device_supports_offline(dev) && !dev->offline_disabled) {
2647 error = device_create_file(dev, &dev_attr_online);
2649 goto err_remove_dev_groups;
2652 if (fw_devlink_flags && !fw_devlink_is_permissive() && dev->fwnode) {
2653 error = device_create_file(dev, &dev_attr_waiting_for_supplier);
2655 goto err_remove_dev_online;
2658 if (dev_removable_is_valid(dev)) {
2659 error = device_create_file(dev, &dev_attr_removable);
2661 goto err_remove_dev_waiting_for_supplier;
2664 if (dev_add_physical_location(dev)) {
2665 error = device_add_group(dev,
2666 &dev_attr_physical_location_group);
2668 goto err_remove_dev_removable;
2673 err_remove_dev_removable:
2674 device_remove_file(dev, &dev_attr_removable);
2675 err_remove_dev_waiting_for_supplier:
2676 device_remove_file(dev, &dev_attr_waiting_for_supplier);
2677 err_remove_dev_online:
2678 device_remove_file(dev, &dev_attr_online);
2679 err_remove_dev_groups:
2680 device_remove_groups(dev, dev->groups);
2681 err_remove_type_groups:
2683 device_remove_groups(dev, type->groups);
2684 err_remove_class_groups:
2686 device_remove_groups(dev, class->dev_groups);
2691 static void device_remove_attrs(struct device *dev)
2693 struct class *class = dev->class;
2694 const struct device_type *type = dev->type;
2696 if (dev->physical_location) {
2697 device_remove_group(dev, &dev_attr_physical_location_group);
2698 kfree(dev->physical_location);
2701 device_remove_file(dev, &dev_attr_removable);
2702 device_remove_file(dev, &dev_attr_waiting_for_supplier);
2703 device_remove_file(dev, &dev_attr_online);
2704 device_remove_groups(dev, dev->groups);
2707 device_remove_groups(dev, type->groups);
2710 device_remove_groups(dev, class->dev_groups);
2713 static ssize_t dev_show(struct device *dev, struct device_attribute *attr,
2716 return print_dev_t(buf, dev->devt);
2718 static DEVICE_ATTR_RO(dev);
2721 struct kset *devices_kset;
2724 * devices_kset_move_before - Move device in the devices_kset's list.
2725 * @deva: Device to move.
2726 * @devb: Device @deva should come before.
2728 static void devices_kset_move_before(struct device *deva, struct device *devb)
2732 pr_debug("devices_kset: Moving %s before %s\n",
2733 dev_name(deva), dev_name(devb));
2734 spin_lock(&devices_kset->list_lock);
2735 list_move_tail(&deva->kobj.entry, &devb->kobj.entry);
2736 spin_unlock(&devices_kset->list_lock);
2740 * devices_kset_move_after - Move device in the devices_kset's list.
2741 * @deva: Device to move
2742 * @devb: Device @deva should come after.
2744 static void devices_kset_move_after(struct device *deva, struct device *devb)
2748 pr_debug("devices_kset: Moving %s after %s\n",
2749 dev_name(deva), dev_name(devb));
2750 spin_lock(&devices_kset->list_lock);
2751 list_move(&deva->kobj.entry, &devb->kobj.entry);
2752 spin_unlock(&devices_kset->list_lock);
2756 * devices_kset_move_last - move the device to the end of devices_kset's list.
2757 * @dev: device to move
2759 void devices_kset_move_last(struct device *dev)
2763 pr_debug("devices_kset: Moving %s to end of list\n", dev_name(dev));
2764 spin_lock(&devices_kset->list_lock);
2765 list_move_tail(&dev->kobj.entry, &devices_kset->list);
2766 spin_unlock(&devices_kset->list_lock);
2770 * device_create_file - create sysfs attribute file for device.
2772 * @attr: device attribute descriptor.
2774 int device_create_file(struct device *dev,
2775 const struct device_attribute *attr)
2780 WARN(((attr->attr.mode & S_IWUGO) && !attr->store),
2781 "Attribute %s: write permission without 'store'\n",
2783 WARN(((attr->attr.mode & S_IRUGO) && !attr->show),
2784 "Attribute %s: read permission without 'show'\n",
2786 error = sysfs_create_file(&dev->kobj, &attr->attr);
2791 EXPORT_SYMBOL_GPL(device_create_file);
2794 * device_remove_file - remove sysfs attribute file.
2796 * @attr: device attribute descriptor.
2798 void device_remove_file(struct device *dev,
2799 const struct device_attribute *attr)
2802 sysfs_remove_file(&dev->kobj, &attr->attr);
2804 EXPORT_SYMBOL_GPL(device_remove_file);
2807 * device_remove_file_self - remove sysfs attribute file from its own method.
2809 * @attr: device attribute descriptor.
2811 * See kernfs_remove_self() for details.
2813 bool device_remove_file_self(struct device *dev,
2814 const struct device_attribute *attr)
2817 return sysfs_remove_file_self(&dev->kobj, &attr->attr);
2821 EXPORT_SYMBOL_GPL(device_remove_file_self);
2824 * device_create_bin_file - create sysfs binary attribute file for device.
2826 * @attr: device binary attribute descriptor.
2828 int device_create_bin_file(struct device *dev,
2829 const struct bin_attribute *attr)
2831 int error = -EINVAL;
2833 error = sysfs_create_bin_file(&dev->kobj, attr);
2836 EXPORT_SYMBOL_GPL(device_create_bin_file);
2839 * device_remove_bin_file - remove sysfs binary attribute file
2841 * @attr: device binary attribute descriptor.
2843 void device_remove_bin_file(struct device *dev,
2844 const struct bin_attribute *attr)
2847 sysfs_remove_bin_file(&dev->kobj, attr);
2849 EXPORT_SYMBOL_GPL(device_remove_bin_file);
2851 static void klist_children_get(struct klist_node *n)
2853 struct device_private *p = to_device_private_parent(n);
2854 struct device *dev = p->device;
2859 static void klist_children_put(struct klist_node *n)
2861 struct device_private *p = to_device_private_parent(n);
2862 struct device *dev = p->device;
2868 * device_initialize - init device structure.
2871 * This prepares the device for use by other layers by initializing
2873 * It is the first half of device_register(), if called by
2874 * that function, though it can also be called separately, so one
2875 * may use @dev's fields. In particular, get_device()/put_device()
2876 * may be used for reference counting of @dev after calling this
2879 * All fields in @dev must be initialized by the caller to 0, except
2880 * for those explicitly set to some other value. The simplest
2881 * approach is to use kzalloc() to allocate the structure containing
2884 * NOTE: Use put_device() to give up your reference instead of freeing
2885 * @dev directly once you have called this function.
2887 void device_initialize(struct device *dev)
2889 dev->kobj.kset = devices_kset;
2890 kobject_init(&dev->kobj, &device_ktype);
2891 INIT_LIST_HEAD(&dev->dma_pools);
2892 mutex_init(&dev->mutex);
2893 lockdep_set_novalidate_class(&dev->mutex);
2894 spin_lock_init(&dev->devres_lock);
2895 INIT_LIST_HEAD(&dev->devres_head);
2896 device_pm_init(dev);
2897 set_dev_node(dev, NUMA_NO_NODE);
2898 INIT_LIST_HEAD(&dev->links.consumers);
2899 INIT_LIST_HEAD(&dev->links.suppliers);
2900 INIT_LIST_HEAD(&dev->links.defer_sync);
2901 dev->links.status = DL_DEV_NO_DRIVER;
2902 #if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
2903 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
2904 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL)
2905 dev->dma_coherent = dma_default_coherent;
2907 #ifdef CONFIG_SWIOTLB
2908 dev->dma_io_tlb_mem = &io_tlb_default_mem;
2911 EXPORT_SYMBOL_GPL(device_initialize);
2913 struct kobject *virtual_device_parent(struct device *dev)
2915 static struct kobject *virtual_dir = NULL;
2918 virtual_dir = kobject_create_and_add("virtual",
2919 &devices_kset->kobj);
2925 struct kobject kobj;
2926 struct class *class;
2929 #define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
2931 static void class_dir_release(struct kobject *kobj)
2933 struct class_dir *dir = to_class_dir(kobj);
2938 struct kobj_ns_type_operations *class_dir_child_ns_type(struct kobject *kobj)
2940 struct class_dir *dir = to_class_dir(kobj);
2941 return dir->class->ns_type;
2944 static struct kobj_type class_dir_ktype = {
2945 .release = class_dir_release,
2946 .sysfs_ops = &kobj_sysfs_ops,
2947 .child_ns_type = class_dir_child_ns_type
2950 static struct kobject *
2951 class_dir_create_and_add(struct class *class, struct kobject *parent_kobj)
2953 struct class_dir *dir;
2956 dir = kzalloc(sizeof(*dir), GFP_KERNEL);
2958 return ERR_PTR(-ENOMEM);
2961 kobject_init(&dir->kobj, &class_dir_ktype);
2963 dir->kobj.kset = &class->p->glue_dirs;
2965 retval = kobject_add(&dir->kobj, parent_kobj, "%s", class->name);
2967 kobject_put(&dir->kobj);
2968 return ERR_PTR(retval);
2973 static DEFINE_MUTEX(gdp_mutex);
2975 static struct kobject *get_device_parent(struct device *dev,
2976 struct device *parent)
2979 struct kobject *kobj = NULL;
2980 struct kobject *parent_kobj;
2984 /* block disks show up in /sys/block */
2985 if (sysfs_deprecated && dev->class == &block_class) {
2986 if (parent && parent->class == &block_class)
2987 return &parent->kobj;
2988 return &block_class.p->subsys.kobj;
2993 * If we have no parent, we live in "virtual".
2994 * Class-devices with a non class-device as parent, live
2995 * in a "glue" directory to prevent namespace collisions.
2998 parent_kobj = virtual_device_parent(dev);
2999 else if (parent->class && !dev->class->ns_type)
3000 return &parent->kobj;
3002 parent_kobj = &parent->kobj;
3004 mutex_lock(&gdp_mutex);
3006 /* find our class-directory at the parent and reference it */
3007 spin_lock(&dev->class->p->glue_dirs.list_lock);
3008 list_for_each_entry(k, &dev->class->p->glue_dirs.list, entry)
3009 if (k->parent == parent_kobj) {
3010 kobj = kobject_get(k);
3013 spin_unlock(&dev->class->p->glue_dirs.list_lock);
3015 mutex_unlock(&gdp_mutex);
3019 /* or create a new class-directory at the parent device */
3020 k = class_dir_create_and_add(dev->class, parent_kobj);
3021 /* do not emit an uevent for this simple "glue" directory */
3022 mutex_unlock(&gdp_mutex);
3026 /* subsystems can specify a default root directory for their devices */
3027 if (!parent && dev->bus && dev->bus->dev_root)
3028 return &dev->bus->dev_root->kobj;
3031 return &parent->kobj;
3035 static inline bool live_in_glue_dir(struct kobject *kobj,
3038 if (!kobj || !dev->class ||
3039 kobj->kset != &dev->class->p->glue_dirs)
3044 static inline struct kobject *get_glue_dir(struct device *dev)
3046 return dev->kobj.parent;
3050 * kobject_has_children - Returns whether a kobject has children.
3051 * @kobj: the object to test
3053 * This will return whether a kobject has other kobjects as children.
3055 * It does NOT account for the presence of attribute files, only sub
3056 * directories. It also assumes there is no concurrent addition or
3057 * removal of such children, and thus relies on external locking.
3059 static inline bool kobject_has_children(struct kobject *kobj)
3061 WARN_ON_ONCE(kref_read(&kobj->kref) == 0);
3063 return kobj->sd && kobj->sd->dir.subdirs;
3067 * make sure cleaning up dir as the last step, we need to make
3068 * sure .release handler of kobject is run with holding the
3071 static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
3075 /* see if we live in a "glue" directory */
3076 if (!live_in_glue_dir(glue_dir, dev))
3079 mutex_lock(&gdp_mutex);
3081 * There is a race condition between removing glue directory
3082 * and adding a new device under the glue directory.
3087 * get_device_parent()
3088 * class_dir_create_and_add()
3089 * kobject_add_internal()
3090 * create_dir() // create glue_dir
3093 * get_device_parent()
3094 * kobject_get() // get glue_dir
3097 * cleanup_glue_dir()
3098 * kobject_del(glue_dir)
3101 * kobject_add_internal()
3102 * create_dir() // in glue_dir
3103 * sysfs_create_dir_ns()
3104 * kernfs_create_dir_ns(sd)
3106 * sysfs_remove_dir() // glue_dir->sd=NULL
3107 * sysfs_put() // free glue_dir->sd
3110 * kernfs_new_node(sd)
3111 * kernfs_get(glue_dir)
3115 * Before CPU1 remove last child device under glue dir, if CPU2 add
3116 * a new device under glue dir, the glue_dir kobject reference count
3117 * will be increase to 2 in kobject_get(k). And CPU2 has been called
3118 * kernfs_create_dir_ns(). Meanwhile, CPU1 call sysfs_remove_dir()
3119 * and sysfs_put(). This result in glue_dir->sd is freed.
3121 * Then the CPU2 will see a stale "empty" but still potentially used
3122 * glue dir around in kernfs_new_node().
3124 * In order to avoid this happening, we also should make sure that
3125 * kernfs_node for glue_dir is released in CPU1 only when refcount
3126 * for glue_dir kobj is 1.
3128 ref = kref_read(&glue_dir->kref);
3129 if (!kobject_has_children(glue_dir) && !--ref)
3130 kobject_del(glue_dir);
3131 kobject_put(glue_dir);
3132 mutex_unlock(&gdp_mutex);
3135 static int device_add_class_symlinks(struct device *dev)
3137 struct device_node *of_node = dev_of_node(dev);
3141 error = sysfs_create_link(&dev->kobj, of_node_kobj(of_node), "of_node");
3143 dev_warn(dev, "Error %d creating of_node link\n",error);
3144 /* An error here doesn't warrant bringing down the device */
3150 error = sysfs_create_link(&dev->kobj,
3151 &dev->class->p->subsys.kobj,
3156 if (dev->parent && device_is_not_partition(dev)) {
3157 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
3164 /* /sys/block has directories and does not need symlinks */
3165 if (sysfs_deprecated && dev->class == &block_class)
3169 /* link in the class directory pointing to the device */
3170 error = sysfs_create_link(&dev->class->p->subsys.kobj,
3171 &dev->kobj, dev_name(dev));
3178 sysfs_remove_link(&dev->kobj, "device");
3181 sysfs_remove_link(&dev->kobj, "subsystem");
3183 sysfs_remove_link(&dev->kobj, "of_node");
3187 static void device_remove_class_symlinks(struct device *dev)
3189 if (dev_of_node(dev))
3190 sysfs_remove_link(&dev->kobj, "of_node");
3195 if (dev->parent && device_is_not_partition(dev))
3196 sysfs_remove_link(&dev->kobj, "device");
3197 sysfs_remove_link(&dev->kobj, "subsystem");
3199 if (sysfs_deprecated && dev->class == &block_class)
3202 sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev));
3206 * dev_set_name - set a device name
3208 * @fmt: format string for the device's name
3210 int dev_set_name(struct device *dev, const char *fmt, ...)
3215 va_start(vargs, fmt);
3216 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
3220 EXPORT_SYMBOL_GPL(dev_set_name);
3223 * device_to_dev_kobj - select a /sys/dev/ directory for the device
3226 * By default we select char/ for new entries. Setting class->dev_obj
3227 * to NULL prevents an entry from being created. class->dev_kobj must
3228 * be set (or cleared) before any devices are registered to the class
3229 * otherwise device_create_sys_dev_entry() and
3230 * device_remove_sys_dev_entry() will disagree about the presence of
3233 static struct kobject *device_to_dev_kobj(struct device *dev)
3235 struct kobject *kobj;
3238 kobj = dev->class->dev_kobj;
3240 kobj = sysfs_dev_char_kobj;
3245 static int device_create_sys_dev_entry(struct device *dev)
3247 struct kobject *kobj = device_to_dev_kobj(dev);
3252 format_dev_t(devt_str, dev->devt);
3253 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
3259 static void device_remove_sys_dev_entry(struct device *dev)
3261 struct kobject *kobj = device_to_dev_kobj(dev);
3265 format_dev_t(devt_str, dev->devt);
3266 sysfs_remove_link(kobj, devt_str);
3270 static int device_private_init(struct device *dev)
3272 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
3275 dev->p->device = dev;
3276 klist_init(&dev->p->klist_children, klist_children_get,
3277 klist_children_put);
3278 INIT_LIST_HEAD(&dev->p->deferred_probe);
3283 * device_add - add device to device hierarchy.
3286 * This is part 2 of device_register(), though may be called
3287 * separately _iff_ device_initialize() has been called separately.
3289 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
3290 * to the global and sibling lists for the device, then
3291 * adds it to the other relevant subsystems of the driver model.
3293 * Do not call this routine or device_register() more than once for
3294 * any device structure. The driver model core is not designed to work
3295 * with devices that get unregistered and then spring back to life.
3296 * (Among other things, it's very hard to guarantee that all references
3297 * to the previous incarnation of @dev have been dropped.) Allocate
3298 * and register a fresh new struct device instead.
3300 * NOTE: _Never_ directly free @dev after calling this function, even
3301 * if it returned an error! Always use put_device() to give up your
3302 * reference instead.
3304 * Rule of thumb is: if device_add() succeeds, you should call
3305 * device_del() when you want to get rid of it. If device_add() has
3306 * *not* succeeded, use *only* put_device() to drop the reference
3309 int device_add(struct device *dev)
3311 struct device *parent;
3312 struct kobject *kobj;
3313 struct class_interface *class_intf;
3314 int error = -EINVAL;
3315 struct kobject *glue_dir = NULL;
3317 dev = get_device(dev);
3322 error = device_private_init(dev);
3328 * for statically allocated devices, which should all be converted
3329 * some day, we need to initialize the name. We prevent reading back
3330 * the name, and force the use of dev_name()
3332 if (dev->init_name) {
3333 dev_set_name(dev, "%s", dev->init_name);
3334 dev->init_name = NULL;
3337 /* subsystems can specify simple device enumeration */
3338 if (!dev_name(dev) && dev->bus && dev->bus->dev_name)
3339 dev_set_name(dev, "%s%u", dev->bus->dev_name, dev->id);
3341 if (!dev_name(dev)) {
3346 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
3348 parent = get_device(dev->parent);
3349 kobj = get_device_parent(dev, parent);
3351 error = PTR_ERR(kobj);
3355 dev->kobj.parent = kobj;
3357 /* use parent numa_node */
3358 if (parent && (dev_to_node(dev) == NUMA_NO_NODE))
3359 set_dev_node(dev, dev_to_node(parent));
3361 /* first, register with generic layer. */
3362 /* we require the name to be set before, and pass NULL */
3363 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
3365 glue_dir = get_glue_dir(dev);
3369 /* notify platform of device entry */
3370 device_platform_notify(dev);
3372 error = device_create_file(dev, &dev_attr_uevent);
3376 error = device_add_class_symlinks(dev);
3379 error = device_add_attrs(dev);
3382 error = bus_add_device(dev);
3385 error = dpm_sysfs_add(dev);
3390 if (MAJOR(dev->devt)) {
3391 error = device_create_file(dev, &dev_attr_dev);
3395 error = device_create_sys_dev_entry(dev);
3399 devtmpfs_create_node(dev);
3402 /* Notify clients of device addition. This call must come
3403 * after dpm_sysfs_add() and before kobject_uevent().
3406 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
3407 BUS_NOTIFY_ADD_DEVICE, dev);
3409 kobject_uevent(&dev->kobj, KOBJ_ADD);
3412 * Check if any of the other devices (consumers) have been waiting for
3413 * this device (supplier) to be added so that they can create a device
3416 * This needs to happen after device_pm_add() because device_link_add()
3417 * requires the supplier be registered before it's called.
3419 * But this also needs to happen before bus_probe_device() to make sure
3420 * waiting consumers can link to it before the driver is bound to the
3421 * device and the driver sync_state callback is called for this device.
3423 if (dev->fwnode && !dev->fwnode->dev) {
3424 dev->fwnode->dev = dev;
3425 fw_devlink_link_device(dev);
3428 bus_probe_device(dev);
3431 * If all driver registration is done and a newly added device doesn't
3432 * match with any driver, don't block its consumers from probing in
3433 * case the consumer device is able to operate without this supplier.
3435 if (dev->fwnode && fw_devlink_drv_reg_done && !dev->can_match)
3436 fw_devlink_unblock_consumers(dev);
3439 klist_add_tail(&dev->p->knode_parent,
3440 &parent->p->klist_children);
3443 mutex_lock(&dev->class->p->mutex);
3444 /* tie the class to the device */
3445 klist_add_tail(&dev->p->knode_class,
3446 &dev->class->p->klist_devices);
3448 /* notify any interfaces that the device is here */
3449 list_for_each_entry(class_intf,
3450 &dev->class->p->interfaces, node)
3451 if (class_intf->add_dev)
3452 class_intf->add_dev(dev, class_intf);
3453 mutex_unlock(&dev->class->p->mutex);
3459 if (MAJOR(dev->devt))
3460 device_remove_file(dev, &dev_attr_dev);
3462 device_pm_remove(dev);
3463 dpm_sysfs_remove(dev);
3465 bus_remove_device(dev);
3467 device_remove_attrs(dev);
3469 device_remove_class_symlinks(dev);
3471 device_remove_file(dev, &dev_attr_uevent);
3473 device_platform_notify_remove(dev);
3474 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
3475 glue_dir = get_glue_dir(dev);
3476 kobject_del(&dev->kobj);
3478 cleanup_glue_dir(dev, glue_dir);
3486 EXPORT_SYMBOL_GPL(device_add);
3489 * device_register - register a device with the system.
3490 * @dev: pointer to the device structure
3492 * This happens in two clean steps - initialize the device
3493 * and add it to the system. The two steps can be called
3494 * separately, but this is the easiest and most common.
3495 * I.e. you should only call the two helpers separately if
3496 * have a clearly defined need to use and refcount the device
3497 * before it is added to the hierarchy.
3499 * For more information, see the kerneldoc for device_initialize()
3502 * NOTE: _Never_ directly free @dev after calling this function, even
3503 * if it returned an error! Always use put_device() to give up the
3504 * reference initialized in this function instead.
3506 int device_register(struct device *dev)
3508 device_initialize(dev);
3509 return device_add(dev);
3511 EXPORT_SYMBOL_GPL(device_register);
3514 * get_device - increment reference count for device.
3517 * This simply forwards the call to kobject_get(), though
3518 * we do take care to provide for the case that we get a NULL
3519 * pointer passed in.
3521 struct device *get_device(struct device *dev)
3523 return dev ? kobj_to_dev(kobject_get(&dev->kobj)) : NULL;
3525 EXPORT_SYMBOL_GPL(get_device);
3528 * put_device - decrement reference count.
3529 * @dev: device in question.
3531 void put_device(struct device *dev)
3533 /* might_sleep(); */
3535 kobject_put(&dev->kobj);
3537 EXPORT_SYMBOL_GPL(put_device);
3539 bool kill_device(struct device *dev)
3542 * Require the device lock and set the "dead" flag to guarantee that
3543 * the update behavior is consistent with the other bitfields near
3544 * it and that we cannot have an asynchronous probe routine trying
3545 * to run while we are tearing out the bus/class/sysfs from
3546 * underneath the device.
3548 device_lock_assert(dev);
3552 dev->p->dead = true;
3555 EXPORT_SYMBOL_GPL(kill_device);
3558 * device_del - delete device from system.
3561 * This is the first part of the device unregistration
3562 * sequence. This removes the device from the lists we control
3563 * from here, has it removed from the other driver model
3564 * subsystems it was added to in device_add(), and removes it
3565 * from the kobject hierarchy.
3567 * NOTE: this should be called manually _iff_ device_add() was
3568 * also called manually.
3570 void device_del(struct device *dev)
3572 struct device *parent = dev->parent;
3573 struct kobject *glue_dir = NULL;
3574 struct class_interface *class_intf;
3575 unsigned int noio_flag;
3581 if (dev->fwnode && dev->fwnode->dev == dev)
3582 dev->fwnode->dev = NULL;
3584 /* Notify clients of device removal. This call must come
3585 * before dpm_sysfs_remove().
3587 noio_flag = memalloc_noio_save();
3589 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
3590 BUS_NOTIFY_DEL_DEVICE, dev);
3592 dpm_sysfs_remove(dev);
3594 klist_del(&dev->p->knode_parent);
3595 if (MAJOR(dev->devt)) {
3596 devtmpfs_delete_node(dev);
3597 device_remove_sys_dev_entry(dev);
3598 device_remove_file(dev, &dev_attr_dev);
3601 device_remove_class_symlinks(dev);
3603 mutex_lock(&dev->class->p->mutex);
3604 /* notify any interfaces that the device is now gone */
3605 list_for_each_entry(class_intf,
3606 &dev->class->p->interfaces, node)
3607 if (class_intf->remove_dev)
3608 class_intf->remove_dev(dev, class_intf);
3609 /* remove the device from the class list */
3610 klist_del(&dev->p->knode_class);
3611 mutex_unlock(&dev->class->p->mutex);
3613 device_remove_file(dev, &dev_attr_uevent);
3614 device_remove_attrs(dev);
3615 bus_remove_device(dev);
3616 device_pm_remove(dev);
3617 driver_deferred_probe_del(dev);
3618 device_platform_notify_remove(dev);
3619 device_links_purge(dev);
3622 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
3623 BUS_NOTIFY_REMOVED_DEVICE, dev);
3624 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
3625 glue_dir = get_glue_dir(dev);
3626 kobject_del(&dev->kobj);
3627 cleanup_glue_dir(dev, glue_dir);
3628 memalloc_noio_restore(noio_flag);
3631 EXPORT_SYMBOL_GPL(device_del);
3634 * device_unregister - unregister device from system.
3635 * @dev: device going away.
3637 * We do this in two parts, like we do device_register(). First,
3638 * we remove it from all the subsystems with device_del(), then
3639 * we decrement the reference count via put_device(). If that
3640 * is the final reference count, the device will be cleaned up
3641 * via device_release() above. Otherwise, the structure will
3642 * stick around until the final reference to the device is dropped.
3644 void device_unregister(struct device *dev)
3646 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
3650 EXPORT_SYMBOL_GPL(device_unregister);
3652 static struct device *prev_device(struct klist_iter *i)
3654 struct klist_node *n = klist_prev(i);
3655 struct device *dev = NULL;
3656 struct device_private *p;
3659 p = to_device_private_parent(n);
3665 static struct device *next_device(struct klist_iter *i)
3667 struct klist_node *n = klist_next(i);
3668 struct device *dev = NULL;
3669 struct device_private *p;
3672 p = to_device_private_parent(n);
3679 * device_get_devnode - path of device node file
3681 * @mode: returned file access mode
3682 * @uid: returned file owner
3683 * @gid: returned file group
3684 * @tmp: possibly allocated string
3686 * Return the relative path of a possible device node.
3687 * Non-default names may need to allocate a memory to compose
3688 * a name. This memory is returned in tmp and needs to be
3689 * freed by the caller.
3691 const char *device_get_devnode(struct device *dev,
3692 umode_t *mode, kuid_t *uid, kgid_t *gid,
3699 /* the device type may provide a specific name */
3700 if (dev->type && dev->type->devnode)
3701 *tmp = dev->type->devnode(dev, mode, uid, gid);
3705 /* the class may provide a specific name */
3706 if (dev->class && dev->class->devnode)
3707 *tmp = dev->class->devnode(dev, mode);
3711 /* return name without allocation, tmp == NULL */
3712 if (strchr(dev_name(dev), '!') == NULL)
3713 return dev_name(dev);
3715 /* replace '!' in the name with '/' */
3716 s = kstrdup(dev_name(dev), GFP_KERNEL);
3719 strreplace(s, '!', '/');
3724 * device_for_each_child - device child iterator.
3725 * @parent: parent struct device.
3726 * @fn: function to be called for each device.
3727 * @data: data for the callback.
3729 * Iterate over @parent's child devices, and call @fn for each,
3732 * We check the return of @fn each time. If it returns anything
3733 * other than 0, we break out and return that value.
3735 int device_for_each_child(struct device *parent, void *data,
3736 int (*fn)(struct device *dev, void *data))
3738 struct klist_iter i;
3739 struct device *child;
3745 klist_iter_init(&parent->p->klist_children, &i);
3746 while (!error && (child = next_device(&i)))
3747 error = fn(child, data);
3748 klist_iter_exit(&i);
3751 EXPORT_SYMBOL_GPL(device_for_each_child);
3754 * device_for_each_child_reverse - device child iterator in reversed order.
3755 * @parent: parent struct device.
3756 * @fn: function to be called for each device.
3757 * @data: data for the callback.
3759 * Iterate over @parent's child devices, and call @fn for each,
3762 * We check the return of @fn each time. If it returns anything
3763 * other than 0, we break out and return that value.
3765 int device_for_each_child_reverse(struct device *parent, void *data,
3766 int (*fn)(struct device *dev, void *data))
3768 struct klist_iter i;
3769 struct device *child;
3775 klist_iter_init(&parent->p->klist_children, &i);
3776 while ((child = prev_device(&i)) && !error)
3777 error = fn(child, data);
3778 klist_iter_exit(&i);
3781 EXPORT_SYMBOL_GPL(device_for_each_child_reverse);
3784 * device_find_child - device iterator for locating a particular device.
3785 * @parent: parent struct device
3786 * @match: Callback function to check device
3787 * @data: Data to pass to match function
3789 * This is similar to the device_for_each_child() function above, but it
3790 * returns a reference to a device that is 'found' for later use, as
3791 * determined by the @match callback.
3793 * The callback should return 0 if the device doesn't match and non-zero
3794 * if it does. If the callback returns non-zero and a reference to the
3795 * current device can be obtained, this function will return to the caller
3796 * and not iterate over any more devices.
3798 * NOTE: you will need to drop the reference with put_device() after use.
3800 struct device *device_find_child(struct device *parent, void *data,
3801 int (*match)(struct device *dev, void *data))
3803 struct klist_iter i;
3804 struct device *child;
3809 klist_iter_init(&parent->p->klist_children, &i);
3810 while ((child = next_device(&i)))
3811 if (match(child, data) && get_device(child))
3813 klist_iter_exit(&i);
3816 EXPORT_SYMBOL_GPL(device_find_child);
3819 * device_find_child_by_name - device iterator for locating a child device.
3820 * @parent: parent struct device
3821 * @name: name of the child device
3823 * This is similar to the device_find_child() function above, but it
3824 * returns a reference to a device that has the name @name.
3826 * NOTE: you will need to drop the reference with put_device() after use.
3828 struct device *device_find_child_by_name(struct device *parent,
3831 struct klist_iter i;
3832 struct device *child;
3837 klist_iter_init(&parent->p->klist_children, &i);
3838 while ((child = next_device(&i)))
3839 if (sysfs_streq(dev_name(child), name) && get_device(child))
3841 klist_iter_exit(&i);
3844 EXPORT_SYMBOL_GPL(device_find_child_by_name);
3846 int __init devices_init(void)
3848 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
3851 dev_kobj = kobject_create_and_add("dev", NULL);
3854 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
3855 if (!sysfs_dev_block_kobj)
3856 goto block_kobj_err;
3857 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
3858 if (!sysfs_dev_char_kobj)
3864 kobject_put(sysfs_dev_block_kobj);
3866 kobject_put(dev_kobj);
3868 kset_unregister(devices_kset);
3872 static int device_check_offline(struct device *dev, void *not_used)
3876 ret = device_for_each_child(dev, NULL, device_check_offline);
3880 return device_supports_offline(dev) && !dev->offline ? -EBUSY : 0;
3884 * device_offline - Prepare the device for hot-removal.
3885 * @dev: Device to be put offline.
3887 * Execute the device bus type's .offline() callback, if present, to prepare
3888 * the device for a subsequent hot-removal. If that succeeds, the device must
3889 * not be used until either it is removed or its bus type's .online() callback
3892 * Call under device_hotplug_lock.
3894 int device_offline(struct device *dev)
3898 if (dev->offline_disabled)
3901 ret = device_for_each_child(dev, NULL, device_check_offline);
3906 if (device_supports_offline(dev)) {
3910 ret = dev->bus->offline(dev);
3912 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
3913 dev->offline = true;
3923 * device_online - Put the device back online after successful device_offline().
3924 * @dev: Device to be put back online.
3926 * If device_offline() has been successfully executed for @dev, but the device
3927 * has not been removed subsequently, execute its bus type's .online() callback
3928 * to indicate that the device can be used again.
3930 * Call under device_hotplug_lock.
3932 int device_online(struct device *dev)
3937 if (device_supports_offline(dev)) {
3939 ret = dev->bus->online(dev);
3941 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
3942 dev->offline = false;
3953 struct root_device {
3955 struct module *owner;
3958 static inline struct root_device *to_root_device(struct device *d)
3960 return container_of(d, struct root_device, dev);
3963 static void root_device_release(struct device *dev)
3965 kfree(to_root_device(dev));
3969 * __root_device_register - allocate and register a root device
3970 * @name: root device name
3971 * @owner: owner module of the root device, usually THIS_MODULE
3973 * This function allocates a root device and registers it
3974 * using device_register(). In order to free the returned
3975 * device, use root_device_unregister().
3977 * Root devices are dummy devices which allow other devices
3978 * to be grouped under /sys/devices. Use this function to
3979 * allocate a root device and then use it as the parent of
3980 * any device which should appear under /sys/devices/{name}
3982 * The /sys/devices/{name} directory will also contain a
3983 * 'module' symlink which points to the @owner directory
3986 * Returns &struct device pointer on success, or ERR_PTR() on error.
3988 * Note: You probably want to use root_device_register().
3990 struct device *__root_device_register(const char *name, struct module *owner)
3992 struct root_device *root;
3995 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
3997 return ERR_PTR(err);
3999 err = dev_set_name(&root->dev, "%s", name);
4002 return ERR_PTR(err);
4005 root->dev.release = root_device_release;
4007 err = device_register(&root->dev);
4009 put_device(&root->dev);
4010 return ERR_PTR(err);
4013 #ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
4015 struct module_kobject *mk = &owner->mkobj;
4017 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
4019 device_unregister(&root->dev);
4020 return ERR_PTR(err);
4022 root->owner = owner;
4028 EXPORT_SYMBOL_GPL(__root_device_register);
4031 * root_device_unregister - unregister and free a root device
4032 * @dev: device going away
4034 * This function unregisters and cleans up a device that was created by
4035 * root_device_register().
4037 void root_device_unregister(struct device *dev)
4039 struct root_device *root = to_root_device(dev);
4042 sysfs_remove_link(&root->dev.kobj, "module");
4044 device_unregister(dev);
4046 EXPORT_SYMBOL_GPL(root_device_unregister);
4049 static void device_create_release(struct device *dev)
4051 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
4055 static __printf(6, 0) struct device *
4056 device_create_groups_vargs(struct class *class, struct device *parent,
4057 dev_t devt, void *drvdata,
4058 const struct attribute_group **groups,
4059 const char *fmt, va_list args)
4061 struct device *dev = NULL;
4062 int retval = -ENODEV;
4064 if (class == NULL || IS_ERR(class))
4067 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
4073 device_initialize(dev);
4076 dev->parent = parent;
4077 dev->groups = groups;
4078 dev->release = device_create_release;
4079 dev_set_drvdata(dev, drvdata);
4081 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
4085 retval = device_add(dev);
4093 return ERR_PTR(retval);
4097 * device_create - creates a device and registers it with sysfs
4098 * @class: pointer to the struct class that this device should be registered to
4099 * @parent: pointer to the parent struct device of this new device, if any
4100 * @devt: the dev_t for the char device to be added
4101 * @drvdata: the data to be added to the device for callbacks
4102 * @fmt: string for the device's name
4104 * This function can be used by char device classes. A struct device
4105 * will be created in sysfs, registered to the specified class.
4107 * A "dev" file will be created, showing the dev_t for the device, if
4108 * the dev_t is not 0,0.
4109 * If a pointer to a parent struct device is passed in, the newly created
4110 * struct device will be a child of that device in sysfs.
4111 * The pointer to the struct device will be returned from the call.
4112 * Any further sysfs files that might be required can be created using this
4115 * Returns &struct device pointer on success, or ERR_PTR() on error.
4117 * Note: the struct class passed to this function must have previously
4118 * been created with a call to class_create().
4120 struct device *device_create(struct class *class, struct device *parent,
4121 dev_t devt, void *drvdata, const char *fmt, ...)
4126 va_start(vargs, fmt);
4127 dev = device_create_groups_vargs(class, parent, devt, drvdata, NULL,
4132 EXPORT_SYMBOL_GPL(device_create);
4135 * device_create_with_groups - creates a device and registers it with sysfs
4136 * @class: pointer to the struct class that this device should be registered to
4137 * @parent: pointer to the parent struct device of this new device, if any
4138 * @devt: the dev_t for the char device to be added
4139 * @drvdata: the data to be added to the device for callbacks
4140 * @groups: NULL-terminated list of attribute groups to be created
4141 * @fmt: string for the device's name
4143 * This function can be used by char device classes. A struct device
4144 * will be created in sysfs, registered to the specified class.
4145 * Additional attributes specified in the groups parameter will also
4146 * be created automatically.
4148 * A "dev" file will be created, showing the dev_t for the device, if
4149 * the dev_t is not 0,0.
4150 * If a pointer to a parent struct device is passed in, the newly created
4151 * struct device will be a child of that device in sysfs.
4152 * The pointer to the struct device will be returned from the call.
4153 * Any further sysfs files that might be required can be created using this
4156 * Returns &struct device pointer on success, or ERR_PTR() on error.
4158 * Note: the struct class passed to this function must have previously
4159 * been created with a call to class_create().
4161 struct device *device_create_with_groups(struct class *class,
4162 struct device *parent, dev_t devt,
4164 const struct attribute_group **groups,
4165 const char *fmt, ...)
4170 va_start(vargs, fmt);
4171 dev = device_create_groups_vargs(class, parent, devt, drvdata, groups,
4176 EXPORT_SYMBOL_GPL(device_create_with_groups);
4179 * device_destroy - removes a device that was created with device_create()
4180 * @class: pointer to the struct class that this device was registered with
4181 * @devt: the dev_t of the device that was previously registered
4183 * This call unregisters and cleans up a device that was created with a
4184 * call to device_create().
4186 void device_destroy(struct class *class, dev_t devt)
4190 dev = class_find_device_by_devt(class, devt);
4193 device_unregister(dev);
4196 EXPORT_SYMBOL_GPL(device_destroy);
4199 * device_rename - renames a device
4200 * @dev: the pointer to the struct device to be renamed
4201 * @new_name: the new name of the device
4203 * It is the responsibility of the caller to provide mutual
4204 * exclusion between two different calls of device_rename
4205 * on the same device to ensure that new_name is valid and
4206 * won't conflict with other devices.
4208 * Note: Don't call this function. Currently, the networking layer calls this
4209 * function, but that will change. The following text from Kay Sievers offers
4212 * Renaming devices is racy at many levels, symlinks and other stuff are not
4213 * replaced atomically, and you get a "move" uevent, but it's not easy to
4214 * connect the event to the old and new device. Device nodes are not renamed at
4215 * all, there isn't even support for that in the kernel now.
4217 * In the meantime, during renaming, your target name might be taken by another
4218 * driver, creating conflicts. Or the old name is taken directly after you
4219 * renamed it -- then you get events for the same DEVPATH, before you even see
4220 * the "move" event. It's just a mess, and nothing new should ever rely on
4221 * kernel device renaming. Besides that, it's not even implemented now for
4222 * other things than (driver-core wise very simple) network devices.
4224 * We are currently about to change network renaming in udev to completely
4225 * disallow renaming of devices in the same namespace as the kernel uses,
4226 * because we can't solve the problems properly, that arise with swapping names
4227 * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
4228 * be allowed to some other name than eth[0-9]*, for the aforementioned
4231 * Make up a "real" name in the driver before you register anything, or add
4232 * some other attributes for userspace to find the device, or use udev to add
4233 * symlinks -- but never rename kernel devices later, it's a complete mess. We
4234 * don't even want to get into that and try to implement the missing pieces in
4235 * the core. We really have other pieces to fix in the driver core mess. :)
4237 int device_rename(struct device *dev, const char *new_name)
4239 struct kobject *kobj = &dev->kobj;
4240 char *old_device_name = NULL;
4243 dev = get_device(dev);
4247 dev_dbg(dev, "renaming to %s\n", new_name);
4249 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
4250 if (!old_device_name) {
4256 error = sysfs_rename_link_ns(&dev->class->p->subsys.kobj,
4257 kobj, old_device_name,
4258 new_name, kobject_namespace(kobj));
4263 error = kobject_rename(kobj, new_name);
4270 kfree(old_device_name);
4274 EXPORT_SYMBOL_GPL(device_rename);
4276 static int device_move_class_links(struct device *dev,
4277 struct device *old_parent,
4278 struct device *new_parent)
4283 sysfs_remove_link(&dev->kobj, "device");
4285 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
4291 * device_move - moves a device to a new parent
4292 * @dev: the pointer to the struct device to be moved
4293 * @new_parent: the new parent of the device (can be NULL)
4294 * @dpm_order: how to reorder the dpm_list
4296 int device_move(struct device *dev, struct device *new_parent,
4297 enum dpm_order dpm_order)
4300 struct device *old_parent;
4301 struct kobject *new_parent_kobj;
4303 dev = get_device(dev);
4308 new_parent = get_device(new_parent);
4309 new_parent_kobj = get_device_parent(dev, new_parent);
4310 if (IS_ERR(new_parent_kobj)) {
4311 error = PTR_ERR(new_parent_kobj);
4312 put_device(new_parent);
4316 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
4317 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
4318 error = kobject_move(&dev->kobj, new_parent_kobj);
4320 cleanup_glue_dir(dev, new_parent_kobj);
4321 put_device(new_parent);
4324 old_parent = dev->parent;
4325 dev->parent = new_parent;
4327 klist_remove(&dev->p->knode_parent);
4329 klist_add_tail(&dev->p->knode_parent,
4330 &new_parent->p->klist_children);
4331 set_dev_node(dev, dev_to_node(new_parent));
4335 error = device_move_class_links(dev, old_parent, new_parent);
4337 /* We ignore errors on cleanup since we're hosed anyway... */
4338 device_move_class_links(dev, new_parent, old_parent);
4339 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
4341 klist_remove(&dev->p->knode_parent);
4342 dev->parent = old_parent;
4344 klist_add_tail(&dev->p->knode_parent,
4345 &old_parent->p->klist_children);
4346 set_dev_node(dev, dev_to_node(old_parent));
4349 cleanup_glue_dir(dev, new_parent_kobj);
4350 put_device(new_parent);
4354 switch (dpm_order) {
4355 case DPM_ORDER_NONE:
4357 case DPM_ORDER_DEV_AFTER_PARENT:
4358 device_pm_move_after(dev, new_parent);
4359 devices_kset_move_after(dev, new_parent);
4361 case DPM_ORDER_PARENT_BEFORE_DEV:
4362 device_pm_move_before(new_parent, dev);
4363 devices_kset_move_before(new_parent, dev);
4365 case DPM_ORDER_DEV_LAST:
4366 device_pm_move_last(dev);
4367 devices_kset_move_last(dev);
4371 put_device(old_parent);
4377 EXPORT_SYMBOL_GPL(device_move);
4379 static int device_attrs_change_owner(struct device *dev, kuid_t kuid,
4382 struct kobject *kobj = &dev->kobj;
4383 struct class *class = dev->class;
4384 const struct device_type *type = dev->type;
4389 * Change the device groups of the device class for @dev to
4392 error = sysfs_groups_change_owner(kobj, class->dev_groups, kuid,
4400 * Change the device groups of the device type for @dev to
4403 error = sysfs_groups_change_owner(kobj, type->groups, kuid,
4409 /* Change the device groups of @dev to @kuid/@kgid. */
4410 error = sysfs_groups_change_owner(kobj, dev->groups, kuid, kgid);
4414 if (device_supports_offline(dev) && !dev->offline_disabled) {
4415 /* Change online device attributes of @dev to @kuid/@kgid. */
4416 error = sysfs_file_change_owner(kobj, dev_attr_online.attr.name,
4426 * device_change_owner - change the owner of an existing device.
4428 * @kuid: new owner's kuid
4429 * @kgid: new owner's kgid
4431 * This changes the owner of @dev and its corresponding sysfs entries to
4432 * @kuid/@kgid. This function closely mirrors how @dev was added via driver
4435 * Returns 0 on success or error code on failure.
4437 int device_change_owner(struct device *dev, kuid_t kuid, kgid_t kgid)
4440 struct kobject *kobj = &dev->kobj;
4442 dev = get_device(dev);
4447 * Change the kobject and the default attributes and groups of the
4448 * ktype associated with it to @kuid/@kgid.
4450 error = sysfs_change_owner(kobj, kuid, kgid);
4455 * Change the uevent file for @dev to the new owner. The uevent file
4456 * was created in a separate step when @dev got added and we mirror
4459 error = sysfs_file_change_owner(kobj, dev_attr_uevent.attr.name, kuid,
4465 * Change the device groups, the device groups associated with the
4466 * device class, and the groups associated with the device type of @dev
4469 error = device_attrs_change_owner(dev, kuid, kgid);
4473 error = dpm_sysfs_change_owner(dev, kuid, kgid);
4478 if (sysfs_deprecated && dev->class == &block_class)
4483 * Change the owner of the symlink located in the class directory of
4484 * the device class associated with @dev which points to the actual
4485 * directory entry for @dev to @kuid/@kgid. This ensures that the
4486 * symlink shows the same permissions as its target.
4488 error = sysfs_link_change_owner(&dev->class->p->subsys.kobj, &dev->kobj,
4489 dev_name(dev), kuid, kgid);
4497 EXPORT_SYMBOL_GPL(device_change_owner);
4500 * device_shutdown - call ->shutdown() on each device to shutdown.
4502 void device_shutdown(void)
4504 struct device *dev, *parent;
4506 wait_for_device_probe();
4507 device_block_probing();
4511 spin_lock(&devices_kset->list_lock);
4513 * Walk the devices list backward, shutting down each in turn.
4514 * Beware that device unplug events may also start pulling
4515 * devices offline, even as the system is shutting down.
4517 while (!list_empty(&devices_kset->list)) {
4518 dev = list_entry(devices_kset->list.prev, struct device,
4522 * hold reference count of device's parent to
4523 * prevent it from being freed because parent's
4524 * lock is to be held
4526 parent = get_device(dev->parent);
4529 * Make sure the device is off the kset list, in the
4530 * event that dev->*->shutdown() doesn't remove it.
4532 list_del_init(&dev->kobj.entry);
4533 spin_unlock(&devices_kset->list_lock);
4535 /* hold lock to avoid race with probe/release */
4537 device_lock(parent);
4540 /* Don't allow any more runtime suspends */
4541 pm_runtime_get_noresume(dev);
4542 pm_runtime_barrier(dev);
4544 if (dev->class && dev->class->shutdown_pre) {
4546 dev_info(dev, "shutdown_pre\n");
4547 dev->class->shutdown_pre(dev);
4549 if (dev->bus && dev->bus->shutdown) {
4551 dev_info(dev, "shutdown\n");
4552 dev->bus->shutdown(dev);
4553 } else if (dev->driver && dev->driver->shutdown) {
4555 dev_info(dev, "shutdown\n");
4556 dev->driver->shutdown(dev);
4561 device_unlock(parent);
4566 spin_lock(&devices_kset->list_lock);
4568 spin_unlock(&devices_kset->list_lock);
4572 * Device logging functions
4575 #ifdef CONFIG_PRINTK
4577 set_dev_info(const struct device *dev, struct dev_printk_info *dev_info)
4581 memset(dev_info, 0, sizeof(*dev_info));
4584 subsys = dev->class->name;
4586 subsys = dev->bus->name;
4590 strscpy(dev_info->subsystem, subsys, sizeof(dev_info->subsystem));
4593 * Add device identifier DEVICE=:
4597 * +sound:card0 subsystem:devname
4599 if (MAJOR(dev->devt)) {
4602 if (strcmp(subsys, "block") == 0)
4607 snprintf(dev_info->device, sizeof(dev_info->device),
4608 "%c%u:%u", c, MAJOR(dev->devt), MINOR(dev->devt));
4609 } else if (strcmp(subsys, "net") == 0) {
4610 struct net_device *net = to_net_dev(dev);
4612 snprintf(dev_info->device, sizeof(dev_info->device),
4613 "n%u", net->ifindex);
4615 snprintf(dev_info->device, sizeof(dev_info->device),
4616 "+%s:%s", subsys, dev_name(dev));
4620 int dev_vprintk_emit(int level, const struct device *dev,
4621 const char *fmt, va_list args)
4623 struct dev_printk_info dev_info;
4625 set_dev_info(dev, &dev_info);
4627 return vprintk_emit(0, level, &dev_info, fmt, args);
4629 EXPORT_SYMBOL(dev_vprintk_emit);
4631 int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...)
4636 va_start(args, fmt);
4638 r = dev_vprintk_emit(level, dev, fmt, args);
4644 EXPORT_SYMBOL(dev_printk_emit);
4646 static void __dev_printk(const char *level, const struct device *dev,
4647 struct va_format *vaf)
4650 dev_printk_emit(level[1] - '0', dev, "%s %s: %pV",
4651 dev_driver_string(dev), dev_name(dev), vaf);
4653 printk("%s(NULL device *): %pV", level, vaf);
4656 void _dev_printk(const char *level, const struct device *dev,
4657 const char *fmt, ...)
4659 struct va_format vaf;
4662 va_start(args, fmt);
4667 __dev_printk(level, dev, &vaf);
4671 EXPORT_SYMBOL(_dev_printk);
4673 #define define_dev_printk_level(func, kern_level) \
4674 void func(const struct device *dev, const char *fmt, ...) \
4676 struct va_format vaf; \
4679 va_start(args, fmt); \
4684 __dev_printk(kern_level, dev, &vaf); \
4688 EXPORT_SYMBOL(func);
4690 define_dev_printk_level(_dev_emerg, KERN_EMERG);
4691 define_dev_printk_level(_dev_alert, KERN_ALERT);
4692 define_dev_printk_level(_dev_crit, KERN_CRIT);
4693 define_dev_printk_level(_dev_err, KERN_ERR);
4694 define_dev_printk_level(_dev_warn, KERN_WARNING);
4695 define_dev_printk_level(_dev_notice, KERN_NOTICE);
4696 define_dev_printk_level(_dev_info, KERN_INFO);
4701 * dev_err_probe - probe error check and log helper
4702 * @dev: the pointer to the struct device
4703 * @err: error value to test
4704 * @fmt: printf-style format string
4705 * @...: arguments as specified in the format string
4707 * This helper implements common pattern present in probe functions for error
4708 * checking: print debug or error message depending if the error value is
4709 * -EPROBE_DEFER and propagate error upwards.
4710 * In case of -EPROBE_DEFER it sets also defer probe reason, which can be
4711 * checked later by reading devices_deferred debugfs attribute.
4712 * It replaces code sequence::
4714 * if (err != -EPROBE_DEFER)
4715 * dev_err(dev, ...);
4717 * dev_dbg(dev, ...);
4722 * return dev_err_probe(dev, err, ...);
4724 * Note that it is deemed acceptable to use this function for error
4725 * prints during probe even if the @err is known to never be -EPROBE_DEFER.
4726 * The benefit compared to a normal dev_err() is the standardized format
4727 * of the error code and the fact that the error code is returned.
4732 int dev_err_probe(const struct device *dev, int err, const char *fmt, ...)
4734 struct va_format vaf;
4737 va_start(args, fmt);
4741 if (err != -EPROBE_DEFER) {
4742 dev_err(dev, "error %pe: %pV", ERR_PTR(err), &vaf);
4744 device_set_deferred_probe_reason(dev, &vaf);
4745 dev_dbg(dev, "error %pe: %pV", ERR_PTR(err), &vaf);
4752 EXPORT_SYMBOL_GPL(dev_err_probe);
4754 static inline bool fwnode_is_primary(struct fwnode_handle *fwnode)
4756 return fwnode && !IS_ERR(fwnode->secondary);
4760 * set_primary_fwnode - Change the primary firmware node of a given device.
4761 * @dev: Device to handle.
4762 * @fwnode: New primary firmware node of the device.
4764 * Set the device's firmware node pointer to @fwnode, but if a secondary
4765 * firmware node of the device is present, preserve it.
4767 * Valid fwnode cases are:
4768 * - primary --> secondary --> -ENODEV
4769 * - primary --> NULL
4770 * - secondary --> -ENODEV
4773 void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
4775 struct device *parent = dev->parent;
4776 struct fwnode_handle *fn = dev->fwnode;
4779 if (fwnode_is_primary(fn))
4783 WARN_ON(fwnode->secondary);
4784 fwnode->secondary = fn;
4786 dev->fwnode = fwnode;
4788 if (fwnode_is_primary(fn)) {
4789 dev->fwnode = fn->secondary;
4790 /* Set fn->secondary = NULL, so fn remains the primary fwnode */
4791 if (!(parent && fn == parent->fwnode))
4792 fn->secondary = NULL;
4798 EXPORT_SYMBOL_GPL(set_primary_fwnode);
4801 * set_secondary_fwnode - Change the secondary firmware node of a given device.
4802 * @dev: Device to handle.
4803 * @fwnode: New secondary firmware node of the device.
4805 * If a primary firmware node of the device is present, set its secondary
4806 * pointer to @fwnode. Otherwise, set the device's firmware node pointer to
4809 void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
4812 fwnode->secondary = ERR_PTR(-ENODEV);
4814 if (fwnode_is_primary(dev->fwnode))
4815 dev->fwnode->secondary = fwnode;
4817 dev->fwnode = fwnode;
4819 EXPORT_SYMBOL_GPL(set_secondary_fwnode);
4822 * device_set_of_node_from_dev - reuse device-tree node of another device
4823 * @dev: device whose device-tree node is being set
4824 * @dev2: device whose device-tree node is being reused
4826 * Takes another reference to the new device-tree node after first dropping
4827 * any reference held to the old node.
4829 void device_set_of_node_from_dev(struct device *dev, const struct device *dev2)
4831 of_node_put(dev->of_node);
4832 dev->of_node = of_node_get(dev2->of_node);
4833 dev->of_node_reused = true;
4835 EXPORT_SYMBOL_GPL(device_set_of_node_from_dev);
4837 void device_set_node(struct device *dev, struct fwnode_handle *fwnode)
4839 dev->fwnode = fwnode;
4840 dev->of_node = to_of_node(fwnode);
4842 EXPORT_SYMBOL_GPL(device_set_node);
4844 int device_match_name(struct device *dev, const void *name)
4846 return sysfs_streq(dev_name(dev), name);
4848 EXPORT_SYMBOL_GPL(device_match_name);
4850 int device_match_of_node(struct device *dev, const void *np)
4852 return dev->of_node == np;
4854 EXPORT_SYMBOL_GPL(device_match_of_node);
4856 int device_match_fwnode(struct device *dev, const void *fwnode)
4858 return dev_fwnode(dev) == fwnode;
4860 EXPORT_SYMBOL_GPL(device_match_fwnode);
4862 int device_match_devt(struct device *dev, const void *pdevt)
4864 return dev->devt == *(dev_t *)pdevt;
4866 EXPORT_SYMBOL_GPL(device_match_devt);
4868 int device_match_acpi_dev(struct device *dev, const void *adev)
4870 return ACPI_COMPANION(dev) == adev;
4872 EXPORT_SYMBOL(device_match_acpi_dev);
4874 int device_match_acpi_handle(struct device *dev, const void *handle)
4876 return ACPI_HANDLE(dev) == handle;
4878 EXPORT_SYMBOL(device_match_acpi_handle);
4880 int device_match_any(struct device *dev, const void *unused)
4884 EXPORT_SYMBOL_GPL(device_match_any);