]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/device.h
mm: relocate 'write_protect_seq' in struct mm_struct
[mirror_ubuntu-jammy-kernel.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>
c6dbaef2 33#include <asm/device.h>
1da177e4 34
1da177e4 35struct device;
fb069a5d 36struct device_private;
1da177e4 37struct device_driver;
e5dd1278 38struct driver_private;
de477254 39struct module;
1da177e4 40struct class;
6b6e39a6 41struct subsys_private;
d706c1b0 42struct device_node;
ce793486 43struct fwnode_handle;
ff21776d 44struct iommu_ops;
74416e1e 45struct iommu_group;
23c35f48 46struct dev_pin_info;
045a7042 47struct dev_iommu;
b8c5cec2 48
ca22e56d
KS
49/**
50 * struct subsys_interface - interfaces to device functions
2eda013f 51 * @name: name of the device function
5dd5f934 52 * @subsys: subsystem of the devices to attach to
2eda013f
RD
53 * @node: the list of functions registered at the subsystem
54 * @add_dev: device hookup to device function handler
55 * @remove_dev: device hookup to device function handler
ca22e56d
KS
56 *
57 * Simple interfaces attached to a subsystem. Multiple interfaces can
58 * attach to a subsystem and its devices. Unlike drivers, they do not
59 * exclusively claim or control devices. Interfaces usually represent
60 * a specific functionality of a subsystem/class of devices.
61 */
62struct subsys_interface {
63 const char *name;
64 struct bus_type *subsys;
65 struct list_head node;
66 int (*add_dev)(struct device *dev, struct subsys_interface *sif);
71db87ba 67 void (*remove_dev)(struct device *dev, struct subsys_interface *sif);
ca22e56d
KS
68};
69
70int subsys_interface_register(struct subsys_interface *sif);
71void subsys_interface_unregister(struct subsys_interface *sif);
72
73int subsys_system_register(struct bus_type *subsys,
74 const struct attribute_group **groups);
d73ce004
TH
75int subsys_virtual_register(struct bus_type *subsys,
76 const struct attribute_group **groups);
ca22e56d 77
414264f9
KS
78/*
79 * The type of device, "struct device" is embedded in. A class
80 * or bus can contain devices of different types
81 * like "partitions" and "disks", "mouse" and "event".
82 * This identifies the device type and carries type-specific
83 * information, equivalent to the kobj_type of a kobject.
84 * If "name" is specified, the uevent will contain it in
85 * the DEVTYPE variable.
86 */
f9f852df 87struct device_type {
414264f9 88 const char *name;
a4dbd674 89 const struct attribute_group **groups;
7eff2e7a 90 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
3c2670e6 91 char *(*devnode)(struct device *dev, umode_t *mode,
4e4098a3 92 kuid_t *uid, kgid_t *gid);
f9f852df 93 void (*release)(struct device *dev);
1eede070 94
8150f32b 95 const struct dev_pm_ops *pm;
f9f852df
KS
96};
97
a7fd6706
KS
98/* interface for exporting device attributes */
99struct device_attribute {
100 struct attribute attr;
101 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
102 char *buf);
103 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
104 const char *buf, size_t count);
105};
106
ca22e56d
KS
107struct dev_ext_attribute {
108 struct device_attribute attr;
109 void *var;
110};
111
112ssize_t device_show_ulong(struct device *dev, struct device_attribute *attr,
113 char *buf);
114ssize_t device_store_ulong(struct device *dev, struct device_attribute *attr,
115 const char *buf, size_t count);
116ssize_t device_show_int(struct device *dev, struct device_attribute *attr,
117 char *buf);
118ssize_t device_store_int(struct device *dev, struct device_attribute *attr,
119 const char *buf, size_t count);
91872392
BP
120ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
121 char *buf);
122ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
123 const char *buf, size_t count);
a7fd6706 124
d462943a 125#define DEVICE_ATTR(_name, _mode, _show, _store) \
ca22e56d 126 struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
7fda9100
CL
127#define DEVICE_ATTR_PREALLOC(_name, _mode, _show, _store) \
128 struct device_attribute dev_attr_##_name = \
129 __ATTR_PREALLOC(_name, _mode, _show, _store)
ced321bf
GKH
130#define DEVICE_ATTR_RW(_name) \
131 struct device_attribute dev_attr_##_name = __ATTR_RW(_name)
3022c6a1
DW
132#define DEVICE_ATTR_ADMIN_RW(_name) \
133 struct device_attribute dev_attr_##_name = __ATTR_RW_MODE(_name, 0600)
ced321bf
GKH
134#define DEVICE_ATTR_RO(_name) \
135 struct device_attribute dev_attr_##_name = __ATTR_RO(_name)
3022c6a1
DW
136#define DEVICE_ATTR_ADMIN_RO(_name) \
137 struct device_attribute dev_attr_##_name = __ATTR_RO_MODE(_name, 0400)
1130c55c
GKH
138#define DEVICE_ATTR_WO(_name) \
139 struct device_attribute dev_attr_##_name = __ATTR_WO(_name)
ca22e56d
KS
140#define DEVICE_ULONG_ATTR(_name, _mode, _var) \
141 struct dev_ext_attribute dev_attr_##_name = \
142 { __ATTR(_name, _mode, device_show_ulong, device_store_ulong), &(_var) }
143#define DEVICE_INT_ATTR(_name, _mode, _var) \
144 struct dev_ext_attribute dev_attr_##_name = \
94758185 145 { __ATTR(_name, _mode, device_show_int, device_store_int), &(_var) }
91872392
BP
146#define DEVICE_BOOL_ATTR(_name, _mode, _var) \
147 struct dev_ext_attribute dev_attr_##_name = \
148 { __ATTR(_name, _mode, device_show_bool, device_store_bool), &(_var) }
356c05d5
AS
149#define DEVICE_ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store) \
150 struct device_attribute dev_attr_##_name = \
151 __ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store)
a7fd6706 152
67dd0772
BG
153int device_create_file(struct device *device,
154 const struct device_attribute *entry);
155void device_remove_file(struct device *dev,
156 const struct device_attribute *attr);
157bool device_remove_file_self(struct device *dev,
158 const struct device_attribute *attr);
159int __must_check device_create_bin_file(struct device *dev,
66ecb92b 160 const struct bin_attribute *attr);
67dd0772
BG
161void device_remove_bin_file(struct device *dev,
162 const struct bin_attribute *attr);
9ac7849e
TH
163
164/* device resource management */
165typedef void (*dr_release_t)(struct device *dev, void *res);
166typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);
167
168#ifdef CONFIG_DEBUG_DEVRES
67dd0772
BG
169void *__devres_alloc_node(dr_release_t release, size_t size, gfp_t gfp,
170 int nid, const char *name) __malloc;
9ac7849e 171#define devres_alloc(release, size, gfp) \
7c683941
DW
172 __devres_alloc_node(release, size, gfp, NUMA_NO_NODE, #release)
173#define devres_alloc_node(release, size, gfp, nid) \
174 __devres_alloc_node(release, size, gfp, nid, #release)
9ac7849e 175#else
67dd0772
BG
176void *devres_alloc_node(dr_release_t release, size_t size,
177 gfp_t gfp, int nid) __malloc;
7c683941
DW
178static inline void *devres_alloc(dr_release_t release, size_t size, gfp_t gfp)
179{
180 return devres_alloc_node(release, size, gfp, NUMA_NO_NODE);
181}
9ac7849e 182#endif
7c683941 183
67dd0772
BG
184void devres_for_each_res(struct device *dev, dr_release_t release,
185 dr_match_t match, void *match_data,
186 void (*fn)(struct device *, void *, void *),
187 void *data);
188void devres_free(void *res);
189void devres_add(struct device *dev, void *res);
190void *devres_find(struct device *dev, dr_release_t release,
191 dr_match_t match, void *match_data);
192void *devres_get(struct device *dev, void *new_res,
193 dr_match_t match, void *match_data);
194void *devres_remove(struct device *dev, dr_release_t release,
195 dr_match_t match, void *match_data);
196int devres_destroy(struct device *dev, dr_release_t release,
197 dr_match_t match, void *match_data);
198int devres_release(struct device *dev, dr_release_t release,
199 dr_match_t match, void *match_data);
9ac7849e
TH
200
201/* devres group */
67dd0772
BG
202void * __must_check devres_open_group(struct device *dev, void *id, gfp_t gfp);
203void devres_close_group(struct device *dev, void *id);
204void devres_remove_group(struct device *dev, void *id);
205int devres_release_group(struct device *dev, void *id);
9ac7849e 206
64c862a8 207/* managed devm_k.alloc/kfree for device drivers */
67dd0772 208void *devm_kmalloc(struct device *dev, size_t size, gfp_t gfp) __malloc;
f8248572
BG
209void *devm_krealloc(struct device *dev, void *ptr, size_t size,
210 gfp_t gfp) __must_check;
67dd0772
BG
211__printf(3, 0) char *devm_kvasprintf(struct device *dev, gfp_t gfp,
212 const char *fmt, va_list ap) __malloc;
213__printf(3, 4) char *devm_kasprintf(struct device *dev, gfp_t gfp,
214 const char *fmt, ...) __malloc;
64c862a8
JP
215static inline void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp)
216{
217 return devm_kmalloc(dev, size, gfp | __GFP_ZERO);
218}
219static inline void *devm_kmalloc_array(struct device *dev,
220 size_t n, size_t size, gfp_t flags)
221{
2509b561
KC
222 size_t bytes;
223
224 if (unlikely(check_mul_overflow(n, size, &bytes)))
64c862a8 225 return NULL;
2509b561
KC
226
227 return devm_kmalloc(dev, bytes, flags);
64c862a8
JP
228}
229static inline void *devm_kcalloc(struct device *dev,
230 size_t n, size_t size, gfp_t flags)
231{
232 return devm_kmalloc_array(dev, n, size, flags | __GFP_ZERO);
233}
67dd0772
BG
234void devm_kfree(struct device *dev, const void *p);
235char *devm_kstrdup(struct device *dev, const char *s, gfp_t gfp) __malloc;
236const char *devm_kstrdup_const(struct device *dev, const char *s, gfp_t gfp);
237void *devm_kmemdup(struct device *dev, const void *src, size_t len, gfp_t gfp);
9ac7849e 238
67dd0772
BG
239unsigned long devm_get_free_pages(struct device *dev,
240 gfp_t gfp_mask, unsigned int order);
241void devm_free_pages(struct device *dev, unsigned long addr);
9ac7849e 242
eef778c9
AB
243void __iomem *devm_ioremap_resource(struct device *dev,
244 const struct resource *res);
b873af62
BG
245void __iomem *devm_ioremap_resource_wc(struct device *dev,
246 const struct resource *res);
72f8c0bf 247
d5e83827
BH
248void __iomem *devm_of_iomap(struct device *dev,
249 struct device_node *node, int index,
250 resource_size_t *size);
251
d6b0c580
DT
252/* allows to add/remove a custom action to devres stack */
253int devm_add_action(struct device *dev, void (*action)(void *), void *data);
254void devm_remove_action(struct device *dev, void (*action)(void *), void *data);
2374b682 255void devm_release_action(struct device *dev, void (*action)(void *), void *data);
d6b0c580 256
a3499e9b
SM
257static inline int devm_add_action_or_reset(struct device *dev,
258 void (*action)(void *), void *data)
259{
260 int ret;
261
262 ret = devm_add_action(dev, action, data);
263 if (ret)
264 action(data);
265
266 return ret;
267}
268
ff86aae3
MB
269/**
270 * devm_alloc_percpu - Resource-managed alloc_percpu
271 * @dev: Device to allocate per-cpu memory for
272 * @type: Type to allocate per-cpu memory for
273 *
274 * Managed alloc_percpu. Per-cpu memory allocated with this function is
275 * automatically freed on driver detach.
276 *
277 * RETURNS:
278 * Pointer to allocated memory on success, NULL on failure.
279 */
280#define devm_alloc_percpu(dev, type) \
281 ((typeof(type) __percpu *)__devm_alloc_percpu((dev), sizeof(type), \
282 __alignof__(type)))
283
284void __percpu *__devm_alloc_percpu(struct device *dev, size_t size,
285 size_t align);
286void devm_free_percpu(struct device *dev, void __percpu *pdata);
287
6b7b6510
FT
288struct device_dma_parameters {
289 /*
290 * a low level driver may set these to teach IOMMU code about
291 * sg limitations.
292 */
293 unsigned int max_segment_size;
36950f2d 294 unsigned int min_align_mask;
6b7b6510
FT
295 unsigned long segment_boundary_mask;
296};
297
9ed98953
RW
298/**
299 * enum device_link_state - Device link states.
300 * @DL_STATE_NONE: The presence of the drivers is not being tracked.
301 * @DL_STATE_DORMANT: None of the supplier/consumer drivers is present.
302 * @DL_STATE_AVAILABLE: The supplier driver is present, but the consumer is not.
303 * @DL_STATE_CONSUMER_PROBE: The consumer is probing (supplier driver present).
304 * @DL_STATE_ACTIVE: Both the supplier and consumer drivers are present.
305 * @DL_STATE_SUPPLIER_UNBIND: The supplier driver is unbinding.
306 */
307enum device_link_state {
308 DL_STATE_NONE = -1,
309 DL_STATE_DORMANT = 0,
310 DL_STATE_AVAILABLE,
311 DL_STATE_CONSUMER_PROBE,
312 DL_STATE_ACTIVE,
313 DL_STATE_SUPPLIER_UNBIND,
314};
315
316/*
317 * Device link flags.
318 *
515db266 319 * STATELESS: The core will not remove this link automatically.
e88728f4 320 * AUTOREMOVE_CONSUMER: Remove the link automatically on consumer driver unbind.
21d5c57b
RW
321 * PM_RUNTIME: If set, the runtime PM framework will use this link.
322 * RPM_ACTIVE: Run pm_runtime_get_sync() on the supplier during link creation.
1689cac5 323 * AUTOREMOVE_SUPPLIER: Remove the link automatically on supplier driver unbind.
e7dd4010 324 * AUTOPROBE_CONSUMER: Probe consumer driver automatically after supplier binds.
515db266 325 * MANAGED: The core tracks presence of supplier/consumer drivers (internal).
05ef983e 326 * SYNC_STATE_ONLY: Link only affects sync_state() behavior.
4b9bbb29 327 * INFERRED: Inferred from data (eg: firmware) and not from driver actions.
9ed98953 328 */
e88728f4
VG
329#define DL_FLAG_STATELESS BIT(0)
330#define DL_FLAG_AUTOREMOVE_CONSUMER BIT(1)
331#define DL_FLAG_PM_RUNTIME BIT(2)
332#define DL_FLAG_RPM_ACTIVE BIT(3)
1689cac5 333#define DL_FLAG_AUTOREMOVE_SUPPLIER BIT(4)
e7dd4010 334#define DL_FLAG_AUTOPROBE_CONSUMER BIT(5)
515db266 335#define DL_FLAG_MANAGED BIT(6)
05ef983e 336#define DL_FLAG_SYNC_STATE_ONLY BIT(7)
4b9bbb29 337#define DL_FLAG_INFERRED BIT(8)
9ed98953 338
9ed98953
RW
339/**
340 * enum dl_dev_state - Device driver presence tracking information.
341 * @DL_DEV_NO_DRIVER: There is no driver attached to the device.
342 * @DL_DEV_PROBING: A driver is probing.
343 * @DL_DEV_DRIVER_BOUND: The driver has been bound to the device.
344 * @DL_DEV_UNBINDING: The driver is unbinding from the device.
345 */
346enum dl_dev_state {
347 DL_DEV_NO_DRIVER = 0,
348 DL_DEV_PROBING,
349 DL_DEV_DRIVER_BOUND,
350 DL_DEV_UNBINDING,
351};
352
353/**
354 * struct dev_links_info - Device data related to device links.
355 * @suppliers: List of links to supplier devices.
356 * @consumers: List of links to consumer devices.
3b052a3e 357 * @defer_sync: Hook to global list of devices that have deferred sync_state.
9ed98953
RW
358 * @status: Driver status information.
359 */
360struct dev_links_info {
361 struct list_head suppliers;
362 struct list_head consumers;
3b052a3e 363 struct list_head defer_sync;
9ed98953
RW
364 enum dl_dev_state status;
365};
366
880ffb5c
WG
367/**
368 * struct device - The basic device structure
369 * @parent: The device's "parent" device, the device to which it is attached.
370 * In most cases, a parent device is some sort of bus or host
371 * controller. If parent is NULL, the device, is a top-level device,
372 * which is not usually what you want.
373 * @p: Holds the private data of the driver core portions of the device.
374 * See the comment of the struct device_private for detail.
375 * @kobj: A top-level, abstract class from which other classes are derived.
376 * @init_name: Initial name of the device.
377 * @type: The type of device.
378 * This identifies the device type and carries type-specific
379 * information.
380 * @mutex: Mutex to synchronize calls to its driver.
87a30e1f
DW
381 * @lockdep_mutex: An optional debug lock that a subsystem can use as a
382 * peer lock to gain localized lockdep coverage of the device_lock.
880ffb5c
WG
383 * @bus: Type of bus device is on.
384 * @driver: Which driver has allocated this
385 * @platform_data: Platform data specific to the device.
386 * Example: For devices on custom boards, as typical of embedded
387 * and SOC based hardware, Linux often uses platform_data to point
388 * to board-specific structures describing devices and how they
389 * are wired. That can include what ports are available, chip
390 * variants, which GPIO pins act in what additional roles, and so
391 * on. This shrinks the "Board Support Packages" (BSPs) and
392 * minimizes board-specific #ifdefs in drivers.
1bb6c08a 393 * @driver_data: Private pointer for driver specific info.
64df1148 394 * @links: Links to suppliers and consumers of this device.
880ffb5c 395 * @power: For device power management.
74378c5c 396 * See Documentation/driver-api/pm/devices.rst for details.
564b905a 397 * @pm_domain: Provide callbacks that are executed during system suspend,
880ffb5c
WG
398 * hibernation, system resume and during runtime PM transitions
399 * along with subsystem-level and driver-level callbacks.
95035eac 400 * @em_pd: device's energy model performance domain
ab78029e 401 * @pins: For device pin management.
0cca6c89 402 * See Documentation/driver-api/pinctl.rst for details.
4a7cc831 403 * @msi_list: Hosts MSI descriptors
f1421db8 404 * @msi_domain: The generic MSI domain this device is using.
880ffb5c 405 * @numa_node: NUMA node this device is close to.
6a7a8176 406 * @dma_ops: DMA mapping operations for this device.
880ffb5c
WG
407 * @dma_mask: Dma mask (if dma'ble device).
408 * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all
409 * hardware supports 64-bit addresses for consistent allocations
410 * such descriptors.
a7ba70f1
NSJ
411 * @bus_dma_limit: Limit of an upstream bridge or bus which imposes a smaller
412 * DMA limit than the device itself supports.
e0d07278 413 * @dma_range_map: map for DMA memory ranges relative to that of RAM
880ffb5c
WG
414 * @dma_parms: A low level driver may set these to teach IOMMU code about
415 * segment limitations.
416 * @dma_pools: Dma pools (if dma'ble device).
417 * @dma_mem: Internal for coherent mem override.
bfd63cd2 418 * @cma_area: Contiguous memory area for dma allocations
880ffb5c
WG
419 * @archdata: For arch-specific additions.
420 * @of_node: Associated device tree node.
ce793486 421 * @fwnode: Associated device node supplied by platform firmware.
880ffb5c 422 * @devt: For creating the sysfs "dev".
2eda013f 423 * @id: device instance
880ffb5c
WG
424 * @devres_lock: Spinlock to protect the resource of the device.
425 * @devres_head: The resources list of the device.
426 * @knode_class: The node used to add the device to the class list.
427 * @class: The class of the device.
428 * @groups: Optional attribute groups.
429 * @release: Callback to free the device after all references have
430 * gone away. This should be set by the allocator of the
431 * device (i.e. the bus driver that discovered the device).
bfd63cd2 432 * @iommu_group: IOMMU group the device belongs to.
045a7042 433 * @iommu: Per device generic IOMMU runtime data
880ffb5c 434 *
4f3549d7
RW
435 * @offline_disabled: If set, the device is permanently online.
436 * @offline: Set after successful invocation of bus type's .offline().
4e75e1d7
JH
437 * @of_node_reused: Set if the device-tree node is shared with an ancestor
438 * device.
fc5a251d
SK
439 * @state_synced: The hardware state of this device has been synced to match
440 * the software state of this device by calling the driver/bus
441 * sync_state() callback.
f2db85b6
SK
442 * @can_match: The device has matched with a driver at least once or it is in
443 * a bus (like AMBA) which can't check for matching drivers until
444 * other devices probe successfully.
f3ecc0ff
CH
445 * @dma_coherent: this particular device is dma coherent, even if the
446 * architecture supports non-coherent devices.
d35834c6
CH
447 * @dma_ops_bypass: If set to %true then the dma_ops are bypassed for the
448 * streaming DMA operations (->map_* / ->unmap_* / ->sync_*),
449 * and optionall (if the coherent mask is large enough) also
450 * for dma allocations. This flag is managed by the dma ops
451 * instance from ->dma_supported.
880ffb5c
WG
452 *
453 * At the lowest level, every device in a Linux system is represented by an
454 * instance of struct device. The device structure contains the information
455 * that the device model core needs to model the system. Most subsystems,
456 * however, track additional information about the devices they host. As a
457 * result, it is rare for devices to be represented by bare device structures;
458 * instead, that structure, like kobject structures, is usually embedded within
459 * a higher-level representation of the device.
460 */
1da177e4 461struct device {
159ef31e 462 struct kobject kobj;
49a4ec18 463 struct device *parent;
1da177e4 464
fb069a5d
GKH
465 struct device_private *p;
466
c906a48a 467 const char *init_name; /* initial name of the device */
aed65af1 468 const struct device_type *type;
1da177e4 469
d462943a 470 struct bus_type *bus; /* type of bus device is on */
1da177e4
LT
471 struct device_driver *driver; /* which driver has allocated this
472 device */
e67c8562
GKH
473 void *platform_data; /* Platform specific data, device
474 core doesn't touch it */
1bb6c08a 475 void *driver_data; /* Driver data, set and get with
2c6f4fc8 476 dev_set_drvdata/dev_get_drvdata */
87a30e1f
DW
477#ifdef CONFIG_PROVE_LOCKING
478 struct mutex lockdep_mutex;
479#endif
159ef31e
GKH
480 struct mutex mutex; /* mutex to synchronize calls to
481 * its driver.
482 */
483
9ed98953 484 struct dev_links_info links;
1da177e4 485 struct dev_pm_info power;
564b905a 486 struct dev_pm_domain *pm_domain;
1da177e4 487
1bc138c6
LL
488#ifdef CONFIG_ENERGY_MODEL
489 struct em_perf_domain *em_pd;
490#endif
491
f1421db8
MZ
492#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
493 struct irq_domain *msi_domain;
494#endif
ab78029e
LW
495#ifdef CONFIG_PINCTRL
496 struct dev_pin_info *pins;
497#endif
4a7cc831
JL
498#ifdef CONFIG_GENERIC_MSI_IRQ
499 struct list_head msi_list;
500#endif
2f9237d4 501#ifdef CONFIG_DMA_OPS
5657933d 502 const struct dma_map_ops *dma_ops;
2f9237d4 503#endif
1da177e4
LT
504 u64 *dma_mask; /* dma mask (if dma'able device) */
505 u64 coherent_dma_mask;/* Like dma_mask, but for
506 alloc_coherent mappings as
507 not all hardware supports
508 64 bit addresses for consistent
509 allocations such descriptors. */
a7ba70f1 510 u64 bus_dma_limit; /* upstream dma constraint */
e0d07278 511 const struct bus_dma_region *dma_range_map;
1da177e4 512
6b7b6510
FT
513 struct device_dma_parameters *dma_parms;
514
1da177e4
LT
515 struct list_head dma_pools; /* dma pools (if dma'ble) */
516
ff4c25f2 517#ifdef CONFIG_DMA_DECLARE_COHERENT
1da177e4
LT
518 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
519 override */
2b281296 520#endif
a2547380 521#ifdef CONFIG_DMA_CMA
c64be2bb
MS
522 struct cma *cma_area; /* contiguous memory area for dma
523 allocations */
524#endif
c6dbaef2
BH
525 /* arch specific additions */
526 struct dev_archdata archdata;
c9e358df
GL
527
528 struct device_node *of_node; /* associated device tree node */
ce793486 529 struct fwnode_handle *fwnode; /* firmware device node */
1da177e4 530
159ef31e
GKH
531#ifdef CONFIG_NUMA
532 int numa_node; /* NUMA node this device is close to */
533#endif
929d2fa5 534 dev_t devt; /* dev_t, creates the sysfs "dev" */
ca22e56d 535 u32 id; /* device instance */
929d2fa5 536
9ac7849e
TH
537 spinlock_t devres_lock;
538 struct list_head devres_head;
539
b7a3e813 540 struct class *class;
a4dbd674 541 const struct attribute_group **groups; /* optional groups */
23681e47 542
d462943a 543 void (*release)(struct device *dev);
74416e1e 544 struct iommu_group *iommu_group;
045a7042 545 struct dev_iommu *iommu;
4f3549d7
RW
546
547 bool offline_disabled:1;
548 bool offline:1;
4e75e1d7 549 bool of_node_reused:1;
fc5a251d 550 bool state_synced:1;
f2db85b6 551 bool can_match:1;
f3ecc0ff
CH
552#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
553 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
554 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL)
555 bool dma_coherent:1;
556#endif
d35834c6
CH
557#ifdef CONFIG_DMA_OPS_BYPASS
558 bool dma_ops_bypass : 1;
559#endif
1da177e4
LT
560};
561
287905e6
SK
562/**
563 * struct device_link - Device link representation.
564 * @supplier: The device on the supplier end of the link.
565 * @s_node: Hook to the supplier device's list of links to consumers.
566 * @consumer: The device on the consumer end of the link.
567 * @c_node: Hook to the consumer device's list of links to suppliers.
568 * @link_dev: device used to expose link details in sysfs
569 * @status: The state of the link (with respect to the presence of drivers).
570 * @flags: Link flags.
571 * @rpm_active: Whether or not the consumer device is runtime-PM-active.
572 * @kref: Count repeated addition of the same link.
80dd33cf 573 * @rm_work: Work structure used for removing the link.
287905e6
SK
574 * @supplier_preactivated: Supplier has been made active before consumer probe.
575 */
576struct device_link {
577 struct device *supplier;
578 struct list_head s_node;
579 struct device *consumer;
580 struct list_head c_node;
581 struct device link_dev;
582 enum device_link_state status;
583 u32 flags;
584 refcount_t rpm_active;
585 struct kref kref;
80dd33cf 586 struct work_struct rm_work;
287905e6
SK
587 bool supplier_preactivated; /* Owned by consumer probe. */
588};
589
a4232963
LPC
590static inline struct device *kobj_to_dev(struct kobject *kobj)
591{
592 return container_of(kobj, struct device, kobj);
593}
594
dbba197e
JR
595/**
596 * device_iommu_mapped - Returns true when the device DMA is translated
597 * by an IOMMU
598 * @dev: Device to perform the check on
599 */
600static inline bool device_iommu_mapped(struct device *dev)
601{
602 return (dev->iommu_group != NULL);
603}
604
9a3df1f7
AS
605/* Get the wakeup routines, which depend on struct device */
606#include <linux/pm_wakeup.h>
607
bf9ca69f 608static inline const char *dev_name(const struct device *dev)
06916639 609{
a636ee7f
PM
610 /* Use the init name until the kobject becomes available */
611 if (dev->init_name)
612 return dev->init_name;
613
1fa5ae85 614 return kobject_name(&dev->kobj);
06916639
KS
615}
616
e020ff61
SK
617/**
618 * dev_bus_name - Return a device's bus/class name, if at all possible
619 * @dev: struct device to get the bus/class name of
620 *
621 * Will return the name of the bus/class the device is attached to. If it is
622 * not attached to a bus/class, an empty string will be returned.
623 */
624static inline const char *dev_bus_name(const struct device *dev)
625{
626 return dev->bus ? dev->bus->name : (dev->class ? dev->class->name : "");
627}
628
67dd0772 629__printf(2, 3) int dev_set_name(struct device *dev, const char *name, ...);
413c239f 630
87348136
CH
631#ifdef CONFIG_NUMA
632static inline int dev_to_node(struct device *dev)
633{
634 return dev->numa_node;
635}
636static inline void set_dev_node(struct device *dev, int node)
637{
638 dev->numa_node = node;
639}
640#else
641static inline int dev_to_node(struct device *dev)
642{
98fa15f3 643 return NUMA_NO_NODE;
87348136
CH
644}
645static inline void set_dev_node(struct device *dev, int node)
646{
647}
648#endif
649
f1421db8
MZ
650static inline struct irq_domain *dev_get_msi_domain(const struct device *dev)
651{
652#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
653 return dev->msi_domain;
654#else
655 return NULL;
656#endif
657}
658
659static inline void dev_set_msi_domain(struct device *dev, struct irq_domain *d)
660{
661#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
662 dev->msi_domain = d;
663#endif
664}
665
a996d010
JD
666static inline void *dev_get_drvdata(const struct device *dev)
667{
668 return dev->driver_data;
669}
670
671static inline void dev_set_drvdata(struct device *dev, void *data)
672{
673 dev->driver_data = data;
674}
675
5c095a0e
RW
676static inline struct pm_subsys_data *dev_to_psd(struct device *dev)
677{
678 return dev ? dev->power.subsys_data : NULL;
679}
680
f67f129e
ML
681static inline unsigned int dev_get_uevent_suppress(const struct device *dev)
682{
683 return dev->kobj.uevent_suppress;
684}
685
686static inline void dev_set_uevent_suppress(struct device *dev, int val)
687{
688 dev->kobj.uevent_suppress = val;
689}
690
d305ef5d
DR
691static inline int device_is_registered(struct device *dev)
692{
3f62e570 693 return dev->kobj.state_in_sysfs;
d305ef5d
DR
694}
695
5af84b82
RW
696static inline void device_enable_async_suspend(struct device *dev)
697{
f76b168b 698 if (!dev->power.is_prepared)
5af84b82
RW
699 dev->power.async_suspend = true;
700}
701
5a2eb858
RW
702static inline void device_disable_async_suspend(struct device *dev)
703{
f76b168b 704 if (!dev->power.is_prepared)
5a2eb858
RW
705 dev->power.async_suspend = false;
706}
707
708static inline bool device_async_suspend_enabled(struct device *dev)
709{
710 return !!dev->power.async_suspend;
711}
712
85945c28
SH
713static inline bool device_pm_not_required(struct device *dev)
714{
715 return dev->power.no_pm;
716}
717
718static inline void device_set_pm_not_required(struct device *dev)
719{
720 dev->power.no_pm = true;
721}
722
feb70af0
RW
723static inline void dev_pm_syscore_device(struct device *dev, bool val)
724{
725#ifdef CONFIG_PM_SLEEP
726 dev->power.syscore = val;
727#endif
728}
729
08810a41
RW
730static inline void dev_pm_set_driver_flags(struct device *dev, u32 flags)
731{
732 dev->power.driver_flags = flags;
733}
734
735static inline bool dev_pm_test_driver_flags(struct device *dev, u32 flags)
736{
737 return !!(dev->power.driver_flags & flags);
738}
739
8e9394ce
GKH
740static inline void device_lock(struct device *dev)
741{
3142788b 742 mutex_lock(&dev->mutex);
8e9394ce
GKH
743}
744
7dd9cba5
ON
745static inline int device_lock_interruptible(struct device *dev)
746{
747 return mutex_lock_interruptible(&dev->mutex);
748}
749
8e9394ce
GKH
750static inline int device_trylock(struct device *dev)
751{
3142788b 752 return mutex_trylock(&dev->mutex);
8e9394ce
GKH
753}
754
755static inline void device_unlock(struct device *dev)
756{
3142788b 757 mutex_unlock(&dev->mutex);
8e9394ce
GKH
758}
759
ac801022
KRW
760static inline void device_lock_assert(struct device *dev)
761{
762 lockdep_assert_held(&dev->mutex);
763}
764
e8a51e1b
BH
765static inline struct device_node *dev_of_node(struct device *dev)
766{
1b833924 767 if (!IS_ENABLED(CONFIG_OF) || !dev)
e8a51e1b
BH
768 return NULL;
769 return dev->of_node;
770}
771
ac338acf
SK
772static inline bool dev_has_sync_state(struct device *dev)
773{
774 if (!dev)
775 return false;
776 if (dev->driver && dev->driver->sync_state)
777 return true;
778 if (dev->bus && dev->bus->sync_state)
779 return true;
780 return false;
781}
782
1da177e4
LT
783/*
784 * High level routines for use by the bus drivers
785 */
67dd0772
BG
786int __must_check device_register(struct device *dev);
787void device_unregister(struct device *dev);
788void device_initialize(struct device *dev);
789int __must_check device_add(struct device *dev);
790void device_del(struct device *dev);
791int device_for_each_child(struct device *dev, void *data,
792 int (*fn)(struct device *dev, void *data));
793int device_for_each_child_reverse(struct device *dev, void *data,
794 int (*fn)(struct device *dev, void *data));
795struct device *device_find_child(struct device *dev, void *data,
796 int (*match)(struct device *dev, void *data));
797struct device *device_find_child_by_name(struct device *parent,
798 const char *name);
799int device_rename(struct device *dev, const char *new_name);
800int device_move(struct device *dev, struct device *new_parent,
801 enum dpm_order dpm_order);
802int device_change_owner(struct device *dev, kuid_t kuid, kgid_t kgid);
803const char *device_get_devnode(struct device *dev, umode_t *mode, kuid_t *uid,
804 kgid_t *gid, const char **tmp);
44197797 805int device_is_dependent(struct device *dev, void *target);
1da177e4 806
4f3549d7
RW
807static inline bool device_supports_offline(struct device *dev)
808{
809 return dev->bus && dev->bus->offline && dev->bus->online;
810}
811
67dd0772
BG
812void lock_device_hotplug(void);
813void unlock_device_hotplug(void);
814int lock_device_hotplug_sysfs(void);
815int device_offline(struct device *dev);
816int device_online(struct device *dev);
817void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
818void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
4e75e1d7 819void device_set_of_node_from_dev(struct device *dev, const struct device *dev2);
97badf87 820
9af15c38
PS
821static inline int dev_num_vf(struct device *dev)
822{
823 if (dev->bus && dev->bus->num_vf)
824 return dev->bus->num_vf(dev);
825 return 0;
826}
827
0aa0dc41
MM
828/*
829 * Root device objects for grouping under /sys/devices
830 */
67dd0772 831struct device *__root_device_register(const char *name, struct module *owner);
eb5589a8 832
33ac1257 833/* This is a macro to avoid include problems with THIS_MODULE */
eb5589a8
PG
834#define root_device_register(name) \
835 __root_device_register(name, THIS_MODULE)
836
67dd0772 837void root_device_unregister(struct device *root);
0aa0dc41 838
a5b8b1ad
MB
839static inline void *dev_get_platdata(const struct device *dev)
840{
841 return dev->platform_data;
842}
843
1da177e4
LT
844/*
845 * Manual binding of a device to driver. See drivers/base/bus.c
846 * for information on use.
847 */
67dd0772
BG
848int __must_check device_bind_driver(struct device *dev);
849void device_release_driver(struct device *dev);
850int __must_check device_attach(struct device *dev);
851int __must_check driver_attach(struct device_driver *drv);
852void device_initial_probe(struct device *dev);
853int __must_check device_reprobe(struct device *dev);
1da177e4 854
67dd0772 855bool device_is_bound(struct device *dev);
6b9cb427 856
23681e47
GKH
857/*
858 * Easy functions for dynamically creating devices on the fly
859 */
67dd0772
BG
860__printf(5, 6) struct device *
861device_create(struct class *cls, struct device *parent, dev_t devt,
862 void *drvdata, const char *fmt, ...);
863__printf(6, 7) struct device *
864device_create_with_groups(struct class *cls, struct device *parent, dev_t devt,
865 void *drvdata, const struct attribute_group **groups,
866 const char *fmt, ...);
867void device_destroy(struct class *cls, dev_t devt);
868
869int __must_check device_add_groups(struct device *dev,
870 const struct attribute_group **groups);
871void device_remove_groups(struct device *dev,
872 const struct attribute_group **groups);
a7670d42 873
e323b2dd
DT
874static inline int __must_check device_add_group(struct device *dev,
875 const struct attribute_group *grp)
876{
877 const struct attribute_group *groups[] = { grp, NULL };
878
879 return device_add_groups(dev, groups);
880}
881
882static inline void device_remove_group(struct device *dev,
883 const struct attribute_group *grp)
884{
885 const struct attribute_group *groups[] = { grp, NULL };
886
887 return device_remove_groups(dev, groups);
888}
889
67dd0772 890int __must_check devm_device_add_groups(struct device *dev,
57b8ff07 891 const struct attribute_group **groups);
67dd0772
BG
892void devm_device_remove_groups(struct device *dev,
893 const struct attribute_group **groups);
894int __must_check devm_device_add_group(struct device *dev,
895 const struct attribute_group *grp);
896void devm_device_remove_group(struct device *dev,
897 const struct attribute_group *grp);
57b8ff07 898
1da177e4
LT
899/*
900 * Platform "fixup" functions - allow the platform to have their say
901 * about devices and actions that the general device layer doesn't
902 * know about.
903 */
904/* Notify platform of device discovery */
d462943a 905extern int (*platform_notify)(struct device *dev);
1da177e4 906
d462943a 907extern int (*platform_notify_remove)(struct device *dev);
1da177e4
LT
908
909
880ffb5c 910/*
1da177e4
LT
911 * get_device - atomically increment the reference count for the device.
912 *
913 */
67dd0772
BG
914struct device *get_device(struct device *dev);
915void put_device(struct device *dev);
916bool kill_device(struct device *dev);
1da177e4 917
2b2af54a 918#ifdef CONFIG_DEVTMPFS
67dd0772 919int devtmpfs_mount(void);
2b2af54a 920#else
5e787dbf 921static inline int devtmpfs_mount(void) { return 0; }
2b2af54a
KS
922#endif
923
116f232b 924/* drivers/base/power/shutdown.c */
67dd0772 925void device_shutdown(void);
1da177e4 926
1da177e4 927/* debugging and troubleshooting/diagnostic helpers. */
67dd0772 928const char *dev_driver_string(const struct device *dev);
99bcf217 929
9ed98953
RW
930/* Device links interface. */
931struct device_link *device_link_add(struct device *consumer,
932 struct device *supplier, u32 flags);
933void device_link_del(struct device_link *link);
d8842211 934void device_link_remove(void *consumer, struct device *supplier);
fc5a251d
SK
935void device_links_supplier_sync_state_pause(void);
936void device_links_supplier_sync_state_resume(void);
99bcf217 937
a787e540 938extern __printf(3, 4)
f601e8f3 939int dev_err_probe(const struct device *dev, int err, const char *fmt, ...);
a787e540 940
1da177e4
LT
941/* Create alias, so I can be autoloaded. */
942#define MODULE_ALIAS_CHARDEV(major,minor) \
943 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
944#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
945 MODULE_ALIAS("char-major-" __stringify(major) "-*")
e52eec13
AK
946
947#ifdef CONFIG_SYSFS_DEPRECATED
948extern long sysfs_deprecated;
949#else
950#define sysfs_deprecated 0
951#endif
952
1da177e4 953#endif /* _DEVICE_H_ */