GNU Linux-libre 5.10.217-gnu1
[releases.git] / include / linux / device / driver.h
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * The driver-specific portions of the driver model
4  *
5  * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
6  * Copyright (c) 2004-2009 Greg Kroah-Hartman <gregkh@suse.de>
7  * Copyright (c) 2008-2009 Novell Inc.
8  * Copyright (c) 2012-2019 Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9  * Copyright (c) 2012-2019 Linux Foundation
10  *
11  * See Documentation/driver-api/driver-model/ for more information.
12  */
13
14 #ifndef _DEVICE_DRIVER_H_
15 #define _DEVICE_DRIVER_H_
16
17 #include <linux/kobject.h>
18 #include <linux/klist.h>
19 #include <linux/pm.h>
20 #include <linux/device/bus.h>
21
22 /**
23  * enum probe_type - device driver probe type to try
24  *      Device drivers may opt in for special handling of their
25  *      respective probe routines. This tells the core what to
26  *      expect and prefer.
27  *
28  * @PROBE_DEFAULT_STRATEGY: Used by drivers that work equally well
29  *      whether probed synchronously or asynchronously.
30  * @PROBE_PREFER_ASYNCHRONOUS: Drivers for "slow" devices which
31  *      probing order is not essential for booting the system may
32  *      opt into executing their probes asynchronously.
33  * @PROBE_FORCE_SYNCHRONOUS: Use this to annotate drivers that need
34  *      their probe routines to run synchronously with driver and
35  *      device registration (with the exception of -EPROBE_DEFER
36  *      handling - re-probing always ends up being done asynchronously).
37  *
38  * Note that the end goal is to switch the kernel to use asynchronous
39  * probing by default, so annotating drivers with
40  * %PROBE_PREFER_ASYNCHRONOUS is a temporary measure that allows us
41  * to speed up boot process while we are validating the rest of the
42  * drivers.
43  */
44 enum probe_type {
45         PROBE_DEFAULT_STRATEGY,
46         PROBE_PREFER_ASYNCHRONOUS,
47         PROBE_FORCE_SYNCHRONOUS,
48 };
49
50 /**
51  * struct device_driver - The basic device driver structure
52  * @name:       Name of the device driver.
53  * @bus:        The bus which the device of this driver belongs to.
54  * @owner:      The module owner.
55  * @mod_name:   Used for built-in modules.
56  * @suppress_bind_attrs: Disables bind/unbind via sysfs.
57  * @probe_type: Type of the probe (synchronous or asynchronous) to use.
58  * @of_match_table: The open firmware table.
59  * @acpi_match_table: The ACPI match table.
60  * @probe:      Called to query the existence of a specific device,
61  *              whether this driver can work with it, and bind the driver
62  *              to a specific device.
63  * @sync_state: Called to sync device state to software state after all the
64  *              state tracking consumers linked to this device (present at
65  *              the time of late_initcall) have successfully bound to a
66  *              driver. If the device has no consumers, this function will
67  *              be called at late_initcall_sync level. If the device has
68  *              consumers that are never bound to a driver, this function
69  *              will never get called until they do.
70  * @remove:     Called when the device is removed from the system to
71  *              unbind a device from this driver.
72  * @shutdown:   Called at shut-down time to quiesce the device.
73  * @suspend:    Called to put the device to sleep mode. Usually to a
74  *              low power state.
75  * @resume:     Called to bring a device from sleep mode.
76  * @groups:     Default attributes that get created by the driver core
77  *              automatically.
78  * @dev_groups: Additional attributes attached to device instance once the
79  *              it is bound to the driver.
80  * @pm:         Power management operations of the device which matched
81  *              this driver.
82  * @coredump:   Called when sysfs entry is written to. The device driver
83  *              is expected to call the dev_coredump API resulting in a
84  *              uevent.
85  * @p:          Driver core's private data, no one other than the driver
86  *              core can touch this.
87  *
88  * The device driver-model tracks all of the drivers known to the system.
89  * The main reason for this tracking is to enable the driver core to match
90  * up drivers with new devices. Once drivers are known objects within the
91  * system, however, a number of other things become possible. Device drivers
92  * can export information and configuration variables that are independent
93  * of any specific device.
94  */
95 struct device_driver {
96         const char              *name;
97         struct bus_type         *bus;
98
99         struct module           *owner;
100         const char              *mod_name;      /* used for built-in modules */
101
102         bool suppress_bind_attrs;       /* disables bind/unbind via sysfs */
103         enum probe_type probe_type;
104
105         const struct of_device_id       *of_match_table;
106         const struct acpi_device_id     *acpi_match_table;
107
108         int (*probe) (struct device *dev);
109         void (*sync_state)(struct device *dev);
110         int (*remove) (struct device *dev);
111         void (*shutdown) (struct device *dev);
112         int (*suspend) (struct device *dev, pm_message_t state);
113         int (*resume) (struct device *dev);
114         const struct attribute_group **groups;
115         const struct attribute_group **dev_groups;
116
117         const struct dev_pm_ops *pm;
118         void (*coredump) (struct device *dev);
119
120         struct driver_private *p;
121 };
122
123
124 extern int __must_check driver_register(struct device_driver *drv);
125 extern void driver_unregister(struct device_driver *drv);
126
127 extern struct device_driver *driver_find(const char *name,
128                                          struct bus_type *bus);
129 extern int driver_probe_done(void);
130 extern void wait_for_device_probe(void);
131
132 /* sysfs interface for exporting driver attributes */
133
134 struct driver_attribute {
135         struct attribute attr;
136         ssize_t (*show)(struct device_driver *driver, char *buf);
137         ssize_t (*store)(struct device_driver *driver, const char *buf,
138                          size_t count);
139 };
140
141 #define DRIVER_ATTR_RW(_name) \
142         struct driver_attribute driver_attr_##_name = __ATTR_RW(_name)
143 #define DRIVER_ATTR_RO(_name) \
144         struct driver_attribute driver_attr_##_name = __ATTR_RO(_name)
145 #define DRIVER_ATTR_WO(_name) \
146         struct driver_attribute driver_attr_##_name = __ATTR_WO(_name)
147
148 extern int __must_check driver_create_file(struct device_driver *driver,
149                                         const struct driver_attribute *attr);
150 extern void driver_remove_file(struct device_driver *driver,
151                                const struct driver_attribute *attr);
152
153 int driver_set_override(struct device *dev, const char **override,
154                         const char *s, size_t len);
155 extern int __must_check driver_for_each_device(struct device_driver *drv,
156                                                struct device *start,
157                                                void *data,
158                                                int (*fn)(struct device *dev,
159                                                          void *));
160 struct device *driver_find_device(struct device_driver *drv,
161                                   struct device *start, const void *data,
162                                   int (*match)(struct device *dev, const void *data));
163
164 /**
165  * driver_find_device_by_name - device iterator for locating a particular device
166  * of a specific name.
167  * @drv: the driver we're iterating
168  * @name: name of the device to match
169  */
170 static inline struct device *driver_find_device_by_name(struct device_driver *drv,
171                                                         const char *name)
172 {
173         return driver_find_device(drv, NULL, name, device_match_name);
174 }
175
176 /**
177  * driver_find_device_by_of_node- device iterator for locating a particular device
178  * by of_node pointer.
179  * @drv: the driver we're iterating
180  * @np: of_node pointer to match.
181  */
182 static inline struct device *
183 driver_find_device_by_of_node(struct device_driver *drv,
184                               const struct device_node *np)
185 {
186         return driver_find_device(drv, NULL, np, device_match_of_node);
187 }
188
189 /**
190  * driver_find_device_by_fwnode- device iterator for locating a particular device
191  * by fwnode pointer.
192  * @drv: the driver we're iterating
193  * @fwnode: fwnode pointer to match.
194  */
195 static inline struct device *
196 driver_find_device_by_fwnode(struct device_driver *drv,
197                              const struct fwnode_handle *fwnode)
198 {
199         return driver_find_device(drv, NULL, fwnode, device_match_fwnode);
200 }
201
202 /**
203  * driver_find_device_by_devt- device iterator for locating a particular device
204  * by devt.
205  * @drv: the driver we're iterating
206  * @devt: devt pointer to match.
207  */
208 static inline struct device *driver_find_device_by_devt(struct device_driver *drv,
209                                                         dev_t devt)
210 {
211         return driver_find_device(drv, NULL, &devt, device_match_devt);
212 }
213
214 static inline struct device *driver_find_next_device(struct device_driver *drv,
215                                                      struct device *start)
216 {
217         return driver_find_device(drv, start, NULL, device_match_any);
218 }
219
220 #ifdef CONFIG_ACPI
221 /**
222  * driver_find_device_by_acpi_dev : device iterator for locating a particular
223  * device matching the ACPI_COMPANION device.
224  * @drv: the driver we're iterating
225  * @adev: ACPI_COMPANION device to match.
226  */
227 static inline struct device *
228 driver_find_device_by_acpi_dev(struct device_driver *drv,
229                                const struct acpi_device *adev)
230 {
231         return driver_find_device(drv, NULL, adev, device_match_acpi_dev);
232 }
233 #else
234 static inline struct device *
235 driver_find_device_by_acpi_dev(struct device_driver *drv, const void *adev)
236 {
237         return NULL;
238 }
239 #endif
240
241 extern int driver_deferred_probe_timeout;
242 void driver_deferred_probe_add(struct device *dev);
243 int driver_deferred_probe_check_state(struct device *dev);
244 void driver_init(void);
245
246 /**
247  * module_driver() - Helper macro for drivers that don't do anything
248  * special in module init/exit. This eliminates a lot of boilerplate.
249  * Each module may only use this macro once, and calling it replaces
250  * module_init() and module_exit().
251  *
252  * @__driver: driver name
253  * @__register: register function for this driver type
254  * @__unregister: unregister function for this driver type
255  * @...: Additional arguments to be passed to __register and __unregister.
256  *
257  * Use this macro to construct bus specific macros for registering
258  * drivers, and do not use it on its own.
259  */
260 #define module_driver(__driver, __register, __unregister, ...) \
261 static int __init __driver##_init(void) \
262 { \
263         return __register(&(__driver) , ##__VA_ARGS__); \
264 } \
265 module_init(__driver##_init); \
266 static void __exit __driver##_exit(void) \
267 { \
268         __unregister(&(__driver) , ##__VA_ARGS__); \
269 } \
270 module_exit(__driver##_exit);
271
272 /**
273  * builtin_driver() - Helper macro for drivers that don't do anything
274  * special in init and have no exit. This eliminates some boilerplate.
275  * Each driver may only use this macro once, and calling it replaces
276  * device_initcall (or in some cases, the legacy __initcall).  This is
277  * meant to be a direct parallel of module_driver() above but without
278  * the __exit stuff that is not used for builtin cases.
279  *
280  * @__driver: driver name
281  * @__register: register function for this driver type
282  * @...: Additional arguments to be passed to __register
283  *
284  * Use this macro to construct bus specific macros for registering
285  * drivers, and do not use it on its own.
286  */
287 #define builtin_driver(__driver, __register, ...) \
288 static int __init __driver##_init(void) \
289 { \
290         return __register(&(__driver) , ##__VA_ARGS__); \
291 } \
292 device_initcall(__driver##_init);
293
294 #endif  /* _DEVICE_DRIVER_H_ */