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/kstrtox.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/string.h>
21 #include <linux/kdev_t.h>
22 #include <linux/notifier.h>
24 #include <linux/of_device.h>
25 #include <linux/blkdev.h>
26 #include <linux/mutex.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/netdevice.h>
29 #include <linux/sched/signal.h>
30 #include <linux/sched/mm.h>
31 #include <linux/swiotlb.h>
32 #include <linux/sysfs.h>
33 #include <linux/dma-map-ops.h> /* for dma_default_coherent */
36 #include "physical_location.h"
37 #include "power/power.h"
39 #ifdef CONFIG_SYSFS_DEPRECATED
40 #ifdef CONFIG_SYSFS_DEPRECATED_V2
41 long sysfs_deprecated = 1;
43 long sysfs_deprecated = 0;
45 static int __init sysfs_deprecated_setup(char *arg)
47 return kstrtol(arg, 10, &sysfs_deprecated);
49 early_param("sysfs.deprecated", sysfs_deprecated_setup);
52 /* Device links support. */
53 static LIST_HEAD(deferred_sync);
54 static unsigned int defer_sync_state_count = 1;
55 static DEFINE_MUTEX(fwnode_link_lock);
56 static bool fw_devlink_is_permissive(void);
57 static void __fw_devlink_link_to_consumers(struct device *dev);
58 static bool fw_devlink_drv_reg_done;
59 static bool fw_devlink_best_effort;
62 * __fwnode_link_add - Create a link between two fwnode_handles.
63 * @con: Consumer end of the link.
64 * @sup: Supplier end of the link.
66 * Create a fwnode link between fwnode handles @con and @sup. The fwnode link
67 * represents the detail that the firmware lists @sup fwnode as supplying a
70 * The driver core will use the fwnode link to create a device link between the
71 * two device objects corresponding to @con and @sup when they are created. The
72 * driver core will automatically delete the fwnode link between @con and @sup
75 * Attempts to create duplicate links between the same pair of fwnode handles
76 * are ignored and there is no reference counting.
78 static int __fwnode_link_add(struct fwnode_handle *con,
79 struct fwnode_handle *sup, u8 flags)
81 struct fwnode_link *link;
83 list_for_each_entry(link, &sup->consumers, s_hook)
84 if (link->consumer == con) {
89 link = kzalloc(sizeof(*link), GFP_KERNEL);
94 INIT_LIST_HEAD(&link->s_hook);
96 INIT_LIST_HEAD(&link->c_hook);
99 list_add(&link->s_hook, &sup->consumers);
100 list_add(&link->c_hook, &con->suppliers);
101 pr_debug("%pfwP Linked as a fwnode consumer to %pfwP\n",
107 int fwnode_link_add(struct fwnode_handle *con, struct fwnode_handle *sup)
111 mutex_lock(&fwnode_link_lock);
112 ret = __fwnode_link_add(con, sup, 0);
113 mutex_unlock(&fwnode_link_lock);
118 * __fwnode_link_del - Delete a link between two fwnode_handles.
119 * @link: the fwnode_link to be deleted
121 * The fwnode_link_lock needs to be held when this function is called.
123 static void __fwnode_link_del(struct fwnode_link *link)
125 pr_debug("%pfwP Dropping the fwnode link to %pfwP\n",
126 link->consumer, link->supplier);
127 list_del(&link->s_hook);
128 list_del(&link->c_hook);
133 * __fwnode_link_cycle - Mark a fwnode link as being part of a cycle.
134 * @link: the fwnode_link to be marked
136 * The fwnode_link_lock needs to be held when this function is called.
138 static void __fwnode_link_cycle(struct fwnode_link *link)
140 pr_debug("%pfwf: Relaxing link with %pfwf\n",
141 link->consumer, link->supplier);
142 link->flags |= FWLINK_FLAG_CYCLE;
146 * fwnode_links_purge_suppliers - Delete all supplier links of fwnode_handle.
147 * @fwnode: fwnode whose supplier links need to be deleted
149 * Deletes all supplier links connecting directly to @fwnode.
151 static void fwnode_links_purge_suppliers(struct fwnode_handle *fwnode)
153 struct fwnode_link *link, *tmp;
155 mutex_lock(&fwnode_link_lock);
156 list_for_each_entry_safe(link, tmp, &fwnode->suppliers, c_hook)
157 __fwnode_link_del(link);
158 mutex_unlock(&fwnode_link_lock);
162 * fwnode_links_purge_consumers - Delete all consumer links of fwnode_handle.
163 * @fwnode: fwnode whose consumer links need to be deleted
165 * Deletes all consumer links connecting directly to @fwnode.
167 static void fwnode_links_purge_consumers(struct fwnode_handle *fwnode)
169 struct fwnode_link *link, *tmp;
171 mutex_lock(&fwnode_link_lock);
172 list_for_each_entry_safe(link, tmp, &fwnode->consumers, s_hook)
173 __fwnode_link_del(link);
174 mutex_unlock(&fwnode_link_lock);
178 * fwnode_links_purge - Delete all links connected to a fwnode_handle.
179 * @fwnode: fwnode whose links needs to be deleted
181 * Deletes all links connecting directly to a fwnode.
183 void fwnode_links_purge(struct fwnode_handle *fwnode)
185 fwnode_links_purge_suppliers(fwnode);
186 fwnode_links_purge_consumers(fwnode);
189 void fw_devlink_purge_absent_suppliers(struct fwnode_handle *fwnode)
191 struct fwnode_handle *child;
193 /* Don't purge consumer links of an added child */
197 fwnode->flags |= FWNODE_FLAG_NOT_DEVICE;
198 fwnode_links_purge_consumers(fwnode);
200 fwnode_for_each_available_child_node(fwnode, child)
201 fw_devlink_purge_absent_suppliers(child);
203 EXPORT_SYMBOL_GPL(fw_devlink_purge_absent_suppliers);
206 * __fwnode_links_move_consumers - Move consumer from @from to @to fwnode_handle
207 * @from: move consumers away from this fwnode
208 * @to: move consumers to this fwnode
210 * Move all consumer links from @from fwnode to @to fwnode.
212 static void __fwnode_links_move_consumers(struct fwnode_handle *from,
213 struct fwnode_handle *to)
215 struct fwnode_link *link, *tmp;
217 list_for_each_entry_safe(link, tmp, &from->consumers, s_hook) {
218 __fwnode_link_add(link->consumer, to, link->flags);
219 __fwnode_link_del(link);
224 * __fw_devlink_pickup_dangling_consumers - Pick up dangling consumers
225 * @fwnode: fwnode from which to pick up dangling consumers
226 * @new_sup: fwnode of new supplier
228 * If the @fwnode has a corresponding struct device and the device supports
229 * probing (that is, added to a bus), then we want to let fw_devlink create
230 * MANAGED device links to this device, so leave @fwnode and its descendant's
231 * fwnode links alone.
233 * Otherwise, move its consumers to the new supplier @new_sup.
235 static void __fw_devlink_pickup_dangling_consumers(struct fwnode_handle *fwnode,
236 struct fwnode_handle *new_sup)
238 struct fwnode_handle *child;
240 if (fwnode->dev && fwnode->dev->bus)
243 fwnode->flags |= FWNODE_FLAG_NOT_DEVICE;
244 __fwnode_links_move_consumers(fwnode, new_sup);
246 fwnode_for_each_available_child_node(fwnode, child)
247 __fw_devlink_pickup_dangling_consumers(child, new_sup);
250 static DEFINE_MUTEX(device_links_lock);
251 DEFINE_STATIC_SRCU(device_links_srcu);
253 static inline void device_links_write_lock(void)
255 mutex_lock(&device_links_lock);
258 static inline void device_links_write_unlock(void)
260 mutex_unlock(&device_links_lock);
263 int device_links_read_lock(void) __acquires(&device_links_srcu)
265 return srcu_read_lock(&device_links_srcu);
268 void device_links_read_unlock(int idx) __releases(&device_links_srcu)
270 srcu_read_unlock(&device_links_srcu, idx);
273 int device_links_read_lock_held(void)
275 return srcu_read_lock_held(&device_links_srcu);
278 static void device_link_synchronize_removal(void)
280 synchronize_srcu(&device_links_srcu);
283 static void device_link_remove_from_lists(struct device_link *link)
285 list_del_rcu(&link->s_node);
286 list_del_rcu(&link->c_node);
289 static bool device_is_ancestor(struct device *dev, struct device *target)
291 while (target->parent) {
292 target = target->parent;
299 static inline bool device_link_flag_is_sync_state_only(u32 flags)
301 return (flags & ~(DL_FLAG_INFERRED | DL_FLAG_CYCLE)) ==
302 (DL_FLAG_SYNC_STATE_ONLY | DL_FLAG_MANAGED);
306 * device_is_dependent - Check if one device depends on another one
307 * @dev: Device to check dependencies for.
308 * @target: Device to check against.
310 * Check if @target depends on @dev or any device dependent on it (its child or
311 * its consumer etc). Return 1 if that is the case or 0 otherwise.
313 int device_is_dependent(struct device *dev, void *target)
315 struct device_link *link;
319 * The "ancestors" check is needed to catch the case when the target
320 * device has not been completely initialized yet and it is still
321 * missing from the list of children of its parent device.
323 if (dev == target || device_is_ancestor(dev, target))
326 ret = device_for_each_child(dev, target, device_is_dependent);
330 list_for_each_entry(link, &dev->links.consumers, s_node) {
331 if (device_link_flag_is_sync_state_only(link->flags))
334 if (link->consumer == target)
337 ret = device_is_dependent(link->consumer, target);
344 static void device_link_init_status(struct device_link *link,
345 struct device *consumer,
346 struct device *supplier)
348 switch (supplier->links.status) {
350 switch (consumer->links.status) {
353 * A consumer driver can create a link to a supplier
354 * that has not completed its probing yet as long as it
355 * knows that the supplier is already functional (for
356 * example, it has just acquired some resources from the
359 link->status = DL_STATE_CONSUMER_PROBE;
362 link->status = DL_STATE_DORMANT;
366 case DL_DEV_DRIVER_BOUND:
367 switch (consumer->links.status) {
369 link->status = DL_STATE_CONSUMER_PROBE;
371 case DL_DEV_DRIVER_BOUND:
372 link->status = DL_STATE_ACTIVE;
375 link->status = DL_STATE_AVAILABLE;
379 case DL_DEV_UNBINDING:
380 link->status = DL_STATE_SUPPLIER_UNBIND;
383 link->status = DL_STATE_DORMANT;
388 static int device_reorder_to_tail(struct device *dev, void *not_used)
390 struct device_link *link;
393 * Devices that have not been registered yet will be put to the ends
394 * of the lists during the registration, so skip them here.
396 if (device_is_registered(dev))
397 devices_kset_move_last(dev);
399 if (device_pm_initialized(dev))
400 device_pm_move_last(dev);
402 device_for_each_child(dev, NULL, device_reorder_to_tail);
403 list_for_each_entry(link, &dev->links.consumers, s_node) {
404 if (device_link_flag_is_sync_state_only(link->flags))
406 device_reorder_to_tail(link->consumer, NULL);
413 * device_pm_move_to_tail - Move set of devices to the end of device lists
414 * @dev: Device to move
416 * This is a device_reorder_to_tail() wrapper taking the requisite locks.
418 * It moves the @dev along with all of its children and all of its consumers
419 * to the ends of the device_kset and dpm_list, recursively.
421 void device_pm_move_to_tail(struct device *dev)
425 idx = device_links_read_lock();
427 device_reorder_to_tail(dev, NULL);
429 device_links_read_unlock(idx);
432 #define to_devlink(dev) container_of((dev), struct device_link, link_dev)
434 static ssize_t status_show(struct device *dev,
435 struct device_attribute *attr, char *buf)
439 switch (to_devlink(dev)->status) {
441 output = "not tracked";
443 case DL_STATE_DORMANT:
446 case DL_STATE_AVAILABLE:
447 output = "available";
449 case DL_STATE_CONSUMER_PROBE:
450 output = "consumer probing";
452 case DL_STATE_ACTIVE:
455 case DL_STATE_SUPPLIER_UNBIND:
456 output = "supplier unbinding";
463 return sysfs_emit(buf, "%s\n", output);
465 static DEVICE_ATTR_RO(status);
467 static ssize_t auto_remove_on_show(struct device *dev,
468 struct device_attribute *attr, char *buf)
470 struct device_link *link = to_devlink(dev);
473 if (link->flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
474 output = "supplier unbind";
475 else if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER)
476 output = "consumer unbind";
480 return sysfs_emit(buf, "%s\n", output);
482 static DEVICE_ATTR_RO(auto_remove_on);
484 static ssize_t runtime_pm_show(struct device *dev,
485 struct device_attribute *attr, char *buf)
487 struct device_link *link = to_devlink(dev);
489 return sysfs_emit(buf, "%d\n", !!(link->flags & DL_FLAG_PM_RUNTIME));
491 static DEVICE_ATTR_RO(runtime_pm);
493 static ssize_t sync_state_only_show(struct device *dev,
494 struct device_attribute *attr, char *buf)
496 struct device_link *link = to_devlink(dev);
498 return sysfs_emit(buf, "%d\n",
499 !!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
501 static DEVICE_ATTR_RO(sync_state_only);
503 static struct attribute *devlink_attrs[] = {
504 &dev_attr_status.attr,
505 &dev_attr_auto_remove_on.attr,
506 &dev_attr_runtime_pm.attr,
507 &dev_attr_sync_state_only.attr,
510 ATTRIBUTE_GROUPS(devlink);
512 static void device_link_release_fn(struct work_struct *work)
514 struct device_link *link = container_of(work, struct device_link, rm_work);
516 /* Ensure that all references to the link object have been dropped. */
517 device_link_synchronize_removal();
519 pm_runtime_release_supplier(link);
521 * If supplier_preactivated is set, the link has been dropped between
522 * the pm_runtime_get_suppliers() and pm_runtime_put_suppliers() calls
523 * in __driver_probe_device(). In that case, drop the supplier's
524 * PM-runtime usage counter to remove the reference taken by
525 * pm_runtime_get_suppliers().
527 if (link->supplier_preactivated)
528 pm_runtime_put_noidle(link->supplier);
530 pm_request_idle(link->supplier);
532 put_device(link->consumer);
533 put_device(link->supplier);
537 static void devlink_dev_release(struct device *dev)
539 struct device_link *link = to_devlink(dev);
541 INIT_WORK(&link->rm_work, device_link_release_fn);
543 * It may take a while to complete this work because of the SRCU
544 * synchronization in device_link_release_fn() and if the consumer or
545 * supplier devices get deleted when it runs, so put it into the "long"
548 queue_work(system_long_wq, &link->rm_work);
551 static struct class devlink_class = {
553 .owner = THIS_MODULE,
554 .dev_groups = devlink_groups,
555 .dev_release = devlink_dev_release,
558 static int devlink_add_symlinks(struct device *dev,
559 struct class_interface *class_intf)
563 struct device_link *link = to_devlink(dev);
564 struct device *sup = link->supplier;
565 struct device *con = link->consumer;
568 len = max(strlen(dev_bus_name(sup)) + strlen(dev_name(sup)),
569 strlen(dev_bus_name(con)) + strlen(dev_name(con)));
571 len += strlen("supplier:") + 1;
572 buf = kzalloc(len, GFP_KERNEL);
576 ret = sysfs_create_link(&link->link_dev.kobj, &sup->kobj, "supplier");
580 ret = sysfs_create_link(&link->link_dev.kobj, &con->kobj, "consumer");
584 snprintf(buf, len, "consumer:%s:%s", dev_bus_name(con), dev_name(con));
585 ret = sysfs_create_link(&sup->kobj, &link->link_dev.kobj, buf);
589 snprintf(buf, len, "supplier:%s:%s", dev_bus_name(sup), dev_name(sup));
590 ret = sysfs_create_link(&con->kobj, &link->link_dev.kobj, buf);
597 snprintf(buf, len, "consumer:%s:%s", dev_bus_name(con), dev_name(con));
598 sysfs_remove_link(&sup->kobj, buf);
600 sysfs_remove_link(&link->link_dev.kobj, "consumer");
602 sysfs_remove_link(&link->link_dev.kobj, "supplier");
608 static void devlink_remove_symlinks(struct device *dev,
609 struct class_interface *class_intf)
611 struct device_link *link = to_devlink(dev);
613 struct device *sup = link->supplier;
614 struct device *con = link->consumer;
617 sysfs_remove_link(&link->link_dev.kobj, "consumer");
618 sysfs_remove_link(&link->link_dev.kobj, "supplier");
620 len = max(strlen(dev_bus_name(sup)) + strlen(dev_name(sup)),
621 strlen(dev_bus_name(con)) + strlen(dev_name(con)));
623 len += strlen("supplier:") + 1;
624 buf = kzalloc(len, GFP_KERNEL);
626 WARN(1, "Unable to properly free device link symlinks!\n");
630 if (device_is_registered(con)) {
631 snprintf(buf, len, "supplier:%s:%s", dev_bus_name(sup), dev_name(sup));
632 sysfs_remove_link(&con->kobj, buf);
634 snprintf(buf, len, "consumer:%s:%s", dev_bus_name(con), dev_name(con));
635 sysfs_remove_link(&sup->kobj, buf);
639 static struct class_interface devlink_class_intf = {
640 .class = &devlink_class,
641 .add_dev = devlink_add_symlinks,
642 .remove_dev = devlink_remove_symlinks,
645 static int __init devlink_class_init(void)
649 ret = class_register(&devlink_class);
653 ret = class_interface_register(&devlink_class_intf);
655 class_unregister(&devlink_class);
659 postcore_initcall(devlink_class_init);
661 #define DL_MANAGED_LINK_FLAGS (DL_FLAG_AUTOREMOVE_CONSUMER | \
662 DL_FLAG_AUTOREMOVE_SUPPLIER | \
663 DL_FLAG_AUTOPROBE_CONSUMER | \
664 DL_FLAG_SYNC_STATE_ONLY | \
668 #define DL_ADD_VALID_FLAGS (DL_MANAGED_LINK_FLAGS | DL_FLAG_STATELESS | \
669 DL_FLAG_PM_RUNTIME | DL_FLAG_RPM_ACTIVE)
672 * device_link_add - Create a link between two devices.
673 * @consumer: Consumer end of the link.
674 * @supplier: Supplier end of the link.
675 * @flags: Link flags.
677 * The caller is responsible for the proper synchronization of the link creation
678 * with runtime PM. First, setting the DL_FLAG_PM_RUNTIME flag will cause the
679 * runtime PM framework to take the link into account. Second, if the
680 * DL_FLAG_RPM_ACTIVE flag is set in addition to it, the supplier devices will
681 * be forced into the active meta state and reference-counted upon the creation
682 * of the link. If DL_FLAG_PM_RUNTIME is not set, DL_FLAG_RPM_ACTIVE will be
685 * If DL_FLAG_STATELESS is set in @flags, the caller of this function is
686 * expected to release the link returned by it directly with the help of either
687 * device_link_del() or device_link_remove().
689 * If that flag is not set, however, the caller of this function is handing the
690 * management of the link over to the driver core entirely and its return value
691 * can only be used to check whether or not the link is present. In that case,
692 * the DL_FLAG_AUTOREMOVE_CONSUMER and DL_FLAG_AUTOREMOVE_SUPPLIER device link
693 * flags can be used to indicate to the driver core when the link can be safely
694 * deleted. Namely, setting one of them in @flags indicates to the driver core
695 * that the link is not going to be used (by the given caller of this function)
696 * after unbinding the consumer or supplier driver, respectively, from its
697 * device, so the link can be deleted at that point. If none of them is set,
698 * the link will be maintained until one of the devices pointed to by it (either
699 * the consumer or the supplier) is unregistered.
701 * Also, if DL_FLAG_STATELESS, DL_FLAG_AUTOREMOVE_CONSUMER and
702 * DL_FLAG_AUTOREMOVE_SUPPLIER are not set in @flags (that is, a persistent
703 * managed device link is being added), the DL_FLAG_AUTOPROBE_CONSUMER flag can
704 * be used to request the driver core to automatically probe for a consumer
705 * driver after successfully binding a driver to the supplier device.
707 * The combination of DL_FLAG_STATELESS and one of DL_FLAG_AUTOREMOVE_CONSUMER,
708 * DL_FLAG_AUTOREMOVE_SUPPLIER, or DL_FLAG_AUTOPROBE_CONSUMER set in @flags at
709 * the same time is invalid and will cause NULL to be returned upfront.
710 * However, if a device link between the given @consumer and @supplier pair
711 * exists already when this function is called for them, the existing link will
712 * be returned regardless of its current type and status (the link's flags may
713 * be modified then). The caller of this function is then expected to treat
714 * the link as though it has just been created, so (in particular) if
715 * DL_FLAG_STATELESS was passed in @flags, the link needs to be released
716 * explicitly when not needed any more (as stated above).
718 * A side effect of the link creation is re-ordering of dpm_list and the
719 * devices_kset list by moving the consumer device and all devices depending
720 * on it to the ends of these lists (that does not happen to devices that have
721 * not been registered when this function is called).
723 * The supplier device is required to be registered when this function is called
724 * and NULL will be returned if that is not the case. The consumer device need
725 * not be registered, however.
727 struct device_link *device_link_add(struct device *consumer,
728 struct device *supplier, u32 flags)
730 struct device_link *link;
732 if (!consumer || !supplier || consumer == supplier ||
733 flags & ~DL_ADD_VALID_FLAGS ||
734 (flags & DL_FLAG_STATELESS && flags & DL_MANAGED_LINK_FLAGS) ||
735 (flags & DL_FLAG_AUTOPROBE_CONSUMER &&
736 flags & (DL_FLAG_AUTOREMOVE_CONSUMER |
737 DL_FLAG_AUTOREMOVE_SUPPLIER)))
740 if (flags & DL_FLAG_PM_RUNTIME && flags & DL_FLAG_RPM_ACTIVE) {
741 if (pm_runtime_get_sync(supplier) < 0) {
742 pm_runtime_put_noidle(supplier);
747 if (!(flags & DL_FLAG_STATELESS))
748 flags |= DL_FLAG_MANAGED;
750 if (flags & DL_FLAG_SYNC_STATE_ONLY &&
751 !device_link_flag_is_sync_state_only(flags))
754 device_links_write_lock();
758 * If the supplier has not been fully registered yet or there is a
759 * reverse (non-SYNC_STATE_ONLY) dependency between the consumer and
760 * the supplier already in the graph, return NULL. If the link is a
761 * SYNC_STATE_ONLY link, we don't check for reverse dependencies
762 * because it only affects sync_state() callbacks.
764 if (!device_pm_initialized(supplier)
765 || (!(flags & DL_FLAG_SYNC_STATE_ONLY) &&
766 device_is_dependent(consumer, supplier))) {
772 * SYNC_STATE_ONLY links are useless once a consumer device has probed.
773 * So, only create it if the consumer hasn't probed yet.
775 if (flags & DL_FLAG_SYNC_STATE_ONLY &&
776 consumer->links.status != DL_DEV_NO_DRIVER &&
777 consumer->links.status != DL_DEV_PROBING) {
783 * DL_FLAG_AUTOREMOVE_SUPPLIER indicates that the link will be needed
784 * longer than for DL_FLAG_AUTOREMOVE_CONSUMER and setting them both
785 * together doesn't make sense, so prefer DL_FLAG_AUTOREMOVE_SUPPLIER.
787 if (flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
788 flags &= ~DL_FLAG_AUTOREMOVE_CONSUMER;
790 list_for_each_entry(link, &supplier->links.consumers, s_node) {
791 if (link->consumer != consumer)
794 if (link->flags & DL_FLAG_INFERRED &&
795 !(flags & DL_FLAG_INFERRED))
796 link->flags &= ~DL_FLAG_INFERRED;
798 if (flags & DL_FLAG_PM_RUNTIME) {
799 if (!(link->flags & DL_FLAG_PM_RUNTIME)) {
800 pm_runtime_new_link(consumer);
801 link->flags |= DL_FLAG_PM_RUNTIME;
803 if (flags & DL_FLAG_RPM_ACTIVE)
804 refcount_inc(&link->rpm_active);
807 if (flags & DL_FLAG_STATELESS) {
808 kref_get(&link->kref);
809 if (link->flags & DL_FLAG_SYNC_STATE_ONLY &&
810 !(link->flags & DL_FLAG_STATELESS)) {
811 link->flags |= DL_FLAG_STATELESS;
814 link->flags |= DL_FLAG_STATELESS;
820 * If the life time of the link following from the new flags is
821 * longer than indicated by the flags of the existing link,
822 * update the existing link to stay around longer.
824 if (flags & DL_FLAG_AUTOREMOVE_SUPPLIER) {
825 if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER) {
826 link->flags &= ~DL_FLAG_AUTOREMOVE_CONSUMER;
827 link->flags |= DL_FLAG_AUTOREMOVE_SUPPLIER;
829 } else if (!(flags & DL_FLAG_AUTOREMOVE_CONSUMER)) {
830 link->flags &= ~(DL_FLAG_AUTOREMOVE_CONSUMER |
831 DL_FLAG_AUTOREMOVE_SUPPLIER);
833 if (!(link->flags & DL_FLAG_MANAGED)) {
834 kref_get(&link->kref);
835 link->flags |= DL_FLAG_MANAGED;
836 device_link_init_status(link, consumer, supplier);
838 if (link->flags & DL_FLAG_SYNC_STATE_ONLY &&
839 !(flags & DL_FLAG_SYNC_STATE_ONLY)) {
840 link->flags &= ~DL_FLAG_SYNC_STATE_ONLY;
847 link = kzalloc(sizeof(*link), GFP_KERNEL);
851 refcount_set(&link->rpm_active, 1);
853 get_device(supplier);
854 link->supplier = supplier;
855 INIT_LIST_HEAD(&link->s_node);
856 get_device(consumer);
857 link->consumer = consumer;
858 INIT_LIST_HEAD(&link->c_node);
860 kref_init(&link->kref);
862 link->link_dev.class = &devlink_class;
863 device_set_pm_not_required(&link->link_dev);
864 dev_set_name(&link->link_dev, "%s:%s--%s:%s",
865 dev_bus_name(supplier), dev_name(supplier),
866 dev_bus_name(consumer), dev_name(consumer));
867 if (device_register(&link->link_dev)) {
868 put_device(&link->link_dev);
873 if (flags & DL_FLAG_PM_RUNTIME) {
874 if (flags & DL_FLAG_RPM_ACTIVE)
875 refcount_inc(&link->rpm_active);
877 pm_runtime_new_link(consumer);
880 /* Determine the initial link state. */
881 if (flags & DL_FLAG_STATELESS)
882 link->status = DL_STATE_NONE;
884 device_link_init_status(link, consumer, supplier);
887 * Some callers expect the link creation during consumer driver probe to
888 * resume the supplier even without DL_FLAG_RPM_ACTIVE.
890 if (link->status == DL_STATE_CONSUMER_PROBE &&
891 flags & DL_FLAG_PM_RUNTIME)
892 pm_runtime_resume(supplier);
894 list_add_tail_rcu(&link->s_node, &supplier->links.consumers);
895 list_add_tail_rcu(&link->c_node, &consumer->links.suppliers);
897 if (flags & DL_FLAG_SYNC_STATE_ONLY) {
899 "Linked as a sync state only consumer to %s\n",
906 * Move the consumer and all of the devices depending on it to the end
907 * of dpm_list and the devices_kset list.
909 * It is necessary to hold dpm_list locked throughout all that or else
910 * we may end up suspending with a wrong ordering of it.
912 device_reorder_to_tail(consumer, NULL);
914 dev_dbg(consumer, "Linked as a consumer to %s\n", dev_name(supplier));
918 device_links_write_unlock();
920 if ((flags & DL_FLAG_PM_RUNTIME && flags & DL_FLAG_RPM_ACTIVE) && !link)
921 pm_runtime_put(supplier);
925 EXPORT_SYMBOL_GPL(device_link_add);
927 static void __device_link_del(struct kref *kref)
929 struct device_link *link = container_of(kref, struct device_link, kref);
931 dev_dbg(link->consumer, "Dropping the link to %s\n",
932 dev_name(link->supplier));
934 pm_runtime_drop_link(link);
936 device_link_remove_from_lists(link);
937 device_unregister(&link->link_dev);
940 static void device_link_put_kref(struct device_link *link)
942 if (link->flags & DL_FLAG_STATELESS)
943 kref_put(&link->kref, __device_link_del);
944 else if (!device_is_registered(link->consumer))
945 __device_link_del(&link->kref);
947 WARN(1, "Unable to drop a managed device link reference\n");
951 * device_link_del - Delete a stateless link between two devices.
952 * @link: Device link to delete.
954 * The caller must ensure proper synchronization of this function with runtime
955 * PM. If the link was added multiple times, it needs to be deleted as often.
956 * Care is required for hotplugged devices: Their links are purged on removal
957 * and calling device_link_del() is then no longer allowed.
959 void device_link_del(struct device_link *link)
961 device_links_write_lock();
962 device_link_put_kref(link);
963 device_links_write_unlock();
965 EXPORT_SYMBOL_GPL(device_link_del);
968 * device_link_remove - Delete a stateless link between two devices.
969 * @consumer: Consumer end of the link.
970 * @supplier: Supplier end of the link.
972 * The caller must ensure proper synchronization of this function with runtime
975 void device_link_remove(void *consumer, struct device *supplier)
977 struct device_link *link;
979 if (WARN_ON(consumer == supplier))
982 device_links_write_lock();
984 list_for_each_entry(link, &supplier->links.consumers, s_node) {
985 if (link->consumer == consumer) {
986 device_link_put_kref(link);
991 device_links_write_unlock();
993 EXPORT_SYMBOL_GPL(device_link_remove);
995 static void device_links_missing_supplier(struct device *dev)
997 struct device_link *link;
999 list_for_each_entry(link, &dev->links.suppliers, c_node) {
1000 if (link->status != DL_STATE_CONSUMER_PROBE)
1003 if (link->supplier->links.status == DL_DEV_DRIVER_BOUND) {
1004 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
1006 WARN_ON(!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
1007 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1012 static bool dev_is_best_effort(struct device *dev)
1014 return (fw_devlink_best_effort && dev->can_match) ||
1015 (dev->fwnode && (dev->fwnode->flags & FWNODE_FLAG_BEST_EFFORT));
1018 static struct fwnode_handle *fwnode_links_check_suppliers(
1019 struct fwnode_handle *fwnode)
1021 struct fwnode_link *link;
1023 if (!fwnode || fw_devlink_is_permissive())
1026 list_for_each_entry(link, &fwnode->suppliers, c_hook)
1027 if (!(link->flags & FWLINK_FLAG_CYCLE))
1028 return link->supplier;
1034 * device_links_check_suppliers - Check presence of supplier drivers.
1035 * @dev: Consumer device.
1037 * Check links from this device to any suppliers. Walk the list of the device's
1038 * links to suppliers and see if all of them are available. If not, simply
1039 * return -EPROBE_DEFER.
1041 * We need to guarantee that the supplier will not go away after the check has
1042 * been positive here. It only can go away in __device_release_driver() and
1043 * that function checks the device's links to consumers. This means we need to
1044 * mark the link as "consumer probe in progress" to make the supplier removal
1045 * wait for us to complete (or bad things may happen).
1047 * Links without the DL_FLAG_MANAGED flag set are ignored.
1049 int device_links_check_suppliers(struct device *dev)
1051 struct device_link *link;
1052 int ret = 0, fwnode_ret = 0;
1053 struct fwnode_handle *sup_fw;
1056 * Device waiting for supplier to become available is not allowed to
1059 mutex_lock(&fwnode_link_lock);
1060 sup_fw = fwnode_links_check_suppliers(dev->fwnode);
1062 if (!dev_is_best_effort(dev)) {
1063 fwnode_ret = -EPROBE_DEFER;
1064 dev_err_probe(dev, -EPROBE_DEFER,
1065 "wait for supplier %pfwP\n", sup_fw);
1067 fwnode_ret = -EAGAIN;
1070 mutex_unlock(&fwnode_link_lock);
1071 if (fwnode_ret == -EPROBE_DEFER)
1074 device_links_write_lock();
1076 list_for_each_entry(link, &dev->links.suppliers, c_node) {
1077 if (!(link->flags & DL_FLAG_MANAGED))
1080 if (link->status != DL_STATE_AVAILABLE &&
1081 !(link->flags & DL_FLAG_SYNC_STATE_ONLY)) {
1083 if (dev_is_best_effort(dev) &&
1084 link->flags & DL_FLAG_INFERRED &&
1085 !link->supplier->can_match) {
1090 device_links_missing_supplier(dev);
1091 dev_err_probe(dev, -EPROBE_DEFER,
1092 "supplier %s not ready\n",
1093 dev_name(link->supplier));
1094 ret = -EPROBE_DEFER;
1097 WRITE_ONCE(link->status, DL_STATE_CONSUMER_PROBE);
1099 dev->links.status = DL_DEV_PROBING;
1101 device_links_write_unlock();
1103 return ret ? ret : fwnode_ret;
1107 * __device_links_queue_sync_state - Queue a device for sync_state() callback
1108 * @dev: Device to call sync_state() on
1109 * @list: List head to queue the @dev on
1111 * Queues a device for a sync_state() callback when the device links write lock
1112 * isn't held. This allows the sync_state() execution flow to use device links
1113 * APIs. The caller must ensure this function is called with
1114 * device_links_write_lock() held.
1116 * This function does a get_device() to make sure the device is not freed while
1119 * So the caller must also ensure that device_links_flush_sync_list() is called
1120 * as soon as the caller releases device_links_write_lock(). This is necessary
1121 * to make sure the sync_state() is called in a timely fashion and the
1122 * put_device() is called on this device.
1124 static void __device_links_queue_sync_state(struct device *dev,
1125 struct list_head *list)
1127 struct device_link *link;
1129 if (!dev_has_sync_state(dev))
1131 if (dev->state_synced)
1134 list_for_each_entry(link, &dev->links.consumers, s_node) {
1135 if (!(link->flags & DL_FLAG_MANAGED))
1137 if (link->status != DL_STATE_ACTIVE)
1142 * Set the flag here to avoid adding the same device to a list more
1143 * than once. This can happen if new consumers get added to the device
1144 * and probed before the list is flushed.
1146 dev->state_synced = true;
1148 if (WARN_ON(!list_empty(&dev->links.defer_sync)))
1152 list_add_tail(&dev->links.defer_sync, list);
1156 * device_links_flush_sync_list - Call sync_state() on a list of devices
1157 * @list: List of devices to call sync_state() on
1158 * @dont_lock_dev: Device for which lock is already held by the caller
1160 * Calls sync_state() on all the devices that have been queued for it. This
1161 * function is used in conjunction with __device_links_queue_sync_state(). The
1162 * @dont_lock_dev parameter is useful when this function is called from a
1163 * context where a device lock is already held.
1165 static void device_links_flush_sync_list(struct list_head *list,
1166 struct device *dont_lock_dev)
1168 struct device *dev, *tmp;
1170 list_for_each_entry_safe(dev, tmp, list, links.defer_sync) {
1171 list_del_init(&dev->links.defer_sync);
1173 if (dev != dont_lock_dev)
1176 if (dev->bus->sync_state)
1177 dev->bus->sync_state(dev);
1178 else if (dev->driver && dev->driver->sync_state)
1179 dev->driver->sync_state(dev);
1181 if (dev != dont_lock_dev)
1188 void device_links_supplier_sync_state_pause(void)
1190 device_links_write_lock();
1191 defer_sync_state_count++;
1192 device_links_write_unlock();
1195 void device_links_supplier_sync_state_resume(void)
1197 struct device *dev, *tmp;
1198 LIST_HEAD(sync_list);
1200 device_links_write_lock();
1201 if (!defer_sync_state_count) {
1202 WARN(true, "Unmatched sync_state pause/resume!");
1205 defer_sync_state_count--;
1206 if (defer_sync_state_count)
1209 list_for_each_entry_safe(dev, tmp, &deferred_sync, links.defer_sync) {
1211 * Delete from deferred_sync list before queuing it to
1212 * sync_list because defer_sync is used for both lists.
1214 list_del_init(&dev->links.defer_sync);
1215 __device_links_queue_sync_state(dev, &sync_list);
1218 device_links_write_unlock();
1220 device_links_flush_sync_list(&sync_list, NULL);
1223 static int sync_state_resume_initcall(void)
1225 device_links_supplier_sync_state_resume();
1228 late_initcall(sync_state_resume_initcall);
1230 static void __device_links_supplier_defer_sync(struct device *sup)
1232 if (list_empty(&sup->links.defer_sync) && dev_has_sync_state(sup))
1233 list_add_tail(&sup->links.defer_sync, &deferred_sync);
1236 static void device_link_drop_managed(struct device_link *link)
1238 link->flags &= ~DL_FLAG_MANAGED;
1239 WRITE_ONCE(link->status, DL_STATE_NONE);
1240 kref_put(&link->kref, __device_link_del);
1243 static ssize_t waiting_for_supplier_show(struct device *dev,
1244 struct device_attribute *attr,
1250 mutex_lock(&fwnode_link_lock);
1251 val = !!fwnode_links_check_suppliers(dev->fwnode);
1252 mutex_unlock(&fwnode_link_lock);
1254 return sysfs_emit(buf, "%u\n", val);
1256 static DEVICE_ATTR_RO(waiting_for_supplier);
1259 * device_links_force_bind - Prepares device to be force bound
1260 * @dev: Consumer device.
1262 * device_bind_driver() force binds a device to a driver without calling any
1263 * driver probe functions. So the consumer really isn't going to wait for any
1264 * supplier before it's bound to the driver. We still want the device link
1265 * states to be sensible when this happens.
1267 * In preparation for device_bind_driver(), this function goes through each
1268 * supplier device links and checks if the supplier is bound. If it is, then
1269 * the device link status is set to CONSUMER_PROBE. Otherwise, the device link
1270 * is dropped. Links without the DL_FLAG_MANAGED flag set are ignored.
1272 void device_links_force_bind(struct device *dev)
1274 struct device_link *link, *ln;
1276 device_links_write_lock();
1278 list_for_each_entry_safe(link, ln, &dev->links.suppliers, c_node) {
1279 if (!(link->flags & DL_FLAG_MANAGED))
1282 if (link->status != DL_STATE_AVAILABLE) {
1283 device_link_drop_managed(link);
1286 WRITE_ONCE(link->status, DL_STATE_CONSUMER_PROBE);
1288 dev->links.status = DL_DEV_PROBING;
1290 device_links_write_unlock();
1294 * device_links_driver_bound - Update device links after probing its driver.
1295 * @dev: Device to update the links for.
1297 * The probe has been successful, so update links from this device to any
1298 * consumers by changing their status to "available".
1300 * Also change the status of @dev's links to suppliers to "active".
1302 * Links without the DL_FLAG_MANAGED flag set are ignored.
1304 void device_links_driver_bound(struct device *dev)
1306 struct device_link *link, *ln;
1307 LIST_HEAD(sync_list);
1310 * If a device binds successfully, it's expected to have created all
1311 * the device links it needs to or make new device links as it needs
1312 * them. So, fw_devlink no longer needs to create device links to any
1313 * of the device's suppliers.
1315 * Also, if a child firmware node of this bound device is not added as a
1316 * device by now, assume it is never going to be added. Make this bound
1317 * device the fallback supplier to the dangling consumers of the child
1318 * firmware node because this bound device is probably implementing the
1319 * child firmware node functionality and we don't want the dangling
1320 * consumers to defer probe indefinitely waiting for a device for the
1321 * child firmware node.
1323 if (dev->fwnode && dev->fwnode->dev == dev) {
1324 struct fwnode_handle *child;
1325 fwnode_links_purge_suppliers(dev->fwnode);
1326 mutex_lock(&fwnode_link_lock);
1327 fwnode_for_each_available_child_node(dev->fwnode, child)
1328 __fw_devlink_pickup_dangling_consumers(child,
1330 __fw_devlink_link_to_consumers(dev);
1331 mutex_unlock(&fwnode_link_lock);
1333 device_remove_file(dev, &dev_attr_waiting_for_supplier);
1335 device_links_write_lock();
1337 list_for_each_entry(link, &dev->links.consumers, s_node) {
1338 if (!(link->flags & DL_FLAG_MANAGED))
1342 * Links created during consumer probe may be in the "consumer
1343 * probe" state to start with if the supplier is still probing
1344 * when they are created and they may become "active" if the
1345 * consumer probe returns first. Skip them here.
1347 if (link->status == DL_STATE_CONSUMER_PROBE ||
1348 link->status == DL_STATE_ACTIVE)
1351 WARN_ON(link->status != DL_STATE_DORMANT);
1352 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
1354 if (link->flags & DL_FLAG_AUTOPROBE_CONSUMER)
1355 driver_deferred_probe_add(link->consumer);
1358 if (defer_sync_state_count)
1359 __device_links_supplier_defer_sync(dev);
1361 __device_links_queue_sync_state(dev, &sync_list);
1363 list_for_each_entry_safe(link, ln, &dev->links.suppliers, c_node) {
1364 struct device *supplier;
1366 if (!(link->flags & DL_FLAG_MANAGED))
1369 supplier = link->supplier;
1370 if (link->flags & DL_FLAG_SYNC_STATE_ONLY) {
1372 * When DL_FLAG_SYNC_STATE_ONLY is set, it means no
1373 * other DL_MANAGED_LINK_FLAGS have been set. So, it's
1374 * save to drop the managed link completely.
1376 device_link_drop_managed(link);
1377 } else if (dev_is_best_effort(dev) &&
1378 link->flags & DL_FLAG_INFERRED &&
1379 link->status != DL_STATE_CONSUMER_PROBE &&
1380 !link->supplier->can_match) {
1382 * When dev_is_best_effort() is true, we ignore device
1383 * links to suppliers that don't have a driver. If the
1384 * consumer device still managed to probe, there's no
1385 * point in maintaining a device link in a weird state
1386 * (consumer probed before supplier). So delete it.
1388 device_link_drop_managed(link);
1390 WARN_ON(link->status != DL_STATE_CONSUMER_PROBE);
1391 WRITE_ONCE(link->status, DL_STATE_ACTIVE);
1395 * This needs to be done even for the deleted
1396 * DL_FLAG_SYNC_STATE_ONLY device link in case it was the last
1397 * device link that was preventing the supplier from getting a
1398 * sync_state() call.
1400 if (defer_sync_state_count)
1401 __device_links_supplier_defer_sync(supplier);
1403 __device_links_queue_sync_state(supplier, &sync_list);
1406 dev->links.status = DL_DEV_DRIVER_BOUND;
1408 device_links_write_unlock();
1410 device_links_flush_sync_list(&sync_list, dev);
1414 * __device_links_no_driver - Update links of a device without a driver.
1415 * @dev: Device without a drvier.
1417 * Delete all non-persistent links from this device to any suppliers.
1419 * Persistent links stay around, but their status is changed to "available",
1420 * unless they already are in the "supplier unbind in progress" state in which
1421 * case they need not be updated.
1423 * Links without the DL_FLAG_MANAGED flag set are ignored.
1425 static void __device_links_no_driver(struct device *dev)
1427 struct device_link *link, *ln;
1429 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
1430 if (!(link->flags & DL_FLAG_MANAGED))
1433 if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER) {
1434 device_link_drop_managed(link);
1438 if (link->status != DL_STATE_CONSUMER_PROBE &&
1439 link->status != DL_STATE_ACTIVE)
1442 if (link->supplier->links.status == DL_DEV_DRIVER_BOUND) {
1443 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
1445 WARN_ON(!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
1446 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1450 dev->links.status = DL_DEV_NO_DRIVER;
1454 * device_links_no_driver - Update links after failing driver probe.
1455 * @dev: Device whose driver has just failed to probe.
1457 * Clean up leftover links to consumers for @dev and invoke
1458 * %__device_links_no_driver() to update links to suppliers for it as
1461 * Links without the DL_FLAG_MANAGED flag set are ignored.
1463 void device_links_no_driver(struct device *dev)
1465 struct device_link *link;
1467 device_links_write_lock();
1469 list_for_each_entry(link, &dev->links.consumers, s_node) {
1470 if (!(link->flags & DL_FLAG_MANAGED))
1474 * The probe has failed, so if the status of the link is
1475 * "consumer probe" or "active", it must have been added by
1476 * a probing consumer while this device was still probing.
1477 * Change its state to "dormant", as it represents a valid
1478 * relationship, but it is not functionally meaningful.
1480 if (link->status == DL_STATE_CONSUMER_PROBE ||
1481 link->status == DL_STATE_ACTIVE)
1482 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1485 __device_links_no_driver(dev);
1487 device_links_write_unlock();
1491 * device_links_driver_cleanup - Update links after driver removal.
1492 * @dev: Device whose driver has just gone away.
1494 * Update links to consumers for @dev by changing their status to "dormant" and
1495 * invoke %__device_links_no_driver() to update links to suppliers for it as
1498 * Links without the DL_FLAG_MANAGED flag set are ignored.
1500 void device_links_driver_cleanup(struct device *dev)
1502 struct device_link *link, *ln;
1504 device_links_write_lock();
1506 list_for_each_entry_safe(link, ln, &dev->links.consumers, s_node) {
1507 if (!(link->flags & DL_FLAG_MANAGED))
1510 WARN_ON(link->flags & DL_FLAG_AUTOREMOVE_CONSUMER);
1511 WARN_ON(link->status != DL_STATE_SUPPLIER_UNBIND);
1514 * autoremove the links between this @dev and its consumer
1515 * devices that are not active, i.e. where the link state
1516 * has moved to DL_STATE_SUPPLIER_UNBIND.
1518 if (link->status == DL_STATE_SUPPLIER_UNBIND &&
1519 link->flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
1520 device_link_drop_managed(link);
1522 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1525 list_del_init(&dev->links.defer_sync);
1526 __device_links_no_driver(dev);
1528 device_links_write_unlock();
1532 * device_links_busy - Check if there are any busy links to consumers.
1533 * @dev: Device to check.
1535 * Check each consumer of the device and return 'true' if its link's status
1536 * is one of "consumer probe" or "active" (meaning that the given consumer is
1537 * probing right now or its driver is present). Otherwise, change the link
1538 * state to "supplier unbind" to prevent the consumer from being probed
1539 * successfully going forward.
1541 * Return 'false' if there are no probing or active consumers.
1543 * Links without the DL_FLAG_MANAGED flag set are ignored.
1545 bool device_links_busy(struct device *dev)
1547 struct device_link *link;
1550 device_links_write_lock();
1552 list_for_each_entry(link, &dev->links.consumers, s_node) {
1553 if (!(link->flags & DL_FLAG_MANAGED))
1556 if (link->status == DL_STATE_CONSUMER_PROBE
1557 || link->status == DL_STATE_ACTIVE) {
1561 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
1564 dev->links.status = DL_DEV_UNBINDING;
1566 device_links_write_unlock();
1571 * device_links_unbind_consumers - Force unbind consumers of the given device.
1572 * @dev: Device to unbind the consumers of.
1574 * Walk the list of links to consumers for @dev and if any of them is in the
1575 * "consumer probe" state, wait for all device probes in progress to complete
1578 * If that's not the case, change the status of the link to "supplier unbind"
1579 * and check if the link was in the "active" state. If so, force the consumer
1580 * driver to unbind and start over (the consumer will not re-probe as we have
1581 * changed the state of the link already).
1583 * Links without the DL_FLAG_MANAGED flag set are ignored.
1585 void device_links_unbind_consumers(struct device *dev)
1587 struct device_link *link;
1590 device_links_write_lock();
1592 list_for_each_entry(link, &dev->links.consumers, s_node) {
1593 enum device_link_state status;
1595 if (!(link->flags & DL_FLAG_MANAGED) ||
1596 link->flags & DL_FLAG_SYNC_STATE_ONLY)
1599 status = link->status;
1600 if (status == DL_STATE_CONSUMER_PROBE) {
1601 device_links_write_unlock();
1603 wait_for_device_probe();
1606 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
1607 if (status == DL_STATE_ACTIVE) {
1608 struct device *consumer = link->consumer;
1610 get_device(consumer);
1612 device_links_write_unlock();
1614 device_release_driver_internal(consumer, NULL,
1616 put_device(consumer);
1621 device_links_write_unlock();
1625 * device_links_purge - Delete existing links to other devices.
1626 * @dev: Target device.
1628 static void device_links_purge(struct device *dev)
1630 struct device_link *link, *ln;
1632 if (dev->class == &devlink_class)
1636 * Delete all of the remaining links from this device to any other
1637 * devices (either consumers or suppliers).
1639 device_links_write_lock();
1641 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
1642 WARN_ON(link->status == DL_STATE_ACTIVE);
1643 __device_link_del(&link->kref);
1646 list_for_each_entry_safe_reverse(link, ln, &dev->links.consumers, s_node) {
1647 WARN_ON(link->status != DL_STATE_DORMANT &&
1648 link->status != DL_STATE_NONE);
1649 __device_link_del(&link->kref);
1652 device_links_write_unlock();
1655 #define FW_DEVLINK_FLAGS_PERMISSIVE (DL_FLAG_INFERRED | \
1656 DL_FLAG_SYNC_STATE_ONLY)
1657 #define FW_DEVLINK_FLAGS_ON (DL_FLAG_INFERRED | \
1658 DL_FLAG_AUTOPROBE_CONSUMER)
1659 #define FW_DEVLINK_FLAGS_RPM (FW_DEVLINK_FLAGS_ON | \
1662 static u32 fw_devlink_flags = FW_DEVLINK_FLAGS_ON;
1663 static int __init fw_devlink_setup(char *arg)
1668 if (strcmp(arg, "off") == 0) {
1669 fw_devlink_flags = 0;
1670 } else if (strcmp(arg, "permissive") == 0) {
1671 fw_devlink_flags = FW_DEVLINK_FLAGS_PERMISSIVE;
1672 } else if (strcmp(arg, "on") == 0) {
1673 fw_devlink_flags = FW_DEVLINK_FLAGS_ON;
1674 } else if (strcmp(arg, "rpm") == 0) {
1675 fw_devlink_flags = FW_DEVLINK_FLAGS_RPM;
1679 early_param("fw_devlink", fw_devlink_setup);
1681 static bool fw_devlink_strict;
1682 static int __init fw_devlink_strict_setup(char *arg)
1684 return kstrtobool(arg, &fw_devlink_strict);
1686 early_param("fw_devlink.strict", fw_devlink_strict_setup);
1688 static inline u32 fw_devlink_get_flags(u8 fwlink_flags)
1690 if (fwlink_flags & FWLINK_FLAG_CYCLE)
1691 return FW_DEVLINK_FLAGS_PERMISSIVE | DL_FLAG_CYCLE;
1693 return fw_devlink_flags;
1696 static bool fw_devlink_is_permissive(void)
1698 return fw_devlink_flags == FW_DEVLINK_FLAGS_PERMISSIVE;
1701 bool fw_devlink_is_strict(void)
1703 return fw_devlink_strict && !fw_devlink_is_permissive();
1706 static void fw_devlink_parse_fwnode(struct fwnode_handle *fwnode)
1708 if (fwnode->flags & FWNODE_FLAG_LINKS_ADDED)
1711 fwnode_call_int_op(fwnode, add_links);
1712 fwnode->flags |= FWNODE_FLAG_LINKS_ADDED;
1715 static void fw_devlink_parse_fwtree(struct fwnode_handle *fwnode)
1717 struct fwnode_handle *child = NULL;
1719 fw_devlink_parse_fwnode(fwnode);
1721 while ((child = fwnode_get_next_available_child_node(fwnode, child)))
1722 fw_devlink_parse_fwtree(child);
1725 static void fw_devlink_relax_link(struct device_link *link)
1727 if (!(link->flags & DL_FLAG_INFERRED))
1730 if (device_link_flag_is_sync_state_only(link->flags))
1733 pm_runtime_drop_link(link);
1734 link->flags = DL_FLAG_MANAGED | FW_DEVLINK_FLAGS_PERMISSIVE;
1735 dev_dbg(link->consumer, "Relaxing link with %s\n",
1736 dev_name(link->supplier));
1739 static int fw_devlink_no_driver(struct device *dev, void *data)
1741 struct device_link *link = to_devlink(dev);
1743 if (!link->supplier->can_match)
1744 fw_devlink_relax_link(link);
1749 void fw_devlink_drivers_done(void)
1751 fw_devlink_drv_reg_done = true;
1752 device_links_write_lock();
1753 class_for_each_device(&devlink_class, NULL, NULL,
1754 fw_devlink_no_driver);
1755 device_links_write_unlock();
1759 * wait_for_init_devices_probe - Try to probe any device needed for init
1761 * Some devices might need to be probed and bound successfully before the kernel
1762 * boot sequence can finish and move on to init/userspace. For example, a
1763 * network interface might need to be bound to be able to mount a NFS rootfs.
1765 * With fw_devlink=on by default, some of these devices might be blocked from
1766 * probing because they are waiting on a optional supplier that doesn't have a
1767 * driver. While fw_devlink will eventually identify such devices and unblock
1768 * the probing automatically, it might be too late by the time it unblocks the
1769 * probing of devices. For example, the IP4 autoconfig might timeout before
1770 * fw_devlink unblocks probing of the network interface.
1772 * This function is available to temporarily try and probe all devices that have
1773 * a driver even if some of their suppliers haven't been added or don't have
1776 * The drivers can then decide which of the suppliers are optional vs mandatory
1777 * and probe the device if possible. By the time this function returns, all such
1778 * "best effort" probes are guaranteed to be completed. If a device successfully
1779 * probes in this mode, we delete all fw_devlink discovered dependencies of that
1780 * device where the supplier hasn't yet probed successfully because they have to
1781 * be optional dependencies.
1783 * Any devices that didn't successfully probe go back to being treated as if
1784 * this function was never called.
1786 * This also means that some devices that aren't needed for init and could have
1787 * waited for their optional supplier to probe (when the supplier's module is
1788 * loaded later on) would end up probing prematurely with limited functionality.
1789 * So call this function only when boot would fail without it.
1791 void __init wait_for_init_devices_probe(void)
1793 if (!fw_devlink_flags || fw_devlink_is_permissive())
1797 * Wait for all ongoing probes to finish so that the "best effort" is
1798 * only applied to devices that can't probe otherwise.
1800 wait_for_device_probe();
1802 pr_info("Trying to probe devices needed for running init ...\n");
1803 fw_devlink_best_effort = true;
1804 driver_deferred_probe_trigger();
1807 * Wait for all "best effort" probes to finish before going back to
1808 * normal enforcement.
1810 wait_for_device_probe();
1811 fw_devlink_best_effort = false;
1814 static void fw_devlink_unblock_consumers(struct device *dev)
1816 struct device_link *link;
1818 if (!fw_devlink_flags || fw_devlink_is_permissive())
1821 device_links_write_lock();
1822 list_for_each_entry(link, &dev->links.consumers, s_node)
1823 fw_devlink_relax_link(link);
1824 device_links_write_unlock();
1828 static bool fwnode_init_without_drv(struct fwnode_handle *fwnode)
1833 if (!(fwnode->flags & FWNODE_FLAG_INITIALIZED))
1836 dev = get_dev_from_fwnode(fwnode);
1837 ret = !dev || dev->links.status == DL_DEV_NO_DRIVER;
1843 static bool fwnode_ancestor_init_without_drv(struct fwnode_handle *fwnode)
1845 struct fwnode_handle *parent;
1847 fwnode_for_each_parent_node(fwnode, parent) {
1848 if (fwnode_init_without_drv(parent)) {
1849 fwnode_handle_put(parent);
1858 * __fw_devlink_relax_cycles - Relax and mark dependency cycles.
1859 * @con: Potential consumer device.
1860 * @sup_handle: Potential supplier's fwnode.
1862 * Needs to be called with fwnode_lock and device link lock held.
1864 * Check if @sup_handle or any of its ancestors or suppliers direct/indirectly
1865 * depend on @con. This function can detect multiple cyles between @sup_handle
1866 * and @con. When such dependency cycles are found, convert all device links
1867 * created solely by fw_devlink into SYNC_STATE_ONLY device links. Also, mark
1868 * all fwnode links in the cycle with FWLINK_FLAG_CYCLE so that when they are
1869 * converted into a device link in the future, they are created as
1870 * SYNC_STATE_ONLY device links. This is the equivalent of doing
1871 * fw_devlink=permissive just between the devices in the cycle. We need to do
1872 * this because, at this point, fw_devlink can't tell which of these
1873 * dependencies is not a real dependency.
1875 * Return true if one or more cycles were found. Otherwise, return false.
1877 static bool __fw_devlink_relax_cycles(struct device *con,
1878 struct fwnode_handle *sup_handle)
1880 struct device *sup_dev = NULL, *par_dev = NULL;
1881 struct fwnode_link *link;
1882 struct device_link *dev_link;
1889 * We aren't trying to find all cycles. Just a cycle between con and
1892 if (sup_handle->flags & FWNODE_FLAG_VISITED)
1895 sup_handle->flags |= FWNODE_FLAG_VISITED;
1897 sup_dev = get_dev_from_fwnode(sup_handle);
1899 /* Termination condition. */
1900 if (sup_dev == con) {
1906 * If sup_dev is bound to a driver and @con hasn't started binding to a
1907 * driver, sup_dev can't be a consumer of @con. So, no need to check
1910 if (sup_dev && sup_dev->links.status == DL_DEV_DRIVER_BOUND &&
1911 con->links.status == DL_DEV_NO_DRIVER) {
1916 list_for_each_entry(link, &sup_handle->suppliers, c_hook) {
1917 if (__fw_devlink_relax_cycles(con, link->supplier)) {
1918 __fwnode_link_cycle(link);
1924 * Give priority to device parent over fwnode parent to account for any
1925 * quirks in how fwnodes are converted to devices.
1928 par_dev = get_device(sup_dev->parent);
1930 par_dev = fwnode_get_next_parent_dev(sup_handle);
1932 if (par_dev && __fw_devlink_relax_cycles(con, par_dev->fwnode))
1938 list_for_each_entry(dev_link, &sup_dev->links.suppliers, c_node) {
1940 * Ignore a SYNC_STATE_ONLY flag only if it wasn't marked as
1941 * such due to a cycle.
1943 if (device_link_flag_is_sync_state_only(dev_link->flags) &&
1944 !(dev_link->flags & DL_FLAG_CYCLE))
1947 if (__fw_devlink_relax_cycles(con,
1948 dev_link->supplier->fwnode)) {
1949 fw_devlink_relax_link(dev_link);
1950 dev_link->flags |= DL_FLAG_CYCLE;
1956 sup_handle->flags &= ~FWNODE_FLAG_VISITED;
1957 put_device(sup_dev);
1958 put_device(par_dev);
1963 * fw_devlink_create_devlink - Create a device link from a consumer to fwnode
1964 * @con: consumer device for the device link
1965 * @sup_handle: fwnode handle of supplier
1966 * @link: fwnode link that's being converted to a device link
1968 * This function will try to create a device link between the consumer device
1969 * @con and the supplier device represented by @sup_handle.
1971 * The supplier has to be provided as a fwnode because incorrect cycles in
1972 * fwnode links can sometimes cause the supplier device to never be created.
1973 * This function detects such cases and returns an error if it cannot create a
1974 * device link from the consumer to a missing supplier.
1977 * 0 on successfully creating a device link
1978 * -EINVAL if the device link cannot be created as expected
1979 * -EAGAIN if the device link cannot be created right now, but it may be
1980 * possible to do that in the future
1982 static int fw_devlink_create_devlink(struct device *con,
1983 struct fwnode_handle *sup_handle,
1984 struct fwnode_link *link)
1986 struct device *sup_dev;
1990 if (con->fwnode == link->consumer)
1991 flags = fw_devlink_get_flags(link->flags);
1993 flags = FW_DEVLINK_FLAGS_PERMISSIVE;
1996 * In some cases, a device P might also be a supplier to its child node
1997 * C. However, this would defer the probe of C until the probe of P
1998 * completes successfully. This is perfectly fine in the device driver
1999 * model. device_add() doesn't guarantee probe completion of the device
2000 * by the time it returns.
2002 * However, there are a few drivers that assume C will finish probing
2003 * as soon as it's added and before P finishes probing. So, we provide
2004 * a flag to let fw_devlink know not to delay the probe of C until the
2005 * probe of P completes successfully.
2007 * When such a flag is set, we can't create device links where P is the
2008 * supplier of C as that would delay the probe of C.
2010 if (sup_handle->flags & FWNODE_FLAG_NEEDS_CHILD_BOUND_ON_ADD &&
2011 fwnode_is_ancestor_of(sup_handle, con->fwnode))
2015 * SYNC_STATE_ONLY device links don't block probing and supports cycles.
2016 * So cycle detection isn't necessary and shouldn't be done.
2018 if (!(flags & DL_FLAG_SYNC_STATE_ONLY)) {
2019 device_links_write_lock();
2020 if (__fw_devlink_relax_cycles(con, sup_handle)) {
2021 __fwnode_link_cycle(link);
2022 flags = fw_devlink_get_flags(link->flags);
2023 dev_info(con, "Fixed dependency cycle(s) with %pfwf\n",
2026 device_links_write_unlock();
2029 if (sup_handle->flags & FWNODE_FLAG_NOT_DEVICE)
2030 sup_dev = fwnode_get_next_parent_dev(sup_handle);
2032 sup_dev = get_dev_from_fwnode(sup_handle);
2036 * If it's one of those drivers that don't actually bind to
2037 * their device using driver core, then don't wait on this
2038 * supplier device indefinitely.
2040 if (sup_dev->links.status == DL_DEV_NO_DRIVER &&
2041 sup_handle->flags & FWNODE_FLAG_INITIALIZED) {
2043 "Not linking %pfwf - dev might never probe\n",
2049 if (!device_link_add(con, sup_dev, flags)) {
2050 dev_err(con, "Failed to create device link with %s\n",
2059 * Supplier or supplier's ancestor already initialized without a struct
2060 * device or being probed by a driver.
2062 if (fwnode_init_without_drv(sup_handle) ||
2063 fwnode_ancestor_init_without_drv(sup_handle)) {
2064 dev_dbg(con, "Not linking %pfwf - might never become dev\n",
2071 put_device(sup_dev);
2076 * __fw_devlink_link_to_consumers - Create device links to consumers of a device
2077 * @dev: Device that needs to be linked to its consumers
2079 * This function looks at all the consumer fwnodes of @dev and creates device
2080 * links between the consumer device and @dev (supplier).
2082 * If the consumer device has not been added yet, then this function creates a
2083 * SYNC_STATE_ONLY link between @dev (supplier) and the closest ancestor device
2084 * of the consumer fwnode. This is necessary to make sure @dev doesn't get a
2085 * sync_state() callback before the real consumer device gets to be added and
2088 * Once device links are created from the real consumer to @dev (supplier), the
2089 * fwnode links are deleted.
2091 static void __fw_devlink_link_to_consumers(struct device *dev)
2093 struct fwnode_handle *fwnode = dev->fwnode;
2094 struct fwnode_link *link, *tmp;
2096 list_for_each_entry_safe(link, tmp, &fwnode->consumers, s_hook) {
2097 struct device *con_dev;
2098 bool own_link = true;
2101 con_dev = get_dev_from_fwnode(link->consumer);
2103 * If consumer device is not available yet, make a "proxy"
2104 * SYNC_STATE_ONLY link from the consumer's parent device to
2105 * the supplier device. This is necessary to make sure the
2106 * supplier doesn't get a sync_state() callback before the real
2107 * consumer can create a device link to the supplier.
2109 * This proxy link step is needed to handle the case where the
2110 * consumer's parent device is added before the supplier.
2113 con_dev = fwnode_get_next_parent_dev(link->consumer);
2115 * However, if the consumer's parent device is also the
2116 * parent of the supplier, don't create a
2117 * consumer-supplier link from the parent to its child
2118 * device. Such a dependency is impossible.
2121 fwnode_is_ancestor_of(con_dev->fwnode, fwnode)) {
2122 put_device(con_dev);
2132 ret = fw_devlink_create_devlink(con_dev, fwnode, link);
2133 put_device(con_dev);
2134 if (!own_link || ret == -EAGAIN)
2137 __fwnode_link_del(link);
2142 * __fw_devlink_link_to_suppliers - Create device links to suppliers of a device
2143 * @dev: The consumer device that needs to be linked to its suppliers
2144 * @fwnode: Root of the fwnode tree that is used to create device links
2146 * This function looks at all the supplier fwnodes of fwnode tree rooted at
2147 * @fwnode and creates device links between @dev (consumer) and all the
2148 * supplier devices of the entire fwnode tree at @fwnode.
2150 * The function creates normal (non-SYNC_STATE_ONLY) device links between @dev
2151 * and the real suppliers of @dev. Once these device links are created, the
2152 * fwnode links are deleted.
2154 * In addition, it also looks at all the suppliers of the entire fwnode tree
2155 * because some of the child devices of @dev that have not been added yet
2156 * (because @dev hasn't probed) might already have their suppliers added to
2157 * driver core. So, this function creates SYNC_STATE_ONLY device links between
2158 * @dev (consumer) and these suppliers to make sure they don't execute their
2159 * sync_state() callbacks before these child devices have a chance to create
2160 * their device links. The fwnode links that correspond to the child devices
2161 * aren't delete because they are needed later to create the device links
2162 * between the real consumer and supplier devices.
2164 static void __fw_devlink_link_to_suppliers(struct device *dev,
2165 struct fwnode_handle *fwnode)
2167 bool own_link = (dev->fwnode == fwnode);
2168 struct fwnode_link *link, *tmp;
2169 struct fwnode_handle *child = NULL;
2171 list_for_each_entry_safe(link, tmp, &fwnode->suppliers, c_hook) {
2173 struct fwnode_handle *sup = link->supplier;
2175 ret = fw_devlink_create_devlink(dev, sup, link);
2176 if (!own_link || ret == -EAGAIN)
2179 __fwnode_link_del(link);
2183 * Make "proxy" SYNC_STATE_ONLY device links to represent the needs of
2184 * all the descendants. This proxy link step is needed to handle the
2185 * case where the supplier is added before the consumer's parent device
2188 while ((child = fwnode_get_next_available_child_node(fwnode, child)))
2189 __fw_devlink_link_to_suppliers(dev, child);
2192 static void fw_devlink_link_device(struct device *dev)
2194 struct fwnode_handle *fwnode = dev->fwnode;
2196 if (!fw_devlink_flags)
2199 fw_devlink_parse_fwtree(fwnode);
2201 mutex_lock(&fwnode_link_lock);
2202 __fw_devlink_link_to_consumers(dev);
2203 __fw_devlink_link_to_suppliers(dev, fwnode);
2204 mutex_unlock(&fwnode_link_lock);
2207 /* Device links support end. */
2209 int (*platform_notify)(struct device *dev) = NULL;
2210 int (*platform_notify_remove)(struct device *dev) = NULL;
2211 static struct kobject *dev_kobj;
2212 struct kobject *sysfs_dev_char_kobj;
2213 struct kobject *sysfs_dev_block_kobj;
2215 static DEFINE_MUTEX(device_hotplug_lock);
2217 void lock_device_hotplug(void)
2219 mutex_lock(&device_hotplug_lock);
2222 void unlock_device_hotplug(void)
2224 mutex_unlock(&device_hotplug_lock);
2227 int lock_device_hotplug_sysfs(void)
2229 if (mutex_trylock(&device_hotplug_lock))
2232 /* Avoid busy looping (5 ms of sleep should do). */
2234 return restart_syscall();
2238 static inline int device_is_not_partition(struct device *dev)
2240 return !(dev->type == &part_type);
2243 static inline int device_is_not_partition(struct device *dev)
2249 static void device_platform_notify(struct device *dev)
2251 acpi_device_notify(dev);
2253 software_node_notify(dev);
2255 if (platform_notify)
2256 platform_notify(dev);
2259 static void device_platform_notify_remove(struct device *dev)
2261 acpi_device_notify_remove(dev);
2263 software_node_notify_remove(dev);
2265 if (platform_notify_remove)
2266 platform_notify_remove(dev);
2270 * dev_driver_string - Return a device's driver name, if at all possible
2271 * @dev: struct device to get the name of
2273 * Will return the device's driver's name if it is bound to a device. If
2274 * the device is not bound to a driver, it will return the name of the bus
2275 * it is attached to. If it is not attached to a bus either, an empty
2276 * string will be returned.
2278 const char *dev_driver_string(const struct device *dev)
2280 struct device_driver *drv;
2282 /* dev->driver can change to NULL underneath us because of unbinding,
2283 * so be careful about accessing it. dev->bus and dev->class should
2284 * never change once they are set, so they don't need special care.
2286 drv = READ_ONCE(dev->driver);
2287 return drv ? drv->name : dev_bus_name(dev);
2289 EXPORT_SYMBOL(dev_driver_string);
2291 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
2293 static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
2296 struct device_attribute *dev_attr = to_dev_attr(attr);
2297 struct device *dev = kobj_to_dev(kobj);
2301 ret = dev_attr->show(dev, dev_attr, buf);
2302 if (ret >= (ssize_t)PAGE_SIZE) {
2303 printk("dev_attr_show: %pS returned bad count\n",
2309 static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
2310 const char *buf, size_t count)
2312 struct device_attribute *dev_attr = to_dev_attr(attr);
2313 struct device *dev = kobj_to_dev(kobj);
2316 if (dev_attr->store)
2317 ret = dev_attr->store(dev, dev_attr, buf, count);
2321 static const struct sysfs_ops dev_sysfs_ops = {
2322 .show = dev_attr_show,
2323 .store = dev_attr_store,
2326 #define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr)
2328 ssize_t device_store_ulong(struct device *dev,
2329 struct device_attribute *attr,
2330 const char *buf, size_t size)
2332 struct dev_ext_attribute *ea = to_ext_attr(attr);
2336 ret = kstrtoul(buf, 0, &new);
2339 *(unsigned long *)(ea->var) = new;
2340 /* Always return full write size even if we didn't consume all */
2343 EXPORT_SYMBOL_GPL(device_store_ulong);
2345 ssize_t device_show_ulong(struct device *dev,
2346 struct device_attribute *attr,
2349 struct dev_ext_attribute *ea = to_ext_attr(attr);
2350 return sysfs_emit(buf, "%lx\n", *(unsigned long *)(ea->var));
2352 EXPORT_SYMBOL_GPL(device_show_ulong);
2354 ssize_t device_store_int(struct device *dev,
2355 struct device_attribute *attr,
2356 const char *buf, size_t size)
2358 struct dev_ext_attribute *ea = to_ext_attr(attr);
2362 ret = kstrtol(buf, 0, &new);
2366 if (new > INT_MAX || new < INT_MIN)
2368 *(int *)(ea->var) = new;
2369 /* Always return full write size even if we didn't consume all */
2372 EXPORT_SYMBOL_GPL(device_store_int);
2374 ssize_t device_show_int(struct device *dev,
2375 struct device_attribute *attr,
2378 struct dev_ext_attribute *ea = to_ext_attr(attr);
2380 return sysfs_emit(buf, "%d\n", *(int *)(ea->var));
2382 EXPORT_SYMBOL_GPL(device_show_int);
2384 ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
2385 const char *buf, size_t size)
2387 struct dev_ext_attribute *ea = to_ext_attr(attr);
2389 if (kstrtobool(buf, ea->var) < 0)
2394 EXPORT_SYMBOL_GPL(device_store_bool);
2396 ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
2399 struct dev_ext_attribute *ea = to_ext_attr(attr);
2401 return sysfs_emit(buf, "%d\n", *(bool *)(ea->var));
2403 EXPORT_SYMBOL_GPL(device_show_bool);
2406 * device_release - free device structure.
2407 * @kobj: device's kobject.
2409 * This is called once the reference count for the object
2410 * reaches 0. We forward the call to the device's release
2411 * method, which should handle actually freeing the structure.
2413 static void device_release(struct kobject *kobj)
2415 struct device *dev = kobj_to_dev(kobj);
2416 struct device_private *p = dev->p;
2419 * Some platform devices are driven without driver attached
2420 * and managed resources may have been acquired. Make sure
2421 * all resources are released.
2423 * Drivers still can add resources into device after device
2424 * is deleted but alive, so release devres here to avoid
2425 * possible memory leak.
2427 devres_release_all(dev);
2429 kfree(dev->dma_range_map);
2433 else if (dev->type && dev->type->release)
2434 dev->type->release(dev);
2435 else if (dev->class && dev->class->dev_release)
2436 dev->class->dev_release(dev);
2438 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",
2443 static const void *device_namespace(const struct kobject *kobj)
2445 const struct device *dev = kobj_to_dev(kobj);
2446 const void *ns = NULL;
2448 if (dev->class && dev->class->ns_type)
2449 ns = dev->class->namespace(dev);
2454 static void device_get_ownership(const struct kobject *kobj, kuid_t *uid, kgid_t *gid)
2456 const struct device *dev = kobj_to_dev(kobj);
2458 if (dev->class && dev->class->get_ownership)
2459 dev->class->get_ownership(dev, uid, gid);
2462 static const struct kobj_type device_ktype = {
2463 .release = device_release,
2464 .sysfs_ops = &dev_sysfs_ops,
2465 .namespace = device_namespace,
2466 .get_ownership = device_get_ownership,
2470 static int dev_uevent_filter(const struct kobject *kobj)
2472 const struct kobj_type *ktype = get_ktype(kobj);
2474 if (ktype == &device_ktype) {
2475 const struct device *dev = kobj_to_dev(kobj);
2484 static const char *dev_uevent_name(const struct kobject *kobj)
2486 const struct device *dev = kobj_to_dev(kobj);
2489 return dev->bus->name;
2491 return dev->class->name;
2495 static int dev_uevent(const struct kobject *kobj, struct kobj_uevent_env *env)
2497 const struct device *dev = kobj_to_dev(kobj);
2500 /* add device node properties if present */
2501 if (MAJOR(dev->devt)) {
2505 kuid_t uid = GLOBAL_ROOT_UID;
2506 kgid_t gid = GLOBAL_ROOT_GID;
2508 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
2509 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
2510 name = device_get_devnode(dev, &mode, &uid, &gid, &tmp);
2512 add_uevent_var(env, "DEVNAME=%s", name);
2514 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
2515 if (!uid_eq(uid, GLOBAL_ROOT_UID))
2516 add_uevent_var(env, "DEVUID=%u", from_kuid(&init_user_ns, uid));
2517 if (!gid_eq(gid, GLOBAL_ROOT_GID))
2518 add_uevent_var(env, "DEVGID=%u", from_kgid(&init_user_ns, gid));
2523 if (dev->type && dev->type->name)
2524 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
2527 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
2529 /* Add common DT information about the device */
2530 of_device_uevent(dev, env);
2532 /* have the bus specific function add its stuff */
2533 if (dev->bus && dev->bus->uevent) {
2534 retval = dev->bus->uevent(dev, env);
2536 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
2537 dev_name(dev), __func__, retval);
2540 /* have the class specific function add its stuff */
2541 if (dev->class && dev->class->dev_uevent) {
2542 retval = dev->class->dev_uevent(dev, env);
2544 pr_debug("device: '%s': %s: class uevent() "
2545 "returned %d\n", dev_name(dev),
2549 /* have the device type specific function add its stuff */
2550 if (dev->type && dev->type->uevent) {
2551 retval = dev->type->uevent(dev, env);
2553 pr_debug("device: '%s': %s: dev_type uevent() "
2554 "returned %d\n", dev_name(dev),
2561 static const struct kset_uevent_ops device_uevent_ops = {
2562 .filter = dev_uevent_filter,
2563 .name = dev_uevent_name,
2564 .uevent = dev_uevent,
2567 static ssize_t uevent_show(struct device *dev, struct device_attribute *attr,
2570 struct kobject *top_kobj;
2572 struct kobj_uevent_env *env = NULL;
2577 /* search the kset, the device belongs to */
2578 top_kobj = &dev->kobj;
2579 while (!top_kobj->kset && top_kobj->parent)
2580 top_kobj = top_kobj->parent;
2581 if (!top_kobj->kset)
2584 kset = top_kobj->kset;
2585 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
2588 /* respect filter */
2589 if (kset->uevent_ops && kset->uevent_ops->filter)
2590 if (!kset->uevent_ops->filter(&dev->kobj))
2593 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
2597 /* let the kset specific function add its keys */
2598 retval = kset->uevent_ops->uevent(&dev->kobj, env);
2602 /* copy keys to file */
2603 for (i = 0; i < env->envp_idx; i++)
2604 len += sysfs_emit_at(buf, len, "%s\n", env->envp[i]);
2610 static ssize_t uevent_store(struct device *dev, struct device_attribute *attr,
2611 const char *buf, size_t count)
2615 rc = kobject_synth_uevent(&dev->kobj, buf, count);
2618 dev_err(dev, "uevent: failed to send synthetic uevent: %d\n", rc);
2624 static DEVICE_ATTR_RW(uevent);
2626 static ssize_t online_show(struct device *dev, struct device_attribute *attr,
2632 val = !dev->offline;
2634 return sysfs_emit(buf, "%u\n", val);
2637 static ssize_t online_store(struct device *dev, struct device_attribute *attr,
2638 const char *buf, size_t count)
2643 ret = kstrtobool(buf, &val);
2647 ret = lock_device_hotplug_sysfs();
2651 ret = val ? device_online(dev) : device_offline(dev);
2652 unlock_device_hotplug();
2653 return ret < 0 ? ret : count;
2655 static DEVICE_ATTR_RW(online);
2657 static ssize_t removable_show(struct device *dev, struct device_attribute *attr,
2662 switch (dev->removable) {
2663 case DEVICE_REMOVABLE:
2672 return sysfs_emit(buf, "%s\n", loc);
2674 static DEVICE_ATTR_RO(removable);
2676 int device_add_groups(struct device *dev, const struct attribute_group **groups)
2678 return sysfs_create_groups(&dev->kobj, groups);
2680 EXPORT_SYMBOL_GPL(device_add_groups);
2682 void device_remove_groups(struct device *dev,
2683 const struct attribute_group **groups)
2685 sysfs_remove_groups(&dev->kobj, groups);
2687 EXPORT_SYMBOL_GPL(device_remove_groups);
2689 union device_attr_group_devres {
2690 const struct attribute_group *group;
2691 const struct attribute_group **groups;
2694 static void devm_attr_group_remove(struct device *dev, void *res)
2696 union device_attr_group_devres *devres = res;
2697 const struct attribute_group *group = devres->group;
2699 dev_dbg(dev, "%s: removing group %p\n", __func__, group);
2700 sysfs_remove_group(&dev->kobj, group);
2703 static void devm_attr_groups_remove(struct device *dev, void *res)
2705 union device_attr_group_devres *devres = res;
2706 const struct attribute_group **groups = devres->groups;
2708 dev_dbg(dev, "%s: removing groups %p\n", __func__, groups);
2709 sysfs_remove_groups(&dev->kobj, groups);
2713 * devm_device_add_group - given a device, create a managed attribute group
2714 * @dev: The device to create the group for
2715 * @grp: The attribute group to create
2717 * This function creates a group for the first time. It will explicitly
2718 * warn and error if any of the attribute files being created already exist.
2720 * Returns 0 on success or error code on failure.
2722 int devm_device_add_group(struct device *dev, const struct attribute_group *grp)
2724 union device_attr_group_devres *devres;
2727 devres = devres_alloc(devm_attr_group_remove,
2728 sizeof(*devres), GFP_KERNEL);
2732 error = sysfs_create_group(&dev->kobj, grp);
2734 devres_free(devres);
2738 devres->group = grp;
2739 devres_add(dev, devres);
2742 EXPORT_SYMBOL_GPL(devm_device_add_group);
2745 * devm_device_add_groups - create a bunch of managed attribute groups
2746 * @dev: The device to create the group for
2747 * @groups: The attribute groups to create, NULL terminated
2749 * This function creates a bunch of managed attribute groups. If an error
2750 * occurs when creating a group, all previously created groups will be
2751 * removed, unwinding everything back to the original state when this
2752 * function was called. It will explicitly warn and error if any of the
2753 * attribute files being created already exist.
2755 * Returns 0 on success or error code from sysfs_create_group on failure.
2757 int devm_device_add_groups(struct device *dev,
2758 const struct attribute_group **groups)
2760 union device_attr_group_devres *devres;
2763 devres = devres_alloc(devm_attr_groups_remove,
2764 sizeof(*devres), GFP_KERNEL);
2768 error = sysfs_create_groups(&dev->kobj, groups);
2770 devres_free(devres);
2774 devres->groups = groups;
2775 devres_add(dev, devres);
2778 EXPORT_SYMBOL_GPL(devm_device_add_groups);
2780 static int device_add_attrs(struct device *dev)
2782 struct class *class = dev->class;
2783 const struct device_type *type = dev->type;
2787 error = device_add_groups(dev, class->dev_groups);
2793 error = device_add_groups(dev, type->groups);
2795 goto err_remove_class_groups;
2798 error = device_add_groups(dev, dev->groups);
2800 goto err_remove_type_groups;
2802 if (device_supports_offline(dev) && !dev->offline_disabled) {
2803 error = device_create_file(dev, &dev_attr_online);
2805 goto err_remove_dev_groups;
2808 if (fw_devlink_flags && !fw_devlink_is_permissive() && dev->fwnode) {
2809 error = device_create_file(dev, &dev_attr_waiting_for_supplier);
2811 goto err_remove_dev_online;
2814 if (dev_removable_is_valid(dev)) {
2815 error = device_create_file(dev, &dev_attr_removable);
2817 goto err_remove_dev_waiting_for_supplier;
2820 if (dev_add_physical_location(dev)) {
2821 error = device_add_group(dev,
2822 &dev_attr_physical_location_group);
2824 goto err_remove_dev_removable;
2829 err_remove_dev_removable:
2830 device_remove_file(dev, &dev_attr_removable);
2831 err_remove_dev_waiting_for_supplier:
2832 device_remove_file(dev, &dev_attr_waiting_for_supplier);
2833 err_remove_dev_online:
2834 device_remove_file(dev, &dev_attr_online);
2835 err_remove_dev_groups:
2836 device_remove_groups(dev, dev->groups);
2837 err_remove_type_groups:
2839 device_remove_groups(dev, type->groups);
2840 err_remove_class_groups:
2842 device_remove_groups(dev, class->dev_groups);
2847 static void device_remove_attrs(struct device *dev)
2849 struct class *class = dev->class;
2850 const struct device_type *type = dev->type;
2852 if (dev->physical_location) {
2853 device_remove_group(dev, &dev_attr_physical_location_group);
2854 kfree(dev->physical_location);
2857 device_remove_file(dev, &dev_attr_removable);
2858 device_remove_file(dev, &dev_attr_waiting_for_supplier);
2859 device_remove_file(dev, &dev_attr_online);
2860 device_remove_groups(dev, dev->groups);
2863 device_remove_groups(dev, type->groups);
2866 device_remove_groups(dev, class->dev_groups);
2869 static ssize_t dev_show(struct device *dev, struct device_attribute *attr,
2872 return print_dev_t(buf, dev->devt);
2874 static DEVICE_ATTR_RO(dev);
2877 struct kset *devices_kset;
2880 * devices_kset_move_before - Move device in the devices_kset's list.
2881 * @deva: Device to move.
2882 * @devb: Device @deva should come before.
2884 static void devices_kset_move_before(struct device *deva, struct device *devb)
2888 pr_debug("devices_kset: Moving %s before %s\n",
2889 dev_name(deva), dev_name(devb));
2890 spin_lock(&devices_kset->list_lock);
2891 list_move_tail(&deva->kobj.entry, &devb->kobj.entry);
2892 spin_unlock(&devices_kset->list_lock);
2896 * devices_kset_move_after - Move device in the devices_kset's list.
2897 * @deva: Device to move
2898 * @devb: Device @deva should come after.
2900 static void devices_kset_move_after(struct device *deva, struct device *devb)
2904 pr_debug("devices_kset: Moving %s after %s\n",
2905 dev_name(deva), dev_name(devb));
2906 spin_lock(&devices_kset->list_lock);
2907 list_move(&deva->kobj.entry, &devb->kobj.entry);
2908 spin_unlock(&devices_kset->list_lock);
2912 * devices_kset_move_last - move the device to the end of devices_kset's list.
2913 * @dev: device to move
2915 void devices_kset_move_last(struct device *dev)
2919 pr_debug("devices_kset: Moving %s to end of list\n", dev_name(dev));
2920 spin_lock(&devices_kset->list_lock);
2921 list_move_tail(&dev->kobj.entry, &devices_kset->list);
2922 spin_unlock(&devices_kset->list_lock);
2926 * device_create_file - create sysfs attribute file for device.
2928 * @attr: device attribute descriptor.
2930 int device_create_file(struct device *dev,
2931 const struct device_attribute *attr)
2936 WARN(((attr->attr.mode & S_IWUGO) && !attr->store),
2937 "Attribute %s: write permission without 'store'\n",
2939 WARN(((attr->attr.mode & S_IRUGO) && !attr->show),
2940 "Attribute %s: read permission without 'show'\n",
2942 error = sysfs_create_file(&dev->kobj, &attr->attr);
2947 EXPORT_SYMBOL_GPL(device_create_file);
2950 * device_remove_file - remove sysfs attribute file.
2952 * @attr: device attribute descriptor.
2954 void device_remove_file(struct device *dev,
2955 const struct device_attribute *attr)
2958 sysfs_remove_file(&dev->kobj, &attr->attr);
2960 EXPORT_SYMBOL_GPL(device_remove_file);
2963 * device_remove_file_self - remove sysfs attribute file from its own method.
2965 * @attr: device attribute descriptor.
2967 * See kernfs_remove_self() for details.
2969 bool device_remove_file_self(struct device *dev,
2970 const struct device_attribute *attr)
2973 return sysfs_remove_file_self(&dev->kobj, &attr->attr);
2977 EXPORT_SYMBOL_GPL(device_remove_file_self);
2980 * device_create_bin_file - create sysfs binary attribute file for device.
2982 * @attr: device binary attribute descriptor.
2984 int device_create_bin_file(struct device *dev,
2985 const struct bin_attribute *attr)
2987 int error = -EINVAL;
2989 error = sysfs_create_bin_file(&dev->kobj, attr);
2992 EXPORT_SYMBOL_GPL(device_create_bin_file);
2995 * device_remove_bin_file - remove sysfs binary attribute file
2997 * @attr: device binary attribute descriptor.
2999 void device_remove_bin_file(struct device *dev,
3000 const struct bin_attribute *attr)
3003 sysfs_remove_bin_file(&dev->kobj, attr);
3005 EXPORT_SYMBOL_GPL(device_remove_bin_file);
3007 static void klist_children_get(struct klist_node *n)
3009 struct device_private *p = to_device_private_parent(n);
3010 struct device *dev = p->device;
3015 static void klist_children_put(struct klist_node *n)
3017 struct device_private *p = to_device_private_parent(n);
3018 struct device *dev = p->device;
3024 * device_initialize - init device structure.
3027 * This prepares the device for use by other layers by initializing
3029 * It is the first half of device_register(), if called by
3030 * that function, though it can also be called separately, so one
3031 * may use @dev's fields. In particular, get_device()/put_device()
3032 * may be used for reference counting of @dev after calling this
3035 * All fields in @dev must be initialized by the caller to 0, except
3036 * for those explicitly set to some other value. The simplest
3037 * approach is to use kzalloc() to allocate the structure containing
3040 * NOTE: Use put_device() to give up your reference instead of freeing
3041 * @dev directly once you have called this function.
3043 void device_initialize(struct device *dev)
3045 dev->kobj.kset = devices_kset;
3046 kobject_init(&dev->kobj, &device_ktype);
3047 INIT_LIST_HEAD(&dev->dma_pools);
3048 mutex_init(&dev->mutex);
3049 lockdep_set_novalidate_class(&dev->mutex);
3050 spin_lock_init(&dev->devres_lock);
3051 INIT_LIST_HEAD(&dev->devres_head);
3052 device_pm_init(dev);
3053 set_dev_node(dev, NUMA_NO_NODE);
3054 INIT_LIST_HEAD(&dev->links.consumers);
3055 INIT_LIST_HEAD(&dev->links.suppliers);
3056 INIT_LIST_HEAD(&dev->links.defer_sync);
3057 dev->links.status = DL_DEV_NO_DRIVER;
3058 #if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
3059 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
3060 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL)
3061 dev->dma_coherent = dma_default_coherent;
3063 #ifdef CONFIG_SWIOTLB
3064 dev->dma_io_tlb_mem = &io_tlb_default_mem;
3067 EXPORT_SYMBOL_GPL(device_initialize);
3069 struct kobject *virtual_device_parent(struct device *dev)
3071 static struct kobject *virtual_dir = NULL;
3074 virtual_dir = kobject_create_and_add("virtual",
3075 &devices_kset->kobj);
3081 struct kobject kobj;
3082 struct class *class;
3085 #define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
3087 static void class_dir_release(struct kobject *kobj)
3089 struct class_dir *dir = to_class_dir(kobj);
3094 struct kobj_ns_type_operations *class_dir_child_ns_type(const struct kobject *kobj)
3096 const struct class_dir *dir = to_class_dir(kobj);
3097 return dir->class->ns_type;
3100 static const struct kobj_type class_dir_ktype = {
3101 .release = class_dir_release,
3102 .sysfs_ops = &kobj_sysfs_ops,
3103 .child_ns_type = class_dir_child_ns_type
3106 static struct kobject *
3107 class_dir_create_and_add(struct class *class, struct kobject *parent_kobj)
3109 struct class_dir *dir;
3112 dir = kzalloc(sizeof(*dir), GFP_KERNEL);
3114 return ERR_PTR(-ENOMEM);
3117 kobject_init(&dir->kobj, &class_dir_ktype);
3119 dir->kobj.kset = &class->p->glue_dirs;
3121 retval = kobject_add(&dir->kobj, parent_kobj, "%s", class->name);
3123 kobject_put(&dir->kobj);
3124 return ERR_PTR(retval);
3129 static DEFINE_MUTEX(gdp_mutex);
3131 static struct kobject *get_device_parent(struct device *dev,
3132 struct device *parent)
3134 struct kobject *kobj = NULL;
3137 struct kobject *parent_kobj;
3141 /* block disks show up in /sys/block */
3142 if (sysfs_deprecated && dev->class == &block_class) {
3143 if (parent && parent->class == &block_class)
3144 return &parent->kobj;
3145 return &block_class.p->subsys.kobj;
3150 * If we have no parent, we live in "virtual".
3151 * Class-devices with a non class-device as parent, live
3152 * in a "glue" directory to prevent namespace collisions.
3155 parent_kobj = virtual_device_parent(dev);
3156 else if (parent->class && !dev->class->ns_type)
3157 return &parent->kobj;
3159 parent_kobj = &parent->kobj;
3161 mutex_lock(&gdp_mutex);
3163 /* find our class-directory at the parent and reference it */
3164 spin_lock(&dev->class->p->glue_dirs.list_lock);
3165 list_for_each_entry(k, &dev->class->p->glue_dirs.list, entry)
3166 if (k->parent == parent_kobj) {
3167 kobj = kobject_get(k);
3170 spin_unlock(&dev->class->p->glue_dirs.list_lock);
3172 mutex_unlock(&gdp_mutex);
3176 /* or create a new class-directory at the parent device */
3177 k = class_dir_create_and_add(dev->class, parent_kobj);
3178 /* do not emit an uevent for this simple "glue" directory */
3179 mutex_unlock(&gdp_mutex);
3183 /* subsystems can specify a default root directory for their devices */
3184 if (!parent && dev->bus) {
3185 struct device *dev_root = bus_get_dev_root(dev->bus);
3188 kobj = &dev_root->kobj;
3189 put_device(dev_root);
3195 return &parent->kobj;
3199 static inline bool live_in_glue_dir(struct kobject *kobj,
3202 if (!kobj || !dev->class ||
3203 kobj->kset != &dev->class->p->glue_dirs)
3208 static inline struct kobject *get_glue_dir(struct device *dev)
3210 return dev->kobj.parent;
3214 * kobject_has_children - Returns whether a kobject has children.
3215 * @kobj: the object to test
3217 * This will return whether a kobject has other kobjects as children.
3219 * It does NOT account for the presence of attribute files, only sub
3220 * directories. It also assumes there is no concurrent addition or
3221 * removal of such children, and thus relies on external locking.
3223 static inline bool kobject_has_children(struct kobject *kobj)
3225 WARN_ON_ONCE(kref_read(&kobj->kref) == 0);
3227 return kobj->sd && kobj->sd->dir.subdirs;
3231 * make sure cleaning up dir as the last step, we need to make
3232 * sure .release handler of kobject is run with holding the
3235 static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
3239 /* see if we live in a "glue" directory */
3240 if (!live_in_glue_dir(glue_dir, dev))
3243 mutex_lock(&gdp_mutex);
3245 * There is a race condition between removing glue directory
3246 * and adding a new device under the glue directory.
3251 * get_device_parent()
3252 * class_dir_create_and_add()
3253 * kobject_add_internal()
3254 * create_dir() // create glue_dir
3257 * get_device_parent()
3258 * kobject_get() // get glue_dir
3261 * cleanup_glue_dir()
3262 * kobject_del(glue_dir)
3265 * kobject_add_internal()
3266 * create_dir() // in glue_dir
3267 * sysfs_create_dir_ns()
3268 * kernfs_create_dir_ns(sd)
3270 * sysfs_remove_dir() // glue_dir->sd=NULL
3271 * sysfs_put() // free glue_dir->sd
3274 * kernfs_new_node(sd)
3275 * kernfs_get(glue_dir)
3279 * Before CPU1 remove last child device under glue dir, if CPU2 add
3280 * a new device under glue dir, the glue_dir kobject reference count
3281 * will be increase to 2 in kobject_get(k). And CPU2 has been called
3282 * kernfs_create_dir_ns(). Meanwhile, CPU1 call sysfs_remove_dir()
3283 * and sysfs_put(). This result in glue_dir->sd is freed.
3285 * Then the CPU2 will see a stale "empty" but still potentially used
3286 * glue dir around in kernfs_new_node().
3288 * In order to avoid this happening, we also should make sure that
3289 * kernfs_node for glue_dir is released in CPU1 only when refcount
3290 * for glue_dir kobj is 1.
3292 ref = kref_read(&glue_dir->kref);
3293 if (!kobject_has_children(glue_dir) && !--ref)
3294 kobject_del(glue_dir);
3295 kobject_put(glue_dir);
3296 mutex_unlock(&gdp_mutex);
3299 static int device_add_class_symlinks(struct device *dev)
3301 struct device_node *of_node = dev_of_node(dev);
3305 error = sysfs_create_link(&dev->kobj, of_node_kobj(of_node), "of_node");
3307 dev_warn(dev, "Error %d creating of_node link\n",error);
3308 /* An error here doesn't warrant bringing down the device */
3314 error = sysfs_create_link(&dev->kobj,
3315 &dev->class->p->subsys.kobj,
3320 if (dev->parent && device_is_not_partition(dev)) {
3321 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
3328 /* /sys/block has directories and does not need symlinks */
3329 if (sysfs_deprecated && dev->class == &block_class)
3333 /* link in the class directory pointing to the device */
3334 error = sysfs_create_link(&dev->class->p->subsys.kobj,
3335 &dev->kobj, dev_name(dev));
3342 sysfs_remove_link(&dev->kobj, "device");
3345 sysfs_remove_link(&dev->kobj, "subsystem");
3347 sysfs_remove_link(&dev->kobj, "of_node");
3351 static void device_remove_class_symlinks(struct device *dev)
3353 if (dev_of_node(dev))
3354 sysfs_remove_link(&dev->kobj, "of_node");
3359 if (dev->parent && device_is_not_partition(dev))
3360 sysfs_remove_link(&dev->kobj, "device");
3361 sysfs_remove_link(&dev->kobj, "subsystem");
3363 if (sysfs_deprecated && dev->class == &block_class)
3366 sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev));
3370 * dev_set_name - set a device name
3372 * @fmt: format string for the device's name
3374 int dev_set_name(struct device *dev, const char *fmt, ...)
3379 va_start(vargs, fmt);
3380 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
3384 EXPORT_SYMBOL_GPL(dev_set_name);
3387 * device_to_dev_kobj - select a /sys/dev/ directory for the device
3390 * By default we select char/ for new entries. Setting class->dev_obj
3391 * to NULL prevents an entry from being created. class->dev_kobj must
3392 * be set (or cleared) before any devices are registered to the class
3393 * otherwise device_create_sys_dev_entry() and
3394 * device_remove_sys_dev_entry() will disagree about the presence of
3397 static struct kobject *device_to_dev_kobj(struct device *dev)
3399 struct kobject *kobj;
3402 kobj = dev->class->dev_kobj;
3404 kobj = sysfs_dev_char_kobj;
3409 static int device_create_sys_dev_entry(struct device *dev)
3411 struct kobject *kobj = device_to_dev_kobj(dev);
3416 format_dev_t(devt_str, dev->devt);
3417 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
3423 static void device_remove_sys_dev_entry(struct device *dev)
3425 struct kobject *kobj = device_to_dev_kobj(dev);
3429 format_dev_t(devt_str, dev->devt);
3430 sysfs_remove_link(kobj, devt_str);
3434 static int device_private_init(struct device *dev)
3436 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
3439 dev->p->device = dev;
3440 klist_init(&dev->p->klist_children, klist_children_get,
3441 klist_children_put);
3442 INIT_LIST_HEAD(&dev->p->deferred_probe);
3447 * device_add - add device to device hierarchy.
3450 * This is part 2 of device_register(), though may be called
3451 * separately _iff_ device_initialize() has been called separately.
3453 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
3454 * to the global and sibling lists for the device, then
3455 * adds it to the other relevant subsystems of the driver model.
3457 * Do not call this routine or device_register() more than once for
3458 * any device structure. The driver model core is not designed to work
3459 * with devices that get unregistered and then spring back to life.
3460 * (Among other things, it's very hard to guarantee that all references
3461 * to the previous incarnation of @dev have been dropped.) Allocate
3462 * and register a fresh new struct device instead.
3464 * NOTE: _Never_ directly free @dev after calling this function, even
3465 * if it returned an error! Always use put_device() to give up your
3466 * reference instead.
3468 * Rule of thumb is: if device_add() succeeds, you should call
3469 * device_del() when you want to get rid of it. If device_add() has
3470 * *not* succeeded, use *only* put_device() to drop the reference
3473 int device_add(struct device *dev)
3475 struct device *parent;
3476 struct kobject *kobj;
3477 struct class_interface *class_intf;
3478 int error = -EINVAL;
3479 struct kobject *glue_dir = NULL;
3481 dev = get_device(dev);
3486 error = device_private_init(dev);
3492 * for statically allocated devices, which should all be converted
3493 * some day, we need to initialize the name. We prevent reading back
3494 * the name, and force the use of dev_name()
3496 if (dev->init_name) {
3497 dev_set_name(dev, "%s", dev->init_name);
3498 dev->init_name = NULL;
3501 /* subsystems can specify simple device enumeration */
3502 if (!dev_name(dev) && dev->bus && dev->bus->dev_name)
3503 dev_set_name(dev, "%s%u", dev->bus->dev_name, dev->id);
3505 if (!dev_name(dev)) {
3510 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
3512 parent = get_device(dev->parent);
3513 kobj = get_device_parent(dev, parent);
3515 error = PTR_ERR(kobj);
3519 dev->kobj.parent = kobj;
3521 /* use parent numa_node */
3522 if (parent && (dev_to_node(dev) == NUMA_NO_NODE))
3523 set_dev_node(dev, dev_to_node(parent));
3525 /* first, register with generic layer. */
3526 /* we require the name to be set before, and pass NULL */
3527 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
3533 /* notify platform of device entry */
3534 device_platform_notify(dev);
3536 error = device_create_file(dev, &dev_attr_uevent);
3540 error = device_add_class_symlinks(dev);
3543 error = device_add_attrs(dev);
3546 error = bus_add_device(dev);
3549 error = dpm_sysfs_add(dev);
3554 if (MAJOR(dev->devt)) {
3555 error = device_create_file(dev, &dev_attr_dev);
3559 error = device_create_sys_dev_entry(dev);
3563 devtmpfs_create_node(dev);
3566 /* Notify clients of device addition. This call must come
3567 * after dpm_sysfs_add() and before kobject_uevent().
3569 bus_notify(dev, BUS_NOTIFY_ADD_DEVICE);
3570 kobject_uevent(&dev->kobj, KOBJ_ADD);
3573 * Check if any of the other devices (consumers) have been waiting for
3574 * this device (supplier) to be added so that they can create a device
3577 * This needs to happen after device_pm_add() because device_link_add()
3578 * requires the supplier be registered before it's called.
3580 * But this also needs to happen before bus_probe_device() to make sure
3581 * waiting consumers can link to it before the driver is bound to the
3582 * device and the driver sync_state callback is called for this device.
3584 if (dev->fwnode && !dev->fwnode->dev) {
3585 dev->fwnode->dev = dev;
3586 fw_devlink_link_device(dev);
3589 bus_probe_device(dev);
3592 * If all driver registration is done and a newly added device doesn't
3593 * match with any driver, don't block its consumers from probing in
3594 * case the consumer device is able to operate without this supplier.
3596 if (dev->fwnode && fw_devlink_drv_reg_done && !dev->can_match)
3597 fw_devlink_unblock_consumers(dev);
3600 klist_add_tail(&dev->p->knode_parent,
3601 &parent->p->klist_children);
3604 mutex_lock(&dev->class->p->mutex);
3605 /* tie the class to the device */
3606 klist_add_tail(&dev->p->knode_class,
3607 &dev->class->p->klist_devices);
3609 /* notify any interfaces that the device is here */
3610 list_for_each_entry(class_intf,
3611 &dev->class->p->interfaces, node)
3612 if (class_intf->add_dev)
3613 class_intf->add_dev(dev, class_intf);
3614 mutex_unlock(&dev->class->p->mutex);
3620 if (MAJOR(dev->devt))
3621 device_remove_file(dev, &dev_attr_dev);
3623 device_pm_remove(dev);
3624 dpm_sysfs_remove(dev);
3627 bus_remove_device(dev);
3629 device_remove_attrs(dev);
3631 device_remove_class_symlinks(dev);
3633 device_remove_file(dev, &dev_attr_uevent);
3635 device_platform_notify_remove(dev);
3636 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
3637 glue_dir = get_glue_dir(dev);
3638 kobject_del(&dev->kobj);
3640 cleanup_glue_dir(dev, glue_dir);
3648 EXPORT_SYMBOL_GPL(device_add);
3651 * device_register - register a device with the system.
3652 * @dev: pointer to the device structure
3654 * This happens in two clean steps - initialize the device
3655 * and add it to the system. The two steps can be called
3656 * separately, but this is the easiest and most common.
3657 * I.e. you should only call the two helpers separately if
3658 * have a clearly defined need to use and refcount the device
3659 * before it is added to the hierarchy.
3661 * For more information, see the kerneldoc for device_initialize()
3664 * NOTE: _Never_ directly free @dev after calling this function, even
3665 * if it returned an error! Always use put_device() to give up the
3666 * reference initialized in this function instead.
3668 int device_register(struct device *dev)
3670 device_initialize(dev);
3671 return device_add(dev);
3673 EXPORT_SYMBOL_GPL(device_register);
3676 * get_device - increment reference count for device.
3679 * This simply forwards the call to kobject_get(), though
3680 * we do take care to provide for the case that we get a NULL
3681 * pointer passed in.
3683 struct device *get_device(struct device *dev)
3685 return dev ? kobj_to_dev(kobject_get(&dev->kobj)) : NULL;
3687 EXPORT_SYMBOL_GPL(get_device);
3690 * put_device - decrement reference count.
3691 * @dev: device in question.
3693 void put_device(struct device *dev)
3695 /* might_sleep(); */
3697 kobject_put(&dev->kobj);
3699 EXPORT_SYMBOL_GPL(put_device);
3701 bool kill_device(struct device *dev)
3704 * Require the device lock and set the "dead" flag to guarantee that
3705 * the update behavior is consistent with the other bitfields near
3706 * it and that we cannot have an asynchronous probe routine trying
3707 * to run while we are tearing out the bus/class/sysfs from
3708 * underneath the device.
3710 device_lock_assert(dev);
3714 dev->p->dead = true;
3717 EXPORT_SYMBOL_GPL(kill_device);
3720 * device_del - delete device from system.
3723 * This is the first part of the device unregistration
3724 * sequence. This removes the device from the lists we control
3725 * from here, has it removed from the other driver model
3726 * subsystems it was added to in device_add(), and removes it
3727 * from the kobject hierarchy.
3729 * NOTE: this should be called manually _iff_ device_add() was
3730 * also called manually.
3732 void device_del(struct device *dev)
3734 struct device *parent = dev->parent;
3735 struct kobject *glue_dir = NULL;
3736 struct class_interface *class_intf;
3737 unsigned int noio_flag;
3743 if (dev->fwnode && dev->fwnode->dev == dev)
3744 dev->fwnode->dev = NULL;
3746 /* Notify clients of device removal. This call must come
3747 * before dpm_sysfs_remove().
3749 noio_flag = memalloc_noio_save();
3750 bus_notify(dev, BUS_NOTIFY_DEL_DEVICE);
3752 dpm_sysfs_remove(dev);
3754 klist_del(&dev->p->knode_parent);
3755 if (MAJOR(dev->devt)) {
3756 devtmpfs_delete_node(dev);
3757 device_remove_sys_dev_entry(dev);
3758 device_remove_file(dev, &dev_attr_dev);
3761 device_remove_class_symlinks(dev);
3763 mutex_lock(&dev->class->p->mutex);
3764 /* notify any interfaces that the device is now gone */
3765 list_for_each_entry(class_intf,
3766 &dev->class->p->interfaces, node)
3767 if (class_intf->remove_dev)
3768 class_intf->remove_dev(dev, class_intf);
3769 /* remove the device from the class list */
3770 klist_del(&dev->p->knode_class);
3771 mutex_unlock(&dev->class->p->mutex);
3773 device_remove_file(dev, &dev_attr_uevent);
3774 device_remove_attrs(dev);
3775 bus_remove_device(dev);
3776 device_pm_remove(dev);
3777 driver_deferred_probe_del(dev);
3778 device_platform_notify_remove(dev);
3779 device_links_purge(dev);
3781 bus_notify(dev, BUS_NOTIFY_REMOVED_DEVICE);
3782 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
3783 glue_dir = get_glue_dir(dev);
3784 kobject_del(&dev->kobj);
3785 cleanup_glue_dir(dev, glue_dir);
3786 memalloc_noio_restore(noio_flag);
3789 EXPORT_SYMBOL_GPL(device_del);
3792 * device_unregister - unregister device from system.
3793 * @dev: device going away.
3795 * We do this in two parts, like we do device_register(). First,
3796 * we remove it from all the subsystems with device_del(), then
3797 * we decrement the reference count via put_device(). If that
3798 * is the final reference count, the device will be cleaned up
3799 * via device_release() above. Otherwise, the structure will
3800 * stick around until the final reference to the device is dropped.
3802 void device_unregister(struct device *dev)
3804 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
3808 EXPORT_SYMBOL_GPL(device_unregister);
3810 static struct device *prev_device(struct klist_iter *i)
3812 struct klist_node *n = klist_prev(i);
3813 struct device *dev = NULL;
3814 struct device_private *p;
3817 p = to_device_private_parent(n);
3823 static struct device *next_device(struct klist_iter *i)
3825 struct klist_node *n = klist_next(i);
3826 struct device *dev = NULL;
3827 struct device_private *p;
3830 p = to_device_private_parent(n);
3837 * device_get_devnode - path of device node file
3839 * @mode: returned file access mode
3840 * @uid: returned file owner
3841 * @gid: returned file group
3842 * @tmp: possibly allocated string
3844 * Return the relative path of a possible device node.
3845 * Non-default names may need to allocate a memory to compose
3846 * a name. This memory is returned in tmp and needs to be
3847 * freed by the caller.
3849 const char *device_get_devnode(const struct device *dev,
3850 umode_t *mode, kuid_t *uid, kgid_t *gid,
3857 /* the device type may provide a specific name */
3858 if (dev->type && dev->type->devnode)
3859 *tmp = dev->type->devnode(dev, mode, uid, gid);
3863 /* the class may provide a specific name */
3864 if (dev->class && dev->class->devnode)
3865 *tmp = dev->class->devnode(dev, mode);
3869 /* return name without allocation, tmp == NULL */
3870 if (strchr(dev_name(dev), '!') == NULL)
3871 return dev_name(dev);
3873 /* replace '!' in the name with '/' */
3874 s = kstrdup(dev_name(dev), GFP_KERNEL);
3877 strreplace(s, '!', '/');
3882 * device_for_each_child - device child iterator.
3883 * @parent: parent struct device.
3884 * @fn: function to be called for each device.
3885 * @data: data for the callback.
3887 * Iterate over @parent's child devices, and call @fn for each,
3890 * We check the return of @fn each time. If it returns anything
3891 * other than 0, we break out and return that value.
3893 int device_for_each_child(struct device *parent, void *data,
3894 int (*fn)(struct device *dev, void *data))
3896 struct klist_iter i;
3897 struct device *child;
3903 klist_iter_init(&parent->p->klist_children, &i);
3904 while (!error && (child = next_device(&i)))
3905 error = fn(child, data);
3906 klist_iter_exit(&i);
3909 EXPORT_SYMBOL_GPL(device_for_each_child);
3912 * device_for_each_child_reverse - device child iterator in reversed order.
3913 * @parent: parent struct device.
3914 * @fn: function to be called for each device.
3915 * @data: data for the callback.
3917 * Iterate over @parent's child devices, and call @fn for each,
3920 * We check the return of @fn each time. If it returns anything
3921 * other than 0, we break out and return that value.
3923 int device_for_each_child_reverse(struct device *parent, void *data,
3924 int (*fn)(struct device *dev, void *data))
3926 struct klist_iter i;
3927 struct device *child;
3933 klist_iter_init(&parent->p->klist_children, &i);
3934 while ((child = prev_device(&i)) && !error)
3935 error = fn(child, data);
3936 klist_iter_exit(&i);
3939 EXPORT_SYMBOL_GPL(device_for_each_child_reverse);
3942 * device_find_child - device iterator for locating a particular device.
3943 * @parent: parent struct device
3944 * @match: Callback function to check device
3945 * @data: Data to pass to match function
3947 * This is similar to the device_for_each_child() function above, but it
3948 * returns a reference to a device that is 'found' for later use, as
3949 * determined by the @match callback.
3951 * The callback should return 0 if the device doesn't match and non-zero
3952 * if it does. If the callback returns non-zero and a reference to the
3953 * current device can be obtained, this function will return to the caller
3954 * and not iterate over any more devices.
3956 * NOTE: you will need to drop the reference with put_device() after use.
3958 struct device *device_find_child(struct device *parent, void *data,
3959 int (*match)(struct device *dev, void *data))
3961 struct klist_iter i;
3962 struct device *child;
3967 klist_iter_init(&parent->p->klist_children, &i);
3968 while ((child = next_device(&i)))
3969 if (match(child, data) && get_device(child))
3971 klist_iter_exit(&i);
3974 EXPORT_SYMBOL_GPL(device_find_child);
3977 * device_find_child_by_name - device iterator for locating a child device.
3978 * @parent: parent struct device
3979 * @name: name of the child device
3981 * This is similar to the device_find_child() function above, but it
3982 * returns a reference to a device that has the name @name.
3984 * NOTE: you will need to drop the reference with put_device() after use.
3986 struct device *device_find_child_by_name(struct device *parent,
3989 struct klist_iter i;
3990 struct device *child;
3995 klist_iter_init(&parent->p->klist_children, &i);
3996 while ((child = next_device(&i)))
3997 if (sysfs_streq(dev_name(child), name) && get_device(child))
3999 klist_iter_exit(&i);
4002 EXPORT_SYMBOL_GPL(device_find_child_by_name);
4004 static int match_any(struct device *dev, void *unused)
4010 * device_find_any_child - device iterator for locating a child device, if any.
4011 * @parent: parent struct device
4013 * This is similar to the device_find_child() function above, but it
4014 * returns a reference to a child device, if any.
4016 * NOTE: you will need to drop the reference with put_device() after use.
4018 struct device *device_find_any_child(struct device *parent)
4020 return device_find_child(parent, NULL, match_any);
4022 EXPORT_SYMBOL_GPL(device_find_any_child);
4024 int __init devices_init(void)
4026 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
4029 dev_kobj = kobject_create_and_add("dev", NULL);
4032 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
4033 if (!sysfs_dev_block_kobj)
4034 goto block_kobj_err;
4035 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
4036 if (!sysfs_dev_char_kobj)
4042 kobject_put(sysfs_dev_block_kobj);
4044 kobject_put(dev_kobj);
4046 kset_unregister(devices_kset);
4050 static int device_check_offline(struct device *dev, void *not_used)
4054 ret = device_for_each_child(dev, NULL, device_check_offline);
4058 return device_supports_offline(dev) && !dev->offline ? -EBUSY : 0;
4062 * device_offline - Prepare the device for hot-removal.
4063 * @dev: Device to be put offline.
4065 * Execute the device bus type's .offline() callback, if present, to prepare
4066 * the device for a subsequent hot-removal. If that succeeds, the device must
4067 * not be used until either it is removed or its bus type's .online() callback
4070 * Call under device_hotplug_lock.
4072 int device_offline(struct device *dev)
4076 if (dev->offline_disabled)
4079 ret = device_for_each_child(dev, NULL, device_check_offline);
4084 if (device_supports_offline(dev)) {
4088 ret = dev->bus->offline(dev);
4090 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
4091 dev->offline = true;
4101 * device_online - Put the device back online after successful device_offline().
4102 * @dev: Device to be put back online.
4104 * If device_offline() has been successfully executed for @dev, but the device
4105 * has not been removed subsequently, execute its bus type's .online() callback
4106 * to indicate that the device can be used again.
4108 * Call under device_hotplug_lock.
4110 int device_online(struct device *dev)
4115 if (device_supports_offline(dev)) {
4117 ret = dev->bus->online(dev);
4119 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
4120 dev->offline = false;
4131 struct root_device {
4133 struct module *owner;
4136 static inline struct root_device *to_root_device(struct device *d)
4138 return container_of(d, struct root_device, dev);
4141 static void root_device_release(struct device *dev)
4143 kfree(to_root_device(dev));
4147 * __root_device_register - allocate and register a root device
4148 * @name: root device name
4149 * @owner: owner module of the root device, usually THIS_MODULE
4151 * This function allocates a root device and registers it
4152 * using device_register(). In order to free the returned
4153 * device, use root_device_unregister().
4155 * Root devices are dummy devices which allow other devices
4156 * to be grouped under /sys/devices. Use this function to
4157 * allocate a root device and then use it as the parent of
4158 * any device which should appear under /sys/devices/{name}
4160 * The /sys/devices/{name} directory will also contain a
4161 * 'module' symlink which points to the @owner directory
4164 * Returns &struct device pointer on success, or ERR_PTR() on error.
4166 * Note: You probably want to use root_device_register().
4168 struct device *__root_device_register(const char *name, struct module *owner)
4170 struct root_device *root;
4173 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
4175 return ERR_PTR(err);
4177 err = dev_set_name(&root->dev, "%s", name);
4180 return ERR_PTR(err);
4183 root->dev.release = root_device_release;
4185 err = device_register(&root->dev);
4187 put_device(&root->dev);
4188 return ERR_PTR(err);
4191 #ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
4193 struct module_kobject *mk = &owner->mkobj;
4195 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
4197 device_unregister(&root->dev);
4198 return ERR_PTR(err);
4200 root->owner = owner;
4206 EXPORT_SYMBOL_GPL(__root_device_register);
4209 * root_device_unregister - unregister and free a root device
4210 * @dev: device going away
4212 * This function unregisters and cleans up a device that was created by
4213 * root_device_register().
4215 void root_device_unregister(struct device *dev)
4217 struct root_device *root = to_root_device(dev);
4220 sysfs_remove_link(&root->dev.kobj, "module");
4222 device_unregister(dev);
4224 EXPORT_SYMBOL_GPL(root_device_unregister);
4227 static void device_create_release(struct device *dev)
4229 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
4233 static __printf(6, 0) struct device *
4234 device_create_groups_vargs(struct class *class, struct device *parent,
4235 dev_t devt, void *drvdata,
4236 const struct attribute_group **groups,
4237 const char *fmt, va_list args)
4239 struct device *dev = NULL;
4240 int retval = -ENODEV;
4242 if (IS_ERR_OR_NULL(class))
4245 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
4251 device_initialize(dev);
4254 dev->parent = parent;
4255 dev->groups = groups;
4256 dev->release = device_create_release;
4257 dev_set_drvdata(dev, drvdata);
4259 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
4263 retval = device_add(dev);
4271 return ERR_PTR(retval);
4275 * device_create - creates a device and registers it with sysfs
4276 * @class: pointer to the struct class that this device should be registered to
4277 * @parent: pointer to the parent struct device of this new device, if any
4278 * @devt: the dev_t for the char device to be added
4279 * @drvdata: the data to be added to the device for callbacks
4280 * @fmt: string for the device's name
4282 * This function can be used by char device classes. A struct device
4283 * will be created in sysfs, registered to the specified class.
4285 * A "dev" file will be created, showing the dev_t for the device, if
4286 * the dev_t is not 0,0.
4287 * If a pointer to a parent struct device is passed in, the newly created
4288 * struct device will be a child of that device in sysfs.
4289 * The pointer to the struct device will be returned from the call.
4290 * Any further sysfs files that might be required can be created using this
4293 * Returns &struct device pointer on success, or ERR_PTR() on error.
4295 * Note: the struct class passed to this function must have previously
4296 * been created with a call to class_create().
4298 struct device *device_create(struct class *class, struct device *parent,
4299 dev_t devt, void *drvdata, const char *fmt, ...)
4304 va_start(vargs, fmt);
4305 dev = device_create_groups_vargs(class, parent, devt, drvdata, NULL,
4310 EXPORT_SYMBOL_GPL(device_create);
4313 * device_create_with_groups - creates a device and registers it with sysfs
4314 * @class: pointer to the struct class that this device should be registered to
4315 * @parent: pointer to the parent struct device of this new device, if any
4316 * @devt: the dev_t for the char device to be added
4317 * @drvdata: the data to be added to the device for callbacks
4318 * @groups: NULL-terminated list of attribute groups to be created
4319 * @fmt: string for the device's name
4321 * This function can be used by char device classes. A struct device
4322 * will be created in sysfs, registered to the specified class.
4323 * Additional attributes specified in the groups parameter will also
4324 * be created automatically.
4326 * A "dev" file will be created, showing the dev_t for the device, if
4327 * the dev_t is not 0,0.
4328 * If a pointer to a parent struct device is passed in, the newly created
4329 * struct device will be a child of that device in sysfs.
4330 * The pointer to the struct device will be returned from the call.
4331 * Any further sysfs files that might be required can be created using this
4334 * Returns &struct device pointer on success, or ERR_PTR() on error.
4336 * Note: the struct class passed to this function must have previously
4337 * been created with a call to class_create().
4339 struct device *device_create_with_groups(struct class *class,
4340 struct device *parent, dev_t devt,
4342 const struct attribute_group **groups,
4343 const char *fmt, ...)
4348 va_start(vargs, fmt);
4349 dev = device_create_groups_vargs(class, parent, devt, drvdata, groups,
4354 EXPORT_SYMBOL_GPL(device_create_with_groups);
4357 * device_destroy - removes a device that was created with device_create()
4358 * @class: pointer to the struct class that this device was registered with
4359 * @devt: the dev_t of the device that was previously registered
4361 * This call unregisters and cleans up a device that was created with a
4362 * call to device_create().
4364 void device_destroy(struct class *class, dev_t devt)
4368 dev = class_find_device_by_devt(class, devt);
4371 device_unregister(dev);
4374 EXPORT_SYMBOL_GPL(device_destroy);
4377 * device_rename - renames a device
4378 * @dev: the pointer to the struct device to be renamed
4379 * @new_name: the new name of the device
4381 * It is the responsibility of the caller to provide mutual
4382 * exclusion between two different calls of device_rename
4383 * on the same device to ensure that new_name is valid and
4384 * won't conflict with other devices.
4386 * Note: Don't call this function. Currently, the networking layer calls this
4387 * function, but that will change. The following text from Kay Sievers offers
4390 * Renaming devices is racy at many levels, symlinks and other stuff are not
4391 * replaced atomically, and you get a "move" uevent, but it's not easy to
4392 * connect the event to the old and new device. Device nodes are not renamed at
4393 * all, there isn't even support for that in the kernel now.
4395 * In the meantime, during renaming, your target name might be taken by another
4396 * driver, creating conflicts. Or the old name is taken directly after you
4397 * renamed it -- then you get events for the same DEVPATH, before you even see
4398 * the "move" event. It's just a mess, and nothing new should ever rely on
4399 * kernel device renaming. Besides that, it's not even implemented now for
4400 * other things than (driver-core wise very simple) network devices.
4402 * We are currently about to change network renaming in udev to completely
4403 * disallow renaming of devices in the same namespace as the kernel uses,
4404 * because we can't solve the problems properly, that arise with swapping names
4405 * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
4406 * be allowed to some other name than eth[0-9]*, for the aforementioned
4409 * Make up a "real" name in the driver before you register anything, or add
4410 * some other attributes for userspace to find the device, or use udev to add
4411 * symlinks -- but never rename kernel devices later, it's a complete mess. We
4412 * don't even want to get into that and try to implement the missing pieces in
4413 * the core. We really have other pieces to fix in the driver core mess. :)
4415 int device_rename(struct device *dev, const char *new_name)
4417 struct kobject *kobj = &dev->kobj;
4418 char *old_device_name = NULL;
4421 dev = get_device(dev);
4425 dev_dbg(dev, "renaming to %s\n", new_name);
4427 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
4428 if (!old_device_name) {
4434 error = sysfs_rename_link_ns(&dev->class->p->subsys.kobj,
4435 kobj, old_device_name,
4436 new_name, kobject_namespace(kobj));
4441 error = kobject_rename(kobj, new_name);
4448 kfree(old_device_name);
4452 EXPORT_SYMBOL_GPL(device_rename);
4454 static int device_move_class_links(struct device *dev,
4455 struct device *old_parent,
4456 struct device *new_parent)
4461 sysfs_remove_link(&dev->kobj, "device");
4463 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
4469 * device_move - moves a device to a new parent
4470 * @dev: the pointer to the struct device to be moved
4471 * @new_parent: the new parent of the device (can be NULL)
4472 * @dpm_order: how to reorder the dpm_list
4474 int device_move(struct device *dev, struct device *new_parent,
4475 enum dpm_order dpm_order)
4478 struct device *old_parent;
4479 struct kobject *new_parent_kobj;
4481 dev = get_device(dev);
4486 new_parent = get_device(new_parent);
4487 new_parent_kobj = get_device_parent(dev, new_parent);
4488 if (IS_ERR(new_parent_kobj)) {
4489 error = PTR_ERR(new_parent_kobj);
4490 put_device(new_parent);
4494 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
4495 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
4496 error = kobject_move(&dev->kobj, new_parent_kobj);
4498 cleanup_glue_dir(dev, new_parent_kobj);
4499 put_device(new_parent);
4502 old_parent = dev->parent;
4503 dev->parent = new_parent;
4505 klist_remove(&dev->p->knode_parent);
4507 klist_add_tail(&dev->p->knode_parent,
4508 &new_parent->p->klist_children);
4509 set_dev_node(dev, dev_to_node(new_parent));
4513 error = device_move_class_links(dev, old_parent, new_parent);
4515 /* We ignore errors on cleanup since we're hosed anyway... */
4516 device_move_class_links(dev, new_parent, old_parent);
4517 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
4519 klist_remove(&dev->p->knode_parent);
4520 dev->parent = old_parent;
4522 klist_add_tail(&dev->p->knode_parent,
4523 &old_parent->p->klist_children);
4524 set_dev_node(dev, dev_to_node(old_parent));
4527 cleanup_glue_dir(dev, new_parent_kobj);
4528 put_device(new_parent);
4532 switch (dpm_order) {
4533 case DPM_ORDER_NONE:
4535 case DPM_ORDER_DEV_AFTER_PARENT:
4536 device_pm_move_after(dev, new_parent);
4537 devices_kset_move_after(dev, new_parent);
4539 case DPM_ORDER_PARENT_BEFORE_DEV:
4540 device_pm_move_before(new_parent, dev);
4541 devices_kset_move_before(new_parent, dev);
4543 case DPM_ORDER_DEV_LAST:
4544 device_pm_move_last(dev);
4545 devices_kset_move_last(dev);
4549 put_device(old_parent);
4555 EXPORT_SYMBOL_GPL(device_move);
4557 static int device_attrs_change_owner(struct device *dev, kuid_t kuid,
4560 struct kobject *kobj = &dev->kobj;
4561 struct class *class = dev->class;
4562 const struct device_type *type = dev->type;
4567 * Change the device groups of the device class for @dev to
4570 error = sysfs_groups_change_owner(kobj, class->dev_groups, kuid,
4578 * Change the device groups of the device type for @dev to
4581 error = sysfs_groups_change_owner(kobj, type->groups, kuid,
4587 /* Change the device groups of @dev to @kuid/@kgid. */
4588 error = sysfs_groups_change_owner(kobj, dev->groups, kuid, kgid);
4592 if (device_supports_offline(dev) && !dev->offline_disabled) {
4593 /* Change online device attributes of @dev to @kuid/@kgid. */
4594 error = sysfs_file_change_owner(kobj, dev_attr_online.attr.name,
4604 * device_change_owner - change the owner of an existing device.
4606 * @kuid: new owner's kuid
4607 * @kgid: new owner's kgid
4609 * This changes the owner of @dev and its corresponding sysfs entries to
4610 * @kuid/@kgid. This function closely mirrors how @dev was added via driver
4613 * Returns 0 on success or error code on failure.
4615 int device_change_owner(struct device *dev, kuid_t kuid, kgid_t kgid)
4618 struct kobject *kobj = &dev->kobj;
4620 dev = get_device(dev);
4625 * Change the kobject and the default attributes and groups of the
4626 * ktype associated with it to @kuid/@kgid.
4628 error = sysfs_change_owner(kobj, kuid, kgid);
4633 * Change the uevent file for @dev to the new owner. The uevent file
4634 * was created in a separate step when @dev got added and we mirror
4637 error = sysfs_file_change_owner(kobj, dev_attr_uevent.attr.name, kuid,
4643 * Change the device groups, the device groups associated with the
4644 * device class, and the groups associated with the device type of @dev
4647 error = device_attrs_change_owner(dev, kuid, kgid);
4651 error = dpm_sysfs_change_owner(dev, kuid, kgid);
4656 if (sysfs_deprecated && dev->class == &block_class)
4661 * Change the owner of the symlink located in the class directory of
4662 * the device class associated with @dev which points to the actual
4663 * directory entry for @dev to @kuid/@kgid. This ensures that the
4664 * symlink shows the same permissions as its target.
4666 error = sysfs_link_change_owner(&dev->class->p->subsys.kobj, &dev->kobj,
4667 dev_name(dev), kuid, kgid);
4675 EXPORT_SYMBOL_GPL(device_change_owner);
4678 * device_shutdown - call ->shutdown() on each device to shutdown.
4680 void device_shutdown(void)
4682 struct device *dev, *parent;
4684 wait_for_device_probe();
4685 device_block_probing();
4689 spin_lock(&devices_kset->list_lock);
4691 * Walk the devices list backward, shutting down each in turn.
4692 * Beware that device unplug events may also start pulling
4693 * devices offline, even as the system is shutting down.
4695 while (!list_empty(&devices_kset->list)) {
4696 dev = list_entry(devices_kset->list.prev, struct device,
4700 * hold reference count of device's parent to
4701 * prevent it from being freed because parent's
4702 * lock is to be held
4704 parent = get_device(dev->parent);
4707 * Make sure the device is off the kset list, in the
4708 * event that dev->*->shutdown() doesn't remove it.
4710 list_del_init(&dev->kobj.entry);
4711 spin_unlock(&devices_kset->list_lock);
4713 /* hold lock to avoid race with probe/release */
4715 device_lock(parent);
4718 /* Don't allow any more runtime suspends */
4719 pm_runtime_get_noresume(dev);
4720 pm_runtime_barrier(dev);
4722 if (dev->class && dev->class->shutdown_pre) {
4724 dev_info(dev, "shutdown_pre\n");
4725 dev->class->shutdown_pre(dev);
4727 if (dev->bus && dev->bus->shutdown) {
4729 dev_info(dev, "shutdown\n");
4730 dev->bus->shutdown(dev);
4731 } else if (dev->driver && dev->driver->shutdown) {
4733 dev_info(dev, "shutdown\n");
4734 dev->driver->shutdown(dev);
4739 device_unlock(parent);
4744 spin_lock(&devices_kset->list_lock);
4746 spin_unlock(&devices_kset->list_lock);
4750 * Device logging functions
4753 #ifdef CONFIG_PRINTK
4755 set_dev_info(const struct device *dev, struct dev_printk_info *dev_info)
4759 memset(dev_info, 0, sizeof(*dev_info));
4762 subsys = dev->class->name;
4764 subsys = dev->bus->name;
4768 strscpy(dev_info->subsystem, subsys, sizeof(dev_info->subsystem));
4771 * Add device identifier DEVICE=:
4775 * +sound:card0 subsystem:devname
4777 if (MAJOR(dev->devt)) {
4780 if (strcmp(subsys, "block") == 0)
4785 snprintf(dev_info->device, sizeof(dev_info->device),
4786 "%c%u:%u", c, MAJOR(dev->devt), MINOR(dev->devt));
4787 } else if (strcmp(subsys, "net") == 0) {
4788 struct net_device *net = to_net_dev(dev);
4790 snprintf(dev_info->device, sizeof(dev_info->device),
4791 "n%u", net->ifindex);
4793 snprintf(dev_info->device, sizeof(dev_info->device),
4794 "+%s:%s", subsys, dev_name(dev));
4798 int dev_vprintk_emit(int level, const struct device *dev,
4799 const char *fmt, va_list args)
4801 struct dev_printk_info dev_info;
4803 set_dev_info(dev, &dev_info);
4805 return vprintk_emit(0, level, &dev_info, fmt, args);
4807 EXPORT_SYMBOL(dev_vprintk_emit);
4809 int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...)
4814 va_start(args, fmt);
4816 r = dev_vprintk_emit(level, dev, fmt, args);
4822 EXPORT_SYMBOL(dev_printk_emit);
4824 static void __dev_printk(const char *level, const struct device *dev,
4825 struct va_format *vaf)
4828 dev_printk_emit(level[1] - '0', dev, "%s %s: %pV",
4829 dev_driver_string(dev), dev_name(dev), vaf);
4831 printk("%s(NULL device *): %pV", level, vaf);
4834 void _dev_printk(const char *level, const struct device *dev,
4835 const char *fmt, ...)
4837 struct va_format vaf;
4840 va_start(args, fmt);
4845 __dev_printk(level, dev, &vaf);
4849 EXPORT_SYMBOL(_dev_printk);
4851 #define define_dev_printk_level(func, kern_level) \
4852 void func(const struct device *dev, const char *fmt, ...) \
4854 struct va_format vaf; \
4857 va_start(args, fmt); \
4862 __dev_printk(kern_level, dev, &vaf); \
4866 EXPORT_SYMBOL(func);
4868 define_dev_printk_level(_dev_emerg, KERN_EMERG);
4869 define_dev_printk_level(_dev_alert, KERN_ALERT);
4870 define_dev_printk_level(_dev_crit, KERN_CRIT);
4871 define_dev_printk_level(_dev_err, KERN_ERR);
4872 define_dev_printk_level(_dev_warn, KERN_WARNING);
4873 define_dev_printk_level(_dev_notice, KERN_NOTICE);
4874 define_dev_printk_level(_dev_info, KERN_INFO);
4879 * dev_err_probe - probe error check and log helper
4880 * @dev: the pointer to the struct device
4881 * @err: error value to test
4882 * @fmt: printf-style format string
4883 * @...: arguments as specified in the format string
4885 * This helper implements common pattern present in probe functions for error
4886 * checking: print debug or error message depending if the error value is
4887 * -EPROBE_DEFER and propagate error upwards.
4888 * In case of -EPROBE_DEFER it sets also defer probe reason, which can be
4889 * checked later by reading devices_deferred debugfs attribute.
4890 * It replaces code sequence::
4892 * if (err != -EPROBE_DEFER)
4893 * dev_err(dev, ...);
4895 * dev_dbg(dev, ...);
4900 * return dev_err_probe(dev, err, ...);
4902 * Note that it is deemed acceptable to use this function for error
4903 * prints during probe even if the @err is known to never be -EPROBE_DEFER.
4904 * The benefit compared to a normal dev_err() is the standardized format
4905 * of the error code and the fact that the error code is returned.
4910 int dev_err_probe(const struct device *dev, int err, const char *fmt, ...)
4912 struct va_format vaf;
4915 va_start(args, fmt);
4919 if (err != -EPROBE_DEFER) {
4920 dev_err(dev, "error %pe: %pV", ERR_PTR(err), &vaf);
4922 device_set_deferred_probe_reason(dev, &vaf);
4923 dev_dbg(dev, "error %pe: %pV", ERR_PTR(err), &vaf);
4930 EXPORT_SYMBOL_GPL(dev_err_probe);
4932 static inline bool fwnode_is_primary(struct fwnode_handle *fwnode)
4934 return fwnode && !IS_ERR(fwnode->secondary);
4938 * set_primary_fwnode - Change the primary firmware node of a given device.
4939 * @dev: Device to handle.
4940 * @fwnode: New primary firmware node of the device.
4942 * Set the device's firmware node pointer to @fwnode, but if a secondary
4943 * firmware node of the device is present, preserve it.
4945 * Valid fwnode cases are:
4946 * - primary --> secondary --> -ENODEV
4947 * - primary --> NULL
4948 * - secondary --> -ENODEV
4951 void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
4953 struct device *parent = dev->parent;
4954 struct fwnode_handle *fn = dev->fwnode;
4957 if (fwnode_is_primary(fn))
4961 WARN_ON(fwnode->secondary);
4962 fwnode->secondary = fn;
4964 dev->fwnode = fwnode;
4966 if (fwnode_is_primary(fn)) {
4967 dev->fwnode = fn->secondary;
4968 /* Set fn->secondary = NULL, so fn remains the primary fwnode */
4969 if (!(parent && fn == parent->fwnode))
4970 fn->secondary = NULL;
4976 EXPORT_SYMBOL_GPL(set_primary_fwnode);
4979 * set_secondary_fwnode - Change the secondary firmware node of a given device.
4980 * @dev: Device to handle.
4981 * @fwnode: New secondary firmware node of the device.
4983 * If a primary firmware node of the device is present, set its secondary
4984 * pointer to @fwnode. Otherwise, set the device's firmware node pointer to
4987 void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
4990 fwnode->secondary = ERR_PTR(-ENODEV);
4992 if (fwnode_is_primary(dev->fwnode))
4993 dev->fwnode->secondary = fwnode;
4995 dev->fwnode = fwnode;
4997 EXPORT_SYMBOL_GPL(set_secondary_fwnode);
5000 * device_set_of_node_from_dev - reuse device-tree node of another device
5001 * @dev: device whose device-tree node is being set
5002 * @dev2: device whose device-tree node is being reused
5004 * Takes another reference to the new device-tree node after first dropping
5005 * any reference held to the old node.
5007 void device_set_of_node_from_dev(struct device *dev, const struct device *dev2)
5009 of_node_put(dev->of_node);
5010 dev->of_node = of_node_get(dev2->of_node);
5011 dev->of_node_reused = true;
5013 EXPORT_SYMBOL_GPL(device_set_of_node_from_dev);
5015 void device_set_node(struct device *dev, struct fwnode_handle *fwnode)
5017 dev->fwnode = fwnode;
5018 dev->of_node = to_of_node(fwnode);
5020 EXPORT_SYMBOL_GPL(device_set_node);
5022 int device_match_name(struct device *dev, const void *name)
5024 return sysfs_streq(dev_name(dev), name);
5026 EXPORT_SYMBOL_GPL(device_match_name);
5028 int device_match_of_node(struct device *dev, const void *np)
5030 return dev->of_node == np;
5032 EXPORT_SYMBOL_GPL(device_match_of_node);
5034 int device_match_fwnode(struct device *dev, const void *fwnode)
5036 return dev_fwnode(dev) == fwnode;
5038 EXPORT_SYMBOL_GPL(device_match_fwnode);
5040 int device_match_devt(struct device *dev, const void *pdevt)
5042 return dev->devt == *(dev_t *)pdevt;
5044 EXPORT_SYMBOL_GPL(device_match_devt);
5046 int device_match_acpi_dev(struct device *dev, const void *adev)
5048 return ACPI_COMPANION(dev) == adev;
5050 EXPORT_SYMBOL(device_match_acpi_dev);
5052 int device_match_acpi_handle(struct device *dev, const void *handle)
5054 return ACPI_HANDLE(dev) == handle;
5056 EXPORT_SYMBOL(device_match_acpi_handle);
5058 int device_match_any(struct device *dev, const void *unused)
5062 EXPORT_SYMBOL_GPL(device_match_any);