blob: 8c0d33e182fd5b0781aa7ba5e811da418fee168a [file] [log] [blame]
Greg Kroah-Hartman989d42e2017-11-07 17:30:07 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * driver.c - centralized device driver management
4 *
5 * Copyright (c) 2002-3 Patrick Mochel
6 * Copyright (c) 2002-3 Open Source Development Labs
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -08007 * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
8 * Copyright (c) 2007 Novell Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Greg Kroah-Hartman4c002c92019-12-09 20:33:03 +010011#include <linux/device/driver.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/device.h>
13#include <linux/module.h>
14#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
Greg Kroah-Hartman63967682013-08-27 10:24:15 -070017#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "base.h"
19
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080020static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -080021{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080022 struct klist_node *n = klist_next(i);
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -080023 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;
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -080031}
32
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -080033/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080034 * 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.
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -080039 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080040 * Iterate over the @drv's list of devices calling @fn for each one.
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -080041 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080042int driver_for_each_device(struct device_driver *drv, struct device *start,
43 void *data, int (*fn)(struct device *, void *))
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -080044{
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -080045 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080046 struct device *dev;
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -080047 int error = 0;
48
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -080049 if (!drv)
50 return -EINVAL;
51
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -070052 klist_iter_init_node(&drv->p->klist_devices, &i,
53 start ? &start->p->knode_driver : NULL);
Gimcuan Hui93ead7c2017-11-11 05:52:54 +000054 while (!error && (dev = next_device(&i)))
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -070055 error = fn(dev, data);
56 klist_iter_exit(&i);
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -080057 return error;
58}
gregkh@suse.de126eddf2005-03-22 12:17:13 -080059EXPORT_SYMBOL_GPL(driver_for_each_device);
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -080060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/**
Cornelia Huck0edb5862005-06-22 16:59:51 +020062 * driver_find_device - device iterator for locating a particular device.
Randy Dunlapc41455f2005-10-23 11:59:14 -070063 * @drv: The device's driver
Cornelia Huck0edb5862005-06-22 16:59:51 +020064 * @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 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080076struct device *driver_find_device(struct device_driver *drv,
Suzuki K Poulose92ce7e82019-06-14 18:54:00 +010077 struct device *start, const void *data,
78 int (*match)(struct device *dev, const void *data))
Cornelia Huck0edb5862005-06-22 16:59:51 +020079{
80 struct klist_iter i;
81 struct device *dev;
82
Hiroshi DOYU094e47e2012-05-11 11:03:09 +030083 if (!drv || !drv->p)
Cornelia Huck0edb5862005-06-22 16:59:51 +020084 return NULL;
85
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -070086 klist_iter_init_node(&drv->p->klist_devices, &i,
87 (start ? &start->p->knode_driver : NULL));
Cornelia Huck0edb5862005-06-22 16:59:51 +020088 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
96/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080097 * driver_create_file - create sysfs file for driver.
98 * @drv: driver.
99 * @attr: driver attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800101int driver_create_file(struct device_driver *drv,
Phil Carmody099c2f22009-12-18 15:34:21 +0200102 const struct driver_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 int error;
Lavinia Tache74642c62015-03-08 12:48:55 +0200105
Cornelia Huck0c98b192008-01-31 10:39:38 +0100106 if (drv)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800107 error = sysfs_create_file(&drv->p->kobj, &attr->attr);
Cornelia Huck0c98b192008-01-31 10:39:38 +0100108 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 error = -EINVAL;
110 return error;
111}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800112EXPORT_SYMBOL_GPL(driver_create_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800115 * driver_remove_file - remove sysfs file for driver.
116 * @drv: driver.
117 * @attr: driver attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800119void driver_remove_file(struct device_driver *drv,
Phil Carmody099c2f22009-12-18 15:34:21 +0200120 const struct driver_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Cornelia Huck0c98b192008-01-31 10:39:38 +0100122 if (drv)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800123 sysfs_remove_file(&drv->p->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800125EXPORT_SYMBOL_GPL(driver_remove_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Greg Kroah-Hartmaned0617b2013-08-08 15:22:56 -0700127int driver_add_groups(struct device_driver *drv,
128 const struct attribute_group **groups)
Cornelia Huck57c74532007-12-05 12:50:23 +0100129{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -0700130 return sysfs_create_groups(&drv->p->kobj, groups);
Cornelia Huck57c74532007-12-05 12:50:23 +0100131}
132
Greg Kroah-Hartmaned0617b2013-08-08 15:22:56 -0700133void driver_remove_groups(struct device_driver *drv,
134 const struct attribute_group **groups)
Cornelia Huck57c74532007-12-05 12:50:23 +0100135{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -0700136 sysfs_remove_groups(&drv->p->kobj, groups);
Cornelia Huck57c74532007-12-05 12:50:23 +0100137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800140 * driver_register - register driver with bus
141 * @drv: driver to register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800143 * We pass off most of the work to the bus_add_driver() call,
144 * since most of the things we have to do deal with the bus
145 * structures.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800147int driver_register(struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Cornelia Huck57c74532007-12-05 12:50:23 +0100149 int ret;
Stas Sergeev16dc42e02008-04-26 19:52:35 +0400150 struct device_driver *other;
Cornelia Huck57c74532007-12-05 12:50:23 +0100151
Florian Schmaus0dda2bb2018-05-23 17:59:11 +0200152 if (!drv->bus->p) {
153 pr_err("Driver '%s' was unable to register with bus_type '%s' because the bus was not initialized.\n",
154 drv->name, drv->bus->name);
155 return -EINVAL;
156 }
Dave Youngf48f3fe2009-02-14 21:23:22 +0800157
Russell King594c8282006-01-05 14:29:51 +0000158 if ((drv->bus->probe && drv->probe) ||
159 (drv->bus->remove && drv->remove) ||
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800160 (drv->bus->shutdown && drv->shutdown))
Matthias Brugger5962b8b2020-06-08 11:52:17 +0200161 pr_warn("Driver '%s' needs updating - please use "
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800162 "bus_type methods\n", drv->name);
Stas Sergeev16dc42e02008-04-26 19:52:35 +0400163
164 other = driver_find(drv->name, drv->bus);
165 if (other) {
Matthias Brugger5962b8b2020-06-08 11:52:17 +0200166 pr_err("Error: Driver '%s' is already registered, "
Stas Sergeev16dc42e02008-04-26 19:52:35 +0400167 "aborting...\n", drv->name);
Stas Sergeev39acbc12009-10-18 00:31:38 +0400168 return -EBUSY;
Stas Sergeev16dc42e02008-04-26 19:52:35 +0400169 }
170
Cornelia Huck57c74532007-12-05 12:50:23 +0100171 ret = bus_add_driver(drv);
172 if (ret)
173 return ret;
174 ret = driver_add_groups(drv, drv->groups);
Sebastian Otta14af322012-07-17 10:39:10 +0200175 if (ret) {
Cornelia Huck57c74532007-12-05 12:50:23 +0100176 bus_remove_driver(drv);
Sebastian Otta14af322012-07-17 10:39:10 +0200177 return ret;
178 }
Sebastian Ott5a7689f2012-07-02 19:08:15 +0200179 kobject_uevent(&drv->p->kobj, KOBJ_ADD);
180
Cornelia Huck57c74532007-12-05 12:50:23 +0100181 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800183EXPORT_SYMBOL_GPL(driver_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800186 * driver_unregister - remove driver from system.
187 * @drv: driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800189 * Again, we pass off most of the work to the bus-level call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800191void driver_unregister(struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Kay Sievers5c8563d2009-05-28 14:24:07 -0700193 if (!drv || !drv->p) {
194 WARN(1, "Unexpected driver unregister!\n");
195 return;
196 }
Cornelia Huck57c74532007-12-05 12:50:23 +0100197 driver_remove_groups(drv, drv->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 bus_remove_driver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800200EXPORT_SYMBOL_GPL(driver_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800203 * driver_find - locate driver on a bus by its name.
204 * @name: name of the driver.
205 * @bus: bus to scan for the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800207 * Call kset_find_obj() to iterate over list of drivers on
208 * a bus to find driver by name. Return driver if found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 *
Alan Sternfde25a92012-01-24 13:34:24 -0500210 * This routine provides no locking to prevent the driver it returns
211 * from being unregistered or unloaded while the caller is using it.
212 * The caller is responsible for preventing this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 */
214struct device_driver *driver_find(const char *name, struct bus_type *bus)
215{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700216 struct kobject *k = kset_find_obj(bus->p->drivers_kset, name);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800217 struct driver_private *priv;
218
219 if (k) {
Alan Sternfde25a92012-01-24 13:34:24 -0500220 /* Drop reference added by kset_find_obj() */
221 kobject_put(k);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800222 priv = to_driver(k);
223 return priv->driver;
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return NULL;
226}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227EXPORT_SYMBOL_GPL(driver_find);