blob: 92e2c32c2227015140ecad6def65e765b54942ed [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 *
Vivek Gautame88728f2018-06-27 18:20:55 +0530181 * If the DL_FLAG_AUTOREMOVE_CONSUMER is set, the link will be removed
182 * automatically when the consumer device driver unbinds from it.
183 * The combination of both DL_FLAG_AUTOREMOVE_CONSUMER and DL_FLAG_STATELESS
184 * set is invalid and will cause NULL to be returned.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100185 *
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 ||
Vivek Gautame88728f2018-06-27 18:20:55 +0530201 ((flags & DL_FLAG_STATELESS) &&
202 (flags & DL_FLAG_AUTOREMOVE_CONSUMER)))
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100203 return NULL;
204
205 device_links_write_lock();
206 device_pm_lock();
207
208 /*
209 * If the supplier has not been fully registered yet or there is a
210 * reverse dependency between the consumer and the supplier already in
211 * the graph, return NULL.
212 */
213 if (!device_pm_initialized(supplier)
214 || device_is_dependent(consumer, supplier)) {
215 link = NULL;
216 goto out;
217 }
218
219 list_for_each_entry(link, &supplier->links.consumers, s_node)
Lukas Wunneread18c22018-02-10 19:27:12 +0100220 if (link->consumer == consumer) {
221 kref_get(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100222 goto out;
Lukas Wunneread18c22018-02-10 19:27:12 +0100223 }
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100224
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100225 link = kzalloc(sizeof(*link), GFP_KERNEL);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100226 if (!link)
227 goto out;
228
Rafael J. Wysockibaa88092016-10-30 17:32:43 +0100229 if (flags & DL_FLAG_PM_RUNTIME) {
230 if (flags & DL_FLAG_RPM_ACTIVE) {
231 if (pm_runtime_get_sync(supplier) < 0) {
232 pm_runtime_put_noidle(supplier);
233 kfree(link);
234 link = NULL;
235 goto out;
236 }
237 link->rpm_active = true;
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100238 }
Rafael J. Wysockibaa88092016-10-30 17:32:43 +0100239 pm_runtime_new_link(consumer);
Rafael J. Wysocki47e5abf2018-06-14 10:01:52 +0200240 /*
241 * If the link is being added by the consumer driver at probe
242 * time, balance the decrementation of the supplier's runtime PM
243 * usage counter after consumer probe in driver_probe_device().
244 */
245 if (consumer->links.status == DL_DEV_PROBING)
246 pm_runtime_get_noresume(supplier);
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100247 }
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100248 get_device(supplier);
249 link->supplier = supplier;
250 INIT_LIST_HEAD(&link->s_node);
251 get_device(consumer);
252 link->consumer = consumer;
253 INIT_LIST_HEAD(&link->c_node);
254 link->flags = flags;
Lukas Wunneread18c22018-02-10 19:27:12 +0100255 kref_init(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100256
Lukas Wunner64df1142016-12-04 13:10:04 +0100257 /* Determine the initial link state. */
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100258 if (flags & DL_FLAG_STATELESS) {
259 link->status = DL_STATE_NONE;
260 } else {
261 switch (supplier->links.status) {
262 case DL_DEV_DRIVER_BOUND:
263 switch (consumer->links.status) {
264 case DL_DEV_PROBING:
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100265 /*
Rafael J. Wysocki47e5abf2018-06-14 10:01:52 +0200266 * Some callers expect the link creation during
267 * consumer driver probe to resume the supplier
268 * even without DL_FLAG_RPM_ACTIVE.
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100269 */
270 if (flags & DL_FLAG_PM_RUNTIME)
Rafael J. Wysocki47e5abf2018-06-14 10:01:52 +0200271 pm_runtime_resume(supplier);
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100272
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100273 link->status = DL_STATE_CONSUMER_PROBE;
274 break;
275 case DL_DEV_DRIVER_BOUND:
276 link->status = DL_STATE_ACTIVE;
277 break;
278 default:
279 link->status = DL_STATE_AVAILABLE;
280 break;
281 }
282 break;
283 case DL_DEV_UNBINDING:
284 link->status = DL_STATE_SUPPLIER_UNBIND;
285 break;
286 default:
287 link->status = DL_STATE_DORMANT;
288 break;
289 }
290 }
291
292 /*
293 * Move the consumer and all of the devices depending on it to the end
294 * of dpm_list and the devices_kset list.
295 *
296 * It is necessary to hold dpm_list locked throughout all that or else
297 * we may end up suspending with a wrong ordering of it.
298 */
299 device_reorder_to_tail(consumer, NULL);
300
301 list_add_tail_rcu(&link->s_node, &supplier->links.consumers);
302 list_add_tail_rcu(&link->c_node, &consumer->links.suppliers);
303
304 dev_info(consumer, "Linked as a consumer to %s\n", dev_name(supplier));
305
306 out:
307 device_pm_unlock();
308 device_links_write_unlock();
309 return link;
310}
311EXPORT_SYMBOL_GPL(device_link_add);
312
313static void device_link_free(struct device_link *link)
314{
315 put_device(link->consumer);
316 put_device(link->supplier);
317 kfree(link);
318}
319
320#ifdef CONFIG_SRCU
321static void __device_link_free_srcu(struct rcu_head *rhead)
322{
323 device_link_free(container_of(rhead, struct device_link, rcu_head));
324}
325
Lukas Wunneread18c22018-02-10 19:27:12 +0100326static void __device_link_del(struct kref *kref)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100327{
Lukas Wunneread18c22018-02-10 19:27:12 +0100328 struct device_link *link = container_of(kref, struct device_link, kref);
329
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100330 dev_info(link->consumer, "Dropping the link to %s\n",
331 dev_name(link->supplier));
332
Rafael J. Wysockibaa88092016-10-30 17:32:43 +0100333 if (link->flags & DL_FLAG_PM_RUNTIME)
334 pm_runtime_drop_link(link->consumer);
335
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100336 list_del_rcu(&link->s_node);
337 list_del_rcu(&link->c_node);
338 call_srcu(&device_links_srcu, &link->rcu_head, __device_link_free_srcu);
339}
340#else /* !CONFIG_SRCU */
Lukas Wunneread18c22018-02-10 19:27:12 +0100341static void __device_link_del(struct kref *kref)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100342{
Lukas Wunneread18c22018-02-10 19:27:12 +0100343 struct device_link *link = container_of(kref, struct device_link, kref);
344
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100345 dev_info(link->consumer, "Dropping the link to %s\n",
346 dev_name(link->supplier));
347
Lukas Wunner433986c2018-02-10 19:13:58 +0100348 if (link->flags & DL_FLAG_PM_RUNTIME)
349 pm_runtime_drop_link(link->consumer);
350
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100351 list_del(&link->s_node);
352 list_del(&link->c_node);
353 device_link_free(link);
354}
355#endif /* !CONFIG_SRCU */
356
357/**
358 * device_link_del - Delete a link between two devices.
359 * @link: Device link to delete.
360 *
361 * The caller must ensure proper synchronization of this function with runtime
Lukas Wunneread18c22018-02-10 19:27:12 +0100362 * PM. If the link was added multiple times, it needs to be deleted as often.
363 * Care is required for hotplugged devices: Their links are purged on removal
364 * and calling device_link_del() is then no longer allowed.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100365 */
366void device_link_del(struct device_link *link)
367{
368 device_links_write_lock();
369 device_pm_lock();
Lukas Wunneread18c22018-02-10 19:27:12 +0100370 kref_put(&link->kref, __device_link_del);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100371 device_pm_unlock();
372 device_links_write_unlock();
373}
374EXPORT_SYMBOL_GPL(device_link_del);
375
pascal pailletd8842212018-07-05 14:25:56 +0000376/**
377 * device_link_remove - remove a link between two devices.
378 * @consumer: Consumer end of the link.
379 * @supplier: Supplier end of the link.
380 *
381 * The caller must ensure proper synchronization of this function with runtime
382 * PM.
383 */
384void device_link_remove(void *consumer, struct device *supplier)
385{
386 struct device_link *link;
387
388 if (WARN_ON(consumer == supplier))
389 return;
390
391 device_links_write_lock();
392 device_pm_lock();
393
394 list_for_each_entry(link, &supplier->links.consumers, s_node) {
395 if (link->consumer == consumer) {
396 kref_put(&link->kref, __device_link_del);
397 break;
398 }
399 }
400
401 device_pm_unlock();
402 device_links_write_unlock();
403}
404EXPORT_SYMBOL_GPL(device_link_remove);
405
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100406static void device_links_missing_supplier(struct device *dev)
407{
408 struct device_link *link;
409
410 list_for_each_entry(link, &dev->links.suppliers, c_node)
411 if (link->status == DL_STATE_CONSUMER_PROBE)
412 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
413}
414
415/**
416 * device_links_check_suppliers - Check presence of supplier drivers.
417 * @dev: Consumer device.
418 *
419 * Check links from this device to any suppliers. Walk the list of the device's
420 * links to suppliers and see if all of them are available. If not, simply
421 * return -EPROBE_DEFER.
422 *
423 * We need to guarantee that the supplier will not go away after the check has
424 * been positive here. It only can go away in __device_release_driver() and
425 * that function checks the device's links to consumers. This means we need to
426 * mark the link as "consumer probe in progress" to make the supplier removal
427 * wait for us to complete (or bad things may happen).
428 *
429 * Links with the DL_FLAG_STATELESS flag set are ignored.
430 */
431int device_links_check_suppliers(struct device *dev)
432{
433 struct device_link *link;
434 int ret = 0;
435
436 device_links_write_lock();
437
438 list_for_each_entry(link, &dev->links.suppliers, c_node) {
439 if (link->flags & DL_FLAG_STATELESS)
440 continue;
441
442 if (link->status != DL_STATE_AVAILABLE) {
443 device_links_missing_supplier(dev);
444 ret = -EPROBE_DEFER;
445 break;
446 }
447 WRITE_ONCE(link->status, DL_STATE_CONSUMER_PROBE);
448 }
449 dev->links.status = DL_DEV_PROBING;
450
451 device_links_write_unlock();
452 return ret;
453}
454
455/**
456 * device_links_driver_bound - Update device links after probing its driver.
457 * @dev: Device to update the links for.
458 *
459 * The probe has been successful, so update links from this device to any
460 * consumers by changing their status to "available".
461 *
462 * Also change the status of @dev's links to suppliers to "active".
463 *
464 * Links with the DL_FLAG_STATELESS flag set are ignored.
465 */
466void device_links_driver_bound(struct device *dev)
467{
468 struct device_link *link;
469
470 device_links_write_lock();
471
472 list_for_each_entry(link, &dev->links.consumers, s_node) {
473 if (link->flags & DL_FLAG_STATELESS)
474 continue;
475
476 WARN_ON(link->status != DL_STATE_DORMANT);
477 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
478 }
479
480 list_for_each_entry(link, &dev->links.suppliers, c_node) {
481 if (link->flags & DL_FLAG_STATELESS)
482 continue;
483
484 WARN_ON(link->status != DL_STATE_CONSUMER_PROBE);
485 WRITE_ONCE(link->status, DL_STATE_ACTIVE);
486 }
487
488 dev->links.status = DL_DEV_DRIVER_BOUND;
489
490 device_links_write_unlock();
491}
492
493/**
494 * __device_links_no_driver - Update links of a device without a driver.
495 * @dev: Device without a drvier.
496 *
497 * Delete all non-persistent links from this device to any suppliers.
498 *
499 * Persistent links stay around, but their status is changed to "available",
500 * unless they already are in the "supplier unbind in progress" state in which
501 * case they need not be updated.
502 *
503 * Links with the DL_FLAG_STATELESS flag set are ignored.
504 */
505static void __device_links_no_driver(struct device *dev)
506{
507 struct device_link *link, *ln;
508
509 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
510 if (link->flags & DL_FLAG_STATELESS)
511 continue;
512
Vivek Gautame88728f2018-06-27 18:20:55 +0530513 if (link->flags & DL_FLAG_AUTOREMOVE_CONSUMER)
Lukas Wunneread18c22018-02-10 19:27:12 +0100514 kref_put(&link->kref, __device_link_del);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100515 else if (link->status != DL_STATE_SUPPLIER_UNBIND)
516 WRITE_ONCE(link->status, DL_STATE_AVAILABLE);
517 }
518
519 dev->links.status = DL_DEV_NO_DRIVER;
520}
521
522void device_links_no_driver(struct device *dev)
523{
524 device_links_write_lock();
525 __device_links_no_driver(dev);
526 device_links_write_unlock();
527}
528
529/**
530 * device_links_driver_cleanup - Update links after driver removal.
531 * @dev: Device whose driver has just gone away.
532 *
533 * Update links to consumers for @dev by changing their status to "dormant" and
534 * invoke %__device_links_no_driver() to update links to suppliers for it as
535 * appropriate.
536 *
537 * Links with the DL_FLAG_STATELESS flag set are ignored.
538 */
539void device_links_driver_cleanup(struct device *dev)
540{
541 struct device_link *link;
542
543 device_links_write_lock();
544
545 list_for_each_entry(link, &dev->links.consumers, s_node) {
546 if (link->flags & DL_FLAG_STATELESS)
547 continue;
548
Vivek Gautame88728f2018-06-27 18:20:55 +0530549 WARN_ON(link->flags & DL_FLAG_AUTOREMOVE_CONSUMER);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100550 WARN_ON(link->status != DL_STATE_SUPPLIER_UNBIND);
Vivek Gautam1689cac2018-06-27 18:20:56 +0530551
552 /*
553 * autoremove the links between this @dev and its consumer
554 * devices that are not active, i.e. where the link state
555 * has moved to DL_STATE_SUPPLIER_UNBIND.
556 */
557 if (link->status == DL_STATE_SUPPLIER_UNBIND &&
558 link->flags & DL_FLAG_AUTOREMOVE_SUPPLIER)
559 kref_put(&link->kref, __device_link_del);
560
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100561 WRITE_ONCE(link->status, DL_STATE_DORMANT);
562 }
563
564 __device_links_no_driver(dev);
565
566 device_links_write_unlock();
567}
568
569/**
570 * device_links_busy - Check if there are any busy links to consumers.
571 * @dev: Device to check.
572 *
573 * Check each consumer of the device and return 'true' if its link's status
574 * is one of "consumer probe" or "active" (meaning that the given consumer is
575 * probing right now or its driver is present). Otherwise, change the link
576 * state to "supplier unbind" to prevent the consumer from being probed
577 * successfully going forward.
578 *
579 * Return 'false' if there are no probing or active consumers.
580 *
581 * Links with the DL_FLAG_STATELESS flag set are ignored.
582 */
583bool device_links_busy(struct device *dev)
584{
585 struct device_link *link;
586 bool ret = false;
587
588 device_links_write_lock();
589
590 list_for_each_entry(link, &dev->links.consumers, s_node) {
591 if (link->flags & DL_FLAG_STATELESS)
592 continue;
593
594 if (link->status == DL_STATE_CONSUMER_PROBE
595 || link->status == DL_STATE_ACTIVE) {
596 ret = true;
597 break;
598 }
599 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
600 }
601
602 dev->links.status = DL_DEV_UNBINDING;
603
604 device_links_write_unlock();
605 return ret;
606}
607
608/**
609 * device_links_unbind_consumers - Force unbind consumers of the given device.
610 * @dev: Device to unbind the consumers of.
611 *
612 * Walk the list of links to consumers for @dev and if any of them is in the
613 * "consumer probe" state, wait for all device probes in progress to complete
614 * and start over.
615 *
616 * If that's not the case, change the status of the link to "supplier unbind"
617 * and check if the link was in the "active" state. If so, force the consumer
618 * driver to unbind and start over (the consumer will not re-probe as we have
619 * changed the state of the link already).
620 *
621 * Links with the DL_FLAG_STATELESS flag set are ignored.
622 */
623void device_links_unbind_consumers(struct device *dev)
624{
625 struct device_link *link;
626
627 start:
628 device_links_write_lock();
629
630 list_for_each_entry(link, &dev->links.consumers, s_node) {
631 enum device_link_state status;
632
633 if (link->flags & DL_FLAG_STATELESS)
634 continue;
635
636 status = link->status;
637 if (status == DL_STATE_CONSUMER_PROBE) {
638 device_links_write_unlock();
639
640 wait_for_device_probe();
641 goto start;
642 }
643 WRITE_ONCE(link->status, DL_STATE_SUPPLIER_UNBIND);
644 if (status == DL_STATE_ACTIVE) {
645 struct device *consumer = link->consumer;
646
647 get_device(consumer);
648
649 device_links_write_unlock();
650
651 device_release_driver_internal(consumer, NULL,
652 consumer->parent);
653 put_device(consumer);
654 goto start;
655 }
656 }
657
658 device_links_write_unlock();
659}
660
661/**
662 * device_links_purge - Delete existing links to other devices.
663 * @dev: Target device.
664 */
665static void device_links_purge(struct device *dev)
666{
667 struct device_link *link, *ln;
668
669 /*
670 * Delete all of the remaining links from this device to any other
671 * devices (either consumers or suppliers).
672 */
673 device_links_write_lock();
674
675 list_for_each_entry_safe_reverse(link, ln, &dev->links.suppliers, c_node) {
676 WARN_ON(link->status == DL_STATE_ACTIVE);
Lukas Wunneread18c22018-02-10 19:27:12 +0100677 __device_link_del(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100678 }
679
680 list_for_each_entry_safe_reverse(link, ln, &dev->links.consumers, s_node) {
681 WARN_ON(link->status != DL_STATE_DORMANT &&
682 link->status != DL_STATE_NONE);
Lukas Wunneread18c22018-02-10 19:27:12 +0100683 __device_link_del(&link->kref);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100684 }
685
686 device_links_write_unlock();
687}
688
689/* Device links support end. */
690
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800691int (*platform_notify)(struct device *dev) = NULL;
692int (*platform_notify_remove)(struct device *dev) = NULL;
Dan Williamse105b8b2008-04-21 10:51:07 -0700693static struct kobject *dev_kobj;
694struct kobject *sysfs_dev_char_kobj;
695struct kobject *sysfs_dev_block_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +0200697static DEFINE_MUTEX(device_hotplug_lock);
698
699void lock_device_hotplug(void)
700{
701 mutex_lock(&device_hotplug_lock);
702}
703
704void unlock_device_hotplug(void)
705{
706 mutex_unlock(&device_hotplug_lock);
707}
708
709int lock_device_hotplug_sysfs(void)
710{
711 if (mutex_trylock(&device_hotplug_lock))
712 return 0;
713
714 /* Avoid busy looping (5 ms of sleep should do). */
715 msleep(5);
716 return restart_syscall();
717}
718
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800719#ifdef CONFIG_BLOCK
720static inline int device_is_not_partition(struct device *dev)
721{
722 return !(dev->type == &part_type);
723}
724#else
725static inline int device_is_not_partition(struct device *dev)
726{
727 return 1;
728}
729#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Alan Stern3e956372006-06-16 17:10:48 -0400731/**
732 * dev_driver_string - Return a device's driver name, if at all possible
733 * @dev: struct device to get the name of
734 *
735 * Will return the device's driver's name if it is bound to a device. If
yan9169c012012-04-20 21:08:45 +0800736 * the device is not bound to a driver, it will return the name of the bus
Alan Stern3e956372006-06-16 17:10:48 -0400737 * it is attached to. If it is not attached to a bus either, an empty
738 * string will be returned.
739 */
Jean Delvarebf9ca692008-07-30 12:29:21 -0700740const char *dev_driver_string(const struct device *dev)
Alan Stern3e956372006-06-16 17:10:48 -0400741{
Alan Stern35899722009-12-04 11:06:57 -0500742 struct device_driver *drv;
743
744 /* dev->driver can change to NULL underneath us because of unbinding,
745 * so be careful about accessing it. dev->bus and dev->class should
746 * never change once they are set, so they don't need special care.
747 */
Mark Rutland6aa7de02017-10-23 14:07:29 -0700748 drv = READ_ONCE(dev->driver);
Alan Stern35899722009-12-04 11:06:57 -0500749 return drv ? drv->name :
Jean Delvarea456b702007-03-09 16:33:10 +0100750 (dev->bus ? dev->bus->name :
751 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -0400752}
Matthew Wilcox310a9222006-09-23 23:35:04 -0600753EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -0400754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
756
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800757static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
758 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800760 struct device_attribute *dev_attr = to_dev_attr(attr);
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200761 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -0500762 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -0400765 ret = dev_attr->show(dev, dev_attr, buf);
Andrew Morton815d2d52008-03-04 15:09:07 -0800766 if (ret >= (ssize_t)PAGE_SIZE) {
Sergey Senozhatskya52668c2017-12-11 21:50:21 +0900767 printk("dev_attr_show: %pS returned bad count\n",
768 dev_attr->show);
Andrew Morton815d2d52008-03-04 15:09:07 -0800769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return ret;
771}
772
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800773static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
774 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800776 struct device_attribute *dev_attr = to_dev_attr(attr);
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200777 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -0500778 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -0400781 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return ret;
783}
784
Emese Revfy52cf25d2010-01-19 02:58:23 +0100785static const struct sysfs_ops dev_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .show = dev_attr_show,
787 .store = dev_attr_store,
788};
789
Kay Sieversca22e562011-12-14 14:29:38 -0800790#define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr)
791
792ssize_t device_store_ulong(struct device *dev,
793 struct device_attribute *attr,
794 const char *buf, size_t size)
795{
796 struct dev_ext_attribute *ea = to_ext_attr(attr);
797 char *end;
798 unsigned long new = simple_strtoul(buf, &end, 0);
799 if (end == buf)
800 return -EINVAL;
801 *(unsigned long *)(ea->var) = new;
802 /* Always return full write size even if we didn't consume all */
803 return size;
804}
805EXPORT_SYMBOL_GPL(device_store_ulong);
806
807ssize_t device_show_ulong(struct device *dev,
808 struct device_attribute *attr,
809 char *buf)
810{
811 struct dev_ext_attribute *ea = to_ext_attr(attr);
812 return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var));
813}
814EXPORT_SYMBOL_GPL(device_show_ulong);
815
816ssize_t device_store_int(struct device *dev,
817 struct device_attribute *attr,
818 const char *buf, size_t size)
819{
820 struct dev_ext_attribute *ea = to_ext_attr(attr);
821 char *end;
822 long new = simple_strtol(buf, &end, 0);
823 if (end == buf || new > INT_MAX || new < INT_MIN)
824 return -EINVAL;
825 *(int *)(ea->var) = new;
826 /* Always return full write size even if we didn't consume all */
827 return size;
828}
829EXPORT_SYMBOL_GPL(device_store_int);
830
831ssize_t device_show_int(struct device *dev,
832 struct device_attribute *attr,
833 char *buf)
834{
835 struct dev_ext_attribute *ea = to_ext_attr(attr);
836
837 return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var));
838}
839EXPORT_SYMBOL_GPL(device_show_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Borislav Petkov91872392012-10-09 19:52:05 +0200841ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
842 const char *buf, size_t size)
843{
844 struct dev_ext_attribute *ea = to_ext_attr(attr);
845
846 if (strtobool(buf, ea->var) < 0)
847 return -EINVAL;
848
849 return size;
850}
851EXPORT_SYMBOL_GPL(device_store_bool);
852
853ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
854 char *buf)
855{
856 struct dev_ext_attribute *ea = to_ext_attr(attr);
857
858 return snprintf(buf, PAGE_SIZE, "%d\n", *(bool *)(ea->var));
859}
860EXPORT_SYMBOL_GPL(device_show_bool);
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862/**
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -0400863 * device_release - free device structure.
864 * @kobj: device's kobject.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 *
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -0400866 * This is called once the reference count for the object
867 * reaches 0. We forward the call to the device's release
868 * method, which should handle actually freeing the structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800870static void device_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200872 struct device *dev = kobj_to_dev(kobj);
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800873 struct device_private *p = dev->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Ming Leia525a3d2012-07-25 01:42:29 +0800875 /*
876 * Some platform devices are driven without driver attached
877 * and managed resources may have been acquired. Make sure
878 * all resources are released.
879 *
880 * Drivers still can add resources into device after device
881 * is deleted but alive, so release devres here to avoid
882 * possible memory leak.
883 */
884 devres_release_all(dev);
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (dev->release)
887 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200888 else if (dev->type && dev->type->release)
889 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700890 else if (dev->class && dev->class->dev_release)
891 dev->class->dev_release(dev);
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700892 else
893 WARN(1, KERN_ERR "Device '%s' does not have a release() "
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800894 "function, it is broken and must be fixed.\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100895 dev_name(dev));
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800896 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700899static const void *device_namespace(struct kobject *kobj)
900{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200901 struct device *dev = kobj_to_dev(kobj);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700902 const void *ns = NULL;
903
904 if (dev->class && dev->class->ns_type)
905 ns = dev->class->namespace(dev);
906
907 return ns;
908}
909
Dmitry Torokhov9944e892018-07-20 21:56:50 +0000910static void device_get_ownership(struct kobject *kobj, kuid_t *uid, kgid_t *gid)
911{
912 struct device *dev = kobj_to_dev(kobj);
913
914 if (dev->class && dev->class->get_ownership)
915 dev->class->get_ownership(dev, uid, gid);
916}
917
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600918static struct kobj_type device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 .release = device_release,
920 .sysfs_ops = &dev_sysfs_ops,
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700921 .namespace = device_namespace,
Dmitry Torokhov9944e892018-07-20 21:56:50 +0000922 .get_ownership = device_get_ownership,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923};
924
925
Kay Sievers312c0042005-11-16 09:00:00 +0100926static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 struct kobj_type *ktype = get_ktype(kobj);
929
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600930 if (ktype == &device_ktype) {
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200931 struct device *dev = kobj_to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (dev->bus)
933 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700934 if (dev->class)
935 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 return 0;
938}
939
Kay Sievers312c0042005-11-16 09:00:00 +0100940static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200942 struct device *dev = kobj_to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700944 if (dev->bus)
945 return dev->bus->name;
946 if (dev->class)
947 return dev->class->name;
948 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Kay Sievers7eff2e72007-08-14 15:15:12 +0200951static int dev_uevent(struct kset *kset, struct kobject *kobj,
952 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200954 struct device *dev = kobj_to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 int retval = 0;
956
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200957 /* add device node properties if present */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700958 if (MAJOR(dev->devt)) {
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200959 const char *tmp;
960 const char *name;
Al Viro2c9ede52011-07-23 20:24:48 -0400961 umode_t mode = 0;
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -0700962 kuid_t uid = GLOBAL_ROOT_UID;
963 kgid_t gid = GLOBAL_ROOT_GID;
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200964
Kay Sievers7eff2e72007-08-14 15:15:12 +0200965 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
966 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
Kay Sievers3c2670e2013-04-06 09:56:00 -0700967 name = device_get_devnode(dev, &mode, &uid, &gid, &tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200968 if (name) {
969 add_uevent_var(env, "DEVNAME=%s", name);
Kay Sieverse454cea2009-09-18 23:01:12 +0200970 if (mode)
971 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -0700972 if (!uid_eq(uid, GLOBAL_ROOT_UID))
973 add_uevent_var(env, "DEVUID=%u", from_kuid(&init_user_ns, uid));
974 if (!gid_eq(gid, GLOBAL_ROOT_GID))
975 add_uevent_var(env, "DEVGID=%u", from_kgid(&init_user_ns, gid));
Kay Sievers3c2670e2013-04-06 09:56:00 -0700976 kfree(tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200977 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700978 }
979
Kay Sievers414264f2007-03-12 21:08:57 +0100980 if (dev->type && dev->type->name)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200981 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
Kay Sievers414264f2007-03-12 21:08:57 +0100982
Kay Sievers239378f2006-10-07 21:54:55 +0200983 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200984 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200985
Grant Likely07d57a32012-02-01 11:22:22 -0700986 /* Add common DT information about the device */
987 of_device_uevent(dev, env);
988
Kay Sievers7eff2e72007-08-14 15:15:12 +0200989 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100990 if (dev->bus && dev->bus->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200991 retval = dev->bus->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200992 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800993 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100994 dev_name(dev), __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996
Kay Sievers7eff2e72007-08-14 15:15:12 +0200997 /* have the class specific function add its stuff */
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700998 if (dev->class && dev->class->dev_uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200999 retval = dev->class->dev_uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001000 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -08001001 pr_debug("device: '%s': %s: class uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001002 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -08001003 __func__, retval);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001004 }
1005
Stefan Weileef35c22010-08-06 21:11:15 +02001006 /* have the device type specific function add its stuff */
Kay Sieversf9f852d2006-10-07 21:54:55 +02001007 if (dev->type && dev->type->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +02001008 retval = dev->type->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001009 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -08001010 pr_debug("device: '%s': %s: dev_type uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001011 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -08001012 __func__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001013 }
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return retval;
1016}
1017
Emese Revfy9cd43612009-12-31 14:52:51 +01001018static const struct kset_uevent_ops device_uevent_ops = {
Kay Sievers312c0042005-11-16 09:00:00 +01001019 .filter = dev_uevent_filter,
1020 .name = dev_uevent_name,
1021 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022};
1023
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001024static ssize_t uevent_show(struct device *dev, struct device_attribute *attr,
Kay Sievers16574dc2007-04-06 01:40:38 +02001025 char *buf)
1026{
1027 struct kobject *top_kobj;
1028 struct kset *kset;
Kay Sievers7eff2e72007-08-14 15:15:12 +02001029 struct kobj_uevent_env *env = NULL;
Kay Sievers16574dc2007-04-06 01:40:38 +02001030 int i;
1031 size_t count = 0;
1032 int retval;
1033
1034 /* search the kset, the device belongs to */
1035 top_kobj = &dev->kobj;
Kay Sievers5c5daf62007-08-12 20:43:55 +02001036 while (!top_kobj->kset && top_kobj->parent)
1037 top_kobj = top_kobj->parent;
Kay Sievers16574dc2007-04-06 01:40:38 +02001038 if (!top_kobj->kset)
1039 goto out;
Kay Sievers5c5daf62007-08-12 20:43:55 +02001040
Kay Sievers16574dc2007-04-06 01:40:38 +02001041 kset = top_kobj->kset;
1042 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
1043 goto out;
1044
1045 /* respect filter */
1046 if (kset->uevent_ops && kset->uevent_ops->filter)
1047 if (!kset->uevent_ops->filter(kset, &dev->kobj))
1048 goto out;
1049
Kay Sievers7eff2e72007-08-14 15:15:12 +02001050 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
1051 if (!env)
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +02001052 return -ENOMEM;
1053
Kay Sievers16574dc2007-04-06 01:40:38 +02001054 /* let the kset specific function add its keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001055 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
Kay Sievers16574dc2007-04-06 01:40:38 +02001056 if (retval)
1057 goto out;
1058
1059 /* copy keys to file */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001060 for (i = 0; i < env->envp_idx; i++)
1061 count += sprintf(&buf[count], "%s\n", env->envp[i]);
Kay Sievers16574dc2007-04-06 01:40:38 +02001062out:
Kay Sievers7eff2e72007-08-14 15:15:12 +02001063 kfree(env);
Kay Sievers16574dc2007-04-06 01:40:38 +02001064 return count;
1065}
1066
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001067static ssize_t uevent_store(struct device *dev, struct device_attribute *attr,
Kay Sieversa7fd6702005-10-01 14:49:43 +02001068 const char *buf, size_t count)
1069{
Peter Rajnohaf7debee2018-12-05 12:27:44 +01001070 int rc;
1071
1072 rc = kobject_synth_uevent(&dev->kobj, buf, count);
1073
1074 if (rc) {
Peter Rajnohaf36776f2017-05-09 15:22:30 +02001075 dev_err(dev, "uevent: failed to send synthetic uevent\n");
Peter Rajnohaf7debee2018-12-05 12:27:44 +01001076 return rc;
1077 }
Kay Sievers60a96a52007-07-08 22:29:26 +02001078
Kay Sieversa7fd6702005-10-01 14:49:43 +02001079 return count;
1080}
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001081static DEVICE_ATTR_RW(uevent);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001082
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001083static ssize_t online_show(struct device *dev, struct device_attribute *attr,
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001084 char *buf)
1085{
1086 bool val;
1087
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02001088 device_lock(dev);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001089 val = !dev->offline;
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02001090 device_unlock(dev);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001091 return sprintf(buf, "%u\n", val);
1092}
1093
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001094static ssize_t online_store(struct device *dev, struct device_attribute *attr,
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001095 const char *buf, size_t count)
1096{
1097 bool val;
1098 int ret;
1099
1100 ret = strtobool(buf, &val);
1101 if (ret < 0)
1102 return ret;
1103
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +02001104 ret = lock_device_hotplug_sysfs();
1105 if (ret)
1106 return ret;
1107
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001108 ret = val ? device_online(dev) : device_offline(dev);
1109 unlock_device_hotplug();
1110 return ret < 0 ? ret : count;
1111}
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001112static DEVICE_ATTR_RW(online);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001113
Greg Kroah-Hartmanfa6fdb32013-08-08 15:22:55 -07001114int device_add_groups(struct device *dev, const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001115{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -07001116 return sysfs_create_groups(&dev->kobj, groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001117}
Dmitry Torokhova7670d42017-07-19 17:24:31 -07001118EXPORT_SYMBOL_GPL(device_add_groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001119
Greg Kroah-Hartmanfa6fdb32013-08-08 15:22:55 -07001120void device_remove_groups(struct device *dev,
1121 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001122{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -07001123 sysfs_remove_groups(&dev->kobj, groups);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -07001124}
Dmitry Torokhova7670d42017-07-19 17:24:31 -07001125EXPORT_SYMBOL_GPL(device_remove_groups);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -07001126
Dmitry Torokhov57b8ff02017-07-19 17:24:33 -07001127union device_attr_group_devres {
1128 const struct attribute_group *group;
1129 const struct attribute_group **groups;
1130};
1131
1132static int devm_attr_group_match(struct device *dev, void *res, void *data)
1133{
1134 return ((union device_attr_group_devres *)res)->group == data;
1135}
1136
1137static void devm_attr_group_remove(struct device *dev, void *res)
1138{
1139 union device_attr_group_devres *devres = res;
1140 const struct attribute_group *group = devres->group;
1141
1142 dev_dbg(dev, "%s: removing group %p\n", __func__, group);
1143 sysfs_remove_group(&dev->kobj, group);
1144}
1145
1146static void devm_attr_groups_remove(struct device *dev, void *res)
1147{
1148 union device_attr_group_devres *devres = res;
1149 const struct attribute_group **groups = devres->groups;
1150
1151 dev_dbg(dev, "%s: removing groups %p\n", __func__, groups);
1152 sysfs_remove_groups(&dev->kobj, groups);
1153}
1154
1155/**
1156 * devm_device_add_group - given a device, create a managed attribute group
1157 * @dev: The device to create the group for
1158 * @grp: The attribute group to create
1159 *
1160 * This function creates a group for the first time. It will explicitly
1161 * warn and error if any of the attribute files being created already exist.
1162 *
1163 * Returns 0 on success or error code on failure.
1164 */
1165int devm_device_add_group(struct device *dev, const struct attribute_group *grp)
1166{
1167 union device_attr_group_devres *devres;
1168 int error;
1169
1170 devres = devres_alloc(devm_attr_group_remove,
1171 sizeof(*devres), GFP_KERNEL);
1172 if (!devres)
1173 return -ENOMEM;
1174
1175 error = sysfs_create_group(&dev->kobj, grp);
1176 if (error) {
1177 devres_free(devres);
1178 return error;
1179 }
1180
1181 devres->group = grp;
1182 devres_add(dev, devres);
1183 return 0;
1184}
1185EXPORT_SYMBOL_GPL(devm_device_add_group);
1186
1187/**
1188 * devm_device_remove_group: remove a managed group from a device
1189 * @dev: device to remove the group from
1190 * @grp: group to remove
1191 *
1192 * This function removes a group of attributes from a device. The attributes
1193 * previously have to have been created for this group, otherwise it will fail.
1194 */
1195void devm_device_remove_group(struct device *dev,
1196 const struct attribute_group *grp)
1197{
1198 WARN_ON(devres_release(dev, devm_attr_group_remove,
1199 devm_attr_group_match,
1200 /* cast away const */ (void *)grp));
1201}
1202EXPORT_SYMBOL_GPL(devm_device_remove_group);
1203
1204/**
1205 * devm_device_add_groups - create a bunch of managed attribute groups
1206 * @dev: The device to create the group for
1207 * @groups: The attribute groups to create, NULL terminated
1208 *
1209 * This function creates a bunch of managed attribute groups. If an error
1210 * occurs when creating a group, all previously created groups will be
1211 * removed, unwinding everything back to the original state when this
1212 * function was called. It will explicitly warn and error if any of the
1213 * attribute files being created already exist.
1214 *
1215 * Returns 0 on success or error code from sysfs_create_group on failure.
1216 */
1217int devm_device_add_groups(struct device *dev,
1218 const struct attribute_group **groups)
1219{
1220 union device_attr_group_devres *devres;
1221 int error;
1222
1223 devres = devres_alloc(devm_attr_groups_remove,
1224 sizeof(*devres), GFP_KERNEL);
1225 if (!devres)
1226 return -ENOMEM;
1227
1228 error = sysfs_create_groups(&dev->kobj, groups);
1229 if (error) {
1230 devres_free(devres);
1231 return error;
1232 }
1233
1234 devres->groups = groups;
1235 devres_add(dev, devres);
1236 return 0;
1237}
1238EXPORT_SYMBOL_GPL(devm_device_add_groups);
1239
1240/**
1241 * devm_device_remove_groups - remove a list of managed groups
1242 *
1243 * @dev: The device for the groups to be removed from
1244 * @groups: NULL terminated list of groups to be removed
1245 *
1246 * If groups is not NULL, remove the specified groups from the device.
1247 */
1248void devm_device_remove_groups(struct device *dev,
1249 const struct attribute_group **groups)
1250{
1251 WARN_ON(devres_release(dev, devm_attr_groups_remove,
1252 devm_attr_group_match,
1253 /* cast away const */ (void *)groups));
1254}
1255EXPORT_SYMBOL_GPL(devm_device_remove_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001257static int device_add_attrs(struct device *dev)
1258{
1259 struct class *class = dev->class;
Stephen Hemmingeraed65af2011-03-28 09:12:52 -07001260 const struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001261 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001262
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001263 if (class) {
Greg Kroah-Hartmand05a6f92013-07-14 16:05:58 -07001264 error = device_add_groups(dev, class->dev_groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001265 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001266 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001267 }
Kay Sieversf9f852d2006-10-07 21:54:55 +02001268
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001269 if (type) {
1270 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001271 if (error)
Greg Kroah-Hartmana6b01de2013-10-05 18:19:30 -07001272 goto err_remove_class_groups;
Kay Sieversf9f852d2006-10-07 21:54:55 +02001273 }
1274
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001275 error = device_add_groups(dev, dev->groups);
1276 if (error)
1277 goto err_remove_type_groups;
1278
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001279 if (device_supports_offline(dev) && !dev->offline_disabled) {
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001280 error = device_create_file(dev, &dev_attr_online);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001281 if (error)
Rafael J. Wysockiecfbf6f2013-12-12 06:11:02 +01001282 goto err_remove_dev_groups;
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02001283 }
1284
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001285 return 0;
1286
Rafael J. Wysockiecfbf6f2013-12-12 06:11:02 +01001287 err_remove_dev_groups:
1288 device_remove_groups(dev, dev->groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001289 err_remove_type_groups:
1290 if (type)
1291 device_remove_groups(dev, type->groups);
Greg Kroah-Hartmand05a6f92013-07-14 16:05:58 -07001292 err_remove_class_groups:
1293 if (class)
1294 device_remove_groups(dev, class->dev_groups);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001295
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001296 return error;
1297}
1298
1299static void device_remove_attrs(struct device *dev)
1300{
1301 struct class *class = dev->class;
Stephen Hemmingeraed65af2011-03-28 09:12:52 -07001302 const struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001303
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001304 device_remove_file(dev, &dev_attr_online);
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001305 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +02001306
Dmitry Torokhov621a1672007-03-10 01:37:34 -05001307 if (type)
1308 device_remove_groups(dev, type->groups);
1309
Greg Kroah-Hartmana6b01de2013-10-05 18:19:30 -07001310 if (class)
Greg Kroah-Hartmand05a6f92013-07-14 16:05:58 -07001311 device_remove_groups(dev, class->dev_groups);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001312}
1313
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001314static ssize_t dev_show(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001315 char *buf)
1316{
1317 return print_dev_t(buf, dev->devt);
1318}
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001319static DEVICE_ATTR_RO(dev);
Tejun Heoad6a1e12007-06-14 03:45:17 +09001320
Kay Sieversca22e562011-12-14 14:29:38 -08001321/* /sys/devices/ */
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06001322struct kset *devices_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324/**
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03001325 * devices_kset_move_before - Move device in the devices_kset's list.
1326 * @deva: Device to move.
1327 * @devb: Device @deva should come before.
1328 */
1329static void devices_kset_move_before(struct device *deva, struct device *devb)
1330{
1331 if (!devices_kset)
1332 return;
1333 pr_debug("devices_kset: Moving %s before %s\n",
1334 dev_name(deva), dev_name(devb));
1335 spin_lock(&devices_kset->list_lock);
1336 list_move_tail(&deva->kobj.entry, &devb->kobj.entry);
1337 spin_unlock(&devices_kset->list_lock);
1338}
1339
1340/**
1341 * devices_kset_move_after - Move device in the devices_kset's list.
1342 * @deva: Device to move
1343 * @devb: Device @deva should come after.
1344 */
1345static void devices_kset_move_after(struct device *deva, struct device *devb)
1346{
1347 if (!devices_kset)
1348 return;
1349 pr_debug("devices_kset: Moving %s after %s\n",
1350 dev_name(deva), dev_name(devb));
1351 spin_lock(&devices_kset->list_lock);
1352 list_move(&deva->kobj.entry, &devb->kobj.entry);
1353 spin_unlock(&devices_kset->list_lock);
1354}
1355
1356/**
1357 * devices_kset_move_last - move the device to the end of devices_kset's list.
1358 * @dev: device to move
1359 */
1360void devices_kset_move_last(struct device *dev)
1361{
1362 if (!devices_kset)
1363 return;
1364 pr_debug("devices_kset: Moving %s to end of list\n", dev_name(dev));
1365 spin_lock(&devices_kset->list_lock);
1366 list_move_tail(&dev->kobj.entry, &devices_kset->list);
1367 spin_unlock(&devices_kset->list_lock);
1368}
1369
1370/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001371 * device_create_file - create sysfs attribute file for device.
1372 * @dev: device.
1373 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 */
Phil Carmody26579ab2009-12-18 15:34:19 +02001375int device_create_file(struct device *dev,
1376 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
1378 int error = 0;
Felipe Balbi8f46baa2013-02-20 10:31:42 +02001379
1380 if (dev) {
1381 WARN(((attr->attr.mode & S_IWUGO) && !attr->store),
dyoung@redhat.com97521972013-05-16 14:31:30 +08001382 "Attribute %s: write permission without 'store'\n",
1383 attr->attr.name);
Felipe Balbi8f46baa2013-02-20 10:31:42 +02001384 WARN(((attr->attr.mode & S_IRUGO) && !attr->show),
dyoung@redhat.com97521972013-05-16 14:31:30 +08001385 "Attribute %s: read permission without 'show'\n",
1386 attr->attr.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 error = sysfs_create_file(&dev->kobj, &attr->attr);
Felipe Balbi8f46baa2013-02-20 10:31:42 +02001388 }
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 return error;
1391}
David Graham White86df2682013-07-21 20:41:14 -04001392EXPORT_SYMBOL_GPL(device_create_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001395 * device_remove_file - remove sysfs attribute file.
1396 * @dev: device.
1397 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
Phil Carmody26579ab2009-12-18 15:34:19 +02001399void device_remove_file(struct device *dev,
1400 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Cornelia Huck0c98b192008-01-31 10:39:38 +01001402 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 sysfs_remove_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
David Graham White86df2682013-07-21 20:41:14 -04001405EXPORT_SYMBOL_GPL(device_remove_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07001407/**
Tejun Heo6b0afc22014-02-03 14:03:01 -05001408 * device_remove_file_self - remove sysfs attribute file from its own method.
1409 * @dev: device.
1410 * @attr: device attribute descriptor.
1411 *
1412 * See kernfs_remove_self() for details.
1413 */
1414bool device_remove_file_self(struct device *dev,
1415 const struct device_attribute *attr)
1416{
1417 if (dev)
1418 return sysfs_remove_file_self(&dev->kobj, &attr->attr);
1419 else
1420 return false;
1421}
1422EXPORT_SYMBOL_GPL(device_remove_file_self);
1423
1424/**
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07001425 * device_create_bin_file - create sysfs binary attribute file for device.
1426 * @dev: device.
1427 * @attr: device binary attribute descriptor.
1428 */
Phil Carmody66ecb922009-12-18 15:34:20 +02001429int device_create_bin_file(struct device *dev,
1430 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07001431{
1432 int error = -EINVAL;
1433 if (dev)
1434 error = sysfs_create_bin_file(&dev->kobj, attr);
1435 return error;
1436}
1437EXPORT_SYMBOL_GPL(device_create_bin_file);
1438
1439/**
1440 * device_remove_bin_file - remove sysfs binary attribute file
1441 * @dev: device.
1442 * @attr: device binary attribute descriptor.
1443 */
Phil Carmody66ecb922009-12-18 15:34:20 +02001444void device_remove_bin_file(struct device *dev,
1445 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -07001446{
1447 if (dev)
1448 sysfs_remove_bin_file(&dev->kobj, attr);
1449}
1450EXPORT_SYMBOL_GPL(device_remove_bin_file);
1451
James Bottomley34bb61f2005-09-06 16:56:51 -07001452static void klist_children_get(struct klist_node *n)
1453{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001454 struct device_private *p = to_device_private_parent(n);
1455 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -07001456
1457 get_device(dev);
1458}
1459
1460static void klist_children_put(struct klist_node *n)
1461{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001462 struct device_private *p = to_device_private_parent(n);
1463 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -07001464
1465 put_device(dev);
1466}
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001469 * device_initialize - init device structure.
1470 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 *
Cornelia Huck57394112008-09-03 18:26:40 +02001472 * This prepares the device for use by other layers by initializing
1473 * its fields.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001474 * It is the first half of device_register(), if called by
Cornelia Huck57394112008-09-03 18:26:40 +02001475 * that function, though it can also be called separately, so one
1476 * may use @dev's fields. In particular, get_device()/put_device()
1477 * may be used for reference counting of @dev after calling this
1478 * function.
1479 *
Alan Sternb10d5ef2012-01-17 11:39:00 -05001480 * All fields in @dev must be initialized by the caller to 0, except
1481 * for those explicitly set to some other value. The simplest
1482 * approach is to use kzalloc() to allocate the structure containing
1483 * @dev.
1484 *
Cornelia Huck57394112008-09-03 18:26:40 +02001485 * NOTE: Use put_device() to give up your reference instead of freeing
1486 * @dev directly once you have called this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488void device_initialize(struct device *dev)
1489{
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06001490 dev->kobj.kset = devices_kset;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -07001491 kobject_init(&dev->kobj, &device_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 INIT_LIST_HEAD(&dev->dma_pools);
Thomas Gleixner31427882010-01-29 20:39:02 +00001493 mutex_init(&dev->mutex);
Peter Zijlstra1704f472010-03-19 01:37:42 +01001494 lockdep_set_novalidate_class(&dev->mutex);
Tejun Heo9ac78492007-01-20 16:00:26 +09001495 spin_lock_init(&dev->devres_lock);
1496 INIT_LIST_HEAD(&dev->devres_head);
Alan Stern3b98aea2008-08-07 13:06:12 -04001497 device_pm_init(dev);
Christoph Hellwig87348132006-12-06 20:32:33 -08001498 set_dev_node(dev, -1);
Jiang Liu4a7cc832015-07-09 16:00:44 +08001499#ifdef CONFIG_GENERIC_MSI_IRQ
1500 INIT_LIST_HEAD(&dev->msi_list);
1501#endif
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01001502 INIT_LIST_HEAD(&dev->links.consumers);
1503 INIT_LIST_HEAD(&dev->links.suppliers);
1504 dev->links.status = DL_DEV_NO_DRIVER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
David Graham White86df2682013-07-21 20:41:14 -04001506EXPORT_SYMBOL_GPL(device_initialize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Tejun Heod73ce002013-03-12 11:30:05 -07001508struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07001509{
Kay Sievers86406242007-03-14 03:25:56 +01001510 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07001511
Kay Sievers86406242007-03-14 03:25:56 +01001512 if (!virtual_dir)
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001513 virtual_dir = kobject_create_and_add("virtual",
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06001514 &devices_kset->kobj);
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07001515
Kay Sievers86406242007-03-14 03:25:56 +01001516 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -07001517}
1518
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001519struct class_dir {
1520 struct kobject kobj;
1521 struct class *class;
1522};
1523
1524#define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
1525
1526static void class_dir_release(struct kobject *kobj)
1527{
1528 struct class_dir *dir = to_class_dir(kobj);
1529 kfree(dir);
1530}
1531
1532static const
1533struct kobj_ns_type_operations *class_dir_child_ns_type(struct kobject *kobj)
1534{
1535 struct class_dir *dir = to_class_dir(kobj);
1536 return dir->class->ns_type;
1537}
1538
1539static struct kobj_type class_dir_ktype = {
1540 .release = class_dir_release,
1541 .sysfs_ops = &kobj_sysfs_ops,
1542 .child_ns_type = class_dir_child_ns_type
1543};
1544
1545static struct kobject *
1546class_dir_create_and_add(struct class *class, struct kobject *parent_kobj)
1547{
1548 struct class_dir *dir;
1549 int retval;
1550
1551 dir = kzalloc(sizeof(*dir), GFP_KERNEL);
1552 if (!dir)
Tetsuo Handa84d0c272018-05-07 19:10:31 +09001553 return ERR_PTR(-ENOMEM);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001554
1555 dir->class = class;
1556 kobject_init(&dir->kobj, &class_dir_ktype);
1557
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001558 dir->kobj.kset = &class->p->glue_dirs;
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001559
1560 retval = kobject_add(&dir->kobj, parent_kobj, "%s", class->name);
1561 if (retval < 0) {
1562 kobject_put(&dir->kobj);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09001563 return ERR_PTR(retval);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001564 }
1565 return &dir->kobj;
1566}
1567
Yijing Wange4a60d12014-11-07 12:05:49 +08001568static DEFINE_MUTEX(gdp_mutex);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001569
Kay Sieversda231fd2007-11-21 17:29:15 +01001570static struct kobject *get_device_parent(struct device *dev,
1571 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +01001572{
Kay Sievers86406242007-03-14 03:25:56 +01001573 if (dev->class) {
1574 struct kobject *kobj = NULL;
1575 struct kobject *parent_kobj;
1576 struct kobject *k;
1577
Randy Dunlapead454f2010-09-24 14:36:49 -07001578#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -07001579 /* block disks show up in /sys/block */
Andi Kleene52eec12010-09-08 16:54:17 +02001580 if (sysfs_deprecated && dev->class == &block_class) {
Kay Sievers39aba962010-09-04 22:33:14 -07001581 if (parent && parent->class == &block_class)
1582 return &parent->kobj;
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001583 return &block_class.p->subsys.kobj;
Kay Sievers39aba962010-09-04 22:33:14 -07001584 }
Randy Dunlapead454f2010-09-24 14:36:49 -07001585#endif
Andi Kleene52eec12010-09-08 16:54:17 +02001586
Kay Sievers86406242007-03-14 03:25:56 +01001587 /*
1588 * If we have no parent, we live in "virtual".
Kay Sievers0f4dafc2007-12-19 01:40:42 +01001589 * Class-devices with a non class-device as parent, live
1590 * in a "glue" directory to prevent namespace collisions.
Kay Sievers86406242007-03-14 03:25:56 +01001591 */
1592 if (parent == NULL)
1593 parent_kobj = virtual_device_parent(dev);
Eric W. Biederman24b14422010-07-24 22:43:35 -07001594 else if (parent->class && !dev->class->ns_type)
Kay Sievers86406242007-03-14 03:25:56 +01001595 return &parent->kobj;
1596 else
1597 parent_kobj = &parent->kobj;
1598
Tejun Heo77d3d7c2010-02-05 17:57:02 +09001599 mutex_lock(&gdp_mutex);
1600
Kay Sievers86406242007-03-14 03:25:56 +01001601 /* find our class-directory at the parent and reference it */
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001602 spin_lock(&dev->class->p->glue_dirs.list_lock);
1603 list_for_each_entry(k, &dev->class->p->glue_dirs.list, entry)
Kay Sievers86406242007-03-14 03:25:56 +01001604 if (k->parent == parent_kobj) {
1605 kobj = kobject_get(k);
1606 break;
1607 }
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001608 spin_unlock(&dev->class->p->glue_dirs.list_lock);
Tejun Heo77d3d7c2010-02-05 17:57:02 +09001609 if (kobj) {
1610 mutex_unlock(&gdp_mutex);
Kay Sievers86406242007-03-14 03:25:56 +01001611 return kobj;
Tejun Heo77d3d7c2010-02-05 17:57:02 +09001612 }
Kay Sievers86406242007-03-14 03:25:56 +01001613
1614 /* or create a new class-directory at the parent device */
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001615 k = class_dir_create_and_add(dev->class, parent_kobj);
Kay Sievers0f4dafc2007-12-19 01:40:42 +01001616 /* do not emit an uevent for this simple "glue" directory */
Tejun Heo77d3d7c2010-02-05 17:57:02 +09001617 mutex_unlock(&gdp_mutex);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -08001618 return k;
Kay Sievers86406242007-03-14 03:25:56 +01001619 }
1620
Kay Sieversca22e562011-12-14 14:29:38 -08001621 /* subsystems can specify a default root directory for their devices */
1622 if (!parent && dev->bus && dev->bus->dev_root)
1623 return &dev->bus->dev_root->kobj;
1624
Kay Sievers86406242007-03-14 03:25:56 +01001625 if (parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001626 return &parent->kobj;
1627 return NULL;
1628}
Kay Sieversda231fd2007-11-21 17:29:15 +01001629
Ming Leicebf8fd2016-07-10 19:27:36 +08001630static inline bool live_in_glue_dir(struct kobject *kobj,
1631 struct device *dev)
1632{
1633 if (!kobj || !dev->class ||
1634 kobj->kset != &dev->class->p->glue_dirs)
1635 return false;
1636 return true;
1637}
1638
1639static inline struct kobject *get_glue_dir(struct device *dev)
1640{
1641 return dev->kobj.parent;
1642}
1643
1644/*
1645 * make sure cleaning up dir as the last step, we need to make
1646 * sure .release handler of kobject is run with holding the
1647 * global lock
1648 */
Cornelia Huck63b69712008-01-21 16:09:44 +01001649static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
Kay Sieversda231fd2007-11-21 17:29:15 +01001650{
Kay Sievers0f4dafc2007-12-19 01:40:42 +01001651 /* see if we live in a "glue" directory */
Ming Leicebf8fd2016-07-10 19:27:36 +08001652 if (!live_in_glue_dir(glue_dir, dev))
Kay Sieversda231fd2007-11-21 17:29:15 +01001653 return;
1654
Yijing Wange4a60d12014-11-07 12:05:49 +08001655 mutex_lock(&gdp_mutex);
Benjamin Herrenschmidt726e4102018-07-10 10:29:10 +10001656 if (!kobject_has_children(glue_dir))
1657 kobject_del(glue_dir);
Kay Sievers0f4dafc2007-12-19 01:40:42 +01001658 kobject_put(glue_dir);
Yijing Wange4a60d12014-11-07 12:05:49 +08001659 mutex_unlock(&gdp_mutex);
Kay Sieversda231fd2007-11-21 17:29:15 +01001660}
Cornelia Huck63b69712008-01-21 16:09:44 +01001661
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001662static int device_add_class_symlinks(struct device *dev)
1663{
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001664 struct device_node *of_node = dev_of_node(dev);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001665 int error;
1666
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001667 if (of_node) {
Rob Herring0c3c2342017-10-04 14:04:01 -05001668 error = sysfs_create_link(&dev->kobj, of_node_kobj(of_node), "of_node");
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001669 if (error)
1670 dev_warn(dev, "Error %d creating of_node link\n",error);
1671 /* An error here doesn't warrant bringing down the device */
1672 }
1673
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001674 if (!dev->class)
1675 return 0;
Kay Sieversda231fd2007-11-21 17:29:15 +01001676
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -07001677 error = sysfs_create_link(&dev->kobj,
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001678 &dev->class->p->subsys.kobj,
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001679 "subsystem");
1680 if (error)
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001681 goto out_devnode;
Kay Sieversda231fd2007-11-21 17:29:15 +01001682
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -08001683 if (dev->parent && device_is_not_partition(dev)) {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -07001684 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
1685 "device");
1686 if (error)
Kay Sievers39aba962010-09-04 22:33:14 -07001687 goto out_subsys;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001688 }
Kay Sievers39aba962010-09-04 22:33:14 -07001689
Randy Dunlapead454f2010-09-24 14:36:49 -07001690#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -07001691 /* /sys/block has directories and does not need symlinks */
Andi Kleene52eec12010-09-08 16:54:17 +02001692 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -07001693 return 0;
Randy Dunlapead454f2010-09-24 14:36:49 -07001694#endif
Kay Sievers39aba962010-09-04 22:33:14 -07001695
1696 /* link in the class directory pointing to the device */
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001697 error = sysfs_create_link(&dev->class->p->subsys.kobj,
Kay Sievers39aba962010-09-04 22:33:14 -07001698 &dev->kobj, dev_name(dev));
1699 if (error)
1700 goto out_device;
1701
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001702 return 0;
1703
Kay Sievers39aba962010-09-04 22:33:14 -07001704out_device:
1705 sysfs_remove_link(&dev->kobj, "device");
Kay Sieversda231fd2007-11-21 17:29:15 +01001706
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001707out_subsys:
1708 sysfs_remove_link(&dev->kobj, "subsystem");
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001709out_devnode:
1710 sysfs_remove_link(&dev->kobj, "of_node");
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001711 return error;
1712}
1713
1714static void device_remove_class_symlinks(struct device *dev)
1715{
Benjamin Herrenschmidt5590f312015-02-18 11:25:18 +11001716 if (dev_of_node(dev))
1717 sysfs_remove_link(&dev->kobj, "of_node");
1718
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001719 if (!dev->class)
1720 return;
Kay Sieversda231fd2007-11-21 17:29:15 +01001721
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -08001722 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +01001723 sysfs_remove_link(&dev->kobj, "device");
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001724 sysfs_remove_link(&dev->kobj, "subsystem");
Randy Dunlapead454f2010-09-24 14:36:49 -07001725#ifdef CONFIG_BLOCK
Andi Kleene52eec12010-09-08 16:54:17 +02001726 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -07001727 return;
Randy Dunlapead454f2010-09-24 14:36:49 -07001728#endif
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001729 sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev));
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001730}
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732/**
Stephen Rothwell413c2392008-05-30 10:16:40 +10001733 * dev_set_name - set a device name
1734 * @dev: device
Randy Dunlap46232362008-06-04 21:40:43 -07001735 * @fmt: format string for the device's name
Stephen Rothwell413c2392008-05-30 10:16:40 +10001736 */
1737int dev_set_name(struct device *dev, const char *fmt, ...)
1738{
1739 va_list vargs;
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001740 int err;
Stephen Rothwell413c2392008-05-30 10:16:40 +10001741
1742 va_start(vargs, fmt);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001743 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
Stephen Rothwell413c2392008-05-30 10:16:40 +10001744 va_end(vargs);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001745 return err;
Stephen Rothwell413c2392008-05-30 10:16:40 +10001746}
1747EXPORT_SYMBOL_GPL(dev_set_name);
1748
1749/**
Dan Williamse105b8b2008-04-21 10:51:07 -07001750 * device_to_dev_kobj - select a /sys/dev/ directory for the device
1751 * @dev: device
1752 *
1753 * By default we select char/ for new entries. Setting class->dev_obj
1754 * to NULL prevents an entry from being created. class->dev_kobj must
1755 * be set (or cleared) before any devices are registered to the class
1756 * otherwise device_create_sys_dev_entry() and
Peter Korsgaard0d4e293c2012-04-17 12:12:57 +02001757 * device_remove_sys_dev_entry() will disagree about the presence of
1758 * the link.
Dan Williamse105b8b2008-04-21 10:51:07 -07001759 */
1760static struct kobject *device_to_dev_kobj(struct device *dev)
1761{
1762 struct kobject *kobj;
1763
1764 if (dev->class)
1765 kobj = dev->class->dev_kobj;
1766 else
1767 kobj = sysfs_dev_char_kobj;
1768
1769 return kobj;
1770}
1771
1772static int device_create_sys_dev_entry(struct device *dev)
1773{
1774 struct kobject *kobj = device_to_dev_kobj(dev);
1775 int error = 0;
1776 char devt_str[15];
1777
1778 if (kobj) {
1779 format_dev_t(devt_str, dev->devt);
1780 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
1781 }
1782
1783 return error;
1784}
1785
1786static void device_remove_sys_dev_entry(struct device *dev)
1787{
1788 struct kobject *kobj = device_to_dev_kobj(dev);
1789 char devt_str[15];
1790
1791 if (kobj) {
1792 format_dev_t(devt_str, dev->devt);
1793 sysfs_remove_link(kobj, devt_str);
1794 }
1795}
1796
Shaokun Zhang46d3a032018-07-15 18:08:56 +08001797static int device_private_init(struct device *dev)
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07001798{
1799 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
1800 if (!dev->p)
1801 return -ENOMEM;
1802 dev->p->device = dev;
1803 klist_init(&dev->p->klist_children, klist_children_get,
1804 klist_children_put);
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -08001805 INIT_LIST_HEAD(&dev->p->deferred_probe);
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07001806 return 0;
1807}
1808
Dan Williamse105b8b2008-04-21 10:51:07 -07001809/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001810 * device_add - add device to device hierarchy.
1811 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001813 * This is part 2 of device_register(), though may be called
1814 * separately _iff_ device_initialize() has been called separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 *
Cornelia Huck57394112008-09-03 18:26:40 +02001816 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001817 * to the global and sibling lists for the device, then
1818 * adds it to the other relevant subsystems of the driver model.
Cornelia Huck57394112008-09-03 18:26:40 +02001819 *
Alan Sternb10d5ef2012-01-17 11:39:00 -05001820 * Do not call this routine or device_register() more than once for
1821 * any device structure. The driver model core is not designed to work
1822 * with devices that get unregistered and then spring back to life.
1823 * (Among other things, it's very hard to guarantee that all references
1824 * to the previous incarnation of @dev have been dropped.) Allocate
1825 * and register a fresh new struct device instead.
1826 *
Cornelia Huck57394112008-09-03 18:26:40 +02001827 * NOTE: _Never_ directly free @dev after calling this function, even
1828 * if it returned an error! Always use put_device() to give up your
1829 * reference instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 */
1831int device_add(struct device *dev)
1832{
Viresh Kumar35dbf4e2017-03-17 12:24:22 +05301833 struct device *parent;
Kay Sieversca22e562011-12-14 14:29:38 -08001834 struct kobject *kobj;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001835 struct class_interface *class_intf;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001836 int error = -EINVAL;
Ming Leicebf8fd2016-07-10 19:27:36 +08001837 struct kobject *glue_dir = NULL;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 dev = get_device(dev);
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001840 if (!dev)
1841 goto done;
1842
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08001843 if (!dev->p) {
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07001844 error = device_private_init(dev);
1845 if (error)
1846 goto done;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08001847 }
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -08001848
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001849 /*
1850 * for statically allocated devices, which should all be converted
1851 * some day, we need to initialize the name. We prevent reading back
1852 * the name, and force the use of dev_name()
1853 */
1854 if (dev->init_name) {
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07001855 dev_set_name(dev, "%s", dev->init_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001856 dev->init_name = NULL;
1857 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001858
Kay Sieversca22e562011-12-14 14:29:38 -08001859 /* subsystems can specify simple device enumeration */
1860 if (!dev_name(dev) && dev->bus && dev->bus->dev_name)
1861 dev_set_name(dev, "%s%u", dev->bus->dev_name, dev->id);
1862
Thomas Gleixnere6309e72009-12-10 19:32:49 +00001863 if (!dev_name(dev)) {
1864 error = -EINVAL;
Kay Sievers5c8563d2009-05-28 14:24:07 -07001865 goto name_error;
Thomas Gleixnere6309e72009-12-10 19:32:49 +00001866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001868 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -07001869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 parent = get_device(dev->parent);
Kay Sieversca22e562011-12-14 14:29:38 -08001871 kobj = get_device_parent(dev, parent);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09001872 if (IS_ERR(kobj)) {
1873 error = PTR_ERR(kobj);
1874 goto parent_error;
1875 }
Kay Sieversca22e562011-12-14 14:29:38 -08001876 if (kobj)
1877 dev->kobj.parent = kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Yinghai Lu0d358f22008-02-19 03:20:41 -08001879 /* use parent numa_node */
Zhen Lei56f2de82015-08-25 12:08:22 +08001880 if (parent && (dev_to_node(dev) == NUMA_NO_NODE))
Yinghai Lu0d358f22008-02-19 03:20:41 -08001881 set_dev_node(dev, dev_to_node(parent));
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 /* first, register with generic layer. */
Kay Sievers8a577ff2009-04-18 15:05:45 -07001884 /* we require the name to be set before, and pass NULL */
1885 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
Ming Leicebf8fd2016-07-10 19:27:36 +08001886 if (error) {
1887 glue_dir = get_glue_dir(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 goto Error;
Ming Leicebf8fd2016-07-10 19:27:36 +08001889 }
Kay Sieversa7fd6702005-10-01 14:49:43 +02001890
Brian Walsh37022642006-08-14 22:43:19 -07001891 /* notify platform of device entry */
1892 if (platform_notify)
1893 platform_notify(dev);
1894
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001895 error = device_create_file(dev, &dev_attr_uevent);
Cornelia Hucka306eea2006-09-22 11:37:13 +02001896 if (error)
1897 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +02001898
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001899 error = device_add_class_symlinks(dev);
1900 if (error)
1901 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -07001902 error = device_add_attrs(dev);
1903 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001904 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -07001905 error = bus_add_device(dev);
1906 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 goto BusError;
Alan Stern3b98aea2008-08-07 13:06:12 -04001908 error = dpm_sysfs_add(dev);
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +01001909 if (error)
Alan Stern3b98aea2008-08-07 13:06:12 -04001910 goto DPMError;
1911 device_pm_add(dev);
Alan Sternec0676ee2008-12-05 14:10:31 -05001912
Sergey Klyaus0cd75042014-10-08 11:31:54 +04001913 if (MAJOR(dev->devt)) {
1914 error = device_create_file(dev, &dev_attr_dev);
1915 if (error)
1916 goto DevAttrError;
1917
1918 error = device_create_sys_dev_entry(dev);
1919 if (error)
1920 goto SysEntryError;
1921
1922 devtmpfs_create_node(dev);
1923 }
1924
Alan Sternec0676ee2008-12-05 14:10:31 -05001925 /* Notify clients of device addition. This call must come
majianpeng268863f2012-01-11 15:12:06 +00001926 * after dpm_sysfs_add() and before kobject_uevent().
Alan Sternec0676ee2008-12-05 14:10:31 -05001927 */
1928 if (dev->bus)
1929 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
1930 BUS_NOTIFY_ADD_DEVICE, dev);
1931
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +02001932 kobject_uevent(&dev->kobj, KOBJ_ADD);
Alan Stern2023c612009-07-30 15:27:18 -04001933 bus_probe_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001935 klist_add_tail(&dev->p->knode_parent,
1936 &parent->p->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07001938 if (dev->class) {
Kay Sieversca22e562011-12-14 14:29:38 -08001939 mutex_lock(&dev->class->p->mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001940 /* tie the class to the device */
Tejun Heo5a3ceb82008-08-25 19:50:19 +02001941 klist_add_tail(&dev->knode_class,
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001942 &dev->class->p->klist_devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001943
1944 /* notify any interfaces that the device is here */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07001945 list_for_each_entry(class_intf,
Kay Sieversca22e562011-12-14 14:29:38 -08001946 &dev->class->p->interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001947 if (class_intf->add_dev)
1948 class_intf->add_dev(dev, class_intf);
Kay Sieversca22e562011-12-14 14:29:38 -08001949 mutex_unlock(&dev->class->p->mutex);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07001950 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001951done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 put_device(dev);
1953 return error;
Sergey Klyaus0cd75042014-10-08 11:31:54 +04001954 SysEntryError:
1955 if (MAJOR(dev->devt))
1956 device_remove_file(dev, &dev_attr_dev);
1957 DevAttrError:
1958 device_pm_remove(dev);
1959 dpm_sysfs_remove(dev);
Alan Stern3b98aea2008-08-07 13:06:12 -04001960 DPMError:
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +01001961 bus_remove_device(dev);
1962 BusError:
James Simmons82f0cf92007-02-21 17:44:51 +00001963 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001964 AttrsError:
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001965 device_remove_class_symlinks(dev);
1966 SymlinkError:
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07001967 device_remove_file(dev, &dev_attr_uevent);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001968 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +01001969 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Ming Leicebf8fd2016-07-10 19:27:36 +08001970 glue_dir = get_glue_dir(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 kobject_del(&dev->kobj);
1972 Error:
Ming Leicebf8fd2016-07-10 19:27:36 +08001973 cleanup_glue_dir(dev, glue_dir);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09001974parent_error:
Markus Elfring5f0163a2015-02-05 11:48:26 +01001975 put_device(parent);
Kay Sievers5c8563d2009-05-28 14:24:07 -07001976name_error:
1977 kfree(dev->p);
1978 dev->p = NULL;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001979 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980}
David Graham White86df2682013-07-21 20:41:14 -04001981EXPORT_SYMBOL_GPL(device_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001984 * device_register - register a device with the system.
1985 * @dev: pointer to the device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001987 * This happens in two clean steps - initialize the device
1988 * and add it to the system. The two steps can be called
1989 * separately, but this is the easiest and most common.
1990 * I.e. you should only call the two helpers separately if
1991 * have a clearly defined need to use and refcount the device
1992 * before it is added to the hierarchy.
Cornelia Huck57394112008-09-03 18:26:40 +02001993 *
Alan Sternb10d5ef2012-01-17 11:39:00 -05001994 * For more information, see the kerneldoc for device_initialize()
1995 * and device_add().
1996 *
Cornelia Huck57394112008-09-03 18:26:40 +02001997 * NOTE: _Never_ directly free @dev after calling this function, even
1998 * if it returned an error! Always use put_device() to give up the
1999 * reference initialized in this function instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001int device_register(struct device *dev)
2002{
2003 device_initialize(dev);
2004 return device_add(dev);
2005}
David Graham White86df2682013-07-21 20:41:14 -04002006EXPORT_SYMBOL_GPL(device_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002009 * get_device - increment reference count for device.
2010 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002012 * This simply forwards the call to kobject_get(), though
2013 * we do take care to provide for the case that we get a NULL
2014 * pointer passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002016struct device *get_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +02002018 return dev ? kobj_to_dev(kobject_get(&dev->kobj)) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
David Graham White86df2682013-07-21 20:41:14 -04002020EXPORT_SYMBOL_GPL(get_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002023 * put_device - decrement reference count.
2024 * @dev: device in question.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002026void put_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02002028 /* might_sleep(); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (dev)
2030 kobject_put(&dev->kobj);
2031}
David Graham White86df2682013-07-21 20:41:14 -04002032EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002035 * device_del - delete device from system.
2036 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002038 * This is the first part of the device unregistration
2039 * sequence. This removes the device from the lists we control
2040 * from here, has it removed from the other driver model
2041 * subsystems it was added to in device_add(), and removes it
2042 * from the kobject hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002044 * NOTE: this should be called manually _iff_ device_add() was
2045 * also called manually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002047void device_del(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002049 struct device *parent = dev->parent;
Ming Leicebf8fd2016-07-10 19:27:36 +08002050 struct kobject *glue_dir = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02002051 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Alan Sternec0676ee2008-12-05 14:10:31 -05002053 /* Notify clients of device removal. This call must come
2054 * before dpm_sysfs_remove().
2055 */
2056 if (dev->bus)
2057 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
2058 BUS_NOTIFY_DEL_DEVICE, dev);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +01002059
Alan Stern3b98aea2008-08-07 13:06:12 -04002060 dpm_sysfs_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002062 klist_del(&dev->p->knode_parent);
Dan Williamse105b8b2008-04-21 10:51:07 -07002063 if (MAJOR(dev->devt)) {
Kay Sievers2b2af542009-04-30 15:23:42 +02002064 devtmpfs_delete_node(dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07002065 device_remove_sys_dev_entry(dev);
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002066 device_remove_file(dev, &dev_attr_dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07002067 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02002068 if (dev->class) {
Kay Sieversda231fd2007-11-21 17:29:15 +01002069 device_remove_class_symlinks(dev);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02002070
Kay Sieversca22e562011-12-14 14:29:38 -08002071 mutex_lock(&dev->class->p->mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02002072 /* notify any interfaces that the device is now gone */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07002073 list_for_each_entry(class_intf,
Kay Sieversca22e562011-12-14 14:29:38 -08002074 &dev->class->p->interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02002075 if (class_intf->remove_dev)
2076 class_intf->remove_dev(dev, class_intf);
2077 /* remove the device from the class list */
Tejun Heo5a3ceb82008-08-25 19:50:19 +02002078 klist_del(&dev->knode_class);
Kay Sieversca22e562011-12-14 14:29:38 -08002079 mutex_unlock(&dev->class->p->mutex);
Kay Sieversb9d9c822006-06-15 15:31:56 +02002080 }
Greg Kroah-Hartmanc5e064a2013-08-23 17:07:26 -07002081 device_remove_file(dev, &dev_attr_uevent);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07002082 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08002083 bus_remove_device(dev);
LongX Zhang4b6d1f122012-10-25 00:21:28 +02002084 device_pm_remove(dev);
Grant Likelyd1c34142012-03-05 08:47:41 -07002085 driver_deferred_probe_del(dev);
Lukas Wunner478573c2016-07-28 02:25:41 +02002086 device_remove_properties(dev);
Jeffy Chen2ec16152017-10-20 20:01:01 +08002087 device_links_purge(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089 /* Notify the platform of the removal, in case they
2090 * need to do anything...
2091 */
2092 if (platform_notify_remove)
2093 platform_notify_remove(dev);
Joerg Roedel599bad32014-09-30 13:02:02 +02002094 if (dev->bus)
2095 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
2096 BUS_NOTIFY_REMOVED_DEVICE, dev);
Kay Sievers312c0042005-11-16 09:00:00 +01002097 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Ming Leicebf8fd2016-07-10 19:27:36 +08002098 glue_dir = get_glue_dir(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 kobject_del(&dev->kobj);
Ming Leicebf8fd2016-07-10 19:27:36 +08002100 cleanup_glue_dir(dev, glue_dir);
Kay Sieversda231fd2007-11-21 17:29:15 +01002101 put_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102}
David Graham White86df2682013-07-21 20:41:14 -04002103EXPORT_SYMBOL_GPL(device_del);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002106 * device_unregister - unregister device from system.
2107 * @dev: device going away.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002109 * We do this in two parts, like we do device_register(). First,
2110 * we remove it from all the subsystems with device_del(), then
2111 * we decrement the reference count via put_device(). If that
2112 * is the final reference count, the device will be cleaned up
2113 * via device_release() above. Otherwise, the structure will
2114 * stick around until the final reference to the device is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002116void device_unregister(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01002118 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 device_del(dev);
2120 put_device(dev);
2121}
David Graham White86df2682013-07-21 20:41:14 -04002122EXPORT_SYMBOL_GPL(device_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Andy Shevchenko3d060ae2015-07-27 18:04:00 +03002124static struct device *prev_device(struct klist_iter *i)
2125{
2126 struct klist_node *n = klist_prev(i);
2127 struct device *dev = NULL;
2128 struct device_private *p;
2129
2130 if (n) {
2131 p = to_device_private_parent(n);
2132 dev = p->device;
2133 }
2134 return dev;
2135}
2136
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002137static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08002138{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002139 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002140 struct device *dev = NULL;
2141 struct device_private *p;
2142
2143 if (n) {
2144 p = to_device_private_parent(n);
2145 dev = p->device;
2146 }
2147 return dev;
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08002148}
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150/**
Kay Sieverse454cea2009-09-18 23:01:12 +02002151 * device_get_devnode - path of device node file
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002152 * @dev: device
Kay Sieverse454cea2009-09-18 23:01:12 +02002153 * @mode: returned file access mode
Kay Sievers3c2670e2013-04-06 09:56:00 -07002154 * @uid: returned file owner
2155 * @gid: returned file group
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002156 * @tmp: possibly allocated string
2157 *
2158 * Return the relative path of a possible device node.
2159 * Non-default names may need to allocate a memory to compose
2160 * a name. This memory is returned in tmp and needs to be
2161 * freed by the caller.
2162 */
Kay Sieverse454cea2009-09-18 23:01:12 +02002163const char *device_get_devnode(struct device *dev,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07002164 umode_t *mode, kuid_t *uid, kgid_t *gid,
Kay Sievers3c2670e2013-04-06 09:56:00 -07002165 const char **tmp)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002166{
2167 char *s;
2168
2169 *tmp = NULL;
2170
2171 /* the device type may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02002172 if (dev->type && dev->type->devnode)
Kay Sievers3c2670e2013-04-06 09:56:00 -07002173 *tmp = dev->type->devnode(dev, mode, uid, gid);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002174 if (*tmp)
2175 return *tmp;
2176
2177 /* the class may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02002178 if (dev->class && dev->class->devnode)
2179 *tmp = dev->class->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002180 if (*tmp)
2181 return *tmp;
2182
2183 /* return name without allocation, tmp == NULL */
2184 if (strchr(dev_name(dev), '!') == NULL)
2185 return dev_name(dev);
2186
2187 /* replace '!' in the name with '/' */
Rasmus Villemoesa29fd612015-06-25 15:02:33 -07002188 s = kstrdup(dev_name(dev), GFP_KERNEL);
2189 if (!s)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002190 return NULL;
Rasmus Villemoesa29fd612015-06-25 15:02:33 -07002191 strreplace(s, '!', '/');
2192 return *tmp = s;
Kay Sievers6fcf53a2009-04-30 15:23:42 +02002193}
2194
2195/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002196 * device_for_each_child - device child iterator.
2197 * @parent: parent struct device.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002198 * @fn: function to be called for each device.
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -04002199 * @data: data for the callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002201 * Iterate over @parent's child devices, and call @fn for each,
2202 * passing it @data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002204 * We check the return of @fn each time. If it returns anything
2205 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002207int device_for_each_child(struct device *parent, void *data,
2208 int (*fn)(struct device *dev, void *data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08002210 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002211 struct device *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 int error = 0;
2213
Greg Kroah-Hartman014c90db2009-04-15 16:00:12 -07002214 if (!parent->p)
2215 return 0;
2216
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002217 klist_iter_init(&parent->p->klist_children, &i);
Gimcuan Hui93ead7c2017-11-11 05:52:54 +00002218 while (!error && (child = next_device(&i)))
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08002219 error = fn(child, data);
2220 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 return error;
2222}
David Graham White86df2682013-07-21 20:41:14 -04002223EXPORT_SYMBOL_GPL(device_for_each_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Cornelia Huck5ab69982006-11-16 15:42:07 +01002225/**
Andy Shevchenko3d060ae2015-07-27 18:04:00 +03002226 * device_for_each_child_reverse - device child iterator in reversed order.
2227 * @parent: parent struct device.
2228 * @fn: function to be called for each device.
2229 * @data: data for the callback.
2230 *
2231 * Iterate over @parent's child devices, and call @fn for each,
2232 * passing it @data.
2233 *
2234 * We check the return of @fn each time. If it returns anything
2235 * other than 0, we break out and return that value.
2236 */
2237int device_for_each_child_reverse(struct device *parent, void *data,
2238 int (*fn)(struct device *dev, void *data))
2239{
2240 struct klist_iter i;
2241 struct device *child;
2242 int error = 0;
2243
2244 if (!parent->p)
2245 return 0;
2246
2247 klist_iter_init(&parent->p->klist_children, &i);
2248 while ((child = prev_device(&i)) && !error)
2249 error = fn(child, data);
2250 klist_iter_exit(&i);
2251 return error;
2252}
2253EXPORT_SYMBOL_GPL(device_for_each_child_reverse);
2254
2255/**
Cornelia Huck5ab69982006-11-16 15:42:07 +01002256 * device_find_child - device iterator for locating a particular device.
2257 * @parent: parent struct device
Cornelia Huck5ab69982006-11-16 15:42:07 +01002258 * @match: Callback function to check device
Robert P. J. Dayf8878dc2013-06-01 20:17:34 -04002259 * @data: Data to pass to match function
Cornelia Huck5ab69982006-11-16 15:42:07 +01002260 *
2261 * This is similar to the device_for_each_child() function above, but it
2262 * returns a reference to a device that is 'found' for later use, as
2263 * determined by the @match callback.
2264 *
2265 * The callback should return 0 if the device doesn't match and non-zero
2266 * if it does. If the callback returns non-zero and a reference to the
2267 * current device can be obtained, this function will return to the caller
2268 * and not iterate over any more devices.
Federico Vagaa4e24002013-04-15 11:18:11 +02002269 *
2270 * NOTE: you will need to drop the reference with put_device() after use.
Cornelia Huck5ab69982006-11-16 15:42:07 +01002271 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002272struct device *device_find_child(struct device *parent, void *data,
2273 int (*match)(struct device *dev, void *data))
Cornelia Huck5ab69982006-11-16 15:42:07 +01002274{
2275 struct klist_iter i;
2276 struct device *child;
2277
2278 if (!parent)
2279 return NULL;
2280
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002281 klist_iter_init(&parent->p->klist_children, &i);
Cornelia Huck5ab69982006-11-16 15:42:07 +01002282 while ((child = next_device(&i)))
2283 if (match(child, data) && get_device(child))
2284 break;
2285 klist_iter_exit(&i);
2286 return child;
2287}
David Graham White86df2682013-07-21 20:41:14 -04002288EXPORT_SYMBOL_GPL(device_find_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01002289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290int __init devices_init(void)
2291{
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06002292 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
2293 if (!devices_kset)
2294 return -ENOMEM;
Dan Williamse105b8b2008-04-21 10:51:07 -07002295 dev_kobj = kobject_create_and_add("dev", NULL);
2296 if (!dev_kobj)
2297 goto dev_kobj_err;
2298 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
2299 if (!sysfs_dev_block_kobj)
2300 goto block_kobj_err;
2301 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
2302 if (!sysfs_dev_char_kobj)
2303 goto char_kobj_err;
2304
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06002305 return 0;
Dan Williamse105b8b2008-04-21 10:51:07 -07002306
2307 char_kobj_err:
2308 kobject_put(sysfs_dev_block_kobj);
2309 block_kobj_err:
2310 kobject_put(dev_kobj);
2311 dev_kobj_err:
2312 kset_unregister(devices_kset);
2313 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314}
2315
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +02002316static int device_check_offline(struct device *dev, void *not_used)
2317{
2318 int ret;
2319
2320 ret = device_for_each_child(dev, NULL, device_check_offline);
2321 if (ret)
2322 return ret;
2323
2324 return device_supports_offline(dev) && !dev->offline ? -EBUSY : 0;
2325}
2326
2327/**
2328 * device_offline - Prepare the device for hot-removal.
2329 * @dev: Device to be put offline.
2330 *
2331 * Execute the device bus type's .offline() callback, if present, to prepare
2332 * the device for a subsequent hot-removal. If that succeeds, the device must
2333 * not be used until either it is removed or its bus type's .online() callback
2334 * is executed.
2335 *
2336 * Call under device_hotplug_lock.
2337 */
2338int device_offline(struct device *dev)
2339{
2340 int ret;
2341
2342 if (dev->offline_disabled)
2343 return -EPERM;
2344
2345 ret = device_for_each_child(dev, NULL, device_check_offline);
2346 if (ret)
2347 return ret;
2348
2349 device_lock(dev);
2350 if (device_supports_offline(dev)) {
2351 if (dev->offline) {
2352 ret = 1;
2353 } else {
2354 ret = dev->bus->offline(dev);
2355 if (!ret) {
2356 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
2357 dev->offline = true;
2358 }
2359 }
2360 }
2361 device_unlock(dev);
2362
2363 return ret;
2364}
2365
2366/**
2367 * device_online - Put the device back online after successful device_offline().
2368 * @dev: Device to be put back online.
2369 *
2370 * If device_offline() has been successfully executed for @dev, but the device
2371 * has not been removed subsequently, execute its bus type's .online() callback
2372 * to indicate that the device can be used again.
2373 *
2374 * Call under device_hotplug_lock.
2375 */
2376int device_online(struct device *dev)
2377{
2378 int ret = 0;
2379
2380 device_lock(dev);
2381 if (device_supports_offline(dev)) {
2382 if (dev->offline) {
2383 ret = dev->bus->online(dev);
2384 if (!ret) {
2385 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
2386 dev->offline = false;
2387 }
2388 } else {
2389 ret = 1;
2390 }
2391 }
2392 device_unlock(dev);
2393
2394 return ret;
2395}
2396
Karthigan Srinivasan7f100d12011-04-18 16:16:52 -05002397struct root_device {
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002398 struct device dev;
2399 struct module *owner;
2400};
2401
Josh Triplett93058422012-11-18 21:27:55 -08002402static inline struct root_device *to_root_device(struct device *d)
Ferenc Wagner481e2072011-01-07 15:17:47 +01002403{
2404 return container_of(d, struct root_device, dev);
2405}
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002406
2407static void root_device_release(struct device *dev)
2408{
2409 kfree(to_root_device(dev));
2410}
2411
2412/**
2413 * __root_device_register - allocate and register a root device
2414 * @name: root device name
2415 * @owner: owner module of the root device, usually THIS_MODULE
2416 *
2417 * This function allocates a root device and registers it
2418 * using device_register(). In order to free the returned
2419 * device, use root_device_unregister().
2420 *
2421 * Root devices are dummy devices which allow other devices
2422 * to be grouped under /sys/devices. Use this function to
2423 * allocate a root device and then use it as the parent of
2424 * any device which should appear under /sys/devices/{name}
2425 *
2426 * The /sys/devices/{name} directory will also contain a
2427 * 'module' symlink which points to the @owner directory
2428 * in sysfs.
2429 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02002430 * Returns &struct device pointer on success, or ERR_PTR() on error.
2431 *
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002432 * Note: You probably want to use root_device_register().
2433 */
2434struct device *__root_device_register(const char *name, struct module *owner)
2435{
2436 struct root_device *root;
2437 int err = -ENOMEM;
2438
2439 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
2440 if (!root)
2441 return ERR_PTR(err);
2442
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07002443 err = dev_set_name(&root->dev, "%s", name);
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002444 if (err) {
2445 kfree(root);
2446 return ERR_PTR(err);
2447 }
2448
2449 root->dev.release = root_device_release;
2450
2451 err = device_register(&root->dev);
2452 if (err) {
2453 put_device(&root->dev);
2454 return ERR_PTR(err);
2455 }
2456
Christoph Egger1d9e8822010-05-17 16:57:58 +02002457#ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002458 if (owner) {
2459 struct module_kobject *mk = &owner->mkobj;
2460
2461 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
2462 if (err) {
2463 device_unregister(&root->dev);
2464 return ERR_PTR(err);
2465 }
2466 root->owner = owner;
2467 }
2468#endif
2469
2470 return &root->dev;
2471}
2472EXPORT_SYMBOL_GPL(__root_device_register);
2473
2474/**
2475 * root_device_unregister - unregister and free a root device
Randy Dunlap7cbcf222009-01-20 16:29:13 -08002476 * @dev: device going away
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00002477 *
2478 * This function unregisters and cleans up a device that was created by
2479 * root_device_register().
2480 */
2481void root_device_unregister(struct device *dev)
2482{
2483 struct root_device *root = to_root_device(dev);
2484
2485 if (root->owner)
2486 sysfs_remove_link(&root->dev.kobj, "module");
2487
2488 device_unregister(dev);
2489}
2490EXPORT_SYMBOL_GPL(root_device_unregister);
2491
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002492
2493static void device_create_release(struct device *dev)
2494{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01002495 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002496 kfree(dev);
2497}
2498
Mathieu Malaterre6a8b55d2018-05-05 21:57:41 +02002499static __printf(6, 0) struct device *
Guenter Roeck39ef3112013-07-14 16:05:57 -07002500device_create_groups_vargs(struct class *class, struct device *parent,
2501 dev_t devt, void *drvdata,
2502 const struct attribute_group **groups,
2503 const char *fmt, va_list args)
2504{
2505 struct device *dev = NULL;
2506 int retval = -ENODEV;
2507
2508 if (class == NULL || IS_ERR(class))
2509 goto error;
2510
2511 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2512 if (!dev) {
2513 retval = -ENOMEM;
2514 goto error;
2515 }
2516
David Herrmannbbc780f2013-11-21 20:15:48 +01002517 device_initialize(dev);
Guenter Roeck39ef3112013-07-14 16:05:57 -07002518 dev->devt = devt;
2519 dev->class = class;
2520 dev->parent = parent;
2521 dev->groups = groups;
2522 dev->release = device_create_release;
2523 dev_set_drvdata(dev, drvdata);
2524
2525 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
2526 if (retval)
2527 goto error;
2528
David Herrmannbbc780f2013-11-21 20:15:48 +01002529 retval = device_add(dev);
Guenter Roeck39ef3112013-07-14 16:05:57 -07002530 if (retval)
2531 goto error;
2532
2533 return dev;
2534
2535error:
2536 put_device(dev);
2537 return ERR_PTR(retval);
2538}
2539
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002540/**
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002541 * device_create_vargs - creates a device and registers it with sysfs
2542 * @class: pointer to the struct class that this device should be registered to
2543 * @parent: pointer to the parent struct device of this new device, if any
2544 * @devt: the dev_t for the char device to be added
2545 * @drvdata: the data to be added to the device for callbacks
2546 * @fmt: string for the device's name
2547 * @args: va_list for the device's name
2548 *
2549 * This function can be used by char device classes. A struct device
2550 * will be created in sysfs, registered to the specified class.
2551 *
2552 * A "dev" file will be created, showing the dev_t for the device, if
2553 * the dev_t is not 0,0.
2554 * If a pointer to a parent struct device is passed in, the newly created
2555 * struct device will be a child of that device in sysfs.
2556 * The pointer to the struct device will be returned from the call.
2557 * Any further sysfs files that might be required can be created using this
2558 * pointer.
2559 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02002560 * Returns &struct device pointer on success, or ERR_PTR() on error.
2561 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002562 * Note: the struct class passed to this function must have previously
2563 * been created with a call to class_create().
2564 */
2565struct device *device_create_vargs(struct class *class, struct device *parent,
2566 dev_t devt, void *drvdata, const char *fmt,
2567 va_list args)
2568{
Guenter Roeck39ef3112013-07-14 16:05:57 -07002569 return device_create_groups_vargs(class, parent, devt, drvdata, NULL,
2570 fmt, args);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002571}
2572EXPORT_SYMBOL_GPL(device_create_vargs);
2573
2574/**
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07002575 * device_create - creates a device and registers it with sysfs
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002576 * @class: pointer to the struct class that this device should be registered to
2577 * @parent: pointer to the parent struct device of this new device, if any
2578 * @devt: the dev_t for the char device to be added
2579 * @drvdata: the data to be added to the device for callbacks
2580 * @fmt: string for the device's name
2581 *
2582 * This function can be used by char device classes. A struct device
2583 * will be created in sysfs, registered to the specified class.
2584 *
2585 * A "dev" file will be created, showing the dev_t for the device, if
2586 * the dev_t is not 0,0.
2587 * If a pointer to a parent struct device is passed in, the newly created
2588 * struct device will be a child of that device in sysfs.
2589 * The pointer to the struct device will be returned from the call.
2590 * Any further sysfs files that might be required can be created using this
2591 * pointer.
2592 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02002593 * Returns &struct device pointer on success, or ERR_PTR() on error.
2594 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002595 * Note: the struct class passed to this function must have previously
2596 * been created with a call to class_create().
2597 */
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07002598struct device *device_create(struct class *class, struct device *parent,
2599 dev_t devt, void *drvdata, const char *fmt, ...)
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002600{
2601 va_list vargs;
2602 struct device *dev;
2603
2604 va_start(vargs, fmt);
2605 dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
2606 va_end(vargs);
2607 return dev;
2608}
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07002609EXPORT_SYMBOL_GPL(device_create);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07002610
Guenter Roeck39ef3112013-07-14 16:05:57 -07002611/**
2612 * device_create_with_groups - creates a device and registers it with sysfs
2613 * @class: pointer to the struct class that this device should be registered to
2614 * @parent: pointer to the parent struct device of this new device, if any
2615 * @devt: the dev_t for the char device to be added
2616 * @drvdata: the data to be added to the device for callbacks
2617 * @groups: NULL-terminated list of attribute groups to be created
2618 * @fmt: string for the device's name
2619 *
2620 * This function can be used by char device classes. A struct device
2621 * will be created in sysfs, registered to the specified class.
2622 * Additional attributes specified in the groups parameter will also
2623 * be created automatically.
2624 *
2625 * A "dev" file will be created, showing the dev_t for the device, if
2626 * the dev_t is not 0,0.
2627 * If a pointer to a parent struct device is passed in, the newly created
2628 * struct device will be a child of that device in sysfs.
2629 * The pointer to the struct device will be returned from the call.
2630 * Any further sysfs files that might be required can be created using this
2631 * pointer.
2632 *
2633 * Returns &struct device pointer on success, or ERR_PTR() on error.
2634 *
2635 * Note: the struct class passed to this function must have previously
2636 * been created with a call to class_create().
2637 */
2638struct device *device_create_with_groups(struct class *class,
2639 struct device *parent, dev_t devt,
2640 void *drvdata,
2641 const struct attribute_group **groups,
2642 const char *fmt, ...)
2643{
2644 va_list vargs;
2645 struct device *dev;
2646
2647 va_start(vargs, fmt);
2648 dev = device_create_groups_vargs(class, parent, devt, drvdata, groups,
2649 fmt, vargs);
2650 va_end(vargs);
2651 return dev;
2652}
2653EXPORT_SYMBOL_GPL(device_create_with_groups);
2654
Michał Mirosław9f3b7952013-02-01 20:40:17 +01002655static int __match_devt(struct device *dev, const void *data)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002656{
Michał Mirosław9f3b7952013-02-01 20:40:17 +01002657 const dev_t *devt = data;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002658
Dave Youngcd354492008-01-28 16:56:11 +08002659 return dev->devt == *devt;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01002660}
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002661
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01002662/**
2663 * device_destroy - removes a device that was created with device_create()
2664 * @class: pointer to the struct class that this device was registered with
2665 * @devt: the dev_t of the device that was previously registered
2666 *
2667 * This call unregisters and cleans up a device that was created with a
2668 * call to device_create().
2669 */
2670void device_destroy(struct class *class, dev_t devt)
2671{
2672 struct device *dev;
2673
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04002674 dev = class_find_device(class, NULL, &devt, __match_devt);
Dave Youngcd354492008-01-28 16:56:11 +08002675 if (dev) {
2676 put_device(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002677 device_unregister(dev);
Dave Youngcd354492008-01-28 16:56:11 +08002678 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07002679}
2680EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002681
2682/**
2683 * device_rename - renames a device
2684 * @dev: the pointer to the struct device to be renamed
2685 * @new_name: the new name of the device
Eric W. Biederman030c1d22008-05-08 14:41:00 -07002686 *
2687 * It is the responsibility of the caller to provide mutual
2688 * exclusion between two different calls of device_rename
2689 * on the same device to ensure that new_name is valid and
2690 * won't conflict with other devices.
Michael Ellermanc6c0ac62010-11-25 09:44:07 +11002691 *
Timur Tabia5462512010-12-13 14:08:52 -06002692 * Note: Don't call this function. Currently, the networking layer calls this
2693 * function, but that will change. The following text from Kay Sievers offers
2694 * some insight:
2695 *
2696 * Renaming devices is racy at many levels, symlinks and other stuff are not
2697 * replaced atomically, and you get a "move" uevent, but it's not easy to
2698 * connect the event to the old and new device. Device nodes are not renamed at
2699 * all, there isn't even support for that in the kernel now.
2700 *
2701 * In the meantime, during renaming, your target name might be taken by another
2702 * driver, creating conflicts. Or the old name is taken directly after you
2703 * renamed it -- then you get events for the same DEVPATH, before you even see
2704 * the "move" event. It's just a mess, and nothing new should ever rely on
2705 * kernel device renaming. Besides that, it's not even implemented now for
2706 * other things than (driver-core wise very simple) network devices.
2707 *
2708 * We are currently about to change network renaming in udev to completely
2709 * disallow renaming of devices in the same namespace as the kernel uses,
2710 * because we can't solve the problems properly, that arise with swapping names
2711 * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
2712 * be allowed to some other name than eth[0-9]*, for the aforementioned
2713 * reasons.
2714 *
2715 * Make up a "real" name in the driver before you register anything, or add
2716 * some other attributes for userspace to find the device, or use udev to add
2717 * symlinks -- but never rename kernel devices later, it's a complete mess. We
2718 * don't even want to get into that and try to implement the missing pieces in
2719 * the core. We really have other pieces to fix in the driver core mess. :)
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002720 */
Johannes Berg6937e8f2010-08-05 17:38:18 +02002721int device_rename(struct device *dev, const char *new_name)
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002722{
Tejun Heo4b30ee52013-09-11 22:29:06 -04002723 struct kobject *kobj = &dev->kobj;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002724 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002725 int error;
2726
2727 dev = get_device(dev);
2728 if (!dev)
2729 return -EINVAL;
2730
ethan.zhao69df7532013-10-13 22:12:35 +08002731 dev_dbg(dev, "renaming to %s\n", new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002732
Kay Sievers1fa5ae82009-01-25 15:17:37 +01002733 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002734 if (!old_device_name) {
2735 error = -ENOMEM;
2736 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002737 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002738
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07002739 if (dev->class) {
Tejun Heo4b30ee52013-09-11 22:29:06 -04002740 error = sysfs_rename_link_ns(&dev->class->p->subsys.kobj,
2741 kobj, old_device_name,
2742 new_name, kobject_namespace(kobj));
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07002743 if (error)
2744 goto out;
2745 }
Kay Sievers39aba962010-09-04 22:33:14 -07002746
Tejun Heo4b30ee52013-09-11 22:29:06 -04002747 error = kobject_rename(kobj, new_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01002748 if (error)
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002749 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002750
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002751out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002752 put_device(dev);
2753
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07002754 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07002755
2756 return error;
2757}
Johannes Berga2807db2007-02-28 12:38:31 +01002758EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01002759
2760static int device_move_class_links(struct device *dev,
2761 struct device *old_parent,
2762 struct device *new_parent)
2763{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08002764 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01002765
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08002766 if (old_parent)
2767 sysfs_remove_link(&dev->kobj, "device");
2768 if (new_parent)
2769 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
2770 "device");
2771 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01002772}
2773
2774/**
2775 * device_move - moves a device to a new parent
2776 * @dev: the pointer to the struct device to be moved
Wolfram Sang13509862018-05-06 13:23:47 +02002777 * @new_parent: the new parent of the device (can be NULL)
Cornelia Huckffa6a702009-03-04 12:44:00 +01002778 * @dpm_order: how to reorder the dpm_list
Cornelia Huck8a824722006-11-20 17:07:51 +01002779 */
Cornelia Huckffa6a702009-03-04 12:44:00 +01002780int device_move(struct device *dev, struct device *new_parent,
2781 enum dpm_order dpm_order)
Cornelia Huck8a824722006-11-20 17:07:51 +01002782{
2783 int error;
2784 struct device *old_parent;
Cornelia Huckc744aeae2007-01-08 20:16:44 +01002785 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01002786
2787 dev = get_device(dev);
2788 if (!dev)
2789 return -EINVAL;
2790
Cornelia Huckffa6a702009-03-04 12:44:00 +01002791 device_pm_lock();
Cornelia Huck8a824722006-11-20 17:07:51 +01002792 new_parent = get_device(new_parent);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002793 new_parent_kobj = get_device_parent(dev, new_parent);
Tetsuo Handa84d0c272018-05-07 19:10:31 +09002794 if (IS_ERR(new_parent_kobj)) {
2795 error = PTR_ERR(new_parent_kobj);
2796 put_device(new_parent);
2797 goto out;
2798 }
Cornelia Huck63b69712008-01-21 16:09:44 +01002799
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01002800 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
2801 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
Cornelia Huckc744aeae2007-01-08 20:16:44 +01002802 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01002803 if (error) {
Cornelia Huck63b69712008-01-21 16:09:44 +01002804 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01002805 put_device(new_parent);
2806 goto out;
2807 }
2808 old_parent = dev->parent;
2809 dev->parent = new_parent;
2810 if (old_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002811 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08002812 if (new_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08002813 klist_add_tail(&dev->p->knode_parent,
2814 &new_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08002815 set_dev_node(dev, dev_to_node(new_parent));
2816 }
2817
Rabin Vincentbdd40342012-04-23 09:16:36 +02002818 if (dev->class) {
2819 error = device_move_class_links(dev, old_parent, new_parent);
2820 if (error) {
2821 /* We ignore errors on cleanup since we're hosed anyway... */
2822 device_move_class_links(dev, new_parent, old_parent);
2823 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
2824 if (new_parent)
2825 klist_remove(&dev->p->knode_parent);
2826 dev->parent = old_parent;
2827 if (old_parent) {
2828 klist_add_tail(&dev->p->knode_parent,
2829 &old_parent->p->klist_children);
2830 set_dev_node(dev, dev_to_node(old_parent));
2831 }
Yinghai Lu0d358f22008-02-19 03:20:41 -08002832 }
Rabin Vincentbdd40342012-04-23 09:16:36 +02002833 cleanup_glue_dir(dev, new_parent_kobj);
2834 put_device(new_parent);
2835 goto out;
Cornelia Huck8a824722006-11-20 17:07:51 +01002836 }
Cornelia Huck8a824722006-11-20 17:07:51 +01002837 }
Cornelia Huckffa6a702009-03-04 12:44:00 +01002838 switch (dpm_order) {
2839 case DPM_ORDER_NONE:
2840 break;
2841 case DPM_ORDER_DEV_AFTER_PARENT:
2842 device_pm_move_after(dev, new_parent);
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03002843 devices_kset_move_after(dev, new_parent);
Cornelia Huckffa6a702009-03-04 12:44:00 +01002844 break;
2845 case DPM_ORDER_PARENT_BEFORE_DEV:
2846 device_pm_move_before(new_parent, dev);
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03002847 devices_kset_move_before(new_parent, dev);
Cornelia Huckffa6a702009-03-04 12:44:00 +01002848 break;
2849 case DPM_ORDER_DEV_LAST:
2850 device_pm_move_last(dev);
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +03002851 devices_kset_move_last(dev);
Cornelia Huckffa6a702009-03-04 12:44:00 +01002852 break;
2853 }
Rabin Vincentbdd40342012-04-23 09:16:36 +02002854
Cornelia Huck8a824722006-11-20 17:07:51 +01002855 put_device(old_parent);
2856out:
Cornelia Huckffa6a702009-03-04 12:44:00 +01002857 device_pm_unlock();
Cornelia Huck8a824722006-11-20 17:07:51 +01002858 put_device(dev);
2859 return error;
2860}
Cornelia Huck8a824722006-11-20 17:07:51 +01002861EXPORT_SYMBOL_GPL(device_move);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002862
2863/**
2864 * device_shutdown - call ->shutdown() on each device to shutdown.
2865 */
2866void device_shutdown(void)
2867{
Benson Leungf123db82013-09-24 20:05:11 -07002868 struct device *dev, *parent;
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002869
Pingfan Liu3297c8f2018-07-19 13:14:58 +08002870 wait_for_device_probe();
2871 device_block_probing();
2872
Hugh Daschbach62458382010-03-22 10:36:37 -07002873 spin_lock(&devices_kset->list_lock);
2874 /*
2875 * Walk the devices list backward, shutting down each in turn.
2876 * Beware that device unplug events may also start pulling
2877 * devices offline, even as the system is shutting down.
2878 */
2879 while (!list_empty(&devices_kset->list)) {
2880 dev = list_entry(devices_kset->list.prev, struct device,
2881 kobj.entry);
Ming Leid1c6c032012-06-22 18:01:40 +08002882
2883 /*
2884 * hold reference count of device's parent to
2885 * prevent it from being freed because parent's
2886 * lock is to be held
2887 */
Benson Leungf123db82013-09-24 20:05:11 -07002888 parent = get_device(dev->parent);
Hugh Daschbach62458382010-03-22 10:36:37 -07002889 get_device(dev);
2890 /*
2891 * Make sure the device is off the kset list, in the
2892 * event that dev->*->shutdown() doesn't remove it.
2893 */
2894 list_del_init(&dev->kobj.entry);
2895 spin_unlock(&devices_kset->list_lock);
Alan Sternfe6b91f2011-12-06 23:24:52 +01002896
Ming Leid1c6c032012-06-22 18:01:40 +08002897 /* hold lock to avoid race with probe/release */
Benson Leungf123db82013-09-24 20:05:11 -07002898 if (parent)
2899 device_lock(parent);
Ming Leid1c6c032012-06-22 18:01:40 +08002900 device_lock(dev);
2901
Alan Sternfe6b91f2011-12-06 23:24:52 +01002902 /* Don't allow any more runtime suspends */
2903 pm_runtime_get_noresume(dev);
2904 pm_runtime_barrier(dev);
Hugh Daschbach62458382010-03-22 10:36:37 -07002905
Michal Suchanek75216212017-08-11 15:44:43 +02002906 if (dev->class && dev->class->shutdown_pre) {
Josh Zimmermanf77af152017-06-25 14:53:23 -07002907 if (initcall_debug)
Michal Suchanek75216212017-08-11 15:44:43 +02002908 dev_info(dev, "shutdown_pre\n");
2909 dev->class->shutdown_pre(dev);
2910 }
2911 if (dev->bus && dev->bus->shutdown) {
ShuoX Liu0246c4f2012-11-23 15:14:12 +08002912 if (initcall_debug)
2913 dev_info(dev, "shutdown\n");
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002914 dev->bus->shutdown(dev);
2915 } else if (dev->driver && dev->driver->shutdown) {
ShuoX Liu0246c4f2012-11-23 15:14:12 +08002916 if (initcall_debug)
2917 dev_info(dev, "shutdown\n");
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002918 dev->driver->shutdown(dev);
2919 }
Ming Leid1c6c032012-06-22 18:01:40 +08002920
2921 device_unlock(dev);
Benson Leungf123db82013-09-24 20:05:11 -07002922 if (parent)
2923 device_unlock(parent);
Ming Leid1c6c032012-06-22 18:01:40 +08002924
Hugh Daschbach62458382010-03-22 10:36:37 -07002925 put_device(dev);
Benson Leungf123db82013-09-24 20:05:11 -07002926 put_device(parent);
Hugh Daschbach62458382010-03-22 10:36:37 -07002927
2928 spin_lock(&devices_kset->list_lock);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002929 }
Hugh Daschbach62458382010-03-22 10:36:37 -07002930 spin_unlock(&devices_kset->list_lock);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08002931}
Joe Perches99bcf212010-06-27 01:02:34 +00002932
2933/*
2934 * Device logging functions
2935 */
2936
2937#ifdef CONFIG_PRINTK
Joe Perches666f3552012-09-12 20:14:11 -07002938static int
2939create_syslog_header(const struct device *dev, char *hdr, size_t hdrlen)
Joe Perches99bcf212010-06-27 01:02:34 +00002940{
Kay Sieversc4e00da2012-05-03 02:29:59 +02002941 const char *subsys;
Joe Perches798efc62012-09-12 20:11:29 -07002942 size_t pos = 0;
Joe Perches99bcf212010-06-27 01:02:34 +00002943
Kay Sieversc4e00da2012-05-03 02:29:59 +02002944 if (dev->class)
2945 subsys = dev->class->name;
2946 else if (dev->bus)
2947 subsys = dev->bus->name;
2948 else
Joe Perches798efc62012-09-12 20:11:29 -07002949 return 0;
Kay Sieversc4e00da2012-05-03 02:29:59 +02002950
Joe Perches798efc62012-09-12 20:11:29 -07002951 pos += snprintf(hdr + pos, hdrlen - pos, "SUBSYSTEM=%s", subsys);
Ben Hutchings655e5b72014-08-26 00:34:44 -07002952 if (pos >= hdrlen)
2953 goto overflow;
Kay Sieversc4e00da2012-05-03 02:29:59 +02002954
2955 /*
2956 * Add device identifier DEVICE=:
2957 * b12:8 block dev_t
2958 * c127:3 char dev_t
2959 * n8 netdev ifindex
2960 * +sound:card0 subsystem:devname
2961 */
2962 if (MAJOR(dev->devt)) {
2963 char c;
2964
2965 if (strcmp(subsys, "block") == 0)
2966 c = 'b';
2967 else
2968 c = 'c';
Joe Perches798efc62012-09-12 20:11:29 -07002969 pos++;
2970 pos += snprintf(hdr + pos, hdrlen - pos,
2971 "DEVICE=%c%u:%u",
2972 c, MAJOR(dev->devt), MINOR(dev->devt));
Kay Sieversc4e00da2012-05-03 02:29:59 +02002973 } else if (strcmp(subsys, "net") == 0) {
2974 struct net_device *net = to_net_dev(dev);
2975
Joe Perches798efc62012-09-12 20:11:29 -07002976 pos++;
2977 pos += snprintf(hdr + pos, hdrlen - pos,
2978 "DEVICE=n%u", net->ifindex);
Kay Sieversc4e00da2012-05-03 02:29:59 +02002979 } else {
Joe Perches798efc62012-09-12 20:11:29 -07002980 pos++;
2981 pos += snprintf(hdr + pos, hdrlen - pos,
2982 "DEVICE=+%s:%s", subsys, dev_name(dev));
Kay Sieversc4e00da2012-05-03 02:29:59 +02002983 }
Jim Cromieaf7f2152012-07-19 13:46:21 -06002984
Ben Hutchings655e5b72014-08-26 00:34:44 -07002985 if (pos >= hdrlen)
2986 goto overflow;
2987
Joe Perches798efc62012-09-12 20:11:29 -07002988 return pos;
Ben Hutchings655e5b72014-08-26 00:34:44 -07002989
2990overflow:
2991 dev_WARN(dev, "device/subsystem name too long");
2992 return 0;
Joe Perches99bcf212010-06-27 01:02:34 +00002993}
Joe Perches798efc62012-09-12 20:11:29 -07002994
Joe Perches05e4e5b2012-09-12 20:13:37 -07002995int dev_vprintk_emit(int level, const struct device *dev,
2996 const char *fmt, va_list args)
2997{
2998 char hdr[128];
2999 size_t hdrlen;
3000
3001 hdrlen = create_syslog_header(dev, hdr, sizeof(hdr));
3002
3003 return vprintk_emit(0, level, hdrlen ? hdr : NULL, hdrlen, fmt, args);
3004}
3005EXPORT_SYMBOL(dev_vprintk_emit);
3006
3007int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...)
3008{
3009 va_list args;
3010 int r;
3011
3012 va_start(args, fmt);
3013
3014 r = dev_vprintk_emit(level, dev, fmt, args);
3015
3016 va_end(args);
3017
3018 return r;
3019}
3020EXPORT_SYMBOL(dev_printk_emit);
3021
Joe Perchesd1f10522014-12-25 15:07:04 -08003022static void __dev_printk(const char *level, const struct device *dev,
Joe Perches798efc62012-09-12 20:11:29 -07003023 struct va_format *vaf)
3024{
Joe Perchesd1f10522014-12-25 15:07:04 -08003025 if (dev)
3026 dev_printk_emit(level[1] - '0', dev, "%s %s: %pV",
3027 dev_driver_string(dev), dev_name(dev), vaf);
3028 else
3029 printk("%s(NULL device *): %pV", level, vaf);
Joe Perches798efc62012-09-12 20:11:29 -07003030}
Joe Perches99bcf212010-06-27 01:02:34 +00003031
Joe Perchesd1f10522014-12-25 15:07:04 -08003032void dev_printk(const char *level, const struct device *dev,
3033 const char *fmt, ...)
Joe Perches99bcf212010-06-27 01:02:34 +00003034{
3035 struct va_format vaf;
3036 va_list args;
Joe Perches99bcf212010-06-27 01:02:34 +00003037
3038 va_start(args, fmt);
3039
3040 vaf.fmt = fmt;
3041 vaf.va = &args;
3042
Joe Perchesd1f10522014-12-25 15:07:04 -08003043 __dev_printk(level, dev, &vaf);
Joe Perches798efc62012-09-12 20:11:29 -07003044
Joe Perches99bcf212010-06-27 01:02:34 +00003045 va_end(args);
Joe Perches99bcf212010-06-27 01:02:34 +00003046}
3047EXPORT_SYMBOL(dev_printk);
3048
3049#define define_dev_printk_level(func, kern_level) \
Joe Perchesd1f10522014-12-25 15:07:04 -08003050void func(const struct device *dev, const char *fmt, ...) \
Joe Perches99bcf212010-06-27 01:02:34 +00003051{ \
3052 struct va_format vaf; \
3053 va_list args; \
Joe Perches99bcf212010-06-27 01:02:34 +00003054 \
3055 va_start(args, fmt); \
3056 \
3057 vaf.fmt = fmt; \
3058 vaf.va = &args; \
3059 \
Joe Perchesd1f10522014-12-25 15:07:04 -08003060 __dev_printk(kern_level, dev, &vaf); \
Joe Perches798efc62012-09-12 20:11:29 -07003061 \
Joe Perches99bcf212010-06-27 01:02:34 +00003062 va_end(args); \
Joe Perches99bcf212010-06-27 01:02:34 +00003063} \
3064EXPORT_SYMBOL(func);
3065
Joe Perches663336e2018-05-09 08:15:46 -07003066define_dev_printk_level(_dev_emerg, KERN_EMERG);
3067define_dev_printk_level(_dev_alert, KERN_ALERT);
3068define_dev_printk_level(_dev_crit, KERN_CRIT);
3069define_dev_printk_level(_dev_err, KERN_ERR);
3070define_dev_printk_level(_dev_warn, KERN_WARNING);
3071define_dev_printk_level(_dev_notice, KERN_NOTICE);
Joe Perches99bcf212010-06-27 01:02:34 +00003072define_dev_printk_level(_dev_info, KERN_INFO);
3073
3074#endif
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02003075
3076static inline bool fwnode_is_primary(struct fwnode_handle *fwnode)
3077{
3078 return fwnode && !IS_ERR(fwnode->secondary);
3079}
3080
3081/**
3082 * set_primary_fwnode - Change the primary firmware node of a given device.
3083 * @dev: Device to handle.
3084 * @fwnode: New primary firmware node of the device.
3085 *
3086 * Set the device's firmware node pointer to @fwnode, but if a secondary
3087 * firmware node of the device is present, preserve it.
3088 */
3089void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
3090{
3091 if (fwnode) {
3092 struct fwnode_handle *fn = dev->fwnode;
3093
3094 if (fwnode_is_primary(fn))
3095 fn = fn->secondary;
3096
Mika Westerberg55f89a82015-11-30 17:11:39 +02003097 if (fn) {
3098 WARN_ON(fwnode->secondary);
3099 fwnode->secondary = fn;
3100 }
Rafael J. Wysocki97badf82015-04-03 23:23:37 +02003101 dev->fwnode = fwnode;
3102 } else {
3103 dev->fwnode = fwnode_is_primary(dev->fwnode) ?
3104 dev->fwnode->secondary : NULL;
3105 }
3106}
3107EXPORT_SYMBOL_GPL(set_primary_fwnode);
3108
3109/**
3110 * set_secondary_fwnode - Change the secondary firmware node of a given device.
3111 * @dev: Device to handle.
3112 * @fwnode: New secondary firmware node of the device.
3113 *
3114 * If a primary firmware node of the device is present, set its secondary
3115 * pointer to @fwnode. Otherwise, set the device's firmware node pointer to
3116 * @fwnode.
3117 */
3118void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode)
3119{
3120 if (fwnode)
3121 fwnode->secondary = ERR_PTR(-ENODEV);
3122
3123 if (fwnode_is_primary(dev->fwnode))
3124 dev->fwnode->secondary = fwnode;
3125 else
3126 dev->fwnode = fwnode;
3127}
Johan Hovold4e75e1d2017-06-06 17:59:00 +02003128
3129/**
3130 * device_set_of_node_from_dev - reuse device-tree node of another device
3131 * @dev: device whose device-tree node is being set
3132 * @dev2: device whose device-tree node is being reused
3133 *
3134 * Takes another reference to the new device-tree node after first dropping
3135 * any reference held to the old node.
3136 */
3137void device_set_of_node_from_dev(struct device *dev, const struct device *dev2)
3138{
3139 of_node_put(dev->of_node);
3140 dev->of_node = of_node_get(dev2->of_node);
3141 dev->of_node_reused = true;
3142}
3143EXPORT_SYMBOL_GPL(device_set_of_node_from_dev);