blob: f6f620aa94086d625c64cee907ba17a55c5e9760 [file] [log] [blame]
Greg Kroah-Hartman989d42e2017-11-07 17:30:07 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -07007 * Copyright (c) 2006 Greg Kroah-Hartman <gregkh@suse.de>
8 * Copyright (c) 2006 Novell, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Heikki Krogerus7847a142018-11-09 17:21:35 +030011#include <linux/acpi.h>
Rafael J. Wysocki65650b32019-10-09 01:29:10 +020012#include <linux/cpufreq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/device.h>
14#include <linux/err.h>
Rafael J. Wysocki97badf82015-04-03 23:23:37 +020015#include <linux/fwnode.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/slab.h>
19#include <linux/string.h>
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -070020#include <linux/kdev_t.h>
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +100021#include <linux/notifier.h>
Grant Likely07d57a32012-02-01 11:22:22 -070022#include <linux/of.h>
23#include <linux/of_device.h>
Kay Sieversda231fd2007-11-21 17:29:15 +010024#include <linux/genhd.h>
Dave Youngf75b1c62008-05-28 09:28:39 -070025#include <linux/mutex.h>
Peter Chenaf8db152011-11-15 21:52:29 +010026#include <linux/pm_runtime.h>
Kay Sieversc4e00da2012-05-03 02:29:59 +020027#include <linux/netdevice.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010028#include <linux/sched/signal.h>
Greg Kroah-Hartman63967682013-08-27 10:24:15 -070029#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include "base.h"
32#include "power/power.h"
33
Andi Kleene52eec12010-09-08 16:54:17 +020034#ifdef CONFIG_SYSFS_DEPRECATED
35#ifdef CONFIG_SYSFS_DEPRECATED_V2
36long sysfs_deprecated = 1;
37#else
38long sysfs_deprecated = 0;
39#endif
Hanjun Guo3454bf92013-08-17 20:42:24 +080040static int __init sysfs_deprecated_setup(char *arg)
Andi Kleene52eec12010-09-08 16:54:17 +020041{
Jingoo Han34da5e62013-07-26 13:10:22 +090042 return kstrtol(arg, 10, &sysfs_deprecated);
Andi Kleene52eec12010-09-08 16:54:17 +020043}
44early_param("sysfs.deprecated", sysfs_deprecated_setup);
45#endif
46
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +010047/* Device links support. */
Saravana Kannane2ae9bc2019-09-04 14:11:21 -070048static LIST_HEAD(wait_for_suppliers);
49static DEFINE_MUTEX(wfs_lock);
Saravana Kannanfc5a2512019-09-04 14:11:23 -070050static LIST_HEAD(deferred_sync);
51static unsigned int defer_sync_state_count = 1;
Saravana Kannan716a7a22020-05-14 22:34:59 -070052static unsigned int defer_fw_devlink_count;
Saravana Kannan2451e742020-07-01 12:42:59 -070053static LIST_HEAD(deferred_fw_devlink);
Saravana Kannan716a7a22020-05-14 22:34:59 -070054static DEFINE_MUTEX(defer_fw_devlink_lock);
55static bool fw_devlink_is_permissive(void);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +010056
57#ifdef CONFIG_SRCU
58static DEFINE_MUTEX(device_links_lock);
59DEFINE_STATIC_SRCU(device_links_srcu);
60
61static inline void device_links_write_lock(void)
62{
63 mutex_lock(&device_links_lock);
64}
65
66static inline void device_links_write_unlock(void)
67{
68 mutex_unlock(&device_links_lock);
69}
70
Jules Irenge68464d72020-02-14 20:47:29 +000071int device_links_read_lock(void) __acquires(&device_links_srcu)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +010072{
73 return srcu_read_lock(&device_links_srcu);
74}
75
Jules Irengeab7789c2020-02-14 20:47:30 +000076void device_links_read_unlock(int idx) __releases(&device_links_srcu)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +010077{
78 srcu_read_unlock(&device_links_srcu, idx);
79}
Joel Fernandes (Google)c2fa1e12019-07-16 18:12:25 -040080
81int device_links_read_lock_held(void)
82{
83 return srcu_read_lock_held(&device_links_srcu);
84}
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +010085#else /* !CONFIG_SRCU */
86static DECLARE_RWSEM(device_links_lock);
87
88static inline void device_links_write_lock(void)
89{
90 down_write(&device_links_lock);
91}
92
93static inline void device_links_write_unlock(void)
94{
95 up_write(&device_links_lock);
96}
97
98int device_links_read_lock(void)
99{
100 down_read(&device_links_lock);
101 return 0;
102}
103
104void device_links_read_unlock(int not_used)
105{
106 up_read(&device_links_lock);
107}
Joel Fernandes (Google)c2fa1e12019-07-16 18:12:25 -0400108
109#ifdef CONFIG_DEBUG_LOCK_ALLOC
110int device_links_read_lock_held(void)
111{
112 return lockdep_is_held(&device_links_lock);
113}
114#endif
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100115#endif /* !CONFIG_SRCU */
116
117/**
118 * device_is_dependent - Check if one device depends on another one
119 * @dev: Device to check dependencies for.
120 * @target: Device to check against.
121 *
122 * Check if @target depends on @dev or any device dependent on it (its child or
123 * its consumer etc). Return 1 if that is the case or 0 otherwise.
124 */
Saravana Kannan7d34ca32020-06-09 18:19:33 -0700125int device_is_dependent(struct device *dev, void *target)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100126{
127 struct device_link *link;
128 int ret;
129
Benjamin Gaignarde16f4f32018-07-16 13:37:44 +0200130 if (dev == target)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100131 return 1;
132
133 ret = device_for_each_child(dev, target, device_is_dependent);
134 if (ret)
135 return ret;
136
137 list_for_each_entry(link, &dev->links.consumers, s_node) {
Saravana Kannan05ef9832019-10-28 15:00:22 -0700138 if (link->flags == (DL_FLAG_SYNC_STATE_ONLY | DL_FLAG_MANAGED))
139 continue;
140
Benjamin Gaignarde16f4f32018-07-16 13:37:44 +0200141 if (link->consumer == target)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100142 return 1;
143
144 ret = device_is_dependent(link->consumer, target);
145 if (ret)
146 break;
147 }
148 return ret;
149}
150
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200151static void device_link_init_status(struct device_link *link,
152 struct device *consumer,
153 struct device *supplier)
154{
155 switch (supplier->links.status) {
156 case DL_DEV_PROBING:
157 switch (consumer->links.status) {
158 case DL_DEV_PROBING:
159 /*
160 * A consumer driver can create a link to a supplier
161 * that has not completed its probing yet as long as it
162 * knows that the supplier is already functional (for
163 * example, it has just acquired some resources from the
164 * supplier).
165 */
166 link->status = DL_STATE_CONSUMER_PROBE;
167 break;
168 default:
169 link->status = DL_STATE_DORMANT;
170 break;
171 }
172 break;
173 case DL_DEV_DRIVER_BOUND:
174 switch (consumer->links.status) {
175 case DL_DEV_PROBING:
176 link->status = DL_STATE_CONSUMER_PROBE;
177 break;
178 case DL_DEV_DRIVER_BOUND:
179 link->status = DL_STATE_ACTIVE;
180 break;
181 default:
182 link->status = DL_STATE_AVAILABLE;
183 break;
184 }
185 break;
186 case DL_DEV_UNBINDING:
187 link->status = DL_STATE_SUPPLIER_UNBIND;
188 break;
189 default:
190 link->status = DL_STATE_DORMANT;
191 break;
192 }
193}
194
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100195static int device_reorder_to_tail(struct device *dev, void *not_used)
196{
197 struct device_link *link;
198
199 /*
200 * Devices that have not been registered yet will be put to the ends
201 * of the lists during the registration, so skip them here.
202 */
203 if (device_is_registered(dev))
204 devices_kset_move_last(dev);
205
206 if (device_pm_initialized(dev))
207 device_pm_move_last(dev);
208
209 device_for_each_child(dev, NULL, device_reorder_to_tail);
Saravana Kannan05ef9832019-10-28 15:00:22 -0700210 list_for_each_entry(link, &dev->links.consumers, s_node) {
211 if (link->flags == (DL_FLAG_SYNC_STATE_ONLY | DL_FLAG_MANAGED))
212 continue;
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100213 device_reorder_to_tail(link->consumer, NULL);
Saravana Kannan05ef9832019-10-28 15:00:22 -0700214 }
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100215
216 return 0;
217}
218
219/**
Feng Kan494fd7b2018-04-10 16:57:06 -0700220 * device_pm_move_to_tail - Move set of devices to the end of device lists
221 * @dev: Device to move
222 *
223 * This is a device_reorder_to_tail() wrapper taking the requisite locks.
224 *
225 * It moves the @dev along with all of its children and all of its consumers
226 * to the ends of the device_kset and dpm_list, recursively.
227 */
228void device_pm_move_to_tail(struct device *dev)
229{
230 int idx;
231
232 idx = device_links_read_lock();
233 device_pm_lock();
234 device_reorder_to_tail(dev, NULL);
235 device_pm_unlock();
236 device_links_read_unlock(idx);
237}
238
Saravana Kannan287905e2020-05-21 12:17:58 -0700239#define to_devlink(dev) container_of((dev), struct device_link, link_dev)
240
241static ssize_t status_show(struct device *dev,
242 struct device_attribute *attr, char *buf)
243{
244 char *status;
245
246 switch (to_devlink(dev)->status) {
247 case DL_STATE_NONE:
248 status = "not tracked"; break;
249 case DL_STATE_DORMANT:
250 status = "dormant"; break;
251 case DL_STATE_AVAILABLE:
252 status = "available"; break;
253 case DL_STATE_CONSUMER_PROBE:
254 status = "consumer probing"; break;
255 case DL_STATE_ACTIVE:
256 status = "active"; break;
257 case DL_STATE_SUPPLIER_UNBIND:
258 status = "supplier unbinding"; break;
259 default:
260 status = "unknown"; break;
261 }
262 return sprintf(buf, "%s\n", status);
263}
264static DEVICE_ATTR_RO(status);
265
266static ssize_t auto_remove_on_show(struct device *dev,
267 struct device_attribute *attr, char *buf)
268{
269 struct device_link *link = to_devlink(dev);
270 char *str;
271
272 if (link->flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
273 str = "supplier unbind";
274 else if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER)
275 str = "consumer unbind";
276 else
277 str = "never";
278
279 return sprintf(buf, "%s\n", str);
280}
281static DEVICE_ATTR_RO(auto_remove_on);
282
283static ssize_t runtime_pm_show(struct device *dev,
284 struct device_attribute *attr, char *buf)
285{
286 struct device_link *link = to_devlink(dev);
287
288 return sprintf(buf, "%d\n", !!(link->flags & DL_FLAG_PM_RUNTIME));
289}
290static DEVICE_ATTR_RO(runtime_pm);
291
292static ssize_t sync_state_only_show(struct device *dev,
293 struct device_attribute *attr, char *buf)
294{
295 struct device_link *link = to_devlink(dev);
296
297 return sprintf(buf, "%d\n", !!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
298}
299static DEVICE_ATTR_RO(sync_state_only);
300
301static struct attribute *devlink_attrs[] = {
302 &dev_attr_status.attr,
303 &dev_attr_auto_remove_on.attr,
304 &dev_attr_runtime_pm.attr,
305 &dev_attr_sync_state_only.attr,
306 NULL,
307};
308ATTRIBUTE_GROUPS(devlink);
309
Saravana Kannan843e6002020-07-16 14:45:23 -0700310static void device_link_free(struct device_link *link)
311{
312 while (refcount_dec_not_one(&link->rpm_active))
313 pm_runtime_put(link->supplier);
314
315 put_device(link->consumer);
316 put_device(link->supplier);
317 kfree(link);
318}
319
320#ifdef CONFIG_SRCU
321static void __device_link_free_srcu(struct rcu_head *rhead)
322{
323 device_link_free(container_of(rhead, struct device_link, rcu_head));
324}
325
Saravana Kannan287905e2020-05-21 12:17:58 -0700326static void devlink_dev_release(struct device *dev)
327{
Saravana Kannan843e6002020-07-16 14:45:23 -0700328 struct device_link *link = to_devlink(dev);
329
330 call_srcu(&device_links_srcu, &link->rcu_head, __device_link_free_srcu);
Saravana Kannan287905e2020-05-21 12:17:58 -0700331}
Saravana Kannan843e6002020-07-16 14:45:23 -0700332#else
333static void devlink_dev_release(struct device *dev)
334{
335 device_link_free(to_devlink(dev));
336}
337#endif
Saravana Kannan287905e2020-05-21 12:17:58 -0700338
339static struct class devlink_class = {
340 .name = "devlink",
341 .owner = THIS_MODULE,
342 .dev_groups = devlink_groups,
343 .dev_release = devlink_dev_release,
344};
345
346static int devlink_add_symlinks(struct device *dev,
347 struct class_interface *class_intf)
348{
349 int ret;
350 size_t len;
351 struct device_link *link = to_devlink(dev);
352 struct device *sup = link->supplier;
353 struct device *con = link->consumer;
354 char *buf;
355
356 len = max(strlen(dev_name(sup)), strlen(dev_name(con)));
357 len += strlen("supplier:") + 1;
358 buf = kzalloc(len, GFP_KERNEL);
359 if (!buf)
360 return -ENOMEM;
361
362 ret = sysfs_create_link(&link->link_dev.kobj, &sup->kobj, "supplier");
363 if (ret)
364 goto out;
365
366 ret = sysfs_create_link(&link->link_dev.kobj, &con->kobj, "consumer");
367 if (ret)
368 goto err_con;
369
370 snprintf(buf, len, "consumer:%s", dev_name(con));
371 ret = sysfs_create_link(&sup->kobj, &link->link_dev.kobj, buf);
372 if (ret)
373 goto err_con_dev;
374
375 snprintf(buf, len, "supplier:%s", dev_name(sup));
376 ret = sysfs_create_link(&con->kobj, &link->link_dev.kobj, buf);
377 if (ret)
378 goto err_sup_dev;
379
380 goto out;
381
382err_sup_dev:
383 snprintf(buf, len, "consumer:%s", dev_name(con));
384 sysfs_remove_link(&sup->kobj, buf);
385err_con_dev:
386 sysfs_remove_link(&link->link_dev.kobj, "consumer");
387err_con:
388 sysfs_remove_link(&link->link_dev.kobj, "supplier");
389out:
390 kfree(buf);
391 return ret;
392}
393
394static void devlink_remove_symlinks(struct device *dev,
395 struct class_interface *class_intf)
396{
397 struct device_link *link = to_devlink(dev);
398 size_t len;
399 struct device *sup = link->supplier;
400 struct device *con = link->consumer;
401 char *buf;
402
403 sysfs_remove_link(&link->link_dev.kobj, "consumer");
404 sysfs_remove_link(&link->link_dev.kobj, "supplier");
405
406 len = max(strlen(dev_name(sup)), strlen(dev_name(con)));
407 len += strlen("supplier:") + 1;
408 buf = kzalloc(len, GFP_KERNEL);
409 if (!buf) {
410 WARN(1, "Unable to properly free device link symlinks!\n");
411 return;
412 }
413
414 snprintf(buf, len, "supplier:%s", dev_name(sup));
415 sysfs_remove_link(&con->kobj, buf);
416 snprintf(buf, len, "consumer:%s", dev_name(con));
417 sysfs_remove_link(&sup->kobj, buf);
418 kfree(buf);
419}
420
421static struct class_interface devlink_class_intf = {
422 .class = &devlink_class,
423 .add_dev = devlink_add_symlinks,
424 .remove_dev = devlink_remove_symlinks,
425};
426
427static int __init devlink_class_init(void)
428{
429 int ret;
430
431 ret = class_register(&devlink_class);
432 if (ret)
433 return ret;
434
435 ret = class_interface_register(&devlink_class_intf);
436 if (ret)
437 class_unregister(&devlink_class);
438
439 return ret;
440}
441postcore_initcall(devlink_class_init);
442
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200443#define DL_MANAGED_LINK_FLAGS (DL_FLAG_AUTOREMOVE_CONSUMER | \
444 DL_FLAG_AUTOREMOVE_SUPPLIER | \
Saravana Kannan05ef9832019-10-28 15:00:22 -0700445 DL_FLAG_AUTOPROBE_CONSUMER | \
446 DL_FLAG_SYNC_STATE_ONLY)
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200447
Rafael J. Wysockifb583c82019-07-30 11:28:57 +0200448#define DL_ADD_VALID_FLAGS (DL_MANAGED_LINK_FLAGS | DL_FLAG_STATELESS | \
449 DL_FLAG_PM_RUNTIME | DL_FLAG_RPM_ACTIVE)
450
Feng Kan494fd7b2018-04-10 16:57:06 -0700451/**
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100452 * device_link_add - Create a link between two devices.
453 * @consumer: Consumer end of the link.
454 * @supplier: Supplier end of the link.
455 * @flags: Link flags.
456 *
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100457 * The caller is responsible for the proper synchronization of the link creation
458 * with runtime PM. First, setting the DL_FLAG_PM_RUNTIME flag will cause the
459 * runtime PM framework to take the link into account. Second, if the
460 * DL_FLAG_RPM_ACTIVE flag is set in addition to it, the supplier devices will
461 * be forced into the active metastate and reference-counted upon the creation
462 * of the link. If DL_FLAG_PM_RUNTIME is not set, DL_FLAG_RPM_ACTIVE will be
463 * ignored.
464 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200465 * If DL_FLAG_STATELESS is set in @flags, the caller of this function is
466 * expected to release the link returned by it directly with the help of either
467 * device_link_del() or device_link_remove().
Rafael J. Wysocki72175d42019-02-01 01:58:33 +0100468 *
469 * If that flag is not set, however, the caller of this function is handing the
470 * management of the link over to the driver core entirely and its return value
471 * can only be used to check whether or not the link is present. In that case,
472 * the DL_FLAG_AUTOREMOVE_CONSUMER and DL_FLAG_AUTOREMOVE_SUPPLIER device link
473 * flags can be used to indicate to the driver core when the link can be safely
474 * deleted. Namely, setting one of them in @flags indicates to the driver core
475 * that the link is not going to be used (by the given caller of this function)
476 * after unbinding the consumer or supplier driver, respectively, from its
477 * device, so the link can be deleted at that point. If none of them is set,
478 * the link will be maintained until one of the devices pointed to by it (either
479 * the consumer or the supplier) is unregistered.
Rafael J. Wysockic8d50982019-02-01 01:45:55 +0100480 *
Rafael J. Wysockie7dd4012019-02-01 01:59:42 +0100481 * Also, if DL_FLAG_STATELESS, DL_FLAG_AUTOREMOVE_CONSUMER and
482 * DL_FLAG_AUTOREMOVE_SUPPLIER are not set in @flags (that is, a persistent
483 * managed device link is being added), the DL_FLAG_AUTOPROBE_CONSUMER flag can
484 * be used to request the driver core to automaticall probe for a consmer
485 * driver after successfully binding a driver to the supplier device.
486 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200487 * The combination of DL_FLAG_STATELESS and one of DL_FLAG_AUTOREMOVE_CONSUMER,
488 * DL_FLAG_AUTOREMOVE_SUPPLIER, or DL_FLAG_AUTOPROBE_CONSUMER set in @flags at
489 * the same time is invalid and will cause NULL to be returned upfront.
490 * However, if a device link between the given @consumer and @supplier pair
491 * exists already when this function is called for them, the existing link will
492 * be returned regardless of its current type and status (the link's flags may
493 * be modified then). The caller of this function is then expected to treat
494 * the link as though it has just been created, so (in particular) if
495 * DL_FLAG_STATELESS was passed in @flags, the link needs to be released
496 * explicitly when not needed any more (as stated above).
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100497 *
498 * A side effect of the link creation is re-ordering of dpm_list and the
499 * devices_kset list by moving the consumer device and all devices depending
500 * on it to the ends of these lists (that does not happen to devices that have
501 * not been registered when this function is called).
502 *
503 * The supplier device is required to be registered when this function is called
504 * and NULL will be returned if that is not the case. The consumer device need
Lukas Wunner64df1142016-12-04 13:10:04 +0100505 * not be registered, however.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100506 */
507struct device_link *device_link_add(struct device *consumer,
508 struct device *supplier, u32 flags)
509{
510 struct device_link *link;
511
Rafael J. Wysockifb583c82019-07-30 11:28:57 +0200512 if (!consumer || !supplier || flags & ~DL_ADD_VALID_FLAGS ||
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200513 (flags & DL_FLAG_STATELESS && flags & DL_MANAGED_LINK_FLAGS) ||
Saravana Kannan05ef9832019-10-28 15:00:22 -0700514 (flags & DL_FLAG_SYNC_STATE_ONLY &&
515 flags != DL_FLAG_SYNC_STATE_ONLY) ||
Rafael J. Wysockie7dd4012019-02-01 01:59:42 +0100516 (flags & DL_FLAG_AUTOPROBE_CONSUMER &&
517 flags & (DL_FLAG_AUTOREMOVE_CONSUMER |
518 DL_FLAG_AUTOREMOVE_SUPPLIER)))
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100519 return NULL;
520
Rafael J. Wysocki5db25c92019-02-01 01:47:53 +0100521 if (flags & DL_FLAG_PM_RUNTIME && flags & DL_FLAG_RPM_ACTIVE) {
522 if (pm_runtime_get_sync(supplier) < 0) {
523 pm_runtime_put_noidle(supplier);
524 return NULL;
525 }
Rafael J. Wysocki5db25c92019-02-01 01:47:53 +0100526 }
527
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200528 if (!(flags & DL_FLAG_STATELESS))
529 flags |= DL_FLAG_MANAGED;
530
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100531 device_links_write_lock();
532 device_pm_lock();
533
534 /*
535 * If the supplier has not been fully registered yet or there is a
Saravana Kannan05ef9832019-10-28 15:00:22 -0700536 * reverse (non-SYNC_STATE_ONLY) dependency between the consumer and
537 * the supplier already in the graph, return NULL. If the link is a
538 * SYNC_STATE_ONLY link, we don't check for reverse dependencies
539 * because it only affects sync_state() callbacks.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100540 */
541 if (!device_pm_initialized(supplier)
Saravana Kannan05ef9832019-10-28 15:00:22 -0700542 || (!(flags & DL_FLAG_SYNC_STATE_ONLY) &&
543 device_is_dependent(consumer, supplier))) {
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100544 link = NULL;
545 goto out;
546 }
547
Rafael J. Wysocki72175d42019-02-01 01:58:33 +0100548 /*
549 * DL_FLAG_AUTOREMOVE_SUPPLIER indicates that the link will be needed
550 * longer than for DL_FLAG_AUTOREMOVE_CONSUMER and setting them both
551 * together doesn't make sense, so prefer DL_FLAG_AUTOREMOVE_SUPPLIER.
552 */
553 if (flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
554 flags &= ~DL_FLAG_AUTOREMOVE_CONSUMER;
555
Rafael J. Wysockif265df52019-02-01 01:46:54 +0100556 list_for_each_entry(link, &supplier->links.consumers, s_node) {
557 if (link->consumer != consumer)
558 continue;
559
Rafael J. Wysockie2f3cd82019-02-01 01:49:14 +0100560 if (flags & DL_FLAG_PM_RUNTIME) {
561 if (!(link->flags & DL_FLAG_PM_RUNTIME)) {
Rafael J. Wysocki4c06c4e2019-02-12 13:08:10 +0100562 pm_runtime_new_link(consumer);
Rafael J. Wysockie2f3cd82019-02-01 01:49:14 +0100563 link->flags |= DL_FLAG_PM_RUNTIME;
564 }
565 if (flags & DL_FLAG_RPM_ACTIVE)
Rafael J. Wysocki36003d42019-02-19 17:53:26 +0100566 refcount_inc(&link->rpm_active);
Rafael J. Wysockie2f3cd82019-02-01 01:49:14 +0100567 }
568
Rafael J. Wysocki72175d42019-02-01 01:58:33 +0100569 if (flags & DL_FLAG_STATELESS) {
570 kref_get(&link->kref);
Saravana Kannan05ef9832019-10-28 15:00:22 -0700571 if (link->flags & DL_FLAG_SYNC_STATE_ONLY &&
Saravana Kannan44e96042020-05-19 21:36:26 -0700572 !(link->flags & DL_FLAG_STATELESS)) {
573 link->flags |= DL_FLAG_STATELESS;
Saravana Kannan05ef9832019-10-28 15:00:22 -0700574 goto reorder;
Saravana Kannan44e96042020-05-19 21:36:26 -0700575 } else {
576 link->flags |= DL_FLAG_STATELESS;
Saravana Kannan05ef9832019-10-28 15:00:22 -0700577 goto out;
Saravana Kannan44e96042020-05-19 21:36:26 -0700578 }
Rafael J. Wysocki72175d42019-02-01 01:58:33 +0100579 }
580
581 /*
582 * If the life time of the link following from the new flags is
583 * longer than indicated by the flags of the existing link,
584 * update the existing link to stay around longer.
585 */
586 if (flags & DL_FLAG_AUTOREMOVE_SUPPLIER) {
587 if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER) {
588 link->flags &= ~DL_FLAG_AUTOREMOVE_CONSUMER;
589 link->flags |= DL_FLAG_AUTOREMOVE_SUPPLIER;
590 }
591 } else if (!(flags & DL_FLAG_AUTOREMOVE_CONSUMER)) {
592 link->flags &= ~(DL_FLAG_AUTOREMOVE_CONSUMER |
593 DL_FLAG_AUTOREMOVE_SUPPLIER);
594 }
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200595 if (!(link->flags & DL_FLAG_MANAGED)) {
596 kref_get(&link->kref);
597 link->flags |= DL_FLAG_MANAGED;
598 device_link_init_status(link, consumer, supplier);
599 }
Saravana Kannan05ef9832019-10-28 15:00:22 -0700600 if (link->flags & DL_FLAG_SYNC_STATE_ONLY &&
601 !(flags & DL_FLAG_SYNC_STATE_ONLY)) {
602 link->flags &= ~DL_FLAG_SYNC_STATE_ONLY;
603 goto reorder;
604 }
605
Rafael J. Wysockif265df52019-02-01 01:46:54 +0100606 goto out;
607 }
608
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100609 link = kzalloc(sizeof(*link), GFP_KERNEL);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100610 if (!link)
611 goto out;
612
Rafael J. Wysockie2f3cd82019-02-01 01:49:14 +0100613 refcount_set(&link->rpm_active, 1);
614
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100615 get_device(supplier);
616 link->supplier = supplier;
617 INIT_LIST_HEAD(&link->s_node);
618 get_device(consumer);
619 link->consumer = consumer;
620 INIT_LIST_HEAD(&link->c_node);
621 link->flags = flags;
Lukas Wunneread18c22018-02-10 19:27:12 +0100622 kref_init(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100623
Saravana Kannan287905e2020-05-21 12:17:58 -0700624 link->link_dev.class = &devlink_class;
625 device_set_pm_not_required(&link->link_dev);
Saravana Kannan90b109d2020-07-24 11:05:22 -0700626 dev_set_name(&link->link_dev, "%s--%s",
Saravana Kannan287905e2020-05-21 12:17:58 -0700627 dev_name(supplier), dev_name(consumer));
628 if (device_register(&link->link_dev)) {
629 put_device(consumer);
630 put_device(supplier);
631 kfree(link);
632 link = NULL;
633 goto out;
634 }
635
636 if (flags & DL_FLAG_PM_RUNTIME) {
637 if (flags & DL_FLAG_RPM_ACTIVE)
638 refcount_inc(&link->rpm_active);
639
640 pm_runtime_new_link(consumer);
641 }
642
Lukas Wunner64df1142016-12-04 13:10:04 +0100643 /* Determine the initial link state. */
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200644 if (flags & DL_FLAG_STATELESS)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100645 link->status = DL_STATE_NONE;
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200646 else
647 device_link_init_status(link, consumer, supplier);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100648
649 /*
Rafael J. Wysocki15cfb092019-02-01 01:50:39 +0100650 * Some callers expect the link creation during consumer driver probe to
651 * resume the supplier even without DL_FLAG_RPM_ACTIVE.
652 */
653 if (link->status == DL_STATE_CONSUMER_PROBE &&
654 flags & DL_FLAG_PM_RUNTIME)
655 pm_runtime_resume(supplier);
656
Saravana Kannan21c27f02020-05-18 23:30:00 -0700657 list_add_tail_rcu(&link->s_node, &supplier->links.consumers);
658 list_add_tail_rcu(&link->c_node, &consumer->links.suppliers);
659
Saravana Kannan05ef9832019-10-28 15:00:22 -0700660 if (flags & DL_FLAG_SYNC_STATE_ONLY) {
661 dev_dbg(consumer,
662 "Linked as a sync state only consumer to %s\n",
663 dev_name(supplier));
664 goto out;
665 }
Saravana Kannan21c27f02020-05-18 23:30:00 -0700666
Saravana Kannan05ef9832019-10-28 15:00:22 -0700667reorder:
Rafael J. Wysocki15cfb092019-02-01 01:50:39 +0100668 /*
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100669 * Move the consumer and all of the devices depending on it to the end
670 * of dpm_list and the devices_kset list.
671 *
672 * It is necessary to hold dpm_list locked throughout all that or else
673 * we may end up suspending with a wrong ordering of it.
674 */
675 device_reorder_to_tail(consumer, NULL);
676
Jerome Brunet8a4b3262018-12-21 17:23:41 +0100677 dev_dbg(consumer, "Linked as a consumer to %s\n", dev_name(supplier));
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100678
Saravana Kannan21c27f02020-05-18 23:30:00 -0700679out:
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100680 device_pm_unlock();
681 device_links_write_unlock();
Rafael J. Wysocki5db25c92019-02-01 01:47:53 +0100682
Rafael J. Wysockie2f3cd82019-02-01 01:49:14 +0100683 if ((flags & DL_FLAG_PM_RUNTIME && flags & DL_FLAG_RPM_ACTIVE) && !link)
Rafael J. Wysocki5db25c92019-02-01 01:47:53 +0100684 pm_runtime_put(supplier);
685
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100686 return link;
687}
688EXPORT_SYMBOL_GPL(device_link_add);
689
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700690/**
691 * device_link_wait_for_supplier - Add device to wait_for_suppliers list
692 * @consumer: Consumer device
693 *
694 * Marks the @consumer device as waiting for suppliers to become available by
695 * adding it to the wait_for_suppliers list. The consumer device will never be
696 * probed until it's removed from the wait_for_suppliers list.
697 *
698 * The caller is responsible for adding the links to the supplier devices once
699 * they are available and removing the @consumer device from the
700 * wait_for_suppliers list once links to all the suppliers have been created.
701 *
702 * This function is NOT meant to be called from the probe function of the
703 * consumer but rather from code that creates/adds the consumer device.
704 */
Saravana Kannanbcbbcfd2019-10-28 15:00:23 -0700705static void device_link_wait_for_supplier(struct device *consumer,
706 bool need_for_probe)
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700707{
708 mutex_lock(&wfs_lock);
709 list_add_tail(&consumer->links.needs_suppliers, &wait_for_suppliers);
Saravana Kannanbcbbcfd2019-10-28 15:00:23 -0700710 consumer->links.need_for_probe = need_for_probe;
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700711 mutex_unlock(&wfs_lock);
712}
713
Saravana Kannanbcbbcfd2019-10-28 15:00:23 -0700714static void device_link_wait_for_mandatory_supplier(struct device *consumer)
715{
716 device_link_wait_for_supplier(consumer, true);
717}
718
719static void device_link_wait_for_optional_supplier(struct device *consumer)
720{
721 device_link_wait_for_supplier(consumer, false);
722}
723
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700724/**
725 * device_link_add_missing_supplier_links - Add links from consumer devices to
726 * supplier devices, leaving any
727 * consumer with inactive suppliers on
728 * the wait_for_suppliers list
729 *
730 * Loops through all consumers waiting on suppliers and tries to add all their
731 * supplier links. If that succeeds, the consumer device is removed from
732 * wait_for_suppliers list. Otherwise, they are left in the wait_for_suppliers
733 * list. Devices left on the wait_for_suppliers list will not be probed.
734 *
735 * The fwnode add_links callback is expected to return 0 if it has found and
736 * added all the supplier links for the consumer device. It should return an
737 * error if it isn't able to do so.
738 *
739 * The caller of device_link_wait_for_supplier() is expected to call this once
740 * it's aware of potential suppliers becoming available.
741 */
742static void device_link_add_missing_supplier_links(void)
743{
744 struct device *dev, *tmp;
745
746 mutex_lock(&wfs_lock);
747 list_for_each_entry_safe(dev, tmp, &wait_for_suppliers,
Saravana Kannan1745d292020-02-21 17:40:34 -0800748 links.needs_suppliers) {
749 int ret = fwnode_call_int_op(dev->fwnode, add_links, dev);
750 if (!ret)
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700751 list_del_init(&dev->links.needs_suppliers);
Saravana Kannan716a7a22020-05-14 22:34:59 -0700752 else if (ret != -ENODEV || fw_devlink_is_permissive())
Saravana Kannan1745d292020-02-21 17:40:34 -0800753 dev->links.need_for_probe = false;
754 }
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700755 mutex_unlock(&wfs_lock);
756}
757
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100758#ifdef CONFIG_SRCU
Lukas Wunneread18c22018-02-10 19:27:12 +0100759static void __device_link_del(struct kref *kref)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100760{
Lukas Wunneread18c22018-02-10 19:27:12 +0100761 struct device_link *link = container_of(kref, struct device_link, kref);
762
Jerome Brunet8a4b3262018-12-21 17:23:41 +0100763 dev_dbg(link->consumer, "Dropping the link to %s\n",
764 dev_name(link->supplier));
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100765
Rafael J. Wysockibaa88092016-10-30 17:32:43 +0100766 if (link->flags & DL_FLAG_PM_RUNTIME)
767 pm_runtime_drop_link(link->consumer);
768
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100769 list_del_rcu(&link->s_node);
770 list_del_rcu(&link->c_node);
Saravana Kannan843e6002020-07-16 14:45:23 -0700771 device_unregister(&link->link_dev);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100772}
773#else /* !CONFIG_SRCU */
Lukas Wunneread18c22018-02-10 19:27:12 +0100774static void __device_link_del(struct kref *kref)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100775{
Lukas Wunneread18c22018-02-10 19:27:12 +0100776 struct device_link *link = container_of(kref, struct device_link, kref);
777
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100778 dev_info(link->consumer, "Dropping the link to %s\n",
779 dev_name(link->supplier));
780
Lukas Wunner433986c2018-02-10 19:13:58 +0100781 if (link->flags & DL_FLAG_PM_RUNTIME)
782 pm_runtime_drop_link(link->consumer);
783
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100784 list_del(&link->s_node);
785 list_del(&link->c_node);
Saravana Kannan843e6002020-07-16 14:45:23 -0700786 device_unregister(&link->link_dev);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100787}
788#endif /* !CONFIG_SRCU */
789
Rafael J. Wysocki72175d42019-02-01 01:58:33 +0100790static void device_link_put_kref(struct device_link *link)
791{
792 if (link->flags & DL_FLAG_STATELESS)
793 kref_put(&link->kref, __device_link_del);
794 else
795 WARN(1, "Unable to drop a managed device link reference\n");
796}
797
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100798/**
Rafael J. Wysocki72175d42019-02-01 01:58:33 +0100799 * device_link_del - Delete a stateless link between two devices.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100800 * @link: Device link to delete.
801 *
802 * The caller must ensure proper synchronization of this function with runtime
Lukas Wunneread18c22018-02-10 19:27:12 +0100803 * PM. If the link was added multiple times, it needs to be deleted as often.
804 * Care is required for hotplugged devices: Their links are purged on removal
805 * and calling device_link_del() is then no longer allowed.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100806 */
807void device_link_del(struct device_link *link)
808{
809 device_links_write_lock();
810 device_pm_lock();
Rafael J. Wysocki72175d42019-02-01 01:58:33 +0100811 device_link_put_kref(link);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100812 device_pm_unlock();
813 device_links_write_unlock();
814}
815EXPORT_SYMBOL_GPL(device_link_del);
816
pascal pailletd8842212018-07-05 14:25:56 +0000817/**
Rafael J. Wysocki72175d42019-02-01 01:58:33 +0100818 * device_link_remove - Delete a stateless link between two devices.
pascal pailletd8842212018-07-05 14:25:56 +0000819 * @consumer: Consumer end of the link.
820 * @supplier: Supplier end of the link.
821 *
822 * The caller must ensure proper synchronization of this function with runtime
823 * PM.
824 */
825void device_link_remove(void *consumer, struct device *supplier)
826{
827 struct device_link *link;
828
829 if (WARN_ON(consumer == supplier))
830 return;
831
832 device_links_write_lock();
833 device_pm_lock();
834
835 list_for_each_entry(link, &supplier->links.consumers, s_node) {
836 if (link->consumer == consumer) {
Rafael J. Wysocki72175d42019-02-01 01:58:33 +0100837 device_link_put_kref(link);
pascal pailletd8842212018-07-05 14:25:56 +0000838 break;
839 }
840 }
841
842 device_pm_unlock();
843 device_links_write_unlock();
844}
845EXPORT_SYMBOL_GPL(device_link_remove);
846
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100847static void device_links_missing_supplier(struct device *dev)
848{
849 struct device_link *link;
850
Saravana Kannan8c3e3152020-05-26 15:09:27 -0700851 list_for_each_entry(link, &dev->links.suppliers, c_node) {
852 if (link->status != DL_STATE_CONSUMER_PROBE)
853 continue;
854
855 if (link->supplier->links.status == DL_DEV_DRIVER_BOUND) {
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100856 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
Saravana Kannan8c3e3152020-05-26 15:09:27 -0700857 } else {
858 WARN_ON(!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
859 WRITE_ONCE(link->status, DL_STATE_DORMANT);
860 }
861 }
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100862}
863
864/**
865 * device_links_check_suppliers - Check presence of supplier drivers.
866 * @dev: Consumer device.
867 *
868 * Check links from this device to any suppliers. Walk the list of the device's
869 * links to suppliers and see if all of them are available. If not, simply
870 * return -EPROBE_DEFER.
871 *
872 * We need to guarantee that the supplier will not go away after the check has
873 * been positive here. It only can go away in __device_release_driver() and
874 * that function checks the device's links to consumers. This means we need to
875 * mark the link as "consumer probe in progress" to make the supplier removal
876 * wait for us to complete (or bad things may happen).
877 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200878 * Links without the DL_FLAG_MANAGED flag set are ignored.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100879 */
880int device_links_check_suppliers(struct device *dev)
881{
882 struct device_link *link;
883 int ret = 0;
884
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700885 /*
886 * Device waiting for supplier to become available is not allowed to
887 * probe.
888 */
889 mutex_lock(&wfs_lock);
Saravana Kannanbcbbcfd2019-10-28 15:00:23 -0700890 if (!list_empty(&dev->links.needs_suppliers) &&
891 dev->links.need_for_probe) {
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700892 mutex_unlock(&wfs_lock);
893 return -EPROBE_DEFER;
894 }
895 mutex_unlock(&wfs_lock);
896
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100897 device_links_write_lock();
898
899 list_for_each_entry(link, &dev->links.suppliers, c_node) {
Saravana Kannan8c3e3152020-05-26 15:09:27 -0700900 if (!(link->flags & DL_FLAG_MANAGED))
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100901 continue;
902
Saravana Kannan8c3e3152020-05-26 15:09:27 -0700903 if (link->status != DL_STATE_AVAILABLE &&
904 !(link->flags & DL_FLAG_SYNC_STATE_ONLY)) {
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100905 device_links_missing_supplier(dev);
906 ret = -EPROBE_DEFER;
907 break;
908 }
909 WRITE_ONCE(link->status, DL_STATE_CONSUMER_PROBE);
910 }
911 dev->links.status = DL_DEV_PROBING;
912
913 device_links_write_unlock();
914 return ret;
915}
916
Saravana Kannan26e77702019-11-14 14:56:45 -0800917/**
918 * __device_links_queue_sync_state - Queue a device for sync_state() callback
919 * @dev: Device to call sync_state() on
920 * @list: List head to queue the @dev on
921 *
922 * Queues a device for a sync_state() callback when the device links write lock
923 * isn't held. This allows the sync_state() execution flow to use device links
924 * APIs. The caller must ensure this function is called with
925 * device_links_write_lock() held.
926 *
927 * This function does a get_device() to make sure the device is not freed while
928 * on this list.
929 *
930 * So the caller must also ensure that device_links_flush_sync_list() is called
931 * as soon as the caller releases device_links_write_lock(). This is necessary
932 * to make sure the sync_state() is called in a timely fashion and the
933 * put_device() is called on this device.
934 */
935static void __device_links_queue_sync_state(struct device *dev,
936 struct list_head *list)
Saravana Kannanfc5a2512019-09-04 14:11:23 -0700937{
938 struct device_link *link;
939
Saravana Kannan77036162020-02-21 00:05:10 -0800940 if (!dev_has_sync_state(dev))
941 return;
Saravana Kannanfc5a2512019-09-04 14:11:23 -0700942 if (dev->state_synced)
943 return;
944
945 list_for_each_entry(link, &dev->links.consumers, s_node) {
946 if (!(link->flags & DL_FLAG_MANAGED))
947 continue;
948 if (link->status != DL_STATE_ACTIVE)
949 return;
950 }
951
Saravana Kannan26e77702019-11-14 14:56:45 -0800952 /*
953 * Set the flag here to avoid adding the same device to a list more
954 * than once. This can happen if new consumers get added to the device
955 * and probed before the list is flushed.
956 */
Saravana Kannanfc5a2512019-09-04 14:11:23 -0700957 dev->state_synced = true;
Saravana Kannan26e77702019-11-14 14:56:45 -0800958
Saravana Kannanec7bd782020-07-01 12:42:58 -0700959 if (WARN_ON(!list_empty(&dev->links.defer_hook)))
Saravana Kannan26e77702019-11-14 14:56:45 -0800960 return;
961
962 get_device(dev);
Saravana Kannanec7bd782020-07-01 12:42:58 -0700963 list_add_tail(&dev->links.defer_hook, list);
Saravana Kannan26e77702019-11-14 14:56:45 -0800964}
965
966/**
967 * device_links_flush_sync_list - Call sync_state() on a list of devices
968 * @list: List of devices to call sync_state() on
Saravana Kannan21eb93f2020-02-21 00:05:08 -0800969 * @dont_lock_dev: Device for which lock is already held by the caller
Saravana Kannan26e77702019-11-14 14:56:45 -0800970 *
971 * Calls sync_state() on all the devices that have been queued for it. This
Saravana Kannan21eb93f2020-02-21 00:05:08 -0800972 * function is used in conjunction with __device_links_queue_sync_state(). The
973 * @dont_lock_dev parameter is useful when this function is called from a
974 * context where a device lock is already held.
Saravana Kannan26e77702019-11-14 14:56:45 -0800975 */
Saravana Kannan21eb93f2020-02-21 00:05:08 -0800976static void device_links_flush_sync_list(struct list_head *list,
977 struct device *dont_lock_dev)
Saravana Kannan26e77702019-11-14 14:56:45 -0800978{
979 struct device *dev, *tmp;
980
Saravana Kannanec7bd782020-07-01 12:42:58 -0700981 list_for_each_entry_safe(dev, tmp, list, links.defer_hook) {
982 list_del_init(&dev->links.defer_hook);
Saravana Kannan26e77702019-11-14 14:56:45 -0800983
Saravana Kannan21eb93f2020-02-21 00:05:08 -0800984 if (dev != dont_lock_dev)
985 device_lock(dev);
Saravana Kannan26e77702019-11-14 14:56:45 -0800986
987 if (dev->bus->sync_state)
988 dev->bus->sync_state(dev);
989 else if (dev->driver && dev->driver->sync_state)
990 dev->driver->sync_state(dev);
991
Saravana Kannan21eb93f2020-02-21 00:05:08 -0800992 if (dev != dont_lock_dev)
993 device_unlock(dev);
Saravana Kannan26e77702019-11-14 14:56:45 -0800994
995 put_device(dev);
996 }
Saravana Kannanfc5a2512019-09-04 14:11:23 -0700997}
998
999void device_links_supplier_sync_state_pause(void)
1000{
1001 device_links_write_lock();
1002 defer_sync_state_count++;
1003 device_links_write_unlock();
1004}
1005
1006void device_links_supplier_sync_state_resume(void)
1007{
1008 struct device *dev, *tmp;
Saravana Kannan26e77702019-11-14 14:56:45 -08001009 LIST_HEAD(sync_list);
Saravana Kannanfc5a2512019-09-04 14:11:23 -07001010
1011 device_links_write_lock();
1012 if (!defer_sync_state_count) {
1013 WARN(true, "Unmatched sync_state pause/resume!");
1014 goto out;
1015 }
1016 defer_sync_state_count--;
1017 if (defer_sync_state_count)
1018 goto out;
1019
Saravana Kannanec7bd782020-07-01 12:42:58 -07001020 list_for_each_entry_safe(dev, tmp, &deferred_sync, links.defer_hook) {
Saravana Kannan26e77702019-11-14 14:56:45 -08001021 /*
1022 * Delete from deferred_sync list before queuing it to
Saravana Kannanec7bd782020-07-01 12:42:58 -07001023 * sync_list because defer_hook is used for both lists.
Saravana Kannan26e77702019-11-14 14:56:45 -08001024 */
Saravana Kannanec7bd782020-07-01 12:42:58 -07001025 list_del_init(&dev->links.defer_hook);
Saravana Kannan26e77702019-11-14 14:56:45 -08001026 __device_links_queue_sync_state(dev, &sync_list);
Saravana Kannanfc5a2512019-09-04 14:11:23 -07001027 }
1028out:
1029 device_links_write_unlock();
Saravana Kannan26e77702019-11-14 14:56:45 -08001030
Saravana Kannan21eb93f2020-02-21 00:05:08 -08001031 device_links_flush_sync_list(&sync_list, NULL);
Saravana Kannanfc5a2512019-09-04 14:11:23 -07001032}
1033
1034static int sync_state_resume_initcall(void)
1035{
1036 device_links_supplier_sync_state_resume();
1037 return 0;
1038}
1039late_initcall(sync_state_resume_initcall);
1040
1041static void __device_links_supplier_defer_sync(struct device *sup)
1042{
Saravana Kannanec7bd782020-07-01 12:42:58 -07001043 if (list_empty(&sup->links.defer_hook) && dev_has_sync_state(sup))
1044 list_add_tail(&sup->links.defer_hook, &deferred_sync);
Saravana Kannanfc5a2512019-09-04 14:11:23 -07001045}
1046
Saravana Kannan21c27f02020-05-18 23:30:00 -07001047static void device_link_drop_managed(struct device_link *link)
1048{
1049 link->flags &= ~DL_FLAG_MANAGED;
1050 WRITE_ONCE(link->status, DL_STATE_NONE);
1051 kref_put(&link->kref, __device_link_del);
1052}
1053
Saravana Kannanda6d6472020-05-21 12:18:00 -07001054static ssize_t waiting_for_supplier_show(struct device *dev,
1055 struct device_attribute *attr,
1056 char *buf)
1057{
1058 bool val;
1059
1060 device_lock(dev);
1061 mutex_lock(&wfs_lock);
1062 val = !list_empty(&dev->links.needs_suppliers)
1063 && dev->links.need_for_probe;
1064 mutex_unlock(&wfs_lock);
1065 device_unlock(dev);
1066 return sprintf(buf, "%u\n", val);
1067}
1068static DEVICE_ATTR_RO(waiting_for_supplier);
1069
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001070/**
1071 * device_links_driver_bound - Update device links after probing its driver.
1072 * @dev: Device to update the links for.
1073 *
1074 * The probe has been successful, so update links from this device to any
1075 * consumers by changing their status to "available".
1076 *
1077 * Also change the status of @dev's links to suppliers to "active".
1078 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001079 * Links without the DL_FLAG_MANAGED flag set are ignored.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001080 */
1081void device_links_driver_bound(struct device *dev)
1082{
Saravana Kannan21c27f02020-05-18 23:30:00 -07001083 struct device_link *link, *ln;
Saravana Kannan26e77702019-11-14 14:56:45 -08001084 LIST_HEAD(sync_list);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001085
Saravana Kannanbcbbcfd2019-10-28 15:00:23 -07001086 /*
1087 * If a device probes successfully, it's expected to have created all
1088 * the device links it needs to or make new device links as it needs
1089 * them. So, it no longer needs to wait on any suppliers.
1090 */
1091 mutex_lock(&wfs_lock);
1092 list_del_init(&dev->links.needs_suppliers);
1093 mutex_unlock(&wfs_lock);
Saravana Kannanda6d6472020-05-21 12:18:00 -07001094 device_remove_file(dev, &dev_attr_waiting_for_supplier);
Saravana Kannanbcbbcfd2019-10-28 15:00:23 -07001095
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001096 device_links_write_lock();
1097
1098 list_for_each_entry(link, &dev->links.consumers, s_node) {
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001099 if (!(link->flags & DL_FLAG_MANAGED))
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001100 continue;
1101
Rafael J. Wysocki15cfb092019-02-01 01:50:39 +01001102 /*
1103 * Links created during consumer probe may be in the "consumer
1104 * probe" state to start with if the supplier is still probing
1105 * when they are created and they may become "active" if the
1106 * consumer probe returns first. Skip them here.
1107 */
1108 if (link->status == DL_STATE_CONSUMER_PROBE ||
1109 link->status == DL_STATE_ACTIVE)
1110 continue;
1111
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001112 WARN_ON(link->status != DL_STATE_DORMANT);
1113 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
Rafael J. Wysockie7dd4012019-02-01 01:59:42 +01001114
1115 if (link->flags & DL_FLAG_AUTOPROBE_CONSUMER)
1116 driver_deferred_probe_add(link->consumer);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001117 }
1118
Saravana Kannan21eb93f2020-02-21 00:05:08 -08001119 if (defer_sync_state_count)
1120 __device_links_supplier_defer_sync(dev);
1121 else
1122 __device_links_queue_sync_state(dev, &sync_list);
1123
Saravana Kannan21c27f02020-05-18 23:30:00 -07001124 list_for_each_entry_safe(link, ln, &dev->links.suppliers, c_node) {
1125 struct device *supplier;
1126
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001127 if (!(link->flags & DL_FLAG_MANAGED))
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001128 continue;
1129
Saravana Kannan21c27f02020-05-18 23:30:00 -07001130 supplier = link->supplier;
1131 if (link->flags & DL_FLAG_SYNC_STATE_ONLY) {
1132 /*
1133 * When DL_FLAG_SYNC_STATE_ONLY is set, it means no
1134 * other DL_MANAGED_LINK_FLAGS have been set. So, it's
1135 * save to drop the managed link completely.
1136 */
1137 device_link_drop_managed(link);
1138 } else {
1139 WARN_ON(link->status != DL_STATE_CONSUMER_PROBE);
1140 WRITE_ONCE(link->status, DL_STATE_ACTIVE);
1141 }
Saravana Kannanfc5a2512019-09-04 14:11:23 -07001142
Saravana Kannan21c27f02020-05-18 23:30:00 -07001143 /*
1144 * This needs to be done even for the deleted
1145 * DL_FLAG_SYNC_STATE_ONLY device link in case it was the last
1146 * device link that was preventing the supplier from getting a
1147 * sync_state() call.
1148 */
Saravana Kannanfc5a2512019-09-04 14:11:23 -07001149 if (defer_sync_state_count)
Saravana Kannan21c27f02020-05-18 23:30:00 -07001150 __device_links_supplier_defer_sync(supplier);
Saravana Kannanfc5a2512019-09-04 14:11:23 -07001151 else
Saravana Kannan21c27f02020-05-18 23:30:00 -07001152 __device_links_queue_sync_state(supplier, &sync_list);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001153 }
1154
1155 dev->links.status = DL_DEV_DRIVER_BOUND;
1156
1157 device_links_write_unlock();
Saravana Kannan26e77702019-11-14 14:56:45 -08001158
Saravana Kannan21eb93f2020-02-21 00:05:08 -08001159 device_links_flush_sync_list(&sync_list, dev);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001160}
1161
1162/**
1163 * __device_links_no_driver - Update links of a device without a driver.
1164 * @dev: Device without a drvier.
1165 *
1166 * Delete all non-persistent links from this device to any suppliers.
1167 *
1168 * Persistent links stay around, but their status is changed to "available",
1169 * unless they already are in the "supplier unbind in progress" state in which
1170 * case they need not be updated.
1171 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001172 * Links without the DL_FLAG_MANAGED flag set are ignored.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001173 */
1174static void __device_links_no_driver(struct device *dev)
1175{
1176 struct device_link *link, *ln;
1177
1178 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001179 if (!(link->flags & DL_FLAG_MANAGED))
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001180 continue;
1181
Saravana Kannan8c3e3152020-05-26 15:09:27 -07001182 if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER) {
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001183 device_link_drop_managed(link);
Saravana Kannan8c3e3152020-05-26 15:09:27 -07001184 continue;
1185 }
1186
1187 if (link->status != DL_STATE_CONSUMER_PROBE &&
1188 link->status != DL_STATE_ACTIVE)
1189 continue;
1190
1191 if (link->supplier->links.status == DL_DEV_DRIVER_BOUND) {
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001192 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
Saravana Kannan8c3e3152020-05-26 15:09:27 -07001193 } else {
1194 WARN_ON(!(link->flags & DL_FLAG_SYNC_STATE_ONLY));
1195 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1196 }
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001197 }
1198
1199 dev->links.status = DL_DEV_NO_DRIVER;
1200}
1201
Rafael J. Wysocki15cfb092019-02-01 01:50:39 +01001202/**
1203 * device_links_no_driver - Update links after failing driver probe.
1204 * @dev: Device whose driver has just failed to probe.
1205 *
1206 * Clean up leftover links to consumers for @dev and invoke
1207 * %__device_links_no_driver() to update links to suppliers for it as
1208 * appropriate.
1209 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001210 * Links without the DL_FLAG_MANAGED flag set are ignored.
Rafael J. Wysocki15cfb092019-02-01 01:50:39 +01001211 */
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001212void device_links_no_driver(struct device *dev)
1213{
Rafael J. Wysocki15cfb092019-02-01 01:50:39 +01001214 struct device_link *link;
1215
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001216 device_links_write_lock();
Rafael J. Wysocki15cfb092019-02-01 01:50:39 +01001217
1218 list_for_each_entry(link, &dev->links.consumers, s_node) {
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001219 if (!(link->flags & DL_FLAG_MANAGED))
Rafael J. Wysocki15cfb092019-02-01 01:50:39 +01001220 continue;
1221
1222 /*
1223 * The probe has failed, so if the status of the link is
1224 * "consumer probe" or "active", it must have been added by
1225 * a probing consumer while this device was still probing.
1226 * Change its state to "dormant", as it represents a valid
1227 * relationship, but it is not functionally meaningful.
1228 */
1229 if (link->status == DL_STATE_CONSUMER_PROBE ||
1230 link->status == DL_STATE_ACTIVE)
1231 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1232 }
1233
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001234 __device_links_no_driver(dev);
Rafael J. Wysocki15cfb092019-02-01 01:50:39 +01001235
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001236 device_links_write_unlock();
1237}
1238
1239/**
1240 * device_links_driver_cleanup - Update links after driver removal.
1241 * @dev: Device whose driver has just gone away.
1242 *
1243 * Update links to consumers for @dev by changing their status to "dormant" and
1244 * invoke %__device_links_no_driver() to update links to suppliers for it as
1245 * appropriate.
1246 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001247 * Links without the DL_FLAG_MANAGED flag set are ignored.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001248 */
1249void device_links_driver_cleanup(struct device *dev)
1250{
Rafael J. Wysockic8d50982019-02-01 01:45:55 +01001251 struct device_link *link, *ln;
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001252
1253 device_links_write_lock();
1254
Rafael J. Wysockic8d50982019-02-01 01:45:55 +01001255 list_for_each_entry_safe(link, ln, &dev->links.consumers, s_node) {
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001256 if (!(link->flags & DL_FLAG_MANAGED))
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001257 continue;
1258
Vivek Gautame88728f2018-06-27 18:20:55 +05301259 WARN_ON(link->flags & DL_FLAG_AUTOREMOVE_CONSUMER);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001260 WARN_ON(link->status != DL_STATE_SUPPLIER_UNBIND);
Vivek Gautam1689cac2018-06-27 18:20:56 +05301261
1262 /*
1263 * autoremove the links between this @dev and its consumer
1264 * devices that are not active, i.e. where the link state
1265 * has moved to DL_STATE_SUPPLIER_UNBIND.
1266 */
1267 if (link->status == DL_STATE_SUPPLIER_UNBIND &&
1268 link->flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001269 device_link_drop_managed(link);
Vivek Gautam1689cac2018-06-27 18:20:56 +05301270
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001271 WRITE_ONCE(link->status, DL_STATE_DORMANT);
1272 }
1273
Saravana Kannanec7bd782020-07-01 12:42:58 -07001274 list_del_init(&dev->links.defer_hook);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001275 __device_links_no_driver(dev);
1276
1277 device_links_write_unlock();
1278}
1279
1280/**
1281 * device_links_busy - Check if there are any busy links to consumers.
1282 * @dev: Device to check.
1283 *
1284 * Check each consumer of the device and return 'true' if its link's status
1285 * is one of "consumer probe" or "active" (meaning that the given consumer is
1286 * probing right now or its driver is present). Otherwise, change the link
1287 * state to "supplier unbind" to prevent the consumer from being probed
1288 * successfully going forward.
1289 *
1290 * Return 'false' if there are no probing or active consumers.
1291 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001292 * Links without the DL_FLAG_MANAGED flag set are ignored.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001293 */
1294bool device_links_busy(struct device *dev)
1295{
1296 struct device_link *link;
1297 bool ret = false;
1298
1299 device_links_write_lock();
1300
1301 list_for_each_entry(link, &dev->links.consumers, s_node) {
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001302 if (!(link->flags & DL_FLAG_MANAGED))
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001303 continue;
1304
1305 if (link->status == DL_STATE_CONSUMER_PROBE
1306 || link->status == DL_STATE_ACTIVE) {
1307 ret = true;
1308 break;
1309 }
1310 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
1311 }
1312
1313 dev->links.status = DL_DEV_UNBINDING;
1314
1315 device_links_write_unlock();
1316 return ret;
1317}
1318
1319/**
1320 * device_links_unbind_consumers - Force unbind consumers of the given device.
1321 * @dev: Device to unbind the consumers of.
1322 *
1323 * Walk the list of links to consumers for @dev and if any of them is in the
1324 * "consumer probe" state, wait for all device probes in progress to complete
1325 * and start over.
1326 *
1327 * If that's not the case, change the status of the link to "supplier unbind"
1328 * and check if the link was in the "active" state. If so, force the consumer
1329 * driver to unbind and start over (the consumer will not re-probe as we have
1330 * changed the state of the link already).
1331 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +02001332 * Links without the DL_FLAG_MANAGED flag set are ignored.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001333 */
1334void device_links_unbind_consumers(struct device *dev)
1335{
1336 struct device_link *link;
1337
1338 start:
1339 device_links_write_lock();
1340
1341 list_for_each_entry(link, &dev->links.consumers, s_node) {
1342 enum device_link_state status;
1343
Saravana Kannan05ef9832019-10-28 15:00:22 -07001344 if (!(link->flags & DL_FLAG_MANAGED) ||
1345 link->flags & DL_FLAG_SYNC_STATE_ONLY)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001346 continue;
1347
1348 status = link->status;
1349 if (status == DL_STATE_CONSUMER_PROBE) {
1350 device_links_write_unlock();
1351
1352 wait_for_device_probe();
1353 goto start;
1354 }
1355 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
1356 if (status == DL_STATE_ACTIVE) {
1357 struct device *consumer = link->consumer;
1358
1359 get_device(consumer);
1360
1361 device_links_write_unlock();
1362
1363 device_release_driver_internal(consumer, NULL,
1364 consumer->parent);
1365 put_device(consumer);
1366 goto start;
1367 }
1368 }
1369
1370 device_links_write_unlock();
1371}
1372
1373/**
1374 * device_links_purge - Delete existing links to other devices.
1375 * @dev: Target device.
1376 */
1377static void device_links_purge(struct device *dev)
1378{
1379 struct device_link *link, *ln;
1380
Saravana Kannan287905e2020-05-21 12:17:58 -07001381 if (dev->class == &devlink_class)
1382 return;
1383
Saravana Kannane2ae9bc2019-09-04 14:11:21 -07001384 mutex_lock(&wfs_lock);
1385 list_del(&dev->links.needs_suppliers);
1386 mutex_unlock(&wfs_lock);
1387
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001388 /*
1389 * Delete all of the remaining links from this device to any other
1390 * devices (either consumers or suppliers).
1391 */
1392 device_links_write_lock();
1393
1394 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
1395 WARN_ON(link->status == DL_STATE_ACTIVE);
Lukas Wunneread18c22018-02-10 19:27:12 +01001396 __device_link_del(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001397 }
1398
1399 list_for_each_entry_safe_reverse(link, ln, &dev->links.consumers, s_node) {
1400 WARN_ON(link->status != DL_STATE_DORMANT &&
1401 link->status != DL_STATE_NONE);
Lukas Wunneread18c22018-02-10 19:27:12 +01001402 __device_link_del(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001403 }
1404
1405 device_links_write_unlock();
1406}
1407
Saravana Kannan42926ac2020-05-14 22:34:57 -07001408static u32 fw_devlink_flags = DL_FLAG_SYNC_STATE_ONLY;
1409static int __init fw_devlink_setup(char *arg)
1410{
1411 if (!arg)
1412 return -EINVAL;
1413
1414 if (strcmp(arg, "off") == 0) {
1415 fw_devlink_flags = 0;
1416 } else if (strcmp(arg, "permissive") == 0) {
1417 fw_devlink_flags = DL_FLAG_SYNC_STATE_ONLY;
1418 } else if (strcmp(arg, "on") == 0) {
1419 fw_devlink_flags = DL_FLAG_AUTOPROBE_CONSUMER;
1420 } else if (strcmp(arg, "rpm") == 0) {
1421 fw_devlink_flags = DL_FLAG_AUTOPROBE_CONSUMER |
1422 DL_FLAG_PM_RUNTIME;
1423 }
1424 return 0;
1425}
1426early_param("fw_devlink", fw_devlink_setup);
1427
1428u32 fw_devlink_get_flags(void)
1429{
1430 return fw_devlink_flags;
1431}
1432
1433static bool fw_devlink_is_permissive(void)
1434{
1435 return fw_devlink_flags == DL_FLAG_SYNC_STATE_ONLY;
1436}
1437
Saravana Kannan5f5377e2020-05-14 22:34:58 -07001438static void fw_devlink_link_device(struct device *dev)
1439{
1440 int fw_ret;
1441
Saravana Kannan716a7a22020-05-14 22:34:59 -07001442 if (!fw_devlink_flags)
1443 return;
Saravana Kannan5f5377e2020-05-14 22:34:58 -07001444
Saravana Kannan716a7a22020-05-14 22:34:59 -07001445 mutex_lock(&defer_fw_devlink_lock);
1446 if (!defer_fw_devlink_count)
1447 device_link_add_missing_supplier_links();
1448
1449 /*
1450 * The device's fwnode not having add_links() doesn't affect if other
1451 * consumers can find this device as a supplier. So, this check is
1452 * intentionally placed after device_link_add_missing_supplier_links().
1453 */
1454 if (!fwnode_has_op(dev->fwnode, add_links))
1455 goto out;
1456
1457 /*
1458 * If fw_devlink is being deferred, assume all devices have mandatory
1459 * suppliers they need to link to later. Then, when the fw_devlink is
1460 * resumed, all these devices will get a chance to try and link to any
1461 * suppliers they have.
1462 */
1463 if (!defer_fw_devlink_count) {
Saravana Kannan5f5377e2020-05-14 22:34:58 -07001464 fw_ret = fwnode_call_int_op(dev->fwnode, add_links, dev);
Saravana Kannan716a7a22020-05-14 22:34:59 -07001465 if (fw_ret == -ENODEV && fw_devlink_is_permissive())
1466 fw_ret = -EAGAIN;
1467 } else {
1468 fw_ret = -ENODEV;
Saravana Kannan2451e742020-07-01 12:42:59 -07001469 /*
1470 * defer_hook is not used to add device to deferred_sync list
1471 * until device is bound. Since deferred fw devlink also blocks
1472 * probing, same list hook can be used for deferred_fw_devlink.
1473 */
1474 list_add_tail(&dev->links.defer_hook, &deferred_fw_devlink);
Saravana Kannan5f5377e2020-05-14 22:34:58 -07001475 }
Saravana Kannan716a7a22020-05-14 22:34:59 -07001476
1477 if (fw_ret == -ENODEV)
1478 device_link_wait_for_mandatory_supplier(dev);
1479 else if (fw_ret)
1480 device_link_wait_for_optional_supplier(dev);
1481
1482out:
1483 mutex_unlock(&defer_fw_devlink_lock);
Saravana Kannan5f5377e2020-05-14 22:34:58 -07001484}
1485
Saravana Kannan716a7a22020-05-14 22:34:59 -07001486/**
1487 * fw_devlink_pause - Pause parsing of fwnode to create device links
1488 *
1489 * Calling this function defers any fwnode parsing to create device links until
1490 * fw_devlink_resume() is called. Both these functions are ref counted and the
1491 * caller needs to match the calls.
1492 *
1493 * While fw_devlink is paused:
1494 * - Any device that is added won't have its fwnode parsed to create device
1495 * links.
1496 * - The probe of the device will also be deferred during this period.
1497 * - Any devices that were already added, but waiting for suppliers won't be
1498 * able to link to newly added devices.
1499 *
1500 * Once fw_devlink_resume():
1501 * - All the fwnodes that was not parsed will be parsed.
1502 * - All the devices that were deferred probing will be reattempted if they
1503 * aren't waiting for any more suppliers.
1504 *
1505 * This pair of functions, is mainly meant to optimize the parsing of fwnodes
1506 * when a lot of devices that need to link to each other are added in a short
1507 * interval of time. For example, adding all the top level devices in a system.
1508 *
1509 * For example, if N devices are added and:
1510 * - All the consumers are added before their suppliers
1511 * - All the suppliers of the N devices are part of the N devices
1512 *
1513 * Then:
1514 *
1515 * - With the use of fw_devlink_pause() and fw_devlink_resume(), each device
1516 * will only need one parsing of its fwnode because it is guaranteed to find
1517 * all the supplier devices already registered and ready to link to. It won't
1518 * have to do another pass later to find one or more suppliers it couldn't
1519 * find in the first parse of the fwnode. So, we'll only need O(N) fwnode
1520 * parses.
1521 *
1522 * - Without the use of fw_devlink_pause() and fw_devlink_resume(), we would
1523 * end up doing O(N^2) parses of fwnodes because every device that's added is
1524 * guaranteed to trigger a parse of the fwnode of every device added before
1525 * it. This O(N^2) parse is made worse by the fact that when a fwnode of a
1526 * device is parsed, all it descendant devices might need to have their
1527 * fwnodes parsed too (even if the devices themselves aren't added).
1528 */
1529void fw_devlink_pause(void)
1530{
1531 mutex_lock(&defer_fw_devlink_lock);
1532 defer_fw_devlink_count++;
1533 mutex_unlock(&defer_fw_devlink_lock);
1534}
1535
1536/** fw_devlink_resume - Resume parsing of fwnode to create device links
1537 *
1538 * This function is used in conjunction with fw_devlink_pause() and is ref
1539 * counted. See documentation for fw_devlink_pause() for more details.
1540 */
1541void fw_devlink_resume(void)
1542{
Saravana Kannan2451e742020-07-01 12:42:59 -07001543 struct device *dev, *tmp;
1544 LIST_HEAD(probe_list);
1545
Saravana Kannan716a7a22020-05-14 22:34:59 -07001546 mutex_lock(&defer_fw_devlink_lock);
1547 if (!defer_fw_devlink_count) {
1548 WARN(true, "Unmatched fw_devlink pause/resume!");
1549 goto out;
1550 }
1551
1552 defer_fw_devlink_count--;
1553 if (defer_fw_devlink_count)
1554 goto out;
1555
1556 device_link_add_missing_supplier_links();
Saravana Kannan2451e742020-07-01 12:42:59 -07001557 list_splice_tail_init(&deferred_fw_devlink, &probe_list);
Saravana Kannan716a7a22020-05-14 22:34:59 -07001558out:
1559 mutex_unlock(&defer_fw_devlink_lock);
Saravana Kannan2451e742020-07-01 12:42:59 -07001560
1561 /*
1562 * bus_probe_device() can cause new devices to get added and they'll
1563 * try to grab defer_fw_devlink_lock. So, this needs to be done outside
1564 * the defer_fw_devlink_lock.
1565 */
1566 list_for_each_entry_safe(dev, tmp, &probe_list, links.defer_hook) {
1567 list_del_init(&dev->links.defer_hook);
1568 bus_probe_device(dev);
1569 }
Saravana Kannan716a7a22020-05-14 22:34:59 -07001570}
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001571/* Device links support end. */
1572
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001573int (*platform_notify)(struct device *dev) = NULL;
1574int (*platform_notify_remove)(struct device *dev) = NULL;
Dan Williamse105b8b2008-04-21 10:51:07 -07001575static struct kobject *dev_kobj;
1576struct kobject *sysfs_dev_char_kobj;
1577struct kobject *sysfs_dev_block_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02001579static DEFINE_MUTEX(device_hotplug_lock);
1580
1581void lock_device_hotplug(void)
1582{
1583 mutex_lock(&device_hotplug_lock);
1584}
1585
1586void unlock_device_hotplug(void)
1587{
1588 mutex_unlock(&device_hotplug_lock);
1589}
1590
1591int lock_device_hotplug_sysfs(void)
1592{
1593 if (mutex_trylock(&device_hotplug_lock))
1594 return 0;
1595
1596 /* Avoid busy looping (5 ms of sleep should do). */
1597 msleep(5);
1598 return restart_syscall();
1599}
1600
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -08001601#ifdef CONFIG_BLOCK
1602static inline int device_is_not_partition(struct device *dev)
1603{
1604 return !(dev->type == &part_type);
1605}
1606#else
1607static inline int device_is_not_partition(struct device *dev)
1608{
1609 return 1;
1610}
1611#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Heikki Krogerus07de0e82018-11-09 17:21:34 +03001613static int
1614device_platform_notify(struct device *dev, enum kobject_action action)
1615{
Heikki Krogerus7847a142018-11-09 17:21:35 +03001616 int ret;
1617
1618 ret = acpi_platform_notify(dev, action);
1619 if (ret)
1620 return ret;
1621
Heikki Krogerus59abd832018-11-09 17:21:36 +03001622 ret = software_node_notify(dev, action);
1623 if (ret)
1624 return ret;
1625
Heikki Krogerus07de0e82018-11-09 17:21:34 +03001626 if (platform_notify && action == KOBJ_ADD)
1627 platform_notify(dev);
1628 else if (platform_notify_remove && action == KOBJ_REMOVE)
1629 platform_notify_remove(dev);
1630 return 0;
1631}
1632
Alan Stern3e956372006-06-16 17:10:48 -04001633/**
1634 * dev_driver_string - Return a device's driver name, if at all possible
1635 * @dev: struct device to get the name of
1636 *
1637 * Will return the device's driver's name if it is bound to a device. If
yan9169c012012-04-20 21:08:45 +08001638 * the device is not bound to a driver, it will return the name of the bus
Alan Stern3e956372006-06-16 17:10:48 -04001639 * it is attached to. If it is not attached to a bus either, an empty
1640 * string will be returned.
1641 */
Jean Delvarebf9ca692008-07-30 12:29:21 -07001642const char *dev_driver_string(const struct device *dev)
Alan Stern3e956372006-06-16 17:10:48 -04001643{
Alan Stern35899722009-12-04 11:06:57 -05001644 struct device_driver *drv;
1645
1646 /* dev->driver can change to NULL underneath us because of unbinding,
1647 * so be careful about accessing it. dev->bus and dev->class should
1648 * never change once they are set, so they don't need special care.
1649 */
Mark Rutland6aa7de02017-10-23 14:07:29 -07001650 drv = READ_ONCE(dev->driver);
Alan Stern35899722009-12-04 11:06:57 -05001651 return drv ? drv->name :
Jean Delvarea456b702007-03-09 16:33:10 +01001652 (dev->bus ? dev->bus->name :
1653 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -04001654}
Matthew Wilcox310a9222006-09-23 23:35:04 -06001655EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -04001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
1658
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001659static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
1660 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001662 struct device_attribute *dev_attr = to_dev_attr(attr);
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02001663 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -05001664 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -04001667 ret = dev_attr->show(dev, dev_attr, buf);
Andrew Morton815d2d52008-03-04 15:09:07 -08001668 if (ret >= (ssize_t)PAGE_SIZE) {
Sergey Senozhatskya52668c2017-12-11 21:50:21 +09001669 printk("dev_attr_show: %pS returned bad count\n",
1670 dev_attr->show);
Andrew Morton815d2d52008-03-04 15:09:07 -08001671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return ret;
1673}
1674
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001675static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
1676 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001678 struct device_attribute *dev_attr = to_dev_attr(attr);
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02001679 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -05001680 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -04001683 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 return ret;
1685}
1686
Emese Revfy52cf25d2010-01-19 02:58:23 +01001687static const struct sysfs_ops dev_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 .show = dev_attr_show,
1689 .store = dev_attr_store,
1690};
1691
Kay Sieversca22e562011-12-14 14:29:38 -08001692#define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr)
1693
1694ssize_t device_store_ulong(struct device *dev,
1695 struct device_attribute *attr,
1696 const char *buf, size_t size)
1697{
1698 struct dev_ext_attribute *ea = to_ext_attr(attr);
Kaitao chengf88184b2018-11-06 08:34:54 -08001699 int ret;
1700 unsigned long new;
1701
1702 ret = kstrtoul(buf, 0, &new);
1703 if (ret)
1704 return ret;
Kay Sieversca22e562011-12-14 14:29:38 -08001705 *(unsigned long *)(ea->var) = new;
1706 /* Always return full write size even if we didn't consume all */
1707 return size;
1708}
1709EXPORT_SYMBOL_GPL(device_store_ulong);
1710
1711ssize_t device_show_ulong(struct device *dev,
1712 struct device_attribute *attr,
1713 char *buf)
1714{
1715 struct dev_ext_attribute *ea = to_ext_attr(attr);
1716 return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var));
1717}
1718EXPORT_SYMBOL_GPL(device_show_ulong);
1719
1720ssize_t device_store_int(struct device *dev,
1721 struct device_attribute *attr,
1722 const char *buf, size_t size)
1723{
1724 struct dev_ext_attribute *ea = to_ext_attr(attr);
Kaitao chengf88184b2018-11-06 08:34:54 -08001725 int ret;
1726 long new;
1727
1728 ret = kstrtol(buf, 0, &new);
1729 if (ret)
1730 return ret;
1731
1732 if (new > INT_MAX || new < INT_MIN)
Kay Sieversca22e562011-12-14 14:29:38 -08001733 return -EINVAL;
1734 *(int *)(ea->var) = new;
1735 /* Always return full write size even if we didn't consume all */
1736 return size;
1737}
1738EXPORT_SYMBOL_GPL(device_store_int);
1739
1740ssize_t device_show_int(struct device *dev,
1741 struct device_attribute *attr,
1742 char *buf)
1743{
1744 struct dev_ext_attribute *ea = to_ext_attr(attr);
1745
1746 return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var));
1747}
1748EXPORT_SYMBOL_GPL(device_show_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Borislav Petkov91872392012-10-09 19:52:05 +02001750ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
1751 const char *buf, size_t size)
1752{
1753 struct dev_ext_attribute *ea = to_ext_attr(attr);
1754
1755 if (strtobool(buf, ea->var) < 0)
1756 return -EINVAL;
1757
1758 return size;
1759}
1760EXPORT_SYMBOL_GPL(device_store_bool);
1761
1762ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
1763 char *buf)
1764{
1765 struct dev_ext_attribute *ea = to_ext_attr(attr);
1766
1767 return snprintf(buf, PAGE_SIZE, "%d\n", *(bool *)(ea->var));
1768}
1769EXPORT_SYMBOL_GPL(device_show_bool);
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771/**
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -04001772 * device_release - free device structure.
1773 * @kobj: device's kobject.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 *
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -04001775 * This is called once the reference count for the object
1776 * reaches 0. We forward the call to the device's release
1777 * method, which should handle actually freeing the structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001779static void device_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02001781 struct device *dev = kobj_to_dev(kobj);
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08001782 struct device_private *p = dev->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Ming Leia525a3d2012-07-25 01:42:29 +08001784 /*
1785 * Some platform devices are driven without driver attached
1786 * and managed resources may have been acquired. Make sure
1787 * all resources are released.
1788 *
1789 * Drivers still can add resources into device after device
1790 * is deleted but alive, so release devres here to avoid
1791 * possible memory leak.
1792 */
1793 devres_release_all(dev);
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (dev->release)
1796 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001797 else if (dev->type && dev->type->release)
1798 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001799 else if (dev->class && dev->class->dev_release)
1800 dev->class->dev_release(dev);
Arjan van de Venf810a5c2008-07-25 19:45:39 -07001801 else
Mauro Carvalho Chehab0c1bc6b2020-04-14 18:48:37 +02001802 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",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001803 dev_name(dev));
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08001804 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001807static const void *device_namespace(struct kobject *kobj)
1808{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02001809 struct device *dev = kobj_to_dev(kobj);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001810 const void *ns = NULL;
1811
1812 if (dev->class && dev->class->ns_type)
1813 ns = dev->class->namespace(dev);
1814
1815 return ns;
1816}
1817
Dmitry Torokhov9944e892018-07-20 21:56:50 +00001818static void device_get_ownership(struct kobject *kobj, kuid_t *uid, kgid_t *gid)
1819{
1820 struct device *dev = kobj_to_dev(kobj);
1821
1822 if (dev->class && dev->class->get_ownership)
1823 dev->class->get_ownership(dev, uid, gid);
1824}
1825
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -06001826static struct kobj_type device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 .release = device_release,
1828 .sysfs_ops = &dev_sysfs_ops,
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001829 .namespace = device_namespace,
Dmitry Torokhov9944e892018-07-20 21:56:50 +00001830 .get_ownership = device_get_ownership,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831};
1832
1833
Kay Sievers312c0042005-11-16 09:00:00 +01001834static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
1836 struct kobj_type *ktype = get_ktype(kobj);
1837
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -06001838 if (ktype == &device_ktype) {
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02001839 struct device *dev = kobj_to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 if (dev->bus)
1841 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001842 if (dev->class)
1843 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845 return 0;
1846}
1847
Kay Sievers312c0042005-11-16 09:00:00 +01001848static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02001850 struct device *dev = kobj_to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001852 if (dev->bus)
1853 return dev->bus->name;
1854 if (dev->class)
1855 return dev->class->name;
1856 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
Kay Sievers7eff2e72007-08-14 15:15:12 +02001859static int dev_uevent(struct kset *kset, struct kobject *kobj,
1860 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02001862 struct device *dev = kobj_to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 int retval = 0;
1864
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001865 /* add device node properties if present */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001866 if (MAJOR(dev->devt)) {
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001867 const char *tmp;
1868 const char *name;
Al Viro2c9ede52011-07-23 20:24:48 -04001869 umode_t mode = 0;
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001870 kuid_t uid = GLOBAL_ROOT_UID;
1871 kgid_t gid = GLOBAL_ROOT_GID;
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001872
Kay Sievers7eff2e72007-08-14 15:15:12 +02001873 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
1874 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
Kay Sievers3c2670e2013-04-06 09:56:00 -07001875 name = device_get_devnode(dev, &mode, &uid, &gid, &tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001876 if (name) {
1877 add_uevent_var(env, "DEVNAME=%s", name);
Kay Sieverse454cea2009-09-18 23:01:12 +02001878 if (mode)
1879 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001880 if (!uid_eq(uid, GLOBAL_ROOT_UID))
1881 add_uevent_var(env, "DEVUID=%u", from_kuid(&init_user_ns, uid));
1882 if (!gid_eq(gid, GLOBAL_ROOT_GID))
1883 add_uevent_var(env, "DEVGID=%u", from_kgid(&init_user_ns, gid));
Kay Sievers3c2670e2013-04-06 09:56:00 -07001884 kfree(tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001885 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001886 }
1887
Kay Sievers414264f2007-03-12 21:08:57 +01001888 if (dev->type && dev->type->name)
Kay Sievers7eff2e72007-08-14 15:15:12 +02001889 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
Kay Sievers414264f2007-03-12 21:08:57 +01001890
Kay Sievers239378f2006-10-07 21:54:55 +02001891 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +02001892 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +02001893
Grant Likely07d57a32012-02-01 11:22:22 -07001894 /* Add common DT information about the device */
1895 of_device_uevent(dev, env);
1896
Kay Sievers7eff2e72007-08-14 15:15:12 +02001897 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +01001898 if (dev->bus && dev->bus->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +02001899 retval = dev->bus->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001900 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -08001901 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001902 dev_name(dev), __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
1904
Kay Sievers7eff2e72007-08-14 15:15:12 +02001905 /* have the class specific function add its stuff */
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001906 if (dev->class && dev->class->dev_uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +02001907 retval = dev->class->dev_uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001908 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -08001909 pr_debug("device: '%s': %s: class uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001910 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -08001911 __func__, retval);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001912 }
1913
Stefan Weileef35c22010-08-06 21:11:15 +02001914 /* have the device type specific function add its stuff */
Kay Sieversf9f852d2006-10-07 21:54:55 +02001915 if (dev->type && dev->type->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +02001916 retval = dev->type->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001917 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -08001918 pr_debug("device: '%s': %s: dev_type uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001919 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -08001920 __func__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001921 }
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 return retval;
1924}
1925
Emese Revfy9cd43612009-12-31 14:52:51 +01001926static const struct kset_uevent_ops device_uevent_ops = {
Kay Sievers312c0042005-11-16 09:00:00 +01001927 .filter = dev_uevent_filter,
1928 .name = dev_uevent_name,
1929 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930};
1931
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001932static ssize_t uevent_show(struct device *dev, struct device_attribute *attr,
Kay Sievers16574dc2007-04-06 01:40:38 +02001933 char *buf)
1934{
1935 struct kobject *top_kobj;
1936 struct kset *kset;
Kay Sievers7eff2e72007-08-14 15:15:12 +02001937 struct kobj_uevent_env *env = NULL;
Kay Sievers16574dc2007-04-06 01:40:38 +02001938 int i;
1939 size_t count = 0;
1940 int retval;
1941
1942 /* search the kset, the device belongs to */
1943 top_kobj = &dev->kobj;
Kay Sievers5c5daf62007-08-12 20:43:55 +02001944 while (!top_kobj->kset && top_kobj->parent)
1945 top_kobj = top_kobj->parent;
Kay Sievers16574dc2007-04-06 01:40:38 +02001946 if (!top_kobj->kset)
1947 goto out;
Kay Sievers5c5daf62007-08-12 20:43:55 +02001948
Kay Sievers16574dc2007-04-06 01:40:38 +02001949 kset = top_kobj->kset;
1950 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
1951 goto out;
1952
1953 /* respect filter */
1954 if (kset->uevent_ops && kset->uevent_ops->filter)
1955 if (!kset->uevent_ops->filter(kset, &dev->kobj))
1956 goto out;
1957
Kay Sievers7eff2e72007-08-14 15:15:12 +02001958 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
1959 if (!env)
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +02001960 return -ENOMEM;
1961
Kay Sievers16574dc2007-04-06 01:40:38 +02001962 /* let the kset specific function add its keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001963 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
Kay Sievers16574dc2007-04-06 01:40:38 +02001964 if (retval)
1965 goto out;
1966
1967 /* copy keys to file */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001968 for (i = 0; i < env->envp_idx; i++)
1969 count += sprintf(&buf[count], "%s\n", env->envp[i]);
Kay Sievers16574dc2007-04-06 01:40:38 +02001970out:
Kay Sievers7eff2e72007-08-14 15:15:12 +02001971 kfree(env);
Kay Sievers16574dc2007-04-06 01:40:38 +02001972 return count;
1973}
1974
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001975static ssize_t uevent_store(struct device *dev, struct device_attribute *attr,
Kay Sieversa7fd6702005-10-01 14:49:43 +02001976 const char *buf, size_t count)
1977{
Peter Rajnohadf44b472018-12-05 12:27:44 +01001978 int rc;
1979
1980 rc = kobject_synth_uevent(&dev->kobj, buf, count);
1981
1982 if (rc) {
Peter Rajnohaf36776f2017-05-09 15:22:30 +02001983 dev_err(dev, "uevent: failed to send synthetic uevent\n");
Peter Rajnohadf44b472018-12-05 12:27:44 +01001984 return rc;
1985 }
Kay Sievers60a96a52007-07-08 22:29:26 +02001986
Kay Sieversa7fd6702005-10-01 14:49:43 +02001987 return count;
1988}
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001989static DEVICE_ATTR_RW(uevent);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001990
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001991static ssize_t online_show(struct device *dev, struct device_attribute *attr,
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001992 char *buf)
1993{
1994 bool val;
1995
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02001996 device_lock(dev);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001997 val = !dev->offline;
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02001998 device_unlock(dev);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001999 return sprintf(buf, "%u\n", val);
2000}
2001
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002002static ssize_t online_store(struct device *dev, struct device_attribute *attr,
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02002003 const char *buf, size_t count)
2004{
2005 bool val;
2006 int ret;
2007
2008 ret = strtobool(buf, &val);
2009 if (ret < 0)
2010 return ret;
2011
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02002012 ret = lock_device_hotplug_sysfs();
2013 if (ret)
2014 return ret;
2015
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02002016 ret = val ? device_online(dev) : device_offline(dev);
2017 unlock_device_hotplug();
2018 return ret < 0 ? ret : count;
2019}
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002020static DEVICE_ATTR_RW(online);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02002021
Greg Kroah-Hartmanfa6fdb32013-08-08 15:22:55 -07002022int device_add_groups(struct device *dev, const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002023{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -07002024 return sysfs_create_groups(&dev->kobj, groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002025}
Dmitry Torokhova7670d42017-07-19 17:24:31 -07002026EXPORT_SYMBOL_GPL(device_add_groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002027
Greg Kroah-Hartmanfa6fdb32013-08-08 15:22:55 -07002028void device_remove_groups(struct device *dev,
2029 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002030{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -07002031 sysfs_remove_groups(&dev->kobj, groups);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -07002032}
Dmitry Torokhova7670d42017-07-19 17:24:31 -07002033EXPORT_SYMBOL_GPL(device_remove_groups);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -07002034
Dmitry Torokhov57b8ff02017-07-19 17:24:33 -07002035union device_attr_group_devres {
2036 const struct attribute_group *group;
2037 const struct attribute_group **groups;
2038};
2039
2040static int devm_attr_group_match(struct device *dev, void *res, void *data)
2041{
2042 return ((union device_attr_group_devres *)res)->group == data;
2043}
2044
2045static void devm_attr_group_remove(struct device *dev, void *res)
2046{
2047 union device_attr_group_devres *devres = res;
2048 const struct attribute_group *group = devres->group;
2049
2050 dev_dbg(dev, "%s: removing group %p\n", __func__, group);
2051 sysfs_remove_group(&dev->kobj, group);
2052}
2053
2054static void devm_attr_groups_remove(struct device *dev, void *res)
2055{
2056 union device_attr_group_devres *devres = res;
2057 const struct attribute_group **groups = devres->groups;
2058
2059 dev_dbg(dev, "%s: removing groups %p\n", __func__, groups);
2060 sysfs_remove_groups(&dev->kobj, groups);
2061}
2062
2063/**
2064 * devm_device_add_group - given a device, create a managed attribute group
2065 * @dev: The device to create the group for
2066 * @grp: The attribute group to create
2067 *
2068 * This function creates a group for the first time. It will explicitly
2069 * warn and error if any of the attribute files being created already exist.
2070 *
2071 * Returns 0 on success or error code on failure.
2072 */
2073int devm_device_add_group(struct device *dev, const struct attribute_group *grp)
2074{
2075 union device_attr_group_devres *devres;
2076 int error;
2077
2078 devres = devres_alloc(devm_attr_group_remove,
2079 sizeof(*devres), GFP_KERNEL);
2080 if (!devres)
2081 return -ENOMEM;
2082
2083 error = sysfs_create_group(&dev->kobj, grp);
2084 if (error) {
2085 devres_free(devres);
2086 return error;
2087 }
2088
2089 devres->group = grp;
2090 devres_add(dev, devres);
2091 return 0;
2092}
2093EXPORT_SYMBOL_GPL(devm_device_add_group);
2094
2095/**
2096 * devm_device_remove_group: remove a managed group from a device
2097 * @dev: device to remove the group from
2098 * @grp: group to remove
2099 *
2100 * This function removes a group of attributes from a device. The attributes
2101 * previously have to have been created for this group, otherwise it will fail.
2102 */
2103void devm_device_remove_group(struct device *dev,
2104 const struct attribute_group *grp)
2105{
2106 WARN_ON(devres_release(dev, devm_attr_group_remove,
2107 devm_attr_group_match,
2108 /* cast away const */ (void *)grp));
2109}
2110EXPORT_SYMBOL_GPL(devm_device_remove_group);
2111
2112/**
2113 * devm_device_add_groups - create a bunch of managed attribute groups
2114 * @dev: The device to create the group for
2115 * @groups: The attribute groups to create, NULL terminated
2116 *
2117 * This function creates a bunch of managed attribute groups. If an error
2118 * occurs when creating a group, all previously created groups will be
2119 * removed, unwinding everything back to the original state when this
2120 * function was called. It will explicitly warn and error if any of the
2121 * attribute files being created already exist.
2122 *
2123 * Returns 0 on success or error code from sysfs_create_group on failure.
2124 */
2125int devm_device_add_groups(struct device *dev,
2126 const struct attribute_group **groups)
2127{
2128 union device_attr_group_devres *devres;
2129 int error;
2130
2131 devres = devres_alloc(devm_attr_groups_remove,
2132 sizeof(*devres), GFP_KERNEL);
2133 if (!devres)
2134 return -ENOMEM;
2135
2136 error = sysfs_create_groups(&dev->kobj, groups);
2137 if (error) {
2138 devres_free(devres);
2139 return error;
2140 }
2141
2142 devres->groups = groups;
2143 devres_add(dev, devres);
2144 return 0;
2145}
2146EXPORT_SYMBOL_GPL(devm_device_add_groups);
2147
2148/**
2149 * devm_device_remove_groups - remove a list of managed groups
2150 *
2151 * @dev: The device for the groups to be removed from
2152 * @groups: NULL terminated list of groups to be removed
2153 *
2154 * If groups is not NULL, remove the specified groups from the device.
2155 */
2156void devm_device_remove_groups(struct device *dev,
2157 const struct attribute_group **groups)
2158{
2159 WARN_ON(devres_release(dev, devm_attr_groups_remove,
2160 devm_attr_group_match,
2161 /* cast away const */ (void *)groups));
2162}
2163EXPORT_SYMBOL_GPL(devm_device_remove_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002165static int device_add_attrs(struct device *dev)
2166{
2167 struct class *class = dev->class;
Stephen Hemmingeraed65af2011-03-28 09:12:52 -07002168 const struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002169 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002170
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002171 if (class) {
Greg Kroah-Hartmand05a6f92013-07-14 16:05:58 -07002172 error = device_add_groups(dev, class->dev_groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +02002173 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002174 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002175 }
Kay Sieversf9f852d2006-10-07 21:54:55 +02002176
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002177 if (type) {
2178 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +02002179 if (error)
Greg Kroah-Hartmana6b01de2013-10-05 18:19:30 -07002180 goto err_remove_class_groups;
Kay Sieversf9f852d2006-10-07 21:54:55 +02002181 }
2182
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002183 error = device_add_groups(dev, dev->groups);
2184 if (error)
2185 goto err_remove_type_groups;
2186
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02002187 if (device_supports_offline(dev) && !dev->offline_disabled) {
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002188 error = device_create_file(dev, &dev_attr_online);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02002189 if (error)
Rafael J. Wysockiecfbf6f2013-12-12 06:11:02 +01002190 goto err_remove_dev_groups;
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02002191 }
2192
Saravana Kannanda6d6472020-05-21 12:18:00 -07002193 if (fw_devlink_flags && !fw_devlink_is_permissive()) {
2194 error = device_create_file(dev, &dev_attr_waiting_for_supplier);
2195 if (error)
2196 goto err_remove_dev_online;
2197 }
2198
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002199 return 0;
2200
Saravana Kannanda6d6472020-05-21 12:18:00 -07002201 err_remove_dev_online:
2202 device_remove_file(dev, &dev_attr_online);
Rafael J. Wysockiecfbf6f2013-12-12 06:11:02 +01002203 err_remove_dev_groups:
2204 device_remove_groups(dev, dev->groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002205 err_remove_type_groups:
2206 if (type)
2207 device_remove_groups(dev, type->groups);
Greg Kroah-Hartmand05a6f92013-07-14 16:05:58 -07002208 err_remove_class_groups:
2209 if (class)
2210 device_remove_groups(dev, class->dev_groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002211
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002212 return error;
2213}
2214
2215static void device_remove_attrs(struct device *dev)
2216{
2217 struct class *class = dev->class;
Stephen Hemmingeraed65af2011-03-28 09:12:52 -07002218 const struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002219
Saravana Kannanda6d6472020-05-21 12:18:00 -07002220 device_remove_file(dev, &dev_attr_waiting_for_supplier);
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002221 device_remove_file(dev, &dev_attr_online);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002222 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +02002223
Dmitry Torokhov621a1672007-03-10 01:37:34 -05002224 if (type)
2225 device_remove_groups(dev, type->groups);
2226
Greg Kroah-Hartmana6b01de2013-10-05 18:19:30 -07002227 if (class)
Greg Kroah-Hartmand05a6f92013-07-14 16:05:58 -07002228 device_remove_groups(dev, class->dev_groups);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002229}
2230
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002231static ssize_t dev_show(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002232 char *buf)
2233{
2234 return print_dev_t(buf, dev->devt);
2235}
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002236static DEVICE_ATTR_RO(dev);
Tejun Heoad6a1e12007-06-14 03:45:17 +09002237
Kay Sieversca22e562011-12-14 14:29:38 -08002238/* /sys/devices/ */
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06002239struct kset *devices_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241/**
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03002242 * devices_kset_move_before - Move device in the devices_kset's list.
2243 * @deva: Device to move.
2244 * @devb: Device @deva should come before.
2245 */
2246static void devices_kset_move_before(struct device *deva, struct device *devb)
2247{
2248 if (!devices_kset)
2249 return;
2250 pr_debug("devices_kset: Moving %s before %s\n",
2251 dev_name(deva), dev_name(devb));
2252 spin_lock(&devices_kset->list_lock);
2253 list_move_tail(&deva->kobj.entry, &devb->kobj.entry);
2254 spin_unlock(&devices_kset->list_lock);
2255}
2256
2257/**
2258 * devices_kset_move_after - Move device in the devices_kset's list.
2259 * @deva: Device to move
2260 * @devb: Device @deva should come after.
2261 */
2262static void devices_kset_move_after(struct device *deva, struct device *devb)
2263{
2264 if (!devices_kset)
2265 return;
2266 pr_debug("devices_kset: Moving %s after %s\n",
2267 dev_name(deva), dev_name(devb));
2268 spin_lock(&devices_kset->list_lock);
2269 list_move(&deva->kobj.entry, &devb->kobj.entry);
2270 spin_unlock(&devices_kset->list_lock);
2271}
2272
2273/**
2274 * devices_kset_move_last - move the device to the end of devices_kset's list.
2275 * @dev: device to move
2276 */
2277void devices_kset_move_last(struct device *dev)
2278{
2279 if (!devices_kset)
2280 return;
2281 pr_debug("devices_kset: Moving %s to end of list\n", dev_name(dev));
2282 spin_lock(&devices_kset->list_lock);
2283 list_move_tail(&dev->kobj.entry, &devices_kset->list);
2284 spin_unlock(&devices_kset->list_lock);
2285}
2286
2287/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002288 * device_create_file - create sysfs attribute file for device.
2289 * @dev: device.
2290 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 */
Phil Carmody26579ab2009-12-18 15:34:19 +02002292int device_create_file(struct device *dev,
2293 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294{
2295 int error = 0;
Felipe Balbi8f46baa2013-02-20 10:31:42 +02002296
2297 if (dev) {
2298 WARN(((attr->attr.mode & S_IWUGO) && !attr->store),
dyoung@redhat.com97521972013-05-16 14:31:30 +08002299 "Attribute %s: write permission without 'store'\n",
2300 attr->attr.name);
Felipe Balbi8f46baa2013-02-20 10:31:42 +02002301 WARN(((attr->attr.mode & S_IRUGO) && !attr->show),
dyoung@redhat.com97521972013-05-16 14:31:30 +08002302 "Attribute %s: read permission without 'show'\n",
2303 attr->attr.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 error = sysfs_create_file(&dev->kobj, &attr->attr);
Felipe Balbi8f46baa2013-02-20 10:31:42 +02002305 }
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 return error;
2308}
David Graham White86df2682013-07-21 20:41:14 -04002309EXPORT_SYMBOL_GPL(device_create_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002312 * device_remove_file - remove sysfs attribute file.
2313 * @dev: device.
2314 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 */
Phil Carmody26579ab2009-12-18 15:34:19 +02002316void device_remove_file(struct device *dev,
2317 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318{
Cornelia Huck0c98b192008-01-31 10:39:38 +01002319 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 sysfs_remove_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321}
David Graham White86df2682013-07-21 20:41:14 -04002322EXPORT_SYMBOL_GPL(device_remove_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07002324/**
Tejun Heo6b0afc22014-02-03 14:03:01 -05002325 * device_remove_file_self - remove sysfs attribute file from its own method.
2326 * @dev: device.
2327 * @attr: device attribute descriptor.
2328 *
2329 * See kernfs_remove_self() for details.
2330 */
2331bool device_remove_file_self(struct device *dev,
2332 const struct device_attribute *attr)
2333{
2334 if (dev)
2335 return sysfs_remove_file_self(&dev->kobj, &attr->attr);
2336 else
2337 return false;
2338}
2339EXPORT_SYMBOL_GPL(device_remove_file_self);
2340
2341/**
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07002342 * device_create_bin_file - create sysfs binary attribute file for device.
2343 * @dev: device.
2344 * @attr: device binary attribute descriptor.
2345 */
Phil Carmody66ecb922009-12-18 15:34:20 +02002346int device_create_bin_file(struct device *dev,
2347 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07002348{
2349 int error = -EINVAL;
2350 if (dev)
2351 error = sysfs_create_bin_file(&dev->kobj, attr);
2352 return error;
2353}
2354EXPORT_SYMBOL_GPL(device_create_bin_file);
2355
2356/**
2357 * device_remove_bin_file - remove sysfs binary attribute file
2358 * @dev: device.
2359 * @attr: device binary attribute descriptor.
2360 */
Phil Carmody66ecb922009-12-18 15:34:20 +02002361void device_remove_bin_file(struct device *dev,
2362 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07002363{
2364 if (dev)
2365 sysfs_remove_bin_file(&dev->kobj, attr);
2366}
2367EXPORT_SYMBOL_GPL(device_remove_bin_file);
2368
James Bottomley34bb61f2005-09-06 16:56:51 -07002369static void klist_children_get(struct klist_node *n)
2370{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002371 struct device_private *p = to_device_private_parent(n);
2372 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -07002373
2374 get_device(dev);
2375}
2376
2377static void klist_children_put(struct klist_node *n)
2378{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002379 struct device_private *p = to_device_private_parent(n);
2380 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -07002381
2382 put_device(dev);
2383}
2384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002386 * device_initialize - init device structure.
2387 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 *
Cornelia Huck57394112008-09-03 18:26:40 +02002389 * This prepares the device for use by other layers by initializing
2390 * its fields.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002391 * It is the first half of device_register(), if called by
Cornelia Huck57394112008-09-03 18:26:40 +02002392 * that function, though it can also be called separately, so one
2393 * may use @dev's fields. In particular, get_device()/put_device()
2394 * may be used for reference counting of @dev after calling this
2395 * function.
2396 *
Alan Sternb10d5ef2012-01-17 11:39:00 -05002397 * All fields in @dev must be initialized by the caller to 0, except
2398 * for those explicitly set to some other value. The simplest
2399 * approach is to use kzalloc() to allocate the structure containing
2400 * @dev.
2401 *
Cornelia Huck57394112008-09-03 18:26:40 +02002402 * NOTE: Use put_device() to give up your reference instead of freeing
2403 * @dev directly once you have called this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405void device_initialize(struct device *dev)
2406{
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06002407 dev->kobj.kset = devices_kset;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -07002408 kobject_init(&dev->kobj, &device_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 INIT_LIST_HEAD(&dev->dma_pools);
Thomas Gleixner31427882010-01-29 20:39:02 +00002410 mutex_init(&dev->mutex);
Dan Williams87a30e12019-07-17 18:08:26 -07002411#ifdef CONFIG_PROVE_LOCKING
2412 mutex_init(&dev->lockdep_mutex);
2413#endif
Peter Zijlstra1704f472010-03-19 01:37:42 +01002414 lockdep_set_novalidate_class(&dev->mutex);
Tejun Heo9ac78492007-01-20 16:00:26 +09002415 spin_lock_init(&dev->devres_lock);
2416 INIT_LIST_HEAD(&dev->devres_head);
Alan Stern3b98aea2008-08-07 13:06:12 -04002417 device_pm_init(dev);
Christoph Hellwig87348132006-12-06 20:32:33 -08002418 set_dev_node(dev, -1);
Jiang Liu4a7cc832015-07-09 16:00:44 +08002419#ifdef CONFIG_GENERIC_MSI_IRQ
2420 INIT_LIST_HEAD(&dev->msi_list);
2421#endif
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01002422 INIT_LIST_HEAD(&dev->links.consumers);
2423 INIT_LIST_HEAD(&dev->links.suppliers);
Saravana Kannane2ae9bc2019-09-04 14:11:21 -07002424 INIT_LIST_HEAD(&dev->links.needs_suppliers);
Saravana Kannanec7bd782020-07-01 12:42:58 -07002425 INIT_LIST_HEAD(&dev->links.defer_hook);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01002426 dev->links.status = DL_DEV_NO_DRIVER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
David Graham White86df2682013-07-21 20:41:14 -04002428EXPORT_SYMBOL_GPL(device_initialize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Tejun Heod73ce002013-03-12 11:30:05 -07002430struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07002431{
Kay Sievers86406242007-03-14 03:25:56 +01002432 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07002433
Kay Sievers86406242007-03-14 03:25:56 +01002434 if (!virtual_dir)
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08002435 virtual_dir = kobject_create_and_add("virtual",
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06002436 &devices_kset->kobj);
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07002437
Kay Sievers86406242007-03-14 03:25:56 +01002438 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07002439}
2440
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07002441struct class_dir {
2442 struct kobject kobj;
2443 struct class *class;
2444};
2445
2446#define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
2447
2448static void class_dir_release(struct kobject *kobj)
2449{
2450 struct class_dir *dir = to_class_dir(kobj);
2451 kfree(dir);
2452}
2453
2454static const
2455struct kobj_ns_type_operations *class_dir_child_ns_type(struct kobject *kobj)
2456{
2457 struct class_dir *dir = to_class_dir(kobj);
2458 return dir->class->ns_type;
2459}
2460
2461static struct kobj_type class_dir_ktype = {
2462 .release = class_dir_release,
2463 .sysfs_ops = &kobj_sysfs_ops,
2464 .child_ns_type = class_dir_child_ns_type
2465};
2466
2467static struct kobject *
2468class_dir_create_and_add(struct class *class, struct kobject *parent_kobj)
2469{
2470 struct class_dir *dir;
2471 int retval;
2472
2473 dir = kzalloc(sizeof(*dir), GFP_KERNEL);
2474 if (!dir)
Tetsuo Handa84d0c272018-05-07 19:10:31 +09002475 return ERR_PTR(-ENOMEM);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07002476
2477 dir->class = class;
2478 kobject_init(&dir->kobj, &class_dir_ktype);
2479
Kay Sievers6b6e39a2010-11-15 23:13:18 +01002480 dir->kobj.kset = &class->p->glue_dirs;
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07002481
2482 retval = kobject_add(&dir->kobj, parent_kobj, "%s", class->name);
2483 if (retval < 0) {
2484 kobject_put(&dir->kobj);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09002485 return ERR_PTR(retval);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07002486 }
2487 return &dir->kobj;
2488}
2489
Yijing Wange4a60d12014-11-07 12:05:49 +08002490static DEFINE_MUTEX(gdp_mutex);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07002491
Kay Sieversda231fd2007-11-21 17:29:15 +01002492static struct kobject *get_device_parent(struct device *dev,
2493 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +01002494{
Kay Sievers86406242007-03-14 03:25:56 +01002495 if (dev->class) {
2496 struct kobject *kobj = NULL;
2497 struct kobject *parent_kobj;
2498 struct kobject *k;
2499
Randy Dunlapead454f2010-09-24 14:36:49 -07002500#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -07002501 /* block disks show up in /sys/block */
Andi Kleene52eec12010-09-08 16:54:17 +02002502 if (sysfs_deprecated && dev->class == &block_class) {
Kay Sievers39aba962010-09-04 22:33:14 -07002503 if (parent && parent->class == &block_class)
2504 return &parent->kobj;
Kay Sievers6b6e39a2010-11-15 23:13:18 +01002505 return &block_class.p->subsys.kobj;
Kay Sievers39aba962010-09-04 22:33:14 -07002506 }
Randy Dunlapead454f2010-09-24 14:36:49 -07002507#endif
Andi Kleene52eec12010-09-08 16:54:17 +02002508
Kay Sievers86406242007-03-14 03:25:56 +01002509 /*
2510 * If we have no parent, we live in "virtual".
Kay Sievers0f4dafc2007-12-19 01:40:42 +01002511 * Class-devices with a non class-device as parent, live
2512 * in a "glue" directory to prevent namespace collisions.
Kay Sievers86406242007-03-14 03:25:56 +01002513 */
2514 if (parent == NULL)
2515 parent_kobj = virtual_device_parent(dev);
Eric W. Biederman24b14422010-07-24 22:43:35 -07002516 else if (parent->class && !dev->class->ns_type)
Kay Sievers86406242007-03-14 03:25:56 +01002517 return &parent->kobj;
2518 else
2519 parent_kobj = &parent->kobj;
2520
Tejun Heo77d3d7c2010-02-05 17:57:02 +09002521 mutex_lock(&gdp_mutex);
2522
Kay Sievers86406242007-03-14 03:25:56 +01002523 /* find our class-directory at the parent and reference it */
Kay Sievers6b6e39a2010-11-15 23:13:18 +01002524 spin_lock(&dev->class->p->glue_dirs.list_lock);
2525 list_for_each_entry(k, &dev->class->p->glue_dirs.list, entry)
Kay Sievers86406242007-03-14 03:25:56 +01002526 if (k->parent == parent_kobj) {
2527 kobj = kobject_get(k);
2528 break;
2529 }
Kay Sievers6b6e39a2010-11-15 23:13:18 +01002530 spin_unlock(&dev->class->p->glue_dirs.list_lock);
Tejun Heo77d3d7c2010-02-05 17:57:02 +09002531 if (kobj) {
2532 mutex_unlock(&gdp_mutex);
Kay Sievers86406242007-03-14 03:25:56 +01002533 return kobj;
Tejun Heo77d3d7c2010-02-05 17:57:02 +09002534 }
Kay Sievers86406242007-03-14 03:25:56 +01002535
2536 /* or create a new class-directory at the parent device */
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07002537 k = class_dir_create_and_add(dev->class, parent_kobj);
Kay Sievers0f4dafc2007-12-19 01:40:42 +01002538 /* do not emit an uevent for this simple "glue" directory */
Tejun Heo77d3d7c2010-02-05 17:57:02 +09002539 mutex_unlock(&gdp_mutex);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -08002540 return k;
Kay Sievers86406242007-03-14 03:25:56 +01002541 }
2542
Kay Sieversca22e562011-12-14 14:29:38 -08002543 /* subsystems can specify a default root directory for their devices */
2544 if (!parent && dev->bus && dev->bus->dev_root)
2545 return &dev->bus->dev_root->kobj;
2546
Kay Sievers86406242007-03-14 03:25:56 +01002547 if (parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +01002548 return &parent->kobj;
2549 return NULL;
2550}
Kay Sieversda231fd2007-11-21 17:29:15 +01002551
Ming Leicebf8fd2016-07-10 19:27:36 +08002552static inline bool live_in_glue_dir(struct kobject *kobj,
2553 struct device *dev)
2554{
2555 if (!kobj || !dev->class ||
2556 kobj->kset != &dev->class->p->glue_dirs)
2557 return false;
2558 return true;
2559}
2560
2561static inline struct kobject *get_glue_dir(struct device *dev)
2562{
2563 return dev->kobj.parent;
2564}
2565
2566/*
2567 * make sure cleaning up dir as the last step, we need to make
2568 * sure .release handler of kobject is run with holding the
2569 * global lock
2570 */
Cornelia Huck63b69712008-01-21 16:09:44 +01002571static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
Kay Sieversda231fd2007-11-21 17:29:15 +01002572{
Muchun Songac434322019-07-27 11:21:22 +08002573 unsigned int ref;
2574
Kay Sievers0f4dafc2007-12-19 01:40:42 +01002575 /* see if we live in a "glue" directory */
Ming Leicebf8fd2016-07-10 19:27:36 +08002576 if (!live_in_glue_dir(glue_dir, dev))
Kay Sieversda231fd2007-11-21 17:29:15 +01002577 return;
2578
Yijing Wange4a60d12014-11-07 12:05:49 +08002579 mutex_lock(&gdp_mutex);
Muchun Songac434322019-07-27 11:21:22 +08002580 /**
2581 * There is a race condition between removing glue directory
2582 * and adding a new device under the glue directory.
2583 *
2584 * CPU1: CPU2:
2585 *
2586 * device_add()
2587 * get_device_parent()
2588 * class_dir_create_and_add()
2589 * kobject_add_internal()
2590 * create_dir() // create glue_dir
2591 *
2592 * device_add()
2593 * get_device_parent()
2594 * kobject_get() // get glue_dir
2595 *
2596 * device_del()
2597 * cleanup_glue_dir()
2598 * kobject_del(glue_dir)
2599 *
2600 * kobject_add()
2601 * kobject_add_internal()
2602 * create_dir() // in glue_dir
2603 * sysfs_create_dir_ns()
2604 * kernfs_create_dir_ns(sd)
2605 *
2606 * sysfs_remove_dir() // glue_dir->sd=NULL
2607 * sysfs_put() // free glue_dir->sd
2608 *
2609 * // sd is freed
2610 * kernfs_new_node(sd)
2611 * kernfs_get(glue_dir)
2612 * kernfs_add_one()
2613 * kernfs_put()
2614 *
2615 * Before CPU1 remove last child device under glue dir, if CPU2 add
2616 * a new device under glue dir, the glue_dir kobject reference count
2617 * will be increase to 2 in kobject_get(k). And CPU2 has been called
2618 * kernfs_create_dir_ns(). Meanwhile, CPU1 call sysfs_remove_dir()
2619 * and sysfs_put(). This result in glue_dir->sd is freed.
2620 *
2621 * Then the CPU2 will see a stale "empty" but still potentially used
2622 * glue dir around in kernfs_new_node().
2623 *
2624 * In order to avoid this happening, we also should make sure that
2625 * kernfs_node for glue_dir is released in CPU1 only when refcount
2626 * for glue_dir kobj is 1.
2627 */
2628 ref = kref_read(&glue_dir->kref);
2629 if (!kobject_has_children(glue_dir) && !--ref)
Benjamin Herrenschmidt726e4102018-07-10 10:29:10 +10002630 kobject_del(glue_dir);
Kay Sievers0f4dafc2007-12-19 01:40:42 +01002631 kobject_put(glue_dir);
Yijing Wange4a60d12014-11-07 12:05:49 +08002632 mutex_unlock(&gdp_mutex);
Kay Sieversda231fd2007-11-21 17:29:15 +01002633}
Cornelia Huck63b69712008-01-21 16:09:44 +01002634
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002635static int device_add_class_symlinks(struct device *dev)
2636{
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11002637 struct device_node *of_node = dev_of_node(dev);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002638 int error;
2639
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11002640 if (of_node) {
Rob Herring0c3c2342017-10-04 14:04:01 -05002641 error = sysfs_create_link(&dev->kobj, of_node_kobj(of_node), "of_node");
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11002642 if (error)
2643 dev_warn(dev, "Error %d creating of_node link\n",error);
2644 /* An error here doesn't warrant bringing down the device */
2645 }
2646
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002647 if (!dev->class)
2648 return 0;
Kay Sieversda231fd2007-11-21 17:29:15 +01002649
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -07002650 error = sysfs_create_link(&dev->kobj,
Kay Sievers6b6e39a2010-11-15 23:13:18 +01002651 &dev->class->p->subsys.kobj,
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002652 "subsystem");
2653 if (error)
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11002654 goto out_devnode;
Kay Sieversda231fd2007-11-21 17:29:15 +01002655
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -08002656 if (dev->parent && device_is_not_partition(dev)) {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -07002657 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
2658 "device");
2659 if (error)
Kay Sievers39aba962010-09-04 22:33:14 -07002660 goto out_subsys;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002661 }
Kay Sievers39aba962010-09-04 22:33:14 -07002662
Randy Dunlapead454f2010-09-24 14:36:49 -07002663#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -07002664 /* /sys/block has directories and does not need symlinks */
Andi Kleene52eec12010-09-08 16:54:17 +02002665 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -07002666 return 0;
Randy Dunlapead454f2010-09-24 14:36:49 -07002667#endif
Kay Sievers39aba962010-09-04 22:33:14 -07002668
2669 /* link in the class directory pointing to the device */
Kay Sievers6b6e39a2010-11-15 23:13:18 +01002670 error = sysfs_create_link(&dev->class->p->subsys.kobj,
Kay Sievers39aba962010-09-04 22:33:14 -07002671 &dev->kobj, dev_name(dev));
2672 if (error)
2673 goto out_device;
2674
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002675 return 0;
2676
Kay Sievers39aba962010-09-04 22:33:14 -07002677out_device:
2678 sysfs_remove_link(&dev->kobj, "device");
Kay Sieversda231fd2007-11-21 17:29:15 +01002679
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002680out_subsys:
2681 sysfs_remove_link(&dev->kobj, "subsystem");
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11002682out_devnode:
2683 sysfs_remove_link(&dev->kobj, "of_node");
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002684 return error;
2685}
2686
2687static void device_remove_class_symlinks(struct device *dev)
2688{
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11002689 if (dev_of_node(dev))
2690 sysfs_remove_link(&dev->kobj, "of_node");
2691
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002692 if (!dev->class)
2693 return;
Kay Sieversda231fd2007-11-21 17:29:15 +01002694
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -08002695 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +01002696 sysfs_remove_link(&dev->kobj, "device");
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002697 sysfs_remove_link(&dev->kobj, "subsystem");
Randy Dunlapead454f2010-09-24 14:36:49 -07002698#ifdef CONFIG_BLOCK
Andi Kleene52eec12010-09-08 16:54:17 +02002699 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -07002700 return;
Randy Dunlapead454f2010-09-24 14:36:49 -07002701#endif
Kay Sievers6b6e39a2010-11-15 23:13:18 +01002702 sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev));
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002703}
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705/**
Stephen Rothwell413c2392008-05-30 10:16:40 +10002706 * dev_set_name - set a device name
2707 * @dev: device
Randy Dunlap46232362008-06-04 21:40:43 -07002708 * @fmt: format string for the device's name
Stephen Rothwell413c2392008-05-30 10:16:40 +10002709 */
2710int dev_set_name(struct device *dev, const char *fmt, ...)
2711{
2712 va_list vargs;
Kay Sievers1fa5ae82009-01-25 15:17:37 +01002713 int err;
Stephen Rothwell413c2392008-05-30 10:16:40 +10002714
2715 va_start(vargs, fmt);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01002716 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
Stephen Rothwell413c2392008-05-30 10:16:40 +10002717 va_end(vargs);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01002718 return err;
Stephen Rothwell413c2392008-05-30 10:16:40 +10002719}
2720EXPORT_SYMBOL_GPL(dev_set_name);
2721
2722/**
Dan Williamse105b8b2008-04-21 10:51:07 -07002723 * device_to_dev_kobj - select a /sys/dev/ directory for the device
2724 * @dev: device
2725 *
2726 * By default we select char/ for new entries. Setting class->dev_obj
2727 * to NULL prevents an entry from being created. class->dev_kobj must
2728 * be set (or cleared) before any devices are registered to the class
2729 * otherwise device_create_sys_dev_entry() and
Peter Korsgaard0d4e293c2012-04-17 12:12:57 +02002730 * device_remove_sys_dev_entry() will disagree about the presence of
2731 * the link.
Dan Williamse105b8b2008-04-21 10:51:07 -07002732 */
2733static struct kobject *device_to_dev_kobj(struct device *dev)
2734{
2735 struct kobject *kobj;
2736
2737 if (dev->class)
2738 kobj = dev->class->dev_kobj;
2739 else
2740 kobj = sysfs_dev_char_kobj;
2741
2742 return kobj;
2743}
2744
2745static int device_create_sys_dev_entry(struct device *dev)
2746{
2747 struct kobject *kobj = device_to_dev_kobj(dev);
2748 int error = 0;
2749 char devt_str[15];
2750
2751 if (kobj) {
2752 format_dev_t(devt_str, dev->devt);
2753 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
2754 }
2755
2756 return error;
2757}
2758
2759static void device_remove_sys_dev_entry(struct device *dev)
2760{
2761 struct kobject *kobj = device_to_dev_kobj(dev);
2762 char devt_str[15];
2763
2764 if (kobj) {
2765 format_dev_t(devt_str, dev->devt);
2766 sysfs_remove_link(kobj, devt_str);
2767 }
2768}
2769
Shaokun Zhang46d3a032018-07-15 18:08:56 +08002770static int device_private_init(struct device *dev)
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07002771{
2772 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
2773 if (!dev->p)
2774 return -ENOMEM;
2775 dev->p->device = dev;
2776 klist_init(&dev->p->klist_children, klist_children_get,
2777 klist_children_put);
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -08002778 INIT_LIST_HEAD(&dev->p->deferred_probe);
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07002779 return 0;
2780}
2781
Dan Williamse105b8b2008-04-21 10:51:07 -07002782/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002783 * device_add - add device to device hierarchy.
2784 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002786 * This is part 2 of device_register(), though may be called
2787 * separately _iff_ device_initialize() has been called separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 *
Cornelia Huck57394112008-09-03 18:26:40 +02002789 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002790 * to the global and sibling lists for the device, then
2791 * adds it to the other relevant subsystems of the driver model.
Cornelia Huck57394112008-09-03 18:26:40 +02002792 *
Alan Sternb10d5ef2012-01-17 11:39:00 -05002793 * Do not call this routine or device_register() more than once for
2794 * any device structure. The driver model core is not designed to work
2795 * with devices that get unregistered and then spring back to life.
2796 * (Among other things, it's very hard to guarantee that all references
2797 * to the previous incarnation of @dev have been dropped.) Allocate
2798 * and register a fresh new struct device instead.
2799 *
Cornelia Huck57394112008-09-03 18:26:40 +02002800 * NOTE: _Never_ directly free @dev after calling this function, even
2801 * if it returned an error! Always use put_device() to give up your
2802 * reference instead.
Borislav Petkovaffada72019-04-18 19:41:56 +02002803 *
2804 * Rule of thumb is: if device_add() succeeds, you should call
2805 * device_del() when you want to get rid of it. If device_add() has
2806 * *not* succeeded, use *only* put_device() to drop the reference
2807 * count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 */
2809int device_add(struct device *dev)
2810{
Viresh Kumar35dbf4e2017-03-17 12:24:22 +05302811 struct device *parent;
Kay Sieversca22e562011-12-14 14:29:38 -08002812 struct kobject *kobj;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02002813 struct class_interface *class_intf;
Saravana Kannan5f5377e2020-05-14 22:34:58 -07002814 int error = -EINVAL;
Ming Leicebf8fd2016-07-10 19:27:36 +08002815 struct kobject *glue_dir = NULL;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01002816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 dev = get_device(dev);
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07002818 if (!dev)
2819 goto done;
2820
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08002821 if (!dev->p) {
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07002822 error = device_private_init(dev);
2823 if (error)
2824 goto done;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08002825 }
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08002826
Kay Sievers1fa5ae82009-01-25 15:17:37 +01002827 /*
2828 * for statically allocated devices, which should all be converted
2829 * some day, we need to initialize the name. We prevent reading back
2830 * the name, and force the use of dev_name()
2831 */
2832 if (dev->init_name) {
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07002833 dev_set_name(dev, "%s", dev->init_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01002834 dev->init_name = NULL;
2835 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07002836
Kay Sieversca22e562011-12-14 14:29:38 -08002837 /* subsystems can specify simple device enumeration */
2838 if (!dev_name(dev) && dev->bus && dev->bus->dev_name)
2839 dev_set_name(dev, "%s%u", dev->bus->dev_name, dev->id);
2840
Thomas Gleixnere6309e72009-12-10 19:32:49 +00002841 if (!dev_name(dev)) {
2842 error = -EINVAL;
Kay Sievers5c8563d2009-05-28 14:24:07 -07002843 goto name_error;
Thomas Gleixnere6309e72009-12-10 19:32:49 +00002844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01002846 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -07002847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 parent = get_device(dev->parent);
Kay Sieversca22e562011-12-14 14:29:38 -08002849 kobj = get_device_parent(dev, parent);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09002850 if (IS_ERR(kobj)) {
2851 error = PTR_ERR(kobj);
2852 goto parent_error;
2853 }
Kay Sieversca22e562011-12-14 14:29:38 -08002854 if (kobj)
2855 dev->kobj.parent = kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
Yinghai Lu0d358f22008-02-19 03:20:41 -08002857 /* use parent numa_node */
Zhen Lei56f2de82015-08-25 12:08:22 +08002858 if (parent && (dev_to_node(dev) == NUMA_NO_NODE))
Yinghai Lu0d358f22008-02-19 03:20:41 -08002859 set_dev_node(dev, dev_to_node(parent));
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 /* first, register with generic layer. */
Kay Sievers8a577ff2009-04-18 15:05:45 -07002862 /* we require the name to be set before, and pass NULL */
2863 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
Ming Leicebf8fd2016-07-10 19:27:36 +08002864 if (error) {
2865 glue_dir = get_glue_dir(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 goto Error;
Ming Leicebf8fd2016-07-10 19:27:36 +08002867 }
Kay Sieversa7fd6702005-10-01 14:49:43 +02002868
Brian Walsh37022642006-08-14 22:43:19 -07002869 /* notify platform of device entry */
Heikki Krogerus07de0e82018-11-09 17:21:34 +03002870 error = device_platform_notify(dev, KOBJ_ADD);
2871 if (error)
2872 goto platform_error;
Brian Walsh37022642006-08-14 22:43:19 -07002873
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002874 error = device_create_file(dev, &dev_attr_uevent);
Cornelia Hucka306eea2006-09-22 11:37:13 +02002875 if (error)
2876 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +02002877
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002878 error = device_add_class_symlinks(dev);
2879 if (error)
2880 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -07002881 error = device_add_attrs(dev);
2882 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002883 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -07002884 error = bus_add_device(dev);
2885 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 goto BusError;
Alan Stern3b98aea2008-08-07 13:06:12 -04002887 error = dpm_sysfs_add(dev);
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +01002888 if (error)
Alan Stern3b98aea2008-08-07 13:06:12 -04002889 goto DPMError;
2890 device_pm_add(dev);
Alan Sternec0676ee2008-12-05 14:10:31 -05002891
Sergey Klyaus0cd75042014-10-08 11:31:54 +04002892 if (MAJOR(dev->devt)) {
2893 error = device_create_file(dev, &dev_attr_dev);
2894 if (error)
2895 goto DevAttrError;
2896
2897 error = device_create_sys_dev_entry(dev);
2898 if (error)
2899 goto SysEntryError;
2900
2901 devtmpfs_create_node(dev);
2902 }
2903
Alan Sternec0676ee2008-12-05 14:10:31 -05002904 /* Notify clients of device addition. This call must come
majianpeng268863f2012-01-11 15:12:06 +00002905 * after dpm_sysfs_add() and before kobject_uevent().
Alan Sternec0676ee2008-12-05 14:10:31 -05002906 */
2907 if (dev->bus)
2908 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
2909 BUS_NOTIFY_ADD_DEVICE, dev);
2910
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +02002911 kobject_uevent(&dev->kobj, KOBJ_ADD);
Saravana Kannan372a67c2019-09-04 14:11:20 -07002912
Saravana Kannane2ae9bc2019-09-04 14:11:21 -07002913 /*
2914 * Check if any of the other devices (consumers) have been waiting for
2915 * this device (supplier) to be added so that they can create a device
2916 * link to it.
2917 *
2918 * This needs to happen after device_pm_add() because device_link_add()
2919 * requires the supplier be registered before it's called.
2920 *
Saravana Kannan2cd38fd2020-05-19 20:48:21 -07002921 * But this also needs to happen before bus_probe_device() to make sure
Saravana Kannane2ae9bc2019-09-04 14:11:21 -07002922 * waiting consumers can link to it before the driver is bound to the
2923 * device and the driver sync_state callback is called for this device.
2924 */
Saravana Kannan2cd38fd2020-05-19 20:48:21 -07002925 if (dev->fwnode && !dev->fwnode->dev) {
2926 dev->fwnode->dev = dev;
Saravana Kannan5f5377e2020-05-14 22:34:58 -07002927 fw_devlink_link_device(dev);
Saravana Kannan03324502019-10-28 15:00:24 -07002928 }
Saravana Kannane2ae9bc2019-09-04 14:11:21 -07002929
Alan Stern2023c612009-07-30 15:27:18 -04002930 bus_probe_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002932 klist_add_tail(&dev->p->knode_parent,
2933 &parent->p->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07002935 if (dev->class) {
Kay Sieversca22e562011-12-14 14:29:38 -08002936 mutex_lock(&dev->class->p->mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02002937 /* tie the class to the device */
Wei Yang570d0202019-01-18 10:34:59 +08002938 klist_add_tail(&dev->p->knode_class,
Kay Sievers6b6e39a2010-11-15 23:13:18 +01002939 &dev->class->p->klist_devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02002940
2941 /* notify any interfaces that the device is here */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07002942 list_for_each_entry(class_intf,
Kay Sieversca22e562011-12-14 14:29:38 -08002943 &dev->class->p->interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02002944 if (class_intf->add_dev)
2945 class_intf->add_dev(dev, class_intf);
Kay Sieversca22e562011-12-14 14:29:38 -08002946 mutex_unlock(&dev->class->p->mutex);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07002947 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07002948done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 put_device(dev);
2950 return error;
Sergey Klyaus0cd75042014-10-08 11:31:54 +04002951 SysEntryError:
2952 if (MAJOR(dev->devt))
2953 device_remove_file(dev, &dev_attr_dev);
2954 DevAttrError:
2955 device_pm_remove(dev);
2956 dpm_sysfs_remove(dev);
Alan Stern3b98aea2008-08-07 13:06:12 -04002957 DPMError:
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +01002958 bus_remove_device(dev);
2959 BusError:
James Simmons82f0cf92007-02-21 17:44:51 +00002960 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002961 AttrsError:
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002962 device_remove_class_symlinks(dev);
2963 SymlinkError:
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002964 device_remove_file(dev, &dev_attr_uevent);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002965 attrError:
Heikki Krogerus07de0e82018-11-09 17:21:34 +03002966 device_platform_notify(dev, KOBJ_REMOVE);
2967platform_error:
Kay Sievers312c0042005-11-16 09:00:00 +01002968 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Ming Leicebf8fd2016-07-10 19:27:36 +08002969 glue_dir = get_glue_dir(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 kobject_del(&dev->kobj);
2971 Error:
Ming Leicebf8fd2016-07-10 19:27:36 +08002972 cleanup_glue_dir(dev, glue_dir);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09002973parent_error:
Markus Elfring5f0163a2015-02-05 11:48:26 +01002974 put_device(parent);
Kay Sievers5c8563d2009-05-28 14:24:07 -07002975name_error:
2976 kfree(dev->p);
2977 dev->p = NULL;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07002978 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979}
David Graham White86df2682013-07-21 20:41:14 -04002980EXPORT_SYMBOL_GPL(device_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002983 * device_register - register a device with the system.
2984 * @dev: pointer to the device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002986 * This happens in two clean steps - initialize the device
2987 * and add it to the system. The two steps can be called
2988 * separately, but this is the easiest and most common.
2989 * I.e. you should only call the two helpers separately if
2990 * have a clearly defined need to use and refcount the device
2991 * before it is added to the hierarchy.
Cornelia Huck57394112008-09-03 18:26:40 +02002992 *
Alan Sternb10d5ef2012-01-17 11:39:00 -05002993 * For more information, see the kerneldoc for device_initialize()
2994 * and device_add().
2995 *
Cornelia Huck57394112008-09-03 18:26:40 +02002996 * NOTE: _Never_ directly free @dev after calling this function, even
2997 * if it returned an error! Always use put_device() to give up the
2998 * reference initialized in this function instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000int device_register(struct device *dev)
3001{
3002 device_initialize(dev);
3003 return device_add(dev);
3004}
David Graham White86df2682013-07-21 20:41:14 -04003005EXPORT_SYMBOL_GPL(device_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003008 * get_device - increment reference count for device.
3009 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003011 * This simply forwards the call to kobject_get(), though
3012 * we do take care to provide for the case that we get a NULL
3013 * pointer passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003015struct device *get_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02003017 return dev ? kobj_to_dev(kobject_get(&dev->kobj)) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018}
David Graham White86df2682013-07-21 20:41:14 -04003019EXPORT_SYMBOL_GPL(get_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003022 * put_device - decrement reference count.
3023 * @dev: device in question.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003025void put_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02003027 /* might_sleep(); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 if (dev)
3029 kobject_put(&dev->kobj);
3030}
David Graham White86df2682013-07-21 20:41:14 -04003031EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Dan Williams00289cd2019-07-17 18:07:53 -07003033bool kill_device(struct device *dev)
3034{
3035 /*
3036 * Require the device lock and set the "dead" flag to guarantee that
3037 * the update behavior is consistent with the other bitfields near
3038 * it and that we cannot have an asynchronous probe routine trying
3039 * to run while we are tearing out the bus/class/sysfs from
3040 * underneath the device.
3041 */
3042 lockdep_assert_held(&dev->mutex);
3043
3044 if (dev->p->dead)
3045 return false;
3046 dev->p->dead = true;
3047 return true;
3048}
3049EXPORT_SYMBOL_GPL(kill_device);
3050
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003052 * device_del - delete device from system.
3053 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003055 * This is the first part of the device unregistration
3056 * sequence. This removes the device from the lists we control
3057 * from here, has it removed from the other driver model
3058 * subsystems it was added to in device_add(), and removes it
3059 * from the kobject hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003061 * NOTE: this should be called manually _iff_ device_add() was
3062 * also called manually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003064void device_del(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003066 struct device *parent = dev->parent;
Ming Leicebf8fd2016-07-10 19:27:36 +08003067 struct kobject *glue_dir = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02003068 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Alexander Duyck3451a492019-01-22 10:39:10 -08003070 device_lock(dev);
Dan Williams00289cd2019-07-17 18:07:53 -07003071 kill_device(dev);
Alexander Duyck3451a492019-01-22 10:39:10 -08003072 device_unlock(dev);
3073
Saravana Kannan372a67c2019-09-04 14:11:20 -07003074 if (dev->fwnode && dev->fwnode->dev == dev)
3075 dev->fwnode->dev = NULL;
3076
Alan Sternec0676ee2008-12-05 14:10:31 -05003077 /* Notify clients of device removal. This call must come
3078 * before dpm_sysfs_remove().
3079 */
3080 if (dev->bus)
3081 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
3082 BUS_NOTIFY_DEL_DEVICE, dev);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01003083
Alan Stern3b98aea2008-08-07 13:06:12 -04003084 dpm_sysfs_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08003086 klist_del(&dev->p->knode_parent);
Dan Williamse105b8b2008-04-21 10:51:07 -07003087 if (MAJOR(dev->devt)) {
Kay Sievers2b2af542009-04-30 15:23:42 +02003088 devtmpfs_delete_node(dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07003089 device_remove_sys_dev_entry(dev);
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07003090 device_remove_file(dev, &dev_attr_dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07003091 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02003092 if (dev->class) {
Kay Sieversda231fd2007-11-21 17:29:15 +01003093 device_remove_class_symlinks(dev);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02003094
Kay Sieversca22e562011-12-14 14:29:38 -08003095 mutex_lock(&dev->class->p->mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02003096 /* notify any interfaces that the device is now gone */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07003097 list_for_each_entry(class_intf,
Kay Sieversca22e562011-12-14 14:29:38 -08003098 &dev->class->p->interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02003099 if (class_intf->remove_dev)
3100 class_intf->remove_dev(dev, class_intf);
3101 /* remove the device from the class list */
Wei Yang570d0202019-01-18 10:34:59 +08003102 klist_del(&dev->p->knode_class);
Kay Sieversca22e562011-12-14 14:29:38 -08003103 mutex_unlock(&dev->class->p->mutex);
Kay Sieversb9d9c822006-06-15 15:31:56 +02003104 }
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07003105 device_remove_file(dev, &dev_attr_uevent);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07003106 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08003107 bus_remove_device(dev);
LongX Zhang4b6d1f122012-10-25 00:21:28 +02003108 device_pm_remove(dev);
Grant Likelyd1c34142012-03-05 08:47:41 -07003109 driver_deferred_probe_del(dev);
Heikki Krogerus07de0e82018-11-09 17:21:34 +03003110 device_platform_notify(dev, KOBJ_REMOVE);
Lukas Wunner478573c2016-07-28 02:25:41 +02003111 device_remove_properties(dev);
Jeffy Chen2ec16152017-10-20 20:01:01 +08003112 device_links_purge(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Joerg Roedel599bad32014-09-30 13:02:02 +02003114 if (dev->bus)
3115 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
3116 BUS_NOTIFY_REMOVED_DEVICE, dev);
Kay Sievers312c0042005-11-16 09:00:00 +01003117 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Ming Leicebf8fd2016-07-10 19:27:36 +08003118 glue_dir = get_glue_dir(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 kobject_del(&dev->kobj);
Ming Leicebf8fd2016-07-10 19:27:36 +08003120 cleanup_glue_dir(dev, glue_dir);
Kay Sieversda231fd2007-11-21 17:29:15 +01003121 put_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122}
David Graham White86df2682013-07-21 20:41:14 -04003123EXPORT_SYMBOL_GPL(device_del);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003126 * device_unregister - unregister device from system.
3127 * @dev: device going away.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003129 * We do this in two parts, like we do device_register(). First,
3130 * we remove it from all the subsystems with device_del(), then
3131 * we decrement the reference count via put_device(). If that
3132 * is the final reference count, the device will be cleaned up
3133 * via device_release() above. Otherwise, the structure will
3134 * stick around until the final reference to the device is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003136void device_unregister(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01003138 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 device_del(dev);
3140 put_device(dev);
3141}
David Graham White86df2682013-07-21 20:41:14 -04003142EXPORT_SYMBOL_GPL(device_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
Andy Shevchenko3d060ae2015-07-27 18:04:00 +03003144static struct device *prev_device(struct klist_iter *i)
3145{
3146 struct klist_node *n = klist_prev(i);
3147 struct device *dev = NULL;
3148 struct device_private *p;
3149
3150 if (n) {
3151 p = to_device_private_parent(n);
3152 dev = p->device;
3153 }
3154 return dev;
3155}
3156
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003157static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08003158{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003159 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08003160 struct device *dev = NULL;
3161 struct device_private *p;
3162
3163 if (n) {
3164 p = to_device_private_parent(n);
3165 dev = p->device;
3166 }
3167 return dev;
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08003168}
3169
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170/**
Kay Sieverse454cea2009-09-18 23:01:12 +02003171 * device_get_devnode - path of device node file
Kay Sievers6fcf53a2009-04-30 15:23:42 +02003172 * @dev: device
Kay Sieverse454cea2009-09-18 23:01:12 +02003173 * @mode: returned file access mode
Kay Sievers3c2670e2013-04-06 09:56:00 -07003174 * @uid: returned file owner
3175 * @gid: returned file group
Kay Sievers6fcf53a2009-04-30 15:23:42 +02003176 * @tmp: possibly allocated string
3177 *
3178 * Return the relative path of a possible device node.
3179 * Non-default names may need to allocate a memory to compose
3180 * a name. This memory is returned in tmp and needs to be
3181 * freed by the caller.
3182 */
Kay Sieverse454cea2009-09-18 23:01:12 +02003183const char *device_get_devnode(struct device *dev,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07003184 umode_t *mode, kuid_t *uid, kgid_t *gid,
Kay Sievers3c2670e2013-04-06 09:56:00 -07003185 const char **tmp)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02003186{
3187 char *s;
3188
3189 *tmp = NULL;
3190
3191 /* the device type may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02003192 if (dev->type && dev->type->devnode)
Kay Sievers3c2670e2013-04-06 09:56:00 -07003193 *tmp = dev->type->devnode(dev, mode, uid, gid);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02003194 if (*tmp)
3195 return *tmp;
3196
3197 /* the class may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02003198 if (dev->class && dev->class->devnode)
3199 *tmp = dev->class->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02003200 if (*tmp)
3201 return *tmp;
3202
3203 /* return name without allocation, tmp == NULL */
3204 if (strchr(dev_name(dev), '!') == NULL)
3205 return dev_name(dev);
3206
3207 /* replace '!' in the name with '/' */
Rasmus Villemoesa29fd612015-06-25 15:02:33 -07003208 s = kstrdup(dev_name(dev), GFP_KERNEL);
3209 if (!s)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02003210 return NULL;
Rasmus Villemoesa29fd612015-06-25 15:02:33 -07003211 strreplace(s, '!', '/');
3212 return *tmp = s;
Kay Sievers6fcf53a2009-04-30 15:23:42 +02003213}
3214
3215/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003216 * device_for_each_child - device child iterator.
3217 * @parent: parent struct device.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003218 * @fn: function to be called for each device.
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -04003219 * @data: data for the callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003221 * Iterate over @parent's child devices, and call @fn for each,
3222 * passing it @data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003224 * We check the return of @fn each time. If it returns anything
3225 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003227int device_for_each_child(struct device *parent, void *data,
3228 int (*fn)(struct device *dev, void *data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08003230 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003231 struct device *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 int error = 0;
3233
Greg Kroah-Hartman014c90db2009-04-15 16:00:12 -07003234 if (!parent->p)
3235 return 0;
3236
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08003237 klist_iter_init(&parent->p->klist_children, &i);
Gimcuan Hui93ead7c2017-11-11 05:52:54 +00003238 while (!error && (child = next_device(&i)))
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08003239 error = fn(child, data);
3240 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 return error;
3242}
David Graham White86df2682013-07-21 20:41:14 -04003243EXPORT_SYMBOL_GPL(device_for_each_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Cornelia Huck5ab69982006-11-16 15:42:07 +01003245/**
Andy Shevchenko3d060ae2015-07-27 18:04:00 +03003246 * device_for_each_child_reverse - device child iterator in reversed order.
3247 * @parent: parent struct device.
3248 * @fn: function to be called for each device.
3249 * @data: data for the callback.
3250 *
3251 * Iterate over @parent's child devices, and call @fn for each,
3252 * passing it @data.
3253 *
3254 * We check the return of @fn each time. If it returns anything
3255 * other than 0, we break out and return that value.
3256 */
3257int device_for_each_child_reverse(struct device *parent, void *data,
3258 int (*fn)(struct device *dev, void *data))
3259{
3260 struct klist_iter i;
3261 struct device *child;
3262 int error = 0;
3263
3264 if (!parent->p)
3265 return 0;
3266
3267 klist_iter_init(&parent->p->klist_children, &i);
3268 while ((child = prev_device(&i)) && !error)
3269 error = fn(child, data);
3270 klist_iter_exit(&i);
3271 return error;
3272}
3273EXPORT_SYMBOL_GPL(device_for_each_child_reverse);
3274
3275/**
Cornelia Huck5ab69982006-11-16 15:42:07 +01003276 * device_find_child - device iterator for locating a particular device.
3277 * @parent: parent struct device
Cornelia Huck5ab69982006-11-16 15:42:07 +01003278 * @match: Callback function to check device
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -04003279 * @data: Data to pass to match function
Cornelia Huck5ab69982006-11-16 15:42:07 +01003280 *
3281 * This is similar to the device_for_each_child() function above, but it
3282 * returns a reference to a device that is 'found' for later use, as
3283 * determined by the @match callback.
3284 *
3285 * The callback should return 0 if the device doesn't match and non-zero
3286 * if it does. If the callback returns non-zero and a reference to the
3287 * current device can be obtained, this function will return to the caller
3288 * and not iterate over any more devices.
Federico Vagaa4e24002013-04-15 11:18:11 +02003289 *
3290 * NOTE: you will need to drop the reference with put_device() after use.
Cornelia Huck5ab69982006-11-16 15:42:07 +01003291 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003292struct device *device_find_child(struct device *parent, void *data,
3293 int (*match)(struct device *dev, void *data))
Cornelia Huck5ab69982006-11-16 15:42:07 +01003294{
3295 struct klist_iter i;
3296 struct device *child;
3297
3298 if (!parent)
3299 return NULL;
3300
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08003301 klist_iter_init(&parent->p->klist_children, &i);
Cornelia Huck5ab69982006-11-16 15:42:07 +01003302 while ((child = next_device(&i)))
3303 if (match(child, data) && get_device(child))
3304 break;
3305 klist_iter_exit(&i);
3306 return child;
3307}
David Graham White86df2682013-07-21 20:41:14 -04003308EXPORT_SYMBOL_GPL(device_find_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01003309
Heikki Krogerusdad9bb02019-05-31 17:15:37 +03003310/**
3311 * device_find_child_by_name - device iterator for locating a child device.
3312 * @parent: parent struct device
3313 * @name: name of the child device
3314 *
3315 * This is similar to the device_find_child() function above, but it
3316 * returns a reference to a device that has the name @name.
3317 *
3318 * NOTE: you will need to drop the reference with put_device() after use.
3319 */
3320struct device *device_find_child_by_name(struct device *parent,
3321 const char *name)
3322{
3323 struct klist_iter i;
3324 struct device *child;
3325
3326 if (!parent)
3327 return NULL;
3328
3329 klist_iter_init(&parent->p->klist_children, &i);
3330 while ((child = next_device(&i)))
3331 if (!strcmp(dev_name(child), name) && get_device(child))
3332 break;
3333 klist_iter_exit(&i);
3334 return child;
3335}
3336EXPORT_SYMBOL_GPL(device_find_child_by_name);
3337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338int __init devices_init(void)
3339{
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06003340 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
3341 if (!devices_kset)
3342 return -ENOMEM;
Dan Williamse105b8b2008-04-21 10:51:07 -07003343 dev_kobj = kobject_create_and_add("dev", NULL);
3344 if (!dev_kobj)
3345 goto dev_kobj_err;
3346 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
3347 if (!sysfs_dev_block_kobj)
3348 goto block_kobj_err;
3349 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
3350 if (!sysfs_dev_char_kobj)
3351 goto char_kobj_err;
3352
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06003353 return 0;
Dan Williamse105b8b2008-04-21 10:51:07 -07003354
3355 char_kobj_err:
3356 kobject_put(sysfs_dev_block_kobj);
3357 block_kobj_err:
3358 kobject_put(dev_kobj);
3359 dev_kobj_err:
3360 kset_unregister(devices_kset);
3361 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362}
3363
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02003364static int device_check_offline(struct device *dev, void *not_used)
3365{
3366 int ret;
3367
3368 ret = device_for_each_child(dev, NULL, device_check_offline);
3369 if (ret)
3370 return ret;
3371
3372 return device_supports_offline(dev) && !dev->offline ? -EBUSY : 0;
3373}
3374
3375/**
3376 * device_offline - Prepare the device for hot-removal.
3377 * @dev: Device to be put offline.
3378 *
3379 * Execute the device bus type's .offline() callback, if present, to prepare
3380 * the device for a subsequent hot-removal. If that succeeds, the device must
3381 * not be used until either it is removed or its bus type's .online() callback
3382 * is executed.
3383 *
3384 * Call under device_hotplug_lock.
3385 */
3386int device_offline(struct device *dev)
3387{
3388 int ret;
3389
3390 if (dev->offline_disabled)
3391 return -EPERM;
3392
3393 ret = device_for_each_child(dev, NULL, device_check_offline);
3394 if (ret)
3395 return ret;
3396
3397 device_lock(dev);
3398 if (device_supports_offline(dev)) {
3399 if (dev->offline) {
3400 ret = 1;
3401 } else {
3402 ret = dev->bus->offline(dev);
3403 if (!ret) {
3404 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
3405 dev->offline = true;
3406 }
3407 }
3408 }
3409 device_unlock(dev);
3410
3411 return ret;
3412}
3413
3414/**
3415 * device_online - Put the device back online after successful device_offline().
3416 * @dev: Device to be put back online.
3417 *
3418 * If device_offline() has been successfully executed for @dev, but the device
3419 * has not been removed subsequently, execute its bus type's .online() callback
3420 * to indicate that the device can be used again.
3421 *
3422 * Call under device_hotplug_lock.
3423 */
3424int device_online(struct device *dev)
3425{
3426 int ret = 0;
3427
3428 device_lock(dev);
3429 if (device_supports_offline(dev)) {
3430 if (dev->offline) {
3431 ret = dev->bus->online(dev);
3432 if (!ret) {
3433 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
3434 dev->offline = false;
3435 }
3436 } else {
3437 ret = 1;
3438 }
3439 }
3440 device_unlock(dev);
3441
3442 return ret;
3443}
3444
Karthigan Srinivasan7f100d12011-04-18 16:16:52 -05003445struct root_device {
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00003446 struct device dev;
3447 struct module *owner;
3448};
3449
Josh Triplett93058422012-11-18 21:27:55 -08003450static inline struct root_device *to_root_device(struct device *d)
Ferenc Wagner481e2072011-01-07 15:17:47 +01003451{
3452 return container_of(d, struct root_device, dev);
3453}
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00003454
3455static void root_device_release(struct device *dev)
3456{
3457 kfree(to_root_device(dev));
3458}
3459
3460/**
3461 * __root_device_register - allocate and register a root device
3462 * @name: root device name
3463 * @owner: owner module of the root device, usually THIS_MODULE
3464 *
3465 * This function allocates a root device and registers it
3466 * using device_register(). In order to free the returned
3467 * device, use root_device_unregister().
3468 *
3469 * Root devices are dummy devices which allow other devices
3470 * to be grouped under /sys/devices. Use this function to
3471 * allocate a root device and then use it as the parent of
3472 * any device which should appear under /sys/devices/{name}
3473 *
3474 * The /sys/devices/{name} directory will also contain a
3475 * 'module' symlink which points to the @owner directory
3476 * in sysfs.
3477 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02003478 * Returns &struct device pointer on success, or ERR_PTR() on error.
3479 *
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00003480 * Note: You probably want to use root_device_register().
3481 */
3482struct device *__root_device_register(const char *name, struct module *owner)
3483{
3484 struct root_device *root;
3485 int err = -ENOMEM;
3486
3487 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
3488 if (!root)
3489 return ERR_PTR(err);
3490
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07003491 err = dev_set_name(&root->dev, "%s", name);
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00003492 if (err) {
3493 kfree(root);
3494 return ERR_PTR(err);
3495 }
3496
3497 root->dev.release = root_device_release;
3498
3499 err = device_register(&root->dev);
3500 if (err) {
3501 put_device(&root->dev);
3502 return ERR_PTR(err);
3503 }
3504
Christoph Egger1d9e8822010-05-17 16:57:58 +02003505#ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00003506 if (owner) {
3507 struct module_kobject *mk = &owner->mkobj;
3508
3509 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
3510 if (err) {
3511 device_unregister(&root->dev);
3512 return ERR_PTR(err);
3513 }
3514 root->owner = owner;
3515 }
3516#endif
3517
3518 return &root->dev;
3519}
3520EXPORT_SYMBOL_GPL(__root_device_register);
3521
3522/**
3523 * root_device_unregister - unregister and free a root device
Randy Dunlap7cbcf222009-01-20 16:29:13 -08003524 * @dev: device going away
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00003525 *
3526 * This function unregisters and cleans up a device that was created by
3527 * root_device_register().
3528 */
3529void root_device_unregister(struct device *dev)
3530{
3531 struct root_device *root = to_root_device(dev);
3532
3533 if (root->owner)
3534 sysfs_remove_link(&root->dev.kobj, "module");
3535
3536 device_unregister(dev);
3537}
3538EXPORT_SYMBOL_GPL(root_device_unregister);
3539
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07003540
3541static void device_create_release(struct device *dev)
3542{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01003543 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07003544 kfree(dev);
3545}
3546
Mathieu Malaterre6a8b55d2018-05-05 21:57:41 +02003547static __printf(6, 0) struct device *
Guenter Roeck39ef3112013-07-14 16:05:57 -07003548device_create_groups_vargs(struct class *class, struct device *parent,
3549 dev_t devt, void *drvdata,
3550 const struct attribute_group **groups,
3551 const char *fmt, va_list args)
3552{
3553 struct device *dev = NULL;
3554 int retval = -ENODEV;
3555
3556 if (class == NULL || IS_ERR(class))
3557 goto error;
3558
3559 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
3560 if (!dev) {
3561 retval = -ENOMEM;
3562 goto error;
3563 }
3564
David Herrmannbbc780f2013-11-21 20:15:48 +01003565 device_initialize(dev);
Guenter Roeck39ef3112013-07-14 16:05:57 -07003566 dev->devt = devt;
3567 dev->class = class;
3568 dev->parent = parent;
3569 dev->groups = groups;
3570 dev->release = device_create_release;
3571 dev_set_drvdata(dev, drvdata);
3572
3573 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
3574 if (retval)
3575 goto error;
3576
David Herrmannbbc780f2013-11-21 20:15:48 +01003577 retval = device_add(dev);
Guenter Roeck39ef3112013-07-14 16:05:57 -07003578 if (retval)
3579 goto error;
3580
3581 return dev;
3582
3583error:
3584 put_device(dev);
3585 return ERR_PTR(retval);
3586}
3587
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07003588/**
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07003589 * device_create - creates a device and registers it with sysfs
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07003590 * @class: pointer to the struct class that this device should be registered to
3591 * @parent: pointer to the parent struct device of this new device, if any
3592 * @devt: the dev_t for the char device to be added
3593 * @drvdata: the data to be added to the device for callbacks
3594 * @fmt: string for the device's name
3595 *
3596 * This function can be used by char device classes. A struct device
3597 * will be created in sysfs, registered to the specified class.
3598 *
3599 * A "dev" file will be created, showing the dev_t for the device, if
3600 * the dev_t is not 0,0.
3601 * If a pointer to a parent struct device is passed in, the newly created
3602 * struct device will be a child of that device in sysfs.
3603 * The pointer to the struct device will be returned from the call.
3604 * Any further sysfs files that might be required can be created using this
3605 * pointer.
3606 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02003607 * Returns &struct device pointer on success, or ERR_PTR() on error.
3608 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07003609 * Note: the struct class passed to this function must have previously
3610 * been created with a call to class_create().
3611 */
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07003612struct device *device_create(struct class *class, struct device *parent,
3613 dev_t devt, void *drvdata, const char *fmt, ...)
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07003614{
3615 va_list vargs;
3616 struct device *dev;
3617
3618 va_start(vargs, fmt);
Christoph Hellwig4c747462020-05-04 14:47:57 +02003619 dev = device_create_groups_vargs(class, parent, devt, drvdata, NULL,
3620 fmt, vargs);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07003621 va_end(vargs);
3622 return dev;
3623}
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07003624EXPORT_SYMBOL_GPL(device_create);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07003625
Guenter Roeck39ef3112013-07-14 16:05:57 -07003626/**
3627 * device_create_with_groups - creates a device and registers it with sysfs
3628 * @class: pointer to the struct class that this device should be registered to
3629 * @parent: pointer to the parent struct device of this new device, if any
3630 * @devt: the dev_t for the char device to be added
3631 * @drvdata: the data to be added to the device for callbacks
3632 * @groups: NULL-terminated list of attribute groups to be created
3633 * @fmt: string for the device's name
3634 *
3635 * This function can be used by char device classes. A struct device
3636 * will be created in sysfs, registered to the specified class.
3637 * Additional attributes specified in the groups parameter will also
3638 * be created automatically.
3639 *
3640 * A "dev" file will be created, showing the dev_t for the device, if
3641 * the dev_t is not 0,0.
3642 * If a pointer to a parent struct device is passed in, the newly created
3643 * struct device will be a child of that device in sysfs.
3644 * The pointer to the struct device will be returned from the call.
3645 * Any further sysfs files that might be required can be created using this
3646 * pointer.
3647 *
3648 * Returns &struct device pointer on success, or ERR_PTR() on error.
3649 *
3650 * Note: the struct class passed to this function must have previously
3651 * been created with a call to class_create().
3652 */
3653struct device *device_create_with_groups(struct class *class,
3654 struct device *parent, dev_t devt,
3655 void *drvdata,
3656 const struct attribute_group **groups,
3657 const char *fmt, ...)
3658{
3659 va_list vargs;
3660 struct device *dev;
3661
3662 va_start(vargs, fmt);
3663 dev = device_create_groups_vargs(class, parent, devt, drvdata, groups,
3664 fmt, vargs);
3665 va_end(vargs);
3666 return dev;
3667}
3668EXPORT_SYMBOL_GPL(device_create_with_groups);
3669
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01003670/**
3671 * device_destroy - removes a device that was created with device_create()
3672 * @class: pointer to the struct class that this device was registered with
3673 * @devt: the dev_t of the device that was previously registered
3674 *
3675 * This call unregisters and cleans up a device that was created with a
3676 * call to device_create().
3677 */
3678void device_destroy(struct class *class, dev_t devt)
3679{
3680 struct device *dev;
3681
Suzuki K Poulose4495dfd2019-07-23 23:18:35 +01003682 dev = class_find_device_by_devt(class, devt);
Dave Youngcd354492008-01-28 16:56:11 +08003683 if (dev) {
3684 put_device(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07003685 device_unregister(dev);
Dave Youngcd354492008-01-28 16:56:11 +08003686 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07003687}
3688EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003689
3690/**
3691 * device_rename - renames a device
3692 * @dev: the pointer to the struct device to be renamed
3693 * @new_name: the new name of the device
Eric W. Biederman030c1d22008-05-08 14:41:00 -07003694 *
3695 * It is the responsibility of the caller to provide mutual
3696 * exclusion between two different calls of device_rename
3697 * on the same device to ensure that new_name is valid and
3698 * won't conflict with other devices.
Michael Ellermanc6c0ac62010-11-25 09:44:07 +11003699 *
Timur Tabia5462512010-12-13 14:08:52 -06003700 * Note: Don't call this function. Currently, the networking layer calls this
3701 * function, but that will change. The following text from Kay Sievers offers
3702 * some insight:
3703 *
3704 * Renaming devices is racy at many levels, symlinks and other stuff are not
3705 * replaced atomically, and you get a "move" uevent, but it's not easy to
3706 * connect the event to the old and new device. Device nodes are not renamed at
3707 * all, there isn't even support for that in the kernel now.
3708 *
3709 * In the meantime, during renaming, your target name might be taken by another
3710 * driver, creating conflicts. Or the old name is taken directly after you
3711 * renamed it -- then you get events for the same DEVPATH, before you even see
3712 * the "move" event. It's just a mess, and nothing new should ever rely on
3713 * kernel device renaming. Besides that, it's not even implemented now for
3714 * other things than (driver-core wise very simple) network devices.
3715 *
3716 * We are currently about to change network renaming in udev to completely
3717 * disallow renaming of devices in the same namespace as the kernel uses,
3718 * because we can't solve the problems properly, that arise with swapping names
3719 * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
3720 * be allowed to some other name than eth[0-9]*, for the aforementioned
3721 * reasons.
3722 *
3723 * Make up a "real" name in the driver before you register anything, or add
3724 * some other attributes for userspace to find the device, or use udev to add
3725 * symlinks -- but never rename kernel devices later, it's a complete mess. We
3726 * don't even want to get into that and try to implement the missing pieces in
3727 * the core. We really have other pieces to fix in the driver core mess. :)
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003728 */
Johannes Berg6937e8f2010-08-05 17:38:18 +02003729int device_rename(struct device *dev, const char *new_name)
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003730{
Tejun Heo4b30ee52013-09-11 22:29:06 -04003731 struct kobject *kobj = &dev->kobj;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07003732 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003733 int error;
3734
3735 dev = get_device(dev);
3736 if (!dev)
3737 return -EINVAL;
3738
ethan.zhao69df7532013-10-13 22:12:35 +08003739 dev_dbg(dev, "renaming to %s\n", new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003740
Kay Sievers1fa5ae82009-01-25 15:17:37 +01003741 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07003742 if (!old_device_name) {
3743 error = -ENOMEM;
3744 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003745 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003746
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07003747 if (dev->class) {
Tejun Heo4b30ee52013-09-11 22:29:06 -04003748 error = sysfs_rename_link_ns(&dev->class->p->subsys.kobj,
3749 kobj, old_device_name,
3750 new_name, kobject_namespace(kobj));
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07003751 if (error)
3752 goto out;
3753 }
Kay Sievers39aba962010-09-04 22:33:14 -07003754
Tejun Heo4b30ee52013-09-11 22:29:06 -04003755 error = kobject_rename(kobj, new_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01003756 if (error)
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07003757 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003758
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07003759out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003760 put_device(dev);
3761
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07003762 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07003763
3764 return error;
3765}
Johannes Berga2807db2007-02-28 12:38:31 +01003766EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01003767
3768static int device_move_class_links(struct device *dev,
3769 struct device *old_parent,
3770 struct device *new_parent)
3771{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08003772 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01003773
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08003774 if (old_parent)
3775 sysfs_remove_link(&dev->kobj, "device");
3776 if (new_parent)
3777 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
3778 "device");
3779 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01003780}
3781
3782/**
3783 * device_move - moves a device to a new parent
3784 * @dev: the pointer to the struct device to be moved
Wolfram Sang13509862018-05-06 13:23:47 +02003785 * @new_parent: the new parent of the device (can be NULL)
Cornelia Huckffa6a702009-03-04 12:44:00 +01003786 * @dpm_order: how to reorder the dpm_list
Cornelia Huck8a824722006-11-20 17:07:51 +01003787 */
Cornelia Huckffa6a702009-03-04 12:44:00 +01003788int device_move(struct device *dev, struct device *new_parent,
3789 enum dpm_order dpm_order)
Cornelia Huck8a824722006-11-20 17:07:51 +01003790{
3791 int error;
3792 struct device *old_parent;
Cornelia Huckc744aeae2007-01-08 20:16:44 +01003793 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01003794
3795 dev = get_device(dev);
3796 if (!dev)
3797 return -EINVAL;
3798
Cornelia Huckffa6a702009-03-04 12:44:00 +01003799 device_pm_lock();
Cornelia Huck8a824722006-11-20 17:07:51 +01003800 new_parent = get_device(new_parent);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003801 new_parent_kobj = get_device_parent(dev, new_parent);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09003802 if (IS_ERR(new_parent_kobj)) {
3803 error = PTR_ERR(new_parent_kobj);
3804 put_device(new_parent);
3805 goto out;
3806 }
Cornelia Huck63b69712008-01-21 16:09:44 +01003807
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01003808 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
3809 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
Cornelia Huckc744aeae2007-01-08 20:16:44 +01003810 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01003811 if (error) {
Cornelia Huck63b69712008-01-21 16:09:44 +01003812 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01003813 put_device(new_parent);
3814 goto out;
3815 }
3816 old_parent = dev->parent;
3817 dev->parent = new_parent;
3818 if (old_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08003819 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08003820 if (new_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08003821 klist_add_tail(&dev->p->knode_parent,
3822 &new_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08003823 set_dev_node(dev, dev_to_node(new_parent));
3824 }
3825
Rabin Vincentbdd40342012-04-23 09:16:36 +02003826 if (dev->class) {
3827 error = device_move_class_links(dev, old_parent, new_parent);
3828 if (error) {
3829 /* We ignore errors on cleanup since we're hosed anyway... */
3830 device_move_class_links(dev, new_parent, old_parent);
3831 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
3832 if (new_parent)
3833 klist_remove(&dev->p->knode_parent);
3834 dev->parent = old_parent;
3835 if (old_parent) {
3836 klist_add_tail(&dev->p->knode_parent,
3837 &old_parent->p->klist_children);
3838 set_dev_node(dev, dev_to_node(old_parent));
3839 }
Yinghai Lu0d358f22008-02-19 03:20:41 -08003840 }
Rabin Vincentbdd40342012-04-23 09:16:36 +02003841 cleanup_glue_dir(dev, new_parent_kobj);
3842 put_device(new_parent);
3843 goto out;
Cornelia Huck8a824722006-11-20 17:07:51 +01003844 }
Cornelia Huck8a824722006-11-20 17:07:51 +01003845 }
Cornelia Huckffa6a702009-03-04 12:44:00 +01003846 switch (dpm_order) {
3847 case DPM_ORDER_NONE:
3848 break;
3849 case DPM_ORDER_DEV_AFTER_PARENT:
3850 device_pm_move_after(dev, new_parent);
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03003851 devices_kset_move_after(dev, new_parent);
Cornelia Huckffa6a702009-03-04 12:44:00 +01003852 break;
3853 case DPM_ORDER_PARENT_BEFORE_DEV:
3854 device_pm_move_before(new_parent, dev);
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03003855 devices_kset_move_before(new_parent, dev);
Cornelia Huckffa6a702009-03-04 12:44:00 +01003856 break;
3857 case DPM_ORDER_DEV_LAST:
3858 device_pm_move_last(dev);
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03003859 devices_kset_move_last(dev);
Cornelia Huckffa6a702009-03-04 12:44:00 +01003860 break;
3861 }
Rabin Vincentbdd40342012-04-23 09:16:36 +02003862
Cornelia Huck8a824722006-11-20 17:07:51 +01003863 put_device(old_parent);
3864out:
Cornelia Huckffa6a702009-03-04 12:44:00 +01003865 device_pm_unlock();
Cornelia Huck8a824722006-11-20 17:07:51 +01003866 put_device(dev);
3867 return error;
3868}
Cornelia Huck8a824722006-11-20 17:07:51 +01003869EXPORT_SYMBOL_GPL(device_move);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08003870
Christian Braunerb8f33e52020-02-27 04:37:15 +01003871static int device_attrs_change_owner(struct device *dev, kuid_t kuid,
3872 kgid_t kgid)
3873{
3874 struct kobject *kobj = &dev->kobj;
3875 struct class *class = dev->class;
3876 const struct device_type *type = dev->type;
3877 int error;
3878
3879 if (class) {
3880 /*
3881 * Change the device groups of the device class for @dev to
3882 * @kuid/@kgid.
3883 */
3884 error = sysfs_groups_change_owner(kobj, class->dev_groups, kuid,
3885 kgid);
3886 if (error)
3887 return error;
3888 }
3889
3890 if (type) {
3891 /*
3892 * Change the device groups of the device type for @dev to
3893 * @kuid/@kgid.
3894 */
3895 error = sysfs_groups_change_owner(kobj, type->groups, kuid,
3896 kgid);
3897 if (error)
3898 return error;
3899 }
3900
3901 /* Change the device groups of @dev to @kuid/@kgid. */
3902 error = sysfs_groups_change_owner(kobj, dev->groups, kuid, kgid);
3903 if (error)
3904 return error;
3905
3906 if (device_supports_offline(dev) && !dev->offline_disabled) {
3907 /* Change online device attributes of @dev to @kuid/@kgid. */
3908 error = sysfs_file_change_owner(kobj, dev_attr_online.attr.name,
3909 kuid, kgid);
3910 if (error)
3911 return error;
3912 }
3913
3914 return 0;
3915}
3916
3917/**
3918 * device_change_owner - change the owner of an existing device.
3919 * @dev: device.
3920 * @kuid: new owner's kuid
3921 * @kgid: new owner's kgid
3922 *
3923 * This changes the owner of @dev and its corresponding sysfs entries to
3924 * @kuid/@kgid. This function closely mirrors how @dev was added via driver
3925 * core.
3926 *
3927 * Returns 0 on success or error code on failure.
3928 */
3929int device_change_owner(struct device *dev, kuid_t kuid, kgid_t kgid)
3930{
3931 int error;
3932 struct kobject *kobj = &dev->kobj;
3933
3934 dev = get_device(dev);
3935 if (!dev)
3936 return -EINVAL;
3937
3938 /*
3939 * Change the kobject and the default attributes and groups of the
3940 * ktype associated with it to @kuid/@kgid.
3941 */
3942 error = sysfs_change_owner(kobj, kuid, kgid);
3943 if (error)
3944 goto out;
3945
3946 /*
3947 * Change the uevent file for @dev to the new owner. The uevent file
3948 * was created in a separate step when @dev got added and we mirror
3949 * that step here.
3950 */
3951 error = sysfs_file_change_owner(kobj, dev_attr_uevent.attr.name, kuid,
3952 kgid);
3953 if (error)
3954 goto out;
3955
3956 /*
3957 * Change the device groups, the device groups associated with the
3958 * device class, and the groups associated with the device type of @dev
3959 * to @kuid/@kgid.
3960 */
3961 error = device_attrs_change_owner(dev, kuid, kgid);
3962 if (error)
3963 goto out;
3964
Christian Brauner3b52fc52020-02-27 04:37:16 +01003965 error = dpm_sysfs_change_owner(dev, kuid, kgid);
3966 if (error)
3967 goto out;
3968
Christian Braunerb8f33e52020-02-27 04:37:15 +01003969#ifdef CONFIG_BLOCK
3970 if (sysfs_deprecated && dev->class == &block_class)
3971 goto out;
3972#endif
3973
3974 /*
3975 * Change the owner of the symlink located in the class directory of
3976 * the device class associated with @dev which points to the actual
3977 * directory entry for @dev to @kuid/@kgid. This ensures that the
3978 * symlink shows the same permissions as its target.
3979 */
3980 error = sysfs_link_change_owner(&dev->class->p->subsys.kobj, &dev->kobj,
3981 dev_name(dev), kuid, kgid);
3982 if (error)
3983 goto out;
3984
3985out:
3986 put_device(dev);
3987 return error;
3988}
3989EXPORT_SYMBOL_GPL(device_change_owner);
3990
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08003991/**
3992 * device_shutdown - call ->shutdown() on each device to shutdown.
3993 */
3994void device_shutdown(void)
3995{
Benson Leungf123db82013-09-24 20:05:11 -07003996 struct device *dev, *parent;
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08003997
Pingfan Liu3297c8f2018-07-19 13:14:58 +08003998 wait_for_device_probe();
3999 device_block_probing();
4000
Rafael J. Wysocki65650b32019-10-09 01:29:10 +02004001 cpufreq_suspend();
4002
Hugh Daschbach62458382010-03-22 10:36:37 -07004003 spin_lock(&devices_kset->list_lock);
4004 /*
4005 * Walk the devices list backward, shutting down each in turn.
4006 * Beware that device unplug events may also start pulling
4007 * devices offline, even as the system is shutting down.
4008 */
4009 while (!list_empty(&devices_kset->list)) {
4010 dev = list_entry(devices_kset->list.prev, struct device,
4011 kobj.entry);
Ming Leid1c6c032012-06-22 18:01:40 +08004012
4013 /*
4014 * hold reference count of device's parent to
4015 * prevent it from being freed because parent's
4016 * lock is to be held
4017 */
Benson Leungf123db82013-09-24 20:05:11 -07004018 parent = get_device(dev->parent);
Hugh Daschbach62458382010-03-22 10:36:37 -07004019 get_device(dev);
4020 /*
4021 * Make sure the device is off the kset list, in the
4022 * event that dev->*->shutdown() doesn't remove it.
4023 */
4024 list_del_init(&dev->kobj.entry);
4025 spin_unlock(&devices_kset->list_lock);
Alan Sternfe6b91f2011-12-06 23:24:52 +01004026
Ming Leid1c6c032012-06-22 18:01:40 +08004027 /* hold lock to avoid race with probe/release */
Benson Leungf123db82013-09-24 20:05:11 -07004028 if (parent)
4029 device_lock(parent);
Ming Leid1c6c032012-06-22 18:01:40 +08004030 device_lock(dev);
4031
Alan Sternfe6b91f2011-12-06 23:24:52 +01004032 /* Don't allow any more runtime suspends */
4033 pm_runtime_get_noresume(dev);
4034 pm_runtime_barrier(dev);
Hugh Daschbach62458382010-03-22 10:36:37 -07004035
Michal Suchanek75216212017-08-11 15:44:43 +02004036 if (dev->class && dev->class->shutdown_pre) {
Josh Zimmermanf77af152017-06-25 14:53:23 -07004037 if (initcall_debug)
Michal Suchanek75216212017-08-11 15:44:43 +02004038 dev_info(dev, "shutdown_pre\n");
4039 dev->class->shutdown_pre(dev);
4040 }
4041 if (dev->bus && dev->bus->shutdown) {
ShuoX Liu0246c4f2012-11-23 15:14:12 +08004042 if (initcall_debug)
4043 dev_info(dev, "shutdown\n");
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08004044 dev->bus->shutdown(dev);
4045 } else if (dev->driver && dev->driver->shutdown) {
ShuoX Liu0246c4f2012-11-23 15:14:12 +08004046 if (initcall_debug)
4047 dev_info(dev, "shutdown\n");
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08004048 dev->driver->shutdown(dev);
4049 }
Ming Leid1c6c032012-06-22 18:01:40 +08004050
4051 device_unlock(dev);
Benson Leungf123db82013-09-24 20:05:11 -07004052 if (parent)
4053 device_unlock(parent);
Ming Leid1c6c032012-06-22 18:01:40 +08004054
Hugh Daschbach62458382010-03-22 10:36:37 -07004055 put_device(dev);
Benson Leungf123db82013-09-24 20:05:11 -07004056 put_device(parent);
Hugh Daschbach62458382010-03-22 10:36:37 -07004057
4058 spin_lock(&devices_kset->list_lock);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08004059 }
Hugh Daschbach62458382010-03-22 10:36:37 -07004060 spin_unlock(&devices_kset->list_lock);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08004061}
Joe Perches99bcf212010-06-27 01:02:34 +00004062
4063/*
4064 * Device logging functions
4065 */
4066
4067#ifdef CONFIG_PRINTK
Joe Perches666f3552012-09-12 20:14:11 -07004068static int
4069create_syslog_header(const struct device *dev, char *hdr, size_t hdrlen)
Joe Perches99bcf212010-06-27 01:02:34 +00004070{
Kay Sieversc4e00da2012-05-03 02:29:59 +02004071 const char *subsys;
Joe Perches798efc62012-09-12 20:11:29 -07004072 size_t pos = 0;
Joe Perches99bcf212010-06-27 01:02:34 +00004073
Kay Sieversc4e00da2012-05-03 02:29:59 +02004074 if (dev->class)
4075 subsys = dev->class->name;
4076 else if (dev->bus)
4077 subsys = dev->bus->name;
4078 else
Joe Perches798efc62012-09-12 20:11:29 -07004079 return 0;
Kay Sieversc4e00da2012-05-03 02:29:59 +02004080
Joe Perches798efc62012-09-12 20:11:29 -07004081 pos += snprintf(hdr + pos, hdrlen - pos, "SUBSYSTEM=%s", subsys);
Ben Hutchings655e5b72014-08-26 00:34:44 -07004082 if (pos >= hdrlen)
4083 goto overflow;
Kay Sieversc4e00da2012-05-03 02:29:59 +02004084
4085 /*
4086 * Add device identifier DEVICE=:
4087 * b12:8 block dev_t
4088 * c127:3 char dev_t
4089 * n8 netdev ifindex
4090 * +sound:card0 subsystem:devname
4091 */
4092 if (MAJOR(dev->devt)) {
4093 char c;
4094
4095 if (strcmp(subsys, "block") == 0)
4096 c = 'b';
4097 else
4098 c = 'c';
Joe Perches798efc62012-09-12 20:11:29 -07004099 pos++;
4100 pos += snprintf(hdr + pos, hdrlen - pos,
4101 "DEVICE=%c%u:%u",
4102 c, MAJOR(dev->devt), MINOR(dev->devt));
Kay Sieversc4e00da2012-05-03 02:29:59 +02004103 } else if (strcmp(subsys, "net") == 0) {
4104 struct net_device *net = to_net_dev(dev);
4105
Joe Perches798efc62012-09-12 20:11:29 -07004106 pos++;
4107 pos += snprintf(hdr + pos, hdrlen - pos,
4108 "DEVICE=n%u", net->ifindex);
Kay Sieversc4e00da2012-05-03 02:29:59 +02004109 } else {
Joe Perches798efc62012-09-12 20:11:29 -07004110 pos++;
4111 pos += snprintf(hdr + pos, hdrlen - pos,
4112 "DEVICE=+%s:%s", subsys, dev_name(dev));
Kay Sieversc4e00da2012-05-03 02:29:59 +02004113 }
Jim Cromieaf7f2152012-07-19 13:46:21 -06004114
Ben Hutchings655e5b72014-08-26 00:34:44 -07004115 if (pos >= hdrlen)
4116 goto overflow;
4117
Joe Perches798efc62012-09-12 20:11:29 -07004118 return pos;
Ben Hutchings655e5b72014-08-26 00:34:44 -07004119
4120overflow:
4121 dev_WARN(dev, "device/subsystem name too long");
4122 return 0;
Joe Perches99bcf212010-06-27 01:02:34 +00004123}
Joe Perches798efc62012-09-12 20:11:29 -07004124
Joe Perches05e4e5b2012-09-12 20:13:37 -07004125int dev_vprintk_emit(int level, const struct device *dev,
4126 const char *fmt, va_list args)
4127{
4128 char hdr[128];
4129 size_t hdrlen;
4130
4131 hdrlen = create_syslog_header(dev, hdr, sizeof(hdr));
4132
4133 return vprintk_emit(0, level, hdrlen ? hdr : NULL, hdrlen, fmt, args);
4134}
4135EXPORT_SYMBOL(dev_vprintk_emit);
4136
4137int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...)
4138{
4139 va_list args;
4140 int r;
4141
4142 va_start(args, fmt);
4143
4144 r = dev_vprintk_emit(level, dev, fmt, args);
4145
4146 va_end(args);
4147
4148 return r;
4149}
4150EXPORT_SYMBOL(dev_printk_emit);
4151
Joe Perchesd1f10522014-12-25 15:07:04 -08004152static void __dev_printk(const char *level, const struct device *dev,
Joe Perches798efc62012-09-12 20:11:29 -07004153 struct va_format *vaf)
4154{
Joe Perchesd1f10522014-12-25 15:07:04 -08004155 if (dev)
4156 dev_printk_emit(level[1] - '0', dev, "%s %s: %pV",
4157 dev_driver_string(dev), dev_name(dev), vaf);
4158 else
4159 printk("%s(NULL device *): %pV", level, vaf);
Joe Perches798efc62012-09-12 20:11:29 -07004160}
Joe Perches99bcf212010-06-27 01:02:34 +00004161
Joe Perchesd1f10522014-12-25 15:07:04 -08004162void dev_printk(const char *level, const struct device *dev,
4163 const char *fmt, ...)
Joe Perches99bcf212010-06-27 01:02:34 +00004164{
4165 struct va_format vaf;
4166 va_list args;
Joe Perches99bcf212010-06-27 01:02:34 +00004167
4168 va_start(args, fmt);
4169
4170 vaf.fmt = fmt;
4171 vaf.va = &args;
4172
Joe Perchesd1f10522014-12-25 15:07:04 -08004173 __dev_printk(level, dev, &vaf);
Joe Perches798efc62012-09-12 20:11:29 -07004174
Joe Perches99bcf212010-06-27 01:02:34 +00004175 va_end(args);
Joe Perches99bcf212010-06-27 01:02:34 +00004176}
4177EXPORT_SYMBOL(dev_printk);
4178
4179#define define_dev_printk_level(func, kern_level) \
Joe Perchesd1f10522014-12-25 15:07:04 -08004180void func(const struct device *dev, const char *fmt, ...) \
Joe Perches99bcf212010-06-27 01:02:34 +00004181{ \
4182 struct va_format vaf; \
4183 va_list args; \
Joe Perches99bcf212010-06-27 01:02:34 +00004184 \
4185 va_start(args, fmt); \
4186 \
4187 vaf.fmt = fmt; \
4188 vaf.va = &args; \
4189 \
Joe Perchesd1f10522014-12-25 15:07:04 -08004190 __dev_printk(kern_level, dev, &vaf); \
Joe Perches798efc62012-09-12 20:11:29 -07004191 \
Joe Perches99bcf212010-06-27 01:02:34 +00004192 va_end(args); \
Joe Perches99bcf212010-06-27 01:02:34 +00004193} \
4194EXPORT_SYMBOL(func);
4195
Joe Perches663336e2018-05-09 08:15:46 -07004196define_dev_printk_level(_dev_emerg, KERN_EMERG);
4197define_dev_printk_level(_dev_alert, KERN_ALERT);
4198define_dev_printk_level(_dev_crit, KERN_CRIT);
4199define_dev_printk_level(_dev_err, KERN_ERR);
4200define_dev_printk_level(_dev_warn, KERN_WARNING);
4201define_dev_printk_level(_dev_notice, KERN_NOTICE);
Joe Perches99bcf212010-06-27 01:02:34 +00004202define_dev_printk_level(_dev_info, KERN_INFO);
4203
4204#endif
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02004205
Andrzej Hajdaa787e542020-07-13 16:43:21 +02004206/**
4207 * dev_err_probe - probe error check and log helper
4208 * @dev: the pointer to the struct device
4209 * @err: error value to test
4210 * @fmt: printf-style format string
4211 * @...: arguments as specified in the format string
4212 *
4213 * This helper implements common pattern present in probe functions for error
4214 * checking: print debug or error message depending if the error value is
4215 * -EPROBE_DEFER and propagate error upwards.
Andrzej Hajdad090b702020-07-13 16:43:22 +02004216 * In case of -EPROBE_DEFER it sets also defer probe reason, which can be
4217 * checked later by reading devices_deferred debugfs attribute.
Andrzej Hajdaa787e542020-07-13 16:43:21 +02004218 * It replaces code sequence:
4219 * if (err != -EPROBE_DEFER)
4220 * dev_err(dev, ...);
4221 * else
4222 * dev_dbg(dev, ...);
4223 * return err;
4224 * with
4225 * return dev_err_probe(dev, err, ...);
4226 *
4227 * Returns @err.
4228 *
4229 */
4230int dev_err_probe(const struct device *dev, int err, const char *fmt, ...)
4231{
4232 struct va_format vaf;
4233 va_list args;
4234
4235 va_start(args, fmt);
4236 vaf.fmt = fmt;
4237 vaf.va = &args;
4238
Andrzej Hajdad090b702020-07-13 16:43:22 +02004239 if (err != -EPROBE_DEFER) {
Andrzej Hajdaa787e542020-07-13 16:43:21 +02004240 dev_err(dev, "error %d: %pV", err, &vaf);
Andrzej Hajdad090b702020-07-13 16:43:22 +02004241 } else {
4242 device_set_deferred_probe_reason(dev, &vaf);
Andrzej Hajdaa787e542020-07-13 16:43:21 +02004243 dev_dbg(dev, "error %d: %pV", err, &vaf);
Andrzej Hajdad090b702020-07-13 16:43:22 +02004244 }
Andrzej Hajdaa787e542020-07-13 16:43:21 +02004245
4246 va_end(args);
4247
4248 return err;
4249}
4250EXPORT_SYMBOL_GPL(dev_err_probe);
4251
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02004252static inline bool fwnode_is_primary(struct fwnode_handle *fwnode)
4253{
4254 return fwnode && !IS_ERR(fwnode->secondary);
4255}
4256
4257/**
4258 * set_primary_fwnode - Change the primary firmware node of a given device.
4259 * @dev: Device to handle.
4260 * @fwnode: New primary firmware node of the device.
4261 *
4262 * Set the device's firmware node pointer to @fwnode, but if a secondary
4263 * firmware node of the device is present, preserve it.
4264 */
4265void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
4266{
Heikki Krogerusc15e1bd2020-08-21 13:53:42 +03004267 struct fwnode_handle *fn = dev->fwnode;
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02004268
Heikki Krogerusc15e1bd2020-08-21 13:53:42 +03004269 if (fwnode) {
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02004270 if (fwnode_is_primary(fn))
4271 fn = fn->secondary;
4272
Mika Westerberg55f89a82015-11-30 17:11:39 +02004273 if (fn) {
4274 WARN_ON(fwnode->secondary);
4275 fwnode->secondary = fn;
4276 }
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02004277 dev->fwnode = fwnode;
4278 } else {
Heikki Krogerusc15e1bd2020-08-21 13:53:42 +03004279 if (fwnode_is_primary(fn)) {
4280 dev->fwnode = fn->secondary;
4281 fn->secondary = NULL;
4282 } else {
4283 dev->fwnode = NULL;
4284 }
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02004285 }
4286}
4287EXPORT_SYMBOL_GPL(set_primary_fwnode);
4288
4289/**
4290 * set_secondary_fwnode - Change the secondary firmware node of a given device.
4291 * @dev: Device to handle.
4292 * @fwnode: New secondary firmware node of the device.
4293 *
4294 * If a primary firmware node of the device is present, set its secondary
4295 * pointer to @fwnode. Otherwise, set the device's firmware node pointer to
4296 * @fwnode.
4297 */
4298void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
4299{
4300 if (fwnode)
4301 fwnode->secondary = ERR_PTR(-ENODEV);
4302
4303 if (fwnode_is_primary(dev->fwnode))
4304 dev->fwnode->secondary = fwnode;
4305 else
4306 dev->fwnode = fwnode;
4307}
Andy Shevchenko96489ae2020-04-08 19:09:01 +03004308EXPORT_SYMBOL_GPL(set_secondary_fwnode);
Johan Hovold4e75e1d2017-06-06 17:59:00 +02004309
4310/**
4311 * device_set_of_node_from_dev - reuse device-tree node of another device
4312 * @dev: device whose device-tree node is being set
4313 * @dev2: device whose device-tree node is being reused
4314 *
4315 * Takes another reference to the new device-tree node after first dropping
4316 * any reference held to the old node.
4317 */
4318void device_set_of_node_from_dev(struct device *dev, const struct device *dev2)
4319{
4320 of_node_put(dev->of_node);
4321 dev->of_node = of_node_get(dev2->of_node);
4322 dev->of_node_reused = true;
4323}
4324EXPORT_SYMBOL_GPL(device_set_of_node_from_dev);
Suzuki K Poulose65b66682019-06-14 18:54:01 +01004325
Suzuki K Poulose6cda08a2019-07-23 23:18:32 +01004326int device_match_name(struct device *dev, const void *name)
4327{
4328 return sysfs_streq(dev_name(dev), name);
4329}
4330EXPORT_SYMBOL_GPL(device_match_name);
4331
Suzuki K Poulose65b66682019-06-14 18:54:01 +01004332int device_match_of_node(struct device *dev, const void *np)
4333{
4334 return dev->of_node == np;
4335}
4336EXPORT_SYMBOL_GPL(device_match_of_node);
Suzuki K Poulose67843bb2019-07-23 23:18:34 +01004337
4338int device_match_fwnode(struct device *dev, const void *fwnode)
4339{
4340 return dev_fwnode(dev) == fwnode;
4341}
4342EXPORT_SYMBOL_GPL(device_match_fwnode);
Suzuki K Poulose4495dfd2019-07-23 23:18:35 +01004343
4344int device_match_devt(struct device *dev, const void *pdevt)
4345{
4346 return dev->devt == *(dev_t *)pdevt;
4347}
4348EXPORT_SYMBOL_GPL(device_match_devt);
Suzuki K Poulose00500142019-07-23 23:18:36 +01004349
4350int device_match_acpi_dev(struct device *dev, const void *adev)
4351{
4352 return ACPI_COMPANION(dev) == adev;
4353}
4354EXPORT_SYMBOL(device_match_acpi_dev);
Suzuki K Poulose6bf85ba2019-07-23 23:18:37 +01004355
4356int device_match_any(struct device *dev, const void *unused)
4357{
4358 return 1;
4359}
4360EXPORT_SYMBOL_GPL(device_match_any);