blob: e3bbed8a617c257373a1fa2d75318d9ff930601a [file] [log] [blame]
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -08001/*
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08002 * drivers/base/dd.c - The core device/driver interactions.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -08003 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08004 * This file contains the (sometimes tricky) code that controls the
5 * interactions between devices and drivers, which primarily includes
6 * driver binding and unbinding.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -08007 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08008 * All of this code used to exist in drivers/base/bus.c, but was
9 * relocated to here in the name of compartmentalization (since it wasn't
10 * strictly code just for the 'struct bus_type'.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080011 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080012 * Copyright (c) 2002-5 Patrick Mochel
13 * Copyright (c) 2002-3 Open Source Development Labs
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -070014 * Copyright (c) 2007-2009 Greg Kroah-Hartman <gregkh@suse.de>
15 * Copyright (c) 2007-2009 Novell Inc.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080016 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080017 * This file is released under the GPLv2
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080018 */
19
20#include <linux/device.h>
Arjan van de Ven216773a2009-02-14 01:59:06 +010021#include <linux/delay.h>
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080022#include <linux/module.h>
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -070023#include <linux/kthread.h>
Andrew Morton735a7ff2006-10-27 11:42:37 -070024#include <linux/wait.h>
Arjan van de Ven216773a2009-02-14 01:59:06 +010025#include <linux/async.h>
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +020026#include <linux/pm_runtime.h>
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080027
28#include "base.h"
29#include "power/power.h"
30
Grant Likelyd1c34142012-03-05 08:47:41 -070031/*
32 * Deferred Probe infrastructure.
33 *
34 * Sometimes driver probe order matters, but the kernel doesn't always have
35 * dependency information which means some drivers will get probed before a
36 * resource it depends on is available. For example, an SDHCI driver may
37 * first need a GPIO line from an i2c GPIO controller before it can be
38 * initialized. If a required resource is not available yet, a driver can
39 * request probing to be deferred by returning -EPROBE_DEFER from its probe hook
40 *
41 * Deferred probe maintains two lists of devices, a pending list and an active
42 * list. A driver returning -EPROBE_DEFER causes the device to be added to the
43 * pending list. A successful driver probe will trigger moving all devices
44 * from the pending to the active list so that the workqueue will eventually
45 * retry them.
46 *
47 * The deferred_probe_mutex must be held any time the deferred_probe_*_list
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -080048 * of the (struct device*)->p->deferred_probe pointers are manipulated
Grant Likelyd1c34142012-03-05 08:47:41 -070049 */
50static DEFINE_MUTEX(deferred_probe_mutex);
51static LIST_HEAD(deferred_probe_pending_list);
52static LIST_HEAD(deferred_probe_active_list);
53static struct workqueue_struct *deferred_wq;
54
55/**
56 * deferred_probe_work_func() - Retry probing devices in the active list.
57 */
58static void deferred_probe_work_func(struct work_struct *work)
59{
60 struct device *dev;
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -080061 struct device_private *private;
Grant Likelyd1c34142012-03-05 08:47:41 -070062 /*
63 * This block processes every device in the deferred 'active' list.
64 * Each device is removed from the active list and passed to
65 * bus_probe_device() to re-attempt the probe. The loop continues
66 * until every device in the active list is removed and retried.
67 *
68 * Note: Once the device is removed from the list and the mutex is
69 * released, it is possible for the device get freed by another thread
70 * and cause a illegal pointer dereference. This code uses
71 * get/put_device() to ensure the device structure cannot disappear
72 * from under our feet.
73 */
74 mutex_lock(&deferred_probe_mutex);
75 while (!list_empty(&deferred_probe_active_list)) {
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -080076 private = list_first_entry(&deferred_probe_active_list,
77 typeof(*dev->p), deferred_probe);
78 dev = private->device;
79 list_del_init(&private->deferred_probe);
Grant Likelyd1c34142012-03-05 08:47:41 -070080
81 get_device(dev);
82
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -080083 /*
84 * Drop the mutex while probing each device; the probe path may
85 * manipulate the deferred list
86 */
Grant Likelyd1c34142012-03-05 08:47:41 -070087 mutex_unlock(&deferred_probe_mutex);
Mark Brown81535842012-07-05 14:04:44 +010088
89 /*
90 * Force the device to the end of the dpm_list since
91 * the PM code assumes that the order we add things to
92 * the list is a good order for suspend but deferred
93 * probe makes that very unsafe.
94 */
95 device_pm_lock();
96 device_pm_move_last(dev);
97 device_pm_unlock();
98
Grant Likelyd1c34142012-03-05 08:47:41 -070099 dev_dbg(dev, "Retrying from deferred list\n");
100 bus_probe_device(dev);
Mark Brown81535842012-07-05 14:04:44 +0100101
Grant Likelyd1c34142012-03-05 08:47:41 -0700102 mutex_lock(&deferred_probe_mutex);
103
104 put_device(dev);
105 }
106 mutex_unlock(&deferred_probe_mutex);
107}
108static DECLARE_WORK(deferred_probe_work, deferred_probe_work_func);
109
110static void driver_deferred_probe_add(struct device *dev)
111{
112 mutex_lock(&deferred_probe_mutex);
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -0800113 if (list_empty(&dev->p->deferred_probe)) {
Grant Likelyd1c34142012-03-05 08:47:41 -0700114 dev_dbg(dev, "Added to deferred list\n");
Kuninori Morimoto1d29cfa52012-05-29 18:46:06 -0700115 list_add_tail(&dev->p->deferred_probe, &deferred_probe_pending_list);
Grant Likelyd1c34142012-03-05 08:47:41 -0700116 }
117 mutex_unlock(&deferred_probe_mutex);
118}
119
120void driver_deferred_probe_del(struct device *dev)
121{
122 mutex_lock(&deferred_probe_mutex);
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -0800123 if (!list_empty(&dev->p->deferred_probe)) {
Grant Likelyd1c34142012-03-05 08:47:41 -0700124 dev_dbg(dev, "Removed from deferred list\n");
Greg Kroah-Hartmanef8a3fd2012-03-08 12:17:22 -0800125 list_del_init(&dev->p->deferred_probe);
Grant Likelyd1c34142012-03-05 08:47:41 -0700126 }
127 mutex_unlock(&deferred_probe_mutex);
128}
129
130static bool driver_deferred_probe_enable = false;
131/**
132 * driver_deferred_probe_trigger() - Kick off re-probing deferred devices
133 *
134 * This functions moves all devices from the pending list to the active
135 * list and schedules the deferred probe workqueue to process them. It
136 * should be called anytime a driver is successfully bound to a device.
137 */
138static void driver_deferred_probe_trigger(void)
139{
140 if (!driver_deferred_probe_enable)
141 return;
142
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -0800143 /*
144 * A successful probe means that all the devices in the pending list
Grant Likelyd1c34142012-03-05 08:47:41 -0700145 * should be triggered to be reprobed. Move all the deferred devices
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -0800146 * into the active list so they can be retried by the workqueue
147 */
Grant Likelyd1c34142012-03-05 08:47:41 -0700148 mutex_lock(&deferred_probe_mutex);
149 list_splice_tail_init(&deferred_probe_pending_list,
150 &deferred_probe_active_list);
151 mutex_unlock(&deferred_probe_mutex);
152
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -0800153 /*
154 * Kick the re-probe thread. It may already be scheduled, but it is
155 * safe to kick it again.
156 */
Grant Likelyd1c34142012-03-05 08:47:41 -0700157 queue_work(deferred_wq, &deferred_probe_work);
158}
159
160/**
161 * deferred_probe_initcall() - Enable probing of deferred devices
162 *
163 * We don't want to get in the way when the bulk of drivers are getting probed.
164 * Instead, this initcall makes sure that deferred probing is delayed until
165 * late_initcall time.
166 */
167static int deferred_probe_initcall(void)
168{
169 deferred_wq = create_singlethread_workqueue("deferwq");
170 if (WARN_ON(!deferred_wq))
171 return -ENOMEM;
172
173 driver_deferred_probe_enable = true;
174 driver_deferred_probe_trigger();
175 return 0;
176}
177late_initcall(deferred_probe_initcall);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800178
Kay Sievers1901fb22006-10-07 21:55:55 +0200179static void driver_bound(struct device *dev)
180{
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800181 if (klist_node_attached(&dev->p->knode_driver)) {
Kay Sievers1901fb22006-10-07 21:55:55 +0200182 printk(KERN_WARNING "%s: device %s already bound\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800183 __func__, kobject_name(&dev->kobj));
Kay Sievers1901fb22006-10-07 21:55:55 +0200184 return;
185 }
186
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100187 pr_debug("driver: '%s': %s: bound to device '%s'\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800188 __func__, dev->driver->name);
Kay Sievers1901fb22006-10-07 21:55:55 +0200189
Stefani Seiboldfbb88fa2010-03-06 17:50:14 +0100190 klist_add_tail(&dev->p->knode_driver, &dev->driver->p->klist_devices);
191
Greg Kroah-Hartman8b0372a2012-03-08 12:20:37 -0800192 /*
193 * Make sure the device is no longer in one of the deferred lists and
194 * kick off retrying all pending devices
195 */
Grant Likelyd1c34142012-03-05 08:47:41 -0700196 driver_deferred_probe_del(dev);
197 driver_deferred_probe_trigger();
198
Kay Sievers1901fb22006-10-07 21:55:55 +0200199 if (dev->bus)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700200 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
Kay Sievers1901fb22006-10-07 21:55:55 +0200201 BUS_NOTIFY_BOUND_DRIVER, dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200202}
203
204static int driver_sysfs_add(struct device *dev)
205{
206 int ret;
207
Magnus Damm45daef02010-07-23 19:56:18 +0900208 if (dev->bus)
209 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
210 BUS_NOTIFY_BIND_DRIVER, dev);
211
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800212 ret = sysfs_create_link(&dev->driver->p->kobj, &dev->kobj,
Kay Sievers1901fb22006-10-07 21:55:55 +0200213 kobject_name(&dev->kobj));
214 if (ret == 0) {
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800215 ret = sysfs_create_link(&dev->kobj, &dev->driver->p->kobj,
Kay Sievers1901fb22006-10-07 21:55:55 +0200216 "driver");
217 if (ret)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800218 sysfs_remove_link(&dev->driver->p->kobj,
Kay Sievers1901fb22006-10-07 21:55:55 +0200219 kobject_name(&dev->kobj));
220 }
221 return ret;
222}
223
224static void driver_sysfs_remove(struct device *dev)
225{
226 struct device_driver *drv = dev->driver;
227
228 if (drv) {
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800229 sysfs_remove_link(&drv->p->kobj, kobject_name(&dev->kobj));
Kay Sievers1901fb22006-10-07 21:55:55 +0200230 sysfs_remove_link(&dev->kobj, "driver");
231 }
232}
233
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800234/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800235 * device_bind_driver - bind a driver to one device.
236 * @dev: device.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800237 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800238 * Allow manual attachment of a driver to a device.
239 * Caller must have already set @dev->driver.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800240 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800241 * Note that this does not modify the bus reference count
242 * nor take the bus's rwsem. Please verify those are accounted
243 * for before calling this. (It is ok to call with no other effort
244 * from a driver's probe() method.)
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700245 *
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800246 * This function must be called with the device lock held.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800247 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700248int device_bind_driver(struct device *dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800249{
Cornelia Huckcb986b72006-11-27 10:35:12 +0100250 int ret;
251
252 ret = driver_sysfs_add(dev);
253 if (!ret)
254 driver_bound(dev);
255 return ret;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800256}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800257EXPORT_SYMBOL_GPL(device_bind_driver);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800258
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700259static atomic_t probe_count = ATOMIC_INIT(0);
Andrew Morton735a7ff2006-10-27 11:42:37 -0700260static DECLARE_WAIT_QUEUE_HEAD(probe_waitqueue);
261
Cornelia Huck21c7f302007-02-05 16:15:25 -0800262static int really_probe(struct device *dev, struct device_driver *drv)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800263{
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700264 int ret = 0;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800265
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700266 atomic_inc(&probe_count);
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800267 pr_debug("bus: '%s': %s: probing driver %s with device %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100268 drv->bus->name, __func__, drv->name, dev_name(dev));
Tejun Heo9ac78492007-01-20 16:00:26 +0900269 WARN_ON(!list_empty(&dev->devres_head));
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800270
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800271 dev->driver = drv;
Kay Sievers1901fb22006-10-07 21:55:55 +0200272 if (driver_sysfs_add(dev)) {
273 printk(KERN_ERR "%s: driver_sysfs_add(%s) failed\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100274 __func__, dev_name(dev));
Kay Sievers1901fb22006-10-07 21:55:55 +0200275 goto probe_failed;
276 }
277
Russell King594c8282006-01-05 14:29:51 +0000278 if (dev->bus->probe) {
279 ret = dev->bus->probe(dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200280 if (ret)
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700281 goto probe_failed;
Russell King594c8282006-01-05 14:29:51 +0000282 } else if (drv->probe) {
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700283 ret = drv->probe(dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200284 if (ret)
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700285 goto probe_failed;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800286 }
Kay Sievers1901fb22006-10-07 21:55:55 +0200287
288 driver_bound(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700289 ret = 1;
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800290 pr_debug("bus: '%s': %s: bound device %s to driver %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100291 drv->bus->name, __func__, dev_name(dev), drv->name);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700292 goto done;
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700293
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700294probe_failed:
Tejun Heo9ac78492007-01-20 16:00:26 +0900295 devres_release_all(dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200296 driver_sysfs_remove(dev);
297 dev->driver = NULL;
Hans de Goede0998d062012-05-23 00:09:34 +0200298 dev_set_drvdata(dev, NULL);
Kay Sievers1901fb22006-10-07 21:55:55 +0200299
Grant Likelyd1c34142012-03-05 08:47:41 -0700300 if (ret == -EPROBE_DEFER) {
301 /* Driver requested deferred probing */
302 dev_info(dev, "Driver %s requests probe deferral\n", drv->name);
303 driver_deferred_probe_add(dev);
304 } else if (ret != -ENODEV && ret != -ENXIO) {
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700305 /* driver matched but the probe failed */
306 printk(KERN_WARNING
307 "%s: probe of %s failed with error %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100308 drv->name, dev_name(dev), ret);
Wolfram Sangbcbe4f92011-09-20 19:41:17 +0200309 } else {
310 pr_debug("%s: probe of %s rejects match %d\n",
311 drv->name, dev_name(dev), ret);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700312 }
Cornelia Huckc578abb2006-11-27 10:35:10 +0100313 /*
314 * Ignore errors returned by ->probe so that the next driver can try
315 * its luck.
316 */
317 ret = 0;
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700318done:
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700319 atomic_dec(&probe_count);
Andrew Morton735a7ff2006-10-27 11:42:37 -0700320 wake_up(&probe_waitqueue);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700321 return ret;
322}
323
324/**
325 * driver_probe_done
326 * Determine if the probe sequence is finished or not.
327 *
328 * Should somehow figure out how to use a semaphore, not an atomic variable...
329 */
330int driver_probe_done(void)
331{
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800332 pr_debug("%s: probe_count = %d\n", __func__,
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700333 atomic_read(&probe_count));
334 if (atomic_read(&probe_count))
335 return -EBUSY;
336 return 0;
337}
338
339/**
Arjan van de Ven216773a2009-02-14 01:59:06 +0100340 * wait_for_device_probe
341 * Wait for device probing to be completed.
Arjan van de Ven216773a2009-02-14 01:59:06 +0100342 */
Ming Leib23530e2009-02-21 16:45:07 +0800343void wait_for_device_probe(void)
Arjan van de Ven216773a2009-02-14 01:59:06 +0100344{
345 /* wait for the known devices to complete their probing */
Ming Leib23530e2009-02-21 16:45:07 +0800346 wait_event(probe_waitqueue, atomic_read(&probe_count) == 0);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100347 async_synchronize_full();
Arjan van de Ven216773a2009-02-14 01:59:06 +0100348}
Arjan van de Vend4d52912009-04-21 13:32:54 -0700349EXPORT_SYMBOL_GPL(wait_for_device_probe);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100350
351/**
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700352 * driver_probe_device - attempt to bind device & driver together
353 * @drv: driver to bind a device to
354 * @dev: device to try to bind to the driver
355 *
Ming Lei49b420a2009-01-21 23:27:47 +0800356 * This function returns -ENODEV if the device is not registered,
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200357 * 1 if the device is bound successfully and 0 otherwise.
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700358 *
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800359 * This function must be called with @dev lock held. When called for a
360 * USB interface, @dev->parent lock must be held as well.
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700361 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800362int driver_probe_device(struct device_driver *drv, struct device *dev)
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700363{
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700364 int ret = 0;
365
Alan Sternf2eaae12006-09-18 16:22:34 -0400366 if (!device_is_registered(dev))
367 return -ENODEV;
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700368
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800369 pr_debug("bus: '%s': %s: matched device %s with driver %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100370 drv->bus->name, __func__, dev_name(dev), drv->name);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700371
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200372 pm_runtime_barrier(dev);
Cornelia Huck21c7f302007-02-05 16:15:25 -0800373 ret = really_probe(dev, drv);
Rafael J. Wysockieed5d212012-07-12 11:51:48 +0200374 pm_runtime_idle(dev);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700375
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700376 return ret;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800377}
378
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800379static int __device_attach(struct device_driver *drv, void *data)
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800380{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800381 struct device *dev = data;
Ming Lei49b420a2009-01-21 23:27:47 +0800382
383 if (!driver_match_device(drv, dev))
384 return 0;
385
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700386 return driver_probe_device(drv, dev);
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800387}
388
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800389/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800390 * device_attach - try to attach device to a driver.
391 * @dev: device.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800392 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800393 * Walk the list of drivers that the bus has and call
394 * driver_probe_device() for each pair. If a compatible
395 * pair is found, break out and return.
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700396 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800397 * Returns 1 if the device was bound to a driver;
Dmitry Torokhov59a3cd72009-05-05 20:38:28 -0700398 * 0 if no matching driver was found;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800399 * -ENODEV if the device is not registered.
Alan Sternbf74ad52005-11-17 16:54:12 -0500400 *
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800401 * When called for a USB interface, @dev->parent lock must be held.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800402 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800403int device_attach(struct device *dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800404{
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700405 int ret = 0;
406
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800407 device_lock(dev);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800408 if (dev->driver) {
Sebastian Ott8497d6a2011-04-12 19:05:37 +0200409 if (klist_node_attached(&dev->p->knode_driver)) {
410 ret = 1;
411 goto out_unlock;
412 }
Andrew Mortonf86db392006-08-14 22:43:20 -0700413 ret = device_bind_driver(dev);
414 if (ret == 0)
415 ret = 1;
Cornelia Huckc6a46692007-02-05 16:15:26 -0800416 else {
417 dev->driver = NULL;
418 ret = 0;
419 }
Cornelia Huck21c7f302007-02-05 16:15:25 -0800420 } else {
Adrian Bunk5adc55d2007-03-27 03:02:51 +0200421 ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach);
Rafael J. Wysockieed5d212012-07-12 11:51:48 +0200422 pm_runtime_idle(dev);
Cornelia Huck21c7f302007-02-05 16:15:25 -0800423 }
Sebastian Ott8497d6a2011-04-12 19:05:37 +0200424out_unlock:
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800425 device_unlock(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700426 return ret;
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800427}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800428EXPORT_SYMBOL_GPL(device_attach);
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800429
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800430static int __driver_attach(struct device *dev, void *data)
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800431{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800432 struct device_driver *drv = data;
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800433
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700434 /*
435 * Lock device and try to bind to it. We drop the error
436 * here and always return 0, because we need to keep trying
437 * to bind to devices and some drivers will return an error
438 * simply if it didn't support the device.
439 *
440 * driver_probe_device() will spit a warning if there
441 * is an error.
442 */
443
Ming Lei49b420a2009-01-21 23:27:47 +0800444 if (!driver_match_device(drv, dev))
Arjan van de Ven6cd49582008-09-14 08:32:06 -0700445 return 0;
446
Alan Sternbf74ad52005-11-17 16:54:12 -0500447 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800448 device_lock(dev->parent);
449 device_lock(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700450 if (!dev->driver)
451 driver_probe_device(drv, dev);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800452 device_unlock(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500453 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800454 device_unlock(dev->parent);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700455
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800456 return 0;
457}
458
459/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800460 * driver_attach - try to bind driver to devices.
461 * @drv: driver.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800462 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800463 * Walk the list of devices that the bus has on it and try to
464 * match the driver with each one. If driver_probe_device()
465 * returns 0 and the @dev->driver is set, we've found a
466 * compatible pair.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800467 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800468int driver_attach(struct device_driver *drv)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800469{
Andrew Mortonf86db392006-08-14 22:43:20 -0700470 return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800471}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800472EXPORT_SYMBOL_GPL(driver_attach);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800473
Stefan Richterab71c6f2007-06-17 11:02:12 +0200474/*
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800475 * __device_release_driver() must be called with @dev lock held.
476 * When called for a USB interface, @dev->parent lock must be held as well.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800477 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800478static void __device_release_driver(struct device *dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800479{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800480 struct device_driver *drv;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800481
Alan Sternef2c5172007-11-16 11:57:28 -0500482 drv = dev->driver;
Alan Sternc95a6b02005-05-06 15:38:33 -0400483 if (drv) {
Rafael J. Wysockie1866b32011-04-29 00:33:45 +0200484 pm_runtime_get_sync(dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200485
Kay Sievers1901fb22006-10-07 21:55:55 +0200486 driver_sysfs_remove(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700487
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000488 if (dev->bus)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700489 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000490 BUS_NOTIFY_UNBIND_DRIVER,
491 dev);
492
Rafael J. Wysockie1866b32011-04-29 00:33:45 +0200493 pm_runtime_put_sync(dev);
494
Alan Stern0f836ca2006-03-31 11:52:25 -0500495 if (dev->bus && dev->bus->remove)
Russell King594c8282006-01-05 14:29:51 +0000496 dev->bus->remove(dev);
497 else if (drv->remove)
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700498 drv->remove(dev);
Tejun Heo9ac78492007-01-20 16:00:26 +0900499 devres_release_all(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700500 dev->driver = NULL;
Hans de Goede0998d062012-05-23 00:09:34 +0200501 dev_set_drvdata(dev, NULL);
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800502 klist_remove(&dev->p->knode_driver);
Joerg Roedel309b7d62009-04-24 14:57:00 +0200503 if (dev->bus)
504 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
505 BUS_NOTIFY_UNBOUND_DRIVER,
506 dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200507
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700508 }
Alan Sternc95a6b02005-05-06 15:38:33 -0400509}
510
Stefan Richterab71c6f2007-06-17 11:02:12 +0200511/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800512 * device_release_driver - manually detach device from driver.
513 * @dev: device.
Stefan Richterab71c6f2007-06-17 11:02:12 +0200514 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800515 * Manually detach device from driver.
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800516 * When called for a USB interface, @dev->parent lock must be held.
Stefan Richterab71c6f2007-06-17 11:02:12 +0200517 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800518void device_release_driver(struct device *dev)
Alan Sternc95a6b02005-05-06 15:38:33 -0400519{
520 /*
521 * If anyone calls device_release_driver() recursively from
522 * within their ->remove callback for the same device, they
523 * will deadlock right here.
524 */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800525 device_lock(dev);
Alan Sternc95a6b02005-05-06 15:38:33 -0400526 __device_release_driver(dev);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800527 device_unlock(dev);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800528}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800529EXPORT_SYMBOL_GPL(device_release_driver);
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -0800530
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800531/**
532 * driver_detach - detach driver from all devices it controls.
533 * @drv: driver.
534 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800535void driver_detach(struct device_driver *drv)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800536{
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800537 struct device_private *dev_prv;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800538 struct device *dev;
Alan Sternc95a6b02005-05-06 15:38:33 -0400539
540 for (;;) {
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800541 spin_lock(&drv->p->klist_devices.k_lock);
542 if (list_empty(&drv->p->klist_devices.k_list)) {
543 spin_unlock(&drv->p->klist_devices.k_lock);
Alan Sternc95a6b02005-05-06 15:38:33 -0400544 break;
545 }
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800546 dev_prv = list_entry(drv->p->klist_devices.k_list.prev,
547 struct device_private,
548 knode_driver.n_node);
549 dev = dev_prv->device;
Alan Sternc95a6b02005-05-06 15:38:33 -0400550 get_device(dev);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800551 spin_unlock(&drv->p->klist_devices.k_lock);
Alan Sternc95a6b02005-05-06 15:38:33 -0400552
Alan Sternbf74ad52005-11-17 16:54:12 -0500553 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800554 device_lock(dev->parent);
555 device_lock(dev);
Alan Sternc95a6b02005-05-06 15:38:33 -0400556 if (dev->driver == drv)
557 __device_release_driver(dev);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800558 device_unlock(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500559 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800560 device_unlock(dev->parent);
Alan Sternc95a6b02005-05-06 15:38:33 -0400561 put_device(dev);
562 }
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800563}
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700564
565/*
566 * These exports can't be _GPL due to .h files using this within them, and it
567 * might break something that was previously working...
568 */
569void *dev_get_drvdata(const struct device *dev)
570{
571 if (dev && dev->p)
572 return dev->p->driver_data;
573 return NULL;
574}
575EXPORT_SYMBOL(dev_get_drvdata);
576
Uwe Kleine-Königc8705082011-04-20 09:44:46 +0200577int dev_set_drvdata(struct device *dev, void *data)
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700578{
579 int error;
580
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700581 if (!dev->p) {
582 error = device_private_init(dev);
583 if (error)
Uwe Kleine-Königc8705082011-04-20 09:44:46 +0200584 return error;
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700585 }
586 dev->p->driver_data = data;
Uwe Kleine-Königc8705082011-04-20 09:44:46 +0200587 return 0;
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700588}
589EXPORT_SYMBOL(dev_set_drvdata);