Merge branch 'linux_next' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / base / driver.c
CommitLineData
1da177e4
LT
1/*
2 * driver.c - centralized device driver management
3 *
4 * Copyright (c) 2002-3 Patrick Mochel
5 * Copyright (c) 2002-3 Open Source Development Labs
e5dd1278
GKH
6 * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
7 * Copyright (c) 2007 Novell Inc.
1da177e4
LT
8 *
9 * This file is released under the GPLv2
10 *
11 */
12
1da177e4
LT
13#include <linux/device.h>
14#include <linux/module.h>
15#include <linux/errno.h>
5a0e3ad6 16#include <linux/slab.h>
1da177e4
LT
17#include <linux/string.h>
18#include "base.h"
19
4a3ad20c 20static struct device *next_device(struct klist_iter *i)
94e7b1c5 21{
4a3ad20c 22 struct klist_node *n = klist_next(i);
8940b4f3
GKH
23 struct device *dev = NULL;
24 struct device_private *dev_prv;
25
26 if (n) {
27 dev_prv = to_device_private_driver(n);
28 dev = dev_prv->device;
29 }
30 return dev;
94e7b1c5
PM
31}
32
fae3cd00 33/**
4a3ad20c
GKH
34 * driver_for_each_device - Iterator for devices bound to a driver.
35 * @drv: Driver we're iterating.
36 * @start: Device to begin with
37 * @data: Data to pass to the callback.
38 * @fn: Function to call for each device.
fae3cd00 39 *
4a3ad20c 40 * Iterate over the @drv's list of devices calling @fn for each one.
fae3cd00 41 */
4a3ad20c
GKH
42int driver_for_each_device(struct device_driver *drv, struct device *start,
43 void *data, int (*fn)(struct device *, void *))
fae3cd00 44{
94e7b1c5 45 struct klist_iter i;
4a3ad20c 46 struct device *dev;
fae3cd00
PM
47 int error = 0;
48
94e7b1c5
PM
49 if (!drv)
50 return -EINVAL;
51
7cd9c9bb
GKH
52 klist_iter_init_node(&drv->p->klist_devices, &i,
53 start ? &start->p->knode_driver : NULL);
54 while ((dev = next_device(&i)) && !error)
55 error = fn(dev, data);
56 klist_iter_exit(&i);
fae3cd00
PM
57 return error;
58}
126eddfb 59EXPORT_SYMBOL_GPL(driver_for_each_device);
fae3cd00 60
0edb5860
CH
61/**
62 * driver_find_device - device iterator for locating a particular device.
c41455fb 63 * @drv: The device's driver
0edb5860
CH
64 * @start: Device to begin with
65 * @data: Data to pass to match function
66 * @match: Callback function to check device
67 *
68 * This is similar to the driver_for_each_device() function above, but
69 * it returns a reference to a device that is 'found' for later use, as
70 * determined by the @match callback.
71 *
72 * The callback should return 0 if the device doesn't match and non-zero
73 * if it does. If the callback returns non-zero, this function will
74 * return to the caller and not iterate over any more devices.
75 */
4a3ad20c
GKH
76struct device *driver_find_device(struct device_driver *drv,
77 struct device *start, void *data,
78 int (*match)(struct device *dev, void *data))
0edb5860
CH
79{
80 struct klist_iter i;
81 struct device *dev;
82
094e47e9 83 if (!drv || !drv->p)
0edb5860
CH
84 return NULL;
85
7cd9c9bb
GKH
86 klist_iter_init_node(&drv->p->klist_devices, &i,
87 (start ? &start->p->knode_driver : NULL));
0edb5860
CH
88 while ((dev = next_device(&i)))
89 if (match(dev, data) && get_device(dev))
90 break;
91 klist_iter_exit(&i);
92 return dev;
93}
94EXPORT_SYMBOL_GPL(driver_find_device);
95
1da177e4 96/**
4a3ad20c
GKH
97 * driver_create_file - create sysfs file for driver.
98 * @drv: driver.
99 * @attr: driver attribute descriptor.
1da177e4 100 */
4a3ad20c 101int driver_create_file(struct device_driver *drv,
099c2f21 102 const struct driver_attribute *attr)
1da177e4
LT
103{
104 int error;
0c98b19f 105 if (drv)
e5dd1278 106 error = sysfs_create_file(&drv->p->kobj, &attr->attr);
0c98b19f 107 else
1da177e4
LT
108 error = -EINVAL;
109 return error;
110}
4a3ad20c 111EXPORT_SYMBOL_GPL(driver_create_file);
1da177e4
LT
112
113/**
4a3ad20c
GKH
114 * driver_remove_file - remove sysfs file for driver.
115 * @drv: driver.
116 * @attr: driver attribute descriptor.
1da177e4 117 */
4a3ad20c 118void driver_remove_file(struct device_driver *drv,
099c2f21 119 const struct driver_attribute *attr)
1da177e4 120{
0c98b19f 121 if (drv)
e5dd1278 122 sysfs_remove_file(&drv->p->kobj, &attr->attr);
1da177e4 123}
4a3ad20c 124EXPORT_SYMBOL_GPL(driver_remove_file);
1da177e4 125
57c74534 126static int driver_add_groups(struct device_driver *drv,
a4dbd674 127 const struct attribute_group **groups)
57c74534
CH
128{
129 int error = 0;
130 int i;
131
132 if (groups) {
133 for (i = 0; groups[i]; i++) {
e5dd1278 134 error = sysfs_create_group(&drv->p->kobj, groups[i]);
57c74534
CH
135 if (error) {
136 while (--i >= 0)
e5dd1278 137 sysfs_remove_group(&drv->p->kobj,
57c74534
CH
138 groups[i]);
139 break;
140 }
141 }
142 }
143 return error;
144}
145
146static void driver_remove_groups(struct device_driver *drv,
a4dbd674 147 const struct attribute_group **groups)
57c74534
CH
148{
149 int i;
150
151 if (groups)
152 for (i = 0; groups[i]; i++)
e5dd1278 153 sysfs_remove_group(&drv->p->kobj, groups[i]);
57c74534
CH
154}
155
1da177e4 156/**
4a3ad20c
GKH
157 * driver_register - register driver with bus
158 * @drv: driver to register
1da177e4 159 *
4a3ad20c
GKH
160 * We pass off most of the work to the bus_add_driver() call,
161 * since most of the things we have to do deal with the bus
162 * structures.
1da177e4 163 */
4a3ad20c 164int driver_register(struct device_driver *drv)
1da177e4 165{
57c74534 166 int ret;
16dc42e0 167 struct device_driver *other;
57c74534 168
f48f3feb
DY
169 BUG_ON(!drv->bus->p);
170
594c8281
RK
171 if ((drv->bus->probe && drv->probe) ||
172 (drv->bus->remove && drv->remove) ||
4a3ad20c
GKH
173 (drv->bus->shutdown && drv->shutdown))
174 printk(KERN_WARNING "Driver '%s' needs updating - please use "
175 "bus_type methods\n", drv->name);
16dc42e0
SS
176
177 other = driver_find(drv->name, drv->bus);
178 if (other) {
16dc42e0
SS
179 printk(KERN_ERR "Error: Driver '%s' is already registered, "
180 "aborting...\n", drv->name);
39acbc12 181 return -EBUSY;
16dc42e0
SS
182 }
183
57c74534
CH
184 ret = bus_add_driver(drv);
185 if (ret)
186 return ret;
187 ret = driver_add_groups(drv, drv->groups);
a14af325 188 if (ret) {
57c74534 189 bus_remove_driver(drv);
a14af325
SO
190 return ret;
191 }
5a7689fd
SO
192 kobject_uevent(&drv->p->kobj, KOBJ_ADD);
193
57c74534 194 return ret;
1da177e4 195}
4a3ad20c 196EXPORT_SYMBOL_GPL(driver_register);
1da177e4 197
1da177e4 198/**
4a3ad20c
GKH
199 * driver_unregister - remove driver from system.
200 * @drv: driver.
1da177e4 201 *
4a3ad20c 202 * Again, we pass off most of the work to the bus-level call.
1da177e4 203 */
4a3ad20c 204void driver_unregister(struct device_driver *drv)
1da177e4 205{
5c8563d7
KS
206 if (!drv || !drv->p) {
207 WARN(1, "Unexpected driver unregister!\n");
208 return;
209 }
57c74534 210 driver_remove_groups(drv, drv->groups);
1da177e4 211 bus_remove_driver(drv);
1da177e4 212}
4a3ad20c 213EXPORT_SYMBOL_GPL(driver_unregister);
1da177e4
LT
214
215/**
4a3ad20c
GKH
216 * driver_find - locate driver on a bus by its name.
217 * @name: name of the driver.
218 * @bus: bus to scan for the driver.
1da177e4 219 *
4a3ad20c
GKH
220 * Call kset_find_obj() to iterate over list of drivers on
221 * a bus to find driver by name. Return driver if found.
1da177e4 222 *
fde25a9b
AS
223 * This routine provides no locking to prevent the driver it returns
224 * from being unregistered or unloaded while the caller is using it.
225 * The caller is responsible for preventing this.
1da177e4
LT
226 */
227struct device_driver *driver_find(const char *name, struct bus_type *bus)
228{
c6f7e72a 229 struct kobject *k = kset_find_obj(bus->p->drivers_kset, name);
e5dd1278
GKH
230 struct driver_private *priv;
231
232 if (k) {
fde25a9b
AS
233 /* Drop reference added by kset_find_obj() */
234 kobject_put(k);
e5dd1278
GKH
235 priv = to_driver(k);
236 return priv->driver;
237 }
1da177e4
LT
238 return NULL;
239}
1da177e4 240EXPORT_SYMBOL_GPL(driver_find);