blob: 442b7641a086e90889d6019bc78fef58e5fb9ea4 [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
48 * of the (struct device*)->deferred_probe pointers are manipulated
49 */
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;
61 /*
62 * This block processes every device in the deferred 'active' list.
63 * Each device is removed from the active list and passed to
64 * bus_probe_device() to re-attempt the probe. The loop continues
65 * until every device in the active list is removed and retried.
66 *
67 * Note: Once the device is removed from the list and the mutex is
68 * released, it is possible for the device get freed by another thread
69 * and cause a illegal pointer dereference. This code uses
70 * get/put_device() to ensure the device structure cannot disappear
71 * from under our feet.
72 */
73 mutex_lock(&deferred_probe_mutex);
74 while (!list_empty(&deferred_probe_active_list)) {
75 dev = list_first_entry(&deferred_probe_active_list,
76 typeof(*dev), deferred_probe);
77 list_del_init(&dev->deferred_probe);
78
79 get_device(dev);
80
81 /* Drop the mutex while probing each device; the probe path
82 * may manipulate the deferred list */
83 mutex_unlock(&deferred_probe_mutex);
84 dev_dbg(dev, "Retrying from deferred list\n");
85 bus_probe_device(dev);
86 mutex_lock(&deferred_probe_mutex);
87
88 put_device(dev);
89 }
90 mutex_unlock(&deferred_probe_mutex);
91}
92static DECLARE_WORK(deferred_probe_work, deferred_probe_work_func);
93
94static void driver_deferred_probe_add(struct device *dev)
95{
96 mutex_lock(&deferred_probe_mutex);
97 if (list_empty(&dev->deferred_probe)) {
98 dev_dbg(dev, "Added to deferred list\n");
99 list_add(&dev->deferred_probe, &deferred_probe_pending_list);
100 }
101 mutex_unlock(&deferred_probe_mutex);
102}
103
104void driver_deferred_probe_del(struct device *dev)
105{
106 mutex_lock(&deferred_probe_mutex);
107 if (!list_empty(&dev->deferred_probe)) {
108 dev_dbg(dev, "Removed from deferred list\n");
109 list_del_init(&dev->deferred_probe);
110 }
111 mutex_unlock(&deferred_probe_mutex);
112}
113
114static bool driver_deferred_probe_enable = false;
115/**
116 * driver_deferred_probe_trigger() - Kick off re-probing deferred devices
117 *
118 * This functions moves all devices from the pending list to the active
119 * list and schedules the deferred probe workqueue to process them. It
120 * should be called anytime a driver is successfully bound to a device.
121 */
122static void driver_deferred_probe_trigger(void)
123{
124 if (!driver_deferred_probe_enable)
125 return;
126
127 /* A successful probe means that all the devices in the pending list
128 * should be triggered to be reprobed. Move all the deferred devices
129 * into the active list so they can be retried by the workqueue */
130 mutex_lock(&deferred_probe_mutex);
131 list_splice_tail_init(&deferred_probe_pending_list,
132 &deferred_probe_active_list);
133 mutex_unlock(&deferred_probe_mutex);
134
135 /* Kick the re-probe thread. It may already be scheduled, but
136 * it is safe to kick it again. */
137 queue_work(deferred_wq, &deferred_probe_work);
138}
139
140/**
141 * deferred_probe_initcall() - Enable probing of deferred devices
142 *
143 * We don't want to get in the way when the bulk of drivers are getting probed.
144 * Instead, this initcall makes sure that deferred probing is delayed until
145 * late_initcall time.
146 */
147static int deferred_probe_initcall(void)
148{
149 deferred_wq = create_singlethread_workqueue("deferwq");
150 if (WARN_ON(!deferred_wq))
151 return -ENOMEM;
152
153 driver_deferred_probe_enable = true;
154 driver_deferred_probe_trigger();
155 return 0;
156}
157late_initcall(deferred_probe_initcall);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800158
Kay Sievers1901fb22006-10-07 21:55:55 +0200159static void driver_bound(struct device *dev)
160{
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800161 if (klist_node_attached(&dev->p->knode_driver)) {
Kay Sievers1901fb22006-10-07 21:55:55 +0200162 printk(KERN_WARNING "%s: device %s already bound\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800163 __func__, kobject_name(&dev->kobj));
Kay Sievers1901fb22006-10-07 21:55:55 +0200164 return;
165 }
166
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100167 pr_debug("driver: '%s': %s: bound to device '%s'\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800168 __func__, dev->driver->name);
Kay Sievers1901fb22006-10-07 21:55:55 +0200169
Stefani Seiboldfbb88fa2010-03-06 17:50:14 +0100170 klist_add_tail(&dev->p->knode_driver, &dev->driver->p->klist_devices);
171
Grant Likelyd1c34142012-03-05 08:47:41 -0700172 /* Make sure the device is no longer in one of the deferred lists
173 * and kick off retrying all pending devices */
174 driver_deferred_probe_del(dev);
175 driver_deferred_probe_trigger();
176
Kay Sievers1901fb22006-10-07 21:55:55 +0200177 if (dev->bus)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700178 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
Kay Sievers1901fb22006-10-07 21:55:55 +0200179 BUS_NOTIFY_BOUND_DRIVER, dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200180}
181
182static int driver_sysfs_add(struct device *dev)
183{
184 int ret;
185
Magnus Damm45daef02010-07-23 19:56:18 +0900186 if (dev->bus)
187 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
188 BUS_NOTIFY_BIND_DRIVER, dev);
189
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800190 ret = sysfs_create_link(&dev->driver->p->kobj, &dev->kobj,
Kay Sievers1901fb22006-10-07 21:55:55 +0200191 kobject_name(&dev->kobj));
192 if (ret == 0) {
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800193 ret = sysfs_create_link(&dev->kobj, &dev->driver->p->kobj,
Kay Sievers1901fb22006-10-07 21:55:55 +0200194 "driver");
195 if (ret)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800196 sysfs_remove_link(&dev->driver->p->kobj,
Kay Sievers1901fb22006-10-07 21:55:55 +0200197 kobject_name(&dev->kobj));
198 }
199 return ret;
200}
201
202static void driver_sysfs_remove(struct device *dev)
203{
204 struct device_driver *drv = dev->driver;
205
206 if (drv) {
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800207 sysfs_remove_link(&drv->p->kobj, kobject_name(&dev->kobj));
Kay Sievers1901fb22006-10-07 21:55:55 +0200208 sysfs_remove_link(&dev->kobj, "driver");
209 }
210}
211
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800212/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800213 * device_bind_driver - bind a driver to one device.
214 * @dev: device.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800215 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800216 * Allow manual attachment of a driver to a device.
217 * Caller must have already set @dev->driver.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800218 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800219 * Note that this does not modify the bus reference count
220 * nor take the bus's rwsem. Please verify those are accounted
221 * for before calling this. (It is ok to call with no other effort
222 * from a driver's probe() method.)
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700223 *
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800224 * This function must be called with the device lock held.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800225 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700226int device_bind_driver(struct device *dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800227{
Cornelia Huckcb986b72006-11-27 10:35:12 +0100228 int ret;
229
230 ret = driver_sysfs_add(dev);
231 if (!ret)
232 driver_bound(dev);
233 return ret;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800234}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800235EXPORT_SYMBOL_GPL(device_bind_driver);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800236
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700237static atomic_t probe_count = ATOMIC_INIT(0);
Andrew Morton735a7ff2006-10-27 11:42:37 -0700238static DECLARE_WAIT_QUEUE_HEAD(probe_waitqueue);
239
Cornelia Huck21c7f302007-02-05 16:15:25 -0800240static int really_probe(struct device *dev, struct device_driver *drv)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800241{
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700242 int ret = 0;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800243
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700244 atomic_inc(&probe_count);
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800245 pr_debug("bus: '%s': %s: probing driver %s with device %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100246 drv->bus->name, __func__, drv->name, dev_name(dev));
Tejun Heo9ac78492007-01-20 16:00:26 +0900247 WARN_ON(!list_empty(&dev->devres_head));
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800248
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800249 dev->driver = drv;
Kay Sievers1901fb22006-10-07 21:55:55 +0200250 if (driver_sysfs_add(dev)) {
251 printk(KERN_ERR "%s: driver_sysfs_add(%s) failed\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100252 __func__, dev_name(dev));
Kay Sievers1901fb22006-10-07 21:55:55 +0200253 goto probe_failed;
254 }
255
Russell King594c8282006-01-05 14:29:51 +0000256 if (dev->bus->probe) {
257 ret = dev->bus->probe(dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200258 if (ret)
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700259 goto probe_failed;
Russell King594c8282006-01-05 14:29:51 +0000260 } else if (drv->probe) {
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700261 ret = drv->probe(dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200262 if (ret)
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700263 goto probe_failed;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800264 }
Kay Sievers1901fb22006-10-07 21:55:55 +0200265
266 driver_bound(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700267 ret = 1;
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800268 pr_debug("bus: '%s': %s: bound device %s to driver %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100269 drv->bus->name, __func__, dev_name(dev), drv->name);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700270 goto done;
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700271
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700272probe_failed:
Tejun Heo9ac78492007-01-20 16:00:26 +0900273 devres_release_all(dev);
Kay Sievers1901fb22006-10-07 21:55:55 +0200274 driver_sysfs_remove(dev);
275 dev->driver = NULL;
276
Grant Likelyd1c34142012-03-05 08:47:41 -0700277 if (ret == -EPROBE_DEFER) {
278 /* Driver requested deferred probing */
279 dev_info(dev, "Driver %s requests probe deferral\n", drv->name);
280 driver_deferred_probe_add(dev);
281 } else if (ret != -ENODEV && ret != -ENXIO) {
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700282 /* driver matched but the probe failed */
283 printk(KERN_WARNING
284 "%s: probe of %s failed with error %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100285 drv->name, dev_name(dev), ret);
Wolfram Sangbcbe4f92011-09-20 19:41:17 +0200286 } else {
287 pr_debug("%s: probe of %s rejects match %d\n",
288 drv->name, dev_name(dev), ret);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700289 }
Cornelia Huckc578abb2006-11-27 10:35:10 +0100290 /*
291 * Ignore errors returned by ->probe so that the next driver can try
292 * its luck.
293 */
294 ret = 0;
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700295done:
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700296 atomic_dec(&probe_count);
Andrew Morton735a7ff2006-10-27 11:42:37 -0700297 wake_up(&probe_waitqueue);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700298 return ret;
299}
300
301/**
302 * driver_probe_done
303 * Determine if the probe sequence is finished or not.
304 *
305 * Should somehow figure out how to use a semaphore, not an atomic variable...
306 */
307int driver_probe_done(void)
308{
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800309 pr_debug("%s: probe_count = %d\n", __func__,
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700310 atomic_read(&probe_count));
311 if (atomic_read(&probe_count))
312 return -EBUSY;
313 return 0;
314}
315
316/**
Arjan van de Ven216773a2009-02-14 01:59:06 +0100317 * wait_for_device_probe
318 * Wait for device probing to be completed.
Arjan van de Ven216773a2009-02-14 01:59:06 +0100319 */
Ming Leib23530e2009-02-21 16:45:07 +0800320void wait_for_device_probe(void)
Arjan van de Ven216773a2009-02-14 01:59:06 +0100321{
322 /* wait for the known devices to complete their probing */
Ming Leib23530e2009-02-21 16:45:07 +0800323 wait_event(probe_waitqueue, atomic_read(&probe_count) == 0);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100324 async_synchronize_full();
Arjan van de Ven216773a2009-02-14 01:59:06 +0100325}
Arjan van de Vend4d52912009-04-21 13:32:54 -0700326EXPORT_SYMBOL_GPL(wait_for_device_probe);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100327
328/**
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700329 * driver_probe_device - attempt to bind device & driver together
330 * @drv: driver to bind a device to
331 * @dev: device to try to bind to the driver
332 *
Ming Lei49b420a2009-01-21 23:27:47 +0800333 * This function returns -ENODEV if the device is not registered,
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200334 * 1 if the device is bound successfully and 0 otherwise.
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700335 *
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800336 * This function must be called with @dev lock held. When called for a
337 * USB interface, @dev->parent lock must be held as well.
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700338 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800339int driver_probe_device(struct device_driver *drv, struct device *dev)
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700340{
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700341 int ret = 0;
342
Alan Sternf2eaae12006-09-18 16:22:34 -0400343 if (!device_is_registered(dev))
344 return -ENODEV;
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700345
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800346 pr_debug("bus: '%s': %s: matched device %s with driver %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100347 drv->bus->name, __func__, dev_name(dev), drv->name);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700348
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200349 pm_runtime_get_noresume(dev);
350 pm_runtime_barrier(dev);
Cornelia Huck21c7f302007-02-05 16:15:25 -0800351 ret = really_probe(dev, drv);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200352 pm_runtime_put_sync(dev);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700353
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700354 return ret;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800355}
356
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800357static int __device_attach(struct device_driver *drv, void *data)
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800358{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800359 struct device *dev = data;
Ming Lei49b420a2009-01-21 23:27:47 +0800360
361 if (!driver_match_device(drv, dev))
362 return 0;
363
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700364 return driver_probe_device(drv, dev);
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800365}
366
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800367/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800368 * device_attach - try to attach device to a driver.
369 * @dev: device.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800370 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800371 * Walk the list of drivers that the bus has and call
372 * driver_probe_device() for each pair. If a compatible
373 * pair is found, break out and return.
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700374 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800375 * Returns 1 if the device was bound to a driver;
Dmitry Torokhov59a3cd72009-05-05 20:38:28 -0700376 * 0 if no matching driver was found;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800377 * -ENODEV if the device is not registered.
Alan Sternbf74ad52005-11-17 16:54:12 -0500378 *
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800379 * When called for a USB interface, @dev->parent lock must be held.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800380 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800381int device_attach(struct device *dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800382{
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700383 int ret = 0;
384
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800385 device_lock(dev);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800386 if (dev->driver) {
Sebastian Ott8497d6a2011-04-12 19:05:37 +0200387 if (klist_node_attached(&dev->p->knode_driver)) {
388 ret = 1;
389 goto out_unlock;
390 }
Andrew Mortonf86db392006-08-14 22:43:20 -0700391 ret = device_bind_driver(dev);
392 if (ret == 0)
393 ret = 1;
Cornelia Huckc6a46692007-02-05 16:15:26 -0800394 else {
395 dev->driver = NULL;
396 ret = 0;
397 }
Cornelia Huck21c7f302007-02-05 16:15:25 -0800398 } else {
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200399 pm_runtime_get_noresume(dev);
Adrian Bunk5adc55d2007-03-27 03:02:51 +0200400 ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200401 pm_runtime_put_sync(dev);
Cornelia Huck21c7f302007-02-05 16:15:25 -0800402 }
Sebastian Ott8497d6a2011-04-12 19:05:37 +0200403out_unlock:
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800404 device_unlock(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700405 return ret;
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800406}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800407EXPORT_SYMBOL_GPL(device_attach);
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800408
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800409static int __driver_attach(struct device *dev, void *data)
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800410{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800411 struct device_driver *drv = data;
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800412
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700413 /*
414 * Lock device and try to bind to it. We drop the error
415 * here and always return 0, because we need to keep trying
416 * to bind to devices and some drivers will return an error
417 * simply if it didn't support the device.
418 *
419 * driver_probe_device() will spit a warning if there
420 * is an error.
421 */
422
Ming Lei49b420a2009-01-21 23:27:47 +0800423 if (!driver_match_device(drv, dev))
Arjan van de Ven6cd49582008-09-14 08:32:06 -0700424 return 0;
425
Alan Sternbf74ad52005-11-17 16:54:12 -0500426 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800427 device_lock(dev->parent);
428 device_lock(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700429 if (!dev->driver)
430 driver_probe_device(drv, dev);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800431 device_unlock(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500432 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800433 device_unlock(dev->parent);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700434
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800435 return 0;
436}
437
438/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800439 * driver_attach - try to bind driver to devices.
440 * @drv: driver.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800441 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800442 * Walk the list of devices that the bus has on it and try to
443 * match the driver with each one. If driver_probe_device()
444 * returns 0 and the @dev->driver is set, we've found a
445 * compatible pair.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800446 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800447int driver_attach(struct device_driver *drv)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800448{
Andrew Mortonf86db392006-08-14 22:43:20 -0700449 return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800450}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800451EXPORT_SYMBOL_GPL(driver_attach);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800452
Stefan Richterab71c6f2007-06-17 11:02:12 +0200453/*
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800454 * __device_release_driver() must be called with @dev lock held.
455 * When called for a USB interface, @dev->parent lock must be held as well.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800456 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800457static void __device_release_driver(struct device *dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800458{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800459 struct device_driver *drv;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800460
Alan Sternef2c5172007-11-16 11:57:28 -0500461 drv = dev->driver;
Alan Sternc95a6b02005-05-06 15:38:33 -0400462 if (drv) {
Rafael J. Wysockie1866b32011-04-29 00:33:45 +0200463 pm_runtime_get_sync(dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200464
Kay Sievers1901fb22006-10-07 21:55:55 +0200465 driver_sysfs_remove(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700466
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000467 if (dev->bus)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700468 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000469 BUS_NOTIFY_UNBIND_DRIVER,
470 dev);
471
Rafael J. Wysockie1866b32011-04-29 00:33:45 +0200472 pm_runtime_put_sync(dev);
473
Alan Stern0f836ca2006-03-31 11:52:25 -0500474 if (dev->bus && dev->bus->remove)
Russell King594c8282006-01-05 14:29:51 +0000475 dev->bus->remove(dev);
476 else if (drv->remove)
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700477 drv->remove(dev);
Tejun Heo9ac78492007-01-20 16:00:26 +0900478 devres_release_all(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700479 dev->driver = NULL;
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800480 klist_remove(&dev->p->knode_driver);
Joerg Roedel309b7d62009-04-24 14:57:00 +0200481 if (dev->bus)
482 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
483 BUS_NOTIFY_UNBOUND_DRIVER,
484 dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200485
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700486 }
Alan Sternc95a6b02005-05-06 15:38:33 -0400487}
488
Stefan Richterab71c6f2007-06-17 11:02:12 +0200489/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800490 * device_release_driver - manually detach device from driver.
491 * @dev: device.
Stefan Richterab71c6f2007-06-17 11:02:12 +0200492 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800493 * Manually detach device from driver.
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800494 * When called for a USB interface, @dev->parent lock must be held.
Stefan Richterab71c6f2007-06-17 11:02:12 +0200495 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800496void device_release_driver(struct device *dev)
Alan Sternc95a6b02005-05-06 15:38:33 -0400497{
498 /*
499 * If anyone calls device_release_driver() recursively from
500 * within their ->remove callback for the same device, they
501 * will deadlock right here.
502 */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800503 device_lock(dev);
Alan Sternc95a6b02005-05-06 15:38:33 -0400504 __device_release_driver(dev);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800505 device_unlock(dev);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800506}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800507EXPORT_SYMBOL_GPL(device_release_driver);
mochel@digitalimplant.org94e7b1c2005-03-21 12:25:36 -0800508
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800509/**
510 * driver_detach - detach driver from all devices it controls.
511 * @drv: driver.
512 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800513void driver_detach(struct device_driver *drv)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800514{
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800515 struct device_private *dev_prv;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800516 struct device *dev;
Alan Sternc95a6b02005-05-06 15:38:33 -0400517
518 for (;;) {
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800519 spin_lock(&drv->p->klist_devices.k_lock);
520 if (list_empty(&drv->p->klist_devices.k_list)) {
521 spin_unlock(&drv->p->klist_devices.k_lock);
Alan Sternc95a6b02005-05-06 15:38:33 -0400522 break;
523 }
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -0800524 dev_prv = list_entry(drv->p->klist_devices.k_list.prev,
525 struct device_private,
526 knode_driver.n_node);
527 dev = dev_prv->device;
Alan Sternc95a6b02005-05-06 15:38:33 -0400528 get_device(dev);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800529 spin_unlock(&drv->p->klist_devices.k_lock);
Alan Sternc95a6b02005-05-06 15:38:33 -0400530
Alan Sternbf74ad52005-11-17 16:54:12 -0500531 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800532 device_lock(dev->parent);
533 device_lock(dev);
Alan Sternc95a6b02005-05-06 15:38:33 -0400534 if (dev->driver == drv)
535 __device_release_driver(dev);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800536 device_unlock(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500537 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800538 device_unlock(dev->parent);
Alan Sternc95a6b02005-05-06 15:38:33 -0400539 put_device(dev);
540 }
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800541}
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700542
543/*
544 * These exports can't be _GPL due to .h files using this within them, and it
545 * might break something that was previously working...
546 */
547void *dev_get_drvdata(const struct device *dev)
548{
549 if (dev && dev->p)
550 return dev->p->driver_data;
551 return NULL;
552}
553EXPORT_SYMBOL(dev_get_drvdata);
554
Uwe Kleine-Königc8705082011-04-20 09:44:46 +0200555int dev_set_drvdata(struct device *dev, void *data)
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700556{
557 int error;
558
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700559 if (!dev->p) {
560 error = device_private_init(dev);
561 if (error)
Uwe Kleine-Königc8705082011-04-20 09:44:46 +0200562 return error;
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700563 }
564 dev->p->driver_data = data;
Uwe Kleine-Königc8705082011-04-20 09:44:46 +0200565 return 0;
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700566}
567EXPORT_SYMBOL(dev_set_drvdata);