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