xref: /linux-6.15/drivers/base/core.c (revision f1dcda0f)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * drivers/base/core.c - core driver model code (device registration, etc)
4  *
5  * Copyright (c) 2002-3 Patrick Mochel
6  * Copyright (c) 2002-3 Open Source Development Labs
7  * Copyright (c) 2006 Greg Kroah-Hartman <[email protected]>
8  * Copyright (c) 2006 Novell, Inc.
9  */
10 
11 #include <linux/acpi.h>
12 #include <linux/cpufreq.h>
13 #include <linux/device.h>
14 #include <linux/err.h>
15 #include <linux/fwnode.h>
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <linux/string.h>
20 #include <linux/kdev_t.h>
21 #include <linux/notifier.h>
22 #include <linux/of.h>
23 #include <linux/of_device.h>
24 #include <linux/genhd.h>
25 #include <linux/mutex.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/netdevice.h>
28 #include <linux/sched/signal.h>
29 #include <linux/sched/mm.h>
30 #include <linux/swiotlb.h>
31 #include <linux/sysfs.h>
32 #include <linux/dma-map-ops.h> /* for dma_default_coherent */
33 
34 #include "base.h"
35 #include "power/power.h"
36 
37 #ifdef CONFIG_SYSFS_DEPRECATED
38 #ifdef CONFIG_SYSFS_DEPRECATED_V2
39 long sysfs_deprecated = 1;
40 #else
41 long sysfs_deprecated = 0;
42 #endif
43 static int __init sysfs_deprecated_setup(char *arg)
44 {
45 	return kstrtol(arg, 10, &sysfs_deprecated);
46 }
47 early_param("sysfs.deprecated", sysfs_deprecated_setup);
48 #endif
49 
50 /* Device links support. */
51 static LIST_HEAD(deferred_sync);
52 static unsigned int defer_sync_state_count = 1;
53 static DEFINE_MUTEX(fwnode_link_lock);
54 static bool fw_devlink_is_permissive(void);
55 static bool fw_devlink_drv_reg_done;
56 
57 /**
58  * fwnode_link_add - Create a link between two fwnode_handles.
59  * @con: Consumer end of the link.
60  * @sup: Supplier end of the link.
61  *
62  * Create a fwnode link between fwnode handles @con and @sup. The fwnode link
63  * represents the detail that the firmware lists @sup fwnode as supplying a
64  * resource to @con.
65  *
66  * The driver core will use the fwnode link to create a device link between the
67  * two device objects corresponding to @con and @sup when they are created. The
68  * driver core will automatically delete the fwnode link between @con and @sup
69  * after doing that.
70  *
71  * Attempts to create duplicate links between the same pair of fwnode handles
72  * are ignored and there is no reference counting.
73  */
74 int fwnode_link_add(struct fwnode_handle *con, struct fwnode_handle *sup)
75 {
76 	struct fwnode_link *link;
77 	int ret = 0;
78 
79 	mutex_lock(&fwnode_link_lock);
80 
81 	list_for_each_entry(link, &sup->consumers, s_hook)
82 		if (link->consumer == con)
83 			goto out;
84 
85 	link = kzalloc(sizeof(*link), GFP_KERNEL);
86 	if (!link) {
87 		ret = -ENOMEM;
88 		goto out;
89 	}
90 
91 	link->supplier = sup;
92 	INIT_LIST_HEAD(&link->s_hook);
93 	link->consumer = con;
94 	INIT_LIST_HEAD(&link->c_hook);
95 
96 	list_add(&link->s_hook, &sup->consumers);
97 	list_add(&link->c_hook, &con->suppliers);
98 	pr_debug("%pfwP Linked as a fwnode consumer to %pfwP\n",
99 		 con, sup);
100 out:
101 	mutex_unlock(&fwnode_link_lock);
102 
103 	return ret;
104 }
105 
106 /**
107  * __fwnode_link_del - Delete a link between two fwnode_handles.
108  * @link: the fwnode_link to be deleted
109  *
110  * The fwnode_link_lock needs to be held when this function is called.
111  */
112 static void __fwnode_link_del(struct fwnode_link *link)
113 {
114 	pr_debug("%pfwP Dropping the fwnode link to %pfwP\n",
115 		 link->consumer, link->supplier);
116 	list_del(&link->s_hook);
117 	list_del(&link->c_hook);
118 	kfree(link);
119 }
120 
121 /**
122  * fwnode_links_purge_suppliers - Delete all supplier links of fwnode_handle.
123  * @fwnode: fwnode whose supplier links need to be deleted
124  *
125  * Deletes all supplier links connecting directly to @fwnode.
126  */
127 static void fwnode_links_purge_suppliers(struct fwnode_handle *fwnode)
128 {
129 	struct fwnode_link *link, *tmp;
130 
131 	mutex_lock(&fwnode_link_lock);
132 	list_for_each_entry_safe(link, tmp, &fwnode->suppliers, c_hook)
133 		__fwnode_link_del(link);
134 	mutex_unlock(&fwnode_link_lock);
135 }
136 
137 /**
138  * fwnode_links_purge_consumers - Delete all consumer links of fwnode_handle.
139  * @fwnode: fwnode whose consumer links need to be deleted
140  *
141  * Deletes all consumer links connecting directly to @fwnode.
142  */
143 static void fwnode_links_purge_consumers(struct fwnode_handle *fwnode)
144 {
145 	struct fwnode_link *link, *tmp;
146 
147 	mutex_lock(&fwnode_link_lock);
148 	list_for_each_entry_safe(link, tmp, &fwnode->consumers, s_hook)
149 		__fwnode_link_del(link);
150 	mutex_unlock(&fwnode_link_lock);
151 }
152 
153 /**
154  * fwnode_links_purge - Delete all links connected to a fwnode_handle.
155  * @fwnode: fwnode whose links needs to be deleted
156  *
157  * Deletes all links connecting directly to a fwnode.
158  */
159 void fwnode_links_purge(struct fwnode_handle *fwnode)
160 {
161 	fwnode_links_purge_suppliers(fwnode);
162 	fwnode_links_purge_consumers(fwnode);
163 }
164 
165 void fw_devlink_purge_absent_suppliers(struct fwnode_handle *fwnode)
166 {
167 	struct fwnode_handle *child;
168 
169 	/* Don't purge consumer links of an added child */
170 	if (fwnode->dev)
171 		return;
172 
173 	fwnode->flags |= FWNODE_FLAG_NOT_DEVICE;
174 	fwnode_links_purge_consumers(fwnode);
175 
176 	fwnode_for_each_available_child_node(fwnode, child)
177 		fw_devlink_purge_absent_suppliers(child);
178 }
179 EXPORT_SYMBOL_GPL(fw_devlink_purge_absent_suppliers);
180 
181 #ifdef CONFIG_SRCU
182 static DEFINE_MUTEX(device_links_lock);
183 DEFINE_STATIC_SRCU(device_links_srcu);
184 
185 static inline void device_links_write_lock(void)
186 {
187 	mutex_lock(&device_links_lock);
188 }
189 
190 static inline void device_links_write_unlock(void)
191 {
192 	mutex_unlock(&device_links_lock);
193 }
194 
195 int device_links_read_lock(void) __acquires(&device_links_srcu)
196 {
197 	return srcu_read_lock(&device_links_srcu);
198 }
199 
200 void device_links_read_unlock(int idx) __releases(&device_links_srcu)
201 {
202 	srcu_read_unlock(&device_links_srcu, idx);
203 }
204 
205 int device_links_read_lock_held(void)
206 {
207 	return srcu_read_lock_held(&device_links_srcu);
208 }
209 
210 static void device_link_synchronize_removal(void)
211 {
212 	synchronize_srcu(&device_links_srcu);
213 }
214 
215 static void device_link_remove_from_lists(struct device_link *link)
216 {
217 	list_del_rcu(&link->s_node);
218 	list_del_rcu(&link->c_node);
219 }
220 #else /* !CONFIG_SRCU */
221 static DECLARE_RWSEM(device_links_lock);
222 
223 static inline void device_links_write_lock(void)
224 {
225 	down_write(&device_links_lock);
226 }
227 
228 static inline void device_links_write_unlock(void)
229 {
230 	up_write(&device_links_lock);
231 }
232 
233 int device_links_read_lock(void)
234 {
235 	down_read(&device_links_lock);
236 	return 0;
237 }
238 
239 void device_links_read_unlock(int not_used)
240 {
241 	up_read(&device_links_lock);
242 }
243 
244 #ifdef CONFIG_DEBUG_LOCK_ALLOC
245 int device_links_read_lock_held(void)
246 {
247 	return lockdep_is_held(&device_links_lock);
248 }
249 #endif
250 
251 static inline void device_link_synchronize_removal(void)
252 {
253 }
254 
255 static void device_link_remove_from_lists(struct device_link *link)
256 {
257 	list_del(&link->s_node);
258 	list_del(&link->c_node);
259 }
260 #endif /* !CONFIG_SRCU */
261 
262 static bool device_is_ancestor(struct device *dev, struct device *target)
263 {
264 	while (target->parent) {
265 		target = target->parent;
266 		if (dev == target)
267 			return true;
268 	}
269 	return false;
270 }
271 
272 /**
273  * device_is_dependent - Check if one device depends on another one
274  * @dev: Device to check dependencies for.
275  * @target: Device to check against.
276  *
277  * Check if @target depends on @dev or any device dependent on it (its child or
278  * its consumer etc).  Return 1 if that is the case or 0 otherwise.
279  */
280 int device_is_dependent(struct device *dev, void *target)
281 {
282 	struct device_link *link;
283 	int ret;
284 
285 	/*
286 	 * The "ancestors" check is needed to catch the case when the target
287 	 * device has not been completely initialized yet and it is still
288 	 * missing from the list of children of its parent device.
289 	 */
290 	if (dev == target || device_is_ancestor(dev, target))
291 		return 1;
292 
293 	ret = device_for_each_child(dev, target, device_is_dependent);
294 	if (ret)
295 		return ret;
296 
297 	list_for_each_entry(link, &dev->links.consumers, s_node) {
298 		if ((link->flags & ~DL_FLAG_INFERRED) ==
299 		    (DL_FLAG_SYNC_STATE_ONLY | DL_FLAG_MANAGED))
300 			continue;
301 
302 		if (link->consumer == target)
303 			return 1;
304 
305 		ret = device_is_dependent(link->consumer, target);
306 		if (ret)
307 			break;
308 	}
309 	return ret;
310 }
311 
312 static void device_link_init_status(struct device_link *link,
313 				    struct device *consumer,
314 				    struct device *supplier)
315 {
316 	switch (supplier->links.status) {
317 	case DL_DEV_PROBING:
318 		switch (consumer->links.status) {
319 		case DL_DEV_PROBING:
320 			/*
321 			 * A consumer driver can create a link to a supplier
322 			 * that has not completed its probing yet as long as it
323 			 * knows that the supplier is already functional (for
324 			 * example, it has just acquired some resources from the
325 			 * supplier).
326 			 */
327 			link->status = DL_STATE_CONSUMER_PROBE;
328 			break;
329 		default:
330 			link->status = DL_STATE_DORMANT;
331 			break;
332 		}
333 		break;
334 	case DL_DEV_DRIVER_BOUND:
335 		switch (consumer->links.status) {
336 		case DL_DEV_PROBING:
337 			link->status = DL_STATE_CONSUMER_PROBE;
338 			break;
339 		case DL_DEV_DRIVER_BOUND:
340 			link->status = DL_STATE_ACTIVE;
341 			break;
342 		default:
343 			link->status = DL_STATE_AVAILABLE;
344 			break;
345 		}
346 		break;
347 	case DL_DEV_UNBINDING:
348 		link->status = DL_STATE_SUPPLIER_UNBIND;
349 		break;
350 	default:
351 		link->status = DL_STATE_DORMANT;
352 		break;
353 	}
354 }
355 
356 static int device_reorder_to_tail(struct device *dev, void *not_used)
357 {
358 	struct device_link *link;
359 
360 	/*
361 	 * Devices that have not been registered yet will be put to the ends
362 	 * of the lists during the registration, so skip them here.
363 	 */
364 	if (device_is_registered(dev))
365 		devices_kset_move_last(dev);
366 
367 	if (device_pm_initialized(dev))
368 		device_pm_move_last(dev);
369 
370 	device_for_each_child(dev, NULL, device_reorder_to_tail);
371 	list_for_each_entry(link, &dev->links.consumers, s_node) {
372 		if ((link->flags & ~DL_FLAG_INFERRED) ==
373 		    (DL_FLAG_SYNC_STATE_ONLY | DL_FLAG_MANAGED))
374 			continue;
375 		device_reorder_to_tail(link->consumer, NULL);
376 	}
377 
378 	return 0;
379 }
380 
381 /**
382  * device_pm_move_to_tail - Move set of devices to the end of device lists
383  * @dev: Device to move
384  *
385  * This is a device_reorder_to_tail() wrapper taking the requisite locks.
386  *
387  * It moves the @dev along with all of its children and all of its consumers
388  * to the ends of the device_kset and dpm_list, recursively.
389  */
390 void device_pm_move_to_tail(struct device *dev)
391 {
392 	int idx;
393 
394 	idx = device_links_read_lock();
395 	device_pm_lock();
396 	device_reorder_to_tail(dev, NULL);
397 	device_pm_unlock();
398 	device_links_read_unlock(idx);
399 }
400 
401 #define to_devlink(dev)	container_of((dev), struct device_link, link_dev)
402 
403 static ssize_t status_show(struct device *dev,
404 			   struct device_attribute *attr, char *buf)
405 {
406 	const char *output;
407 
408 	switch (to_devlink(dev)->status) {
409 	case DL_STATE_NONE:
410 		output = "not tracked";
411 		break;
412 	case DL_STATE_DORMANT:
413 		output = "dormant";
414 		break;
415 	case DL_STATE_AVAILABLE:
416 		output = "available";
417 		break;
418 	case DL_STATE_CONSUMER_PROBE:
419 		output = "consumer probing";
420 		break;
421 	case DL_STATE_ACTIVE:
422 		output = "active";
423 		break;
424 	case DL_STATE_SUPPLIER_UNBIND:
425 		output = "supplier unbinding";
426 		break;
427 	default:
428 		output = "unknown";
429 		break;
430 	}
431 
432 	return sysfs_emit(buf, "%s\n", output);
433 }
434 static DEVICE_ATTR_RO(status);
435 
436 static ssize_t auto_remove_on_show(struct device *dev,
437 				   struct device_attribute *attr, char *buf)
438 {
439 	struct device_link *link = to_devlink(dev);
440 	const char *output;
441 
442 	if (link->flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
443 		output = "supplier unbind";
444 	else if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER)
445 		output = "consumer unbind";
446 	else
447 		output = "never";
448 
449 	return sysfs_emit(buf, "%s\n", output);
450 }
451 static DEVICE_ATTR_RO(auto_remove_on);
452 
453 static ssize_t runtime_pm_show(struct device *dev,
454 			       struct device_attribute *attr, char *buf)
455 {
456 	struct device_link *link = to_devlink(dev);
457 
458 	return sysfs_emit(buf, "%d\n", !!(link->flags & DL_FLAG_PM_RUNTIME));
459 }
460 static DEVICE_ATTR_RO(runtime_pm);
461 
462 static ssize_t sync_state_only_show(struct device *dev,
463 				    struct device_attribute *attr, char *buf)
464 {
465 	struct device_link *link = to_devlink(dev);
466 
467 	return sysfs_emit(buf, "%d\n",
468 			  !!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
469 }
470 static DEVICE_ATTR_RO(sync_state_only);
471 
472 static struct attribute *devlink_attrs[] = {
473 	&dev_attr_status.attr,
474 	&dev_attr_auto_remove_on.attr,
475 	&dev_attr_runtime_pm.attr,
476 	&dev_attr_sync_state_only.attr,
477 	NULL,
478 };
479 ATTRIBUTE_GROUPS(devlink);
480 
481 static void device_link_release_fn(struct work_struct *work)
482 {
483 	struct device_link *link = container_of(work, struct device_link, rm_work);
484 
485 	/* Ensure that all references to the link object have been dropped. */
486 	device_link_synchronize_removal();
487 
488 	pm_runtime_release_supplier(link, true);
489 
490 	put_device(link->consumer);
491 	put_device(link->supplier);
492 	kfree(link);
493 }
494 
495 static void devlink_dev_release(struct device *dev)
496 {
497 	struct device_link *link = to_devlink(dev);
498 
499 	INIT_WORK(&link->rm_work, device_link_release_fn);
500 	/*
501 	 * It may take a while to complete this work because of the SRCU
502 	 * synchronization in device_link_release_fn() and if the consumer or
503 	 * supplier devices get deleted when it runs, so put it into the "long"
504 	 * workqueue.
505 	 */
506 	queue_work(system_long_wq, &link->rm_work);
507 }
508 
509 static struct class devlink_class = {
510 	.name = "devlink",
511 	.owner = THIS_MODULE,
512 	.dev_groups = devlink_groups,
513 	.dev_release = devlink_dev_release,
514 };
515 
516 static int devlink_add_symlinks(struct device *dev,
517 				struct class_interface *class_intf)
518 {
519 	int ret;
520 	size_t len;
521 	struct device_link *link = to_devlink(dev);
522 	struct device *sup = link->supplier;
523 	struct device *con = link->consumer;
524 	char *buf;
525 
526 	len = max(strlen(dev_bus_name(sup)) + strlen(dev_name(sup)),
527 		  strlen(dev_bus_name(con)) + strlen(dev_name(con)));
528 	len += strlen(":");
529 	len += strlen("supplier:") + 1;
530 	buf = kzalloc(len, GFP_KERNEL);
531 	if (!buf)
532 		return -ENOMEM;
533 
534 	ret = sysfs_create_link(&link->link_dev.kobj, &sup->kobj, "supplier");
535 	if (ret)
536 		goto out;
537 
538 	ret = sysfs_create_link(&link->link_dev.kobj, &con->kobj, "consumer");
539 	if (ret)
540 		goto err_con;
541 
542 	snprintf(buf, len, "consumer:%s:%s", dev_bus_name(con), dev_name(con));
543 	ret = sysfs_create_link(&sup->kobj, &link->link_dev.kobj, buf);
544 	if (ret)
545 		goto err_con_dev;
546 
547 	snprintf(buf, len, "supplier:%s:%s", dev_bus_name(sup), dev_name(sup));
548 	ret = sysfs_create_link(&con->kobj, &link->link_dev.kobj, buf);
549 	if (ret)
550 		goto err_sup_dev;
551 
552 	goto out;
553 
554 err_sup_dev:
555 	snprintf(buf, len, "consumer:%s:%s", dev_bus_name(con), dev_name(con));
556 	sysfs_remove_link(&sup->kobj, buf);
557 err_con_dev:
558 	sysfs_remove_link(&link->link_dev.kobj, "consumer");
559 err_con:
560 	sysfs_remove_link(&link->link_dev.kobj, "supplier");
561 out:
562 	kfree(buf);
563 	return ret;
564 }
565 
566 static void devlink_remove_symlinks(struct device *dev,
567 				   struct class_interface *class_intf)
568 {
569 	struct device_link *link = to_devlink(dev);
570 	size_t len;
571 	struct device *sup = link->supplier;
572 	struct device *con = link->consumer;
573 	char *buf;
574 
575 	sysfs_remove_link(&link->link_dev.kobj, "consumer");
576 	sysfs_remove_link(&link->link_dev.kobj, "supplier");
577 
578 	len = max(strlen(dev_bus_name(sup)) + strlen(dev_name(sup)),
579 		  strlen(dev_bus_name(con)) + strlen(dev_name(con)));
580 	len += strlen(":");
581 	len += strlen("supplier:") + 1;
582 	buf = kzalloc(len, GFP_KERNEL);
583 	if (!buf) {
584 		WARN(1, "Unable to properly free device link symlinks!\n");
585 		return;
586 	}
587 
588 	if (device_is_registered(con)) {
589 		snprintf(buf, len, "supplier:%s:%s", dev_bus_name(sup), dev_name(sup));
590 		sysfs_remove_link(&con->kobj, buf);
591 	}
592 	snprintf(buf, len, "consumer:%s:%s", dev_bus_name(con), dev_name(con));
593 	sysfs_remove_link(&sup->kobj, buf);
594 	kfree(buf);
595 }
596 
597 static struct class_interface devlink_class_intf = {
598 	.class = &devlink_class,
599 	.add_dev = devlink_add_symlinks,
600 	.remove_dev = devlink_remove_symlinks,
601 };
602 
603 static int __init devlink_class_init(void)
604 {
605 	int ret;
606 
607 	ret = class_register(&devlink_class);
608 	if (ret)
609 		return ret;
610 
611 	ret = class_interface_register(&devlink_class_intf);
612 	if (ret)
613 		class_unregister(&devlink_class);
614 
615 	return ret;
616 }
617 postcore_initcall(devlink_class_init);
618 
619 #define DL_MANAGED_LINK_FLAGS (DL_FLAG_AUTOREMOVE_CONSUMER | \
620 			       DL_FLAG_AUTOREMOVE_SUPPLIER | \
621 			       DL_FLAG_AUTOPROBE_CONSUMER  | \
622 			       DL_FLAG_SYNC_STATE_ONLY | \
623 			       DL_FLAG_INFERRED)
624 
625 #define DL_ADD_VALID_FLAGS (DL_MANAGED_LINK_FLAGS | DL_FLAG_STATELESS | \
626 			    DL_FLAG_PM_RUNTIME | DL_FLAG_RPM_ACTIVE)
627 
628 /**
629  * device_link_add - Create a link between two devices.
630  * @consumer: Consumer end of the link.
631  * @supplier: Supplier end of the link.
632  * @flags: Link flags.
633  *
634  * The caller is responsible for the proper synchronization of the link creation
635  * with runtime PM.  First, setting the DL_FLAG_PM_RUNTIME flag will cause the
636  * runtime PM framework to take the link into account.  Second, if the
637  * DL_FLAG_RPM_ACTIVE flag is set in addition to it, the supplier devices will
638  * be forced into the active meta state and reference-counted upon the creation
639  * of the link.  If DL_FLAG_PM_RUNTIME is not set, DL_FLAG_RPM_ACTIVE will be
640  * ignored.
641  *
642  * If DL_FLAG_STATELESS is set in @flags, the caller of this function is
643  * expected to release the link returned by it directly with the help of either
644  * device_link_del() or device_link_remove().
645  *
646  * If that flag is not set, however, the caller of this function is handing the
647  * management of the link over to the driver core entirely and its return value
648  * can only be used to check whether or not the link is present.  In that case,
649  * the DL_FLAG_AUTOREMOVE_CONSUMER and DL_FLAG_AUTOREMOVE_SUPPLIER device link
650  * flags can be used to indicate to the driver core when the link can be safely
651  * deleted.  Namely, setting one of them in @flags indicates to the driver core
652  * that the link is not going to be used (by the given caller of this function)
653  * after unbinding the consumer or supplier driver, respectively, from its
654  * device, so the link can be deleted at that point.  If none of them is set,
655  * the link will be maintained until one of the devices pointed to by it (either
656  * the consumer or the supplier) is unregistered.
657  *
658  * Also, if DL_FLAG_STATELESS, DL_FLAG_AUTOREMOVE_CONSUMER and
659  * DL_FLAG_AUTOREMOVE_SUPPLIER are not set in @flags (that is, a persistent
660  * managed device link is being added), the DL_FLAG_AUTOPROBE_CONSUMER flag can
661  * be used to request the driver core to automatically probe for a consumer
662  * driver after successfully binding a driver to the supplier device.
663  *
664  * The combination of DL_FLAG_STATELESS and one of DL_FLAG_AUTOREMOVE_CONSUMER,
665  * DL_FLAG_AUTOREMOVE_SUPPLIER, or DL_FLAG_AUTOPROBE_CONSUMER set in @flags at
666  * the same time is invalid and will cause NULL to be returned upfront.
667  * However, if a device link between the given @consumer and @supplier pair
668  * exists already when this function is called for them, the existing link will
669  * be returned regardless of its current type and status (the link's flags may
670  * be modified then).  The caller of this function is then expected to treat
671  * the link as though it has just been created, so (in particular) if
672  * DL_FLAG_STATELESS was passed in @flags, the link needs to be released
673  * explicitly when not needed any more (as stated above).
674  *
675  * A side effect of the link creation is re-ordering of dpm_list and the
676  * devices_kset list by moving the consumer device and all devices depending
677  * on it to the ends of these lists (that does not happen to devices that have
678  * not been registered when this function is called).
679  *
680  * The supplier device is required to be registered when this function is called
681  * and NULL will be returned if that is not the case.  The consumer device need
682  * not be registered, however.
683  */
684 struct device_link *device_link_add(struct device *consumer,
685 				    struct device *supplier, u32 flags)
686 {
687 	struct device_link *link;
688 
689 	if (!consumer || !supplier || consumer == supplier ||
690 	    flags & ~DL_ADD_VALID_FLAGS ||
691 	    (flags & DL_FLAG_STATELESS && flags & DL_MANAGED_LINK_FLAGS) ||
692 	    (flags & DL_FLAG_SYNC_STATE_ONLY &&
693 	     (flags & ~DL_FLAG_INFERRED) != DL_FLAG_SYNC_STATE_ONLY) ||
694 	    (flags & DL_FLAG_AUTOPROBE_CONSUMER &&
695 	     flags & (DL_FLAG_AUTOREMOVE_CONSUMER |
696 		      DL_FLAG_AUTOREMOVE_SUPPLIER)))
697 		return NULL;
698 
699 	if (flags & DL_FLAG_PM_RUNTIME && flags & DL_FLAG_RPM_ACTIVE) {
700 		if (pm_runtime_get_sync(supplier) < 0) {
701 			pm_runtime_put_noidle(supplier);
702 			return NULL;
703 		}
704 	}
705 
706 	if (!(flags & DL_FLAG_STATELESS))
707 		flags |= DL_FLAG_MANAGED;
708 
709 	device_links_write_lock();
710 	device_pm_lock();
711 
712 	/*
713 	 * If the supplier has not been fully registered yet or there is a
714 	 * reverse (non-SYNC_STATE_ONLY) dependency between the consumer and
715 	 * the supplier already in the graph, return NULL. If the link is a
716 	 * SYNC_STATE_ONLY link, we don't check for reverse dependencies
717 	 * because it only affects sync_state() callbacks.
718 	 */
719 	if (!device_pm_initialized(supplier)
720 	    || (!(flags & DL_FLAG_SYNC_STATE_ONLY) &&
721 		  device_is_dependent(consumer, supplier))) {
722 		link = NULL;
723 		goto out;
724 	}
725 
726 	/*
727 	 * SYNC_STATE_ONLY links are useless once a consumer device has probed.
728 	 * So, only create it if the consumer hasn't probed yet.
729 	 */
730 	if (flags & DL_FLAG_SYNC_STATE_ONLY &&
731 	    consumer->links.status != DL_DEV_NO_DRIVER &&
732 	    consumer->links.status != DL_DEV_PROBING) {
733 		link = NULL;
734 		goto out;
735 	}
736 
737 	/*
738 	 * DL_FLAG_AUTOREMOVE_SUPPLIER indicates that the link will be needed
739 	 * longer than for DL_FLAG_AUTOREMOVE_CONSUMER and setting them both
740 	 * together doesn't make sense, so prefer DL_FLAG_AUTOREMOVE_SUPPLIER.
741 	 */
742 	if (flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
743 		flags &= ~DL_FLAG_AUTOREMOVE_CONSUMER;
744 
745 	list_for_each_entry(link, &supplier->links.consumers, s_node) {
746 		if (link->consumer != consumer)
747 			continue;
748 
749 		if (link->flags & DL_FLAG_INFERRED &&
750 		    !(flags & DL_FLAG_INFERRED))
751 			link->flags &= ~DL_FLAG_INFERRED;
752 
753 		if (flags & DL_FLAG_PM_RUNTIME) {
754 			if (!(link->flags & DL_FLAG_PM_RUNTIME)) {
755 				pm_runtime_new_link(consumer);
756 				link->flags |= DL_FLAG_PM_RUNTIME;
757 			}
758 			if (flags & DL_FLAG_RPM_ACTIVE)
759 				refcount_inc(&link->rpm_active);
760 		}
761 
762 		if (flags & DL_FLAG_STATELESS) {
763 			kref_get(&link->kref);
764 			if (link->flags & DL_FLAG_SYNC_STATE_ONLY &&
765 			    !(link->flags & DL_FLAG_STATELESS)) {
766 				link->flags |= DL_FLAG_STATELESS;
767 				goto reorder;
768 			} else {
769 				link->flags |= DL_FLAG_STATELESS;
770 				goto out;
771 			}
772 		}
773 
774 		/*
775 		 * If the life time of the link following from the new flags is
776 		 * longer than indicated by the flags of the existing link,
777 		 * update the existing link to stay around longer.
778 		 */
779 		if (flags & DL_FLAG_AUTOREMOVE_SUPPLIER) {
780 			if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER) {
781 				link->flags &= ~DL_FLAG_AUTOREMOVE_CONSUMER;
782 				link->flags |= DL_FLAG_AUTOREMOVE_SUPPLIER;
783 			}
784 		} else if (!(flags & DL_FLAG_AUTOREMOVE_CONSUMER)) {
785 			link->flags &= ~(DL_FLAG_AUTOREMOVE_CONSUMER |
786 					 DL_FLAG_AUTOREMOVE_SUPPLIER);
787 		}
788 		if (!(link->flags & DL_FLAG_MANAGED)) {
789 			kref_get(&link->kref);
790 			link->flags |= DL_FLAG_MANAGED;
791 			device_link_init_status(link, consumer, supplier);
792 		}
793 		if (link->flags & DL_FLAG_SYNC_STATE_ONLY &&
794 		    !(flags & DL_FLAG_SYNC_STATE_ONLY)) {
795 			link->flags &= ~DL_FLAG_SYNC_STATE_ONLY;
796 			goto reorder;
797 		}
798 
799 		goto out;
800 	}
801 
802 	link = kzalloc(sizeof(*link), GFP_KERNEL);
803 	if (!link)
804 		goto out;
805 
806 	refcount_set(&link->rpm_active, 1);
807 
808 	get_device(supplier);
809 	link->supplier = supplier;
810 	INIT_LIST_HEAD(&link->s_node);
811 	get_device(consumer);
812 	link->consumer = consumer;
813 	INIT_LIST_HEAD(&link->c_node);
814 	link->flags = flags;
815 	kref_init(&link->kref);
816 
817 	link->link_dev.class = &devlink_class;
818 	device_set_pm_not_required(&link->link_dev);
819 	dev_set_name(&link->link_dev, "%s:%s--%s:%s",
820 		     dev_bus_name(supplier), dev_name(supplier),
821 		     dev_bus_name(consumer), dev_name(consumer));
822 	if (device_register(&link->link_dev)) {
823 		put_device(&link->link_dev);
824 		link = NULL;
825 		goto out;
826 	}
827 
828 	if (flags & DL_FLAG_PM_RUNTIME) {
829 		if (flags & DL_FLAG_RPM_ACTIVE)
830 			refcount_inc(&link->rpm_active);
831 
832 		pm_runtime_new_link(consumer);
833 	}
834 
835 	/* Determine the initial link state. */
836 	if (flags & DL_FLAG_STATELESS)
837 		link->status = DL_STATE_NONE;
838 	else
839 		device_link_init_status(link, consumer, supplier);
840 
841 	/*
842 	 * Some callers expect the link creation during consumer driver probe to
843 	 * resume the supplier even without DL_FLAG_RPM_ACTIVE.
844 	 */
845 	if (link->status == DL_STATE_CONSUMER_PROBE &&
846 	    flags & DL_FLAG_PM_RUNTIME)
847 		pm_runtime_resume(supplier);
848 
849 	list_add_tail_rcu(&link->s_node, &supplier->links.consumers);
850 	list_add_tail_rcu(&link->c_node, &consumer->links.suppliers);
851 
852 	if (flags & DL_FLAG_SYNC_STATE_ONLY) {
853 		dev_dbg(consumer,
854 			"Linked as a sync state only consumer to %s\n",
855 			dev_name(supplier));
856 		goto out;
857 	}
858 
859 reorder:
860 	/*
861 	 * Move the consumer and all of the devices depending on it to the end
862 	 * of dpm_list and the devices_kset list.
863 	 *
864 	 * It is necessary to hold dpm_list locked throughout all that or else
865 	 * we may end up suspending with a wrong ordering of it.
866 	 */
867 	device_reorder_to_tail(consumer, NULL);
868 
869 	dev_dbg(consumer, "Linked as a consumer to %s\n", dev_name(supplier));
870 
871 out:
872 	device_pm_unlock();
873 	device_links_write_unlock();
874 
875 	if ((flags & DL_FLAG_PM_RUNTIME && flags & DL_FLAG_RPM_ACTIVE) && !link)
876 		pm_runtime_put(supplier);
877 
878 	return link;
879 }
880 EXPORT_SYMBOL_GPL(device_link_add);
881 
882 static void __device_link_del(struct kref *kref)
883 {
884 	struct device_link *link = container_of(kref, struct device_link, kref);
885 
886 	dev_dbg(link->consumer, "Dropping the link to %s\n",
887 		dev_name(link->supplier));
888 
889 	pm_runtime_drop_link(link);
890 
891 	device_link_remove_from_lists(link);
892 	device_unregister(&link->link_dev);
893 }
894 
895 static void device_link_put_kref(struct device_link *link)
896 {
897 	if (link->flags & DL_FLAG_STATELESS)
898 		kref_put(&link->kref, __device_link_del);
899 	else if (!device_is_registered(link->consumer))
900 		__device_link_del(&link->kref);
901 	else
902 		WARN(1, "Unable to drop a managed device link reference\n");
903 }
904 
905 /**
906  * device_link_del - Delete a stateless link between two devices.
907  * @link: Device link to delete.
908  *
909  * The caller must ensure proper synchronization of this function with runtime
910  * PM.  If the link was added multiple times, it needs to be deleted as often.
911  * Care is required for hotplugged devices:  Their links are purged on removal
912  * and calling device_link_del() is then no longer allowed.
913  */
914 void device_link_del(struct device_link *link)
915 {
916 	device_links_write_lock();
917 	device_link_put_kref(link);
918 	device_links_write_unlock();
919 }
920 EXPORT_SYMBOL_GPL(device_link_del);
921 
922 /**
923  * device_link_remove - Delete a stateless link between two devices.
924  * @consumer: Consumer end of the link.
925  * @supplier: Supplier end of the link.
926  *
927  * The caller must ensure proper synchronization of this function with runtime
928  * PM.
929  */
930 void device_link_remove(void *consumer, struct device *supplier)
931 {
932 	struct device_link *link;
933 
934 	if (WARN_ON(consumer == supplier))
935 		return;
936 
937 	device_links_write_lock();
938 
939 	list_for_each_entry(link, &supplier->links.consumers, s_node) {
940 		if (link->consumer == consumer) {
941 			device_link_put_kref(link);
942 			break;
943 		}
944 	}
945 
946 	device_links_write_unlock();
947 }
948 EXPORT_SYMBOL_GPL(device_link_remove);
949 
950 static void device_links_missing_supplier(struct device *dev)
951 {
952 	struct device_link *link;
953 
954 	list_for_each_entry(link, &dev->links.suppliers, c_node) {
955 		if (link->status != DL_STATE_CONSUMER_PROBE)
956 			continue;
957 
958 		if (link->supplier->links.status == DL_DEV_DRIVER_BOUND) {
959 			WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
960 		} else {
961 			WARN_ON(!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
962 			WRITE_ONCE(link->status, DL_STATE_DORMANT);
963 		}
964 	}
965 }
966 
967 /**
968  * device_links_check_suppliers - Check presence of supplier drivers.
969  * @dev: Consumer device.
970  *
971  * Check links from this device to any suppliers.  Walk the list of the device's
972  * links to suppliers and see if all of them are available.  If not, simply
973  * return -EPROBE_DEFER.
974  *
975  * We need to guarantee that the supplier will not go away after the check has
976  * been positive here.  It only can go away in __device_release_driver() and
977  * that function  checks the device's links to consumers.  This means we need to
978  * mark the link as "consumer probe in progress" to make the supplier removal
979  * wait for us to complete (or bad things may happen).
980  *
981  * Links without the DL_FLAG_MANAGED flag set are ignored.
982  */
983 int device_links_check_suppliers(struct device *dev)
984 {
985 	struct device_link *link;
986 	int ret = 0;
987 	struct fwnode_handle *sup_fw;
988 
989 	/*
990 	 * Device waiting for supplier to become available is not allowed to
991 	 * probe.
992 	 */
993 	mutex_lock(&fwnode_link_lock);
994 	if (dev->fwnode && !list_empty(&dev->fwnode->suppliers) &&
995 	    !fw_devlink_is_permissive()) {
996 		sup_fw = list_first_entry(&dev->fwnode->suppliers,
997 					  struct fwnode_link,
998 					  c_hook)->supplier;
999 		dev_err_probe(dev, -EPROBE_DEFER, "wait for supplier %pfwP\n",
1000 			      sup_fw);
1001 		mutex_unlock(&fwnode_link_lock);
1002 		return -EPROBE_DEFER;
1003 	}
1004 	mutex_unlock(&fwnode_link_lock);
1005 
1006 	device_links_write_lock();
1007 
1008 	list_for_each_entry(link, &dev->links.suppliers, c_node) {
1009 		if (!(link->flags & DL_FLAG_MANAGED))
1010 			continue;
1011 
1012 		if (link->status != DL_STATE_AVAILABLE &&
1013 		    !(link->flags & DL_FLAG_SYNC_STATE_ONLY)) {
1014 			device_links_missing_supplier(dev);
1015 			dev_err_probe(dev, -EPROBE_DEFER,
1016 				      "supplier %s not ready\n",
1017 				      dev_name(link->supplier));
1018 			ret = -EPROBE_DEFER;
1019 			break;
1020 		}
1021 		WRITE_ONCE(link->status, DL_STATE_CONSUMER_PROBE);
1022 	}
1023 	dev->links.status = DL_DEV_PROBING;
1024 
1025 	device_links_write_unlock();
1026 	return ret;
1027 }
1028 
1029 /**
1030  * __device_links_queue_sync_state - Queue a device for sync_state() callback
1031  * @dev: Device to call sync_state() on
1032  * @list: List head to queue the @dev on
1033  *
1034  * Queues a device for a sync_state() callback when the device links write lock
1035  * isn't held. This allows the sync_state() execution flow to use device links
1036  * APIs.  The caller must ensure this function is called with
1037  * device_links_write_lock() held.
1038  *
1039  * This function does a get_device() to make sure the device is not freed while
1040  * on this list.
1041  *
1042  * So the caller must also ensure that device_links_flush_sync_list() is called
1043  * as soon as the caller releases device_links_write_lock().  This is necessary
1044  * to make sure the sync_state() is called in a timely fashion and the
1045  * put_device() is called on this device.
1046  */
1047 static void __device_links_queue_sync_state(struct device *dev,
1048 					    struct list_head *list)
1049 {
1050 	struct device_link *link;
1051 
1052 	if (!dev_has_sync_state(dev))
1053 		return;
1054 	if (dev->state_synced)
1055 		return;
1056 
1057 	list_for_each_entry(link, &dev->links.consumers, s_node) {
1058 		if (!(link->flags & DL_FLAG_MANAGED))
1059 			continue;
1060 		if (link->status != DL_STATE_ACTIVE)
1061 			return;
1062 	}
1063 
1064 	/*
1065 	 * Set the flag here to avoid adding the same device to a list more
1066 	 * than once. This can happen if new consumers get added to the device
1067 	 * and probed before the list is flushed.
1068 	 */
1069 	dev->state_synced = true;
1070 
1071 	if (WARN_ON(!list_empty(&dev->links.defer_sync)))
1072 		return;
1073 
1074 	get_device(dev);
1075 	list_add_tail(&dev->links.defer_sync, list);
1076 }
1077 
1078 /**
1079  * device_links_flush_sync_list - Call sync_state() on a list of devices
1080  * @list: List of devices to call sync_state() on
1081  * @dont_lock_dev: Device for which lock is already held by the caller
1082  *
1083  * Calls sync_state() on all the devices that have been queued for it. This
1084  * function is used in conjunction with __device_links_queue_sync_state(). The
1085  * @dont_lock_dev parameter is useful when this function is called from a
1086  * context where a device lock is already held.
1087  */
1088 static void device_links_flush_sync_list(struct list_head *list,
1089 					 struct device *dont_lock_dev)
1090 {
1091 	struct device *dev, *tmp;
1092 
1093 	list_for_each_entry_safe(dev, tmp, list, links.defer_sync) {
1094 		list_del_init(&dev->links.defer_sync);
1095 
1096 		if (dev != dont_lock_dev)
1097 			device_lock(dev);
1098 
1099 		if (dev->bus->sync_state)
1100 			dev->bus->sync_state(dev);
1101 		else if (dev->driver && dev->driver->sync_state)
1102 			dev->driver->sync_state(dev);
1103 
1104 		if (dev != dont_lock_dev)
1105 			device_unlock(dev);
1106 
1107 		put_device(dev);
1108 	}
1109 }
1110 
1111 void device_links_supplier_sync_state_pause(void)
1112 {
1113 	device_links_write_lock();
1114 	defer_sync_state_count++;
1115 	device_links_write_unlock();
1116 }
1117 
1118 void device_links_supplier_sync_state_resume(void)
1119 {
1120 	struct device *dev, *tmp;
1121 	LIST_HEAD(sync_list);
1122 
1123 	device_links_write_lock();
1124 	if (!defer_sync_state_count) {
1125 		WARN(true, "Unmatched sync_state pause/resume!");
1126 		goto out;
1127 	}
1128 	defer_sync_state_count--;
1129 	if (defer_sync_state_count)
1130 		goto out;
1131 
1132 	list_for_each_entry_safe(dev, tmp, &deferred_sync, links.defer_sync) {
1133 		/*
1134 		 * Delete from deferred_sync list before queuing it to
1135 		 * sync_list because defer_sync is used for both lists.
1136 		 */
1137 		list_del_init(&dev->links.defer_sync);
1138 		__device_links_queue_sync_state(dev, &sync_list);
1139 	}
1140 out:
1141 	device_links_write_unlock();
1142 
1143 	device_links_flush_sync_list(&sync_list, NULL);
1144 }
1145 
1146 static int sync_state_resume_initcall(void)
1147 {
1148 	device_links_supplier_sync_state_resume();
1149 	return 0;
1150 }
1151 late_initcall(sync_state_resume_initcall);
1152 
1153 static void __device_links_supplier_defer_sync(struct device *sup)
1154 {
1155 	if (list_empty(&sup->links.defer_sync) && dev_has_sync_state(sup))
1156 		list_add_tail(&sup->links.defer_sync, &deferred_sync);
1157 }
1158 
1159 static void device_link_drop_managed(struct device_link *link)
1160 {
1161 	link->flags &= ~DL_FLAG_MANAGED;
1162 	WRITE_ONCE(link->status, DL_STATE_NONE);
1163 	kref_put(&link->kref, __device_link_del);
1164 }
1165 
1166 static ssize_t waiting_for_supplier_show(struct device *dev,
1167 					 struct device_attribute *attr,
1168 					 char *buf)
1169 {
1170 	bool val;
1171 
1172 	device_lock(dev);
1173 	val = !list_empty(&dev->fwnode->suppliers);
1174 	device_unlock(dev);
1175 	return sysfs_emit(buf, "%u\n", val);
1176 }
1177 static DEVICE_ATTR_RO(waiting_for_supplier);
1178 
1179 /**
1180  * device_links_force_bind - Prepares device to be force bound
1181  * @dev: Consumer device.
1182  *
1183  * device_bind_driver() force binds a device to a driver without calling any
1184  * driver probe functions. So the consumer really isn't going to wait for any
1185  * supplier before it's bound to the driver. We still want the device link
1186  * states to be sensible when this happens.
1187  *
1188  * In preparation for device_bind_driver(), this function goes through each
1189  * supplier device links and checks if the supplier is bound. If it is, then
1190  * the device link status is set to CONSUMER_PROBE. Otherwise, the device link
1191  * is dropped. Links without the DL_FLAG_MANAGED flag set are ignored.
1192  */
1193 void device_links_force_bind(struct device *dev)
1194 {
1195 	struct device_link *link, *ln;
1196 
1197 	device_links_write_lock();
1198 
1199 	list_for_each_entry_safe(link, ln, &dev->links.suppliers, c_node) {
1200 		if (!(link->flags & DL_FLAG_MANAGED))
1201 			continue;
1202 
1203 		if (link->status != DL_STATE_AVAILABLE) {
1204 			device_link_drop_managed(link);
1205 			continue;
1206 		}
1207 		WRITE_ONCE(link->status, DL_STATE_CONSUMER_PROBE);
1208 	}
1209 	dev->links.status = DL_DEV_PROBING;
1210 
1211 	device_links_write_unlock();
1212 }
1213 
1214 /**
1215  * device_links_driver_bound - Update device links after probing its driver.
1216  * @dev: Device to update the links for.
1217  *
1218  * The probe has been successful, so update links from this device to any
1219  * consumers by changing their status to "available".
1220  *
1221  * Also change the status of @dev's links to suppliers to "active".
1222  *
1223  * Links without the DL_FLAG_MANAGED flag set are ignored.
1224  */
1225 void device_links_driver_bound(struct device *dev)
1226 {
1227 	struct device_link *link, *ln;
1228 	LIST_HEAD(sync_list);
1229 
1230 	/*
1231 	 * If a device binds successfully, it's expected to have created all
1232 	 * the device links it needs to or make new device links as it needs
1233 	 * them. So, fw_devlink no longer needs to create device links to any
1234 	 * of the device's suppliers.
1235 	 *
1236 	 * Also, if a child firmware node of this bound device is not added as
1237 	 * a device by now, assume it is never going to be added and make sure
1238 	 * other devices don't defer probe indefinitely by waiting for such a
1239 	 * child device.
1240 	 */
1241 	if (dev->fwnode && dev->fwnode->dev == dev) {
1242 		struct fwnode_handle *child;
1243 		fwnode_links_purge_suppliers(dev->fwnode);
1244 		fwnode_for_each_available_child_node(dev->fwnode, child)
1245 			fw_devlink_purge_absent_suppliers(child);
1246 	}
1247 	device_remove_file(dev, &dev_attr_waiting_for_supplier);
1248 
1249 	device_links_write_lock();
1250 
1251 	list_for_each_entry(link, &dev->links.consumers, s_node) {
1252 		if (!(link->flags & DL_FLAG_MANAGED))
1253 			continue;
1254 
1255 		/*
1256 		 * Links created during consumer probe may be in the "consumer
1257 		 * probe" state to start with if the supplier is still probing
1258 		 * when they are created and they may become "active" if the
1259 		 * consumer probe returns first.  Skip them here.
1260 		 */
1261 		if (link->status == DL_STATE_CONSUMER_PROBE ||
1262 		    link->status == DL_STATE_ACTIVE)
1263 			continue;
1264 
1265 		WARN_ON(link->status != DL_STATE_DORMANT);
1266 		WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
1267 
1268 		if (link->flags & DL_FLAG_AUTOPROBE_CONSUMER)
1269 			driver_deferred_probe_add(link->consumer);
1270 	}
1271 
1272 	if (defer_sync_state_count)
1273 		__device_links_supplier_defer_sync(dev);
1274 	else
1275 		__device_links_queue_sync_state(dev, &sync_list);
1276 
1277 	list_for_each_entry_safe(link, ln, &dev->links.suppliers, c_node) {
1278 		struct device *supplier;
1279 
1280 		if (!(link->flags & DL_FLAG_MANAGED))
1281 			continue;
1282 
1283 		supplier = link->supplier;
1284 		if (link->flags & DL_FLAG_SYNC_STATE_ONLY) {
1285 			/*
1286 			 * When DL_FLAG_SYNC_STATE_ONLY is set, it means no
1287 			 * other DL_MANAGED_LINK_FLAGS have been set. So, it's
1288 			 * save to drop the managed link completely.
1289 			 */
1290 			device_link_drop_managed(link);
1291 		} else {
1292 			WARN_ON(link->status != DL_STATE_CONSUMER_PROBE);
1293 			WRITE_ONCE(link->status, DL_STATE_ACTIVE);
1294 		}
1295 
1296 		/*
1297 		 * This needs to be done even for the deleted
1298 		 * DL_FLAG_SYNC_STATE_ONLY device link in case it was the last
1299 		 * device link that was preventing the supplier from getting a
1300 		 * sync_state() call.
1301 		 */
1302 		if (defer_sync_state_count)
1303 			__device_links_supplier_defer_sync(supplier);
1304 		else
1305 			__device_links_queue_sync_state(supplier, &sync_list);
1306 	}
1307 
1308 	dev->links.status = DL_DEV_DRIVER_BOUND;
1309 
1310 	device_links_write_unlock();
1311 
1312 	device_links_flush_sync_list(&sync_list, dev);
1313 }
1314 
1315 /**
1316  * __device_links_no_driver - Update links of a device without a driver.
1317  * @dev: Device without a drvier.
1318  *
1319  * Delete all non-persistent links from this device to any suppliers.
1320  *
1321  * Persistent links stay around, but their status is changed to "available",
1322  * unless they already are in the "supplier unbind in progress" state in which
1323  * case they need not be updated.
1324  *
1325  * Links without the DL_FLAG_MANAGED flag set are ignored.
1326  */
1327 static void __device_links_no_driver(struct device *dev)
1328 {
1329 	struct device_link *link, *ln;
1330 
1331 	list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
1332 		if (!(link->flags & DL_FLAG_MANAGED))
1333 			continue;
1334 
1335 		if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER) {
1336 			device_link_drop_managed(link);
1337 			continue;
1338 		}
1339 
1340 		if (link->status != DL_STATE_CONSUMER_PROBE &&
1341 		    link->status != DL_STATE_ACTIVE)
1342 			continue;
1343 
1344 		if (link->supplier->links.status == DL_DEV_DRIVER_BOUND) {
1345 			WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
1346 		} else {
1347 			WARN_ON(!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
1348 			WRITE_ONCE(link->status, DL_STATE_DORMANT);
1349 		}
1350 	}
1351 
1352 	dev->links.status = DL_DEV_NO_DRIVER;
1353 }
1354 
1355 /**
1356  * device_links_no_driver - Update links after failing driver probe.
1357  * @dev: Device whose driver has just failed to probe.
1358  *
1359  * Clean up leftover links to consumers for @dev and invoke
1360  * %__device_links_no_driver() to update links to suppliers for it as
1361  * appropriate.
1362  *
1363  * Links without the DL_FLAG_MANAGED flag set are ignored.
1364  */
1365 void device_links_no_driver(struct device *dev)
1366 {
1367 	struct device_link *link;
1368 
1369 	device_links_write_lock();
1370 
1371 	list_for_each_entry(link, &dev->links.consumers, s_node) {
1372 		if (!(link->flags & DL_FLAG_MANAGED))
1373 			continue;
1374 
1375 		/*
1376 		 * The probe has failed, so if the status of the link is
1377 		 * "consumer probe" or "active", it must have been added by
1378 		 * a probing consumer while this device was still probing.
1379 		 * Change its state to "dormant", as it represents a valid
1380 		 * relationship, but it is not functionally meaningful.
1381 		 */
1382 		if (link->status == DL_STATE_CONSUMER_PROBE ||
1383 		    link->status == DL_STATE_ACTIVE)
1384 			WRITE_ONCE(link->status, DL_STATE_DORMANT);
1385 	}
1386 
1387 	__device_links_no_driver(dev);
1388 
1389 	device_links_write_unlock();
1390 }
1391 
1392 /**
1393  * device_links_driver_cleanup - Update links after driver removal.
1394  * @dev: Device whose driver has just gone away.
1395  *
1396  * Update links to consumers for @dev by changing their status to "dormant" and
1397  * invoke %__device_links_no_driver() to update links to suppliers for it as
1398  * appropriate.
1399  *
1400  * Links without the DL_FLAG_MANAGED flag set are ignored.
1401  */
1402 void device_links_driver_cleanup(struct device *dev)
1403 {
1404 	struct device_link *link, *ln;
1405 
1406 	device_links_write_lock();
1407 
1408 	list_for_each_entry_safe(link, ln, &dev->links.consumers, s_node) {
1409 		if (!(link->flags & DL_FLAG_MANAGED))
1410 			continue;
1411 
1412 		WARN_ON(link->flags & DL_FLAG_AUTOREMOVE_CONSUMER);
1413 		WARN_ON(link->status != DL_STATE_SUPPLIER_UNBIND);
1414 
1415 		/*
1416 		 * autoremove the links between this @dev and its consumer
1417 		 * devices that are not active, i.e. where the link state
1418 		 * has moved to DL_STATE_SUPPLIER_UNBIND.
1419 		 */
1420 		if (link->status == DL_STATE_SUPPLIER_UNBIND &&
1421 		    link->flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
1422 			device_link_drop_managed(link);
1423 
1424 		WRITE_ONCE(link->status, DL_STATE_DORMANT);
1425 	}
1426 
1427 	list_del_init(&dev->links.defer_sync);
1428 	__device_links_no_driver(dev);
1429 
1430 	device_links_write_unlock();
1431 }
1432 
1433 /**
1434  * device_links_busy - Check if there are any busy links to consumers.
1435  * @dev: Device to check.
1436  *
1437  * Check each consumer of the device and return 'true' if its link's status
1438  * is one of "consumer probe" or "active" (meaning that the given consumer is
1439  * probing right now or its driver is present).  Otherwise, change the link
1440  * state to "supplier unbind" to prevent the consumer from being probed
1441  * successfully going forward.
1442  *
1443  * Return 'false' if there are no probing or active consumers.
1444  *
1445  * Links without the DL_FLAG_MANAGED flag set are ignored.
1446  */
1447 bool device_links_busy(struct device *dev)
1448 {
1449 	struct device_link *link;
1450 	bool ret = false;
1451 
1452 	device_links_write_lock();
1453 
1454 	list_for_each_entry(link, &dev->links.consumers, s_node) {
1455 		if (!(link->flags & DL_FLAG_MANAGED))
1456 			continue;
1457 
1458 		if (link->status == DL_STATE_CONSUMER_PROBE
1459 		    || link->status == DL_STATE_ACTIVE) {
1460 			ret = true;
1461 			break;
1462 		}
1463 		WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
1464 	}
1465 
1466 	dev->links.status = DL_DEV_UNBINDING;
1467 
1468 	device_links_write_unlock();
1469 	return ret;
1470 }
1471 
1472 /**
1473  * device_links_unbind_consumers - Force unbind consumers of the given device.
1474  * @dev: Device to unbind the consumers of.
1475  *
1476  * Walk the list of links to consumers for @dev and if any of them is in the
1477  * "consumer probe" state, wait for all device probes in progress to complete
1478  * and start over.
1479  *
1480  * If that's not the case, change the status of the link to "supplier unbind"
1481  * and check if the link was in the "active" state.  If so, force the consumer
1482  * driver to unbind and start over (the consumer will not re-probe as we have
1483  * changed the state of the link already).
1484  *
1485  * Links without the DL_FLAG_MANAGED flag set are ignored.
1486  */
1487 void device_links_unbind_consumers(struct device *dev)
1488 {
1489 	struct device_link *link;
1490 
1491  start:
1492 	device_links_write_lock();
1493 
1494 	list_for_each_entry(link, &dev->links.consumers, s_node) {
1495 		enum device_link_state status;
1496 
1497 		if (!(link->flags & DL_FLAG_MANAGED) ||
1498 		    link->flags & DL_FLAG_SYNC_STATE_ONLY)
1499 			continue;
1500 
1501 		status = link->status;
1502 		if (status == DL_STATE_CONSUMER_PROBE) {
1503 			device_links_write_unlock();
1504 
1505 			wait_for_device_probe();
1506 			goto start;
1507 		}
1508 		WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
1509 		if (status == DL_STATE_ACTIVE) {
1510 			struct device *consumer = link->consumer;
1511 
1512 			get_device(consumer);
1513 
1514 			device_links_write_unlock();
1515 
1516 			device_release_driver_internal(consumer, NULL,
1517 						       consumer->parent);
1518 			put_device(consumer);
1519 			goto start;
1520 		}
1521 	}
1522 
1523 	device_links_write_unlock();
1524 }
1525 
1526 /**
1527  * device_links_purge - Delete existing links to other devices.
1528  * @dev: Target device.
1529  */
1530 static void device_links_purge(struct device *dev)
1531 {
1532 	struct device_link *link, *ln;
1533 
1534 	if (dev->class == &devlink_class)
1535 		return;
1536 
1537 	/*
1538 	 * Delete all of the remaining links from this device to any other
1539 	 * devices (either consumers or suppliers).
1540 	 */
1541 	device_links_write_lock();
1542 
1543 	list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
1544 		WARN_ON(link->status == DL_STATE_ACTIVE);
1545 		__device_link_del(&link->kref);
1546 	}
1547 
1548 	list_for_each_entry_safe_reverse(link, ln, &dev->links.consumers, s_node) {
1549 		WARN_ON(link->status != DL_STATE_DORMANT &&
1550 			link->status != DL_STATE_NONE);
1551 		__device_link_del(&link->kref);
1552 	}
1553 
1554 	device_links_write_unlock();
1555 }
1556 
1557 #define FW_DEVLINK_FLAGS_PERMISSIVE	(DL_FLAG_INFERRED | \
1558 					 DL_FLAG_SYNC_STATE_ONLY)
1559 #define FW_DEVLINK_FLAGS_ON		(DL_FLAG_INFERRED | \
1560 					 DL_FLAG_AUTOPROBE_CONSUMER)
1561 #define FW_DEVLINK_FLAGS_RPM		(FW_DEVLINK_FLAGS_ON | \
1562 					 DL_FLAG_PM_RUNTIME)
1563 
1564 static u32 fw_devlink_flags = FW_DEVLINK_FLAGS_ON;
1565 static int __init fw_devlink_setup(char *arg)
1566 {
1567 	if (!arg)
1568 		return -EINVAL;
1569 
1570 	if (strcmp(arg, "off") == 0) {
1571 		fw_devlink_flags = 0;
1572 	} else if (strcmp(arg, "permissive") == 0) {
1573 		fw_devlink_flags = FW_DEVLINK_FLAGS_PERMISSIVE;
1574 	} else if (strcmp(arg, "on") == 0) {
1575 		fw_devlink_flags = FW_DEVLINK_FLAGS_ON;
1576 	} else if (strcmp(arg, "rpm") == 0) {
1577 		fw_devlink_flags = FW_DEVLINK_FLAGS_RPM;
1578 	}
1579 	return 0;
1580 }
1581 early_param("fw_devlink", fw_devlink_setup);
1582 
1583 static bool fw_devlink_strict;
1584 static int __init fw_devlink_strict_setup(char *arg)
1585 {
1586 	return strtobool(arg, &fw_devlink_strict);
1587 }
1588 early_param("fw_devlink.strict", fw_devlink_strict_setup);
1589 
1590 u32 fw_devlink_get_flags(void)
1591 {
1592 	return fw_devlink_flags;
1593 }
1594 
1595 static bool fw_devlink_is_permissive(void)
1596 {
1597 	return fw_devlink_flags == FW_DEVLINK_FLAGS_PERMISSIVE;
1598 }
1599 
1600 bool fw_devlink_is_strict(void)
1601 {
1602 	return fw_devlink_strict && !fw_devlink_is_permissive();
1603 }
1604 
1605 static void fw_devlink_parse_fwnode(struct fwnode_handle *fwnode)
1606 {
1607 	if (fwnode->flags & FWNODE_FLAG_LINKS_ADDED)
1608 		return;
1609 
1610 	fwnode_call_int_op(fwnode, add_links);
1611 	fwnode->flags |= FWNODE_FLAG_LINKS_ADDED;
1612 }
1613 
1614 static void fw_devlink_parse_fwtree(struct fwnode_handle *fwnode)
1615 {
1616 	struct fwnode_handle *child = NULL;
1617 
1618 	fw_devlink_parse_fwnode(fwnode);
1619 
1620 	while ((child = fwnode_get_next_available_child_node(fwnode, child)))
1621 		fw_devlink_parse_fwtree(child);
1622 }
1623 
1624 static void fw_devlink_relax_link(struct device_link *link)
1625 {
1626 	if (!(link->flags & DL_FLAG_INFERRED))
1627 		return;
1628 
1629 	if (link->flags == (DL_FLAG_MANAGED | FW_DEVLINK_FLAGS_PERMISSIVE))
1630 		return;
1631 
1632 	pm_runtime_drop_link(link);
1633 	link->flags = DL_FLAG_MANAGED | FW_DEVLINK_FLAGS_PERMISSIVE;
1634 	dev_dbg(link->consumer, "Relaxing link with %s\n",
1635 		dev_name(link->supplier));
1636 }
1637 
1638 static int fw_devlink_no_driver(struct device *dev, void *data)
1639 {
1640 	struct device_link *link = to_devlink(dev);
1641 
1642 	if (!link->supplier->can_match)
1643 		fw_devlink_relax_link(link);
1644 
1645 	return 0;
1646 }
1647 
1648 void fw_devlink_drivers_done(void)
1649 {
1650 	fw_devlink_drv_reg_done = true;
1651 	device_links_write_lock();
1652 	class_for_each_device(&devlink_class, NULL, NULL,
1653 			      fw_devlink_no_driver);
1654 	device_links_write_unlock();
1655 }
1656 
1657 static void fw_devlink_unblock_consumers(struct device *dev)
1658 {
1659 	struct device_link *link;
1660 
1661 	if (!fw_devlink_flags || fw_devlink_is_permissive())
1662 		return;
1663 
1664 	device_links_write_lock();
1665 	list_for_each_entry(link, &dev->links.consumers, s_node)
1666 		fw_devlink_relax_link(link);
1667 	device_links_write_unlock();
1668 }
1669 
1670 /**
1671  * fw_devlink_relax_cycle - Convert cyclic links to SYNC_STATE_ONLY links
1672  * @con: Device to check dependencies for.
1673  * @sup: Device to check against.
1674  *
1675  * Check if @sup depends on @con or any device dependent on it (its child or
1676  * its consumer etc).  When such a cyclic dependency is found, convert all
1677  * device links created solely by fw_devlink into SYNC_STATE_ONLY device links.
1678  * This is the equivalent of doing fw_devlink=permissive just between the
1679  * devices in the cycle. We need to do this because, at this point, fw_devlink
1680  * can't tell which of these dependencies is not a real dependency.
1681  *
1682  * Return 1 if a cycle is found. Otherwise, return 0.
1683  */
1684 static int fw_devlink_relax_cycle(struct device *con, void *sup)
1685 {
1686 	struct device_link *link;
1687 	int ret;
1688 
1689 	if (con == sup)
1690 		return 1;
1691 
1692 	ret = device_for_each_child(con, sup, fw_devlink_relax_cycle);
1693 	if (ret)
1694 		return ret;
1695 
1696 	list_for_each_entry(link, &con->links.consumers, s_node) {
1697 		if ((link->flags & ~DL_FLAG_INFERRED) ==
1698 		    (DL_FLAG_SYNC_STATE_ONLY | DL_FLAG_MANAGED))
1699 			continue;
1700 
1701 		if (!fw_devlink_relax_cycle(link->consumer, sup))
1702 			continue;
1703 
1704 		ret = 1;
1705 
1706 		fw_devlink_relax_link(link);
1707 	}
1708 	return ret;
1709 }
1710 
1711 /**
1712  * fw_devlink_create_devlink - Create a device link from a consumer to fwnode
1713  * @con: consumer device for the device link
1714  * @sup_handle: fwnode handle of supplier
1715  * @flags: devlink flags
1716  *
1717  * This function will try to create a device link between the consumer device
1718  * @con and the supplier device represented by @sup_handle.
1719  *
1720  * The supplier has to be provided as a fwnode because incorrect cycles in
1721  * fwnode links can sometimes cause the supplier device to never be created.
1722  * This function detects such cases and returns an error if it cannot create a
1723  * device link from the consumer to a missing supplier.
1724  *
1725  * Returns,
1726  * 0 on successfully creating a device link
1727  * -EINVAL if the device link cannot be created as expected
1728  * -EAGAIN if the device link cannot be created right now, but it may be
1729  *  possible to do that in the future
1730  */
1731 static int fw_devlink_create_devlink(struct device *con,
1732 				     struct fwnode_handle *sup_handle, u32 flags)
1733 {
1734 	struct device *sup_dev;
1735 	int ret = 0;
1736 
1737 	/*
1738 	 * In some cases, a device P might also be a supplier to its child node
1739 	 * C. However, this would defer the probe of C until the probe of P
1740 	 * completes successfully. This is perfectly fine in the device driver
1741 	 * model. device_add() doesn't guarantee probe completion of the device
1742 	 * by the time it returns.
1743 	 *
1744 	 * However, there are a few drivers that assume C will finish probing
1745 	 * as soon as it's added and before P finishes probing. So, we provide
1746 	 * a flag to let fw_devlink know not to delay the probe of C until the
1747 	 * probe of P completes successfully.
1748 	 *
1749 	 * When such a flag is set, we can't create device links where P is the
1750 	 * supplier of C as that would delay the probe of C.
1751 	 */
1752 	if (sup_handle->flags & FWNODE_FLAG_NEEDS_CHILD_BOUND_ON_ADD &&
1753 	    fwnode_is_ancestor_of(sup_handle, con->fwnode))
1754 		return -EINVAL;
1755 
1756 	sup_dev = get_dev_from_fwnode(sup_handle);
1757 	if (sup_dev) {
1758 		/*
1759 		 * If it's one of those drivers that don't actually bind to
1760 		 * their device using driver core, then don't wait on this
1761 		 * supplier device indefinitely.
1762 		 */
1763 		if (sup_dev->links.status == DL_DEV_NO_DRIVER &&
1764 		    sup_handle->flags & FWNODE_FLAG_INITIALIZED) {
1765 			ret = -EINVAL;
1766 			goto out;
1767 		}
1768 
1769 		/*
1770 		 * If this fails, it is due to cycles in device links.  Just
1771 		 * give up on this link and treat it as invalid.
1772 		 */
1773 		if (!device_link_add(con, sup_dev, flags) &&
1774 		    !(flags & DL_FLAG_SYNC_STATE_ONLY)) {
1775 			dev_info(con, "Fixing up cyclic dependency with %s\n",
1776 				 dev_name(sup_dev));
1777 			device_links_write_lock();
1778 			fw_devlink_relax_cycle(con, sup_dev);
1779 			device_links_write_unlock();
1780 			device_link_add(con, sup_dev,
1781 					FW_DEVLINK_FLAGS_PERMISSIVE);
1782 			ret = -EINVAL;
1783 		}
1784 
1785 		goto out;
1786 	}
1787 
1788 	/* Supplier that's already initialized without a struct device. */
1789 	if (sup_handle->flags & FWNODE_FLAG_INITIALIZED)
1790 		return -EINVAL;
1791 
1792 	/*
1793 	 * DL_FLAG_SYNC_STATE_ONLY doesn't block probing and supports
1794 	 * cycles. So cycle detection isn't necessary and shouldn't be
1795 	 * done.
1796 	 */
1797 	if (flags & DL_FLAG_SYNC_STATE_ONLY)
1798 		return -EAGAIN;
1799 
1800 	/*
1801 	 * If we can't find the supplier device from its fwnode, it might be
1802 	 * due to a cyclic dependency between fwnodes. Some of these cycles can
1803 	 * be broken by applying logic. Check for these types of cycles and
1804 	 * break them so that devices in the cycle probe properly.
1805 	 *
1806 	 * If the supplier's parent is dependent on the consumer, then the
1807 	 * consumer and supplier have a cyclic dependency. Since fw_devlink
1808 	 * can't tell which of the inferred dependencies are incorrect, don't
1809 	 * enforce probe ordering between any of the devices in this cyclic
1810 	 * dependency. Do this by relaxing all the fw_devlink device links in
1811 	 * this cycle and by treating the fwnode link between the consumer and
1812 	 * the supplier as an invalid dependency.
1813 	 */
1814 	sup_dev = fwnode_get_next_parent_dev(sup_handle);
1815 	if (sup_dev && device_is_dependent(con, sup_dev)) {
1816 		dev_info(con, "Fixing up cyclic dependency with %pfwP (%s)\n",
1817 			 sup_handle, dev_name(sup_dev));
1818 		device_links_write_lock();
1819 		fw_devlink_relax_cycle(con, sup_dev);
1820 		device_links_write_unlock();
1821 		ret = -EINVAL;
1822 	} else {
1823 		/*
1824 		 * Can't check for cycles or no cycles. So let's try
1825 		 * again later.
1826 		 */
1827 		ret = -EAGAIN;
1828 	}
1829 
1830 out:
1831 	put_device(sup_dev);
1832 	return ret;
1833 }
1834 
1835 /**
1836  * __fw_devlink_link_to_consumers - Create device links to consumers of a device
1837  * @dev: Device that needs to be linked to its consumers
1838  *
1839  * This function looks at all the consumer fwnodes of @dev and creates device
1840  * links between the consumer device and @dev (supplier).
1841  *
1842  * If the consumer device has not been added yet, then this function creates a
1843  * SYNC_STATE_ONLY link between @dev (supplier) and the closest ancestor device
1844  * of the consumer fwnode. This is necessary to make sure @dev doesn't get a
1845  * sync_state() callback before the real consumer device gets to be added and
1846  * then probed.
1847  *
1848  * Once device links are created from the real consumer to @dev (supplier), the
1849  * fwnode links are deleted.
1850  */
1851 static void __fw_devlink_link_to_consumers(struct device *dev)
1852 {
1853 	struct fwnode_handle *fwnode = dev->fwnode;
1854 	struct fwnode_link *link, *tmp;
1855 
1856 	list_for_each_entry_safe(link, tmp, &fwnode->consumers, s_hook) {
1857 		u32 dl_flags = fw_devlink_get_flags();
1858 		struct device *con_dev;
1859 		bool own_link = true;
1860 		int ret;
1861 
1862 		con_dev = get_dev_from_fwnode(link->consumer);
1863 		/*
1864 		 * If consumer device is not available yet, make a "proxy"
1865 		 * SYNC_STATE_ONLY link from the consumer's parent device to
1866 		 * the supplier device. This is necessary to make sure the
1867 		 * supplier doesn't get a sync_state() callback before the real
1868 		 * consumer can create a device link to the supplier.
1869 		 *
1870 		 * This proxy link step is needed to handle the case where the
1871 		 * consumer's parent device is added before the supplier.
1872 		 */
1873 		if (!con_dev) {
1874 			con_dev = fwnode_get_next_parent_dev(link->consumer);
1875 			/*
1876 			 * However, if the consumer's parent device is also the
1877 			 * parent of the supplier, don't create a
1878 			 * consumer-supplier link from the parent to its child
1879 			 * device. Such a dependency is impossible.
1880 			 */
1881 			if (con_dev &&
1882 			    fwnode_is_ancestor_of(con_dev->fwnode, fwnode)) {
1883 				put_device(con_dev);
1884 				con_dev = NULL;
1885 			} else {
1886 				own_link = false;
1887 				dl_flags = FW_DEVLINK_FLAGS_PERMISSIVE;
1888 			}
1889 		}
1890 
1891 		if (!con_dev)
1892 			continue;
1893 
1894 		ret = fw_devlink_create_devlink(con_dev, fwnode, dl_flags);
1895 		put_device(con_dev);
1896 		if (!own_link || ret == -EAGAIN)
1897 			continue;
1898 
1899 		__fwnode_link_del(link);
1900 	}
1901 }
1902 
1903 /**
1904  * __fw_devlink_link_to_suppliers - Create device links to suppliers of a device
1905  * @dev: The consumer device that needs to be linked to its suppliers
1906  * @fwnode: Root of the fwnode tree that is used to create device links
1907  *
1908  * This function looks at all the supplier fwnodes of fwnode tree rooted at
1909  * @fwnode and creates device links between @dev (consumer) and all the
1910  * supplier devices of the entire fwnode tree at @fwnode.
1911  *
1912  * The function creates normal (non-SYNC_STATE_ONLY) device links between @dev
1913  * and the real suppliers of @dev. Once these device links are created, the
1914  * fwnode links are deleted. When such device links are successfully created,
1915  * this function is called recursively on those supplier devices. This is
1916  * needed to detect and break some invalid cycles in fwnode links.  See
1917  * fw_devlink_create_devlink() for more details.
1918  *
1919  * In addition, it also looks at all the suppliers of the entire fwnode tree
1920  * because some of the child devices of @dev that have not been added yet
1921  * (because @dev hasn't probed) might already have their suppliers added to
1922  * driver core. So, this function creates SYNC_STATE_ONLY device links between
1923  * @dev (consumer) and these suppliers to make sure they don't execute their
1924  * sync_state() callbacks before these child devices have a chance to create
1925  * their device links. The fwnode links that correspond to the child devices
1926  * aren't delete because they are needed later to create the device links
1927  * between the real consumer and supplier devices.
1928  */
1929 static void __fw_devlink_link_to_suppliers(struct device *dev,
1930 					   struct fwnode_handle *fwnode)
1931 {
1932 	bool own_link = (dev->fwnode == fwnode);
1933 	struct fwnode_link *link, *tmp;
1934 	struct fwnode_handle *child = NULL;
1935 	u32 dl_flags;
1936 
1937 	if (own_link)
1938 		dl_flags = fw_devlink_get_flags();
1939 	else
1940 		dl_flags = FW_DEVLINK_FLAGS_PERMISSIVE;
1941 
1942 	list_for_each_entry_safe(link, tmp, &fwnode->suppliers, c_hook) {
1943 		int ret;
1944 		struct device *sup_dev;
1945 		struct fwnode_handle *sup = link->supplier;
1946 
1947 		ret = fw_devlink_create_devlink(dev, sup, dl_flags);
1948 		if (!own_link || ret == -EAGAIN)
1949 			continue;
1950 
1951 		__fwnode_link_del(link);
1952 
1953 		/* If no device link was created, nothing more to do. */
1954 		if (ret)
1955 			continue;
1956 
1957 		/*
1958 		 * If a device link was successfully created to a supplier, we
1959 		 * now need to try and link the supplier to all its suppliers.
1960 		 *
1961 		 * This is needed to detect and delete false dependencies in
1962 		 * fwnode links that haven't been converted to a device link
1963 		 * yet. See comments in fw_devlink_create_devlink() for more
1964 		 * details on the false dependency.
1965 		 *
1966 		 * Without deleting these false dependencies, some devices will
1967 		 * never probe because they'll keep waiting for their false
1968 		 * dependency fwnode links to be converted to device links.
1969 		 */
1970 		sup_dev = get_dev_from_fwnode(sup);
1971 		__fw_devlink_link_to_suppliers(sup_dev, sup_dev->fwnode);
1972 		put_device(sup_dev);
1973 	}
1974 
1975 	/*
1976 	 * Make "proxy" SYNC_STATE_ONLY device links to represent the needs of
1977 	 * all the descendants. This proxy link step is needed to handle the
1978 	 * case where the supplier is added before the consumer's parent device
1979 	 * (@dev).
1980 	 */
1981 	while ((child = fwnode_get_next_available_child_node(fwnode, child)))
1982 		__fw_devlink_link_to_suppliers(dev, child);
1983 }
1984 
1985 static void fw_devlink_link_device(struct device *dev)
1986 {
1987 	struct fwnode_handle *fwnode = dev->fwnode;
1988 
1989 	if (!fw_devlink_flags)
1990 		return;
1991 
1992 	fw_devlink_parse_fwtree(fwnode);
1993 
1994 	mutex_lock(&fwnode_link_lock);
1995 	__fw_devlink_link_to_consumers(dev);
1996 	__fw_devlink_link_to_suppliers(dev, fwnode);
1997 	mutex_unlock(&fwnode_link_lock);
1998 }
1999 
2000 /* Device links support end. */
2001 
2002 int (*platform_notify)(struct device *dev) = NULL;
2003 int (*platform_notify_remove)(struct device *dev) = NULL;
2004 static struct kobject *dev_kobj;
2005 struct kobject *sysfs_dev_char_kobj;
2006 struct kobject *sysfs_dev_block_kobj;
2007 
2008 static DEFINE_MUTEX(device_hotplug_lock);
2009 
2010 void lock_device_hotplug(void)
2011 {
2012 	mutex_lock(&device_hotplug_lock);
2013 }
2014 
2015 void unlock_device_hotplug(void)
2016 {
2017 	mutex_unlock(&device_hotplug_lock);
2018 }
2019 
2020 int lock_device_hotplug_sysfs(void)
2021 {
2022 	if (mutex_trylock(&device_hotplug_lock))
2023 		return 0;
2024 
2025 	/* Avoid busy looping (5 ms of sleep should do). */
2026 	msleep(5);
2027 	return restart_syscall();
2028 }
2029 
2030 #ifdef CONFIG_BLOCK
2031 static inline int device_is_not_partition(struct device *dev)
2032 {
2033 	return !(dev->type == &part_type);
2034 }
2035 #else
2036 static inline int device_is_not_partition(struct device *dev)
2037 {
2038 	return 1;
2039 }
2040 #endif
2041 
2042 static void device_platform_notify(struct device *dev)
2043 {
2044 	acpi_device_notify(dev);
2045 
2046 	software_node_notify(dev);
2047 
2048 	if (platform_notify)
2049 		platform_notify(dev);
2050 }
2051 
2052 static void device_platform_notify_remove(struct device *dev)
2053 {
2054 	acpi_device_notify_remove(dev);
2055 
2056 	software_node_notify_remove(dev);
2057 
2058 	if (platform_notify_remove)
2059 		platform_notify_remove(dev);
2060 }
2061 
2062 /**
2063  * dev_driver_string - Return a device's driver name, if at all possible
2064  * @dev: struct device to get the name of
2065  *
2066  * Will return the device's driver's name if it is bound to a device.  If
2067  * the device is not bound to a driver, it will return the name of the bus
2068  * it is attached to.  If it is not attached to a bus either, an empty
2069  * string will be returned.
2070  */
2071 const char *dev_driver_string(const struct device *dev)
2072 {
2073 	struct device_driver *drv;
2074 
2075 	/* dev->driver can change to NULL underneath us because of unbinding,
2076 	 * so be careful about accessing it.  dev->bus and dev->class should
2077 	 * never change once they are set, so they don't need special care.
2078 	 */
2079 	drv = READ_ONCE(dev->driver);
2080 	return drv ? drv->name : dev_bus_name(dev);
2081 }
2082 EXPORT_SYMBOL(dev_driver_string);
2083 
2084 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
2085 
2086 static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
2087 			     char *buf)
2088 {
2089 	struct device_attribute *dev_attr = to_dev_attr(attr);
2090 	struct device *dev = kobj_to_dev(kobj);
2091 	ssize_t ret = -EIO;
2092 
2093 	if (dev_attr->show)
2094 		ret = dev_attr->show(dev, dev_attr, buf);
2095 	if (ret >= (ssize_t)PAGE_SIZE) {
2096 		printk("dev_attr_show: %pS returned bad count\n",
2097 				dev_attr->show);
2098 	}
2099 	return ret;
2100 }
2101 
2102 static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
2103 			      const char *buf, size_t count)
2104 {
2105 	struct device_attribute *dev_attr = to_dev_attr(attr);
2106 	struct device *dev = kobj_to_dev(kobj);
2107 	ssize_t ret = -EIO;
2108 
2109 	if (dev_attr->store)
2110 		ret = dev_attr->store(dev, dev_attr, buf, count);
2111 	return ret;
2112 }
2113 
2114 static const struct sysfs_ops dev_sysfs_ops = {
2115 	.show	= dev_attr_show,
2116 	.store	= dev_attr_store,
2117 };
2118 
2119 #define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr)
2120 
2121 ssize_t device_store_ulong(struct device *dev,
2122 			   struct device_attribute *attr,
2123 			   const char *buf, size_t size)
2124 {
2125 	struct dev_ext_attribute *ea = to_ext_attr(attr);
2126 	int ret;
2127 	unsigned long new;
2128 
2129 	ret = kstrtoul(buf, 0, &new);
2130 	if (ret)
2131 		return ret;
2132 	*(unsigned long *)(ea->var) = new;
2133 	/* Always return full write size even if we didn't consume all */
2134 	return size;
2135 }
2136 EXPORT_SYMBOL_GPL(device_store_ulong);
2137 
2138 ssize_t device_show_ulong(struct device *dev,
2139 			  struct device_attribute *attr,
2140 			  char *buf)
2141 {
2142 	struct dev_ext_attribute *ea = to_ext_attr(attr);
2143 	return sysfs_emit(buf, "%lx\n", *(unsigned long *)(ea->var));
2144 }
2145 EXPORT_SYMBOL_GPL(device_show_ulong);
2146 
2147 ssize_t device_store_int(struct device *dev,
2148 			 struct device_attribute *attr,
2149 			 const char *buf, size_t size)
2150 {
2151 	struct dev_ext_attribute *ea = to_ext_attr(attr);
2152 	int ret;
2153 	long new;
2154 
2155 	ret = kstrtol(buf, 0, &new);
2156 	if (ret)
2157 		return ret;
2158 
2159 	if (new > INT_MAX || new < INT_MIN)
2160 		return -EINVAL;
2161 	*(int *)(ea->var) = new;
2162 	/* Always return full write size even if we didn't consume all */
2163 	return size;
2164 }
2165 EXPORT_SYMBOL_GPL(device_store_int);
2166 
2167 ssize_t device_show_int(struct device *dev,
2168 			struct device_attribute *attr,
2169 			char *buf)
2170 {
2171 	struct dev_ext_attribute *ea = to_ext_attr(attr);
2172 
2173 	return sysfs_emit(buf, "%d\n", *(int *)(ea->var));
2174 }
2175 EXPORT_SYMBOL_GPL(device_show_int);
2176 
2177 ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
2178 			  const char *buf, size_t size)
2179 {
2180 	struct dev_ext_attribute *ea = to_ext_attr(attr);
2181 
2182 	if (strtobool(buf, ea->var) < 0)
2183 		return -EINVAL;
2184 
2185 	return size;
2186 }
2187 EXPORT_SYMBOL_GPL(device_store_bool);
2188 
2189 ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
2190 			 char *buf)
2191 {
2192 	struct dev_ext_attribute *ea = to_ext_attr(attr);
2193 
2194 	return sysfs_emit(buf, "%d\n", *(bool *)(ea->var));
2195 }
2196 EXPORT_SYMBOL_GPL(device_show_bool);
2197 
2198 /**
2199  * device_release - free device structure.
2200  * @kobj: device's kobject.
2201  *
2202  * This is called once the reference count for the object
2203  * reaches 0. We forward the call to the device's release
2204  * method, which should handle actually freeing the structure.
2205  */
2206 static void device_release(struct kobject *kobj)
2207 {
2208 	struct device *dev = kobj_to_dev(kobj);
2209 	struct device_private *p = dev->p;
2210 
2211 	/*
2212 	 * Some platform devices are driven without driver attached
2213 	 * and managed resources may have been acquired.  Make sure
2214 	 * all resources are released.
2215 	 *
2216 	 * Drivers still can add resources into device after device
2217 	 * is deleted but alive, so release devres here to avoid
2218 	 * possible memory leak.
2219 	 */
2220 	devres_release_all(dev);
2221 
2222 	kfree(dev->dma_range_map);
2223 
2224 	if (dev->release)
2225 		dev->release(dev);
2226 	else if (dev->type && dev->type->release)
2227 		dev->type->release(dev);
2228 	else if (dev->class && dev->class->dev_release)
2229 		dev->class->dev_release(dev);
2230 	else
2231 		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",
2232 			dev_name(dev));
2233 	kfree(p);
2234 }
2235 
2236 static const void *device_namespace(struct kobject *kobj)
2237 {
2238 	struct device *dev = kobj_to_dev(kobj);
2239 	const void *ns = NULL;
2240 
2241 	if (dev->class && dev->class->ns_type)
2242 		ns = dev->class->namespace(dev);
2243 
2244 	return ns;
2245 }
2246 
2247 static void device_get_ownership(struct kobject *kobj, kuid_t *uid, kgid_t *gid)
2248 {
2249 	struct device *dev = kobj_to_dev(kobj);
2250 
2251 	if (dev->class && dev->class->get_ownership)
2252 		dev->class->get_ownership(dev, uid, gid);
2253 }
2254 
2255 static struct kobj_type device_ktype = {
2256 	.release	= device_release,
2257 	.sysfs_ops	= &dev_sysfs_ops,
2258 	.namespace	= device_namespace,
2259 	.get_ownership	= device_get_ownership,
2260 };
2261 
2262 
2263 static int dev_uevent_filter(struct kobject *kobj)
2264 {
2265 	const struct kobj_type *ktype = get_ktype(kobj);
2266 
2267 	if (ktype == &device_ktype) {
2268 		struct device *dev = kobj_to_dev(kobj);
2269 		if (dev->bus)
2270 			return 1;
2271 		if (dev->class)
2272 			return 1;
2273 	}
2274 	return 0;
2275 }
2276 
2277 static const char *dev_uevent_name(struct kobject *kobj)
2278 {
2279 	struct device *dev = kobj_to_dev(kobj);
2280 
2281 	if (dev->bus)
2282 		return dev->bus->name;
2283 	if (dev->class)
2284 		return dev->class->name;
2285 	return NULL;
2286 }
2287 
2288 static int dev_uevent(struct kobject *kobj, struct kobj_uevent_env *env)
2289 {
2290 	struct device *dev = kobj_to_dev(kobj);
2291 	int retval = 0;
2292 
2293 	/* add device node properties if present */
2294 	if (MAJOR(dev->devt)) {
2295 		const char *tmp;
2296 		const char *name;
2297 		umode_t mode = 0;
2298 		kuid_t uid = GLOBAL_ROOT_UID;
2299 		kgid_t gid = GLOBAL_ROOT_GID;
2300 
2301 		add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
2302 		add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
2303 		name = device_get_devnode(dev, &mode, &uid, &gid, &tmp);
2304 		if (name) {
2305 			add_uevent_var(env, "DEVNAME=%s", name);
2306 			if (mode)
2307 				add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
2308 			if (!uid_eq(uid, GLOBAL_ROOT_UID))
2309 				add_uevent_var(env, "DEVUID=%u", from_kuid(&init_user_ns, uid));
2310 			if (!gid_eq(gid, GLOBAL_ROOT_GID))
2311 				add_uevent_var(env, "DEVGID=%u", from_kgid(&init_user_ns, gid));
2312 			kfree(tmp);
2313 		}
2314 	}
2315 
2316 	if (dev->type && dev->type->name)
2317 		add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
2318 
2319 	if (dev->driver)
2320 		add_uevent_var(env, "DRIVER=%s", dev->driver->name);
2321 
2322 	/* Add common DT information about the device */
2323 	of_device_uevent(dev, env);
2324 
2325 	/* have the bus specific function add its stuff */
2326 	if (dev->bus && dev->bus->uevent) {
2327 		retval = dev->bus->uevent(dev, env);
2328 		if (retval)
2329 			pr_debug("device: '%s': %s: bus uevent() returned %d\n",
2330 				 dev_name(dev), __func__, retval);
2331 	}
2332 
2333 	/* have the class specific function add its stuff */
2334 	if (dev->class && dev->class->dev_uevent) {
2335 		retval = dev->class->dev_uevent(dev, env);
2336 		if (retval)
2337 			pr_debug("device: '%s': %s: class uevent() "
2338 				 "returned %d\n", dev_name(dev),
2339 				 __func__, retval);
2340 	}
2341 
2342 	/* have the device type specific function add its stuff */
2343 	if (dev->type && dev->type->uevent) {
2344 		retval = dev->type->uevent(dev, env);
2345 		if (retval)
2346 			pr_debug("device: '%s': %s: dev_type uevent() "
2347 				 "returned %d\n", dev_name(dev),
2348 				 __func__, retval);
2349 	}
2350 
2351 	return retval;
2352 }
2353 
2354 static const struct kset_uevent_ops device_uevent_ops = {
2355 	.filter =	dev_uevent_filter,
2356 	.name =		dev_uevent_name,
2357 	.uevent =	dev_uevent,
2358 };
2359 
2360 static ssize_t uevent_show(struct device *dev, struct device_attribute *attr,
2361 			   char *buf)
2362 {
2363 	struct kobject *top_kobj;
2364 	struct kset *kset;
2365 	struct kobj_uevent_env *env = NULL;
2366 	int i;
2367 	int len = 0;
2368 	int retval;
2369 
2370 	/* search the kset, the device belongs to */
2371 	top_kobj = &dev->kobj;
2372 	while (!top_kobj->kset && top_kobj->parent)
2373 		top_kobj = top_kobj->parent;
2374 	if (!top_kobj->kset)
2375 		goto out;
2376 
2377 	kset = top_kobj->kset;
2378 	if (!kset->uevent_ops || !kset->uevent_ops->uevent)
2379 		goto out;
2380 
2381 	/* respect filter */
2382 	if (kset->uevent_ops && kset->uevent_ops->filter)
2383 		if (!kset->uevent_ops->filter(&dev->kobj))
2384 			goto out;
2385 
2386 	env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
2387 	if (!env)
2388 		return -ENOMEM;
2389 
2390 	/* let the kset specific function add its keys */
2391 	retval = kset->uevent_ops->uevent(&dev->kobj, env);
2392 	if (retval)
2393 		goto out;
2394 
2395 	/* copy keys to file */
2396 	for (i = 0; i < env->envp_idx; i++)
2397 		len += sysfs_emit_at(buf, len, "%s\n", env->envp[i]);
2398 out:
2399 	kfree(env);
2400 	return len;
2401 }
2402 
2403 static ssize_t uevent_store(struct device *dev, struct device_attribute *attr,
2404 			    const char *buf, size_t count)
2405 {
2406 	int rc;
2407 
2408 	rc = kobject_synth_uevent(&dev->kobj, buf, count);
2409 
2410 	if (rc) {
2411 		dev_err(dev, "uevent: failed to send synthetic uevent\n");
2412 		return rc;
2413 	}
2414 
2415 	return count;
2416 }
2417 static DEVICE_ATTR_RW(uevent);
2418 
2419 static ssize_t online_show(struct device *dev, struct device_attribute *attr,
2420 			   char *buf)
2421 {
2422 	bool val;
2423 
2424 	device_lock(dev);
2425 	val = !dev->offline;
2426 	device_unlock(dev);
2427 	return sysfs_emit(buf, "%u\n", val);
2428 }
2429 
2430 static ssize_t online_store(struct device *dev, struct device_attribute *attr,
2431 			    const char *buf, size_t count)
2432 {
2433 	bool val;
2434 	int ret;
2435 
2436 	ret = strtobool(buf, &val);
2437 	if (ret < 0)
2438 		return ret;
2439 
2440 	ret = lock_device_hotplug_sysfs();
2441 	if (ret)
2442 		return ret;
2443 
2444 	ret = val ? device_online(dev) : device_offline(dev);
2445 	unlock_device_hotplug();
2446 	return ret < 0 ? ret : count;
2447 }
2448 static DEVICE_ATTR_RW(online);
2449 
2450 static ssize_t removable_show(struct device *dev, struct device_attribute *attr,
2451 			      char *buf)
2452 {
2453 	const char *loc;
2454 
2455 	switch (dev->removable) {
2456 	case DEVICE_REMOVABLE:
2457 		loc = "removable";
2458 		break;
2459 	case DEVICE_FIXED:
2460 		loc = "fixed";
2461 		break;
2462 	default:
2463 		loc = "unknown";
2464 	}
2465 	return sysfs_emit(buf, "%s\n", loc);
2466 }
2467 static DEVICE_ATTR_RO(removable);
2468 
2469 int device_add_groups(struct device *dev, const struct attribute_group **groups)
2470 {
2471 	return sysfs_create_groups(&dev->kobj, groups);
2472 }
2473 EXPORT_SYMBOL_GPL(device_add_groups);
2474 
2475 void device_remove_groups(struct device *dev,
2476 			  const struct attribute_group **groups)
2477 {
2478 	sysfs_remove_groups(&dev->kobj, groups);
2479 }
2480 EXPORT_SYMBOL_GPL(device_remove_groups);
2481 
2482 union device_attr_group_devres {
2483 	const struct attribute_group *group;
2484 	const struct attribute_group **groups;
2485 };
2486 
2487 static int devm_attr_group_match(struct device *dev, void *res, void *data)
2488 {
2489 	return ((union device_attr_group_devres *)res)->group == data;
2490 }
2491 
2492 static void devm_attr_group_remove(struct device *dev, void *res)
2493 {
2494 	union device_attr_group_devres *devres = res;
2495 	const struct attribute_group *group = devres->group;
2496 
2497 	dev_dbg(dev, "%s: removing group %p\n", __func__, group);
2498 	sysfs_remove_group(&dev->kobj, group);
2499 }
2500 
2501 static void devm_attr_groups_remove(struct device *dev, void *res)
2502 {
2503 	union device_attr_group_devres *devres = res;
2504 	const struct attribute_group **groups = devres->groups;
2505 
2506 	dev_dbg(dev, "%s: removing groups %p\n", __func__, groups);
2507 	sysfs_remove_groups(&dev->kobj, groups);
2508 }
2509 
2510 /**
2511  * devm_device_add_group - given a device, create a managed attribute group
2512  * @dev:	The device to create the group for
2513  * @grp:	The attribute group to create
2514  *
2515  * This function creates a group for the first time.  It will explicitly
2516  * warn and error if any of the attribute files being created already exist.
2517  *
2518  * Returns 0 on success or error code on failure.
2519  */
2520 int devm_device_add_group(struct device *dev, const struct attribute_group *grp)
2521 {
2522 	union device_attr_group_devres *devres;
2523 	int error;
2524 
2525 	devres = devres_alloc(devm_attr_group_remove,
2526 			      sizeof(*devres), GFP_KERNEL);
2527 	if (!devres)
2528 		return -ENOMEM;
2529 
2530 	error = sysfs_create_group(&dev->kobj, grp);
2531 	if (error) {
2532 		devres_free(devres);
2533 		return error;
2534 	}
2535 
2536 	devres->group = grp;
2537 	devres_add(dev, devres);
2538 	return 0;
2539 }
2540 EXPORT_SYMBOL_GPL(devm_device_add_group);
2541 
2542 /**
2543  * devm_device_remove_group: remove a managed group from a device
2544  * @dev:	device to remove the group from
2545  * @grp:	group to remove
2546  *
2547  * This function removes a group of attributes from a device. The attributes
2548  * previously have to have been created for this group, otherwise it will fail.
2549  */
2550 void devm_device_remove_group(struct device *dev,
2551 			      const struct attribute_group *grp)
2552 {
2553 	WARN_ON(devres_release(dev, devm_attr_group_remove,
2554 			       devm_attr_group_match,
2555 			       /* cast away const */ (void *)grp));
2556 }
2557 EXPORT_SYMBOL_GPL(devm_device_remove_group);
2558 
2559 /**
2560  * devm_device_add_groups - create a bunch of managed attribute groups
2561  * @dev:	The device to create the group for
2562  * @groups:	The attribute groups to create, NULL terminated
2563  *
2564  * This function creates a bunch of managed attribute groups.  If an error
2565  * occurs when creating a group, all previously created groups will be
2566  * removed, unwinding everything back to the original state when this
2567  * function was called.  It will explicitly warn and error if any of the
2568  * attribute files being created already exist.
2569  *
2570  * Returns 0 on success or error code from sysfs_create_group on failure.
2571  */
2572 int devm_device_add_groups(struct device *dev,
2573 			   const struct attribute_group **groups)
2574 {
2575 	union device_attr_group_devres *devres;
2576 	int error;
2577 
2578 	devres = devres_alloc(devm_attr_groups_remove,
2579 			      sizeof(*devres), GFP_KERNEL);
2580 	if (!devres)
2581 		return -ENOMEM;
2582 
2583 	error = sysfs_create_groups(&dev->kobj, groups);
2584 	if (error) {
2585 		devres_free(devres);
2586 		return error;
2587 	}
2588 
2589 	devres->groups = groups;
2590 	devres_add(dev, devres);
2591 	return 0;
2592 }
2593 EXPORT_SYMBOL_GPL(devm_device_add_groups);
2594 
2595 /**
2596  * devm_device_remove_groups - remove a list of managed groups
2597  *
2598  * @dev:	The device for the groups to be removed from
2599  * @groups:	NULL terminated list of groups to be removed
2600  *
2601  * If groups is not NULL, remove the specified groups from the device.
2602  */
2603 void devm_device_remove_groups(struct device *dev,
2604 			       const struct attribute_group **groups)
2605 {
2606 	WARN_ON(devres_release(dev, devm_attr_groups_remove,
2607 			       devm_attr_group_match,
2608 			       /* cast away const */ (void *)groups));
2609 }
2610 EXPORT_SYMBOL_GPL(devm_device_remove_groups);
2611 
2612 static int device_add_attrs(struct device *dev)
2613 {
2614 	struct class *class = dev->class;
2615 	const struct device_type *type = dev->type;
2616 	int error;
2617 
2618 	if (class) {
2619 		error = device_add_groups(dev, class->dev_groups);
2620 		if (error)
2621 			return error;
2622 	}
2623 
2624 	if (type) {
2625 		error = device_add_groups(dev, type->groups);
2626 		if (error)
2627 			goto err_remove_class_groups;
2628 	}
2629 
2630 	error = device_add_groups(dev, dev->groups);
2631 	if (error)
2632 		goto err_remove_type_groups;
2633 
2634 	if (device_supports_offline(dev) && !dev->offline_disabled) {
2635 		error = device_create_file(dev, &dev_attr_online);
2636 		if (error)
2637 			goto err_remove_dev_groups;
2638 	}
2639 
2640 	if (fw_devlink_flags && !fw_devlink_is_permissive() && dev->fwnode) {
2641 		error = device_create_file(dev, &dev_attr_waiting_for_supplier);
2642 		if (error)
2643 			goto err_remove_dev_online;
2644 	}
2645 
2646 	if (dev_removable_is_valid(dev)) {
2647 		error = device_create_file(dev, &dev_attr_removable);
2648 		if (error)
2649 			goto err_remove_dev_waiting_for_supplier;
2650 	}
2651 
2652 	return 0;
2653 
2654  err_remove_dev_waiting_for_supplier:
2655 	device_remove_file(dev, &dev_attr_waiting_for_supplier);
2656  err_remove_dev_online:
2657 	device_remove_file(dev, &dev_attr_online);
2658  err_remove_dev_groups:
2659 	device_remove_groups(dev, dev->groups);
2660  err_remove_type_groups:
2661 	if (type)
2662 		device_remove_groups(dev, type->groups);
2663  err_remove_class_groups:
2664 	if (class)
2665 		device_remove_groups(dev, class->dev_groups);
2666 
2667 	return error;
2668 }
2669 
2670 static void device_remove_attrs(struct device *dev)
2671 {
2672 	struct class *class = dev->class;
2673 	const struct device_type *type = dev->type;
2674 
2675 	device_remove_file(dev, &dev_attr_removable);
2676 	device_remove_file(dev, &dev_attr_waiting_for_supplier);
2677 	device_remove_file(dev, &dev_attr_online);
2678 	device_remove_groups(dev, dev->groups);
2679 
2680 	if (type)
2681 		device_remove_groups(dev, type->groups);
2682 
2683 	if (class)
2684 		device_remove_groups(dev, class->dev_groups);
2685 }
2686 
2687 static ssize_t dev_show(struct device *dev, struct device_attribute *attr,
2688 			char *buf)
2689 {
2690 	return print_dev_t(buf, dev->devt);
2691 }
2692 static DEVICE_ATTR_RO(dev);
2693 
2694 /* /sys/devices/ */
2695 struct kset *devices_kset;
2696 
2697 /**
2698  * devices_kset_move_before - Move device in the devices_kset's list.
2699  * @deva: Device to move.
2700  * @devb: Device @deva should come before.
2701  */
2702 static void devices_kset_move_before(struct device *deva, struct device *devb)
2703 {
2704 	if (!devices_kset)
2705 		return;
2706 	pr_debug("devices_kset: Moving %s before %s\n",
2707 		 dev_name(deva), dev_name(devb));
2708 	spin_lock(&devices_kset->list_lock);
2709 	list_move_tail(&deva->kobj.entry, &devb->kobj.entry);
2710 	spin_unlock(&devices_kset->list_lock);
2711 }
2712 
2713 /**
2714  * devices_kset_move_after - Move device in the devices_kset's list.
2715  * @deva: Device to move
2716  * @devb: Device @deva should come after.
2717  */
2718 static void devices_kset_move_after(struct device *deva, struct device *devb)
2719 {
2720 	if (!devices_kset)
2721 		return;
2722 	pr_debug("devices_kset: Moving %s after %s\n",
2723 		 dev_name(deva), dev_name(devb));
2724 	spin_lock(&devices_kset->list_lock);
2725 	list_move(&deva->kobj.entry, &devb->kobj.entry);
2726 	spin_unlock(&devices_kset->list_lock);
2727 }
2728 
2729 /**
2730  * devices_kset_move_last - move the device to the end of devices_kset's list.
2731  * @dev: device to move
2732  */
2733 void devices_kset_move_last(struct device *dev)
2734 {
2735 	if (!devices_kset)
2736 		return;
2737 	pr_debug("devices_kset: Moving %s to end of list\n", dev_name(dev));
2738 	spin_lock(&devices_kset->list_lock);
2739 	list_move_tail(&dev->kobj.entry, &devices_kset->list);
2740 	spin_unlock(&devices_kset->list_lock);
2741 }
2742 
2743 /**
2744  * device_create_file - create sysfs attribute file for device.
2745  * @dev: device.
2746  * @attr: device attribute descriptor.
2747  */
2748 int device_create_file(struct device *dev,
2749 		       const struct device_attribute *attr)
2750 {
2751 	int error = 0;
2752 
2753 	if (dev) {
2754 		WARN(((attr->attr.mode & S_IWUGO) && !attr->store),
2755 			"Attribute %s: write permission without 'store'\n",
2756 			attr->attr.name);
2757 		WARN(((attr->attr.mode & S_IRUGO) && !attr->show),
2758 			"Attribute %s: read permission without 'show'\n",
2759 			attr->attr.name);
2760 		error = sysfs_create_file(&dev->kobj, &attr->attr);
2761 	}
2762 
2763 	return error;
2764 }
2765 EXPORT_SYMBOL_GPL(device_create_file);
2766 
2767 /**
2768  * device_remove_file - remove sysfs attribute file.
2769  * @dev: device.
2770  * @attr: device attribute descriptor.
2771  */
2772 void device_remove_file(struct device *dev,
2773 			const struct device_attribute *attr)
2774 {
2775 	if (dev)
2776 		sysfs_remove_file(&dev->kobj, &attr->attr);
2777 }
2778 EXPORT_SYMBOL_GPL(device_remove_file);
2779 
2780 /**
2781  * device_remove_file_self - remove sysfs attribute file from its own method.
2782  * @dev: device.
2783  * @attr: device attribute descriptor.
2784  *
2785  * See kernfs_remove_self() for details.
2786  */
2787 bool device_remove_file_self(struct device *dev,
2788 			     const struct device_attribute *attr)
2789 {
2790 	if (dev)
2791 		return sysfs_remove_file_self(&dev->kobj, &attr->attr);
2792 	else
2793 		return false;
2794 }
2795 EXPORT_SYMBOL_GPL(device_remove_file_self);
2796 
2797 /**
2798  * device_create_bin_file - create sysfs binary attribute file for device.
2799  * @dev: device.
2800  * @attr: device binary attribute descriptor.
2801  */
2802 int device_create_bin_file(struct device *dev,
2803 			   const struct bin_attribute *attr)
2804 {
2805 	int error = -EINVAL;
2806 	if (dev)
2807 		error = sysfs_create_bin_file(&dev->kobj, attr);
2808 	return error;
2809 }
2810 EXPORT_SYMBOL_GPL(device_create_bin_file);
2811 
2812 /**
2813  * device_remove_bin_file - remove sysfs binary attribute file
2814  * @dev: device.
2815  * @attr: device binary attribute descriptor.
2816  */
2817 void device_remove_bin_file(struct device *dev,
2818 			    const struct bin_attribute *attr)
2819 {
2820 	if (dev)
2821 		sysfs_remove_bin_file(&dev->kobj, attr);
2822 }
2823 EXPORT_SYMBOL_GPL(device_remove_bin_file);
2824 
2825 static void klist_children_get(struct klist_node *n)
2826 {
2827 	struct device_private *p = to_device_private_parent(n);
2828 	struct device *dev = p->device;
2829 
2830 	get_device(dev);
2831 }
2832 
2833 static void klist_children_put(struct klist_node *n)
2834 {
2835 	struct device_private *p = to_device_private_parent(n);
2836 	struct device *dev = p->device;
2837 
2838 	put_device(dev);
2839 }
2840 
2841 /**
2842  * device_initialize - init device structure.
2843  * @dev: device.
2844  *
2845  * This prepares the device for use by other layers by initializing
2846  * its fields.
2847  * It is the first half of device_register(), if called by
2848  * that function, though it can also be called separately, so one
2849  * may use @dev's fields. In particular, get_device()/put_device()
2850  * may be used for reference counting of @dev after calling this
2851  * function.
2852  *
2853  * All fields in @dev must be initialized by the caller to 0, except
2854  * for those explicitly set to some other value.  The simplest
2855  * approach is to use kzalloc() to allocate the structure containing
2856  * @dev.
2857  *
2858  * NOTE: Use put_device() to give up your reference instead of freeing
2859  * @dev directly once you have called this function.
2860  */
2861 void device_initialize(struct device *dev)
2862 {
2863 	dev->kobj.kset = devices_kset;
2864 	kobject_init(&dev->kobj, &device_ktype);
2865 	INIT_LIST_HEAD(&dev->dma_pools);
2866 	mutex_init(&dev->mutex);
2867 #ifdef CONFIG_PROVE_LOCKING
2868 	mutex_init(&dev->lockdep_mutex);
2869 #endif
2870 	lockdep_set_novalidate_class(&dev->mutex);
2871 	spin_lock_init(&dev->devres_lock);
2872 	INIT_LIST_HEAD(&dev->devres_head);
2873 	device_pm_init(dev);
2874 	set_dev_node(dev, NUMA_NO_NODE);
2875 #ifdef CONFIG_GENERIC_MSI_IRQ
2876 	raw_spin_lock_init(&dev->msi_lock);
2877 	INIT_LIST_HEAD(&dev->msi_list);
2878 #endif
2879 	INIT_LIST_HEAD(&dev->links.consumers);
2880 	INIT_LIST_HEAD(&dev->links.suppliers);
2881 	INIT_LIST_HEAD(&dev->links.defer_sync);
2882 	dev->links.status = DL_DEV_NO_DRIVER;
2883 #if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
2884     defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
2885     defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL)
2886 	dev->dma_coherent = dma_default_coherent;
2887 #endif
2888 #ifdef CONFIG_SWIOTLB
2889 	dev->dma_io_tlb_mem = &io_tlb_default_mem;
2890 #endif
2891 }
2892 EXPORT_SYMBOL_GPL(device_initialize);
2893 
2894 struct kobject *virtual_device_parent(struct device *dev)
2895 {
2896 	static struct kobject *virtual_dir = NULL;
2897 
2898 	if (!virtual_dir)
2899 		virtual_dir = kobject_create_and_add("virtual",
2900 						     &devices_kset->kobj);
2901 
2902 	return virtual_dir;
2903 }
2904 
2905 struct class_dir {
2906 	struct kobject kobj;
2907 	struct class *class;
2908 };
2909 
2910 #define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
2911 
2912 static void class_dir_release(struct kobject *kobj)
2913 {
2914 	struct class_dir *dir = to_class_dir(kobj);
2915 	kfree(dir);
2916 }
2917 
2918 static const
2919 struct kobj_ns_type_operations *class_dir_child_ns_type(struct kobject *kobj)
2920 {
2921 	struct class_dir *dir = to_class_dir(kobj);
2922 	return dir->class->ns_type;
2923 }
2924 
2925 static struct kobj_type class_dir_ktype = {
2926 	.release	= class_dir_release,
2927 	.sysfs_ops	= &kobj_sysfs_ops,
2928 	.child_ns_type	= class_dir_child_ns_type
2929 };
2930 
2931 static struct kobject *
2932 class_dir_create_and_add(struct class *class, struct kobject *parent_kobj)
2933 {
2934 	struct class_dir *dir;
2935 	int retval;
2936 
2937 	dir = kzalloc(sizeof(*dir), GFP_KERNEL);
2938 	if (!dir)
2939 		return ERR_PTR(-ENOMEM);
2940 
2941 	dir->class = class;
2942 	kobject_init(&dir->kobj, &class_dir_ktype);
2943 
2944 	dir->kobj.kset = &class->p->glue_dirs;
2945 
2946 	retval = kobject_add(&dir->kobj, parent_kobj, "%s", class->name);
2947 	if (retval < 0) {
2948 		kobject_put(&dir->kobj);
2949 		return ERR_PTR(retval);
2950 	}
2951 	return &dir->kobj;
2952 }
2953 
2954 static DEFINE_MUTEX(gdp_mutex);
2955 
2956 static struct kobject *get_device_parent(struct device *dev,
2957 					 struct device *parent)
2958 {
2959 	if (dev->class) {
2960 		struct kobject *kobj = NULL;
2961 		struct kobject *parent_kobj;
2962 		struct kobject *k;
2963 
2964 #ifdef CONFIG_BLOCK
2965 		/* block disks show up in /sys/block */
2966 		if (sysfs_deprecated && dev->class == &block_class) {
2967 			if (parent && parent->class == &block_class)
2968 				return &parent->kobj;
2969 			return &block_class.p->subsys.kobj;
2970 		}
2971 #endif
2972 
2973 		/*
2974 		 * If we have no parent, we live in "virtual".
2975 		 * Class-devices with a non class-device as parent, live
2976 		 * in a "glue" directory to prevent namespace collisions.
2977 		 */
2978 		if (parent == NULL)
2979 			parent_kobj = virtual_device_parent(dev);
2980 		else if (parent->class && !dev->class->ns_type)
2981 			return &parent->kobj;
2982 		else
2983 			parent_kobj = &parent->kobj;
2984 
2985 		mutex_lock(&gdp_mutex);
2986 
2987 		/* find our class-directory at the parent and reference it */
2988 		spin_lock(&dev->class->p->glue_dirs.list_lock);
2989 		list_for_each_entry(k, &dev->class->p->glue_dirs.list, entry)
2990 			if (k->parent == parent_kobj) {
2991 				kobj = kobject_get(k);
2992 				break;
2993 			}
2994 		spin_unlock(&dev->class->p->glue_dirs.list_lock);
2995 		if (kobj) {
2996 			mutex_unlock(&gdp_mutex);
2997 			return kobj;
2998 		}
2999 
3000 		/* or create a new class-directory at the parent device */
3001 		k = class_dir_create_and_add(dev->class, parent_kobj);
3002 		/* do not emit an uevent for this simple "glue" directory */
3003 		mutex_unlock(&gdp_mutex);
3004 		return k;
3005 	}
3006 
3007 	/* subsystems can specify a default root directory for their devices */
3008 	if (!parent && dev->bus && dev->bus->dev_root)
3009 		return &dev->bus->dev_root->kobj;
3010 
3011 	if (parent)
3012 		return &parent->kobj;
3013 	return NULL;
3014 }
3015 
3016 static inline bool live_in_glue_dir(struct kobject *kobj,
3017 				    struct device *dev)
3018 {
3019 	if (!kobj || !dev->class ||
3020 	    kobj->kset != &dev->class->p->glue_dirs)
3021 		return false;
3022 	return true;
3023 }
3024 
3025 static inline struct kobject *get_glue_dir(struct device *dev)
3026 {
3027 	return dev->kobj.parent;
3028 }
3029 
3030 /**
3031  * kobject_has_children - Returns whether a kobject has children.
3032  * @kobj: the object to test
3033  *
3034  * This will return whether a kobject has other kobjects as children.
3035  *
3036  * It does NOT account for the presence of attribute files, only sub
3037  * directories. It also assumes there is no concurrent addition or
3038  * removal of such children, and thus relies on external locking.
3039  */
3040 static inline bool kobject_has_children(struct kobject *kobj)
3041 {
3042 	WARN_ON_ONCE(kref_read(&kobj->kref) == 0);
3043 
3044 	return kobj->sd && kobj->sd->dir.subdirs;
3045 }
3046 
3047 /*
3048  * make sure cleaning up dir as the last step, we need to make
3049  * sure .release handler of kobject is run with holding the
3050  * global lock
3051  */
3052 static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
3053 {
3054 	unsigned int ref;
3055 
3056 	/* see if we live in a "glue" directory */
3057 	if (!live_in_glue_dir(glue_dir, dev))
3058 		return;
3059 
3060 	mutex_lock(&gdp_mutex);
3061 	/**
3062 	 * There is a race condition between removing glue directory
3063 	 * and adding a new device under the glue directory.
3064 	 *
3065 	 * CPU1:                                         CPU2:
3066 	 *
3067 	 * device_add()
3068 	 *   get_device_parent()
3069 	 *     class_dir_create_and_add()
3070 	 *       kobject_add_internal()
3071 	 *         create_dir()    // create glue_dir
3072 	 *
3073 	 *                                               device_add()
3074 	 *                                                 get_device_parent()
3075 	 *                                                   kobject_get() // get glue_dir
3076 	 *
3077 	 * device_del()
3078 	 *   cleanup_glue_dir()
3079 	 *     kobject_del(glue_dir)
3080 	 *
3081 	 *                                               kobject_add()
3082 	 *                                                 kobject_add_internal()
3083 	 *                                                   create_dir() // in glue_dir
3084 	 *                                                     sysfs_create_dir_ns()
3085 	 *                                                       kernfs_create_dir_ns(sd)
3086 	 *
3087 	 *       sysfs_remove_dir() // glue_dir->sd=NULL
3088 	 *       sysfs_put()        // free glue_dir->sd
3089 	 *
3090 	 *                                                         // sd is freed
3091 	 *                                                         kernfs_new_node(sd)
3092 	 *                                                           kernfs_get(glue_dir)
3093 	 *                                                           kernfs_add_one()
3094 	 *                                                           kernfs_put()
3095 	 *
3096 	 * Before CPU1 remove last child device under glue dir, if CPU2 add
3097 	 * a new device under glue dir, the glue_dir kobject reference count
3098 	 * will be increase to 2 in kobject_get(k). And CPU2 has been called
3099 	 * kernfs_create_dir_ns(). Meanwhile, CPU1 call sysfs_remove_dir()
3100 	 * and sysfs_put(). This result in glue_dir->sd is freed.
3101 	 *
3102 	 * Then the CPU2 will see a stale "empty" but still potentially used
3103 	 * glue dir around in kernfs_new_node().
3104 	 *
3105 	 * In order to avoid this happening, we also should make sure that
3106 	 * kernfs_node for glue_dir is released in CPU1 only when refcount
3107 	 * for glue_dir kobj is 1.
3108 	 */
3109 	ref = kref_read(&glue_dir->kref);
3110 	if (!kobject_has_children(glue_dir) && !--ref)
3111 		kobject_del(glue_dir);
3112 	kobject_put(glue_dir);
3113 	mutex_unlock(&gdp_mutex);
3114 }
3115 
3116 static int device_add_class_symlinks(struct device *dev)
3117 {
3118 	struct device_node *of_node = dev_of_node(dev);
3119 	int error;
3120 
3121 	if (of_node) {
3122 		error = sysfs_create_link(&dev->kobj, of_node_kobj(of_node), "of_node");
3123 		if (error)
3124 			dev_warn(dev, "Error %d creating of_node link\n",error);
3125 		/* An error here doesn't warrant bringing down the device */
3126 	}
3127 
3128 	if (!dev->class)
3129 		return 0;
3130 
3131 	error = sysfs_create_link(&dev->kobj,
3132 				  &dev->class->p->subsys.kobj,
3133 				  "subsystem");
3134 	if (error)
3135 		goto out_devnode;
3136 
3137 	if (dev->parent && device_is_not_partition(dev)) {
3138 		error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
3139 					  "device");
3140 		if (error)
3141 			goto out_subsys;
3142 	}
3143 
3144 #ifdef CONFIG_BLOCK
3145 	/* /sys/block has directories and does not need symlinks */
3146 	if (sysfs_deprecated && dev->class == &block_class)
3147 		return 0;
3148 #endif
3149 
3150 	/* link in the class directory pointing to the device */
3151 	error = sysfs_create_link(&dev->class->p->subsys.kobj,
3152 				  &dev->kobj, dev_name(dev));
3153 	if (error)
3154 		goto out_device;
3155 
3156 	return 0;
3157 
3158 out_device:
3159 	sysfs_remove_link(&dev->kobj, "device");
3160 
3161 out_subsys:
3162 	sysfs_remove_link(&dev->kobj, "subsystem");
3163 out_devnode:
3164 	sysfs_remove_link(&dev->kobj, "of_node");
3165 	return error;
3166 }
3167 
3168 static void device_remove_class_symlinks(struct device *dev)
3169 {
3170 	if (dev_of_node(dev))
3171 		sysfs_remove_link(&dev->kobj, "of_node");
3172 
3173 	if (!dev->class)
3174 		return;
3175 
3176 	if (dev->parent && device_is_not_partition(dev))
3177 		sysfs_remove_link(&dev->kobj, "device");
3178 	sysfs_remove_link(&dev->kobj, "subsystem");
3179 #ifdef CONFIG_BLOCK
3180 	if (sysfs_deprecated && dev->class == &block_class)
3181 		return;
3182 #endif
3183 	sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev));
3184 }
3185 
3186 /**
3187  * dev_set_name - set a device name
3188  * @dev: device
3189  * @fmt: format string for the device's name
3190  */
3191 int dev_set_name(struct device *dev, const char *fmt, ...)
3192 {
3193 	va_list vargs;
3194 	int err;
3195 
3196 	va_start(vargs, fmt);
3197 	err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
3198 	va_end(vargs);
3199 	return err;
3200 }
3201 EXPORT_SYMBOL_GPL(dev_set_name);
3202 
3203 /**
3204  * device_to_dev_kobj - select a /sys/dev/ directory for the device
3205  * @dev: device
3206  *
3207  * By default we select char/ for new entries.  Setting class->dev_obj
3208  * to NULL prevents an entry from being created.  class->dev_kobj must
3209  * be set (or cleared) before any devices are registered to the class
3210  * otherwise device_create_sys_dev_entry() and
3211  * device_remove_sys_dev_entry() will disagree about the presence of
3212  * the link.
3213  */
3214 static struct kobject *device_to_dev_kobj(struct device *dev)
3215 {
3216 	struct kobject *kobj;
3217 
3218 	if (dev->class)
3219 		kobj = dev->class->dev_kobj;
3220 	else
3221 		kobj = sysfs_dev_char_kobj;
3222 
3223 	return kobj;
3224 }
3225 
3226 static int device_create_sys_dev_entry(struct device *dev)
3227 {
3228 	struct kobject *kobj = device_to_dev_kobj(dev);
3229 	int error = 0;
3230 	char devt_str[15];
3231 
3232 	if (kobj) {
3233 		format_dev_t(devt_str, dev->devt);
3234 		error = sysfs_create_link(kobj, &dev->kobj, devt_str);
3235 	}
3236 
3237 	return error;
3238 }
3239 
3240 static void device_remove_sys_dev_entry(struct device *dev)
3241 {
3242 	struct kobject *kobj = device_to_dev_kobj(dev);
3243 	char devt_str[15];
3244 
3245 	if (kobj) {
3246 		format_dev_t(devt_str, dev->devt);
3247 		sysfs_remove_link(kobj, devt_str);
3248 	}
3249 }
3250 
3251 static int device_private_init(struct device *dev)
3252 {
3253 	dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
3254 	if (!dev->p)
3255 		return -ENOMEM;
3256 	dev->p->device = dev;
3257 	klist_init(&dev->p->klist_children, klist_children_get,
3258 		   klist_children_put);
3259 	INIT_LIST_HEAD(&dev->p->deferred_probe);
3260 	return 0;
3261 }
3262 
3263 /**
3264  * device_add - add device to device hierarchy.
3265  * @dev: device.
3266  *
3267  * This is part 2 of device_register(), though may be called
3268  * separately _iff_ device_initialize() has been called separately.
3269  *
3270  * This adds @dev to the kobject hierarchy via kobject_add(), adds it
3271  * to the global and sibling lists for the device, then
3272  * adds it to the other relevant subsystems of the driver model.
3273  *
3274  * Do not call this routine or device_register() more than once for
3275  * any device structure.  The driver model core is not designed to work
3276  * with devices that get unregistered and then spring back to life.
3277  * (Among other things, it's very hard to guarantee that all references
3278  * to the previous incarnation of @dev have been dropped.)  Allocate
3279  * and register a fresh new struct device instead.
3280  *
3281  * NOTE: _Never_ directly free @dev after calling this function, even
3282  * if it returned an error! Always use put_device() to give up your
3283  * reference instead.
3284  *
3285  * Rule of thumb is: if device_add() succeeds, you should call
3286  * device_del() when you want to get rid of it. If device_add() has
3287  * *not* succeeded, use *only* put_device() to drop the reference
3288  * count.
3289  */
3290 int device_add(struct device *dev)
3291 {
3292 	struct device *parent;
3293 	struct kobject *kobj;
3294 	struct class_interface *class_intf;
3295 	int error = -EINVAL;
3296 	struct kobject *glue_dir = NULL;
3297 
3298 	dev = get_device(dev);
3299 	if (!dev)
3300 		goto done;
3301 
3302 	if (!dev->p) {
3303 		error = device_private_init(dev);
3304 		if (error)
3305 			goto done;
3306 	}
3307 
3308 	/*
3309 	 * for statically allocated devices, which should all be converted
3310 	 * some day, we need to initialize the name. We prevent reading back
3311 	 * the name, and force the use of dev_name()
3312 	 */
3313 	if (dev->init_name) {
3314 		dev_set_name(dev, "%s", dev->init_name);
3315 		dev->init_name = NULL;
3316 	}
3317 
3318 	/* subsystems can specify simple device enumeration */
3319 	if (!dev_name(dev) && dev->bus && dev->bus->dev_name)
3320 		dev_set_name(dev, "%s%u", dev->bus->dev_name, dev->id);
3321 
3322 	if (!dev_name(dev)) {
3323 		error = -EINVAL;
3324 		goto name_error;
3325 	}
3326 
3327 	pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
3328 
3329 	parent = get_device(dev->parent);
3330 	kobj = get_device_parent(dev, parent);
3331 	if (IS_ERR(kobj)) {
3332 		error = PTR_ERR(kobj);
3333 		goto parent_error;
3334 	}
3335 	if (kobj)
3336 		dev->kobj.parent = kobj;
3337 
3338 	/* use parent numa_node */
3339 	if (parent && (dev_to_node(dev) == NUMA_NO_NODE))
3340 		set_dev_node(dev, dev_to_node(parent));
3341 
3342 	/* first, register with generic layer. */
3343 	/* we require the name to be set before, and pass NULL */
3344 	error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
3345 	if (error) {
3346 		glue_dir = get_glue_dir(dev);
3347 		goto Error;
3348 	}
3349 
3350 	/* notify platform of device entry */
3351 	device_platform_notify(dev);
3352 
3353 	error = device_create_file(dev, &dev_attr_uevent);
3354 	if (error)
3355 		goto attrError;
3356 
3357 	error = device_add_class_symlinks(dev);
3358 	if (error)
3359 		goto SymlinkError;
3360 	error = device_add_attrs(dev);
3361 	if (error)
3362 		goto AttrsError;
3363 	error = bus_add_device(dev);
3364 	if (error)
3365 		goto BusError;
3366 	error = dpm_sysfs_add(dev);
3367 	if (error)
3368 		goto DPMError;
3369 	device_pm_add(dev);
3370 
3371 	if (MAJOR(dev->devt)) {
3372 		error = device_create_file(dev, &dev_attr_dev);
3373 		if (error)
3374 			goto DevAttrError;
3375 
3376 		error = device_create_sys_dev_entry(dev);
3377 		if (error)
3378 			goto SysEntryError;
3379 
3380 		devtmpfs_create_node(dev);
3381 	}
3382 
3383 	/* Notify clients of device addition.  This call must come
3384 	 * after dpm_sysfs_add() and before kobject_uevent().
3385 	 */
3386 	if (dev->bus)
3387 		blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
3388 					     BUS_NOTIFY_ADD_DEVICE, dev);
3389 
3390 	kobject_uevent(&dev->kobj, KOBJ_ADD);
3391 
3392 	/*
3393 	 * Check if any of the other devices (consumers) have been waiting for
3394 	 * this device (supplier) to be added so that they can create a device
3395 	 * link to it.
3396 	 *
3397 	 * This needs to happen after device_pm_add() because device_link_add()
3398 	 * requires the supplier be registered before it's called.
3399 	 *
3400 	 * But this also needs to happen before bus_probe_device() to make sure
3401 	 * waiting consumers can link to it before the driver is bound to the
3402 	 * device and the driver sync_state callback is called for this device.
3403 	 */
3404 	if (dev->fwnode && !dev->fwnode->dev) {
3405 		dev->fwnode->dev = dev;
3406 		fw_devlink_link_device(dev);
3407 	}
3408 
3409 	bus_probe_device(dev);
3410 
3411 	/*
3412 	 * If all driver registration is done and a newly added device doesn't
3413 	 * match with any driver, don't block its consumers from probing in
3414 	 * case the consumer device is able to operate without this supplier.
3415 	 */
3416 	if (dev->fwnode && fw_devlink_drv_reg_done && !dev->can_match)
3417 		fw_devlink_unblock_consumers(dev);
3418 
3419 	if (parent)
3420 		klist_add_tail(&dev->p->knode_parent,
3421 			       &parent->p->klist_children);
3422 
3423 	if (dev->class) {
3424 		mutex_lock(&dev->class->p->mutex);
3425 		/* tie the class to the device */
3426 		klist_add_tail(&dev->p->knode_class,
3427 			       &dev->class->p->klist_devices);
3428 
3429 		/* notify any interfaces that the device is here */
3430 		list_for_each_entry(class_intf,
3431 				    &dev->class->p->interfaces, node)
3432 			if (class_intf->add_dev)
3433 				class_intf->add_dev(dev, class_intf);
3434 		mutex_unlock(&dev->class->p->mutex);
3435 	}
3436 done:
3437 	put_device(dev);
3438 	return error;
3439  SysEntryError:
3440 	if (MAJOR(dev->devt))
3441 		device_remove_file(dev, &dev_attr_dev);
3442  DevAttrError:
3443 	device_pm_remove(dev);
3444 	dpm_sysfs_remove(dev);
3445  DPMError:
3446 	bus_remove_device(dev);
3447  BusError:
3448 	device_remove_attrs(dev);
3449  AttrsError:
3450 	device_remove_class_symlinks(dev);
3451  SymlinkError:
3452 	device_remove_file(dev, &dev_attr_uevent);
3453  attrError:
3454 	device_platform_notify_remove(dev);
3455 	kobject_uevent(&dev->kobj, KOBJ_REMOVE);
3456 	glue_dir = get_glue_dir(dev);
3457 	kobject_del(&dev->kobj);
3458  Error:
3459 	cleanup_glue_dir(dev, glue_dir);
3460 parent_error:
3461 	put_device(parent);
3462 name_error:
3463 	kfree(dev->p);
3464 	dev->p = NULL;
3465 	goto done;
3466 }
3467 EXPORT_SYMBOL_GPL(device_add);
3468 
3469 /**
3470  * device_register - register a device with the system.
3471  * @dev: pointer to the device structure
3472  *
3473  * This happens in two clean steps - initialize the device
3474  * and add it to the system. The two steps can be called
3475  * separately, but this is the easiest and most common.
3476  * I.e. you should only call the two helpers separately if
3477  * have a clearly defined need to use and refcount the device
3478  * before it is added to the hierarchy.
3479  *
3480  * For more information, see the kerneldoc for device_initialize()
3481  * and device_add().
3482  *
3483  * NOTE: _Never_ directly free @dev after calling this function, even
3484  * if it returned an error! Always use put_device() to give up the
3485  * reference initialized in this function instead.
3486  */
3487 int device_register(struct device *dev)
3488 {
3489 	device_initialize(dev);
3490 	return device_add(dev);
3491 }
3492 EXPORT_SYMBOL_GPL(device_register);
3493 
3494 /**
3495  * get_device - increment reference count for device.
3496  * @dev: device.
3497  *
3498  * This simply forwards the call to kobject_get(), though
3499  * we do take care to provide for the case that we get a NULL
3500  * pointer passed in.
3501  */
3502 struct device *get_device(struct device *dev)
3503 {
3504 	return dev ? kobj_to_dev(kobject_get(&dev->kobj)) : NULL;
3505 }
3506 EXPORT_SYMBOL_GPL(get_device);
3507 
3508 /**
3509  * put_device - decrement reference count.
3510  * @dev: device in question.
3511  */
3512 void put_device(struct device *dev)
3513 {
3514 	/* might_sleep(); */
3515 	if (dev)
3516 		kobject_put(&dev->kobj);
3517 }
3518 EXPORT_SYMBOL_GPL(put_device);
3519 
3520 bool kill_device(struct device *dev)
3521 {
3522 	/*
3523 	 * Require the device lock and set the "dead" flag to guarantee that
3524 	 * the update behavior is consistent with the other bitfields near
3525 	 * it and that we cannot have an asynchronous probe routine trying
3526 	 * to run while we are tearing out the bus/class/sysfs from
3527 	 * underneath the device.
3528 	 */
3529 	device_lock_assert(dev);
3530 
3531 	if (dev->p->dead)
3532 		return false;
3533 	dev->p->dead = true;
3534 	return true;
3535 }
3536 EXPORT_SYMBOL_GPL(kill_device);
3537 
3538 /**
3539  * device_del - delete device from system.
3540  * @dev: device.
3541  *
3542  * This is the first part of the device unregistration
3543  * sequence. This removes the device from the lists we control
3544  * from here, has it removed from the other driver model
3545  * subsystems it was added to in device_add(), and removes it
3546  * from the kobject hierarchy.
3547  *
3548  * NOTE: this should be called manually _iff_ device_add() was
3549  * also called manually.
3550  */
3551 void device_del(struct device *dev)
3552 {
3553 	struct device *parent = dev->parent;
3554 	struct kobject *glue_dir = NULL;
3555 	struct class_interface *class_intf;
3556 	unsigned int noio_flag;
3557 
3558 	device_lock(dev);
3559 	kill_device(dev);
3560 	device_unlock(dev);
3561 
3562 	if (dev->fwnode && dev->fwnode->dev == dev)
3563 		dev->fwnode->dev = NULL;
3564 
3565 	/* Notify clients of device removal.  This call must come
3566 	 * before dpm_sysfs_remove().
3567 	 */
3568 	noio_flag = memalloc_noio_save();
3569 	if (dev->bus)
3570 		blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
3571 					     BUS_NOTIFY_DEL_DEVICE, dev);
3572 
3573 	dpm_sysfs_remove(dev);
3574 	if (parent)
3575 		klist_del(&dev->p->knode_parent);
3576 	if (MAJOR(dev->devt)) {
3577 		devtmpfs_delete_node(dev);
3578 		device_remove_sys_dev_entry(dev);
3579 		device_remove_file(dev, &dev_attr_dev);
3580 	}
3581 	if (dev->class) {
3582 		device_remove_class_symlinks(dev);
3583 
3584 		mutex_lock(&dev->class->p->mutex);
3585 		/* notify any interfaces that the device is now gone */
3586 		list_for_each_entry(class_intf,
3587 				    &dev->class->p->interfaces, node)
3588 			if (class_intf->remove_dev)
3589 				class_intf->remove_dev(dev, class_intf);
3590 		/* remove the device from the class list */
3591 		klist_del(&dev->p->knode_class);
3592 		mutex_unlock(&dev->class->p->mutex);
3593 	}
3594 	device_remove_file(dev, &dev_attr_uevent);
3595 	device_remove_attrs(dev);
3596 	bus_remove_device(dev);
3597 	device_pm_remove(dev);
3598 	driver_deferred_probe_del(dev);
3599 	device_platform_notify_remove(dev);
3600 	device_links_purge(dev);
3601 
3602 	if (dev->bus)
3603 		blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
3604 					     BUS_NOTIFY_REMOVED_DEVICE, dev);
3605 	kobject_uevent(&dev->kobj, KOBJ_REMOVE);
3606 	glue_dir = get_glue_dir(dev);
3607 	kobject_del(&dev->kobj);
3608 	cleanup_glue_dir(dev, glue_dir);
3609 	memalloc_noio_restore(noio_flag);
3610 	put_device(parent);
3611 }
3612 EXPORT_SYMBOL_GPL(device_del);
3613 
3614 /**
3615  * device_unregister - unregister device from system.
3616  * @dev: device going away.
3617  *
3618  * We do this in two parts, like we do device_register(). First,
3619  * we remove it from all the subsystems with device_del(), then
3620  * we decrement the reference count via put_device(). If that
3621  * is the final reference count, the device will be cleaned up
3622  * via device_release() above. Otherwise, the structure will
3623  * stick around until the final reference to the device is dropped.
3624  */
3625 void device_unregister(struct device *dev)
3626 {
3627 	pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
3628 	device_del(dev);
3629 	put_device(dev);
3630 }
3631 EXPORT_SYMBOL_GPL(device_unregister);
3632 
3633 static struct device *prev_device(struct klist_iter *i)
3634 {
3635 	struct klist_node *n = klist_prev(i);
3636 	struct device *dev = NULL;
3637 	struct device_private *p;
3638 
3639 	if (n) {
3640 		p = to_device_private_parent(n);
3641 		dev = p->device;
3642 	}
3643 	return dev;
3644 }
3645 
3646 static struct device *next_device(struct klist_iter *i)
3647 {
3648 	struct klist_node *n = klist_next(i);
3649 	struct device *dev = NULL;
3650 	struct device_private *p;
3651 
3652 	if (n) {
3653 		p = to_device_private_parent(n);
3654 		dev = p->device;
3655 	}
3656 	return dev;
3657 }
3658 
3659 /**
3660  * device_get_devnode - path of device node file
3661  * @dev: device
3662  * @mode: returned file access mode
3663  * @uid: returned file owner
3664  * @gid: returned file group
3665  * @tmp: possibly allocated string
3666  *
3667  * Return the relative path of a possible device node.
3668  * Non-default names may need to allocate a memory to compose
3669  * a name. This memory is returned in tmp and needs to be
3670  * freed by the caller.
3671  */
3672 const char *device_get_devnode(struct device *dev,
3673 			       umode_t *mode, kuid_t *uid, kgid_t *gid,
3674 			       const char **tmp)
3675 {
3676 	char *s;
3677 
3678 	*tmp = NULL;
3679 
3680 	/* the device type may provide a specific name */
3681 	if (dev->type && dev->type->devnode)
3682 		*tmp = dev->type->devnode(dev, mode, uid, gid);
3683 	if (*tmp)
3684 		return *tmp;
3685 
3686 	/* the class may provide a specific name */
3687 	if (dev->class && dev->class->devnode)
3688 		*tmp = dev->class->devnode(dev, mode);
3689 	if (*tmp)
3690 		return *tmp;
3691 
3692 	/* return name without allocation, tmp == NULL */
3693 	if (strchr(dev_name(dev), '!') == NULL)
3694 		return dev_name(dev);
3695 
3696 	/* replace '!' in the name with '/' */
3697 	s = kstrdup(dev_name(dev), GFP_KERNEL);
3698 	if (!s)
3699 		return NULL;
3700 	strreplace(s, '!', '/');
3701 	return *tmp = s;
3702 }
3703 
3704 /**
3705  * device_for_each_child - device child iterator.
3706  * @parent: parent struct device.
3707  * @fn: function to be called for each device.
3708  * @data: data for the callback.
3709  *
3710  * Iterate over @parent's child devices, and call @fn for each,
3711  * passing it @data.
3712  *
3713  * We check the return of @fn each time. If it returns anything
3714  * other than 0, we break out and return that value.
3715  */
3716 int device_for_each_child(struct device *parent, void *data,
3717 			  int (*fn)(struct device *dev, void *data))
3718 {
3719 	struct klist_iter i;
3720 	struct device *child;
3721 	int error = 0;
3722 
3723 	if (!parent->p)
3724 		return 0;
3725 
3726 	klist_iter_init(&parent->p->klist_children, &i);
3727 	while (!error && (child = next_device(&i)))
3728 		error = fn(child, data);
3729 	klist_iter_exit(&i);
3730 	return error;
3731 }
3732 EXPORT_SYMBOL_GPL(device_for_each_child);
3733 
3734 /**
3735  * device_for_each_child_reverse - device child iterator in reversed order.
3736  * @parent: parent struct device.
3737  * @fn: function to be called for each device.
3738  * @data: data for the callback.
3739  *
3740  * Iterate over @parent's child devices, and call @fn for each,
3741  * passing it @data.
3742  *
3743  * We check the return of @fn each time. If it returns anything
3744  * other than 0, we break out and return that value.
3745  */
3746 int device_for_each_child_reverse(struct device *parent, void *data,
3747 				  int (*fn)(struct device *dev, void *data))
3748 {
3749 	struct klist_iter i;
3750 	struct device *child;
3751 	int error = 0;
3752 
3753 	if (!parent->p)
3754 		return 0;
3755 
3756 	klist_iter_init(&parent->p->klist_children, &i);
3757 	while ((child = prev_device(&i)) && !error)
3758 		error = fn(child, data);
3759 	klist_iter_exit(&i);
3760 	return error;
3761 }
3762 EXPORT_SYMBOL_GPL(device_for_each_child_reverse);
3763 
3764 /**
3765  * device_find_child - device iterator for locating a particular device.
3766  * @parent: parent struct device
3767  * @match: Callback function to check device
3768  * @data: Data to pass to match function
3769  *
3770  * This is similar to the device_for_each_child() function above, but it
3771  * returns a reference to a device that is 'found' for later use, as
3772  * determined by the @match callback.
3773  *
3774  * The callback should return 0 if the device doesn't match and non-zero
3775  * if it does.  If the callback returns non-zero and a reference to the
3776  * current device can be obtained, this function will return to the caller
3777  * and not iterate over any more devices.
3778  *
3779  * NOTE: you will need to drop the reference with put_device() after use.
3780  */
3781 struct device *device_find_child(struct device *parent, void *data,
3782 				 int (*match)(struct device *dev, void *data))
3783 {
3784 	struct klist_iter i;
3785 	struct device *child;
3786 
3787 	if (!parent)
3788 		return NULL;
3789 
3790 	klist_iter_init(&parent->p->klist_children, &i);
3791 	while ((child = next_device(&i)))
3792 		if (match(child, data) && get_device(child))
3793 			break;
3794 	klist_iter_exit(&i);
3795 	return child;
3796 }
3797 EXPORT_SYMBOL_GPL(device_find_child);
3798 
3799 /**
3800  * device_find_child_by_name - device iterator for locating a child device.
3801  * @parent: parent struct device
3802  * @name: name of the child device
3803  *
3804  * This is similar to the device_find_child() function above, but it
3805  * returns a reference to a device that has the name @name.
3806  *
3807  * NOTE: you will need to drop the reference with put_device() after use.
3808  */
3809 struct device *device_find_child_by_name(struct device *parent,
3810 					 const char *name)
3811 {
3812 	struct klist_iter i;
3813 	struct device *child;
3814 
3815 	if (!parent)
3816 		return NULL;
3817 
3818 	klist_iter_init(&parent->p->klist_children, &i);
3819 	while ((child = next_device(&i)))
3820 		if (sysfs_streq(dev_name(child), name) && get_device(child))
3821 			break;
3822 	klist_iter_exit(&i);
3823 	return child;
3824 }
3825 EXPORT_SYMBOL_GPL(device_find_child_by_name);
3826 
3827 int __init devices_init(void)
3828 {
3829 	devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
3830 	if (!devices_kset)
3831 		return -ENOMEM;
3832 	dev_kobj = kobject_create_and_add("dev", NULL);
3833 	if (!dev_kobj)
3834 		goto dev_kobj_err;
3835 	sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
3836 	if (!sysfs_dev_block_kobj)
3837 		goto block_kobj_err;
3838 	sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
3839 	if (!sysfs_dev_char_kobj)
3840 		goto char_kobj_err;
3841 
3842 	return 0;
3843 
3844  char_kobj_err:
3845 	kobject_put(sysfs_dev_block_kobj);
3846  block_kobj_err:
3847 	kobject_put(dev_kobj);
3848  dev_kobj_err:
3849 	kset_unregister(devices_kset);
3850 	return -ENOMEM;
3851 }
3852 
3853 static int device_check_offline(struct device *dev, void *not_used)
3854 {
3855 	int ret;
3856 
3857 	ret = device_for_each_child(dev, NULL, device_check_offline);
3858 	if (ret)
3859 		return ret;
3860 
3861 	return device_supports_offline(dev) && !dev->offline ? -EBUSY : 0;
3862 }
3863 
3864 /**
3865  * device_offline - Prepare the device for hot-removal.
3866  * @dev: Device to be put offline.
3867  *
3868  * Execute the device bus type's .offline() callback, if present, to prepare
3869  * the device for a subsequent hot-removal.  If that succeeds, the device must
3870  * not be used until either it is removed or its bus type's .online() callback
3871  * is executed.
3872  *
3873  * Call under device_hotplug_lock.
3874  */
3875 int device_offline(struct device *dev)
3876 {
3877 	int ret;
3878 
3879 	if (dev->offline_disabled)
3880 		return -EPERM;
3881 
3882 	ret = device_for_each_child(dev, NULL, device_check_offline);
3883 	if (ret)
3884 		return ret;
3885 
3886 	device_lock(dev);
3887 	if (device_supports_offline(dev)) {
3888 		if (dev->offline) {
3889 			ret = 1;
3890 		} else {
3891 			ret = dev->bus->offline(dev);
3892 			if (!ret) {
3893 				kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
3894 				dev->offline = true;
3895 			}
3896 		}
3897 	}
3898 	device_unlock(dev);
3899 
3900 	return ret;
3901 }
3902 
3903 /**
3904  * device_online - Put the device back online after successful device_offline().
3905  * @dev: Device to be put back online.
3906  *
3907  * If device_offline() has been successfully executed for @dev, but the device
3908  * has not been removed subsequently, execute its bus type's .online() callback
3909  * to indicate that the device can be used again.
3910  *
3911  * Call under device_hotplug_lock.
3912  */
3913 int device_online(struct device *dev)
3914 {
3915 	int ret = 0;
3916 
3917 	device_lock(dev);
3918 	if (device_supports_offline(dev)) {
3919 		if (dev->offline) {
3920 			ret = dev->bus->online(dev);
3921 			if (!ret) {
3922 				kobject_uevent(&dev->kobj, KOBJ_ONLINE);
3923 				dev->offline = false;
3924 			}
3925 		} else {
3926 			ret = 1;
3927 		}
3928 	}
3929 	device_unlock(dev);
3930 
3931 	return ret;
3932 }
3933 
3934 struct root_device {
3935 	struct device dev;
3936 	struct module *owner;
3937 };
3938 
3939 static inline struct root_device *to_root_device(struct device *d)
3940 {
3941 	return container_of(d, struct root_device, dev);
3942 }
3943 
3944 static void root_device_release(struct device *dev)
3945 {
3946 	kfree(to_root_device(dev));
3947 }
3948 
3949 /**
3950  * __root_device_register - allocate and register a root device
3951  * @name: root device name
3952  * @owner: owner module of the root device, usually THIS_MODULE
3953  *
3954  * This function allocates a root device and registers it
3955  * using device_register(). In order to free the returned
3956  * device, use root_device_unregister().
3957  *
3958  * Root devices are dummy devices which allow other devices
3959  * to be grouped under /sys/devices. Use this function to
3960  * allocate a root device and then use it as the parent of
3961  * any device which should appear under /sys/devices/{name}
3962  *
3963  * The /sys/devices/{name} directory will also contain a
3964  * 'module' symlink which points to the @owner directory
3965  * in sysfs.
3966  *
3967  * Returns &struct device pointer on success, or ERR_PTR() on error.
3968  *
3969  * Note: You probably want to use root_device_register().
3970  */
3971 struct device *__root_device_register(const char *name, struct module *owner)
3972 {
3973 	struct root_device *root;
3974 	int err = -ENOMEM;
3975 
3976 	root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
3977 	if (!root)
3978 		return ERR_PTR(err);
3979 
3980 	err = dev_set_name(&root->dev, "%s", name);
3981 	if (err) {
3982 		kfree(root);
3983 		return ERR_PTR(err);
3984 	}
3985 
3986 	root->dev.release = root_device_release;
3987 
3988 	err = device_register(&root->dev);
3989 	if (err) {
3990 		put_device(&root->dev);
3991 		return ERR_PTR(err);
3992 	}
3993 
3994 #ifdef CONFIG_MODULES	/* gotta find a "cleaner" way to do this */
3995 	if (owner) {
3996 		struct module_kobject *mk = &owner->mkobj;
3997 
3998 		err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
3999 		if (err) {
4000 			device_unregister(&root->dev);
4001 			return ERR_PTR(err);
4002 		}
4003 		root->owner = owner;
4004 	}
4005 #endif
4006 
4007 	return &root->dev;
4008 }
4009 EXPORT_SYMBOL_GPL(__root_device_register);
4010 
4011 /**
4012  * root_device_unregister - unregister and free a root device
4013  * @dev: device going away
4014  *
4015  * This function unregisters and cleans up a device that was created by
4016  * root_device_register().
4017  */
4018 void root_device_unregister(struct device *dev)
4019 {
4020 	struct root_device *root = to_root_device(dev);
4021 
4022 	if (root->owner)
4023 		sysfs_remove_link(&root->dev.kobj, "module");
4024 
4025 	device_unregister(dev);
4026 }
4027 EXPORT_SYMBOL_GPL(root_device_unregister);
4028 
4029 
4030 static void device_create_release(struct device *dev)
4031 {
4032 	pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
4033 	kfree(dev);
4034 }
4035 
4036 static __printf(6, 0) struct device *
4037 device_create_groups_vargs(struct class *class, struct device *parent,
4038 			   dev_t devt, void *drvdata,
4039 			   const struct attribute_group **groups,
4040 			   const char *fmt, va_list args)
4041 {
4042 	struct device *dev = NULL;
4043 	int retval = -ENODEV;
4044 
4045 	if (class == NULL || IS_ERR(class))
4046 		goto error;
4047 
4048 	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
4049 	if (!dev) {
4050 		retval = -ENOMEM;
4051 		goto error;
4052 	}
4053 
4054 	device_initialize(dev);
4055 	dev->devt = devt;
4056 	dev->class = class;
4057 	dev->parent = parent;
4058 	dev->groups = groups;
4059 	dev->release = device_create_release;
4060 	dev_set_drvdata(dev, drvdata);
4061 
4062 	retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
4063 	if (retval)
4064 		goto error;
4065 
4066 	retval = device_add(dev);
4067 	if (retval)
4068 		goto error;
4069 
4070 	return dev;
4071 
4072 error:
4073 	put_device(dev);
4074 	return ERR_PTR(retval);
4075 }
4076 
4077 /**
4078  * device_create - creates a device and registers it with sysfs
4079  * @class: pointer to the struct class that this device should be registered to
4080  * @parent: pointer to the parent struct device of this new device, if any
4081  * @devt: the dev_t for the char device to be added
4082  * @drvdata: the data to be added to the device for callbacks
4083  * @fmt: string for the device's name
4084  *
4085  * This function can be used by char device classes.  A struct device
4086  * will be created in sysfs, registered to the specified class.
4087  *
4088  * A "dev" file will be created, showing the dev_t for the device, if
4089  * the dev_t is not 0,0.
4090  * If a pointer to a parent struct device is passed in, the newly created
4091  * struct device will be a child of that device in sysfs.
4092  * The pointer to the struct device will be returned from the call.
4093  * Any further sysfs files that might be required can be created using this
4094  * pointer.
4095  *
4096  * Returns &struct device pointer on success, or ERR_PTR() on error.
4097  *
4098  * Note: the struct class passed to this function must have previously
4099  * been created with a call to class_create().
4100  */
4101 struct device *device_create(struct class *class, struct device *parent,
4102 			     dev_t devt, void *drvdata, const char *fmt, ...)
4103 {
4104 	va_list vargs;
4105 	struct device *dev;
4106 
4107 	va_start(vargs, fmt);
4108 	dev = device_create_groups_vargs(class, parent, devt, drvdata, NULL,
4109 					  fmt, vargs);
4110 	va_end(vargs);
4111 	return dev;
4112 }
4113 EXPORT_SYMBOL_GPL(device_create);
4114 
4115 /**
4116  * device_create_with_groups - creates a device and registers it with sysfs
4117  * @class: pointer to the struct class that this device should be registered to
4118  * @parent: pointer to the parent struct device of this new device, if any
4119  * @devt: the dev_t for the char device to be added
4120  * @drvdata: the data to be added to the device for callbacks
4121  * @groups: NULL-terminated list of attribute groups to be created
4122  * @fmt: string for the device's name
4123  *
4124  * This function can be used by char device classes.  A struct device
4125  * will be created in sysfs, registered to the specified class.
4126  * Additional attributes specified in the groups parameter will also
4127  * be created automatically.
4128  *
4129  * A "dev" file will be created, showing the dev_t for the device, if
4130  * the dev_t is not 0,0.
4131  * If a pointer to a parent struct device is passed in, the newly created
4132  * struct device will be a child of that device in sysfs.
4133  * The pointer to the struct device will be returned from the call.
4134  * Any further sysfs files that might be required can be created using this
4135  * pointer.
4136  *
4137  * Returns &struct device pointer on success, or ERR_PTR() on error.
4138  *
4139  * Note: the struct class passed to this function must have previously
4140  * been created with a call to class_create().
4141  */
4142 struct device *device_create_with_groups(struct class *class,
4143 					 struct device *parent, dev_t devt,
4144 					 void *drvdata,
4145 					 const struct attribute_group **groups,
4146 					 const char *fmt, ...)
4147 {
4148 	va_list vargs;
4149 	struct device *dev;
4150 
4151 	va_start(vargs, fmt);
4152 	dev = device_create_groups_vargs(class, parent, devt, drvdata, groups,
4153 					 fmt, vargs);
4154 	va_end(vargs);
4155 	return dev;
4156 }
4157 EXPORT_SYMBOL_GPL(device_create_with_groups);
4158 
4159 /**
4160  * device_destroy - removes a device that was created with device_create()
4161  * @class: pointer to the struct class that this device was registered with
4162  * @devt: the dev_t of the device that was previously registered
4163  *
4164  * This call unregisters and cleans up a device that was created with a
4165  * call to device_create().
4166  */
4167 void device_destroy(struct class *class, dev_t devt)
4168 {
4169 	struct device *dev;
4170 
4171 	dev = class_find_device_by_devt(class, devt);
4172 	if (dev) {
4173 		put_device(dev);
4174 		device_unregister(dev);
4175 	}
4176 }
4177 EXPORT_SYMBOL_GPL(device_destroy);
4178 
4179 /**
4180  * device_rename - renames a device
4181  * @dev: the pointer to the struct device to be renamed
4182  * @new_name: the new name of the device
4183  *
4184  * It is the responsibility of the caller to provide mutual
4185  * exclusion between two different calls of device_rename
4186  * on the same device to ensure that new_name is valid and
4187  * won't conflict with other devices.
4188  *
4189  * Note: Don't call this function.  Currently, the networking layer calls this
4190  * function, but that will change.  The following text from Kay Sievers offers
4191  * some insight:
4192  *
4193  * Renaming devices is racy at many levels, symlinks and other stuff are not
4194  * replaced atomically, and you get a "move" uevent, but it's not easy to
4195  * connect the event to the old and new device. Device nodes are not renamed at
4196  * all, there isn't even support for that in the kernel now.
4197  *
4198  * In the meantime, during renaming, your target name might be taken by another
4199  * driver, creating conflicts. Or the old name is taken directly after you
4200  * renamed it -- then you get events for the same DEVPATH, before you even see
4201  * the "move" event. It's just a mess, and nothing new should ever rely on
4202  * kernel device renaming. Besides that, it's not even implemented now for
4203  * other things than (driver-core wise very simple) network devices.
4204  *
4205  * We are currently about to change network renaming in udev to completely
4206  * disallow renaming of devices in the same namespace as the kernel uses,
4207  * because we can't solve the problems properly, that arise with swapping names
4208  * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
4209  * be allowed to some other name than eth[0-9]*, for the aforementioned
4210  * reasons.
4211  *
4212  * Make up a "real" name in the driver before you register anything, or add
4213  * some other attributes for userspace to find the device, or use udev to add
4214  * symlinks -- but never rename kernel devices later, it's a complete mess. We
4215  * don't even want to get into that and try to implement the missing pieces in
4216  * the core. We really have other pieces to fix in the driver core mess. :)
4217  */
4218 int device_rename(struct device *dev, const char *new_name)
4219 {
4220 	struct kobject *kobj = &dev->kobj;
4221 	char *old_device_name = NULL;
4222 	int error;
4223 
4224 	dev = get_device(dev);
4225 	if (!dev)
4226 		return -EINVAL;
4227 
4228 	dev_dbg(dev, "renaming to %s\n", new_name);
4229 
4230 	old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
4231 	if (!old_device_name) {
4232 		error = -ENOMEM;
4233 		goto out;
4234 	}
4235 
4236 	if (dev->class) {
4237 		error = sysfs_rename_link_ns(&dev->class->p->subsys.kobj,
4238 					     kobj, old_device_name,
4239 					     new_name, kobject_namespace(kobj));
4240 		if (error)
4241 			goto out;
4242 	}
4243 
4244 	error = kobject_rename(kobj, new_name);
4245 	if (error)
4246 		goto out;
4247 
4248 out:
4249 	put_device(dev);
4250 
4251 	kfree(old_device_name);
4252 
4253 	return error;
4254 }
4255 EXPORT_SYMBOL_GPL(device_rename);
4256 
4257 static int device_move_class_links(struct device *dev,
4258 				   struct device *old_parent,
4259 				   struct device *new_parent)
4260 {
4261 	int error = 0;
4262 
4263 	if (old_parent)
4264 		sysfs_remove_link(&dev->kobj, "device");
4265 	if (new_parent)
4266 		error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
4267 					  "device");
4268 	return error;
4269 }
4270 
4271 /**
4272  * device_move - moves a device to a new parent
4273  * @dev: the pointer to the struct device to be moved
4274  * @new_parent: the new parent of the device (can be NULL)
4275  * @dpm_order: how to reorder the dpm_list
4276  */
4277 int device_move(struct device *dev, struct device *new_parent,
4278 		enum dpm_order dpm_order)
4279 {
4280 	int error;
4281 	struct device *old_parent;
4282 	struct kobject *new_parent_kobj;
4283 
4284 	dev = get_device(dev);
4285 	if (!dev)
4286 		return -EINVAL;
4287 
4288 	device_pm_lock();
4289 	new_parent = get_device(new_parent);
4290 	new_parent_kobj = get_device_parent(dev, new_parent);
4291 	if (IS_ERR(new_parent_kobj)) {
4292 		error = PTR_ERR(new_parent_kobj);
4293 		put_device(new_parent);
4294 		goto out;
4295 	}
4296 
4297 	pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
4298 		 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
4299 	error = kobject_move(&dev->kobj, new_parent_kobj);
4300 	if (error) {
4301 		cleanup_glue_dir(dev, new_parent_kobj);
4302 		put_device(new_parent);
4303 		goto out;
4304 	}
4305 	old_parent = dev->parent;
4306 	dev->parent = new_parent;
4307 	if (old_parent)
4308 		klist_remove(&dev->p->knode_parent);
4309 	if (new_parent) {
4310 		klist_add_tail(&dev->p->knode_parent,
4311 			       &new_parent->p->klist_children);
4312 		set_dev_node(dev, dev_to_node(new_parent));
4313 	}
4314 
4315 	if (dev->class) {
4316 		error = device_move_class_links(dev, old_parent, new_parent);
4317 		if (error) {
4318 			/* We ignore errors on cleanup since we're hosed anyway... */
4319 			device_move_class_links(dev, new_parent, old_parent);
4320 			if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
4321 				if (new_parent)
4322 					klist_remove(&dev->p->knode_parent);
4323 				dev->parent = old_parent;
4324 				if (old_parent) {
4325 					klist_add_tail(&dev->p->knode_parent,
4326 						       &old_parent->p->klist_children);
4327 					set_dev_node(dev, dev_to_node(old_parent));
4328 				}
4329 			}
4330 			cleanup_glue_dir(dev, new_parent_kobj);
4331 			put_device(new_parent);
4332 			goto out;
4333 		}
4334 	}
4335 	switch (dpm_order) {
4336 	case DPM_ORDER_NONE:
4337 		break;
4338 	case DPM_ORDER_DEV_AFTER_PARENT:
4339 		device_pm_move_after(dev, new_parent);
4340 		devices_kset_move_after(dev, new_parent);
4341 		break;
4342 	case DPM_ORDER_PARENT_BEFORE_DEV:
4343 		device_pm_move_before(new_parent, dev);
4344 		devices_kset_move_before(new_parent, dev);
4345 		break;
4346 	case DPM_ORDER_DEV_LAST:
4347 		device_pm_move_last(dev);
4348 		devices_kset_move_last(dev);
4349 		break;
4350 	}
4351 
4352 	put_device(old_parent);
4353 out:
4354 	device_pm_unlock();
4355 	put_device(dev);
4356 	return error;
4357 }
4358 EXPORT_SYMBOL_GPL(device_move);
4359 
4360 static int device_attrs_change_owner(struct device *dev, kuid_t kuid,
4361 				     kgid_t kgid)
4362 {
4363 	struct kobject *kobj = &dev->kobj;
4364 	struct class *class = dev->class;
4365 	const struct device_type *type = dev->type;
4366 	int error;
4367 
4368 	if (class) {
4369 		/*
4370 		 * Change the device groups of the device class for @dev to
4371 		 * @kuid/@kgid.
4372 		 */
4373 		error = sysfs_groups_change_owner(kobj, class->dev_groups, kuid,
4374 						  kgid);
4375 		if (error)
4376 			return error;
4377 	}
4378 
4379 	if (type) {
4380 		/*
4381 		 * Change the device groups of the device type for @dev to
4382 		 * @kuid/@kgid.
4383 		 */
4384 		error = sysfs_groups_change_owner(kobj, type->groups, kuid,
4385 						  kgid);
4386 		if (error)
4387 			return error;
4388 	}
4389 
4390 	/* Change the device groups of @dev to @kuid/@kgid. */
4391 	error = sysfs_groups_change_owner(kobj, dev->groups, kuid, kgid);
4392 	if (error)
4393 		return error;
4394 
4395 	if (device_supports_offline(dev) && !dev->offline_disabled) {
4396 		/* Change online device attributes of @dev to @kuid/@kgid. */
4397 		error = sysfs_file_change_owner(kobj, dev_attr_online.attr.name,
4398 						kuid, kgid);
4399 		if (error)
4400 			return error;
4401 	}
4402 
4403 	return 0;
4404 }
4405 
4406 /**
4407  * device_change_owner - change the owner of an existing device.
4408  * @dev: device.
4409  * @kuid: new owner's kuid
4410  * @kgid: new owner's kgid
4411  *
4412  * This changes the owner of @dev and its corresponding sysfs entries to
4413  * @kuid/@kgid. This function closely mirrors how @dev was added via driver
4414  * core.
4415  *
4416  * Returns 0 on success or error code on failure.
4417  */
4418 int device_change_owner(struct device *dev, kuid_t kuid, kgid_t kgid)
4419 {
4420 	int error;
4421 	struct kobject *kobj = &dev->kobj;
4422 
4423 	dev = get_device(dev);
4424 	if (!dev)
4425 		return -EINVAL;
4426 
4427 	/*
4428 	 * Change the kobject and the default attributes and groups of the
4429 	 * ktype associated with it to @kuid/@kgid.
4430 	 */
4431 	error = sysfs_change_owner(kobj, kuid, kgid);
4432 	if (error)
4433 		goto out;
4434 
4435 	/*
4436 	 * Change the uevent file for @dev to the new owner. The uevent file
4437 	 * was created in a separate step when @dev got added and we mirror
4438 	 * that step here.
4439 	 */
4440 	error = sysfs_file_change_owner(kobj, dev_attr_uevent.attr.name, kuid,
4441 					kgid);
4442 	if (error)
4443 		goto out;
4444 
4445 	/*
4446 	 * Change the device groups, the device groups associated with the
4447 	 * device class, and the groups associated with the device type of @dev
4448 	 * to @kuid/@kgid.
4449 	 */
4450 	error = device_attrs_change_owner(dev, kuid, kgid);
4451 	if (error)
4452 		goto out;
4453 
4454 	error = dpm_sysfs_change_owner(dev, kuid, kgid);
4455 	if (error)
4456 		goto out;
4457 
4458 #ifdef CONFIG_BLOCK
4459 	if (sysfs_deprecated && dev->class == &block_class)
4460 		goto out;
4461 #endif
4462 
4463 	/*
4464 	 * Change the owner of the symlink located in the class directory of
4465 	 * the device class associated with @dev which points to the actual
4466 	 * directory entry for @dev to @kuid/@kgid. This ensures that the
4467 	 * symlink shows the same permissions as its target.
4468 	 */
4469 	error = sysfs_link_change_owner(&dev->class->p->subsys.kobj, &dev->kobj,
4470 					dev_name(dev), kuid, kgid);
4471 	if (error)
4472 		goto out;
4473 
4474 out:
4475 	put_device(dev);
4476 	return error;
4477 }
4478 EXPORT_SYMBOL_GPL(device_change_owner);
4479 
4480 /**
4481  * device_shutdown - call ->shutdown() on each device to shutdown.
4482  */
4483 void device_shutdown(void)
4484 {
4485 	struct device *dev, *parent;
4486 
4487 	wait_for_device_probe();
4488 	device_block_probing();
4489 
4490 	cpufreq_suspend();
4491 
4492 	spin_lock(&devices_kset->list_lock);
4493 	/*
4494 	 * Walk the devices list backward, shutting down each in turn.
4495 	 * Beware that device unplug events may also start pulling
4496 	 * devices offline, even as the system is shutting down.
4497 	 */
4498 	while (!list_empty(&devices_kset->list)) {
4499 		dev = list_entry(devices_kset->list.prev, struct device,
4500 				kobj.entry);
4501 
4502 		/*
4503 		 * hold reference count of device's parent to
4504 		 * prevent it from being freed because parent's
4505 		 * lock is to be held
4506 		 */
4507 		parent = get_device(dev->parent);
4508 		get_device(dev);
4509 		/*
4510 		 * Make sure the device is off the kset list, in the
4511 		 * event that dev->*->shutdown() doesn't remove it.
4512 		 */
4513 		list_del_init(&dev->kobj.entry);
4514 		spin_unlock(&devices_kset->list_lock);
4515 
4516 		/* hold lock to avoid race with probe/release */
4517 		if (parent)
4518 			device_lock(parent);
4519 		device_lock(dev);
4520 
4521 		/* Don't allow any more runtime suspends */
4522 		pm_runtime_get_noresume(dev);
4523 		pm_runtime_barrier(dev);
4524 
4525 		if (dev->class && dev->class->shutdown_pre) {
4526 			if (initcall_debug)
4527 				dev_info(dev, "shutdown_pre\n");
4528 			dev->class->shutdown_pre(dev);
4529 		}
4530 		if (dev->bus && dev->bus->shutdown) {
4531 			if (initcall_debug)
4532 				dev_info(dev, "shutdown\n");
4533 			dev->bus->shutdown(dev);
4534 		} else if (dev->driver && dev->driver->shutdown) {
4535 			if (initcall_debug)
4536 				dev_info(dev, "shutdown\n");
4537 			dev->driver->shutdown(dev);
4538 		}
4539 
4540 		device_unlock(dev);
4541 		if (parent)
4542 			device_unlock(parent);
4543 
4544 		put_device(dev);
4545 		put_device(parent);
4546 
4547 		spin_lock(&devices_kset->list_lock);
4548 	}
4549 	spin_unlock(&devices_kset->list_lock);
4550 }
4551 
4552 /*
4553  * Device logging functions
4554  */
4555 
4556 #ifdef CONFIG_PRINTK
4557 static void
4558 set_dev_info(const struct device *dev, struct dev_printk_info *dev_info)
4559 {
4560 	const char *subsys;
4561 
4562 	memset(dev_info, 0, sizeof(*dev_info));
4563 
4564 	if (dev->class)
4565 		subsys = dev->class->name;
4566 	else if (dev->bus)
4567 		subsys = dev->bus->name;
4568 	else
4569 		return;
4570 
4571 	strscpy(dev_info->subsystem, subsys, sizeof(dev_info->subsystem));
4572 
4573 	/*
4574 	 * Add device identifier DEVICE=:
4575 	 *   b12:8         block dev_t
4576 	 *   c127:3        char dev_t
4577 	 *   n8            netdev ifindex
4578 	 *   +sound:card0  subsystem:devname
4579 	 */
4580 	if (MAJOR(dev->devt)) {
4581 		char c;
4582 
4583 		if (strcmp(subsys, "block") == 0)
4584 			c = 'b';
4585 		else
4586 			c = 'c';
4587 
4588 		snprintf(dev_info->device, sizeof(dev_info->device),
4589 			 "%c%u:%u", c, MAJOR(dev->devt), MINOR(dev->devt));
4590 	} else if (strcmp(subsys, "net") == 0) {
4591 		struct net_device *net = to_net_dev(dev);
4592 
4593 		snprintf(dev_info->device, sizeof(dev_info->device),
4594 			 "n%u", net->ifindex);
4595 	} else {
4596 		snprintf(dev_info->device, sizeof(dev_info->device),
4597 			 "+%s:%s", subsys, dev_name(dev));
4598 	}
4599 }
4600 
4601 int dev_vprintk_emit(int level, const struct device *dev,
4602 		     const char *fmt, va_list args)
4603 {
4604 	struct dev_printk_info dev_info;
4605 
4606 	set_dev_info(dev, &dev_info);
4607 
4608 	return vprintk_emit(0, level, &dev_info, fmt, args);
4609 }
4610 EXPORT_SYMBOL(dev_vprintk_emit);
4611 
4612 int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...)
4613 {
4614 	va_list args;
4615 	int r;
4616 
4617 	va_start(args, fmt);
4618 
4619 	r = dev_vprintk_emit(level, dev, fmt, args);
4620 
4621 	va_end(args);
4622 
4623 	return r;
4624 }
4625 EXPORT_SYMBOL(dev_printk_emit);
4626 
4627 static void __dev_printk(const char *level, const struct device *dev,
4628 			struct va_format *vaf)
4629 {
4630 	if (dev)
4631 		dev_printk_emit(level[1] - '0', dev, "%s %s: %pV",
4632 				dev_driver_string(dev), dev_name(dev), vaf);
4633 	else
4634 		printk("%s(NULL device *): %pV", level, vaf);
4635 }
4636 
4637 void _dev_printk(const char *level, const struct device *dev,
4638 		 const char *fmt, ...)
4639 {
4640 	struct va_format vaf;
4641 	va_list args;
4642 
4643 	va_start(args, fmt);
4644 
4645 	vaf.fmt = fmt;
4646 	vaf.va = &args;
4647 
4648 	__dev_printk(level, dev, &vaf);
4649 
4650 	va_end(args);
4651 }
4652 EXPORT_SYMBOL(_dev_printk);
4653 
4654 #define define_dev_printk_level(func, kern_level)		\
4655 void func(const struct device *dev, const char *fmt, ...)	\
4656 {								\
4657 	struct va_format vaf;					\
4658 	va_list args;						\
4659 								\
4660 	va_start(args, fmt);					\
4661 								\
4662 	vaf.fmt = fmt;						\
4663 	vaf.va = &args;						\
4664 								\
4665 	__dev_printk(kern_level, dev, &vaf);			\
4666 								\
4667 	va_end(args);						\
4668 }								\
4669 EXPORT_SYMBOL(func);
4670 
4671 define_dev_printk_level(_dev_emerg, KERN_EMERG);
4672 define_dev_printk_level(_dev_alert, KERN_ALERT);
4673 define_dev_printk_level(_dev_crit, KERN_CRIT);
4674 define_dev_printk_level(_dev_err, KERN_ERR);
4675 define_dev_printk_level(_dev_warn, KERN_WARNING);
4676 define_dev_printk_level(_dev_notice, KERN_NOTICE);
4677 define_dev_printk_level(_dev_info, KERN_INFO);
4678 
4679 #endif
4680 
4681 /**
4682  * dev_err_probe - probe error check and log helper
4683  * @dev: the pointer to the struct device
4684  * @err: error value to test
4685  * @fmt: printf-style format string
4686  * @...: arguments as specified in the format string
4687  *
4688  * This helper implements common pattern present in probe functions for error
4689  * checking: print debug or error message depending if the error value is
4690  * -EPROBE_DEFER and propagate error upwards.
4691  * In case of -EPROBE_DEFER it sets also defer probe reason, which can be
4692  * checked later by reading devices_deferred debugfs attribute.
4693  * It replaces code sequence::
4694  *
4695  * 	if (err != -EPROBE_DEFER)
4696  * 		dev_err(dev, ...);
4697  * 	else
4698  * 		dev_dbg(dev, ...);
4699  * 	return err;
4700  *
4701  * with::
4702  *
4703  * 	return dev_err_probe(dev, err, ...);
4704  *
4705  * Note that it is deemed acceptable to use this function for error
4706  * prints during probe even if the @err is known to never be -EPROBE_DEFER.
4707  * The benefit compared to a normal dev_err() is the standardized format
4708  * of the error code and the fact that the error code is returned.
4709  *
4710  * Returns @err.
4711  *
4712  */
4713 int dev_err_probe(const struct device *dev, int err, const char *fmt, ...)
4714 {
4715 	struct va_format vaf;
4716 	va_list args;
4717 
4718 	va_start(args, fmt);
4719 	vaf.fmt = fmt;
4720 	vaf.va = &args;
4721 
4722 	if (err != -EPROBE_DEFER) {
4723 		dev_err(dev, "error %pe: %pV", ERR_PTR(err), &vaf);
4724 	} else {
4725 		device_set_deferred_probe_reason(dev, &vaf);
4726 		dev_dbg(dev, "error %pe: %pV", ERR_PTR(err), &vaf);
4727 	}
4728 
4729 	va_end(args);
4730 
4731 	return err;
4732 }
4733 EXPORT_SYMBOL_GPL(dev_err_probe);
4734 
4735 static inline bool fwnode_is_primary(struct fwnode_handle *fwnode)
4736 {
4737 	return fwnode && !IS_ERR(fwnode->secondary);
4738 }
4739 
4740 /**
4741  * set_primary_fwnode - Change the primary firmware node of a given device.
4742  * @dev: Device to handle.
4743  * @fwnode: New primary firmware node of the device.
4744  *
4745  * Set the device's firmware node pointer to @fwnode, but if a secondary
4746  * firmware node of the device is present, preserve it.
4747  *
4748  * Valid fwnode cases are:
4749  *  - primary --> secondary --> -ENODEV
4750  *  - primary --> NULL
4751  *  - secondary --> -ENODEV
4752  *  - NULL
4753  */
4754 void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
4755 {
4756 	struct device *parent = dev->parent;
4757 	struct fwnode_handle *fn = dev->fwnode;
4758 
4759 	if (fwnode) {
4760 		if (fwnode_is_primary(fn))
4761 			fn = fn->secondary;
4762 
4763 		if (fn) {
4764 			WARN_ON(fwnode->secondary);
4765 			fwnode->secondary = fn;
4766 		}
4767 		dev->fwnode = fwnode;
4768 	} else {
4769 		if (fwnode_is_primary(fn)) {
4770 			dev->fwnode = fn->secondary;
4771 			/* Set fn->secondary = NULL, so fn remains the primary fwnode */
4772 			if (!(parent && fn == parent->fwnode))
4773 				fn->secondary = NULL;
4774 		} else {
4775 			dev->fwnode = NULL;
4776 		}
4777 	}
4778 }
4779 EXPORT_SYMBOL_GPL(set_primary_fwnode);
4780 
4781 /**
4782  * set_secondary_fwnode - Change the secondary firmware node of a given device.
4783  * @dev: Device to handle.
4784  * @fwnode: New secondary firmware node of the device.
4785  *
4786  * If a primary firmware node of the device is present, set its secondary
4787  * pointer to @fwnode.  Otherwise, set the device's firmware node pointer to
4788  * @fwnode.
4789  */
4790 void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
4791 {
4792 	if (fwnode)
4793 		fwnode->secondary = ERR_PTR(-ENODEV);
4794 
4795 	if (fwnode_is_primary(dev->fwnode))
4796 		dev->fwnode->secondary = fwnode;
4797 	else
4798 		dev->fwnode = fwnode;
4799 }
4800 EXPORT_SYMBOL_GPL(set_secondary_fwnode);
4801 
4802 /**
4803  * device_set_of_node_from_dev - reuse device-tree node of another device
4804  * @dev: device whose device-tree node is being set
4805  * @dev2: device whose device-tree node is being reused
4806  *
4807  * Takes another reference to the new device-tree node after first dropping
4808  * any reference held to the old node.
4809  */
4810 void device_set_of_node_from_dev(struct device *dev, const struct device *dev2)
4811 {
4812 	of_node_put(dev->of_node);
4813 	dev->of_node = of_node_get(dev2->of_node);
4814 	dev->of_node_reused = true;
4815 }
4816 EXPORT_SYMBOL_GPL(device_set_of_node_from_dev);
4817 
4818 void device_set_node(struct device *dev, struct fwnode_handle *fwnode)
4819 {
4820 	dev->fwnode = fwnode;
4821 	dev->of_node = to_of_node(fwnode);
4822 }
4823 EXPORT_SYMBOL_GPL(device_set_node);
4824 
4825 int device_match_name(struct device *dev, const void *name)
4826 {
4827 	return sysfs_streq(dev_name(dev), name);
4828 }
4829 EXPORT_SYMBOL_GPL(device_match_name);
4830 
4831 int device_match_of_node(struct device *dev, const void *np)
4832 {
4833 	return dev->of_node == np;
4834 }
4835 EXPORT_SYMBOL_GPL(device_match_of_node);
4836 
4837 int device_match_fwnode(struct device *dev, const void *fwnode)
4838 {
4839 	return dev_fwnode(dev) == fwnode;
4840 }
4841 EXPORT_SYMBOL_GPL(device_match_fwnode);
4842 
4843 int device_match_devt(struct device *dev, const void *pdevt)
4844 {
4845 	return dev->devt == *(dev_t *)pdevt;
4846 }
4847 EXPORT_SYMBOL_GPL(device_match_devt);
4848 
4849 int device_match_acpi_dev(struct device *dev, const void *adev)
4850 {
4851 	return ACPI_COMPANION(dev) == adev;
4852 }
4853 EXPORT_SYMBOL(device_match_acpi_dev);
4854 
4855 int device_match_acpi_handle(struct device *dev, const void *handle)
4856 {
4857 	return ACPI_HANDLE(dev) == handle;
4858 }
4859 EXPORT_SYMBOL(device_match_acpi_handle);
4860 
4861 int device_match_any(struct device *dev, const void *unused)
4862 {
4863 	return 1;
4864 }
4865 EXPORT_SYMBOL_GPL(device_match_any);
4866