Linux 6.10-rc4
[linux-block.git] / include / linux / device.h
CommitLineData
989d42e8 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * device.h - generic, centralized driver model
4 *
5 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
b4028437
GKH
6 * Copyright (c) 2004-2009 Greg Kroah-Hartman <gregkh@suse.de>
7 * Copyright (c) 2008-2009 Novell Inc.
1da177e4 8 *
fe34c89d 9 * See Documentation/driver-api/driver-model/ for more information.
1da177e4
LT
10 */
11
12#ifndef _DEVICE_H_
13#define _DEVICE_H_
14
af628aae 15#include <linux/dev_printk.h>
1bc138c6 16#include <linux/energy_model.h>
1da177e4
LT
17#include <linux/ioport.h>
18#include <linux/kobject.h>
465c7a3a 19#include <linux/klist.h>
1da177e4 20#include <linux/list.h>
d2a3b914 21#include <linux/lockdep.h>
4a7fb636 22#include <linux/compiler.h>
1da177e4 23#include <linux/types.h>
de477254 24#include <linux/mutex.h>
1da177e4 25#include <linux/pm.h>
60063497 26#include <linux/atomic.h>
3c2670e6 27#include <linux/uidgid.h>
64c862a8 28#include <linux/gfp.h>
2509b561 29#include <linux/overflow.h>
5aee2bf2 30#include <linux/device/bus.h>
a8ae6085 31#include <linux/device/class.h>
4c002c97 32#include <linux/device/driver.h>
54da6a09 33#include <linux/cleanup.h>
c6dbaef2 34#include <asm/device.h>
1da177e4 35
1da177e4 36struct device;
fb069a5d 37struct device_private;
1da177e4 38struct device_driver;
e5dd1278 39struct driver_private;
de477254 40struct module;
1da177e4 41struct class;
6b6e39a6 42struct subsys_private;
d706c1b0 43struct device_node;
ce793486 44struct fwnode_handle;
74416e1e 45struct iommu_group;
23c35f48 46struct dev_pin_info;
045a7042 47struct dev_iommu;
013bd8e5 48struct msi_device_data;
b8c5cec2 49
ca22e56d
KS
50/**
51 * struct subsys_interface - interfaces to device functions
2eda013f 52 * @name: name of the device function
5dd5f934 53 * @subsys: subsystem of the devices to attach to
2eda013f
RD
54 * @node: the list of functions registered at the subsystem
55 * @add_dev: device hookup to device function handler
56 * @remove_dev: device hookup to device function handler
ca22e56d
KS
57 *
58 * Simple interfaces attached to a subsystem. Multiple interfaces can
59 * attach to a subsystem and its devices. Unlike drivers, they do not
60 * exclusively claim or control devices. Interfaces usually represent
61 * a specific functionality of a subsystem/class of devices.
62 */
63struct subsys_interface {
64 const char *name;
32f78abe 65 const struct bus_type *subsys;
ca22e56d
KS
66 struct list_head node;
67 int (*add_dev)(struct device *dev, struct subsys_interface *sif);
71db87ba 68 void (*remove_dev)(struct device *dev, struct subsys_interface *sif);
ca22e56d
KS
69};
70
71int subsys_interface_register(struct subsys_interface *sif);
72void subsys_interface_unregister(struct subsys_interface *sif);
73
32f78abe 74int subsys_system_register(const struct bus_type *subsys,
ca22e56d 75 const struct attribute_group **groups);
32f78abe 76int subsys_virtual_register(const struct bus_type *subsys,
d73ce004 77 const struct attribute_group **groups);
ca22e56d 78
414264f9
KS
79/*
80 * The type of device, "struct device" is embedded in. A class
81 * or bus can contain devices of different types
82 * like "partitions" and "disks", "mouse" and "event".
83 * This identifies the device type and carries type-specific
84 * information, equivalent to the kobj_type of a kobject.
85 * If "name" is specified, the uevent will contain it in
86 * the DEVTYPE variable.
87 */
f9f852df 88struct device_type {
414264f9 89 const char *name;
a4dbd674 90 const struct attribute_group **groups;
162736b0 91 int (*uevent)(const struct device *dev, struct kobj_uevent_env *env);
a9b12f8b 92 char *(*devnode)(const struct device *dev, umode_t *mode,
4e4098a3 93 kuid_t *uid, kgid_t *gid);
f9f852df 94 void (*release)(struct device *dev);
1eede070 95
8150f32b 96 const struct dev_pm_ops *pm;
f9f852df
KS
97};
98
cd00bc2c
JS
99/**
100 * struct device_attribute - Interface for exporting device attributes.
101 * @attr: sysfs attribute definition.
102 * @show: Show handler.
103 * @store: Store handler.
104 */
a7fd6706
KS
105struct device_attribute {
106 struct attribute attr;
107 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
108 char *buf);
109 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
110 const char *buf, size_t count);
111};
112
cd00bc2c
JS
113/**
114 * struct dev_ext_attribute - Exported device attribute with extra context.
115 * @attr: Exported device attribute.
116 * @var: Pointer to context.
117 */
ca22e56d
KS
118struct dev_ext_attribute {
119 struct device_attribute attr;
120 void *var;
121};
122
123ssize_t device_show_ulong(struct device *dev, struct device_attribute *attr,
124 char *buf);
125ssize_t device_store_ulong(struct device *dev, struct device_attribute *attr,
126 const char *buf, size_t count);
127ssize_t device_show_int(struct device *dev, struct device_attribute *attr,
128 char *buf);
129ssize_t device_store_int(struct device *dev, struct device_attribute *attr,
130 const char *buf, size_t count);
91872392
BP
131ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
132 char *buf);
133ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
134 const char *buf, size_t count);
3cc50d07
LW
135ssize_t device_show_string(struct device *dev, struct device_attribute *attr,
136 char *buf);
a7fd6706 137
cd00bc2c
JS
138/**
139 * DEVICE_ATTR - Define a device attribute.
140 * @_name: Attribute name.
141 * @_mode: File mode.
142 * @_show: Show handler. Optional, but mandatory if attribute is readable.
143 * @_store: Store handler. Optional, but mandatory if attribute is writable.
144 *
145 * Convenience macro for defining a struct device_attribute.
146 *
147 * For example, ``DEVICE_ATTR(foo, 0644, foo_show, foo_store);`` expands to:
148 *
149 * .. code-block:: c
150 *
151 * struct device_attribute dev_attr_foo = {
152 * .attr = { .name = "foo", .mode = 0644 },
153 * .show = foo_show,
154 * .store = foo_store,
155 * };
156 */
d462943a 157#define DEVICE_ATTR(_name, _mode, _show, _store) \
ca22e56d 158 struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
cd00bc2c
JS
159
160/**
161 * DEVICE_ATTR_PREALLOC - Define a preallocated device attribute.
162 * @_name: Attribute name.
163 * @_mode: File mode.
164 * @_show: Show handler. Optional, but mandatory if attribute is readable.
165 * @_store: Store handler. Optional, but mandatory if attribute is writable.
166 *
167 * Like DEVICE_ATTR(), but ``SYSFS_PREALLOC`` is set on @_mode.
168 */
7fda9100
CL
169#define DEVICE_ATTR_PREALLOC(_name, _mode, _show, _store) \
170 struct device_attribute dev_attr_##_name = \
171 __ATTR_PREALLOC(_name, _mode, _show, _store)
cd00bc2c
JS
172
173/**
174 * DEVICE_ATTR_RW - Define a read-write device attribute.
175 * @_name: Attribute name.
176 *
177 * Like DEVICE_ATTR(), but @_mode is 0644, @_show is <_name>_show,
178 * and @_store is <_name>_store.
179 */
ced321bf
GKH
180#define DEVICE_ATTR_RW(_name) \
181 struct device_attribute dev_attr_##_name = __ATTR_RW(_name)
cd00bc2c
JS
182
183/**
184 * DEVICE_ATTR_ADMIN_RW - Define an admin-only read-write device attribute.
185 * @_name: Attribute name.
186 *
187 * Like DEVICE_ATTR_RW(), but @_mode is 0600.
188 */
3022c6a1
DW
189#define DEVICE_ATTR_ADMIN_RW(_name) \
190 struct device_attribute dev_attr_##_name = __ATTR_RW_MODE(_name, 0600)
cd00bc2c
JS
191
192/**
193 * DEVICE_ATTR_RO - Define a readable device attribute.
194 * @_name: Attribute name.
195 *
196 * Like DEVICE_ATTR(), but @_mode is 0444 and @_show is <_name>_show.
197 */
ced321bf
GKH
198#define DEVICE_ATTR_RO(_name) \
199 struct device_attribute dev_attr_##_name = __ATTR_RO(_name)
cd00bc2c
JS
200
201/**
202 * DEVICE_ATTR_ADMIN_RO - Define an admin-only readable device attribute.
203 * @_name: Attribute name.
204 *
205 * Like DEVICE_ATTR_RO(), but @_mode is 0400.
206 */
3022c6a1
DW
207#define DEVICE_ATTR_ADMIN_RO(_name) \
208 struct device_attribute dev_attr_##_name = __ATTR_RO_MODE(_name, 0400)
cd00bc2c
JS
209
210/**
211 * DEVICE_ATTR_WO - Define an admin-only writable device attribute.
212 * @_name: Attribute name.
213 *
214 * Like DEVICE_ATTR(), but @_mode is 0200 and @_store is <_name>_store.
215 */
1130c55c
GKH
216#define DEVICE_ATTR_WO(_name) \
217 struct device_attribute dev_attr_##_name = __ATTR_WO(_name)
cd00bc2c
JS
218
219/**
220 * DEVICE_ULONG_ATTR - Define a device attribute backed by an unsigned long.
221 * @_name: Attribute name.
222 * @_mode: File mode.
223 * @_var: Identifier of unsigned long.
224 *
225 * Like DEVICE_ATTR(), but @_show and @_store are automatically provided
226 * such that reads and writes to the attribute from userspace affect @_var.
227 */
ca22e56d
KS
228#define DEVICE_ULONG_ATTR(_name, _mode, _var) \
229 struct dev_ext_attribute dev_attr_##_name = \
230 { __ATTR(_name, _mode, device_show_ulong, device_store_ulong), &(_var) }
cd00bc2c
JS
231
232/**
233 * DEVICE_INT_ATTR - Define a device attribute backed by an int.
234 * @_name: Attribute name.
235 * @_mode: File mode.
236 * @_var: Identifier of int.
237 *
238 * Like DEVICE_ULONG_ATTR(), but @_var is an int.
239 */
ca22e56d
KS
240#define DEVICE_INT_ATTR(_name, _mode, _var) \
241 struct dev_ext_attribute dev_attr_##_name = \
94758185 242 { __ATTR(_name, _mode, device_show_int, device_store_int), &(_var) }
cd00bc2c
JS
243
244/**
245 * DEVICE_BOOL_ATTR - Define a device attribute backed by a bool.
246 * @_name: Attribute name.
247 * @_mode: File mode.
248 * @_var: Identifier of bool.
249 *
250 * Like DEVICE_ULONG_ATTR(), but @_var is a bool.
251 */
91872392
BP
252#define DEVICE_BOOL_ATTR(_name, _mode, _var) \
253 struct dev_ext_attribute dev_attr_##_name = \
254 { __ATTR(_name, _mode, device_show_bool, device_store_bool), &(_var) }
cd00bc2c 255
3cc50d07
LW
256/**
257 * DEVICE_STRING_ATTR_RO - Define a device attribute backed by a r/o string.
258 * @_name: Attribute name.
259 * @_mode: File mode.
260 * @_var: Identifier of string.
261 *
262 * Like DEVICE_ULONG_ATTR(), but @_var is a string. Because the length of the
263 * string allocation is unknown, the attribute must be read-only.
264 */
265#define DEVICE_STRING_ATTR_RO(_name, _mode, _var) \
266 struct dev_ext_attribute dev_attr_##_name = \
267 { __ATTR(_name, (_mode) & ~0222, device_show_string, NULL), (_var) }
268
356c05d5
AS
269#define DEVICE_ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store) \
270 struct device_attribute dev_attr_##_name = \
271 __ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store)
a7fd6706 272
67dd0772
BG
273int device_create_file(struct device *device,
274 const struct device_attribute *entry);
275void device_remove_file(struct device *dev,
276 const struct device_attribute *attr);
277bool device_remove_file_self(struct device *dev,
278 const struct device_attribute *attr);
279int __must_check device_create_bin_file(struct device *dev,
66ecb92b 280 const struct bin_attribute *attr);
67dd0772
BG
281void device_remove_bin_file(struct device *dev,
282 const struct bin_attribute *attr);
9ac7849e
TH
283
284/* device resource management */
285typedef void (*dr_release_t)(struct device *dev, void *res);
286typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);
287
67dd0772
BG
288void *__devres_alloc_node(dr_release_t release, size_t size, gfp_t gfp,
289 int nid, const char *name) __malloc;
9ac7849e 290#define devres_alloc(release, size, gfp) \
7c683941
DW
291 __devres_alloc_node(release, size, gfp, NUMA_NO_NODE, #release)
292#define devres_alloc_node(release, size, gfp, nid) \
293 __devres_alloc_node(release, size, gfp, nid, #release)
7c683941 294
67dd0772
BG
295void devres_for_each_res(struct device *dev, dr_release_t release,
296 dr_match_t match, void *match_data,
297 void (*fn)(struct device *, void *, void *),
298 void *data);
299void devres_free(void *res);
300void devres_add(struct device *dev, void *res);
301void *devres_find(struct device *dev, dr_release_t release,
302 dr_match_t match, void *match_data);
303void *devres_get(struct device *dev, void *new_res,
304 dr_match_t match, void *match_data);
305void *devres_remove(struct device *dev, dr_release_t release,
306 dr_match_t match, void *match_data);
307int devres_destroy(struct device *dev, dr_release_t release,
308 dr_match_t match, void *match_data);
309int devres_release(struct device *dev, dr_release_t release,
310 dr_match_t match, void *match_data);
9ac7849e
TH
311
312/* devres group */
67dd0772
BG
313void * __must_check devres_open_group(struct device *dev, void *id, gfp_t gfp);
314void devres_close_group(struct device *dev, void *id);
315void devres_remove_group(struct device *dev, void *id);
316int devres_release_group(struct device *dev, void *id);
9ac7849e 317
64c862a8 318/* managed devm_k.alloc/kfree for device drivers */
74c8e6bf 319void *devm_kmalloc(struct device *dev, size_t size, gfp_t gfp) __alloc_size(2);
f8248572 320void *devm_krealloc(struct device *dev, void *ptr, size_t size,
74c8e6bf 321 gfp_t gfp) __must_check __realloc_size(3);
67dd0772
BG
322__printf(3, 0) char *devm_kvasprintf(struct device *dev, gfp_t gfp,
323 const char *fmt, va_list ap) __malloc;
324__printf(3, 4) char *devm_kasprintf(struct device *dev, gfp_t gfp,
325 const char *fmt, ...) __malloc;
64c862a8
JP
326static inline void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp)
327{
328 return devm_kmalloc(dev, size, gfp | __GFP_ZERO);
329}
330static inline void *devm_kmalloc_array(struct device *dev,
331 size_t n, size_t size, gfp_t flags)
332{
2509b561
KC
333 size_t bytes;
334
335 if (unlikely(check_mul_overflow(n, size, &bytes)))
64c862a8 336 return NULL;
2509b561
KC
337
338 return devm_kmalloc(dev, bytes, flags);
64c862a8
JP
339}
340static inline void *devm_kcalloc(struct device *dev,
341 size_t n, size_t size, gfp_t flags)
342{
343 return devm_kmalloc_array(dev, n, size, flags | __GFP_ZERO);
344}
d388f06a
JC
345static inline __realloc_size(3, 4) void * __must_check
346devm_krealloc_array(struct device *dev, void *p, size_t new_n, size_t new_size, gfp_t flags)
347{
348 size_t bytes;
349
350 if (unlikely(check_mul_overflow(new_n, new_size, &bytes)))
351 return NULL;
352
353 return devm_krealloc(dev, p, bytes, flags);
354}
355
67dd0772
BG
356void devm_kfree(struct device *dev, const void *p);
357char *devm_kstrdup(struct device *dev, const char *s, gfp_t gfp) __malloc;
358const char *devm_kstrdup_const(struct device *dev, const char *s, gfp_t gfp);
74c8e6bf
KC
359void *devm_kmemdup(struct device *dev, const void *src, size_t len, gfp_t gfp)
360 __realloc_size(3);
9ac7849e 361
67dd0772
BG
362unsigned long devm_get_free_pages(struct device *dev,
363 gfp_t gfp_mask, unsigned int order);
364void devm_free_pages(struct device *dev, unsigned long addr);
9ac7849e 365
da7c07b1 366#ifdef CONFIG_HAS_IOMEM
eef778c9
AB
367void __iomem *devm_ioremap_resource(struct device *dev,
368 const struct resource *res);
b873af62
BG
369void __iomem *devm_ioremap_resource_wc(struct device *dev,
370 const struct resource *res);
72f8c0bf 371
d5e83827
BH
372void __iomem *devm_of_iomap(struct device *dev,
373 struct device_node *node, int index,
374 resource_size_t *size);
da7c07b1
MB
375#else
376
377static inline
378void __iomem *devm_ioremap_resource(struct device *dev,
379 const struct resource *res)
380{
381 return ERR_PTR(-EINVAL);
382}
383
384static inline
385void __iomem *devm_ioremap_resource_wc(struct device *dev,
386 const struct resource *res)
387{
388 return ERR_PTR(-EINVAL);
389}
390
391static inline
392void __iomem *devm_of_iomap(struct device *dev,
393 struct device_node *node, int index,
394 resource_size_t *size)
395{
396 return ERR_PTR(-EINVAL);
397}
398
399#endif
d5e83827 400
d6b0c580 401/* allows to add/remove a custom action to devres stack */
d6b0c580 402void devm_remove_action(struct device *dev, void (*action)(void *), void *data);
2374b682 403void devm_release_action(struct device *dev, void (*action)(void *), void *data);
d6b0c580 404
0433686c 405int __devm_add_action(struct device *dev, void (*action)(void *), void *data, const char *name);
a083c755
MY
406#define devm_add_action(dev, action, data) \
407 __devm_add_action(dev, action, data, #action)
0433686c 408
410e7088
AS
409static inline int __devm_add_action_or_reset(struct device *dev, void (*action)(void *),
410 void *data, const char *name)
a3499e9b
SM
411{
412 int ret;
413
410e7088 414 ret = __devm_add_action(dev, action, data, name);
a3499e9b
SM
415 if (ret)
416 action(data);
417
418 return ret;
419}
a083c755
MY
420#define devm_add_action_or_reset(dev, action, data) \
421 __devm_add_action_or_reset(dev, action, data, #action)
a3499e9b 422
ff86aae3
MB
423/**
424 * devm_alloc_percpu - Resource-managed alloc_percpu
425 * @dev: Device to allocate per-cpu memory for
426 * @type: Type to allocate per-cpu memory for
427 *
428 * Managed alloc_percpu. Per-cpu memory allocated with this function is
429 * automatically freed on driver detach.
430 *
431 * RETURNS:
432 * Pointer to allocated memory on success, NULL on failure.
433 */
434#define devm_alloc_percpu(dev, type) \
435 ((typeof(type) __percpu *)__devm_alloc_percpu((dev), sizeof(type), \
436 __alignof__(type)))
437
438void __percpu *__devm_alloc_percpu(struct device *dev, size_t size,
439 size_t align);
440void devm_free_percpu(struct device *dev, void __percpu *pdata);
441
6b7b6510
FT
442struct device_dma_parameters {
443 /*
444 * a low level driver may set these to teach IOMMU code about
445 * sg limitations.
446 */
447 unsigned int max_segment_size;
36950f2d 448 unsigned int min_align_mask;
6b7b6510
FT
449 unsigned long segment_boundary_mask;
450};
451
9ed98953
RW
452/**
453 * enum device_link_state - Device link states.
454 * @DL_STATE_NONE: The presence of the drivers is not being tracked.
455 * @DL_STATE_DORMANT: None of the supplier/consumer drivers is present.
456 * @DL_STATE_AVAILABLE: The supplier driver is present, but the consumer is not.
457 * @DL_STATE_CONSUMER_PROBE: The consumer is probing (supplier driver present).
458 * @DL_STATE_ACTIVE: Both the supplier and consumer drivers are present.
459 * @DL_STATE_SUPPLIER_UNBIND: The supplier driver is unbinding.
460 */
461enum device_link_state {
462 DL_STATE_NONE = -1,
463 DL_STATE_DORMANT = 0,
464 DL_STATE_AVAILABLE,
465 DL_STATE_CONSUMER_PROBE,
466 DL_STATE_ACTIVE,
467 DL_STATE_SUPPLIER_UNBIND,
468};
469
470/*
471 * Device link flags.
472 *
515db266 473 * STATELESS: The core will not remove this link automatically.
e88728f4 474 * AUTOREMOVE_CONSUMER: Remove the link automatically on consumer driver unbind.
21d5c57b
RW
475 * PM_RUNTIME: If set, the runtime PM framework will use this link.
476 * RPM_ACTIVE: Run pm_runtime_get_sync() on the supplier during link creation.
1689cac5 477 * AUTOREMOVE_SUPPLIER: Remove the link automatically on supplier driver unbind.
e7dd4010 478 * AUTOPROBE_CONSUMER: Probe consumer driver automatically after supplier binds.
515db266 479 * MANAGED: The core tracks presence of supplier/consumer drivers (internal).
05ef983e 480 * SYNC_STATE_ONLY: Link only affects sync_state() behavior.
4b9bbb29 481 * INFERRED: Inferred from data (eg: firmware) and not from driver actions.
9ed98953 482 */
e88728f4
VG
483#define DL_FLAG_STATELESS BIT(0)
484#define DL_FLAG_AUTOREMOVE_CONSUMER BIT(1)
485#define DL_FLAG_PM_RUNTIME BIT(2)
486#define DL_FLAG_RPM_ACTIVE BIT(3)
1689cac5 487#define DL_FLAG_AUTOREMOVE_SUPPLIER BIT(4)
e7dd4010 488#define DL_FLAG_AUTOPROBE_CONSUMER BIT(5)
515db266 489#define DL_FLAG_MANAGED BIT(6)
05ef983e 490#define DL_FLAG_SYNC_STATE_ONLY BIT(7)
4b9bbb29 491#define DL_FLAG_INFERRED BIT(8)
67cad5c6 492#define DL_FLAG_CYCLE BIT(9)
9ed98953 493
9ed98953
RW
494/**
495 * enum dl_dev_state - Device driver presence tracking information.
496 * @DL_DEV_NO_DRIVER: There is no driver attached to the device.
497 * @DL_DEV_PROBING: A driver is probing.
498 * @DL_DEV_DRIVER_BOUND: The driver has been bound to the device.
499 * @DL_DEV_UNBINDING: The driver is unbinding from the device.
500 */
501enum dl_dev_state {
502 DL_DEV_NO_DRIVER = 0,
503 DL_DEV_PROBING,
504 DL_DEV_DRIVER_BOUND,
505 DL_DEV_UNBINDING,
506};
507
70f400d4
RJ
508/**
509 * enum device_removable - Whether the device is removable. The criteria for a
510 * device to be classified as removable is determined by its subsystem or bus.
511 * @DEVICE_REMOVABLE_NOT_SUPPORTED: This attribute is not supported for this
512 * device (default).
513 * @DEVICE_REMOVABLE_UNKNOWN: Device location is Unknown.
514 * @DEVICE_FIXED: Device is not removable by the user.
515 * @DEVICE_REMOVABLE: Device is removable by the user.
516 */
517enum device_removable {
518 DEVICE_REMOVABLE_NOT_SUPPORTED = 0, /* must be 0 */
519 DEVICE_REMOVABLE_UNKNOWN,
520 DEVICE_FIXED,
521 DEVICE_REMOVABLE,
522};
523
9ed98953
RW
524/**
525 * struct dev_links_info - Device data related to device links.
526 * @suppliers: List of links to supplier devices.
527 * @consumers: List of links to consumer devices.
3b052a3e 528 * @defer_sync: Hook to global list of devices that have deferred sync_state.
9ed98953
RW
529 * @status: Driver status information.
530 */
531struct dev_links_info {
532 struct list_head suppliers;
533 struct list_head consumers;
3b052a3e 534 struct list_head defer_sync;
9ed98953
RW
535 enum dl_dev_state status;
536};
537
34fff628
TG
538/**
539 * struct dev_msi_info - Device data related to MSI
540 * @domain: The MSI interrupt domain associated to the device
013bd8e5 541 * @data: Pointer to MSI device data
34fff628
TG
542 */
543struct dev_msi_info {
013bd8e5 544#ifdef CONFIG_GENERIC_MSI_IRQ
13e7accb 545 struct irq_domain *domain;
013bd8e5
TG
546 struct msi_device_data *data;
547#endif
34fff628
TG
548};
549
6423d295
WC
550/**
551 * enum device_physical_location_panel - Describes which panel surface of the
552 * system's housing the device connection point resides on.
553 * @DEVICE_PANEL_TOP: Device connection point is on the top panel.
554 * @DEVICE_PANEL_BOTTOM: Device connection point is on the bottom panel.
555 * @DEVICE_PANEL_LEFT: Device connection point is on the left panel.
556 * @DEVICE_PANEL_RIGHT: Device connection point is on the right panel.
557 * @DEVICE_PANEL_FRONT: Device connection point is on the front panel.
558 * @DEVICE_PANEL_BACK: Device connection point is on the back panel.
559 * @DEVICE_PANEL_UNKNOWN: The panel with device connection point is unknown.
560 */
561enum device_physical_location_panel {
562 DEVICE_PANEL_TOP,
563 DEVICE_PANEL_BOTTOM,
564 DEVICE_PANEL_LEFT,
565 DEVICE_PANEL_RIGHT,
566 DEVICE_PANEL_FRONT,
567 DEVICE_PANEL_BACK,
568 DEVICE_PANEL_UNKNOWN,
569};
570
571/**
572 * enum device_physical_location_vertical_position - Describes vertical
573 * position of the device connection point on the panel surface.
574 * @DEVICE_VERT_POS_UPPER: Device connection point is at upper part of panel.
575 * @DEVICE_VERT_POS_CENTER: Device connection point is at center part of panel.
576 * @DEVICE_VERT_POS_LOWER: Device connection point is at lower part of panel.
577 */
578enum device_physical_location_vertical_position {
579 DEVICE_VERT_POS_UPPER,
580 DEVICE_VERT_POS_CENTER,
581 DEVICE_VERT_POS_LOWER,
582};
583
584/**
585 * enum device_physical_location_horizontal_position - Describes horizontal
586 * position of the device connection point on the panel surface.
587 * @DEVICE_HORI_POS_LEFT: Device connection point is at left part of panel.
588 * @DEVICE_HORI_POS_CENTER: Device connection point is at center part of panel.
589 * @DEVICE_HORI_POS_RIGHT: Device connection point is at right part of panel.
590 */
591enum device_physical_location_horizontal_position {
592 DEVICE_HORI_POS_LEFT,
593 DEVICE_HORI_POS_CENTER,
594 DEVICE_HORI_POS_RIGHT,
595};
596
597/**
598 * struct device_physical_location - Device data related to physical location
599 * of the device connection point.
600 * @panel: Panel surface of the system's housing that the device connection
601 * point resides on.
602 * @vertical_position: Vertical position of the device connection point within
603 * the panel.
604 * @horizontal_position: Horizontal position of the device connection point
605 * within the panel.
606 * @dock: Set if the device connection point resides in a docking station or
607 * port replicator.
608 * @lid: Set if this device connection point resides on the lid of laptop
609 * system.
610 */
611struct device_physical_location {
612 enum device_physical_location_panel panel;
613 enum device_physical_location_vertical_position vertical_position;
614 enum device_physical_location_horizontal_position horizontal_position;
615 bool dock;
616 bool lid;
617};
618
880ffb5c
WG
619/**
620 * struct device - The basic device structure
621 * @parent: The device's "parent" device, the device to which it is attached.
622 * In most cases, a parent device is some sort of bus or host
623 * controller. If parent is NULL, the device, is a top-level device,
624 * which is not usually what you want.
625 * @p: Holds the private data of the driver core portions of the device.
626 * See the comment of the struct device_private for detail.
627 * @kobj: A top-level, abstract class from which other classes are derived.
628 * @init_name: Initial name of the device.
629 * @type: The type of device.
630 * This identifies the device type and carries type-specific
631 * information.
632 * @mutex: Mutex to synchronize calls to its driver.
633 * @bus: Type of bus device is on.
634 * @driver: Which driver has allocated this
635 * @platform_data: Platform data specific to the device.
636 * Example: For devices on custom boards, as typical of embedded
637 * and SOC based hardware, Linux often uses platform_data to point
638 * to board-specific structures describing devices and how they
639 * are wired. That can include what ports are available, chip
640 * variants, which GPIO pins act in what additional roles, and so
641 * on. This shrinks the "Board Support Packages" (BSPs) and
642 * minimizes board-specific #ifdefs in drivers.
1bb6c08a 643 * @driver_data: Private pointer for driver specific info.
64df1148 644 * @links: Links to suppliers and consumers of this device.
880ffb5c 645 * @power: For device power management.
74378c5c 646 * See Documentation/driver-api/pm/devices.rst for details.
564b905a 647 * @pm_domain: Provide callbacks that are executed during system suspend,
880ffb5c
WG
648 * hibernation, system resume and during runtime PM transitions
649 * along with subsystem-level and driver-level callbacks.
95035eac 650 * @em_pd: device's energy model performance domain
ab78029e 651 * @pins: For device pin management.
4b0c9948 652 * See Documentation/driver-api/pin-control.rst for details.
34fff628 653 * @msi: MSI related data
880ffb5c 654 * @numa_node: NUMA node this device is close to.
6a7a8176 655 * @dma_ops: DMA mapping operations for this device.
880ffb5c
WG
656 * @dma_mask: Dma mask (if dma'ble device).
657 * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all
658 * hardware supports 64-bit addresses for consistent allocations
659 * such descriptors.
a7ba70f1
NSJ
660 * @bus_dma_limit: Limit of an upstream bridge or bus which imposes a smaller
661 * DMA limit than the device itself supports.
e0d07278 662 * @dma_range_map: map for DMA memory ranges relative to that of RAM
880ffb5c
WG
663 * @dma_parms: A low level driver may set these to teach IOMMU code about
664 * segment limitations.
665 * @dma_pools: Dma pools (if dma'ble device).
666 * @dma_mem: Internal for coherent mem override.
bfd63cd2 667 * @cma_area: Contiguous memory area for dma allocations
158dbe9c 668 * @dma_io_tlb_mem: Software IO TLB allocator. Not for driver use.
79636caa
PT
669 * @dma_io_tlb_pools: List of transient swiotlb memory pools.
670 * @dma_io_tlb_lock: Protects changes to the list of active pools.
1395706a 671 * @dma_uses_io_tlb: %true if device has used the software IO TLB.
880ffb5c
WG
672 * @archdata: For arch-specific additions.
673 * @of_node: Associated device tree node.
ce793486 674 * @fwnode: Associated device node supplied by platform firmware.
880ffb5c 675 * @devt: For creating the sysfs "dev".
2eda013f 676 * @id: device instance
880ffb5c
WG
677 * @devres_lock: Spinlock to protect the resource of the device.
678 * @devres_head: The resources list of the device.
880ffb5c
WG
679 * @class: The class of the device.
680 * @groups: Optional attribute groups.
681 * @release: Callback to free the device after all references have
682 * gone away. This should be set by the allocator of the
683 * device (i.e. the bus driver that discovered the device).
bfd63cd2 684 * @iommu_group: IOMMU group the device belongs to.
045a7042 685 * @iommu: Per device generic IOMMU runtime data
6423d295
WC
686 * @physical_location: Describes physical location of the device connection
687 * point in the system housing.
70f400d4
RJ
688 * @removable: Whether the device can be removed from the system. This
689 * should be set by the subsystem / bus driver that discovered
690 * the device.
880ffb5c 691 *
4f3549d7
RW
692 * @offline_disabled: If set, the device is permanently online.
693 * @offline: Set after successful invocation of bus type's .offline().
4e75e1d7
JH
694 * @of_node_reused: Set if the device-tree node is shared with an ancestor
695 * device.
fc5a251d
SK
696 * @state_synced: The hardware state of this device has been synced to match
697 * the software state of this device by calling the driver/bus
698 * sync_state() callback.
f2db85b6
SK
699 * @can_match: The device has matched with a driver at least once or it is in
700 * a bus (like AMBA) which can't check for matching drivers until
701 * other devices probe successfully.
f3ecc0ff
CH
702 * @dma_coherent: this particular device is dma coherent, even if the
703 * architecture supports non-coherent devices.
d35834c6
CH
704 * @dma_ops_bypass: If set to %true then the dma_ops are bypassed for the
705 * streaming DMA operations (->map_* / ->unmap_* / ->sync_*),
706 * and optionall (if the coherent mask is large enough) also
707 * for dma allocations. This flag is managed by the dma ops
708 * instance from ->dma_supported.
a6016aac 709 * @dma_skip_sync: DMA sync operations can be skipped for coherent buffers.
880ffb5c
WG
710 *
711 * At the lowest level, every device in a Linux system is represented by an
712 * instance of struct device. The device structure contains the information
713 * that the device model core needs to model the system. Most subsystems,
714 * however, track additional information about the devices they host. As a
715 * result, it is rare for devices to be represented by bare device structures;
716 * instead, that structure, like kobject structures, is usually embedded within
717 * a higher-level representation of the device.
718 */
1da177e4 719struct device {
159ef31e 720 struct kobject kobj;
49a4ec18 721 struct device *parent;
1da177e4 722
fb069a5d
GKH
723 struct device_private *p;
724
c906a48a 725 const char *init_name; /* initial name of the device */
aed65af1 726 const struct device_type *type;
1da177e4 727
d492cc25 728 const struct bus_type *bus; /* type of bus device is on */
1da177e4
LT
729 struct device_driver *driver; /* which driver has allocated this
730 device */
e67c8562
GKH
731 void *platform_data; /* Platform specific data, device
732 core doesn't touch it */
1bb6c08a 733 void *driver_data; /* Driver data, set and get with
2c6f4fc8 734 dev_set_drvdata/dev_get_drvdata */
159ef31e
GKH
735 struct mutex mutex; /* mutex to synchronize calls to
736 * its driver.
737 */
738
9ed98953 739 struct dev_links_info links;
1da177e4 740 struct dev_pm_info power;
564b905a 741 struct dev_pm_domain *pm_domain;
1da177e4 742
1bc138c6
LL
743#ifdef CONFIG_ENERGY_MODEL
744 struct em_perf_domain *em_pd;
745#endif
746
ab78029e
LW
747#ifdef CONFIG_PINCTRL
748 struct dev_pin_info *pins;
749#endif
34fff628 750 struct dev_msi_info msi;
2f9237d4 751#ifdef CONFIG_DMA_OPS
5657933d 752 const struct dma_map_ops *dma_ops;
2f9237d4 753#endif
1da177e4
LT
754 u64 *dma_mask; /* dma mask (if dma'able device) */
755 u64 coherent_dma_mask;/* Like dma_mask, but for
756 alloc_coherent mappings as
757 not all hardware supports
758 64 bit addresses for consistent
759 allocations such descriptors. */
a7ba70f1 760 u64 bus_dma_limit; /* upstream dma constraint */
e0d07278 761 const struct bus_dma_region *dma_range_map;
1da177e4 762
6b7b6510
FT
763 struct device_dma_parameters *dma_parms;
764
1da177e4
LT
765 struct list_head dma_pools; /* dma pools (if dma'ble) */
766
ff4c25f2 767#ifdef CONFIG_DMA_DECLARE_COHERENT
1da177e4
LT
768 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
769 override */
2b281296 770#endif
a2547380 771#ifdef CONFIG_DMA_CMA
c64be2bb
MS
772 struct cma *cma_area; /* contiguous memory area for dma
773 allocations */
69031f50
CC
774#endif
775#ifdef CONFIG_SWIOTLB
776 struct io_tlb_mem *dma_io_tlb_mem;
79636caa
PT
777#endif
778#ifdef CONFIG_SWIOTLB_DYNAMIC
779 struct list_head dma_io_tlb_pools;
780 spinlock_t dma_io_tlb_lock;
1395706a 781 bool dma_uses_io_tlb;
c64be2bb 782#endif
c6dbaef2
BH
783 /* arch specific additions */
784 struct dev_archdata archdata;
c9e358df
GL
785
786 struct device_node *of_node; /* associated device tree node */
ce793486 787 struct fwnode_handle *fwnode; /* firmware device node */
1da177e4 788
159ef31e
GKH
789#ifdef CONFIG_NUMA
790 int numa_node; /* NUMA node this device is close to */
791#endif
929d2fa5 792 dev_t devt; /* dev_t, creates the sysfs "dev" */
ca22e56d 793 u32 id; /* device instance */
929d2fa5 794
9ac7849e
TH
795 spinlock_t devres_lock;
796 struct list_head devres_head;
797
9fa120fb 798 const struct class *class;
a4dbd674 799 const struct attribute_group **groups; /* optional groups */
23681e47 800
d462943a 801 void (*release)(struct device *dev);
74416e1e 802 struct iommu_group *iommu_group;
045a7042 803 struct dev_iommu *iommu;
4f3549d7 804
6423d295
WC
805 struct device_physical_location *physical_location;
806
70f400d4
RJ
807 enum device_removable removable;
808
4f3549d7
RW
809 bool offline_disabled:1;
810 bool offline:1;
4e75e1d7 811 bool of_node_reused:1;
fc5a251d 812 bool state_synced:1;
f2db85b6 813 bool can_match:1;
f3ecc0ff
CH
814#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
815 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
816 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL)
817 bool dma_coherent:1;
818#endif
d35834c6
CH
819#ifdef CONFIG_DMA_OPS_BYPASS
820 bool dma_ops_bypass : 1;
821#endif
f406c8e4 822#ifdef CONFIG_DMA_NEED_SYNC
a6016aac 823 bool dma_skip_sync:1;
f406c8e4 824#endif
1da177e4
LT
825};
826
287905e6
SK
827/**
828 * struct device_link - Device link representation.
829 * @supplier: The device on the supplier end of the link.
830 * @s_node: Hook to the supplier device's list of links to consumers.
831 * @consumer: The device on the consumer end of the link.
832 * @c_node: Hook to the consumer device's list of links to suppliers.
833 * @link_dev: device used to expose link details in sysfs
834 * @status: The state of the link (with respect to the presence of drivers).
835 * @flags: Link flags.
836 * @rpm_active: Whether or not the consumer device is runtime-PM-active.
837 * @kref: Count repeated addition of the same link.
80dd33cf 838 * @rm_work: Work structure used for removing the link.
287905e6
SK
839 * @supplier_preactivated: Supplier has been made active before consumer probe.
840 */
841struct device_link {
842 struct device *supplier;
843 struct list_head s_node;
844 struct device *consumer;
845 struct list_head c_node;
846 struct device link_dev;
847 enum device_link_state status;
848 u32 flags;
849 refcount_t rpm_active;
850 struct kref kref;
80dd33cf 851 struct work_struct rm_work;
287905e6
SK
852 bool supplier_preactivated; /* Owned by consumer probe. */
853};
854
6149f83b 855#define kobj_to_dev(__kobj) container_of_const(__kobj, struct device, kobj)
a4232963 856
dbba197e
JR
857/**
858 * device_iommu_mapped - Returns true when the device DMA is translated
859 * by an IOMMU
860 * @dev: Device to perform the check on
861 */
862static inline bool device_iommu_mapped(struct device *dev)
863{
864 return (dev->iommu_group != NULL);
865}
866
9a3df1f7
AS
867/* Get the wakeup routines, which depend on struct device */
868#include <linux/pm_wakeup.h>
869
cd00bc2c
JS
870/**
871 * dev_name - Return a device's name.
872 * @dev: Device with name to get.
873 * Return: The kobject name of the device, or its initial name if unavailable.
874 */
bf9ca69f 875static inline const char *dev_name(const struct device *dev)
06916639 876{
a636ee7f
PM
877 /* Use the init name until the kobject becomes available */
878 if (dev->init_name)
879 return dev->init_name;
880
1fa5ae85 881 return kobject_name(&dev->kobj);
06916639
KS
882}
883
e020ff61
SK
884/**
885 * dev_bus_name - Return a device's bus/class name, if at all possible
886 * @dev: struct device to get the bus/class name of
887 *
888 * Will return the name of the bus/class the device is attached to. If it is
889 * not attached to a bus/class, an empty string will be returned.
890 */
891static inline const char *dev_bus_name(const struct device *dev)
892{
893 return dev->bus ? dev->bus->name : (dev->class ? dev->class->name : "");
894}
895
67dd0772 896__printf(2, 3) int dev_set_name(struct device *dev, const char *name, ...);
413c239f 897
87348136
CH
898#ifdef CONFIG_NUMA
899static inline int dev_to_node(struct device *dev)
900{
901 return dev->numa_node;
902}
903static inline void set_dev_node(struct device *dev, int node)
904{
905 dev->numa_node = node;
906}
907#else
908static inline int dev_to_node(struct device *dev)
909{
98fa15f3 910 return NUMA_NO_NODE;
87348136
CH
911}
912static inline void set_dev_node(struct device *dev, int node)
913{
914}
915#endif
916
f1421db8
MZ
917static inline struct irq_domain *dev_get_msi_domain(const struct device *dev)
918{
13e7accb 919#ifdef CONFIG_GENERIC_MSI_IRQ
34fff628 920 return dev->msi.domain;
f1421db8
MZ
921#else
922 return NULL;
923#endif
924}
925
926static inline void dev_set_msi_domain(struct device *dev, struct irq_domain *d)
927{
13e7accb 928#ifdef CONFIG_GENERIC_MSI_IRQ
34fff628 929 dev->msi.domain = d;
f1421db8
MZ
930#endif
931}
932
a996d010
JD
933static inline void *dev_get_drvdata(const struct device *dev)
934{
935 return dev->driver_data;
936}
937
938static inline void dev_set_drvdata(struct device *dev, void *data)
939{
940 dev->driver_data = data;
941}
942
5c095a0e
RW
943static inline struct pm_subsys_data *dev_to_psd(struct device *dev)
944{
945 return dev ? dev->power.subsys_data : NULL;
946}
947
f67f129e
ML
948static inline unsigned int dev_get_uevent_suppress(const struct device *dev)
949{
950 return dev->kobj.uevent_suppress;
951}
952
953static inline void dev_set_uevent_suppress(struct device *dev, int val)
954{
955 dev->kobj.uevent_suppress = val;
956}
957
d305ef5d
DR
958static inline int device_is_registered(struct device *dev)
959{
3f62e570 960 return dev->kobj.state_in_sysfs;
d305ef5d
DR
961}
962
5af84b82
RW
963static inline void device_enable_async_suspend(struct device *dev)
964{
f76b168b 965 if (!dev->power.is_prepared)
5af84b82
RW
966 dev->power.async_suspend = true;
967}
968
5a2eb858
RW
969static inline void device_disable_async_suspend(struct device *dev)
970{
f76b168b 971 if (!dev->power.is_prepared)
5a2eb858
RW
972 dev->power.async_suspend = false;
973}
974
975static inline bool device_async_suspend_enabled(struct device *dev)
976{
977 return !!dev->power.async_suspend;
978}
979
85945c28
SH
980static inline bool device_pm_not_required(struct device *dev)
981{
982 return dev->power.no_pm;
983}
984
985static inline void device_set_pm_not_required(struct device *dev)
986{
987 dev->power.no_pm = true;
988}
989
feb70af0
RW
990static inline void dev_pm_syscore_device(struct device *dev, bool val)
991{
992#ifdef CONFIG_PM_SLEEP
993 dev->power.syscore = val;
994#endif
995}
996
08810a41
RW
997static inline void dev_pm_set_driver_flags(struct device *dev, u32 flags)
998{
999 dev->power.driver_flags = flags;
1000}
1001
1002static inline bool dev_pm_test_driver_flags(struct device *dev, u32 flags)
1003{
1004 return !!(dev->power.driver_flags & flags);
1005}
1006
8e9394ce
GKH
1007static inline void device_lock(struct device *dev)
1008{
3142788b 1009 mutex_lock(&dev->mutex);
8e9394ce
GKH
1010}
1011
7dd9cba5
ON
1012static inline int device_lock_interruptible(struct device *dev)
1013{
1014 return mutex_lock_interruptible(&dev->mutex);
1015}
1016
8e9394ce
GKH
1017static inline int device_trylock(struct device *dev)
1018{
3142788b 1019 return mutex_trylock(&dev->mutex);
8e9394ce
GKH
1020}
1021
1022static inline void device_unlock(struct device *dev)
1023{
3142788b 1024 mutex_unlock(&dev->mutex);
8e9394ce 1025}
134c6eaa
DW
1026
1027DEFINE_GUARD(device, struct device *, device_lock(_T), device_unlock(_T))
8e9394ce 1028
ac801022
KRW
1029static inline void device_lock_assert(struct device *dev)
1030{
1031 lockdep_assert_held(&dev->mutex);
1032}
1033
e8a51e1b
BH
1034static inline struct device_node *dev_of_node(struct device *dev)
1035{
1b833924 1036 if (!IS_ENABLED(CONFIG_OF) || !dev)
e8a51e1b
BH
1037 return NULL;
1038 return dev->of_node;
1039}
1040
ac338acf
SK
1041static inline bool dev_has_sync_state(struct device *dev)
1042{
1043 if (!dev)
1044 return false;
1045 if (dev->driver && dev->driver->sync_state)
1046 return true;
1047 if (dev->bus && dev->bus->sync_state)
1048 return true;
1049 return false;
1050}
1051
70f400d4
RJ
1052static inline void dev_set_removable(struct device *dev,
1053 enum device_removable removable)
1054{
1055 dev->removable = removable;
1056}
1057
1058static inline bool dev_is_removable(struct device *dev)
1059{
1060 return dev->removable == DEVICE_REMOVABLE;
1061}
1062
1063static inline bool dev_removable_is_valid(struct device *dev)
1064{
1065 return dev->removable != DEVICE_REMOVABLE_NOT_SUPPORTED;
1066}
1067
1da177e4
LT
1068/*
1069 * High level routines for use by the bus drivers
1070 */
67dd0772
BG
1071int __must_check device_register(struct device *dev);
1072void device_unregister(struct device *dev);
1073void device_initialize(struct device *dev);
1074int __must_check device_add(struct device *dev);
1075void device_del(struct device *dev);
54da6a09
PZ
1076
1077DEFINE_FREE(device_del, struct device *, if (_T) device_del(_T))
1078
67dd0772
BG
1079int device_for_each_child(struct device *dev, void *data,
1080 int (*fn)(struct device *dev, void *data));
1081int device_for_each_child_reverse(struct device *dev, void *data,
1082 int (*fn)(struct device *dev, void *data));
1083struct device *device_find_child(struct device *dev, void *data,
1084 int (*match)(struct device *dev, void *data));
1085struct device *device_find_child_by_name(struct device *parent,
1086 const char *name);
82b070be
AS
1087struct device *device_find_any_child(struct device *parent);
1088
67dd0772
BG
1089int device_rename(struct device *dev, const char *new_name);
1090int device_move(struct device *dev, struct device *new_parent,
1091 enum dpm_order dpm_order);
1092int device_change_owner(struct device *dev, kuid_t kuid, kgid_t kgid);
1da177e4 1093
4f3549d7
RW
1094static inline bool device_supports_offline(struct device *dev)
1095{
1096 return dev->bus && dev->bus->offline && dev->bus->online;
1097}
1098
d864b8ea
DW
1099#define __device_lock_set_class(dev, name, key) \
1100do { \
1101 struct device *__d2 __maybe_unused = dev; \
1102 lock_set_class(&__d2->mutex.dep_map, name, key, 0, _THIS_IP_); \
1103} while (0)
1104
1105/**
1106 * device_lock_set_class - Specify a temporary lock class while a device
1107 * is attached to a driver
1108 * @dev: device to modify
1109 * @key: lock class key data
1110 *
1111 * This must be called with the device_lock() already held, for example
1112 * from driver ->probe(). Take care to only override the default
1113 * lockdep_no_validate class.
1114 */
1115#ifdef CONFIG_LOCKDEP
1116#define device_lock_set_class(dev, key) \
1117do { \
1118 struct device *__d = dev; \
1119 dev_WARN_ONCE(__d, !lockdep_match_class(&__d->mutex, \
1120 &__lockdep_no_validate__), \
1121 "overriding existing custom lock class\n"); \
1122 __device_lock_set_class(__d, #key, key); \
1123} while (0)
1124#else
1125#define device_lock_set_class(dev, key) __device_lock_set_class(dev, #key, key)
1126#endif
1127
1128/**
1129 * device_lock_reset_class - Return a device to the default lockdep novalidate state
1130 * @dev: device to modify
1131 *
1132 * This must be called with the device_lock() already held, for example
1133 * from driver ->remove().
1134 */
1135#define device_lock_reset_class(dev) \
1136do { \
1137 struct device *__d __maybe_unused = dev; \
1138 lock_set_novalidate_class(&__d->mutex.dep_map, "&dev->mutex", \
1139 _THIS_IP_); \
1140} while (0)
1141
67dd0772
BG
1142void lock_device_hotplug(void);
1143void unlock_device_hotplug(void);
1144int lock_device_hotplug_sysfs(void);
1145int device_offline(struct device *dev);
1146int device_online(struct device *dev);
1147void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
1148void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
4e75e1d7 1149void device_set_of_node_from_dev(struct device *dev, const struct device *dev2);
43e76d46 1150void device_set_node(struct device *dev, struct fwnode_handle *fwnode);
97badf87 1151
9af15c38
PS
1152static inline int dev_num_vf(struct device *dev)
1153{
1154 if (dev->bus && dev->bus->num_vf)
1155 return dev->bus->num_vf(dev);
1156 return 0;
1157}
1158
0aa0dc41
MM
1159/*
1160 * Root device objects for grouping under /sys/devices
1161 */
67dd0772 1162struct device *__root_device_register(const char *name, struct module *owner);
eb5589a8 1163
33ac1257 1164/* This is a macro to avoid include problems with THIS_MODULE */
eb5589a8
PG
1165#define root_device_register(name) \
1166 __root_device_register(name, THIS_MODULE)
1167
67dd0772 1168void root_device_unregister(struct device *root);
0aa0dc41 1169
a5b8b1ad
MB
1170static inline void *dev_get_platdata(const struct device *dev)
1171{
1172 return dev->platform_data;
1173}
1174
1da177e4
LT
1175/*
1176 * Manual binding of a device to driver. See drivers/base/bus.c
1177 * for information on use.
1178 */
0d9f837c
JG
1179int __must_check device_driver_attach(struct device_driver *drv,
1180 struct device *dev);
67dd0772
BG
1181int __must_check device_bind_driver(struct device *dev);
1182void device_release_driver(struct device *dev);
1183int __must_check device_attach(struct device *dev);
1184int __must_check driver_attach(struct device_driver *drv);
1185void device_initial_probe(struct device *dev);
1186int __must_check device_reprobe(struct device *dev);
1da177e4 1187
67dd0772 1188bool device_is_bound(struct device *dev);
6b9cb427 1189
23681e47
GKH
1190/*
1191 * Easy functions for dynamically creating devices on the fly
1192 */
67dd0772 1193__printf(5, 6) struct device *
2bd5c639 1194device_create(const struct class *cls, struct device *parent, dev_t devt,
67dd0772
BG
1195 void *drvdata, const char *fmt, ...);
1196__printf(6, 7) struct device *
2bd5c639 1197device_create_with_groups(const struct class *cls, struct device *parent, dev_t devt,
67dd0772
BG
1198 void *drvdata, const struct attribute_group **groups,
1199 const char *fmt, ...);
d2fff096 1200void device_destroy(const struct class *cls, dev_t devt);
67dd0772
BG
1201
1202int __must_check device_add_groups(struct device *dev,
1203 const struct attribute_group **groups);
1204void device_remove_groups(struct device *dev,
1205 const struct attribute_group **groups);
a7670d42 1206
e323b2dd
DT
1207static inline int __must_check device_add_group(struct device *dev,
1208 const struct attribute_group *grp)
1209{
1210 const struct attribute_group *groups[] = { grp, NULL };
1211
1212 return device_add_groups(dev, groups);
1213}
1214
1215static inline void device_remove_group(struct device *dev,
1216 const struct attribute_group *grp)
1217{
1218 const struct attribute_group *groups[] = { grp, NULL };
1219
1220 return device_remove_groups(dev, groups);
1221}
1222
67dd0772
BG
1223int __must_check devm_device_add_group(struct device *dev,
1224 const struct attribute_group *grp);
57b8ff07 1225
880ffb5c 1226/*
1da177e4
LT
1227 * get_device - atomically increment the reference count for the device.
1228 *
1229 */
67dd0772
BG
1230struct device *get_device(struct device *dev);
1231void put_device(struct device *dev);
54da6a09
PZ
1232
1233DEFINE_FREE(put_device, struct device *, if (_T) put_device(_T))
1234
67dd0772 1235bool kill_device(struct device *dev);
1da177e4 1236
2b2af54a 1237#ifdef CONFIG_DEVTMPFS
67dd0772 1238int devtmpfs_mount(void);
2b2af54a 1239#else
5e787dbf 1240static inline int devtmpfs_mount(void) { return 0; }
2b2af54a
KS
1241#endif
1242
116f232b 1243/* drivers/base/power/shutdown.c */
67dd0772 1244void device_shutdown(void);
1da177e4 1245
1da177e4 1246/* debugging and troubleshooting/diagnostic helpers. */
67dd0772 1247const char *dev_driver_string(const struct device *dev);
99bcf217 1248
9ed98953
RW
1249/* Device links interface. */
1250struct device_link *device_link_add(struct device *consumer,
1251 struct device *supplier, u32 flags);
1252void device_link_del(struct device_link *link);
d8842211 1253void device_link_remove(void *consumer, struct device *supplier);
fc5a251d
SK
1254void device_links_supplier_sync_state_pause(void);
1255void device_links_supplier_sync_state_resume(void);
0462c56c 1256void device_link_wait_removal(void);
99bcf217 1257
1da177e4
LT
1258/* Create alias, so I can be autoloaded. */
1259#define MODULE_ALIAS_CHARDEV(major,minor) \
1260 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
1261#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
1262 MODULE_ALIAS("char-major-" __stringify(major) "-*")
e52eec13 1263
1da177e4 1264#endif /* _DEVICE_H_ */