blob: 2300d834d11ff841e4eecd11c795bdb0196eec1c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/device.h>
12#include <linux/err.h>
Rafael J. Wysocki97badf82015-04-03 23:23:37 +020013#include <linux/fwnode.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
15#include <linux/module.h>
16#include <linux/slab.h>
17#include <linux/string.h>
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -070018#include <linux/kdev_t.h>
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +100019#include <linux/notifier.h>
Grant Likely07d57a32012-02-01 11:22:22 -070020#include <linux/of.h>
21#include <linux/of_device.h>
Kay Sieversda231fd2007-11-21 17:29:15 +010022#include <linux/genhd.h>
Dave Youngf75b1c62008-05-28 09:28:39 -070023#include <linux/mutex.h>
Peter Chenaf8db152011-11-15 21:52:29 +010024#include <linux/pm_runtime.h>
Kay Sieversc4e00da2012-05-03 02:29:59 +020025#include <linux/netdevice.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010026#include <linux/sched/signal.h>
Greg Kroah-Hartman63967682013-08-27 10:24:15 -070027#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include "base.h"
30#include "power/power.h"
31
Andi Kleene52eec12010-09-08 16:54:17 +020032#ifdef CONFIG_SYSFS_DEPRECATED
33#ifdef CONFIG_SYSFS_DEPRECATED_V2
34long sysfs_deprecated = 1;
35#else
36long sysfs_deprecated = 0;
37#endif
Hanjun Guo3454bf92013-08-17 20:42:24 +080038static int __init sysfs_deprecated_setup(char *arg)
Andi Kleene52eec12010-09-08 16:54:17 +020039{
Jingoo Han34da5e62013-07-26 13:10:22 +090040 return kstrtol(arg, 10, &sysfs_deprecated);
Andi Kleene52eec12010-09-08 16:54:17 +020041}
42early_param("sysfs.deprecated", sysfs_deprecated_setup);
43#endif
44
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +010045/* Device links support. */
46
47#ifdef CONFIG_SRCU
48static DEFINE_MUTEX(device_links_lock);
49DEFINE_STATIC_SRCU(device_links_srcu);
50
51static inline void device_links_write_lock(void)
52{
53 mutex_lock(&device_links_lock);
54}
55
56static inline void device_links_write_unlock(void)
57{
58 mutex_unlock(&device_links_lock);
59}
60
61int device_links_read_lock(void)
62{
63 return srcu_read_lock(&device_links_srcu);
64}
65
66void device_links_read_unlock(int idx)
67{
68 srcu_read_unlock(&device_links_srcu, idx);
69}
70#else /* !CONFIG_SRCU */
71static DECLARE_RWSEM(device_links_lock);
72
73static inline void device_links_write_lock(void)
74{
75 down_write(&device_links_lock);
76}
77
78static inline void device_links_write_unlock(void)
79{
80 up_write(&device_links_lock);
81}
82
83int device_links_read_lock(void)
84{
85 down_read(&device_links_lock);
86 return 0;
87}
88
89void device_links_read_unlock(int not_used)
90{
91 up_read(&device_links_lock);
92}
93#endif /* !CONFIG_SRCU */
94
95/**
96 * device_is_dependent - Check if one device depends on another one
97 * @dev: Device to check dependencies for.
98 * @target: Device to check against.
99 *
100 * Check if @target depends on @dev or any device dependent on it (its child or
101 * its consumer etc). Return 1 if that is the case or 0 otherwise.
102 */
103static int device_is_dependent(struct device *dev, void *target)
104{
105 struct device_link *link;
106 int ret;
107
Benjamin Gaignarde16f4f32018-07-16 13:37:44 +0200108 if (dev == target)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100109 return 1;
110
111 ret = device_for_each_child(dev, target, device_is_dependent);
112 if (ret)
113 return ret;
114
115 list_for_each_entry(link, &dev->links.consumers, s_node) {
Benjamin Gaignarde16f4f32018-07-16 13:37:44 +0200116 if (link->consumer == target)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100117 return 1;
118
119 ret = device_is_dependent(link->consumer, target);
120 if (ret)
121 break;
122 }
123 return ret;
124}
125
126static int device_reorder_to_tail(struct device *dev, void *not_used)
127{
128 struct device_link *link;
129
130 /*
131 * Devices that have not been registered yet will be put to the ends
132 * of the lists during the registration, so skip them here.
133 */
134 if (device_is_registered(dev))
135 devices_kset_move_last(dev);
136
137 if (device_pm_initialized(dev))
138 device_pm_move_last(dev);
139
140 device_for_each_child(dev, NULL, device_reorder_to_tail);
141 list_for_each_entry(link, &dev->links.consumers, s_node)
142 device_reorder_to_tail(link->consumer, NULL);
143
144 return 0;
145}
146
147/**
Feng Kan494fd7b2018-04-10 16:57:06 -0700148 * device_pm_move_to_tail - Move set of devices to the end of device lists
149 * @dev: Device to move
150 *
151 * This is a device_reorder_to_tail() wrapper taking the requisite locks.
152 *
153 * It moves the @dev along with all of its children and all of its consumers
154 * to the ends of the device_kset and dpm_list, recursively.
155 */
156void device_pm_move_to_tail(struct device *dev)
157{
158 int idx;
159
160 idx = device_links_read_lock();
161 device_pm_lock();
162 device_reorder_to_tail(dev, NULL);
163 device_pm_unlock();
164 device_links_read_unlock(idx);
165}
166
167/**
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100168 * device_link_add - Create a link between two devices.
169 * @consumer: Consumer end of the link.
170 * @supplier: Supplier end of the link.
171 * @flags: Link flags.
172 *
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100173 * The caller is responsible for the proper synchronization of the link creation
174 * with runtime PM. First, setting the DL_FLAG_PM_RUNTIME flag will cause the
175 * runtime PM framework to take the link into account. Second, if the
176 * DL_FLAG_RPM_ACTIVE flag is set in addition to it, the supplier devices will
177 * be forced into the active metastate and reference-counted upon the creation
178 * of the link. If DL_FLAG_PM_RUNTIME is not set, DL_FLAG_RPM_ACTIVE will be
179 * ignored.
180 *
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100181 * If the DL_FLAG_AUTOREMOVE is set, the link will be removed automatically
182 * when the consumer device driver unbinds from it. The combination of both
183 * DL_FLAG_AUTOREMOVE and DL_FLAG_STATELESS set is invalid and will cause NULL
184 * to be returned.
185 *
186 * A side effect of the link creation is re-ordering of dpm_list and the
187 * devices_kset list by moving the consumer device and all devices depending
188 * on it to the ends of these lists (that does not happen to devices that have
189 * not been registered when this function is called).
190 *
191 * The supplier device is required to be registered when this function is called
192 * and NULL will be returned if that is not the case. The consumer device need
Lukas Wunner64df1142016-12-04 13:10:04 +0100193 * not be registered, however.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100194 */
195struct device_link *device_link_add(struct device *consumer,
196 struct device *supplier, u32 flags)
197{
198 struct device_link *link;
199
200 if (!consumer || !supplier ||
201 ((flags & DL_FLAG_STATELESS) && (flags & DL_FLAG_AUTOREMOVE)))
202 return NULL;
203
204 device_links_write_lock();
205 device_pm_lock();
206
207 /*
208 * If the supplier has not been fully registered yet or there is a
209 * reverse dependency between the consumer and the supplier already in
210 * the graph, return NULL.
211 */
212 if (!device_pm_initialized(supplier)
213 || device_is_dependent(consumer, supplier)) {
214 link = NULL;
215 goto out;
216 }
217
218 list_for_each_entry(link, &supplier->links.consumers, s_node)
Lukas Wunneread18c22018-02-10 19:27:12 +0100219 if (link->consumer == consumer) {
220 kref_get(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100221 goto out;
Lukas Wunneread18c22018-02-10 19:27:12 +0100222 }
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100223
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100224 link = kzalloc(sizeof(*link), GFP_KERNEL);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100225 if (!link)
226 goto out;
227
Rafael J. Wysockibaa88092016-10-30 17:32:43 +0100228 if (flags & DL_FLAG_PM_RUNTIME) {
229 if (flags & DL_FLAG_RPM_ACTIVE) {
230 if (pm_runtime_get_sync(supplier) < 0) {
231 pm_runtime_put_noidle(supplier);
232 kfree(link);
233 link = NULL;
234 goto out;
235 }
236 link->rpm_active = true;
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100237 }
Rafael J. Wysockibaa88092016-10-30 17:32:43 +0100238 pm_runtime_new_link(consumer);
Rafael J. Wysocki47e5abf2018-06-14 10:01:52 +0200239 /*
240 * If the link is being added by the consumer driver at probe
241 * time, balance the decrementation of the supplier's runtime PM
242 * usage counter after consumer probe in driver_probe_device().
243 */
244 if (consumer->links.status == DL_DEV_PROBING)
245 pm_runtime_get_noresume(supplier);
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100246 }
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100247 get_device(supplier);
248 link->supplier = supplier;
249 INIT_LIST_HEAD(&link->s_node);
250 get_device(consumer);
251 link->consumer = consumer;
252 INIT_LIST_HEAD(&link->c_node);
253 link->flags = flags;
Lukas Wunneread18c22018-02-10 19:27:12 +0100254 kref_init(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100255
Lukas Wunner64df1142016-12-04 13:10:04 +0100256 /* Determine the initial link state. */
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100257 if (flags & DL_FLAG_STATELESS) {
258 link->status = DL_STATE_NONE;
259 } else {
260 switch (supplier->links.status) {
261 case DL_DEV_DRIVER_BOUND:
262 switch (consumer->links.status) {
263 case DL_DEV_PROBING:
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100264 /*
Rafael J. Wysocki47e5abf2018-06-14 10:01:52 +0200265 * Some callers expect the link creation during
266 * consumer driver probe to resume the supplier
267 * even without DL_FLAG_RPM_ACTIVE.
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100268 */
269 if (flags & DL_FLAG_PM_RUNTIME)
Rafael J. Wysocki47e5abf2018-06-14 10:01:52 +0200270 pm_runtime_resume(supplier);
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100271
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100272 link->status = DL_STATE_CONSUMER_PROBE;
273 break;
274 case DL_DEV_DRIVER_BOUND:
275 link->status = DL_STATE_ACTIVE;
276 break;
277 default:
278 link->status = DL_STATE_AVAILABLE;
279 break;
280 }
281 break;
282 case DL_DEV_UNBINDING:
283 link->status = DL_STATE_SUPPLIER_UNBIND;
284 break;
285 default:
286 link->status = DL_STATE_DORMANT;
287 break;
288 }
289 }
290
291 /*
292 * Move the consumer and all of the devices depending on it to the end
293 * of dpm_list and the devices_kset list.
294 *
295 * It is necessary to hold dpm_list locked throughout all that or else
296 * we may end up suspending with a wrong ordering of it.
297 */
298 device_reorder_to_tail(consumer, NULL);
299
300 list_add_tail_rcu(&link->s_node, &supplier->links.consumers);
301 list_add_tail_rcu(&link->c_node, &consumer->links.suppliers);
302
303 dev_info(consumer, "Linked as a consumer to %s\n", dev_name(supplier));
304
305 out:
306 device_pm_unlock();
307 device_links_write_unlock();
308 return link;
309}
310EXPORT_SYMBOL_GPL(device_link_add);
311
312static void device_link_free(struct device_link *link)
313{
314 put_device(link->consumer);
315 put_device(link->supplier);
316 kfree(link);
317}
318
319#ifdef CONFIG_SRCU
320static void __device_link_free_srcu(struct rcu_head *rhead)
321{
322 device_link_free(container_of(rhead, struct device_link, rcu_head));
323}
324
Lukas Wunneread18c22018-02-10 19:27:12 +0100325static void __device_link_del(struct kref *kref)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100326{
Lukas Wunneread18c22018-02-10 19:27:12 +0100327 struct device_link *link = container_of(kref, struct device_link, kref);
328
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100329 dev_info(link->consumer, "Dropping the link to %s\n",
330 dev_name(link->supplier));
331
Rafael J. Wysockibaa88092016-10-30 17:32:43 +0100332 if (link->flags & DL_FLAG_PM_RUNTIME)
333 pm_runtime_drop_link(link->consumer);
334
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100335 list_del_rcu(&link->s_node);
336 list_del_rcu(&link->c_node);
337 call_srcu(&device_links_srcu, &link->rcu_head, __device_link_free_srcu);
338}
339#else /* !CONFIG_SRCU */
Lukas Wunneread18c22018-02-10 19:27:12 +0100340static void __device_link_del(struct kref *kref)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100341{
Lukas Wunneread18c22018-02-10 19:27:12 +0100342 struct device_link *link = container_of(kref, struct device_link, kref);
343
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100344 dev_info(link->consumer, "Dropping the link to %s\n",
345 dev_name(link->supplier));
346
Lukas Wunner433986c2018-02-10 19:13:58 +0100347 if (link->flags & DL_FLAG_PM_RUNTIME)
348 pm_runtime_drop_link(link->consumer);
349
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100350 list_del(&link->s_node);
351 list_del(&link->c_node);
352 device_link_free(link);
353}
354#endif /* !CONFIG_SRCU */
355
356/**
357 * device_link_del - Delete a link between two devices.
358 * @link: Device link to delete.
359 *
360 * The caller must ensure proper synchronization of this function with runtime
Lukas Wunneread18c22018-02-10 19:27:12 +0100361 * PM. If the link was added multiple times, it needs to be deleted as often.
362 * Care is required for hotplugged devices: Their links are purged on removal
363 * and calling device_link_del() is then no longer allowed.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100364 */
365void device_link_del(struct device_link *link)
366{
367 device_links_write_lock();
368 device_pm_lock();
Lukas Wunneread18c22018-02-10 19:27:12 +0100369 kref_put(&link->kref, __device_link_del);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100370 device_pm_unlock();
371 device_links_write_unlock();
372}
373EXPORT_SYMBOL_GPL(device_link_del);
374
375static void device_links_missing_supplier(struct device *dev)
376{
377 struct device_link *link;
378
379 list_for_each_entry(link, &dev->links.suppliers, c_node)
380 if (link->status == DL_STATE_CONSUMER_PROBE)
381 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
382}
383
384/**
385 * device_links_check_suppliers - Check presence of supplier drivers.
386 * @dev: Consumer device.
387 *
388 * Check links from this device to any suppliers. Walk the list of the device's
389 * links to suppliers and see if all of them are available. If not, simply
390 * return -EPROBE_DEFER.
391 *
392 * We need to guarantee that the supplier will not go away after the check has
393 * been positive here. It only can go away in __device_release_driver() and
394 * that function checks the device's links to consumers. This means we need to
395 * mark the link as "consumer probe in progress" to make the supplier removal
396 * wait for us to complete (or bad things may happen).
397 *
398 * Links with the DL_FLAG_STATELESS flag set are ignored.
399 */
400int device_links_check_suppliers(struct device *dev)
401{
402 struct device_link *link;
403 int ret = 0;
404
405 device_links_write_lock();
406
407 list_for_each_entry(link, &dev->links.suppliers, c_node) {
408 if (link->flags & DL_FLAG_STATELESS)
409 continue;
410
411 if (link->status != DL_STATE_AVAILABLE) {
412 device_links_missing_supplier(dev);
413 ret = -EPROBE_DEFER;
414 break;
415 }
416 WRITE_ONCE(link->status, DL_STATE_CONSUMER_PROBE);
417 }
418 dev->links.status = DL_DEV_PROBING;
419
420 device_links_write_unlock();
421 return ret;
422}
423
424/**
425 * device_links_driver_bound - Update device links after probing its driver.
426 * @dev: Device to update the links for.
427 *
428 * The probe has been successful, so update links from this device to any
429 * consumers by changing their status to "available".
430 *
431 * Also change the status of @dev's links to suppliers to "active".
432 *
433 * Links with the DL_FLAG_STATELESS flag set are ignored.
434 */
435void device_links_driver_bound(struct device *dev)
436{
437 struct device_link *link;
438
439 device_links_write_lock();
440
441 list_for_each_entry(link, &dev->links.consumers, s_node) {
442 if (link->flags & DL_FLAG_STATELESS)
443 continue;
444
445 WARN_ON(link->status != DL_STATE_DORMANT);
446 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
447 }
448
449 list_for_each_entry(link, &dev->links.suppliers, c_node) {
450 if (link->flags & DL_FLAG_STATELESS)
451 continue;
452
453 WARN_ON(link->status != DL_STATE_CONSUMER_PROBE);
454 WRITE_ONCE(link->status, DL_STATE_ACTIVE);
455 }
456
457 dev->links.status = DL_DEV_DRIVER_BOUND;
458
459 device_links_write_unlock();
460}
461
462/**
463 * __device_links_no_driver - Update links of a device without a driver.
464 * @dev: Device without a drvier.
465 *
466 * Delete all non-persistent links from this device to any suppliers.
467 *
468 * Persistent links stay around, but their status is changed to "available",
469 * unless they already are in the "supplier unbind in progress" state in which
470 * case they need not be updated.
471 *
472 * Links with the DL_FLAG_STATELESS flag set are ignored.
473 */
474static void __device_links_no_driver(struct device *dev)
475{
476 struct device_link *link, *ln;
477
478 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
479 if (link->flags & DL_FLAG_STATELESS)
480 continue;
481
482 if (link->flags & DL_FLAG_AUTOREMOVE)
Lukas Wunneread18c22018-02-10 19:27:12 +0100483 kref_put(&link->kref, __device_link_del);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100484 else if (link->status != DL_STATE_SUPPLIER_UNBIND)
485 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
486 }
487
488 dev->links.status = DL_DEV_NO_DRIVER;
489}
490
491void device_links_no_driver(struct device *dev)
492{
493 device_links_write_lock();
494 __device_links_no_driver(dev);
495 device_links_write_unlock();
496}
497
498/**
499 * device_links_driver_cleanup - Update links after driver removal.
500 * @dev: Device whose driver has just gone away.
501 *
502 * Update links to consumers for @dev by changing their status to "dormant" and
503 * invoke %__device_links_no_driver() to update links to suppliers for it as
504 * appropriate.
505 *
506 * Links with the DL_FLAG_STATELESS flag set are ignored.
507 */
508void device_links_driver_cleanup(struct device *dev)
509{
510 struct device_link *link;
511
512 device_links_write_lock();
513
514 list_for_each_entry(link, &dev->links.consumers, s_node) {
515 if (link->flags & DL_FLAG_STATELESS)
516 continue;
517
518 WARN_ON(link->flags & DL_FLAG_AUTOREMOVE);
519 WARN_ON(link->status != DL_STATE_SUPPLIER_UNBIND);
520 WRITE_ONCE(link->status, DL_STATE_DORMANT);
521 }
522
523 __device_links_no_driver(dev);
524
525 device_links_write_unlock();
526}
527
528/**
529 * device_links_busy - Check if there are any busy links to consumers.
530 * @dev: Device to check.
531 *
532 * Check each consumer of the device and return 'true' if its link's status
533 * is one of "consumer probe" or "active" (meaning that the given consumer is
534 * probing right now or its driver is present). Otherwise, change the link
535 * state to "supplier unbind" to prevent the consumer from being probed
536 * successfully going forward.
537 *
538 * Return 'false' if there are no probing or active consumers.
539 *
540 * Links with the DL_FLAG_STATELESS flag set are ignored.
541 */
542bool device_links_busy(struct device *dev)
543{
544 struct device_link *link;
545 bool ret = false;
546
547 device_links_write_lock();
548
549 list_for_each_entry(link, &dev->links.consumers, s_node) {
550 if (link->flags & DL_FLAG_STATELESS)
551 continue;
552
553 if (link->status == DL_STATE_CONSUMER_PROBE
554 || link->status == DL_STATE_ACTIVE) {
555 ret = true;
556 break;
557 }
558 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
559 }
560
561 dev->links.status = DL_DEV_UNBINDING;
562
563 device_links_write_unlock();
564 return ret;
565}
566
567/**
568 * device_links_unbind_consumers - Force unbind consumers of the given device.
569 * @dev: Device to unbind the consumers of.
570 *
571 * Walk the list of links to consumers for @dev and if any of them is in the
572 * "consumer probe" state, wait for all device probes in progress to complete
573 * and start over.
574 *
575 * If that's not the case, change the status of the link to "supplier unbind"
576 * and check if the link was in the "active" state. If so, force the consumer
577 * driver to unbind and start over (the consumer will not re-probe as we have
578 * changed the state of the link already).
579 *
580 * Links with the DL_FLAG_STATELESS flag set are ignored.
581 */
582void device_links_unbind_consumers(struct device *dev)
583{
584 struct device_link *link;
585
586 start:
587 device_links_write_lock();
588
589 list_for_each_entry(link, &dev->links.consumers, s_node) {
590 enum device_link_state status;
591
592 if (link->flags & DL_FLAG_STATELESS)
593 continue;
594
595 status = link->status;
596 if (status == DL_STATE_CONSUMER_PROBE) {
597 device_links_write_unlock();
598
599 wait_for_device_probe();
600 goto start;
601 }
602 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
603 if (status == DL_STATE_ACTIVE) {
604 struct device *consumer = link->consumer;
605
606 get_device(consumer);
607
608 device_links_write_unlock();
609
610 device_release_driver_internal(consumer, NULL,
611 consumer->parent);
612 put_device(consumer);
613 goto start;
614 }
615 }
616
617 device_links_write_unlock();
618}
619
620/**
621 * device_links_purge - Delete existing links to other devices.
622 * @dev: Target device.
623 */
624static void device_links_purge(struct device *dev)
625{
626 struct device_link *link, *ln;
627
628 /*
629 * Delete all of the remaining links from this device to any other
630 * devices (either consumers or suppliers).
631 */
632 device_links_write_lock();
633
634 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
635 WARN_ON(link->status == DL_STATE_ACTIVE);
Lukas Wunneread18c22018-02-10 19:27:12 +0100636 __device_link_del(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100637 }
638
639 list_for_each_entry_safe_reverse(link, ln, &dev->links.consumers, s_node) {
640 WARN_ON(link->status != DL_STATE_DORMANT &&
641 link->status != DL_STATE_NONE);
Lukas Wunneread18c22018-02-10 19:27:12 +0100642 __device_link_del(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100643 }
644
645 device_links_write_unlock();
646}
647
648/* Device links support end. */
649
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800650int (*platform_notify)(struct device *dev) = NULL;
651int (*platform_notify_remove)(struct device *dev) = NULL;
Dan Williamse105b8b2008-04-21 10:51:07 -0700652static struct kobject *dev_kobj;
653struct kobject *sysfs_dev_char_kobj;
654struct kobject *sysfs_dev_block_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +0200656static DEFINE_MUTEX(device_hotplug_lock);
657
658void lock_device_hotplug(void)
659{
660 mutex_lock(&device_hotplug_lock);
661}
662
663void unlock_device_hotplug(void)
664{
665 mutex_unlock(&device_hotplug_lock);
666}
667
668int lock_device_hotplug_sysfs(void)
669{
670 if (mutex_trylock(&device_hotplug_lock))
671 return 0;
672
673 /* Avoid busy looping (5 ms of sleep should do). */
674 msleep(5);
675 return restart_syscall();
676}
677
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800678#ifdef CONFIG_BLOCK
679static inline int device_is_not_partition(struct device *dev)
680{
681 return !(dev->type == &part_type);
682}
683#else
684static inline int device_is_not_partition(struct device *dev)
685{
686 return 1;
687}
688#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Alan Stern3e956372006-06-16 17:10:48 -0400690/**
691 * dev_driver_string - Return a device's driver name, if at all possible
692 * @dev: struct device to get the name of
693 *
694 * Will return the device's driver's name if it is bound to a device. If
yan9169c012012-04-20 21:08:45 +0800695 * the device is not bound to a driver, it will return the name of the bus
Alan Stern3e956372006-06-16 17:10:48 -0400696 * it is attached to. If it is not attached to a bus either, an empty
697 * string will be returned.
698 */
Jean Delvarebf9ca692008-07-30 12:29:21 -0700699const char *dev_driver_string(const struct device *dev)
Alan Stern3e956372006-06-16 17:10:48 -0400700{
Alan Stern35899722009-12-04 11:06:57 -0500701 struct device_driver *drv;
702
703 /* dev->driver can change to NULL underneath us because of unbinding,
704 * so be careful about accessing it. dev->bus and dev->class should
705 * never change once they are set, so they don't need special care.
706 */
Mark Rutland6aa7de02017-10-23 14:07:29 -0700707 drv = READ_ONCE(dev->driver);
Alan Stern35899722009-12-04 11:06:57 -0500708 return drv ? drv->name :
Jean Delvarea456b702007-03-09 16:33:10 +0100709 (dev->bus ? dev->bus->name :
710 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -0400711}
Matthew Wilcox310a9222006-09-23 23:35:04 -0600712EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -0400713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
715
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800716static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
717 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800719 struct device_attribute *dev_attr = to_dev_attr(attr);
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200720 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -0500721 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -0400724 ret = dev_attr->show(dev, dev_attr, buf);
Andrew Morton815d2d52008-03-04 15:09:07 -0800725 if (ret >= (ssize_t)PAGE_SIZE) {
Sergey Senozhatskya52668c2017-12-11 21:50:21 +0900726 printk("dev_attr_show: %pS returned bad count\n",
727 dev_attr->show);
Andrew Morton815d2d52008-03-04 15:09:07 -0800728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return ret;
730}
731
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800732static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
733 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800735 struct device_attribute *dev_attr = to_dev_attr(attr);
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200736 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -0500737 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -0400740 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return ret;
742}
743
Emese Revfy52cf25d2010-01-19 02:58:23 +0100744static const struct sysfs_ops dev_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 .show = dev_attr_show,
746 .store = dev_attr_store,
747};
748
Kay Sieversca22e562011-12-14 14:29:38 -0800749#define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr)
750
751ssize_t device_store_ulong(struct device *dev,
752 struct device_attribute *attr,
753 const char *buf, size_t size)
754{
755 struct dev_ext_attribute *ea = to_ext_attr(attr);
756 char *end;
757 unsigned long new = simple_strtoul(buf, &end, 0);
758 if (end == buf)
759 return -EINVAL;
760 *(unsigned long *)(ea->var) = new;
761 /* Always return full write size even if we didn't consume all */
762 return size;
763}
764EXPORT_SYMBOL_GPL(device_store_ulong);
765
766ssize_t device_show_ulong(struct device *dev,
767 struct device_attribute *attr,
768 char *buf)
769{
770 struct dev_ext_attribute *ea = to_ext_attr(attr);
771 return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var));
772}
773EXPORT_SYMBOL_GPL(device_show_ulong);
774
775ssize_t device_store_int(struct device *dev,
776 struct device_attribute *attr,
777 const char *buf, size_t size)
778{
779 struct dev_ext_attribute *ea = to_ext_attr(attr);
780 char *end;
781 long new = simple_strtol(buf, &end, 0);
782 if (end == buf || new > INT_MAX || new < INT_MIN)
783 return -EINVAL;
784 *(int *)(ea->var) = new;
785 /* Always return full write size even if we didn't consume all */
786 return size;
787}
788EXPORT_SYMBOL_GPL(device_store_int);
789
790ssize_t device_show_int(struct device *dev,
791 struct device_attribute *attr,
792 char *buf)
793{
794 struct dev_ext_attribute *ea = to_ext_attr(attr);
795
796 return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var));
797}
798EXPORT_SYMBOL_GPL(device_show_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Borislav Petkov91872392012-10-09 19:52:05 +0200800ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
801 const char *buf, size_t size)
802{
803 struct dev_ext_attribute *ea = to_ext_attr(attr);
804
805 if (strtobool(buf, ea->var) < 0)
806 return -EINVAL;
807
808 return size;
809}
810EXPORT_SYMBOL_GPL(device_store_bool);
811
812ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
813 char *buf)
814{
815 struct dev_ext_attribute *ea = to_ext_attr(attr);
816
817 return snprintf(buf, PAGE_SIZE, "%d\n", *(bool *)(ea->var));
818}
819EXPORT_SYMBOL_GPL(device_show_bool);
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/**
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -0400822 * device_release - free device structure.
823 * @kobj: device's kobject.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 *
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -0400825 * This is called once the reference count for the object
826 * reaches 0. We forward the call to the device's release
827 * method, which should handle actually freeing the structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800829static void device_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200831 struct device *dev = kobj_to_dev(kobj);
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800832 struct device_private *p = dev->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Ming Leia525a3d2012-07-25 01:42:29 +0800834 /*
835 * Some platform devices are driven without driver attached
836 * and managed resources may have been acquired. Make sure
837 * all resources are released.
838 *
839 * Drivers still can add resources into device after device
840 * is deleted but alive, so release devres here to avoid
841 * possible memory leak.
842 */
843 devres_release_all(dev);
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (dev->release)
846 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200847 else if (dev->type && dev->type->release)
848 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700849 else if (dev->class && dev->class->dev_release)
850 dev->class->dev_release(dev);
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700851 else
852 WARN(1, KERN_ERR "Device '%s' does not have a release() "
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800853 "function, it is broken and must be fixed.\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100854 dev_name(dev));
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800855 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700858static const void *device_namespace(struct kobject *kobj)
859{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200860 struct device *dev = kobj_to_dev(kobj);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700861 const void *ns = NULL;
862
863 if (dev->class && dev->class->ns_type)
864 ns = dev->class->namespace(dev);
865
866 return ns;
867}
868
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600869static struct kobj_type device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 .release = device_release,
871 .sysfs_ops = &dev_sysfs_ops,
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700872 .namespace = device_namespace,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873};
874
875
Kay Sievers312c0042005-11-16 09:00:00 +0100876static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
878 struct kobj_type *ktype = get_ktype(kobj);
879
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600880 if (ktype == &device_ktype) {
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200881 struct device *dev = kobj_to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (dev->bus)
883 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700884 if (dev->class)
885 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887 return 0;
888}
889
Kay Sievers312c0042005-11-16 09:00:00 +0100890static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200892 struct device *dev = kobj_to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700894 if (dev->bus)
895 return dev->bus->name;
896 if (dev->class)
897 return dev->class->name;
898 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
Kay Sievers7eff2e72007-08-14 15:15:12 +0200901static int dev_uevent(struct kset *kset, struct kobject *kobj,
902 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200904 struct device *dev = kobj_to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int retval = 0;
906
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200907 /* add device node properties if present */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700908 if (MAJOR(dev->devt)) {
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200909 const char *tmp;
910 const char *name;
Al Viro2c9ede52011-07-23 20:24:48 -0400911 umode_t mode = 0;
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -0700912 kuid_t uid = GLOBAL_ROOT_UID;
913 kgid_t gid = GLOBAL_ROOT_GID;
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200914
Kay Sievers7eff2e72007-08-14 15:15:12 +0200915 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
916 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
Kay Sievers3c2670e2013-04-06 09:56:00 -0700917 name = device_get_devnode(dev, &mode, &uid, &gid, &tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200918 if (name) {
919 add_uevent_var(env, "DEVNAME=%s", name);
Kay Sieverse454cea2009-09-18 23:01:12 +0200920 if (mode)
921 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -0700922 if (!uid_eq(uid, GLOBAL_ROOT_UID))
923 add_uevent_var(env, "DEVUID=%u", from_kuid(&init_user_ns, uid));
924 if (!gid_eq(gid, GLOBAL_ROOT_GID))
925 add_uevent_var(env, "DEVGID=%u", from_kgid(&init_user_ns, gid));
Kay Sievers3c2670e2013-04-06 09:56:00 -0700926 kfree(tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200927 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700928 }
929
Kay Sievers414264f2007-03-12 21:08:57 +0100930 if (dev->type && dev->type->name)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200931 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
Kay Sievers414264f2007-03-12 21:08:57 +0100932
Kay Sievers239378f2006-10-07 21:54:55 +0200933 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200934 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200935
Grant Likely07d57a32012-02-01 11:22:22 -0700936 /* Add common DT information about the device */
937 of_device_uevent(dev, env);
938
Kay Sievers7eff2e72007-08-14 15:15:12 +0200939 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100940 if (dev->bus && dev->bus->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200941 retval = dev->bus->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200942 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800943 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100944 dev_name(dev), __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946
Kay Sievers7eff2e72007-08-14 15:15:12 +0200947 /* have the class specific function add its stuff */
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700948 if (dev->class && dev->class->dev_uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200949 retval = dev->class->dev_uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200950 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800951 pr_debug("device: '%s': %s: class uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100952 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800953 __func__, retval);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200954 }
955
Stefan Weileef35c22010-08-06 21:11:15 +0200956 /* have the device type specific function add its stuff */
Kay Sieversf9f852d2006-10-07 21:54:55 +0200957 if (dev->type && dev->type->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200958 retval = dev->type->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200959 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800960 pr_debug("device: '%s': %s: dev_type uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100961 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800962 __func__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700963 }
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return retval;
966}
967
Emese Revfy9cd43612009-12-31 14:52:51 +0100968static const struct kset_uevent_ops device_uevent_ops = {
Kay Sievers312c0042005-11-16 09:00:00 +0100969 .filter = dev_uevent_filter,
970 .name = dev_uevent_name,
971 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972};
973
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -0700974static ssize_t uevent_show(struct device *dev, struct device_attribute *attr,
Kay Sievers16574dc2007-04-06 01:40:38 +0200975 char *buf)
976{
977 struct kobject *top_kobj;
978 struct kset *kset;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200979 struct kobj_uevent_env *env = NULL;
Kay Sievers16574dc2007-04-06 01:40:38 +0200980 int i;
981 size_t count = 0;
982 int retval;
983
984 /* search the kset, the device belongs to */
985 top_kobj = &dev->kobj;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200986 while (!top_kobj->kset && top_kobj->parent)
987 top_kobj = top_kobj->parent;
Kay Sievers16574dc2007-04-06 01:40:38 +0200988 if (!top_kobj->kset)
989 goto out;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200990
Kay Sievers16574dc2007-04-06 01:40:38 +0200991 kset = top_kobj->kset;
992 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
993 goto out;
994
995 /* respect filter */
996 if (kset->uevent_ops && kset->uevent_ops->filter)
997 if (!kset->uevent_ops->filter(kset, &dev->kobj))
998 goto out;
999
Kay Sievers7eff2e72007-08-14 15:15:12 +02001000 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
1001 if (!env)
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +02001002 return -ENOMEM;
1003
Kay Sievers16574dc2007-04-06 01:40:38 +02001004 /* let the kset specific function add its keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001005 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
Kay Sievers16574dc2007-04-06 01:40:38 +02001006 if (retval)
1007 goto out;
1008
1009 /* copy keys to file */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001010 for (i = 0; i < env->envp_idx; i++)
1011 count += sprintf(&buf[count], "%s\n", env->envp[i]);
Kay Sievers16574dc2007-04-06 01:40:38 +02001012out:
Kay Sievers7eff2e72007-08-14 15:15:12 +02001013 kfree(env);
Kay Sievers16574dc2007-04-06 01:40:38 +02001014 return count;
1015}
1016
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001017static ssize_t uevent_store(struct device *dev, struct device_attribute *attr,
Kay Sieversa7fd6702005-10-01 14:49:43 +02001018 const char *buf, size_t count)
1019{
Peter Rajnohaf36776f2017-05-09 15:22:30 +02001020 if (kobject_synth_uevent(&dev->kobj, buf, count))
1021 dev_err(dev, "uevent: failed to send synthetic uevent\n");
Kay Sievers60a96a52007-07-08 22:29:26 +02001022
Kay Sieversa7fd6702005-10-01 14:49:43 +02001023 return count;
1024}
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001025static DEVICE_ATTR_RW(uevent);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001026
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001027static ssize_t online_show(struct device *dev, struct device_attribute *attr,
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001028 char *buf)
1029{
1030 bool val;
1031
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02001032 device_lock(dev);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001033 val = !dev->offline;
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02001034 device_unlock(dev);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001035 return sprintf(buf, "%u\n", val);
1036}
1037
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001038static ssize_t online_store(struct device *dev, struct device_attribute *attr,
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001039 const char *buf, size_t count)
1040{
1041 bool val;
1042 int ret;
1043
1044 ret = strtobool(buf, &val);
1045 if (ret < 0)
1046 return ret;
1047
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02001048 ret = lock_device_hotplug_sysfs();
1049 if (ret)
1050 return ret;
1051
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001052 ret = val ? device_online(dev) : device_offline(dev);
1053 unlock_device_hotplug();
1054 return ret < 0 ? ret : count;
1055}
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001056static DEVICE_ATTR_RW(online);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001057
Greg Kroah-Hartmanfa6fdb32013-08-08 15:22:55 -07001058int device_add_groups(struct device *dev, const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001059{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -07001060 return sysfs_create_groups(&dev->kobj, groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001061}
Dmitry Torokhova7670d42017-07-19 17:24:31 -07001062EXPORT_SYMBOL_GPL(device_add_groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001063
Greg Kroah-Hartmanfa6fdb32013-08-08 15:22:55 -07001064void device_remove_groups(struct device *dev,
1065 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001066{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -07001067 sysfs_remove_groups(&dev->kobj, groups);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -07001068}
Dmitry Torokhova7670d42017-07-19 17:24:31 -07001069EXPORT_SYMBOL_GPL(device_remove_groups);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -07001070
Dmitry Torokhov57b8ff02017-07-19 17:24:33 -07001071union device_attr_group_devres {
1072 const struct attribute_group *group;
1073 const struct attribute_group **groups;
1074};
1075
1076static int devm_attr_group_match(struct device *dev, void *res, void *data)
1077{
1078 return ((union device_attr_group_devres *)res)->group == data;
1079}
1080
1081static void devm_attr_group_remove(struct device *dev, void *res)
1082{
1083 union device_attr_group_devres *devres = res;
1084 const struct attribute_group *group = devres->group;
1085
1086 dev_dbg(dev, "%s: removing group %p\n", __func__, group);
1087 sysfs_remove_group(&dev->kobj, group);
1088}
1089
1090static void devm_attr_groups_remove(struct device *dev, void *res)
1091{
1092 union device_attr_group_devres *devres = res;
1093 const struct attribute_group **groups = devres->groups;
1094
1095 dev_dbg(dev, "%s: removing groups %p\n", __func__, groups);
1096 sysfs_remove_groups(&dev->kobj, groups);
1097}
1098
1099/**
1100 * devm_device_add_group - given a device, create a managed attribute group
1101 * @dev: The device to create the group for
1102 * @grp: The attribute group to create
1103 *
1104 * This function creates a group for the first time. It will explicitly
1105 * warn and error if any of the attribute files being created already exist.
1106 *
1107 * Returns 0 on success or error code on failure.
1108 */
1109int devm_device_add_group(struct device *dev, const struct attribute_group *grp)
1110{
1111 union device_attr_group_devres *devres;
1112 int error;
1113
1114 devres = devres_alloc(devm_attr_group_remove,
1115 sizeof(*devres), GFP_KERNEL);
1116 if (!devres)
1117 return -ENOMEM;
1118
1119 error = sysfs_create_group(&dev->kobj, grp);
1120 if (error) {
1121 devres_free(devres);
1122 return error;
1123 }
1124
1125 devres->group = grp;
1126 devres_add(dev, devres);
1127 return 0;
1128}
1129EXPORT_SYMBOL_GPL(devm_device_add_group);
1130
1131/**
1132 * devm_device_remove_group: remove a managed group from a device
1133 * @dev: device to remove the group from
1134 * @grp: group to remove
1135 *
1136 * This function removes a group of attributes from a device. The attributes
1137 * previously have to have been created for this group, otherwise it will fail.
1138 */
1139void devm_device_remove_group(struct device *dev,
1140 const struct attribute_group *grp)
1141{
1142 WARN_ON(devres_release(dev, devm_attr_group_remove,
1143 devm_attr_group_match,
1144 /* cast away const */ (void *)grp));
1145}
1146EXPORT_SYMBOL_GPL(devm_device_remove_group);
1147
1148/**
1149 * devm_device_add_groups - create a bunch of managed attribute groups
1150 * @dev: The device to create the group for
1151 * @groups: The attribute groups to create, NULL terminated
1152 *
1153 * This function creates a bunch of managed attribute groups. If an error
1154 * occurs when creating a group, all previously created groups will be
1155 * removed, unwinding everything back to the original state when this
1156 * function was called. It will explicitly warn and error if any of the
1157 * attribute files being created already exist.
1158 *
1159 * Returns 0 on success or error code from sysfs_create_group on failure.
1160 */
1161int devm_device_add_groups(struct device *dev,
1162 const struct attribute_group **groups)
1163{
1164 union device_attr_group_devres *devres;
1165 int error;
1166
1167 devres = devres_alloc(devm_attr_groups_remove,
1168 sizeof(*devres), GFP_KERNEL);
1169 if (!devres)
1170 return -ENOMEM;
1171
1172 error = sysfs_create_groups(&dev->kobj, groups);
1173 if (error) {
1174 devres_free(devres);
1175 return error;
1176 }
1177
1178 devres->groups = groups;
1179 devres_add(dev, devres);
1180 return 0;
1181}
1182EXPORT_SYMBOL_GPL(devm_device_add_groups);
1183
1184/**
1185 * devm_device_remove_groups - remove a list of managed groups
1186 *
1187 * @dev: The device for the groups to be removed from
1188 * @groups: NULL terminated list of groups to be removed
1189 *
1190 * If groups is not NULL, remove the specified groups from the device.
1191 */
1192void devm_device_remove_groups(struct device *dev,
1193 const struct attribute_group **groups)
1194{
1195 WARN_ON(devres_release(dev, devm_attr_groups_remove,
1196 devm_attr_group_match,
1197 /* cast away const */ (void *)groups));
1198}
1199EXPORT_SYMBOL_GPL(devm_device_remove_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001201static int device_add_attrs(struct device *dev)
1202{
1203 struct class *class = dev->class;
Stephen Hemmingeraed65af2011-03-28 09:12:52 -07001204 const struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001205 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001206
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001207 if (class) {
Greg Kroah-Hartmand05a6f92013-07-14 16:05:58 -07001208 error = device_add_groups(dev, class->dev_groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001209 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001210 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001211 }
Kay Sieversf9f852d2006-10-07 21:54:55 +02001212
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001213 if (type) {
1214 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001215 if (error)
Greg Kroah-Hartmana6b01de2013-10-05 18:19:30 -07001216 goto err_remove_class_groups;
Kay Sieversf9f852d2006-10-07 21:54:55 +02001217 }
1218
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001219 error = device_add_groups(dev, dev->groups);
1220 if (error)
1221 goto err_remove_type_groups;
1222
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001223 if (device_supports_offline(dev) && !dev->offline_disabled) {
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001224 error = device_create_file(dev, &dev_attr_online);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001225 if (error)
Rafael J. Wysockiecfbf6f2013-12-12 06:11:02 +01001226 goto err_remove_dev_groups;
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001227 }
1228
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001229 return 0;
1230
Rafael J. Wysockiecfbf6f2013-12-12 06:11:02 +01001231 err_remove_dev_groups:
1232 device_remove_groups(dev, dev->groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001233 err_remove_type_groups:
1234 if (type)
1235 device_remove_groups(dev, type->groups);
Greg Kroah-Hartmand05a6f92013-07-14 16:05:58 -07001236 err_remove_class_groups:
1237 if (class)
1238 device_remove_groups(dev, class->dev_groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001239
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001240 return error;
1241}
1242
1243static void device_remove_attrs(struct device *dev)
1244{
1245 struct class *class = dev->class;
Stephen Hemmingeraed65af2011-03-28 09:12:52 -07001246 const struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001247
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001248 device_remove_file(dev, &dev_attr_online);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001249 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001250
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001251 if (type)
1252 device_remove_groups(dev, type->groups);
1253
Greg Kroah-Hartmana6b01de2013-10-05 18:19:30 -07001254 if (class)
Greg Kroah-Hartmand05a6f92013-07-14 16:05:58 -07001255 device_remove_groups(dev, class->dev_groups);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001256}
1257
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001258static ssize_t dev_show(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001259 char *buf)
1260{
1261 return print_dev_t(buf, dev->devt);
1262}
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001263static DEVICE_ATTR_RO(dev);
Tejun Heoad6a1e12007-06-14 03:45:17 +09001264
Kay Sieversca22e562011-12-14 14:29:38 -08001265/* /sys/devices/ */
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06001266struct kset *devices_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268/**
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03001269 * devices_kset_move_before - Move device in the devices_kset's list.
1270 * @deva: Device to move.
1271 * @devb: Device @deva should come before.
1272 */
1273static void devices_kset_move_before(struct device *deva, struct device *devb)
1274{
1275 if (!devices_kset)
1276 return;
1277 pr_debug("devices_kset: Moving %s before %s\n",
1278 dev_name(deva), dev_name(devb));
1279 spin_lock(&devices_kset->list_lock);
1280 list_move_tail(&deva->kobj.entry, &devb->kobj.entry);
1281 spin_unlock(&devices_kset->list_lock);
1282}
1283
1284/**
1285 * devices_kset_move_after - Move device in the devices_kset's list.
1286 * @deva: Device to move
1287 * @devb: Device @deva should come after.
1288 */
1289static void devices_kset_move_after(struct device *deva, struct device *devb)
1290{
1291 if (!devices_kset)
1292 return;
1293 pr_debug("devices_kset: Moving %s after %s\n",
1294 dev_name(deva), dev_name(devb));
1295 spin_lock(&devices_kset->list_lock);
1296 list_move(&deva->kobj.entry, &devb->kobj.entry);
1297 spin_unlock(&devices_kset->list_lock);
1298}
1299
1300/**
1301 * devices_kset_move_last - move the device to the end of devices_kset's list.
1302 * @dev: device to move
1303 */
1304void devices_kset_move_last(struct device *dev)
1305{
1306 if (!devices_kset)
1307 return;
1308 pr_debug("devices_kset: Moving %s to end of list\n", dev_name(dev));
1309 spin_lock(&devices_kset->list_lock);
1310 list_move_tail(&dev->kobj.entry, &devices_kset->list);
1311 spin_unlock(&devices_kset->list_lock);
1312}
1313
1314/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001315 * device_create_file - create sysfs attribute file for device.
1316 * @dev: device.
1317 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 */
Phil Carmody26579ab2009-12-18 15:34:19 +02001319int device_create_file(struct device *dev,
1320 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
1322 int error = 0;
Felipe Balbi8f46baa2013-02-20 10:31:42 +02001323
1324 if (dev) {
1325 WARN(((attr->attr.mode & S_IWUGO) && !attr->store),
dyoung@redhat.com97521972013-05-16 14:31:30 +08001326 "Attribute %s: write permission without 'store'\n",
1327 attr->attr.name);
Felipe Balbi8f46baa2013-02-20 10:31:42 +02001328 WARN(((attr->attr.mode & S_IRUGO) && !attr->show),
dyoung@redhat.com97521972013-05-16 14:31:30 +08001329 "Attribute %s: read permission without 'show'\n",
1330 attr->attr.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 error = sysfs_create_file(&dev->kobj, &attr->attr);
Felipe Balbi8f46baa2013-02-20 10:31:42 +02001332 }
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 return error;
1335}
David Graham White86df2682013-07-21 20:41:14 -04001336EXPORT_SYMBOL_GPL(device_create_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001339 * device_remove_file - remove sysfs attribute file.
1340 * @dev: device.
1341 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 */
Phil Carmody26579ab2009-12-18 15:34:19 +02001343void device_remove_file(struct device *dev,
1344 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
Cornelia Huck0c98b192008-01-31 10:39:38 +01001346 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 sysfs_remove_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
David Graham White86df2682013-07-21 20:41:14 -04001349EXPORT_SYMBOL_GPL(device_remove_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07001351/**
Tejun Heo6b0afc22014-02-03 14:03:01 -05001352 * device_remove_file_self - remove sysfs attribute file from its own method.
1353 * @dev: device.
1354 * @attr: device attribute descriptor.
1355 *
1356 * See kernfs_remove_self() for details.
1357 */
1358bool device_remove_file_self(struct device *dev,
1359 const struct device_attribute *attr)
1360{
1361 if (dev)
1362 return sysfs_remove_file_self(&dev->kobj, &attr->attr);
1363 else
1364 return false;
1365}
1366EXPORT_SYMBOL_GPL(device_remove_file_self);
1367
1368/**
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07001369 * device_create_bin_file - create sysfs binary attribute file for device.
1370 * @dev: device.
1371 * @attr: device binary attribute descriptor.
1372 */
Phil Carmody66ecb922009-12-18 15:34:20 +02001373int device_create_bin_file(struct device *dev,
1374 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07001375{
1376 int error = -EINVAL;
1377 if (dev)
1378 error = sysfs_create_bin_file(&dev->kobj, attr);
1379 return error;
1380}
1381EXPORT_SYMBOL_GPL(device_create_bin_file);
1382
1383/**
1384 * device_remove_bin_file - remove sysfs binary attribute file
1385 * @dev: device.
1386 * @attr: device binary attribute descriptor.
1387 */
Phil Carmody66ecb922009-12-18 15:34:20 +02001388void device_remove_bin_file(struct device *dev,
1389 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07001390{
1391 if (dev)
1392 sysfs_remove_bin_file(&dev->kobj, attr);
1393}
1394EXPORT_SYMBOL_GPL(device_remove_bin_file);
1395
James Bottomley34bb61f2005-09-06 16:56:51 -07001396static void klist_children_get(struct klist_node *n)
1397{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001398 struct device_private *p = to_device_private_parent(n);
1399 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -07001400
1401 get_device(dev);
1402}
1403
1404static void klist_children_put(struct klist_node *n)
1405{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001406 struct device_private *p = to_device_private_parent(n);
1407 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -07001408
1409 put_device(dev);
1410}
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001413 * device_initialize - init device structure.
1414 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 *
Cornelia Huck57394112008-09-03 18:26:40 +02001416 * This prepares the device for use by other layers by initializing
1417 * its fields.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001418 * It is the first half of device_register(), if called by
Cornelia Huck57394112008-09-03 18:26:40 +02001419 * that function, though it can also be called separately, so one
1420 * may use @dev's fields. In particular, get_device()/put_device()
1421 * may be used for reference counting of @dev after calling this
1422 * function.
1423 *
Alan Sternb10d5ef2012-01-17 11:39:00 -05001424 * All fields in @dev must be initialized by the caller to 0, except
1425 * for those explicitly set to some other value. The simplest
1426 * approach is to use kzalloc() to allocate the structure containing
1427 * @dev.
1428 *
Cornelia Huck57394112008-09-03 18:26:40 +02001429 * NOTE: Use put_device() to give up your reference instead of freeing
1430 * @dev directly once you have called this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432void device_initialize(struct device *dev)
1433{
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06001434 dev->kobj.kset = devices_kset;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -07001435 kobject_init(&dev->kobj, &device_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 INIT_LIST_HEAD(&dev->dma_pools);
Thomas Gleixner31427882010-01-29 20:39:02 +00001437 mutex_init(&dev->mutex);
Peter Zijlstra1704f472010-03-19 01:37:42 +01001438 lockdep_set_novalidate_class(&dev->mutex);
Tejun Heo9ac78492007-01-20 16:00:26 +09001439 spin_lock_init(&dev->devres_lock);
1440 INIT_LIST_HEAD(&dev->devres_head);
Alan Stern3b98aea2008-08-07 13:06:12 -04001441 device_pm_init(dev);
Christoph Hellwig87348132006-12-06 20:32:33 -08001442 set_dev_node(dev, -1);
Jiang Liu4a7cc832015-07-09 16:00:44 +08001443#ifdef CONFIG_GENERIC_MSI_IRQ
1444 INIT_LIST_HEAD(&dev->msi_list);
1445#endif
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001446 INIT_LIST_HEAD(&dev->links.consumers);
1447 INIT_LIST_HEAD(&dev->links.suppliers);
1448 dev->links.status = DL_DEV_NO_DRIVER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
David Graham White86df2682013-07-21 20:41:14 -04001450EXPORT_SYMBOL_GPL(device_initialize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Tejun Heod73ce002013-03-12 11:30:05 -07001452struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07001453{
Kay Sievers86406242007-03-14 03:25:56 +01001454 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07001455
Kay Sievers86406242007-03-14 03:25:56 +01001456 if (!virtual_dir)
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001457 virtual_dir = kobject_create_and_add("virtual",
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06001458 &devices_kset->kobj);
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07001459
Kay Sievers86406242007-03-14 03:25:56 +01001460 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07001461}
1462
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001463struct class_dir {
1464 struct kobject kobj;
1465 struct class *class;
1466};
1467
1468#define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
1469
1470static void class_dir_release(struct kobject *kobj)
1471{
1472 struct class_dir *dir = to_class_dir(kobj);
1473 kfree(dir);
1474}
1475
1476static const
1477struct kobj_ns_type_operations *class_dir_child_ns_type(struct kobject *kobj)
1478{
1479 struct class_dir *dir = to_class_dir(kobj);
1480 return dir->class->ns_type;
1481}
1482
1483static struct kobj_type class_dir_ktype = {
1484 .release = class_dir_release,
1485 .sysfs_ops = &kobj_sysfs_ops,
1486 .child_ns_type = class_dir_child_ns_type
1487};
1488
1489static struct kobject *
1490class_dir_create_and_add(struct class *class, struct kobject *parent_kobj)
1491{
1492 struct class_dir *dir;
1493 int retval;
1494
1495 dir = kzalloc(sizeof(*dir), GFP_KERNEL);
1496 if (!dir)
Tetsuo Handa84d0c272018-05-07 19:10:31 +09001497 return ERR_PTR(-ENOMEM);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001498
1499 dir->class = class;
1500 kobject_init(&dir->kobj, &class_dir_ktype);
1501
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001502 dir->kobj.kset = &class->p->glue_dirs;
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001503
1504 retval = kobject_add(&dir->kobj, parent_kobj, "%s", class->name);
1505 if (retval < 0) {
1506 kobject_put(&dir->kobj);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09001507 return ERR_PTR(retval);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001508 }
1509 return &dir->kobj;
1510}
1511
Yijing Wange4a60d12014-11-07 12:05:49 +08001512static DEFINE_MUTEX(gdp_mutex);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001513
Kay Sieversda231fd2007-11-21 17:29:15 +01001514static struct kobject *get_device_parent(struct device *dev,
1515 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +01001516{
Kay Sievers86406242007-03-14 03:25:56 +01001517 if (dev->class) {
1518 struct kobject *kobj = NULL;
1519 struct kobject *parent_kobj;
1520 struct kobject *k;
1521
Randy Dunlapead454f2010-09-24 14:36:49 -07001522#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -07001523 /* block disks show up in /sys/block */
Andi Kleene52eec12010-09-08 16:54:17 +02001524 if (sysfs_deprecated && dev->class == &block_class) {
Kay Sievers39aba962010-09-04 22:33:14 -07001525 if (parent && parent->class == &block_class)
1526 return &parent->kobj;
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001527 return &block_class.p->subsys.kobj;
Kay Sievers39aba962010-09-04 22:33:14 -07001528 }
Randy Dunlapead454f2010-09-24 14:36:49 -07001529#endif
Andi Kleene52eec12010-09-08 16:54:17 +02001530
Kay Sievers86406242007-03-14 03:25:56 +01001531 /*
1532 * If we have no parent, we live in "virtual".
Kay Sievers0f4dafc2007-12-19 01:40:42 +01001533 * Class-devices with a non class-device as parent, live
1534 * in a "glue" directory to prevent namespace collisions.
Kay Sievers86406242007-03-14 03:25:56 +01001535 */
1536 if (parent == NULL)
1537 parent_kobj = virtual_device_parent(dev);
Eric W. Biederman24b14422010-07-24 22:43:35 -07001538 else if (parent->class && !dev->class->ns_type)
Kay Sievers86406242007-03-14 03:25:56 +01001539 return &parent->kobj;
1540 else
1541 parent_kobj = &parent->kobj;
1542
Tejun Heo77d3d7c2010-02-05 17:57:02 +09001543 mutex_lock(&gdp_mutex);
1544
Kay Sievers86406242007-03-14 03:25:56 +01001545 /* find our class-directory at the parent and reference it */
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001546 spin_lock(&dev->class->p->glue_dirs.list_lock);
1547 list_for_each_entry(k, &dev->class->p->glue_dirs.list, entry)
Kay Sievers86406242007-03-14 03:25:56 +01001548 if (k->parent == parent_kobj) {
1549 kobj = kobject_get(k);
1550 break;
1551 }
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001552 spin_unlock(&dev->class->p->glue_dirs.list_lock);
Tejun Heo77d3d7c2010-02-05 17:57:02 +09001553 if (kobj) {
1554 mutex_unlock(&gdp_mutex);
Kay Sievers86406242007-03-14 03:25:56 +01001555 return kobj;
Tejun Heo77d3d7c2010-02-05 17:57:02 +09001556 }
Kay Sievers86406242007-03-14 03:25:56 +01001557
1558 /* or create a new class-directory at the parent device */
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001559 k = class_dir_create_and_add(dev->class, parent_kobj);
Kay Sievers0f4dafc2007-12-19 01:40:42 +01001560 /* do not emit an uevent for this simple "glue" directory */
Tejun Heo77d3d7c2010-02-05 17:57:02 +09001561 mutex_unlock(&gdp_mutex);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -08001562 return k;
Kay Sievers86406242007-03-14 03:25:56 +01001563 }
1564
Kay Sieversca22e562011-12-14 14:29:38 -08001565 /* subsystems can specify a default root directory for their devices */
1566 if (!parent && dev->bus && dev->bus->dev_root)
1567 return &dev->bus->dev_root->kobj;
1568
Kay Sievers86406242007-03-14 03:25:56 +01001569 if (parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001570 return &parent->kobj;
1571 return NULL;
1572}
Kay Sieversda231fd2007-11-21 17:29:15 +01001573
Ming Leicebf8fd2016-07-10 19:27:36 +08001574static inline bool live_in_glue_dir(struct kobject *kobj,
1575 struct device *dev)
1576{
1577 if (!kobj || !dev->class ||
1578 kobj->kset != &dev->class->p->glue_dirs)
1579 return false;
1580 return true;
1581}
1582
1583static inline struct kobject *get_glue_dir(struct device *dev)
1584{
1585 return dev->kobj.parent;
1586}
1587
1588/*
1589 * make sure cleaning up dir as the last step, we need to make
1590 * sure .release handler of kobject is run with holding the
1591 * global lock
1592 */
Cornelia Huck63b69712008-01-21 16:09:44 +01001593static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
Kay Sieversda231fd2007-11-21 17:29:15 +01001594{
Kay Sievers0f4dafc2007-12-19 01:40:42 +01001595 /* see if we live in a "glue" directory */
Ming Leicebf8fd2016-07-10 19:27:36 +08001596 if (!live_in_glue_dir(glue_dir, dev))
Kay Sieversda231fd2007-11-21 17:29:15 +01001597 return;
1598
Yijing Wange4a60d12014-11-07 12:05:49 +08001599 mutex_lock(&gdp_mutex);
Benjamin Herrenschmidt726e4102018-07-10 10:29:10 +10001600 if (!kobject_has_children(glue_dir))
1601 kobject_del(glue_dir);
Kay Sievers0f4dafc2007-12-19 01:40:42 +01001602 kobject_put(glue_dir);
Yijing Wange4a60d12014-11-07 12:05:49 +08001603 mutex_unlock(&gdp_mutex);
Kay Sieversda231fd2007-11-21 17:29:15 +01001604}
Cornelia Huck63b69712008-01-21 16:09:44 +01001605
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001606static int device_add_class_symlinks(struct device *dev)
1607{
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001608 struct device_node *of_node = dev_of_node(dev);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001609 int error;
1610
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001611 if (of_node) {
Rob Herring0c3c2342017-10-04 14:04:01 -05001612 error = sysfs_create_link(&dev->kobj, of_node_kobj(of_node), "of_node");
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001613 if (error)
1614 dev_warn(dev, "Error %d creating of_node link\n",error);
1615 /* An error here doesn't warrant bringing down the device */
1616 }
1617
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001618 if (!dev->class)
1619 return 0;
Kay Sieversda231fd2007-11-21 17:29:15 +01001620
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -07001621 error = sysfs_create_link(&dev->kobj,
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001622 &dev->class->p->subsys.kobj,
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001623 "subsystem");
1624 if (error)
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001625 goto out_devnode;
Kay Sieversda231fd2007-11-21 17:29:15 +01001626
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -08001627 if (dev->parent && device_is_not_partition(dev)) {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -07001628 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
1629 "device");
1630 if (error)
Kay Sievers39aba962010-09-04 22:33:14 -07001631 goto out_subsys;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001632 }
Kay Sievers39aba962010-09-04 22:33:14 -07001633
Randy Dunlapead454f2010-09-24 14:36:49 -07001634#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -07001635 /* /sys/block has directories and does not need symlinks */
Andi Kleene52eec12010-09-08 16:54:17 +02001636 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -07001637 return 0;
Randy Dunlapead454f2010-09-24 14:36:49 -07001638#endif
Kay Sievers39aba962010-09-04 22:33:14 -07001639
1640 /* link in the class directory pointing to the device */
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001641 error = sysfs_create_link(&dev->class->p->subsys.kobj,
Kay Sievers39aba962010-09-04 22:33:14 -07001642 &dev->kobj, dev_name(dev));
1643 if (error)
1644 goto out_device;
1645
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001646 return 0;
1647
Kay Sievers39aba962010-09-04 22:33:14 -07001648out_device:
1649 sysfs_remove_link(&dev->kobj, "device");
Kay Sieversda231fd2007-11-21 17:29:15 +01001650
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001651out_subsys:
1652 sysfs_remove_link(&dev->kobj, "subsystem");
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001653out_devnode:
1654 sysfs_remove_link(&dev->kobj, "of_node");
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001655 return error;
1656}
1657
1658static void device_remove_class_symlinks(struct device *dev)
1659{
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001660 if (dev_of_node(dev))
1661 sysfs_remove_link(&dev->kobj, "of_node");
1662
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001663 if (!dev->class)
1664 return;
Kay Sieversda231fd2007-11-21 17:29:15 +01001665
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -08001666 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +01001667 sysfs_remove_link(&dev->kobj, "device");
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001668 sysfs_remove_link(&dev->kobj, "subsystem");
Randy Dunlapead454f2010-09-24 14:36:49 -07001669#ifdef CONFIG_BLOCK
Andi Kleene52eec12010-09-08 16:54:17 +02001670 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -07001671 return;
Randy Dunlapead454f2010-09-24 14:36:49 -07001672#endif
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001673 sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev));
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001674}
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676/**
Stephen Rothwell413c2392008-05-30 10:16:40 +10001677 * dev_set_name - set a device name
1678 * @dev: device
Randy Dunlap46232362008-06-04 21:40:43 -07001679 * @fmt: format string for the device's name
Stephen Rothwell413c2392008-05-30 10:16:40 +10001680 */
1681int dev_set_name(struct device *dev, const char *fmt, ...)
1682{
1683 va_list vargs;
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001684 int err;
Stephen Rothwell413c2392008-05-30 10:16:40 +10001685
1686 va_start(vargs, fmt);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001687 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
Stephen Rothwell413c2392008-05-30 10:16:40 +10001688 va_end(vargs);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001689 return err;
Stephen Rothwell413c2392008-05-30 10:16:40 +10001690}
1691EXPORT_SYMBOL_GPL(dev_set_name);
1692
1693/**
Dan Williamse105b8b2008-04-21 10:51:07 -07001694 * device_to_dev_kobj - select a /sys/dev/ directory for the device
1695 * @dev: device
1696 *
1697 * By default we select char/ for new entries. Setting class->dev_obj
1698 * to NULL prevents an entry from being created. class->dev_kobj must
1699 * be set (or cleared) before any devices are registered to the class
1700 * otherwise device_create_sys_dev_entry() and
Peter Korsgaard0d4e293c2012-04-17 12:12:57 +02001701 * device_remove_sys_dev_entry() will disagree about the presence of
1702 * the link.
Dan Williamse105b8b2008-04-21 10:51:07 -07001703 */
1704static struct kobject *device_to_dev_kobj(struct device *dev)
1705{
1706 struct kobject *kobj;
1707
1708 if (dev->class)
1709 kobj = dev->class->dev_kobj;
1710 else
1711 kobj = sysfs_dev_char_kobj;
1712
1713 return kobj;
1714}
1715
1716static int device_create_sys_dev_entry(struct device *dev)
1717{
1718 struct kobject *kobj = device_to_dev_kobj(dev);
1719 int error = 0;
1720 char devt_str[15];
1721
1722 if (kobj) {
1723 format_dev_t(devt_str, dev->devt);
1724 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
1725 }
1726
1727 return error;
1728}
1729
1730static void device_remove_sys_dev_entry(struct device *dev)
1731{
1732 struct kobject *kobj = device_to_dev_kobj(dev);
1733 char devt_str[15];
1734
1735 if (kobj) {
1736 format_dev_t(devt_str, dev->devt);
1737 sysfs_remove_link(kobj, devt_str);
1738 }
1739}
1740
Shaokun Zhang46d3a032018-07-15 18:08:56 +08001741static int device_private_init(struct device *dev)
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07001742{
1743 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
1744 if (!dev->p)
1745 return -ENOMEM;
1746 dev->p->device = dev;
1747 klist_init(&dev->p->klist_children, klist_children_get,
1748 klist_children_put);
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -08001749 INIT_LIST_HEAD(&dev->p->deferred_probe);
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07001750 return 0;
1751}
1752
Dan Williamse105b8b2008-04-21 10:51:07 -07001753/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001754 * device_add - add device to device hierarchy.
1755 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001757 * This is part 2 of device_register(), though may be called
1758 * separately _iff_ device_initialize() has been called separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 *
Cornelia Huck57394112008-09-03 18:26:40 +02001760 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001761 * to the global and sibling lists for the device, then
1762 * adds it to the other relevant subsystems of the driver model.
Cornelia Huck57394112008-09-03 18:26:40 +02001763 *
Alan Sternb10d5ef2012-01-17 11:39:00 -05001764 * Do not call this routine or device_register() more than once for
1765 * any device structure. The driver model core is not designed to work
1766 * with devices that get unregistered and then spring back to life.
1767 * (Among other things, it's very hard to guarantee that all references
1768 * to the previous incarnation of @dev have been dropped.) Allocate
1769 * and register a fresh new struct device instead.
1770 *
Cornelia Huck57394112008-09-03 18:26:40 +02001771 * NOTE: _Never_ directly free @dev after calling this function, even
1772 * if it returned an error! Always use put_device() to give up your
1773 * reference instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 */
1775int device_add(struct device *dev)
1776{
Viresh Kumar35dbf4e2017-03-17 12:24:22 +05301777 struct device *parent;
Kay Sieversca22e562011-12-14 14:29:38 -08001778 struct kobject *kobj;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001779 struct class_interface *class_intf;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001780 int error = -EINVAL;
Ming Leicebf8fd2016-07-10 19:27:36 +08001781 struct kobject *glue_dir = NULL;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 dev = get_device(dev);
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001784 if (!dev)
1785 goto done;
1786
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08001787 if (!dev->p) {
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07001788 error = device_private_init(dev);
1789 if (error)
1790 goto done;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08001791 }
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08001792
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001793 /*
1794 * for statically allocated devices, which should all be converted
1795 * some day, we need to initialize the name. We prevent reading back
1796 * the name, and force the use of dev_name()
1797 */
1798 if (dev->init_name) {
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07001799 dev_set_name(dev, "%s", dev->init_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001800 dev->init_name = NULL;
1801 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001802
Kay Sieversca22e562011-12-14 14:29:38 -08001803 /* subsystems can specify simple device enumeration */
1804 if (!dev_name(dev) && dev->bus && dev->bus->dev_name)
1805 dev_set_name(dev, "%s%u", dev->bus->dev_name, dev->id);
1806
Thomas Gleixnere6309e72009-12-10 19:32:49 +00001807 if (!dev_name(dev)) {
1808 error = -EINVAL;
Kay Sievers5c8563d2009-05-28 14:24:07 -07001809 goto name_error;
Thomas Gleixnere6309e72009-12-10 19:32:49 +00001810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001812 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -07001813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 parent = get_device(dev->parent);
Kay Sieversca22e562011-12-14 14:29:38 -08001815 kobj = get_device_parent(dev, parent);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09001816 if (IS_ERR(kobj)) {
1817 error = PTR_ERR(kobj);
1818 goto parent_error;
1819 }
Kay Sieversca22e562011-12-14 14:29:38 -08001820 if (kobj)
1821 dev->kobj.parent = kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Yinghai Lu0d358f22008-02-19 03:20:41 -08001823 /* use parent numa_node */
Zhen Lei56f2de82015-08-25 12:08:22 +08001824 if (parent && (dev_to_node(dev) == NUMA_NO_NODE))
Yinghai Lu0d358f22008-02-19 03:20:41 -08001825 set_dev_node(dev, dev_to_node(parent));
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 /* first, register with generic layer. */
Kay Sievers8a577ff2009-04-18 15:05:45 -07001828 /* we require the name to be set before, and pass NULL */
1829 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
Ming Leicebf8fd2016-07-10 19:27:36 +08001830 if (error) {
1831 glue_dir = get_glue_dir(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 goto Error;
Ming Leicebf8fd2016-07-10 19:27:36 +08001833 }
Kay Sieversa7fd6702005-10-01 14:49:43 +02001834
Brian Walsh37022642006-08-14 22:43:19 -07001835 /* notify platform of device entry */
1836 if (platform_notify)
1837 platform_notify(dev);
1838
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001839 error = device_create_file(dev, &dev_attr_uevent);
Cornelia Hucka306eea2006-09-22 11:37:13 +02001840 if (error)
1841 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +02001842
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001843 error = device_add_class_symlinks(dev);
1844 if (error)
1845 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -07001846 error = device_add_attrs(dev);
1847 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001848 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -07001849 error = bus_add_device(dev);
1850 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 goto BusError;
Alan Stern3b98aea2008-08-07 13:06:12 -04001852 error = dpm_sysfs_add(dev);
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +01001853 if (error)
Alan Stern3b98aea2008-08-07 13:06:12 -04001854 goto DPMError;
1855 device_pm_add(dev);
Alan Sternec0676ee2008-12-05 14:10:31 -05001856
Sergey Klyaus0cd75042014-10-08 11:31:54 +04001857 if (MAJOR(dev->devt)) {
1858 error = device_create_file(dev, &dev_attr_dev);
1859 if (error)
1860 goto DevAttrError;
1861
1862 error = device_create_sys_dev_entry(dev);
1863 if (error)
1864 goto SysEntryError;
1865
1866 devtmpfs_create_node(dev);
1867 }
1868
Alan Sternec0676ee2008-12-05 14:10:31 -05001869 /* Notify clients of device addition. This call must come
majianpeng268863f2012-01-11 15:12:06 +00001870 * after dpm_sysfs_add() and before kobject_uevent().
Alan Sternec0676ee2008-12-05 14:10:31 -05001871 */
1872 if (dev->bus)
1873 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
1874 BUS_NOTIFY_ADD_DEVICE, dev);
1875
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +02001876 kobject_uevent(&dev->kobj, KOBJ_ADD);
Alan Stern2023c612009-07-30 15:27:18 -04001877 bus_probe_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001879 klist_add_tail(&dev->p->knode_parent,
1880 &parent->p->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07001882 if (dev->class) {
Kay Sieversca22e562011-12-14 14:29:38 -08001883 mutex_lock(&dev->class->p->mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001884 /* tie the class to the device */
Tejun Heo5a3ceb82008-08-25 19:50:19 +02001885 klist_add_tail(&dev->knode_class,
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001886 &dev->class->p->klist_devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001887
1888 /* notify any interfaces that the device is here */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07001889 list_for_each_entry(class_intf,
Kay Sieversca22e562011-12-14 14:29:38 -08001890 &dev->class->p->interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001891 if (class_intf->add_dev)
1892 class_intf->add_dev(dev, class_intf);
Kay Sieversca22e562011-12-14 14:29:38 -08001893 mutex_unlock(&dev->class->p->mutex);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07001894 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001895done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 put_device(dev);
1897 return error;
Sergey Klyaus0cd75042014-10-08 11:31:54 +04001898 SysEntryError:
1899 if (MAJOR(dev->devt))
1900 device_remove_file(dev, &dev_attr_dev);
1901 DevAttrError:
1902 device_pm_remove(dev);
1903 dpm_sysfs_remove(dev);
Alan Stern3b98aea2008-08-07 13:06:12 -04001904 DPMError:
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +01001905 bus_remove_device(dev);
1906 BusError:
James Simmons82f0cf92007-02-21 17:44:51 +00001907 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001908 AttrsError:
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001909 device_remove_class_symlinks(dev);
1910 SymlinkError:
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001911 device_remove_file(dev, &dev_attr_uevent);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001912 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +01001913 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Ming Leicebf8fd2016-07-10 19:27:36 +08001914 glue_dir = get_glue_dir(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 kobject_del(&dev->kobj);
1916 Error:
Ming Leicebf8fd2016-07-10 19:27:36 +08001917 cleanup_glue_dir(dev, glue_dir);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09001918parent_error:
Markus Elfring5f0163a2015-02-05 11:48:26 +01001919 put_device(parent);
Kay Sievers5c8563d2009-05-28 14:24:07 -07001920name_error:
1921 kfree(dev->p);
1922 dev->p = NULL;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001923 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924}
David Graham White86df2682013-07-21 20:41:14 -04001925EXPORT_SYMBOL_GPL(device_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001928 * device_register - register a device with the system.
1929 * @dev: pointer to the device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001931 * This happens in two clean steps - initialize the device
1932 * and add it to the system. The two steps can be called
1933 * separately, but this is the easiest and most common.
1934 * I.e. you should only call the two helpers separately if
1935 * have a clearly defined need to use and refcount the device
1936 * before it is added to the hierarchy.
Cornelia Huck57394112008-09-03 18:26:40 +02001937 *
Alan Sternb10d5ef2012-01-17 11:39:00 -05001938 * For more information, see the kerneldoc for device_initialize()
1939 * and device_add().
1940 *
Cornelia Huck57394112008-09-03 18:26:40 +02001941 * NOTE: _Never_ directly free @dev after calling this function, even
1942 * if it returned an error! Always use put_device() to give up the
1943 * reference initialized in this function instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945int device_register(struct device *dev)
1946{
1947 device_initialize(dev);
1948 return device_add(dev);
1949}
David Graham White86df2682013-07-21 20:41:14 -04001950EXPORT_SYMBOL_GPL(device_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001953 * get_device - increment reference count for device.
1954 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001956 * This simply forwards the call to kobject_get(), though
1957 * we do take care to provide for the case that we get a NULL
1958 * pointer passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001960struct device *get_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02001962 return dev ? kobj_to_dev(kobject_get(&dev->kobj)) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
David Graham White86df2682013-07-21 20:41:14 -04001964EXPORT_SYMBOL_GPL(get_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001967 * put_device - decrement reference count.
1968 * @dev: device in question.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001970void put_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001972 /* might_sleep(); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 if (dev)
1974 kobject_put(&dev->kobj);
1975}
David Graham White86df2682013-07-21 20:41:14 -04001976EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001979 * device_del - delete device from system.
1980 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001982 * This is the first part of the device unregistration
1983 * sequence. This removes the device from the lists we control
1984 * from here, has it removed from the other driver model
1985 * subsystems it was added to in device_add(), and removes it
1986 * from the kobject hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001988 * NOTE: this should be called manually _iff_ device_add() was
1989 * also called manually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001991void device_del(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001993 struct device *parent = dev->parent;
Ming Leicebf8fd2016-07-10 19:27:36 +08001994 struct kobject *glue_dir = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001995 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Alan Sternec0676ee2008-12-05 14:10:31 -05001997 /* Notify clients of device removal. This call must come
1998 * before dpm_sysfs_remove().
1999 */
2000 if (dev->bus)
2001 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
2002 BUS_NOTIFY_DEL_DEVICE, dev);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01002003
Alan Stern3b98aea2008-08-07 13:06:12 -04002004 dpm_sysfs_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002006 klist_del(&dev->p->knode_parent);
Dan Williamse105b8b2008-04-21 10:51:07 -07002007 if (MAJOR(dev->devt)) {
Kay Sievers2b2af542009-04-30 15:23:42 +02002008 devtmpfs_delete_node(dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07002009 device_remove_sys_dev_entry(dev);
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002010 device_remove_file(dev, &dev_attr_dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07002011 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02002012 if (dev->class) {
Kay Sieversda231fd2007-11-21 17:29:15 +01002013 device_remove_class_symlinks(dev);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02002014
Kay Sieversca22e562011-12-14 14:29:38 -08002015 mutex_lock(&dev->class->p->mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02002016 /* notify any interfaces that the device is now gone */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07002017 list_for_each_entry(class_intf,
Kay Sieversca22e562011-12-14 14:29:38 -08002018 &dev->class->p->interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02002019 if (class_intf->remove_dev)
2020 class_intf->remove_dev(dev, class_intf);
2021 /* remove the device from the class list */
Tejun Heo5a3ceb82008-08-25 19:50:19 +02002022 klist_del(&dev->knode_class);
Kay Sieversca22e562011-12-14 14:29:38 -08002023 mutex_unlock(&dev->class->p->mutex);
Kay Sieversb9d9c822006-06-15 15:31:56 +02002024 }
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002025 device_remove_file(dev, &dev_attr_uevent);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002026 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08002027 bus_remove_device(dev);
LongX Zhang4b6d1f122012-10-25 00:21:28 +02002028 device_pm_remove(dev);
Grant Likelyd1c34142012-03-05 08:47:41 -07002029 driver_deferred_probe_del(dev);
Lukas Wunner478573c2016-07-28 02:25:41 +02002030 device_remove_properties(dev);
Jeffy Chen2ec16152017-10-20 20:01:01 +08002031 device_links_purge(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 /* Notify the platform of the removal, in case they
2034 * need to do anything...
2035 */
2036 if (platform_notify_remove)
2037 platform_notify_remove(dev);
Joerg Roedel599bad32014-09-30 13:02:02 +02002038 if (dev->bus)
2039 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
2040 BUS_NOTIFY_REMOVED_DEVICE, dev);
Kay Sievers312c0042005-11-16 09:00:00 +01002041 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Ming Leicebf8fd2016-07-10 19:27:36 +08002042 glue_dir = get_glue_dir(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 kobject_del(&dev->kobj);
Ming Leicebf8fd2016-07-10 19:27:36 +08002044 cleanup_glue_dir(dev, glue_dir);
Kay Sieversda231fd2007-11-21 17:29:15 +01002045 put_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046}
David Graham White86df2682013-07-21 20:41:14 -04002047EXPORT_SYMBOL_GPL(device_del);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002050 * device_unregister - unregister device from system.
2051 * @dev: device going away.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002053 * We do this in two parts, like we do device_register(). First,
2054 * we remove it from all the subsystems with device_del(), then
2055 * we decrement the reference count via put_device(). If that
2056 * is the final reference count, the device will be cleaned up
2057 * via device_release() above. Otherwise, the structure will
2058 * stick around until the final reference to the device is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002060void device_unregister(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01002062 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 device_del(dev);
2064 put_device(dev);
2065}
David Graham White86df2682013-07-21 20:41:14 -04002066EXPORT_SYMBOL_GPL(device_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Andy Shevchenko3d060ae2015-07-27 18:04:00 +03002068static struct device *prev_device(struct klist_iter *i)
2069{
2070 struct klist_node *n = klist_prev(i);
2071 struct device *dev = NULL;
2072 struct device_private *p;
2073
2074 if (n) {
2075 p = to_device_private_parent(n);
2076 dev = p->device;
2077 }
2078 return dev;
2079}
2080
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002081static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08002082{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002083 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002084 struct device *dev = NULL;
2085 struct device_private *p;
2086
2087 if (n) {
2088 p = to_device_private_parent(n);
2089 dev = p->device;
2090 }
2091 return dev;
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08002092}
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094/**
Kay Sieverse454cea2009-09-18 23:01:12 +02002095 * device_get_devnode - path of device node file
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002096 * @dev: device
Kay Sieverse454cea2009-09-18 23:01:12 +02002097 * @mode: returned file access mode
Kay Sievers3c2670e2013-04-06 09:56:00 -07002098 * @uid: returned file owner
2099 * @gid: returned file group
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002100 * @tmp: possibly allocated string
2101 *
2102 * Return the relative path of a possible device node.
2103 * Non-default names may need to allocate a memory to compose
2104 * a name. This memory is returned in tmp and needs to be
2105 * freed by the caller.
2106 */
Kay Sieverse454cea2009-09-18 23:01:12 +02002107const char *device_get_devnode(struct device *dev,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07002108 umode_t *mode, kuid_t *uid, kgid_t *gid,
Kay Sievers3c2670e2013-04-06 09:56:00 -07002109 const char **tmp)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002110{
2111 char *s;
2112
2113 *tmp = NULL;
2114
2115 /* the device type may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02002116 if (dev->type && dev->type->devnode)
Kay Sievers3c2670e2013-04-06 09:56:00 -07002117 *tmp = dev->type->devnode(dev, mode, uid, gid);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002118 if (*tmp)
2119 return *tmp;
2120
2121 /* the class may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02002122 if (dev->class && dev->class->devnode)
2123 *tmp = dev->class->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002124 if (*tmp)
2125 return *tmp;
2126
2127 /* return name without allocation, tmp == NULL */
2128 if (strchr(dev_name(dev), '!') == NULL)
2129 return dev_name(dev);
2130
2131 /* replace '!' in the name with '/' */
Rasmus Villemoesa29fd612015-06-25 15:02:33 -07002132 s = kstrdup(dev_name(dev), GFP_KERNEL);
2133 if (!s)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002134 return NULL;
Rasmus Villemoesa29fd612015-06-25 15:02:33 -07002135 strreplace(s, '!', '/');
2136 return *tmp = s;
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002137}
2138
2139/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002140 * device_for_each_child - device child iterator.
2141 * @parent: parent struct device.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002142 * @fn: function to be called for each device.
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -04002143 * @data: data for the callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002145 * Iterate over @parent's child devices, and call @fn for each,
2146 * passing it @data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002148 * We check the return of @fn each time. If it returns anything
2149 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002151int device_for_each_child(struct device *parent, void *data,
2152 int (*fn)(struct device *dev, void *data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08002154 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002155 struct device *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 int error = 0;
2157
Greg Kroah-Hartman014c90db2009-04-15 16:00:12 -07002158 if (!parent->p)
2159 return 0;
2160
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002161 klist_iter_init(&parent->p->klist_children, &i);
Gimcuan Hui93ead7c2017-11-11 05:52:54 +00002162 while (!error && (child = next_device(&i)))
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08002163 error = fn(child, data);
2164 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 return error;
2166}
David Graham White86df2682013-07-21 20:41:14 -04002167EXPORT_SYMBOL_GPL(device_for_each_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Cornelia Huck5ab69982006-11-16 15:42:07 +01002169/**
Andy Shevchenko3d060ae2015-07-27 18:04:00 +03002170 * device_for_each_child_reverse - device child iterator in reversed order.
2171 * @parent: parent struct device.
2172 * @fn: function to be called for each device.
2173 * @data: data for the callback.
2174 *
2175 * Iterate over @parent's child devices, and call @fn for each,
2176 * passing it @data.
2177 *
2178 * We check the return of @fn each time. If it returns anything
2179 * other than 0, we break out and return that value.
2180 */
2181int device_for_each_child_reverse(struct device *parent, void *data,
2182 int (*fn)(struct device *dev, void *data))
2183{
2184 struct klist_iter i;
2185 struct device *child;
2186 int error = 0;
2187
2188 if (!parent->p)
2189 return 0;
2190
2191 klist_iter_init(&parent->p->klist_children, &i);
2192 while ((child = prev_device(&i)) && !error)
2193 error = fn(child, data);
2194 klist_iter_exit(&i);
2195 return error;
2196}
2197EXPORT_SYMBOL_GPL(device_for_each_child_reverse);
2198
2199/**
Cornelia Huck5ab69982006-11-16 15:42:07 +01002200 * device_find_child - device iterator for locating a particular device.
2201 * @parent: parent struct device
Cornelia Huck5ab69982006-11-16 15:42:07 +01002202 * @match: Callback function to check device
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -04002203 * @data: Data to pass to match function
Cornelia Huck5ab69982006-11-16 15:42:07 +01002204 *
2205 * This is similar to the device_for_each_child() function above, but it
2206 * returns a reference to a device that is 'found' for later use, as
2207 * determined by the @match callback.
2208 *
2209 * The callback should return 0 if the device doesn't match and non-zero
2210 * if it does. If the callback returns non-zero and a reference to the
2211 * current device can be obtained, this function will return to the caller
2212 * and not iterate over any more devices.
Federico Vagaa4e24002013-04-15 11:18:11 +02002213 *
2214 * NOTE: you will need to drop the reference with put_device() after use.
Cornelia Huck5ab69982006-11-16 15:42:07 +01002215 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002216struct device *device_find_child(struct device *parent, void *data,
2217 int (*match)(struct device *dev, void *data))
Cornelia Huck5ab69982006-11-16 15:42:07 +01002218{
2219 struct klist_iter i;
2220 struct device *child;
2221
2222 if (!parent)
2223 return NULL;
2224
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002225 klist_iter_init(&parent->p->klist_children, &i);
Cornelia Huck5ab69982006-11-16 15:42:07 +01002226 while ((child = next_device(&i)))
2227 if (match(child, data) && get_device(child))
2228 break;
2229 klist_iter_exit(&i);
2230 return child;
2231}
David Graham White86df2682013-07-21 20:41:14 -04002232EXPORT_SYMBOL_GPL(device_find_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01002233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234int __init devices_init(void)
2235{
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06002236 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
2237 if (!devices_kset)
2238 return -ENOMEM;
Dan Williamse105b8b2008-04-21 10:51:07 -07002239 dev_kobj = kobject_create_and_add("dev", NULL);
2240 if (!dev_kobj)
2241 goto dev_kobj_err;
2242 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
2243 if (!sysfs_dev_block_kobj)
2244 goto block_kobj_err;
2245 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
2246 if (!sysfs_dev_char_kobj)
2247 goto char_kobj_err;
2248
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06002249 return 0;
Dan Williamse105b8b2008-04-21 10:51:07 -07002250
2251 char_kobj_err:
2252 kobject_put(sysfs_dev_block_kobj);
2253 block_kobj_err:
2254 kobject_put(dev_kobj);
2255 dev_kobj_err:
2256 kset_unregister(devices_kset);
2257 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258}
2259
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02002260static int device_check_offline(struct device *dev, void *not_used)
2261{
2262 int ret;
2263
2264 ret = device_for_each_child(dev, NULL, device_check_offline);
2265 if (ret)
2266 return ret;
2267
2268 return device_supports_offline(dev) && !dev->offline ? -EBUSY : 0;
2269}
2270
2271/**
2272 * device_offline - Prepare the device for hot-removal.
2273 * @dev: Device to be put offline.
2274 *
2275 * Execute the device bus type's .offline() callback, if present, to prepare
2276 * the device for a subsequent hot-removal. If that succeeds, the device must
2277 * not be used until either it is removed or its bus type's .online() callback
2278 * is executed.
2279 *
2280 * Call under device_hotplug_lock.
2281 */
2282int device_offline(struct device *dev)
2283{
2284 int ret;
2285
2286 if (dev->offline_disabled)
2287 return -EPERM;
2288
2289 ret = device_for_each_child(dev, NULL, device_check_offline);
2290 if (ret)
2291 return ret;
2292
2293 device_lock(dev);
2294 if (device_supports_offline(dev)) {
2295 if (dev->offline) {
2296 ret = 1;
2297 } else {
2298 ret = dev->bus->offline(dev);
2299 if (!ret) {
2300 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
2301 dev->offline = true;
2302 }
2303 }
2304 }
2305 device_unlock(dev);
2306
2307 return ret;
2308}
2309
2310/**
2311 * device_online - Put the device back online after successful device_offline().
2312 * @dev: Device to be put back online.
2313 *
2314 * If device_offline() has been successfully executed for @dev, but the device
2315 * has not been removed subsequently, execute its bus type's .online() callback
2316 * to indicate that the device can be used again.
2317 *
2318 * Call under device_hotplug_lock.
2319 */
2320int device_online(struct device *dev)
2321{
2322 int ret = 0;
2323
2324 device_lock(dev);
2325 if (device_supports_offline(dev)) {
2326 if (dev->offline) {
2327 ret = dev->bus->online(dev);
2328 if (!ret) {
2329 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
2330 dev->offline = false;
2331 }
2332 } else {
2333 ret = 1;
2334 }
2335 }
2336 device_unlock(dev);
2337
2338 return ret;
2339}
2340
Karthigan Srinivasan7f100d12011-04-18 16:16:52 -05002341struct root_device {
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002342 struct device dev;
2343 struct module *owner;
2344};
2345
Josh Triplett93058422012-11-18 21:27:55 -08002346static inline struct root_device *to_root_device(struct device *d)
Ferenc Wagner481e2072011-01-07 15:17:47 +01002347{
2348 return container_of(d, struct root_device, dev);
2349}
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002350
2351static void root_device_release(struct device *dev)
2352{
2353 kfree(to_root_device(dev));
2354}
2355
2356/**
2357 * __root_device_register - allocate and register a root device
2358 * @name: root device name
2359 * @owner: owner module of the root device, usually THIS_MODULE
2360 *
2361 * This function allocates a root device and registers it
2362 * using device_register(). In order to free the returned
2363 * device, use root_device_unregister().
2364 *
2365 * Root devices are dummy devices which allow other devices
2366 * to be grouped under /sys/devices. Use this function to
2367 * allocate a root device and then use it as the parent of
2368 * any device which should appear under /sys/devices/{name}
2369 *
2370 * The /sys/devices/{name} directory will also contain a
2371 * 'module' symlink which points to the @owner directory
2372 * in sysfs.
2373 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02002374 * Returns &struct device pointer on success, or ERR_PTR() on error.
2375 *
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002376 * Note: You probably want to use root_device_register().
2377 */
2378struct device *__root_device_register(const char *name, struct module *owner)
2379{
2380 struct root_device *root;
2381 int err = -ENOMEM;
2382
2383 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
2384 if (!root)
2385 return ERR_PTR(err);
2386
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07002387 err = dev_set_name(&root->dev, "%s", name);
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002388 if (err) {
2389 kfree(root);
2390 return ERR_PTR(err);
2391 }
2392
2393 root->dev.release = root_device_release;
2394
2395 err = device_register(&root->dev);
2396 if (err) {
2397 put_device(&root->dev);
2398 return ERR_PTR(err);
2399 }
2400
Christoph Egger1d9e8822010-05-17 16:57:58 +02002401#ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002402 if (owner) {
2403 struct module_kobject *mk = &owner->mkobj;
2404
2405 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
2406 if (err) {
2407 device_unregister(&root->dev);
2408 return ERR_PTR(err);
2409 }
2410 root->owner = owner;
2411 }
2412#endif
2413
2414 return &root->dev;
2415}
2416EXPORT_SYMBOL_GPL(__root_device_register);
2417
2418/**
2419 * root_device_unregister - unregister and free a root device
Randy Dunlap7cbcf222009-01-20 16:29:13 -08002420 * @dev: device going away
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002421 *
2422 * This function unregisters and cleans up a device that was created by
2423 * root_device_register().
2424 */
2425void root_device_unregister(struct device *dev)
2426{
2427 struct root_device *root = to_root_device(dev);
2428
2429 if (root->owner)
2430 sysfs_remove_link(&root->dev.kobj, "module");
2431
2432 device_unregister(dev);
2433}
2434EXPORT_SYMBOL_GPL(root_device_unregister);
2435
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002436
2437static void device_create_release(struct device *dev)
2438{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01002439 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002440 kfree(dev);
2441}
2442
Mathieu Malaterre6a8b55d2018-05-05 21:57:41 +02002443static __printf(6, 0) struct device *
Guenter Roeck39ef3112013-07-14 16:05:57 -07002444device_create_groups_vargs(struct class *class, struct device *parent,
2445 dev_t devt, void *drvdata,
2446 const struct attribute_group **groups,
2447 const char *fmt, va_list args)
2448{
2449 struct device *dev = NULL;
2450 int retval = -ENODEV;
2451
2452 if (class == NULL || IS_ERR(class))
2453 goto error;
2454
2455 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2456 if (!dev) {
2457 retval = -ENOMEM;
2458 goto error;
2459 }
2460
David Herrmannbbc780f2013-11-21 20:15:48 +01002461 device_initialize(dev);
Guenter Roeck39ef3112013-07-14 16:05:57 -07002462 dev->devt = devt;
2463 dev->class = class;
2464 dev->parent = parent;
2465 dev->groups = groups;
2466 dev->release = device_create_release;
2467 dev_set_drvdata(dev, drvdata);
2468
2469 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
2470 if (retval)
2471 goto error;
2472
David Herrmannbbc780f2013-11-21 20:15:48 +01002473 retval = device_add(dev);
Guenter Roeck39ef3112013-07-14 16:05:57 -07002474 if (retval)
2475 goto error;
2476
2477 return dev;
2478
2479error:
2480 put_device(dev);
2481 return ERR_PTR(retval);
2482}
2483
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002484/**
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002485 * device_create_vargs - creates a device and registers it with sysfs
2486 * @class: pointer to the struct class that this device should be registered to
2487 * @parent: pointer to the parent struct device of this new device, if any
2488 * @devt: the dev_t for the char device to be added
2489 * @drvdata: the data to be added to the device for callbacks
2490 * @fmt: string for the device's name
2491 * @args: va_list for the device's name
2492 *
2493 * This function can be used by char device classes. A struct device
2494 * will be created in sysfs, registered to the specified class.
2495 *
2496 * A "dev" file will be created, showing the dev_t for the device, if
2497 * the dev_t is not 0,0.
2498 * If a pointer to a parent struct device is passed in, the newly created
2499 * struct device will be a child of that device in sysfs.
2500 * The pointer to the struct device will be returned from the call.
2501 * Any further sysfs files that might be required can be created using this
2502 * pointer.
2503 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02002504 * Returns &struct device pointer on success, or ERR_PTR() on error.
2505 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002506 * Note: the struct class passed to this function must have previously
2507 * been created with a call to class_create().
2508 */
2509struct device *device_create_vargs(struct class *class, struct device *parent,
2510 dev_t devt, void *drvdata, const char *fmt,
2511 va_list args)
2512{
Guenter Roeck39ef3112013-07-14 16:05:57 -07002513 return device_create_groups_vargs(class, parent, devt, drvdata, NULL,
2514 fmt, args);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002515}
2516EXPORT_SYMBOL_GPL(device_create_vargs);
2517
2518/**
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07002519 * device_create - creates a device and registers it with sysfs
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002520 * @class: pointer to the struct class that this device should be registered to
2521 * @parent: pointer to the parent struct device of this new device, if any
2522 * @devt: the dev_t for the char device to be added
2523 * @drvdata: the data to be added to the device for callbacks
2524 * @fmt: string for the device's name
2525 *
2526 * This function can be used by char device classes. A struct device
2527 * will be created in sysfs, registered to the specified class.
2528 *
2529 * A "dev" file will be created, showing the dev_t for the device, if
2530 * the dev_t is not 0,0.
2531 * If a pointer to a parent struct device is passed in, the newly created
2532 * struct device will be a child of that device in sysfs.
2533 * The pointer to the struct device will be returned from the call.
2534 * Any further sysfs files that might be required can be created using this
2535 * pointer.
2536 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02002537 * Returns &struct device pointer on success, or ERR_PTR() on error.
2538 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002539 * Note: the struct class passed to this function must have previously
2540 * been created with a call to class_create().
2541 */
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07002542struct device *device_create(struct class *class, struct device *parent,
2543 dev_t devt, void *drvdata, const char *fmt, ...)
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002544{
2545 va_list vargs;
2546 struct device *dev;
2547
2548 va_start(vargs, fmt);
2549 dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
2550 va_end(vargs);
2551 return dev;
2552}
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07002553EXPORT_SYMBOL_GPL(device_create);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002554
Guenter Roeck39ef3112013-07-14 16:05:57 -07002555/**
2556 * device_create_with_groups - creates a device and registers it with sysfs
2557 * @class: pointer to the struct class that this device should be registered to
2558 * @parent: pointer to the parent struct device of this new device, if any
2559 * @devt: the dev_t for the char device to be added
2560 * @drvdata: the data to be added to the device for callbacks
2561 * @groups: NULL-terminated list of attribute groups to be created
2562 * @fmt: string for the device's name
2563 *
2564 * This function can be used by char device classes. A struct device
2565 * will be created in sysfs, registered to the specified class.
2566 * Additional attributes specified in the groups parameter will also
2567 * be created automatically.
2568 *
2569 * A "dev" file will be created, showing the dev_t for the device, if
2570 * the dev_t is not 0,0.
2571 * If a pointer to a parent struct device is passed in, the newly created
2572 * struct device will be a child of that device in sysfs.
2573 * The pointer to the struct device will be returned from the call.
2574 * Any further sysfs files that might be required can be created using this
2575 * pointer.
2576 *
2577 * Returns &struct device pointer on success, or ERR_PTR() on error.
2578 *
2579 * Note: the struct class passed to this function must have previously
2580 * been created with a call to class_create().
2581 */
2582struct device *device_create_with_groups(struct class *class,
2583 struct device *parent, dev_t devt,
2584 void *drvdata,
2585 const struct attribute_group **groups,
2586 const char *fmt, ...)
2587{
2588 va_list vargs;
2589 struct device *dev;
2590
2591 va_start(vargs, fmt);
2592 dev = device_create_groups_vargs(class, parent, devt, drvdata, groups,
2593 fmt, vargs);
2594 va_end(vargs);
2595 return dev;
2596}
2597EXPORT_SYMBOL_GPL(device_create_with_groups);
2598
Michał Mirosław9f3b7952013-02-01 20:40:17 +01002599static int __match_devt(struct device *dev, const void *data)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002600{
Michał Mirosław9f3b7952013-02-01 20:40:17 +01002601 const dev_t *devt = data;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002602
Dave Youngcd354492008-01-28 16:56:11 +08002603 return dev->devt == *devt;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01002604}
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002605
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01002606/**
2607 * device_destroy - removes a device that was created with device_create()
2608 * @class: pointer to the struct class that this device was registered with
2609 * @devt: the dev_t of the device that was previously registered
2610 *
2611 * This call unregisters and cleans up a device that was created with a
2612 * call to device_create().
2613 */
2614void device_destroy(struct class *class, dev_t devt)
2615{
2616 struct device *dev;
2617
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04002618 dev = class_find_device(class, NULL, &devt, __match_devt);
Dave Youngcd354492008-01-28 16:56:11 +08002619 if (dev) {
2620 put_device(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002621 device_unregister(dev);
Dave Youngcd354492008-01-28 16:56:11 +08002622 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002623}
2624EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002625
2626/**
2627 * device_rename - renames a device
2628 * @dev: the pointer to the struct device to be renamed
2629 * @new_name: the new name of the device
Eric W. Biederman030c1d22008-05-08 14:41:00 -07002630 *
2631 * It is the responsibility of the caller to provide mutual
2632 * exclusion between two different calls of device_rename
2633 * on the same device to ensure that new_name is valid and
2634 * won't conflict with other devices.
Michael Ellermanc6c0ac62010-11-25 09:44:07 +11002635 *
Timur Tabia5462512010-12-13 14:08:52 -06002636 * Note: Don't call this function. Currently, the networking layer calls this
2637 * function, but that will change. The following text from Kay Sievers offers
2638 * some insight:
2639 *
2640 * Renaming devices is racy at many levels, symlinks and other stuff are not
2641 * replaced atomically, and you get a "move" uevent, but it's not easy to
2642 * connect the event to the old and new device. Device nodes are not renamed at
2643 * all, there isn't even support for that in the kernel now.
2644 *
2645 * In the meantime, during renaming, your target name might be taken by another
2646 * driver, creating conflicts. Or the old name is taken directly after you
2647 * renamed it -- then you get events for the same DEVPATH, before you even see
2648 * the "move" event. It's just a mess, and nothing new should ever rely on
2649 * kernel device renaming. Besides that, it's not even implemented now for
2650 * other things than (driver-core wise very simple) network devices.
2651 *
2652 * We are currently about to change network renaming in udev to completely
2653 * disallow renaming of devices in the same namespace as the kernel uses,
2654 * because we can't solve the problems properly, that arise with swapping names
2655 * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
2656 * be allowed to some other name than eth[0-9]*, for the aforementioned
2657 * reasons.
2658 *
2659 * Make up a "real" name in the driver before you register anything, or add
2660 * some other attributes for userspace to find the device, or use udev to add
2661 * symlinks -- but never rename kernel devices later, it's a complete mess. We
2662 * don't even want to get into that and try to implement the missing pieces in
2663 * the core. We really have other pieces to fix in the driver core mess. :)
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002664 */
Johannes Berg6937e8f2010-08-05 17:38:18 +02002665int device_rename(struct device *dev, const char *new_name)
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002666{
Tejun Heo4b30ee52013-09-11 22:29:06 -04002667 struct kobject *kobj = &dev->kobj;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002668 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002669 int error;
2670
2671 dev = get_device(dev);
2672 if (!dev)
2673 return -EINVAL;
2674
ethan.zhao69df7532013-10-13 22:12:35 +08002675 dev_dbg(dev, "renaming to %s\n", new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002676
Kay Sievers1fa5ae82009-01-25 15:17:37 +01002677 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002678 if (!old_device_name) {
2679 error = -ENOMEM;
2680 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002681 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002682
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07002683 if (dev->class) {
Tejun Heo4b30ee52013-09-11 22:29:06 -04002684 error = sysfs_rename_link_ns(&dev->class->p->subsys.kobj,
2685 kobj, old_device_name,
2686 new_name, kobject_namespace(kobj));
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07002687 if (error)
2688 goto out;
2689 }
Kay Sievers39aba962010-09-04 22:33:14 -07002690
Tejun Heo4b30ee52013-09-11 22:29:06 -04002691 error = kobject_rename(kobj, new_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01002692 if (error)
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002693 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002694
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002695out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002696 put_device(dev);
2697
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002698 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002699
2700 return error;
2701}
Johannes Berga2807db2007-02-28 12:38:31 +01002702EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01002703
2704static int device_move_class_links(struct device *dev,
2705 struct device *old_parent,
2706 struct device *new_parent)
2707{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08002708 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01002709
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08002710 if (old_parent)
2711 sysfs_remove_link(&dev->kobj, "device");
2712 if (new_parent)
2713 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
2714 "device");
2715 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01002716}
2717
2718/**
2719 * device_move - moves a device to a new parent
2720 * @dev: the pointer to the struct device to be moved
Wolfram Sang13509862018-05-06 13:23:47 +02002721 * @new_parent: the new parent of the device (can be NULL)
Cornelia Huckffa6a702009-03-04 12:44:00 +01002722 * @dpm_order: how to reorder the dpm_list
Cornelia Huck8a824722006-11-20 17:07:51 +01002723 */
Cornelia Huckffa6a702009-03-04 12:44:00 +01002724int device_move(struct device *dev, struct device *new_parent,
2725 enum dpm_order dpm_order)
Cornelia Huck8a824722006-11-20 17:07:51 +01002726{
2727 int error;
2728 struct device *old_parent;
Cornelia Huckc744aeae2007-01-08 20:16:44 +01002729 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01002730
2731 dev = get_device(dev);
2732 if (!dev)
2733 return -EINVAL;
2734
Cornelia Huckffa6a702009-03-04 12:44:00 +01002735 device_pm_lock();
Cornelia Huck8a824722006-11-20 17:07:51 +01002736 new_parent = get_device(new_parent);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002737 new_parent_kobj = get_device_parent(dev, new_parent);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09002738 if (IS_ERR(new_parent_kobj)) {
2739 error = PTR_ERR(new_parent_kobj);
2740 put_device(new_parent);
2741 goto out;
2742 }
Cornelia Huck63b69712008-01-21 16:09:44 +01002743
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01002744 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
2745 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
Cornelia Huckc744aeae2007-01-08 20:16:44 +01002746 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01002747 if (error) {
Cornelia Huck63b69712008-01-21 16:09:44 +01002748 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01002749 put_device(new_parent);
2750 goto out;
2751 }
2752 old_parent = dev->parent;
2753 dev->parent = new_parent;
2754 if (old_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002755 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08002756 if (new_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002757 klist_add_tail(&dev->p->knode_parent,
2758 &new_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08002759 set_dev_node(dev, dev_to_node(new_parent));
2760 }
2761
Rabin Vincentbdd40342012-04-23 09:16:36 +02002762 if (dev->class) {
2763 error = device_move_class_links(dev, old_parent, new_parent);
2764 if (error) {
2765 /* We ignore errors on cleanup since we're hosed anyway... */
2766 device_move_class_links(dev, new_parent, old_parent);
2767 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
2768 if (new_parent)
2769 klist_remove(&dev->p->knode_parent);
2770 dev->parent = old_parent;
2771 if (old_parent) {
2772 klist_add_tail(&dev->p->knode_parent,
2773 &old_parent->p->klist_children);
2774 set_dev_node(dev, dev_to_node(old_parent));
2775 }
Yinghai Lu0d358f22008-02-19 03:20:41 -08002776 }
Rabin Vincentbdd40342012-04-23 09:16:36 +02002777 cleanup_glue_dir(dev, new_parent_kobj);
2778 put_device(new_parent);
2779 goto out;
Cornelia Huck8a824722006-11-20 17:07:51 +01002780 }
Cornelia Huck8a824722006-11-20 17:07:51 +01002781 }
Cornelia Huckffa6a702009-03-04 12:44:00 +01002782 switch (dpm_order) {
2783 case DPM_ORDER_NONE:
2784 break;
2785 case DPM_ORDER_DEV_AFTER_PARENT:
2786 device_pm_move_after(dev, new_parent);
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03002787 devices_kset_move_after(dev, new_parent);
Cornelia Huckffa6a702009-03-04 12:44:00 +01002788 break;
2789 case DPM_ORDER_PARENT_BEFORE_DEV:
2790 device_pm_move_before(new_parent, dev);
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03002791 devices_kset_move_before(new_parent, dev);
Cornelia Huckffa6a702009-03-04 12:44:00 +01002792 break;
2793 case DPM_ORDER_DEV_LAST:
2794 device_pm_move_last(dev);
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03002795 devices_kset_move_last(dev);
Cornelia Huckffa6a702009-03-04 12:44:00 +01002796 break;
2797 }
Rabin Vincentbdd40342012-04-23 09:16:36 +02002798
Cornelia Huck8a824722006-11-20 17:07:51 +01002799 put_device(old_parent);
2800out:
Cornelia Huckffa6a702009-03-04 12:44:00 +01002801 device_pm_unlock();
Cornelia Huck8a824722006-11-20 17:07:51 +01002802 put_device(dev);
2803 return error;
2804}
Cornelia Huck8a824722006-11-20 17:07:51 +01002805EXPORT_SYMBOL_GPL(device_move);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002806
2807/**
2808 * device_shutdown - call ->shutdown() on each device to shutdown.
2809 */
2810void device_shutdown(void)
2811{
Benson Leungf123db82013-09-24 20:05:11 -07002812 struct device *dev, *parent;
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002813
Pingfan Liu3297c8f2018-07-19 13:14:58 +08002814 wait_for_device_probe();
2815 device_block_probing();
2816
Hugh Daschbach62458382010-03-22 10:36:37 -07002817 spin_lock(&devices_kset->list_lock);
2818 /*
2819 * Walk the devices list backward, shutting down each in turn.
2820 * Beware that device unplug events may also start pulling
2821 * devices offline, even as the system is shutting down.
2822 */
2823 while (!list_empty(&devices_kset->list)) {
2824 dev = list_entry(devices_kset->list.prev, struct device,
2825 kobj.entry);
Ming Leid1c6c032012-06-22 18:01:40 +08002826
2827 /*
2828 * hold reference count of device's parent to
2829 * prevent it from being freed because parent's
2830 * lock is to be held
2831 */
Benson Leungf123db82013-09-24 20:05:11 -07002832 parent = get_device(dev->parent);
Hugh Daschbach62458382010-03-22 10:36:37 -07002833 get_device(dev);
2834 /*
2835 * Make sure the device is off the kset list, in the
2836 * event that dev->*->shutdown() doesn't remove it.
2837 */
2838 list_del_init(&dev->kobj.entry);
2839 spin_unlock(&devices_kset->list_lock);
Alan Sternfe6b91f2011-12-06 23:24:52 +01002840
Ming Leid1c6c032012-06-22 18:01:40 +08002841 /* hold lock to avoid race with probe/release */
Benson Leungf123db82013-09-24 20:05:11 -07002842 if (parent)
2843 device_lock(parent);
Ming Leid1c6c032012-06-22 18:01:40 +08002844 device_lock(dev);
2845
Alan Sternfe6b91f2011-12-06 23:24:52 +01002846 /* Don't allow any more runtime suspends */
2847 pm_runtime_get_noresume(dev);
2848 pm_runtime_barrier(dev);
Hugh Daschbach62458382010-03-22 10:36:37 -07002849
Michal Suchanek75216212017-08-11 15:44:43 +02002850 if (dev->class && dev->class->shutdown_pre) {
Josh Zimmermanf77af152017-06-25 14:53:23 -07002851 if (initcall_debug)
Michal Suchanek75216212017-08-11 15:44:43 +02002852 dev_info(dev, "shutdown_pre\n");
2853 dev->class->shutdown_pre(dev);
2854 }
2855 if (dev->bus && dev->bus->shutdown) {
ShuoX Liu0246c4f2012-11-23 15:14:12 +08002856 if (initcall_debug)
2857 dev_info(dev, "shutdown\n");
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002858 dev->bus->shutdown(dev);
2859 } else if (dev->driver && dev->driver->shutdown) {
ShuoX Liu0246c4f2012-11-23 15:14:12 +08002860 if (initcall_debug)
2861 dev_info(dev, "shutdown\n");
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002862 dev->driver->shutdown(dev);
2863 }
Ming Leid1c6c032012-06-22 18:01:40 +08002864
2865 device_unlock(dev);
Benson Leungf123db82013-09-24 20:05:11 -07002866 if (parent)
2867 device_unlock(parent);
Ming Leid1c6c032012-06-22 18:01:40 +08002868
Hugh Daschbach62458382010-03-22 10:36:37 -07002869 put_device(dev);
Benson Leungf123db82013-09-24 20:05:11 -07002870 put_device(parent);
Hugh Daschbach62458382010-03-22 10:36:37 -07002871
2872 spin_lock(&devices_kset->list_lock);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002873 }
Hugh Daschbach62458382010-03-22 10:36:37 -07002874 spin_unlock(&devices_kset->list_lock);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002875}
Joe Perches99bcf212010-06-27 01:02:34 +00002876
2877/*
2878 * Device logging functions
2879 */
2880
2881#ifdef CONFIG_PRINTK
Joe Perches666f3552012-09-12 20:14:11 -07002882static int
2883create_syslog_header(const struct device *dev, char *hdr, size_t hdrlen)
Joe Perches99bcf212010-06-27 01:02:34 +00002884{
Kay Sieversc4e00da2012-05-03 02:29:59 +02002885 const char *subsys;
Joe Perches798efc62012-09-12 20:11:29 -07002886 size_t pos = 0;
Joe Perches99bcf212010-06-27 01:02:34 +00002887
Kay Sieversc4e00da2012-05-03 02:29:59 +02002888 if (dev->class)
2889 subsys = dev->class->name;
2890 else if (dev->bus)
2891 subsys = dev->bus->name;
2892 else
Joe Perches798efc62012-09-12 20:11:29 -07002893 return 0;
Kay Sieversc4e00da2012-05-03 02:29:59 +02002894
Joe Perches798efc62012-09-12 20:11:29 -07002895 pos += snprintf(hdr + pos, hdrlen - pos, "SUBSYSTEM=%s", subsys);
Ben Hutchings655e5b72014-08-26 00:34:44 -07002896 if (pos >= hdrlen)
2897 goto overflow;
Kay Sieversc4e00da2012-05-03 02:29:59 +02002898
2899 /*
2900 * Add device identifier DEVICE=:
2901 * b12:8 block dev_t
2902 * c127:3 char dev_t
2903 * n8 netdev ifindex
2904 * +sound:card0 subsystem:devname
2905 */
2906 if (MAJOR(dev->devt)) {
2907 char c;
2908
2909 if (strcmp(subsys, "block") == 0)
2910 c = 'b';
2911 else
2912 c = 'c';
Joe Perches798efc62012-09-12 20:11:29 -07002913 pos++;
2914 pos += snprintf(hdr + pos, hdrlen - pos,
2915 "DEVICE=%c%u:%u",
2916 c, MAJOR(dev->devt), MINOR(dev->devt));
Kay Sieversc4e00da2012-05-03 02:29:59 +02002917 } else if (strcmp(subsys, "net") == 0) {
2918 struct net_device *net = to_net_dev(dev);
2919
Joe Perches798efc62012-09-12 20:11:29 -07002920 pos++;
2921 pos += snprintf(hdr + pos, hdrlen - pos,
2922 "DEVICE=n%u", net->ifindex);
Kay Sieversc4e00da2012-05-03 02:29:59 +02002923 } else {
Joe Perches798efc62012-09-12 20:11:29 -07002924 pos++;
2925 pos += snprintf(hdr + pos, hdrlen - pos,
2926 "DEVICE=+%s:%s", subsys, dev_name(dev));
Kay Sieversc4e00da2012-05-03 02:29:59 +02002927 }
Jim Cromieaf7f2152012-07-19 13:46:21 -06002928
Ben Hutchings655e5b72014-08-26 00:34:44 -07002929 if (pos >= hdrlen)
2930 goto overflow;
2931
Joe Perches798efc62012-09-12 20:11:29 -07002932 return pos;
Ben Hutchings655e5b72014-08-26 00:34:44 -07002933
2934overflow:
2935 dev_WARN(dev, "device/subsystem name too long");
2936 return 0;
Joe Perches99bcf212010-06-27 01:02:34 +00002937}
Joe Perches798efc62012-09-12 20:11:29 -07002938
Joe Perches05e4e5b2012-09-12 20:13:37 -07002939int dev_vprintk_emit(int level, const struct device *dev,
2940 const char *fmt, va_list args)
2941{
2942 char hdr[128];
2943 size_t hdrlen;
2944
2945 hdrlen = create_syslog_header(dev, hdr, sizeof(hdr));
2946
2947 return vprintk_emit(0, level, hdrlen ? hdr : NULL, hdrlen, fmt, args);
2948}
2949EXPORT_SYMBOL(dev_vprintk_emit);
2950
2951int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...)
2952{
2953 va_list args;
2954 int r;
2955
2956 va_start(args, fmt);
2957
2958 r = dev_vprintk_emit(level, dev, fmt, args);
2959
2960 va_end(args);
2961
2962 return r;
2963}
2964EXPORT_SYMBOL(dev_printk_emit);
2965
Joe Perchesd1f10522014-12-25 15:07:04 -08002966static void __dev_printk(const char *level, const struct device *dev,
Joe Perches798efc62012-09-12 20:11:29 -07002967 struct va_format *vaf)
2968{
Joe Perchesd1f10522014-12-25 15:07:04 -08002969 if (dev)
2970 dev_printk_emit(level[1] - '0', dev, "%s %s: %pV",
2971 dev_driver_string(dev), dev_name(dev), vaf);
2972 else
2973 printk("%s(NULL device *): %pV", level, vaf);
Joe Perches798efc62012-09-12 20:11:29 -07002974}
Joe Perches99bcf212010-06-27 01:02:34 +00002975
Joe Perchesd1f10522014-12-25 15:07:04 -08002976void dev_printk(const char *level, const struct device *dev,
2977 const char *fmt, ...)
Joe Perches99bcf212010-06-27 01:02:34 +00002978{
2979 struct va_format vaf;
2980 va_list args;
Joe Perches99bcf212010-06-27 01:02:34 +00002981
2982 va_start(args, fmt);
2983
2984 vaf.fmt = fmt;
2985 vaf.va = &args;
2986
Joe Perchesd1f10522014-12-25 15:07:04 -08002987 __dev_printk(level, dev, &vaf);
Joe Perches798efc62012-09-12 20:11:29 -07002988
Joe Perches99bcf212010-06-27 01:02:34 +00002989 va_end(args);
Joe Perches99bcf212010-06-27 01:02:34 +00002990}
2991EXPORT_SYMBOL(dev_printk);
2992
2993#define define_dev_printk_level(func, kern_level) \
Joe Perchesd1f10522014-12-25 15:07:04 -08002994void func(const struct device *dev, const char *fmt, ...) \
Joe Perches99bcf212010-06-27 01:02:34 +00002995{ \
2996 struct va_format vaf; \
2997 va_list args; \
Joe Perches99bcf212010-06-27 01:02:34 +00002998 \
2999 va_start(args, fmt); \
3000 \
3001 vaf.fmt = fmt; \
3002 vaf.va = &args; \
3003 \
Joe Perchesd1f10522014-12-25 15:07:04 -08003004 __dev_printk(kern_level, dev, &vaf); \
Joe Perches798efc62012-09-12 20:11:29 -07003005 \
Joe Perches99bcf212010-06-27 01:02:34 +00003006 va_end(args); \
Joe Perches99bcf212010-06-27 01:02:34 +00003007} \
3008EXPORT_SYMBOL(func);
3009
Joe Perches663336e2018-05-09 08:15:46 -07003010define_dev_printk_level(_dev_emerg, KERN_EMERG);
3011define_dev_printk_level(_dev_alert, KERN_ALERT);
3012define_dev_printk_level(_dev_crit, KERN_CRIT);
3013define_dev_printk_level(_dev_err, KERN_ERR);
3014define_dev_printk_level(_dev_warn, KERN_WARNING);
3015define_dev_printk_level(_dev_notice, KERN_NOTICE);
Joe Perches99bcf212010-06-27 01:02:34 +00003016define_dev_printk_level(_dev_info, KERN_INFO);
3017
3018#endif
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02003019
3020static inline bool fwnode_is_primary(struct fwnode_handle *fwnode)
3021{
3022 return fwnode && !IS_ERR(fwnode->secondary);
3023}
3024
3025/**
3026 * set_primary_fwnode - Change the primary firmware node of a given device.
3027 * @dev: Device to handle.
3028 * @fwnode: New primary firmware node of the device.
3029 *
3030 * Set the device's firmware node pointer to @fwnode, but if a secondary
3031 * firmware node of the device is present, preserve it.
3032 */
3033void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
3034{
3035 if (fwnode) {
3036 struct fwnode_handle *fn = dev->fwnode;
3037
3038 if (fwnode_is_primary(fn))
3039 fn = fn->secondary;
3040
Mika Westerberg55f89a82015-11-30 17:11:39 +02003041 if (fn) {
3042 WARN_ON(fwnode->secondary);
3043 fwnode->secondary = fn;
3044 }
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02003045 dev->fwnode = fwnode;
3046 } else {
3047 dev->fwnode = fwnode_is_primary(dev->fwnode) ?
3048 dev->fwnode->secondary : NULL;
3049 }
3050}
3051EXPORT_SYMBOL_GPL(set_primary_fwnode);
3052
3053/**
3054 * set_secondary_fwnode - Change the secondary firmware node of a given device.
3055 * @dev: Device to handle.
3056 * @fwnode: New secondary firmware node of the device.
3057 *
3058 * If a primary firmware node of the device is present, set its secondary
3059 * pointer to @fwnode. Otherwise, set the device's firmware node pointer to
3060 * @fwnode.
3061 */
3062void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
3063{
3064 if (fwnode)
3065 fwnode->secondary = ERR_PTR(-ENODEV);
3066
3067 if (fwnode_is_primary(dev->fwnode))
3068 dev->fwnode->secondary = fwnode;
3069 else
3070 dev->fwnode = fwnode;
3071}
Johan Hovold4e75e1d2017-06-06 17:59:00 +02003072
3073/**
3074 * device_set_of_node_from_dev - reuse device-tree node of another device
3075 * @dev: device whose device-tree node is being set
3076 * @dev2: device whose device-tree node is being reused
3077 *
3078 * Takes another reference to the new device-tree node after first dropping
3079 * any reference held to the old node.
3080 */
3081void device_set_of_node_from_dev(struct device *dev, const struct device *dev2)
3082{
3083 of_node_put(dev->of_node);
3084 dev->of_node = of_node_get(dev2->of_node);
3085 dev->of_node_reused = true;
3086}
3087EXPORT_SYMBOL_GPL(device_set_of_node_from_dev);