blob: 10454fe5448259755e4b4e7df05231fe55ae6592 [file] [log] [blame]
Greg Kroah-Hartman989d42e2017-11-07 17:30:07 +01001// SPDX-License-Identifier: GPL-2.0
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -08002/*
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08003 * drivers/base/dd.c - The core device/driver interactions.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -08004 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08005 * This file contains the (sometimes tricky) code that controls the
6 * interactions between devices and drivers, which primarily includes
7 * driver binding and unbinding.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -08008 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08009 * All of this code used to exist in drivers/base/bus.c, but was
10 * relocated to here in the name of compartmentalization (since it wasn't
11 * strictly code just for the 'struct bus_type'.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080012 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080013 * Copyright (c) 2002-5 Patrick Mochel
14 * Copyright (c) 2002-3 Open Source Development Labs
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -070015 * Copyright (c) 2007-2009 Greg Kroah-Hartman <gregkh@suse.de>
16 * Copyright (c) 2007-2009 Novell Inc.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080017 */
18
19#include <linux/device.h>
Arjan van de Ven216773a2009-02-14 01:59:06 +010020#include <linux/delay.h>
Sricharan R09515ef2017-04-10 16:51:01 +053021#include <linux/dma-mapping.h>
Todd Poynor1f5000b2017-07-25 16:31:59 -070022#include <linux/init.h>
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080023#include <linux/module.h>
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -070024#include <linux/kthread.h>
Andrew Morton735a7ff2006-10-27 11:42:37 -070025#include <linux/wait.h>
Arjan van de Ven216773a2009-02-14 01:59:06 +010026#include <linux/async.h>
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +020027#include <linux/pm_runtime.h>
Linus Walleijab780292013-01-22 10:56:14 -070028#include <linux/pinctrl/devinfo.h>
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080029
30#include "base.h"
31#include "power/power.h"
32
Grant Likelyd1c34142012-03-05 08:47:41 -070033/*
34 * Deferred Probe infrastructure.
35 *
36 * Sometimes driver probe order matters, but the kernel doesn't always have
37 * dependency information which means some drivers will get probed before a
38 * resource it depends on is available. For example, an SDHCI driver may
39 * first need a GPIO line from an i2c GPIO controller before it can be
40 * initialized. If a required resource is not available yet, a driver can
41 * request probing to be deferred by returning -EPROBE_DEFER from its probe hook
42 *
43 * Deferred probe maintains two lists of devices, a pending list and an active
44 * list. A driver returning -EPROBE_DEFER causes the device to be added to the
45 * pending list. A successful driver probe will trigger moving all devices
46 * from the pending to the active list so that the workqueue will eventually
47 * retry them.
48 *
49 * The deferred_probe_mutex must be held any time the deferred_probe_*_list
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -080050 * of the (struct device*)->p->deferred_probe pointers are manipulated
Grant Likelyd1c34142012-03-05 08:47:41 -070051 */
52static DEFINE_MUTEX(deferred_probe_mutex);
53static LIST_HEAD(deferred_probe_pending_list);
54static LIST_HEAD(deferred_probe_active_list);
Grant Likely58b116b2014-04-29 12:05:22 +010055static atomic_t deferred_trigger_count = ATOMIC_INIT(0);
Todd Poynor1f5000b2017-07-25 16:31:59 -070056static bool initcalls_done;
Grant Likelyd1c34142012-03-05 08:47:41 -070057
Thierry Reding41575332014-08-08 15:56:36 +020058/*
Strashko, Grygorii013c0742015-11-10 11:42:34 +020059 * In some cases, like suspend to RAM or hibernation, It might be reasonable
60 * to prohibit probing of devices as it could be unsafe.
61 * Once defer_all_probes is true all drivers probes will be forcibly deferred.
62 */
63static bool defer_all_probes;
64
65/*
Todd Poynor1f5000b2017-07-25 16:31:59 -070066 * For initcall_debug, show the deferred probes executed in late_initcall
67 * processing.
68 */
69static void deferred_probe_debug(struct device *dev)
70{
71 ktime_t calltime, delta, rettime;
72 unsigned long long duration;
73
74 printk(KERN_DEBUG "deferred probe %s @ %i\n", dev_name(dev),
75 task_pid_nr(current));
76 calltime = ktime_get();
77 bus_probe_device(dev);
78 rettime = ktime_get();
79 delta = ktime_sub(rettime, calltime);
80 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
81 printk(KERN_DEBUG "deferred probe %s returned after %lld usecs\n",
82 dev_name(dev), duration);
83}
84
85/*
Grant Likelyd1c34142012-03-05 08:47:41 -070086 * deferred_probe_work_func() - Retry probing devices in the active list.
87 */
88static void deferred_probe_work_func(struct work_struct *work)
89{
90 struct device *dev;
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -080091 struct device_private *private;
Grant Likelyd1c34142012-03-05 08:47:41 -070092 /*
93 * This block processes every device in the deferred 'active' list.
94 * Each device is removed from the active list and passed to
95 * bus_probe_device() to re-attempt the probe. The loop continues
96 * until every device in the active list is removed and retried.
97 *
98 * Note: Once the device is removed from the list and the mutex is
99 * released, it is possible for the device get freed by another thread
100 * and cause a illegal pointer dereference. This code uses
101 * get/put_device() to ensure the device structure cannot disappear
102 * from under our feet.
103 */
104 mutex_lock(&deferred_probe_mutex);
105 while (!list_empty(&deferred_probe_active_list)) {
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -0800106 private = list_first_entry(&deferred_probe_active_list,
107 typeof(*dev->p), deferred_probe);
108 dev = private->device;
109 list_del_init(&private->deferred_probe);
Grant Likelyd1c34142012-03-05 08:47:41 -0700110
111 get_device(dev);
112
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -0800113 /*
114 * Drop the mutex while probing each device; the probe path may
115 * manipulate the deferred list
116 */
Grant Likelyd1c34142012-03-05 08:47:41 -0700117 mutex_unlock(&deferred_probe_mutex);
Mark Brown81535842012-07-05 14:04:44 +0100118
119 /*
120 * Force the device to the end of the dpm_list since
121 * the PM code assumes that the order we add things to
122 * the list is a good order for suspend but deferred
123 * probe makes that very unsafe.
124 */
Feng Kan494fd7b2018-04-10 16:57:06 -0700125 device_pm_move_to_tail(dev);
Mark Brown81535842012-07-05 14:04:44 +0100126
Grant Likelyd1c34142012-03-05 08:47:41 -0700127 dev_dbg(dev, "Retrying from deferred list\n");
Todd Poynor1f5000b2017-07-25 16:31:59 -0700128 if (initcall_debug && !initcalls_done)
129 deferred_probe_debug(dev);
130 else
131 bus_probe_device(dev);
Mark Brown81535842012-07-05 14:04:44 +0100132
Grant Likelyd1c34142012-03-05 08:47:41 -0700133 mutex_lock(&deferred_probe_mutex);
134
135 put_device(dev);
136 }
137 mutex_unlock(&deferred_probe_mutex);
138}
139static DECLARE_WORK(deferred_probe_work, deferred_probe_work_func);
140
141static void driver_deferred_probe_add(struct device *dev)
142{
143 mutex_lock(&deferred_probe_mutex);
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -0800144 if (list_empty(&dev->p->deferred_probe)) {
Grant Likelyd1c34142012-03-05 08:47:41 -0700145 dev_dbg(dev, "Added to deferred list\n");
Kuninori Morimoto1d29cfa2012-05-29 18:46:06 -0700146 list_add_tail(&dev->p->deferred_probe, &deferred_probe_pending_list);
Grant Likelyd1c34142012-03-05 08:47:41 -0700147 }
148 mutex_unlock(&deferred_probe_mutex);
149}
150
151void driver_deferred_probe_del(struct device *dev)
152{
153 mutex_lock(&deferred_probe_mutex);
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -0800154 if (!list_empty(&dev->p->deferred_probe)) {
Grant Likelyd1c34142012-03-05 08:47:41 -0700155 dev_dbg(dev, "Removed from deferred list\n");
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -0800156 list_del_init(&dev->p->deferred_probe);
Grant Likelyd1c34142012-03-05 08:47:41 -0700157 }
158 mutex_unlock(&deferred_probe_mutex);
159}
160
161static bool driver_deferred_probe_enable = false;
162/**
163 * driver_deferred_probe_trigger() - Kick off re-probing deferred devices
164 *
165 * This functions moves all devices from the pending list to the active
166 * list and schedules the deferred probe workqueue to process them. It
167 * should be called anytime a driver is successfully bound to a device.
Grant Likely58b116b2014-04-29 12:05:22 +0100168 *
169 * Note, there is a race condition in multi-threaded probe. In the case where
170 * more than one device is probing at the same time, it is possible for one
171 * probe to complete successfully while another is about to defer. If the second
172 * depends on the first, then it will get put on the pending list after the
Shailendra Verma9ba8af62015-05-25 23:46:11 +0530173 * trigger event has already occurred and will be stuck there.
Grant Likely58b116b2014-04-29 12:05:22 +0100174 *
175 * The atomic 'deferred_trigger_count' is used to determine if a successful
176 * trigger has occurred in the midst of probing a driver. If the trigger count
177 * changes in the midst of a probe, then deferred processing should be triggered
178 * again.
Grant Likelyd1c34142012-03-05 08:47:41 -0700179 */
180static void driver_deferred_probe_trigger(void)
181{
182 if (!driver_deferred_probe_enable)
183 return;
184
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -0800185 /*
186 * A successful probe means that all the devices in the pending list
Grant Likelyd1c34142012-03-05 08:47:41 -0700187 * should be triggered to be reprobed. Move all the deferred devices
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -0800188 * into the active list so they can be retried by the workqueue
189 */
Grant Likelyd1c34142012-03-05 08:47:41 -0700190 mutex_lock(&deferred_probe_mutex);
Grant Likely58b116b2014-04-29 12:05:22 +0100191 atomic_inc(&deferred_trigger_count);
Grant Likelyd1c34142012-03-05 08:47:41 -0700192 list_splice_tail_init(&deferred_probe_pending_list,
193 &deferred_probe_active_list);
194 mutex_unlock(&deferred_probe_mutex);
195
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -0800196 /*
197 * Kick the re-probe thread. It may already be scheduled, but it is
198 * safe to kick it again.
199 */
Bhaktipriya Shridhar2c507e42016-08-30 22:45:34 +0530200 schedule_work(&deferred_probe_work);
Grant Likelyd1c34142012-03-05 08:47:41 -0700201}
202
203/**
Strashko, Grygorii013c0742015-11-10 11:42:34 +0200204 * device_block_probing() - Block/defere device's probes
205 *
206 * It will disable probing of devices and defer their probes instead.
207 */
208void device_block_probing(void)
209{
210 defer_all_probes = true;
211 /* sync with probes to avoid races. */
212 wait_for_device_probe();
213}
214
215/**
216 * device_unblock_probing() - Unblock/enable device's probes
217 *
218 * It will restore normal behavior and trigger re-probing of deferred
219 * devices.
220 */
221void device_unblock_probing(void)
222{
223 defer_all_probes = false;
224 driver_deferred_probe_trigger();
225}
226
227/**
Grant Likelyd1c34142012-03-05 08:47:41 -0700228 * deferred_probe_initcall() - Enable probing of deferred devices
229 *
230 * We don't want to get in the way when the bulk of drivers are getting probed.
231 * Instead, this initcall makes sure that deferred probing is delayed until
232 * late_initcall time.
233 */
234static int deferred_probe_initcall(void)
235{
Grant Likelyd1c34142012-03-05 08:47:41 -0700236 driver_deferred_probe_enable = true;
237 driver_deferred_probe_trigger();
Grant Likelyd72cca12013-02-14 18:14:27 +0000238 /* Sort as many dependencies as possible before exiting initcalls */
Bhaktipriya Shridhar2c507e42016-08-30 22:45:34 +0530239 flush_work(&deferred_probe_work);
Todd Poynor1f5000b2017-07-25 16:31:59 -0700240 initcalls_done = true;
Grant Likelyd1c34142012-03-05 08:47:41 -0700241 return 0;
242}
243late_initcall(deferred_probe_initcall);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800244
Tomeu Vizoso6b9cb422016-01-07 16:46:12 +0100245/**
246 * device_is_bound() - Check if device is bound to a driver
247 * @dev: device to check
248 *
249 * Returns true if passed device has already finished probing successfully
250 * against a driver.
251 *
252 * This function must be called with the device lock held.
253 */
254bool device_is_bound(struct device *dev)
255{
Rafael J. Wysocki3ded9102016-01-12 01:51:44 +0100256 return dev->p && klist_node_attached(&dev->p->knode_driver);
Tomeu Vizoso6b9cb422016-01-07 16:46:12 +0100257}
258
Kay Sievers1901fb22006-10-07 21:55:55 +0200259static void driver_bound(struct device *dev)
260{
Tomeu Vizoso6b9cb422016-01-07 16:46:12 +0100261 if (device_is_bound(dev)) {
Kay Sievers1901fb22006-10-07 21:55:55 +0200262 printk(KERN_WARNING "%s: device %s already bound\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800263 __func__, kobject_name(&dev->kobj));
Kay Sievers1901fb22006-10-07 21:55:55 +0200264 return;
265 }
266
Frank Rowand94f8cc02014-04-16 17:12:30 -0700267 pr_debug("driver: '%s': %s: bound to device '%s'\n", dev->driver->name,
268 __func__, dev_name(dev));
Kay Sievers1901fb22006-10-07 21:55:55 +0200269
Stefani Seiboldfbb88fa2010-03-06 17:50:14 +0100270 klist_add_tail(&dev->p->knode_driver, &dev->driver->p->klist_devices);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100271 device_links_driver_bound(dev);
Stefani Seiboldfbb88fa2010-03-06 17:50:14 +0100272
Tomeu Vizosoaa8e54b52016-01-07 16:46:14 +0100273 device_pm_check_callbacks(dev);
274
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -0800275 /*
276 * Make sure the device is no longer in one of the deferred lists and
277 * kick off retrying all pending devices
278 */
Grant Likelyd1c34142012-03-05 08:47:41 -0700279 driver_deferred_probe_del(dev);
280 driver_deferred_probe_trigger();
281
Kay Sievers1901fb22006-10-07 21:55:55 +0200282 if (dev->bus)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700283 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
Kay Sievers1901fb22006-10-07 21:55:55 +0200284 BUS_NOTIFY_BOUND_DRIVER, dev);
Dmitry Torokhov1455cf82017-07-19 17:24:30 -0700285
286 kobject_uevent(&dev->kobj, KOBJ_BIND);
Kay Sievers1901fb22006-10-07 21:55:55 +0200287}
288
Arend van Spriel3c47d192018-01-11 09:36:38 +0100289static ssize_t coredump_store(struct device *dev, struct device_attribute *attr,
290 const char *buf, size_t count)
291{
292 device_lock(dev);
Arend van Spriel1fe56e02018-03-15 10:55:25 +0100293 dev->driver->coredump(dev);
Arend van Spriel3c47d192018-01-11 09:36:38 +0100294 device_unlock(dev);
295
296 return count;
297}
298static DEVICE_ATTR_WO(coredump);
299
Kay Sievers1901fb22006-10-07 21:55:55 +0200300static int driver_sysfs_add(struct device *dev)
301{
302 int ret;
303
Magnus Damm45daef02010-07-23 19:56:18 +0900304 if (dev->bus)
305 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
306 BUS_NOTIFY_BIND_DRIVER, dev);
307
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800308 ret = sysfs_create_link(&dev->driver->p->kobj, &dev->kobj,
Arend van Spriel3c47d192018-01-11 09:36:38 +0100309 kobject_name(&dev->kobj));
310 if (ret)
311 goto fail;
312
313 ret = sysfs_create_link(&dev->kobj, &dev->driver->p->kobj,
314 "driver");
315 if (ret)
316 goto rm_dev;
317
318 if (!IS_ENABLED(CONFIG_DEV_COREDUMP) || !dev->driver->coredump ||
319 !device_create_file(dev, &dev_attr_coredump))
320 return 0;
321
322 sysfs_remove_link(&dev->kobj, "driver");
323
324rm_dev:
325 sysfs_remove_link(&dev->driver->p->kobj,
Kay Sievers1901fb22006-10-07 21:55:55 +0200326 kobject_name(&dev->kobj));
Arend van Spriel3c47d192018-01-11 09:36:38 +0100327
328fail:
Kay Sievers1901fb22006-10-07 21:55:55 +0200329 return ret;
330}
331
332static void driver_sysfs_remove(struct device *dev)
333{
334 struct device_driver *drv = dev->driver;
335
336 if (drv) {
Arend van Spriel3c47d192018-01-11 09:36:38 +0100337 if (drv->coredump)
338 device_remove_file(dev, &dev_attr_coredump);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800339 sysfs_remove_link(&drv->p->kobj, kobject_name(&dev->kobj));
Kay Sievers1901fb22006-10-07 21:55:55 +0200340 sysfs_remove_link(&dev->kobj, "driver");
341 }
342}
343
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800344/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800345 * device_bind_driver - bind a driver to one device.
346 * @dev: device.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800347 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800348 * Allow manual attachment of a driver to a device.
349 * Caller must have already set @dev->driver.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800350 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800351 * Note that this does not modify the bus reference count
352 * nor take the bus's rwsem. Please verify those are accounted
353 * for before calling this. (It is ok to call with no other effort
354 * from a driver's probe() method.)
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700355 *
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800356 * This function must be called with the device lock held.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800357 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700358int device_bind_driver(struct device *dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800359{
Cornelia Huckcb986b72006-11-27 10:35:12 +0100360 int ret;
361
362 ret = driver_sysfs_add(dev);
363 if (!ret)
364 driver_bound(dev);
Andy Shevchenko14b62572015-12-04 23:49:17 +0200365 else if (dev->bus)
366 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
367 BUS_NOTIFY_DRIVER_NOT_BOUND, dev);
Cornelia Huckcb986b72006-11-27 10:35:12 +0100368 return ret;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800369}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800370EXPORT_SYMBOL_GPL(device_bind_driver);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800371
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700372static atomic_t probe_count = ATOMIC_INIT(0);
Andrew Morton735a7ff2006-10-27 11:42:37 -0700373static DECLARE_WAIT_QUEUE_HEAD(probe_waitqueue);
374
Adrian Hunter0ff26c62017-11-02 11:22:53 +0200375static void driver_deferred_probe_add_trigger(struct device *dev,
376 int local_trigger_count)
377{
378 driver_deferred_probe_add(dev);
379 /* Did a trigger occur while probing? Need to re-trigger if yes */
380 if (local_trigger_count != atomic_read(&deferred_trigger_count))
381 driver_deferred_probe_trigger();
382}
383
Cornelia Huck21c7f302007-02-05 16:15:25 -0800384static int really_probe(struct device *dev, struct device_driver *drv)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800385{
Strashko, Grygorii013c0742015-11-10 11:42:34 +0200386 int ret = -EPROBE_DEFER;
Grant Likely58b116b2014-04-29 12:05:22 +0100387 int local_trigger_count = atomic_read(&deferred_trigger_count);
Rob Herringc5f06272016-10-11 13:41:02 -0500388 bool test_remove = IS_ENABLED(CONFIG_DEBUG_TEST_DRIVER_REMOVE) &&
389 !drv->suppress_bind_attrs;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800390
Strashko, Grygorii013c0742015-11-10 11:42:34 +0200391 if (defer_all_probes) {
392 /*
393 * Value of defer_all_probes can be set only by
394 * device_defer_all_probes_enable() which, in turn, will call
395 * wait_for_device_probe() right after that to avoid any races.
396 */
397 dev_dbg(dev, "Driver %s force probe deferral\n", drv->name);
398 driver_deferred_probe_add(dev);
399 return ret;
400 }
401
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100402 ret = device_links_check_suppliers(dev);
Adrian Hunter0ff26c62017-11-02 11:22:53 +0200403 if (ret == -EPROBE_DEFER)
404 driver_deferred_probe_add_trigger(dev, local_trigger_count);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100405 if (ret)
406 return ret;
407
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700408 atomic_inc(&probe_count);
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800409 pr_debug("bus: '%s': %s: probing driver %s with device %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100410 drv->bus->name, __func__, drv->name, dev_name(dev));
Tejun Heo9ac78492007-01-20 16:00:26 +0900411 WARN_ON(!list_empty(&dev->devres_head));
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800412
Rob Herringbea5b152016-08-11 10:20:58 -0500413re_probe:
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800414 dev->driver = drv;
Linus Walleijab780292013-01-22 10:56:14 -0700415
416 /* If using pinctrl, bind pins now before probing */
417 ret = pinctrl_bind_pins(dev);
418 if (ret)
Andy Shevchenko14b62572015-12-04 23:49:17 +0200419 goto pinctrl_bind_failed;
Linus Walleijab780292013-01-22 10:56:14 -0700420
Sricharan R09515ef2017-04-10 16:51:01 +0530421 ret = dma_configure(dev);
422 if (ret)
423 goto dma_failed;
424
Kay Sievers1901fb22006-10-07 21:55:55 +0200425 if (driver_sysfs_add(dev)) {
426 printk(KERN_ERR "%s: driver_sysfs_add(%s) failed\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100427 __func__, dev_name(dev));
Kay Sievers1901fb22006-10-07 21:55:55 +0200428 goto probe_failed;
429 }
430
Rafael J. Wysockie90d5532015-03-20 13:59:27 +0100431 if (dev->pm_domain && dev->pm_domain->activate) {
432 ret = dev->pm_domain->activate(dev);
433 if (ret)
434 goto probe_failed;
435 }
436
Grygorii Strashko52cdbdd2015-07-27 20:43:01 +0300437 /*
438 * Ensure devices are listed in devices_kset in correct order
439 * It's important to move Dev to the end of devices_kset before
440 * calling .probe, because it could be recursive and parent Dev
441 * should always go first
442 */
443 devices_kset_move_last(dev);
444
Russell King594c8282006-01-05 14:29:51 +0000445 if (dev->bus->probe) {
446 ret = dev->bus->probe(dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200447 if (ret)
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700448 goto probe_failed;
Russell King594c8282006-01-05 14:29:51 +0000449 } else if (drv->probe) {
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700450 ret = drv->probe(dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200451 if (ret)
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700452 goto probe_failed;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800453 }
Kay Sievers1901fb22006-10-07 21:55:55 +0200454
Rob Herringbea5b152016-08-11 10:20:58 -0500455 if (test_remove) {
456 test_remove = false;
457
Rob Herringbdacd1b2016-10-11 13:41:03 -0500458 if (dev->bus->remove)
Rob Herringbea5b152016-08-11 10:20:58 -0500459 dev->bus->remove(dev);
460 else if (drv->remove)
461 drv->remove(dev);
462
463 devres_release_all(dev);
464 driver_sysfs_remove(dev);
465 dev->driver = NULL;
466 dev_set_drvdata(dev, NULL);
467 if (dev->pm_domain && dev->pm_domain->dismiss)
468 dev->pm_domain->dismiss(dev);
469 pm_runtime_reinit(dev);
470
471 goto re_probe;
472 }
473
Douglas Andersonef0eebc2015-10-20 21:15:06 -0700474 pinctrl_init_done(dev);
475
Rafael J. Wysockie90d5532015-03-20 13:59:27 +0100476 if (dev->pm_domain && dev->pm_domain->sync)
477 dev->pm_domain->sync(dev);
478
Kay Sievers1901fb22006-10-07 21:55:55 +0200479 driver_bound(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700480 ret = 1;
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800481 pr_debug("bus: '%s': %s: bound device %s to driver %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100482 drv->bus->name, __func__, dev_name(dev), drv->name);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700483 goto done;
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700484
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700485probe_failed:
Sricharan R09515ef2017-04-10 16:51:01 +0530486 dma_deconfigure(dev);
487dma_failed:
Andy Shevchenko14b62572015-12-04 23:49:17 +0200488 if (dev->bus)
489 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
490 BUS_NOTIFY_DRIVER_NOT_BOUND, dev);
491pinctrl_bind_failed:
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100492 device_links_no_driver(dev);
Tejun Heo9ac78492007-01-20 16:00:26 +0900493 devres_release_all(dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200494 driver_sysfs_remove(dev);
495 dev->driver = NULL;
Hans de Goede0998d062012-05-23 00:09:34 +0200496 dev_set_drvdata(dev, NULL);
Rafael J. Wysockie90d5532015-03-20 13:59:27 +0100497 if (dev->pm_domain && dev->pm_domain->dismiss)
498 dev->pm_domain->dismiss(dev);
Ulf Hansson5de85b9d2015-11-18 11:48:39 +0100499 pm_runtime_reinit(dev);
Rafael J. Wysocki08810a412017-10-25 14:12:29 +0200500 dev_pm_set_driver_flags(dev, 0);
Kay Sievers1901fb22006-10-07 21:55:55 +0200501
Sergei Shtylyovbb2b40752015-01-17 22:14:41 +0300502 switch (ret) {
503 case -EPROBE_DEFER:
Grant Likelyd1c34142012-03-05 08:47:41 -0700504 /* Driver requested deferred probing */
Mark Brown13fcffb2015-03-10 11:55:49 +0000505 dev_dbg(dev, "Driver %s requests probe deferral\n", drv->name);
Adrian Hunter0ff26c62017-11-02 11:22:53 +0200506 driver_deferred_probe_add_trigger(dev, local_trigger_count);
Sergei Shtylyovbb2b40752015-01-17 22:14:41 +0300507 break;
508 case -ENODEV:
509 case -ENXIO:
510 pr_debug("%s: probe of %s rejects match %d\n",
511 drv->name, dev_name(dev), ret);
512 break;
513 default:
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700514 /* driver matched but the probe failed */
515 printk(KERN_WARNING
516 "%s: probe of %s failed with error %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100517 drv->name, dev_name(dev), ret);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700518 }
Cornelia Huckc578abb2006-11-27 10:35:10 +0100519 /*
520 * Ignore errors returned by ->probe so that the next driver can try
521 * its luck.
522 */
523 ret = 0;
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700524done:
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700525 atomic_dec(&probe_count);
Andrew Morton735a7ff2006-10-27 11:42:37 -0700526 wake_up(&probe_waitqueue);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700527 return ret;
528}
529
530/**
531 * driver_probe_done
532 * Determine if the probe sequence is finished or not.
533 *
534 * Should somehow figure out how to use a semaphore, not an atomic variable...
535 */
536int driver_probe_done(void)
537{
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800538 pr_debug("%s: probe_count = %d\n", __func__,
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700539 atomic_read(&probe_count));
540 if (atomic_read(&probe_count))
541 return -EBUSY;
542 return 0;
543}
544
545/**
Arjan van de Ven216773a2009-02-14 01:59:06 +0100546 * wait_for_device_probe
547 * Wait for device probing to be completed.
Arjan van de Ven216773a2009-02-14 01:59:06 +0100548 */
Ming Leib23530e2009-02-21 16:45:07 +0800549void wait_for_device_probe(void)
Arjan van de Ven216773a2009-02-14 01:59:06 +0100550{
Strashko, Grygorii013c0742015-11-10 11:42:34 +0200551 /* wait for the deferred probe workqueue to finish */
Bhaktipriya Shridhar2c507e42016-08-30 22:45:34 +0530552 flush_work(&deferred_probe_work);
Strashko, Grygorii013c0742015-11-10 11:42:34 +0200553
Arjan van de Ven216773a2009-02-14 01:59:06 +0100554 /* wait for the known devices to complete their probing */
Ming Leib23530e2009-02-21 16:45:07 +0800555 wait_event(probe_waitqueue, atomic_read(&probe_count) == 0);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100556 async_synchronize_full();
Arjan van de Ven216773a2009-02-14 01:59:06 +0100557}
Arjan van de Vend4d52912009-04-21 13:32:54 -0700558EXPORT_SYMBOL_GPL(wait_for_device_probe);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100559
560/**
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700561 * driver_probe_device - attempt to bind device & driver together
562 * @drv: driver to bind a device to
563 * @dev: device to try to bind to the driver
564 *
Ming Lei49b420a2009-01-21 23:27:47 +0800565 * This function returns -ENODEV if the device is not registered,
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200566 * 1 if the device is bound successfully and 0 otherwise.
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700567 *
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800568 * This function must be called with @dev lock held. When called for a
569 * USB interface, @dev->parent lock must be held as well.
Rafael J. Wysockiddef08d2015-07-27 18:03:58 +0300570 *
571 * If the device has a parent, runtime-resume the parent before driver probing.
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700572 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800573int driver_probe_device(struct device_driver *drv, struct device *dev)
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700574{
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700575 int ret = 0;
576
Alan Sternf2eaae12006-09-18 16:22:34 -0400577 if (!device_is_registered(dev))
578 return -ENODEV;
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700579
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800580 pr_debug("bus: '%s': %s: matched device %s with driver %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100581 drv->bus->name, __func__, dev_name(dev), drv->name);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700582
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100583 pm_runtime_get_suppliers(dev);
Rafael J. Wysockiddef08d2015-07-27 18:03:58 +0300584 if (dev->parent)
585 pm_runtime_get_sync(dev->parent);
586
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200587 pm_runtime_barrier(dev);
Cornelia Huck21c7f302007-02-05 16:15:25 -0800588 ret = really_probe(dev, drv);
Ulf Hanssonfa180eb2013-04-10 17:00:48 +0200589 pm_request_idle(dev);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700590
Rafael J. Wysockiddef08d2015-07-27 18:03:58 +0300591 if (dev->parent)
592 pm_runtime_put(dev->parent);
593
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100594 pm_runtime_put_suppliers(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700595 return ret;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800596}
597
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700598bool driver_allows_async_probing(struct device_driver *drv)
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800599{
Luis R. Rodriguezd173a132015-03-30 16:20:06 -0700600 switch (drv->probe_type) {
601 case PROBE_PREFER_ASYNCHRONOUS:
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -0700602 return true;
603
Luis R. Rodriguezd173a132015-03-30 16:20:06 -0700604 case PROBE_FORCE_SYNCHRONOUS:
605 return false;
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -0700606
Luis R. Rodriguezd173a132015-03-30 16:20:06 -0700607 default:
Dmitry Torokhov80c6e142015-05-21 15:49:37 -0700608 if (module_requested_async_probing(drv->owner))
Luis R. Rodriguezd173a132015-03-30 16:20:06 -0700609 return true;
610
611 return false;
612 }
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700613}
614
615struct device_attach_data {
616 struct device *dev;
617
618 /*
619 * Indicates whether we are are considering asynchronous probing or
620 * not. Only initial binding after device or driver registration
621 * (including deferral processing) may be done asynchronously, the
622 * rest is always synchronous, as we expect it is being done by
623 * request from userspace.
624 */
625 bool check_async;
626
627 /*
628 * Indicates if we are binding synchronous or asynchronous drivers.
629 * When asynchronous probing is enabled we'll execute 2 passes
630 * over drivers: first pass doing synchronous probing and second
631 * doing asynchronous probing (if synchronous did not succeed -
632 * most likely because there was no driver requiring synchronous
633 * probing - and we found asynchronous driver during first pass).
634 * The 2 passes are done because we can't shoot asynchronous
635 * probe for given device and driver from bus_for_each_drv() since
636 * driver pointer is not guaranteed to stay valid once
637 * bus_for_each_drv() iterates to the next driver on the bus.
638 */
639 bool want_async;
640
641 /*
642 * We'll set have_async to 'true' if, while scanning for matching
643 * driver, we'll encounter one that requests asynchronous probing.
644 */
645 bool have_async;
646};
647
648static int __device_attach_driver(struct device_driver *drv, void *_data)
649{
650 struct device_attach_data *data = _data;
651 struct device *dev = data->dev;
652 bool async_allowed;
Tomeu Vizoso656b8032016-02-15 09:25:06 +0100653 int ret;
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700654
655 /*
656 * Check if device has already been claimed. This may
657 * happen with driver loading, device discovery/registration,
658 * and deferred probe processing happens all at once with
659 * multiple threads.
660 */
661 if (dev->driver)
662 return -EBUSY;
Ming Lei49b420a2009-01-21 23:27:47 +0800663
Tomeu Vizoso656b8032016-02-15 09:25:06 +0100664 ret = driver_match_device(drv, dev);
665 if (ret == 0) {
666 /* no match */
Ming Lei49b420a2009-01-21 23:27:47 +0800667 return 0;
Tomeu Vizoso656b8032016-02-15 09:25:06 +0100668 } else if (ret == -EPROBE_DEFER) {
669 dev_dbg(dev, "Device match requests probe deferral\n");
670 driver_deferred_probe_add(dev);
671 } else if (ret < 0) {
672 dev_dbg(dev, "Bus failed to match device: %d", ret);
673 return ret;
674 } /* ret > 0 means positive match */
Ming Lei49b420a2009-01-21 23:27:47 +0800675
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700676 async_allowed = driver_allows_async_probing(drv);
677
678 if (async_allowed)
679 data->have_async = true;
680
681 if (data->check_async && async_allowed != data->want_async)
682 return 0;
683
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700684 return driver_probe_device(drv, dev);
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800685}
686
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700687static void __device_attach_async_helper(void *_dev, async_cookie_t cookie)
688{
689 struct device *dev = _dev;
690 struct device_attach_data data = {
691 .dev = dev,
692 .check_async = true,
693 .want_async = true,
694 };
695
696 device_lock(dev);
697
Rafael J. Wysockiddef08d2015-07-27 18:03:58 +0300698 if (dev->parent)
699 pm_runtime_get_sync(dev->parent);
700
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700701 bus_for_each_drv(dev->bus, NULL, &data, __device_attach_driver);
702 dev_dbg(dev, "async probe completed\n");
703
704 pm_request_idle(dev);
705
Rafael J. Wysockiddef08d2015-07-27 18:03:58 +0300706 if (dev->parent)
707 pm_runtime_put(dev->parent);
708
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700709 device_unlock(dev);
710
711 put_device(dev);
712}
713
Dmitry Torokhov802a87f2015-05-20 16:36:31 -0700714static int __device_attach(struct device *dev, bool allow_async)
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700715{
716 int ret = 0;
717
718 device_lock(dev);
719 if (dev->driver) {
Tomeu Vizoso6b9cb422016-01-07 16:46:12 +0100720 if (device_is_bound(dev)) {
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700721 ret = 1;
722 goto out_unlock;
723 }
724 ret = device_bind_driver(dev);
725 if (ret == 0)
726 ret = 1;
727 else {
728 dev->driver = NULL;
729 ret = 0;
730 }
731 } else {
732 struct device_attach_data data = {
733 .dev = dev,
734 .check_async = allow_async,
735 .want_async = false,
736 };
737
Rafael J. Wysockiddef08d2015-07-27 18:03:58 +0300738 if (dev->parent)
739 pm_runtime_get_sync(dev->parent);
740
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700741 ret = bus_for_each_drv(dev->bus, NULL, &data,
742 __device_attach_driver);
743 if (!ret && allow_async && data.have_async) {
744 /*
745 * If we could not find appropriate driver
746 * synchronously and we are allowed to do
747 * async probes and there are drivers that
748 * want to probe asynchronously, we'll
749 * try them.
750 */
751 dev_dbg(dev, "scheduling asynchronous probe\n");
752 get_device(dev);
753 async_schedule(__device_attach_async_helper, dev);
754 } else {
755 pm_request_idle(dev);
756 }
Rafael J. Wysockiddef08d2015-07-27 18:03:58 +0300757
758 if (dev->parent)
759 pm_runtime_put(dev->parent);
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700760 }
761out_unlock:
762 device_unlock(dev);
763 return ret;
764}
765
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800766/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800767 * device_attach - try to attach device to a driver.
768 * @dev: device.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800769 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800770 * Walk the list of drivers that the bus has and call
771 * driver_probe_device() for each pair. If a compatible
772 * pair is found, break out and return.
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700773 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800774 * Returns 1 if the device was bound to a driver;
Dmitry Torokhov59a3cd72009-05-05 20:38:28 -0700775 * 0 if no matching driver was found;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800776 * -ENODEV if the device is not registered.
Alan Sternbf74ad52005-11-17 16:54:12 -0500777 *
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800778 * When called for a USB interface, @dev->parent lock must be held.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800779 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800780int device_attach(struct device *dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800781{
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700782 return __device_attach(dev, false);
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800783}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800784EXPORT_SYMBOL_GPL(device_attach);
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800785
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700786void device_initial_probe(struct device *dev)
787{
788 __device_attach(dev, true);
789}
790
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800791static int __driver_attach(struct device *dev, void *data)
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800792{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800793 struct device_driver *drv = data;
Tomeu Vizoso656b8032016-02-15 09:25:06 +0100794 int ret;
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800795
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700796 /*
797 * Lock device and try to bind to it. We drop the error
798 * here and always return 0, because we need to keep trying
799 * to bind to devices and some drivers will return an error
800 * simply if it didn't support the device.
801 *
802 * driver_probe_device() will spit a warning if there
803 * is an error.
804 */
805
Tomeu Vizoso656b8032016-02-15 09:25:06 +0100806 ret = driver_match_device(drv, dev);
807 if (ret == 0) {
808 /* no match */
Arjan van de Ven6cd49582008-09-14 08:32:06 -0700809 return 0;
Tomeu Vizoso656b8032016-02-15 09:25:06 +0100810 } else if (ret == -EPROBE_DEFER) {
811 dev_dbg(dev, "Device match requests probe deferral\n");
812 driver_deferred_probe_add(dev);
813 } else if (ret < 0) {
814 dev_dbg(dev, "Bus failed to match device: %d", ret);
815 return ret;
816 } /* ret > 0 means positive match */
Arjan van de Ven6cd49582008-09-14 08:32:06 -0700817
Alan Sternbf74ad52005-11-17 16:54:12 -0500818 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800819 device_lock(dev->parent);
820 device_lock(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700821 if (!dev->driver)
822 driver_probe_device(drv, dev);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800823 device_unlock(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500824 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800825 device_unlock(dev->parent);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700826
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800827 return 0;
828}
829
830/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800831 * driver_attach - try to bind driver to devices.
832 * @drv: driver.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800833 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800834 * Walk the list of devices that the bus has on it and try to
835 * match the driver with each one. If driver_probe_device()
836 * returns 0 and the @dev->driver is set, we've found a
837 * compatible pair.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800838 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800839int driver_attach(struct device_driver *drv)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800840{
Andrew Mortonf86db392006-08-14 22:43:20 -0700841 return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800842}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800843EXPORT_SYMBOL_GPL(driver_attach);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800844
Stefan Richterab71c6f2007-06-17 11:02:12 +0200845/*
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800846 * __device_release_driver() must be called with @dev lock held.
847 * When called for a USB interface, @dev->parent lock must be held as well.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800848 */
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100849static void __device_release_driver(struct device *dev, struct device *parent)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800850{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800851 struct device_driver *drv;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800852
Alan Sternef2c5172007-11-16 11:57:28 -0500853 drv = dev->driver;
Alan Sternc95a6b02005-05-06 15:38:33 -0400854 if (drv) {
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700855 if (driver_allows_async_probing(drv))
856 async_synchronize_full();
857
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100858 while (device_links_busy(dev)) {
859 device_unlock(dev);
860 if (parent)
861 device_unlock(parent);
862
863 device_links_unbind_consumers(dev);
864 if (parent)
865 device_lock(parent);
866
867 device_lock(dev);
868 /*
869 * A concurrent invocation of the same function might
870 * have released the driver successfully while this one
871 * was waiting, so check for that.
872 */
873 if (dev->driver != drv)
874 return;
875 }
876
Rafael J. Wysockie1866b32011-04-29 00:33:45 +0200877 pm_runtime_get_sync(dev);
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100878 pm_runtime_clean_up_links(dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200879
Kay Sievers1901fb22006-10-07 21:55:55 +0200880 driver_sysfs_remove(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700881
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000882 if (dev->bus)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700883 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000884 BUS_NOTIFY_UNBIND_DRIVER,
885 dev);
886
Rafael J. Wysockibaab52d2013-11-07 01:51:15 +0100887 pm_runtime_put_sync(dev);
Rafael J. Wysockie1866b32011-04-29 00:33:45 +0200888
Alan Stern0f836ca2006-03-31 11:52:25 -0500889 if (dev->bus && dev->bus->remove)
Russell King594c8282006-01-05 14:29:51 +0000890 dev->bus->remove(dev);
891 else if (drv->remove)
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700892 drv->remove(dev);
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100893
894 device_links_driver_cleanup(dev);
Sricharan R09515ef2017-04-10 16:51:01 +0530895 dma_deconfigure(dev);
896
Tejun Heo9ac78492007-01-20 16:00:26 +0900897 devres_release_all(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700898 dev->driver = NULL;
Hans de Goede0998d062012-05-23 00:09:34 +0200899 dev_set_drvdata(dev, NULL);
Rafael J. Wysockie90d5532015-03-20 13:59:27 +0100900 if (dev->pm_domain && dev->pm_domain->dismiss)
901 dev->pm_domain->dismiss(dev);
Ulf Hansson5de85b9d2015-11-18 11:48:39 +0100902 pm_runtime_reinit(dev);
Rafael J. Wysocki08810a412017-10-25 14:12:29 +0200903 dev_pm_set_driver_flags(dev, 0);
Rafael J. Wysockie90d5532015-03-20 13:59:27 +0100904
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800905 klist_remove(&dev->p->knode_driver);
Tomeu Vizosoaa8e54b52016-01-07 16:46:14 +0100906 device_pm_check_callbacks(dev);
Joerg Roedel309b7d62009-04-24 14:57:00 +0200907 if (dev->bus)
908 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
909 BUS_NOTIFY_UNBOUND_DRIVER,
910 dev);
Dmitry Torokhov1455cf82017-07-19 17:24:30 -0700911
912 kobject_uevent(&dev->kobj, KOBJ_UNBIND);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700913 }
Alan Sternc95a6b02005-05-06 15:38:33 -0400914}
915
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100916void device_release_driver_internal(struct device *dev,
917 struct device_driver *drv,
918 struct device *parent)
Rafael J. Wysocki4bdb3552016-10-10 14:37:56 +0200919{
920 if (parent)
921 device_lock(parent);
922
923 device_lock(dev);
924 if (!drv || drv == dev->driver)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100925 __device_release_driver(dev, parent);
Rafael J. Wysocki4bdb3552016-10-10 14:37:56 +0200926
927 device_unlock(dev);
928 if (parent)
929 device_unlock(parent);
930}
931
Stefan Richterab71c6f2007-06-17 11:02:12 +0200932/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800933 * device_release_driver - manually detach device from driver.
934 * @dev: device.
Stefan Richterab71c6f2007-06-17 11:02:12 +0200935 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800936 * Manually detach device from driver.
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800937 * When called for a USB interface, @dev->parent lock must be held.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100938 *
939 * If this function is to be called with @dev->parent lock held, ensure that
940 * the device's consumers are unbound in advance or that their locks can be
941 * acquired under the @dev->parent lock.
Stefan Richterab71c6f2007-06-17 11:02:12 +0200942 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800943void device_release_driver(struct device *dev)
Alan Sternc95a6b02005-05-06 15:38:33 -0400944{
945 /*
946 * If anyone calls device_release_driver() recursively from
947 * within their ->remove callback for the same device, they
948 * will deadlock right here.
949 */
Rafael J. Wysocki4bdb3552016-10-10 14:37:56 +0200950 device_release_driver_internal(dev, NULL, NULL);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800951}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800952EXPORT_SYMBOL_GPL(device_release_driver);
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -0800953
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800954/**
955 * driver_detach - detach driver from all devices it controls.
956 * @drv: driver.
957 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800958void driver_detach(struct device_driver *drv)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800959{
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800960 struct device_private *dev_prv;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800961 struct device *dev;
Alan Sternc95a6b02005-05-06 15:38:33 -0400962
963 for (;;) {
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800964 spin_lock(&drv->p->klist_devices.k_lock);
965 if (list_empty(&drv->p->klist_devices.k_list)) {
966 spin_unlock(&drv->p->klist_devices.k_lock);
Alan Sternc95a6b02005-05-06 15:38:33 -0400967 break;
968 }
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800969 dev_prv = list_entry(drv->p->klist_devices.k_list.prev,
970 struct device_private,
971 knode_driver.n_node);
972 dev = dev_prv->device;
Alan Sternc95a6b02005-05-06 15:38:33 -0400973 get_device(dev);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800974 spin_unlock(&drv->p->klist_devices.k_lock);
Rafael J. Wysocki4bdb3552016-10-10 14:37:56 +0200975 device_release_driver_internal(dev, drv, dev->parent);
Alan Sternc95a6b02005-05-06 15:38:33 -0400976 put_device(dev);
977 }
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800978}