blob: ac8e37cd716a39b966fba99b32bec21b8e78c93d [file] [log] [blame]
Greg Kroah-Hartman989d42e2017-11-07 17:30:07 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * device.h - generic, centralized driver model
4 *
5 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07006 * Copyright (c) 2004-2009 Greg Kroah-Hartman <gregkh@suse.de>
7 * Copyright (c) 2008-2009 Novell Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Mauro Carvalho Chehabfe34c892019-06-18 12:34:59 -03009 * See Documentation/driver-api/driver-model/ for more information.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#ifndef _DEVICE_H_
13#define _DEVICE_H_
14
Greg Kroah-Hartmanaf628aa2019-12-09 20:33:00 +010015#include <linux/dev_printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/ioport.h>
17#include <linux/kobject.h>
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -080018#include <linux/klist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/list.h>
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -070020#include <linux/lockdep.h>
Andrew Morton4a7fb632006-08-14 22:43:17 -070021#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/types.h>
Paul Gortmakerde477252011-05-26 13:46:22 -040023#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/pm.h>
Arun Sharma600634972011-07-26 16:09:06 -070025#include <linux/atomic.h>
Kay Sievers3c2670e2013-04-06 09:56:00 -070026#include <linux/uidgid.h>
Joe Perches64c862a82013-10-11 13:11:38 -070027#include <linux/gfp.h>
Kees Cook2509b562018-05-08 22:29:52 -070028#include <linux/overflow.h>
Greg Kroah-Hartman5aee2bf2019-12-09 20:33:01 +010029#include <linux/device/bus.h>
Greg Kroah-Hartmana8ae6082019-12-09 20:33:02 +010030#include <linux/device/class.h>
Greg Kroah-Hartman4c002c92019-12-09 20:33:03 +010031#include <linux/device/driver.h>
Benjamin Herrenschmidtc6dbaef2006-11-11 17:18:39 +110032#include <asm/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034struct device;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -080035struct device_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036struct device_driver;
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080037struct driver_private;
Paul Gortmakerde477252011-05-26 13:46:22 -040038struct module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039struct class;
Kay Sievers6b6e39a2010-11-15 23:13:18 +010040struct subsys_private;
Grant Likelyd706c1b2010-04-13 16:12:28 -070041struct device_node;
Rafael J. Wysockice793482015-03-16 23:49:03 +010042struct fwnode_handle;
Joerg Roedelff217762011-08-26 16:48:26 +020043struct iommu_ops;
Alex Williamson74416e12012-05-30 14:18:41 -060044struct iommu_group;
Linus Torvalds23c35f42018-02-02 16:44:14 -080045struct dev_pin_info;
Joerg Roedel045a7042020-03-26 16:08:30 +010046struct dev_iommu;
Kay Sieversb8c5cec2007-02-16 17:33:36 +010047
Wanlong Gao880ffb52011-05-05 07:55:36 +080048/**
Kay Sieversca22e562011-12-14 14:29:38 -080049 * struct subsys_interface - interfaces to device functions
Randy Dunlap2eda0132012-01-21 11:02:51 -080050 * @name: name of the device function
51 * @subsys: subsytem of the devices to attach to
52 * @node: the list of functions registered at the subsystem
53 * @add_dev: device hookup to device function handler
54 * @remove_dev: device hookup to device function handler
Kay Sieversca22e562011-12-14 14:29:38 -080055 *
56 * Simple interfaces attached to a subsystem. Multiple interfaces can
57 * attach to a subsystem and its devices. Unlike drivers, they do not
58 * exclusively claim or control devices. Interfaces usually represent
59 * a specific functionality of a subsystem/class of devices.
60 */
61struct subsys_interface {
62 const char *name;
63 struct bus_type *subsys;
64 struct list_head node;
65 int (*add_dev)(struct device *dev, struct subsys_interface *sif);
Viresh Kumar71db87b2015-07-30 15:04:01 +053066 void (*remove_dev)(struct device *dev, struct subsys_interface *sif);
Kay Sieversca22e562011-12-14 14:29:38 -080067};
68
69int subsys_interface_register(struct subsys_interface *sif);
70void subsys_interface_unregister(struct subsys_interface *sif);
71
72int subsys_system_register(struct bus_type *subsys,
73 const struct attribute_group **groups);
Tejun Heod73ce002013-03-12 11:30:05 -070074int subsys_virtual_register(struct bus_type *subsys,
75 const struct attribute_group **groups);
Kay Sieversca22e562011-12-14 14:29:38 -080076
Kay Sievers414264f2007-03-12 21:08:57 +010077/*
78 * The type of device, "struct device" is embedded in. A class
79 * or bus can contain devices of different types
80 * like "partitions" and "disks", "mouse" and "event".
81 * This identifies the device type and carries type-specific
82 * information, equivalent to the kobj_type of a kobject.
83 * If "name" is specified, the uevent will contain it in
84 * the DEVTYPE variable.
85 */
Kay Sieversf9f852d2006-10-07 21:54:55 +020086struct device_type {
Kay Sievers414264f2007-03-12 21:08:57 +010087 const char *name;
David Brownella4dbd672009-06-24 10:06:31 -070088 const struct attribute_group **groups;
Kay Sievers7eff2e72007-08-14 15:15:12 +020089 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
Kay Sievers3c2670e2013-04-06 09:56:00 -070090 char *(*devnode)(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -070091 kuid_t *uid, kgid_t *gid);
Kay Sieversf9f852d2006-10-07 21:54:55 +020092 void (*release)(struct device *dev);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +020093
Dmitry Torokhov8150f322009-07-24 22:11:32 -070094 const struct dev_pm_ops *pm;
Kay Sieversf9f852d2006-10-07 21:54:55 +020095};
96
Kay Sieversa7fd6702005-10-01 14:49:43 +020097/* interface for exporting device attributes */
98struct device_attribute {
99 struct attribute attr;
100 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
101 char *buf);
102 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
103 const char *buf, size_t count);
104};
105
Kay Sieversca22e562011-12-14 14:29:38 -0800106struct dev_ext_attribute {
107 struct device_attribute attr;
108 void *var;
109};
Kay Sieversa7fd6702005-10-01 14:49:43 +0200110
Kay Sieversca22e562011-12-14 14:29:38 -0800111ssize_t device_show_ulong(struct device *dev, struct device_attribute *attr,
112 char *buf);
113ssize_t device_store_ulong(struct device *dev, struct device_attribute *attr,
114 const char *buf, size_t count);
115ssize_t device_show_int(struct device *dev, struct device_attribute *attr,
116 char *buf);
117ssize_t device_store_int(struct device *dev, struct device_attribute *attr,
118 const char *buf, size_t count);
Borislav Petkov91872392012-10-09 19:52:05 +0200119ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
120 char *buf);
121ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
122 const char *buf, size_t count);
Kay Sieversca22e562011-12-14 14:29:38 -0800123
Kay Sieversa7fd6702005-10-01 14:49:43 +0200124#define DEVICE_ATTR(_name, _mode, _show, _store) \
Kay Sieversca22e562011-12-14 14:29:38 -0800125 struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
Christophe Leroy7fda9102017-12-18 11:08:29 +0100126#define DEVICE_ATTR_PREALLOC(_name, _mode, _show, _store) \
127 struct device_attribute dev_attr_##_name = \
128 __ATTR_PREALLOC(_name, _mode, _show, _store)
Greg Kroah-Hartmanced321b2013-07-14 16:05:54 -0700129#define DEVICE_ATTR_RW(_name) \
130 struct device_attribute dev_attr_##_name = __ATTR_RW(_name)
131#define DEVICE_ATTR_RO(_name) \
132 struct device_attribute dev_attr_##_name = __ATTR_RO(_name)
Greg Kroah-Hartman1130c552013-08-23 15:02:56 -0700133#define DEVICE_ATTR_WO(_name) \
134 struct device_attribute dev_attr_##_name = __ATTR_WO(_name)
Kay Sieversca22e562011-12-14 14:29:38 -0800135#define DEVICE_ULONG_ATTR(_name, _mode, _var) \
136 struct dev_ext_attribute dev_attr_##_name = \
137 { __ATTR(_name, _mode, device_show_ulong, device_store_ulong), &(_var) }
138#define DEVICE_INT_ATTR(_name, _mode, _var) \
139 struct dev_ext_attribute dev_attr_##_name = \
Michael Davidson94758182012-05-03 16:19:02 -0700140 { __ATTR(_name, _mode, device_show_int, device_store_int), &(_var) }
Borislav Petkov91872392012-10-09 19:52:05 +0200141#define DEVICE_BOOL_ATTR(_name, _mode, _var) \
142 struct dev_ext_attribute dev_attr_##_name = \
143 { __ATTR(_name, _mode, device_show_bool, device_store_bool), &(_var) }
Alan Stern356c05d2012-05-14 13:30:03 -0400144#define DEVICE_ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store) \
145 struct device_attribute dev_attr_##_name = \
146 __ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store)
Kay Sieversa7fd6702005-10-01 14:49:43 +0200147
Greg Kroah-Hartmanb9d4e712012-01-04 15:05:10 -0800148extern int device_create_file(struct device *device,
149 const struct device_attribute *entry);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800150extern void device_remove_file(struct device *dev,
Phil Carmody26579ab2009-12-18 15:34:19 +0200151 const struct device_attribute *attr);
Tejun Heo6b0afc22014-02-03 14:03:01 -0500152extern bool device_remove_file_self(struct device *dev,
153 const struct device_attribute *attr);
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700154extern int __must_check device_create_bin_file(struct device *dev,
Phil Carmody66ecb922009-12-18 15:34:20 +0200155 const struct bin_attribute *attr);
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700156extern void device_remove_bin_file(struct device *dev,
Phil Carmody66ecb922009-12-18 15:34:20 +0200157 const struct bin_attribute *attr);
Tejun Heo9ac78492007-01-20 16:00:26 +0900158
159/* device resource management */
160typedef void (*dr_release_t)(struct device *dev, void *res);
161typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);
162
163#ifdef CONFIG_DEBUG_DEVRES
Dan Williams7c683942015-10-05 20:35:55 -0400164extern void *__devres_alloc_node(dr_release_t release, size_t size, gfp_t gfp,
Rasmus Villemoes48a270552016-05-19 17:10:55 -0700165 int nid, const char *name) __malloc;
Tejun Heo9ac78492007-01-20 16:00:26 +0900166#define devres_alloc(release, size, gfp) \
Dan Williams7c683942015-10-05 20:35:55 -0400167 __devres_alloc_node(release, size, gfp, NUMA_NO_NODE, #release)
168#define devres_alloc_node(release, size, gfp, nid) \
169 __devres_alloc_node(release, size, gfp, nid, #release)
Tejun Heo9ac78492007-01-20 16:00:26 +0900170#else
Dan Williams7c683942015-10-05 20:35:55 -0400171extern void *devres_alloc_node(dr_release_t release, size_t size, gfp_t gfp,
Rasmus Villemoes48a270552016-05-19 17:10:55 -0700172 int nid) __malloc;
Dan Williams7c683942015-10-05 20:35:55 -0400173static inline void *devres_alloc(dr_release_t release, size_t size, gfp_t gfp)
174{
175 return devres_alloc_node(release, size, gfp, NUMA_NO_NODE);
176}
Tejun Heo9ac78492007-01-20 16:00:26 +0900177#endif
Dan Williams7c683942015-10-05 20:35:55 -0400178
Ming Leibddb1b92012-08-04 12:01:26 +0800179extern void devres_for_each_res(struct device *dev, dr_release_t release,
180 dr_match_t match, void *match_data,
181 void (*fn)(struct device *, void *, void *),
182 void *data);
Tejun Heo9ac78492007-01-20 16:00:26 +0900183extern void devres_free(void *res);
184extern void devres_add(struct device *dev, void *res);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800185extern void *devres_find(struct device *dev, dr_release_t release,
Tejun Heo9ac78492007-01-20 16:00:26 +0900186 dr_match_t match, void *match_data);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800187extern void *devres_get(struct device *dev, void *new_res,
188 dr_match_t match, void *match_data);
189extern void *devres_remove(struct device *dev, dr_release_t release,
190 dr_match_t match, void *match_data);
Tejun Heo9ac78492007-01-20 16:00:26 +0900191extern int devres_destroy(struct device *dev, dr_release_t release,
192 dr_match_t match, void *match_data);
Mark Brownd926d0e2012-05-03 18:15:13 +0100193extern int devres_release(struct device *dev, dr_release_t release,
194 dr_match_t match, void *match_data);
Tejun Heo9ac78492007-01-20 16:00:26 +0900195
196/* devres group */
197extern void * __must_check devres_open_group(struct device *dev, void *id,
198 gfp_t gfp);
199extern void devres_close_group(struct device *dev, void *id);
200extern void devres_remove_group(struct device *dev, void *id);
201extern int devres_release_group(struct device *dev, void *id);
202
Joe Perches64c862a82013-10-11 13:11:38 -0700203/* managed devm_k.alloc/kfree for device drivers */
Rasmus Villemoes48a270552016-05-19 17:10:55 -0700204extern void *devm_kmalloc(struct device *dev, size_t size, gfp_t gfp) __malloc;
Nicolas Iooss8db14862015-07-17 16:23:42 -0700205extern __printf(3, 0)
206char *devm_kvasprintf(struct device *dev, gfp_t gfp, const char *fmt,
Rasmus Villemoes48a270552016-05-19 17:10:55 -0700207 va_list ap) __malloc;
Geert Uytterhoevenbef59c52014-08-20 15:26:35 +0200208extern __printf(3, 4)
Rasmus Villemoes48a270552016-05-19 17:10:55 -0700209char *devm_kasprintf(struct device *dev, gfp_t gfp, const char *fmt, ...) __malloc;
Joe Perches64c862a82013-10-11 13:11:38 -0700210static inline void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp)
211{
212 return devm_kmalloc(dev, size, gfp | __GFP_ZERO);
213}
214static inline void *devm_kmalloc_array(struct device *dev,
215 size_t n, size_t size, gfp_t flags)
216{
Kees Cook2509b562018-05-08 22:29:52 -0700217 size_t bytes;
218
219 if (unlikely(check_mul_overflow(n, size, &bytes)))
Joe Perches64c862a82013-10-11 13:11:38 -0700220 return NULL;
Kees Cook2509b562018-05-08 22:29:52 -0700221
222 return devm_kmalloc(dev, bytes, flags);
Joe Perches64c862a82013-10-11 13:11:38 -0700223}
224static inline void *devm_kcalloc(struct device *dev,
225 size_t n, size_t size, gfp_t flags)
226{
227 return devm_kmalloc_array(dev, n, size, flags | __GFP_ZERO);
228}
Bartosz Golaszewski05719672018-10-14 17:20:07 +0200229extern void devm_kfree(struct device *dev, const void *p);
Rasmus Villemoes48a270552016-05-19 17:10:55 -0700230extern char *devm_kstrdup(struct device *dev, const char *s, gfp_t gfp) __malloc;
Bartosz Golaszewski09d1ea12018-10-14 17:20:09 +0200231extern const char *devm_kstrdup_const(struct device *dev,
232 const char *s, gfp_t gfp);
Srinivas Pandruvada30463652014-04-29 00:51:00 +0100233extern void *devm_kmemdup(struct device *dev, const void *src, size_t len,
234 gfp_t gfp);
Tejun Heo9ac78492007-01-20 16:00:26 +0900235
Eli Billauer43339be2014-05-16 11:26:35 +0300236extern unsigned long devm_get_free_pages(struct device *dev,
237 gfp_t gfp_mask, unsigned int order);
238extern void devm_free_pages(struct device *dev, unsigned long addr);
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700239
Arnd Bergmanneef778c2019-07-04 15:14:45 -0700240void __iomem *devm_ioremap_resource(struct device *dev,
241 const struct resource *res);
Bartosz Golaszewskib873af62019-10-22 10:43:13 +0200242void __iomem *devm_ioremap_resource_wc(struct device *dev,
243 const struct resource *res);
Wolfram Sang72f8c0b2011-10-25 15:16:47 +0200244
Benjamin Herrenschmidtd5e83822018-06-05 13:21:26 +1000245void __iomem *devm_of_iomap(struct device *dev,
246 struct device_node *node, int index,
247 resource_size_t *size);
248
Dmitry Torokhovd6b0c582013-02-23 13:11:14 -0800249/* allows to add/remove a custom action to devres stack */
250int devm_add_action(struct device *dev, void (*action)(void *), void *data);
251void devm_remove_action(struct device *dev, void (*action)(void *), void *data);
Dan Williams2374b682019-06-13 15:56:18 -0700252void devm_release_action(struct device *dev, void (*action)(void *), void *data);
Dmitry Torokhovd6b0c582013-02-23 13:11:14 -0800253
Sudip Mukherjeea3499e92015-12-23 17:57:19 +0530254static inline int devm_add_action_or_reset(struct device *dev,
255 void (*action)(void *), void *data)
256{
257 int ret;
258
259 ret = devm_add_action(dev, action, data);
260 if (ret)
261 action(data);
262
263 return ret;
264}
265
Madalin Bucurff86aae2016-11-15 10:41:01 +0200266/**
267 * devm_alloc_percpu - Resource-managed alloc_percpu
268 * @dev: Device to allocate per-cpu memory for
269 * @type: Type to allocate per-cpu memory for
270 *
271 * Managed alloc_percpu. Per-cpu memory allocated with this function is
272 * automatically freed on driver detach.
273 *
274 * RETURNS:
275 * Pointer to allocated memory on success, NULL on failure.
276 */
277#define devm_alloc_percpu(dev, type) \
278 ((typeof(type) __percpu *)__devm_alloc_percpu((dev), sizeof(type), \
279 __alignof__(type)))
280
281void __percpu *__devm_alloc_percpu(struct device *dev, size_t size,
282 size_t align);
283void devm_free_percpu(struct device *dev, void __percpu *pdata);
284
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800285struct device_dma_parameters {
286 /*
287 * a low level driver may set these to teach IOMMU code about
288 * sg limitations.
289 */
290 unsigned int max_segment_size;
291 unsigned long segment_boundary_mask;
292};
293
Wanlong Gao880ffb52011-05-05 07:55:36 +0800294/**
Heikki Krogerusf2d9b662018-03-20 15:57:02 +0300295 * struct device_connection - Device Connection Descriptor
Heikki Krogerus09aa11c2019-02-13 10:45:52 +0300296 * @fwnode: The device node of the connected device
Heikki Krogerusf2d9b662018-03-20 15:57:02 +0300297 * @endpoint: The names of the two devices connected together
298 * @id: Unique identifier for the connection
299 * @list: List head, private, for internal use only
Heikki Krogerus09aa11c2019-02-13 10:45:52 +0300300 *
301 * NOTE: @fwnode is not used together with @endpoint. @fwnode is used when
302 * platform firmware defines the connection. When the connection is registered
303 * with device_connection_add() @endpoint is used instead.
Heikki Krogerusf2d9b662018-03-20 15:57:02 +0300304 */
305struct device_connection {
Heikki Krogerus09aa11c2019-02-13 10:45:52 +0300306 struct fwnode_handle *fwnode;
Heikki Krogerusf2d9b662018-03-20 15:57:02 +0300307 const char *endpoint[2];
308 const char *id;
309 struct list_head list;
310};
311
Heikki Krogerus44493062019-08-29 17:22:33 +0800312typedef void *(*devcon_match_fn_t)(struct device_connection *con, int ep,
313 void *data);
314
315void *fwnode_connection_find_match(struct fwnode_handle *fwnode,
316 const char *con_id, void *data,
317 devcon_match_fn_t match);
Heikki Krogerusf2d9b662018-03-20 15:57:02 +0300318void *device_connection_find_match(struct device *dev, const char *con_id,
Heikki Krogerus44493062019-08-29 17:22:33 +0800319 void *data, devcon_match_fn_t match);
Heikki Krogerusf2d9b662018-03-20 15:57:02 +0300320
321struct device *device_connection_find(struct device *dev, const char *con_id);
322
323void device_connection_add(struct device_connection *con);
324void device_connection_remove(struct device_connection *con);
325
326/**
Heikki Krogeruscd7753d2018-09-20 14:23:40 +0300327 * device_connections_add - Add multiple device connections at once
328 * @cons: Zero terminated array of device connection descriptors
329 */
330static inline void device_connections_add(struct device_connection *cons)
331{
332 struct device_connection *c;
333
334 for (c = cons; c->endpoint[0]; c++)
335 device_connection_add(c);
336}
337
338/**
339 * device_connections_remove - Remove multiple device connections at once
340 * @cons: Zero terminated array of device connection descriptors
341 */
342static inline void device_connections_remove(struct device_connection *cons)
343{
344 struct device_connection *c;
345
346 for (c = cons; c->endpoint[0]; c++)
347 device_connection_remove(c);
348}
349
350/**
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100351 * enum device_link_state - Device link states.
352 * @DL_STATE_NONE: The presence of the drivers is not being tracked.
353 * @DL_STATE_DORMANT: None of the supplier/consumer drivers is present.
354 * @DL_STATE_AVAILABLE: The supplier driver is present, but the consumer is not.
355 * @DL_STATE_CONSUMER_PROBE: The consumer is probing (supplier driver present).
356 * @DL_STATE_ACTIVE: Both the supplier and consumer drivers are present.
357 * @DL_STATE_SUPPLIER_UNBIND: The supplier driver is unbinding.
358 */
359enum device_link_state {
360 DL_STATE_NONE = -1,
361 DL_STATE_DORMANT = 0,
362 DL_STATE_AVAILABLE,
363 DL_STATE_CONSUMER_PROBE,
364 DL_STATE_ACTIVE,
365 DL_STATE_SUPPLIER_UNBIND,
366};
367
368/*
369 * Device link flags.
370 *
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200371 * STATELESS: The core will not remove this link automatically.
Vivek Gautame88728f2018-06-27 18:20:55 +0530372 * AUTOREMOVE_CONSUMER: Remove the link automatically on consumer driver unbind.
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100373 * PM_RUNTIME: If set, the runtime PM framework will use this link.
374 * RPM_ACTIVE: Run pm_runtime_get_sync() on the supplier during link creation.
Vivek Gautam1689cac2018-06-27 18:20:56 +0530375 * AUTOREMOVE_SUPPLIER: Remove the link automatically on supplier driver unbind.
Rafael J. Wysockie7dd4012019-02-01 01:59:42 +0100376 * AUTOPROBE_CONSUMER: Probe consumer driver automatically after supplier binds.
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200377 * MANAGED: The core tracks presence of supplier/consumer drivers (internal).
Saravana Kannan05ef9832019-10-28 15:00:22 -0700378 * SYNC_STATE_ONLY: Link only affects sync_state() behavior.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100379 */
Vivek Gautame88728f2018-06-27 18:20:55 +0530380#define DL_FLAG_STATELESS BIT(0)
381#define DL_FLAG_AUTOREMOVE_CONSUMER BIT(1)
382#define DL_FLAG_PM_RUNTIME BIT(2)
383#define DL_FLAG_RPM_ACTIVE BIT(3)
Vivek Gautam1689cac2018-06-27 18:20:56 +0530384#define DL_FLAG_AUTOREMOVE_SUPPLIER BIT(4)
Rafael J. Wysockie7dd4012019-02-01 01:59:42 +0100385#define DL_FLAG_AUTOPROBE_CONSUMER BIT(5)
Rafael J. Wysocki515db262019-07-16 17:21:06 +0200386#define DL_FLAG_MANAGED BIT(6)
Saravana Kannan05ef9832019-10-28 15:00:22 -0700387#define DL_FLAG_SYNC_STATE_ONLY BIT(7)
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100388
389/**
390 * struct device_link - Device link representation.
391 * @supplier: The device on the supplier end of the link.
392 * @s_node: Hook to the supplier device's list of links to consumers.
393 * @consumer: The device on the consumer end of the link.
394 * @c_node: Hook to the consumer device's list of links to suppliers.
395 * @status: The state of the link (with respect to the presence of drivers).
396 * @flags: Link flags.
Rafael J. Wysocki21d5c572016-10-30 17:32:31 +0100397 * @rpm_active: Whether or not the consumer device is runtime-PM-active.
Lukas Wunneread18c22018-02-10 19:27:12 +0100398 * @kref: Count repeated addition of the same link.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100399 * @rcu_head: An RCU head to use for deferred execution of SRCU callbacks.
Rafael J. Wysockia7013ba2019-02-21 12:28:05 +0100400 * @supplier_preactivated: Supplier has been made active before consumer probe.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100401 */
402struct device_link {
403 struct device *supplier;
404 struct list_head s_node;
405 struct device *consumer;
406 struct list_head c_node;
407 enum device_link_state status;
408 u32 flags;
Rafael J. Wysockie2f3cd82019-02-01 01:49:14 +0100409 refcount_t rpm_active;
Lukas Wunneread18c22018-02-10 19:27:12 +0100410 struct kref kref;
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100411#ifdef CONFIG_SRCU
412 struct rcu_head rcu_head;
413#endif
Rafael J. Wysocki36003d42019-02-19 17:53:26 +0100414 bool supplier_preactivated; /* Owned by consumer probe. */
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100415};
416
417/**
418 * enum dl_dev_state - Device driver presence tracking information.
419 * @DL_DEV_NO_DRIVER: There is no driver attached to the device.
420 * @DL_DEV_PROBING: A driver is probing.
421 * @DL_DEV_DRIVER_BOUND: The driver has been bound to the device.
422 * @DL_DEV_UNBINDING: The driver is unbinding from the device.
423 */
424enum dl_dev_state {
425 DL_DEV_NO_DRIVER = 0,
426 DL_DEV_PROBING,
427 DL_DEV_DRIVER_BOUND,
428 DL_DEV_UNBINDING,
429};
430
431/**
432 * struct dev_links_info - Device data related to device links.
433 * @suppliers: List of links to supplier devices.
434 * @consumers: List of links to consumer devices.
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700435 * @needs_suppliers: Hook to global list of devices waiting for suppliers.
Saravana Kannanfc5a2512019-09-04 14:11:23 -0700436 * @defer_sync: Hook to global list of devices that have deferred sync_state.
Saravana Kannanbcbbcfd2019-10-28 15:00:23 -0700437 * @need_for_probe: If needs_suppliers is on a list, this indicates if the
438 * suppliers are needed for probe or not.
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100439 * @status: Driver status information.
440 */
441struct dev_links_info {
442 struct list_head suppliers;
443 struct list_head consumers;
Saravana Kannane2ae9bc2019-09-04 14:11:21 -0700444 struct list_head needs_suppliers;
Saravana Kannanfc5a2512019-09-04 14:11:23 -0700445 struct list_head defer_sync;
Saravana Kannanbcbbcfd2019-10-28 15:00:23 -0700446 bool need_for_probe;
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100447 enum dl_dev_state status;
448};
449
450/**
Wanlong Gao880ffb52011-05-05 07:55:36 +0800451 * struct device - The basic device structure
452 * @parent: The device's "parent" device, the device to which it is attached.
453 * In most cases, a parent device is some sort of bus or host
454 * controller. If parent is NULL, the device, is a top-level device,
455 * which is not usually what you want.
456 * @p: Holds the private data of the driver core portions of the device.
457 * See the comment of the struct device_private for detail.
458 * @kobj: A top-level, abstract class from which other classes are derived.
459 * @init_name: Initial name of the device.
460 * @type: The type of device.
461 * This identifies the device type and carries type-specific
462 * information.
463 * @mutex: Mutex to synchronize calls to its driver.
Dan Williams87a30e12019-07-17 18:08:26 -0700464 * @lockdep_mutex: An optional debug lock that a subsystem can use as a
465 * peer lock to gain localized lockdep coverage of the device_lock.
Wanlong Gao880ffb52011-05-05 07:55:36 +0800466 * @bus: Type of bus device is on.
467 * @driver: Which driver has allocated this
468 * @platform_data: Platform data specific to the device.
469 * Example: For devices on custom boards, as typical of embedded
470 * and SOC based hardware, Linux often uses platform_data to point
471 * to board-specific structures describing devices and how they
472 * are wired. That can include what ports are available, chip
473 * variants, which GPIO pins act in what additional roles, and so
474 * on. This shrinks the "Board Support Packages" (BSPs) and
475 * minimizes board-specific #ifdefs in drivers.
Jean Delvare1bb6c082014-04-14 12:54:47 +0200476 * @driver_data: Private pointer for driver specific info.
Lukas Wunner64df1142016-12-04 13:10:04 +0100477 * @links: Links to suppliers and consumers of this device.
Wanlong Gao880ffb52011-05-05 07:55:36 +0800478 * @power: For device power management.
Geert Uytterhoeven74378c52017-09-05 20:16:27 +0200479 * See Documentation/driver-api/pm/devices.rst for details.
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200480 * @pm_domain: Provide callbacks that are executed during system suspend,
Wanlong Gao880ffb52011-05-05 07:55:36 +0800481 * hibernation, system resume and during runtime PM transitions
482 * along with subsystem-level and driver-level callbacks.
Linus Walleijab780292013-01-22 10:56:14 -0700483 * @pins: For device pin management.
Ludovic Desroches0cca6c82017-08-06 16:00:05 +0200484 * See Documentation/driver-api/pinctl.rst for details.
Jiang Liu4a7cc832015-07-09 16:00:44 +0800485 * @msi_list: Hosts MSI descriptors
Marc Zyngierf1421db2015-07-28 14:46:10 +0100486 * @msi_domain: The generic MSI domain this device is using.
Wanlong Gao880ffb52011-05-05 07:55:36 +0800487 * @numa_node: NUMA node this device is close to.
Jonathan Corbet6a7a8172017-08-24 16:09:10 -0600488 * @dma_ops: DMA mapping operations for this device.
Wanlong Gao880ffb52011-05-05 07:55:36 +0800489 * @dma_mask: Dma mask (if dma'ble device).
490 * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all
491 * hardware supports 64-bit addresses for consistent allocations
492 * such descriptors.
Nicolas Saenz Juliennea7ba70f2019-11-21 10:26:44 +0100493 * @bus_dma_limit: Limit of an upstream bridge or bus which imposes a smaller
494 * DMA limit than the device itself supports.
Santosh Shilimkar8febcaa2014-04-24 11:30:01 -0400495 * @dma_pfn_offset: offset of DMA memory range relatively of RAM
Wanlong Gao880ffb52011-05-05 07:55:36 +0800496 * @dma_parms: A low level driver may set these to teach IOMMU code about
497 * segment limitations.
498 * @dma_pools: Dma pools (if dma'ble device).
499 * @dma_mem: Internal for coherent mem override.
Michael Opdenackerbfd63cd2013-06-26 05:57:06 +0200500 * @cma_area: Contiguous memory area for dma allocations
Wanlong Gao880ffb52011-05-05 07:55:36 +0800501 * @archdata: For arch-specific additions.
502 * @of_node: Associated device tree node.
Rafael J. Wysockice793482015-03-16 23:49:03 +0100503 * @fwnode: Associated device node supplied by platform firmware.
Wanlong Gao880ffb52011-05-05 07:55:36 +0800504 * @devt: For creating the sysfs "dev".
Randy Dunlap2eda0132012-01-21 11:02:51 -0800505 * @id: device instance
Wanlong Gao880ffb52011-05-05 07:55:36 +0800506 * @devres_lock: Spinlock to protect the resource of the device.
507 * @devres_head: The resources list of the device.
508 * @knode_class: The node used to add the device to the class list.
509 * @class: The class of the device.
510 * @groups: Optional attribute groups.
511 * @release: Callback to free the device after all references have
512 * gone away. This should be set by the allocator of the
513 * device (i.e. the bus driver that discovered the device).
Michael Opdenackerbfd63cd2013-06-26 05:57:06 +0200514 * @iommu_group: IOMMU group the device belongs to.
Joerg Roedel045a7042020-03-26 16:08:30 +0100515 * @iommu: Per device generic IOMMU runtime data
Wanlong Gao880ffb52011-05-05 07:55:36 +0800516 *
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +0200517 * @offline_disabled: If set, the device is permanently online.
518 * @offline: Set after successful invocation of bus type's .offline().
Johan Hovold4e75e1d2017-06-06 17:59:00 +0200519 * @of_node_reused: Set if the device-tree node is shared with an ancestor
520 * device.
Saravana Kannanfc5a2512019-09-04 14:11:23 -0700521 * @state_synced: The hardware state of this device has been synced to match
522 * the software state of this device by calling the driver/bus
523 * sync_state() callback.
Christoph Hellwigf3ecc0f2018-08-19 14:53:20 +0200524 * @dma_coherent: this particular device is dma coherent, even if the
525 * architecture supports non-coherent devices.
Wanlong Gao880ffb52011-05-05 07:55:36 +0800526 *
527 * At the lowest level, every device in a Linux system is represented by an
528 * instance of struct device. The device structure contains the information
529 * that the device model core needs to model the system. Most subsystems,
530 * however, track additional information about the devices they host. As a
531 * result, it is rare for devices to be represented by bare device structures;
532 * instead, that structure, like kobject structures, is usually embedded within
533 * a higher-level representation of the device.
534 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535struct device {
Greg Kroah-Hartman159ef312019-02-26 15:32:29 +0100536 struct kobject kobj;
David Brownell49a4ec12007-05-08 00:29:39 -0700537 struct device *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800539 struct device_private *p;
540
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700541 const char *init_name; /* initial name of the device */
Stephen Hemmingeraed65af2011-03-28 09:12:52 -0700542 const struct device_type *type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800544 struct bus_type *bus; /* type of bus device is on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct device_driver *driver; /* which driver has allocated this
546 device */
Greg Kroah-Hartmane67c8562009-03-08 23:13:32 +0800547 void *platform_data; /* Platform specific data, device
548 core doesn't touch it */
Jean Delvare1bb6c082014-04-14 12:54:47 +0200549 void *driver_data; /* Driver data, set and get with
David Engraf2c6f4fc2019-02-05 13:19:52 +0100550 dev_set_drvdata/dev_get_drvdata */
Dan Williams87a30e12019-07-17 18:08:26 -0700551#ifdef CONFIG_PROVE_LOCKING
552 struct mutex lockdep_mutex;
553#endif
Greg Kroah-Hartman159ef312019-02-26 15:32:29 +0100554 struct mutex mutex; /* mutex to synchronize calls to
555 * its driver.
556 */
557
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100558 struct dev_links_info links;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct dev_pm_info power;
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200560 struct dev_pm_domain *pm_domain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Marc Zyngierf1421db2015-07-28 14:46:10 +0100562#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
563 struct irq_domain *msi_domain;
564#endif
Linus Walleijab780292013-01-22 10:56:14 -0700565#ifdef CONFIG_PINCTRL
566 struct dev_pin_info *pins;
567#endif
Jiang Liu4a7cc832015-07-09 16:00:44 +0800568#ifdef CONFIG_GENERIC_MSI_IRQ
569 struct list_head msi_list;
570#endif
Linus Walleijab780292013-01-22 10:56:14 -0700571
Bart Van Assche56579332017-01-20 13:04:02 -0800572 const struct dma_map_ops *dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 u64 *dma_mask; /* dma mask (if dma'able device) */
574 u64 coherent_dma_mask;/* Like dma_mask, but for
575 alloc_coherent mappings as
576 not all hardware supports
577 64 bit addresses for consistent
578 allocations such descriptors. */
Nicolas Saenz Juliennea7ba70f2019-11-21 10:26:44 +0100579 u64 bus_dma_limit; /* upstream dma constraint */
Santosh Shilimkar8febcaa2014-04-24 11:30:01 -0400580 unsigned long dma_pfn_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800582 struct device_dma_parameters *dma_parms;
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 struct list_head dma_pools; /* dma pools (if dma'ble) */
585
Christoph Hellwigff4c25f2019-02-03 20:12:02 +0100586#ifdef CONFIG_DMA_DECLARE_COHERENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
588 override */
Christoph Hellwig2b281292018-12-25 14:03:32 +0100589#endif
Marek Szyprowskia2547382013-07-29 14:31:45 +0200590#ifdef CONFIG_DMA_CMA
Marek Szyprowskic64be2b2011-12-29 13:09:51 +0100591 struct cma *cma_area; /* contiguous memory area for dma
592 allocations */
593#endif
Benjamin Herrenschmidtc6dbaef2006-11-11 17:18:39 +1100594 /* arch specific additions */
595 struct dev_archdata archdata;
Grant Likelyc9e358d2011-01-21 09:24:48 -0700596
597 struct device_node *of_node; /* associated device tree node */
Rafael J. Wysockice793482015-03-16 23:49:03 +0100598 struct fwnode_handle *fwnode; /* firmware device node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Greg Kroah-Hartman159ef312019-02-26 15:32:29 +0100600#ifdef CONFIG_NUMA
601 int numa_node; /* NUMA node this device is close to */
602#endif
Matthew Wilcox929d2fa2008-10-16 15:51:35 -0600603 dev_t devt; /* dev_t, creates the sysfs "dev" */
Kay Sieversca22e562011-12-14 14:29:38 -0800604 u32 id; /* device instance */
Matthew Wilcox929d2fa2008-10-16 15:51:35 -0600605
Tejun Heo9ac78492007-01-20 16:00:26 +0900606 spinlock_t devres_lock;
607 struct list_head devres_head;
608
Kay Sieversb7a3e812006-10-07 21:54:55 +0200609 struct class *class;
David Brownella4dbd672009-06-24 10:06:31 -0700610 const struct attribute_group **groups; /* optional groups */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700611
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800612 void (*release)(struct device *dev);
Alex Williamson74416e12012-05-30 14:18:41 -0600613 struct iommu_group *iommu_group;
Joerg Roedel045a7042020-03-26 16:08:30 +0100614 struct dev_iommu *iommu;
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +0200615
616 bool offline_disabled:1;
617 bool offline:1;
Johan Hovold4e75e1d2017-06-06 17:59:00 +0200618 bool of_node_reused:1;
Saravana Kannanfc5a2512019-09-04 14:11:23 -0700619 bool state_synced:1;
Christoph Hellwigf3ecc0f2018-08-19 14:53:20 +0200620#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
621 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
622 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL)
623 bool dma_coherent:1;
624#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625};
626
Lars-Peter Clausena4232962012-07-03 18:49:35 +0200627static inline struct device *kobj_to_dev(struct kobject *kobj)
628{
629 return container_of(kobj, struct device, kobj);
630}
631
Joerg Roedeldbba1972018-11-30 12:51:52 +0100632/**
633 * device_iommu_mapped - Returns true when the device DMA is translated
634 * by an IOMMU
635 * @dev: Device to perform the check on
636 */
637static inline bool device_iommu_mapped(struct device *dev)
638{
639 return (dev->iommu_group != NULL);
640}
641
Alan Stern9a3df1f2008-03-19 22:39:13 +0100642/* Get the wakeup routines, which depend on struct device */
643#include <linux/pm_wakeup.h>
644
Jean Delvarebf9ca692008-07-30 12:29:21 -0700645static inline const char *dev_name(const struct device *dev)
Kay Sievers06916632008-05-02 06:02:41 +0200646{
Paul Mundta636ee72010-03-09 06:57:53 +0000647 /* Use the init name until the kobject becomes available */
648 if (dev->init_name)
649 return dev->init_name;
650
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100651 return kobject_name(&dev->kobj);
Kay Sievers06916632008-05-02 06:02:41 +0200652}
653
Joe Perchesb9075fa2011-10-31 17:11:33 -0700654extern __printf(2, 3)
655int dev_set_name(struct device *dev, const char *name, ...);
Stephen Rothwell413c2392008-05-30 10:16:40 +1000656
Christoph Hellwig87348132006-12-06 20:32:33 -0800657#ifdef CONFIG_NUMA
658static inline int dev_to_node(struct device *dev)
659{
660 return dev->numa_node;
661}
662static inline void set_dev_node(struct device *dev, int node)
663{
664 dev->numa_node = node;
665}
666#else
667static inline int dev_to_node(struct device *dev)
668{
Anshuman Khandual98fa15f2019-03-05 15:42:58 -0800669 return NUMA_NO_NODE;
Christoph Hellwig87348132006-12-06 20:32:33 -0800670}
671static inline void set_dev_node(struct device *dev, int node)
672{
673}
674#endif
675
Marc Zyngierf1421db2015-07-28 14:46:10 +0100676static inline struct irq_domain *dev_get_msi_domain(const struct device *dev)
677{
678#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
679 return dev->msi_domain;
680#else
681 return NULL;
682#endif
683}
684
685static inline void dev_set_msi_domain(struct device *dev, struct irq_domain *d)
686{
687#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
688 dev->msi_domain = d;
689#endif
690}
691
Jean Delvarea996d012014-04-14 12:58:53 +0200692static inline void *dev_get_drvdata(const struct device *dev)
693{
694 return dev->driver_data;
695}
696
697static inline void dev_set_drvdata(struct device *dev, void *data)
698{
699 dev->driver_data = data;
700}
701
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200702static inline struct pm_subsys_data *dev_to_psd(struct device *dev)
703{
704 return dev ? dev->power.subsys_data : NULL;
705}
706
Ming Leif67f1292009-03-01 21:10:49 +0800707static inline unsigned int dev_get_uevent_suppress(const struct device *dev)
708{
709 return dev->kobj.uevent_suppress;
710}
711
712static inline void dev_set_uevent_suppress(struct device *dev, int val)
713{
714 dev->kobj.uevent_suppress = val;
715}
716
Daniel Ritzd305ef52005-09-22 00:47:24 -0700717static inline int device_is_registered(struct device *dev)
718{
Greg Kroah-Hartman3f62e572008-03-13 17:07:03 -0400719 return dev->kobj.state_in_sysfs;
Daniel Ritzd305ef52005-09-22 00:47:24 -0700720}
721
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +0100722static inline void device_enable_async_suspend(struct device *dev)
723{
Alan Sternf76b168b2011-06-18 20:22:23 +0200724 if (!dev->power.is_prepared)
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +0100725 dev->power.async_suspend = true;
726}
727
Rafael J. Wysocki5a2eb852010-01-23 22:25:23 +0100728static inline void device_disable_async_suspend(struct device *dev)
729{
Alan Sternf76b168b2011-06-18 20:22:23 +0200730 if (!dev->power.is_prepared)
Rafael J. Wysocki5a2eb852010-01-23 22:25:23 +0100731 dev->power.async_suspend = false;
732}
733
734static inline bool device_async_suspend_enabled(struct device *dev)
735{
736 return !!dev->power.async_suspend;
737}
738
Sudeep Holla85945c22019-02-14 18:29:10 +0000739static inline bool device_pm_not_required(struct device *dev)
740{
741 return dev->power.no_pm;
742}
743
744static inline void device_set_pm_not_required(struct device *dev)
745{
746 dev->power.no_pm = true;
747}
748
Rafael J. Wysockifeb70af2012-08-13 14:00:25 +0200749static inline void dev_pm_syscore_device(struct device *dev, bool val)
750{
751#ifdef CONFIG_PM_SLEEP
752 dev->power.syscore = val;
753#endif
754}
755
Rafael J. Wysocki08810a42017-10-25 14:12:29 +0200756static inline void dev_pm_set_driver_flags(struct device *dev, u32 flags)
757{
758 dev->power.driver_flags = flags;
759}
760
761static inline bool dev_pm_test_driver_flags(struct device *dev, u32 flags)
762{
763 return !!(dev->power.driver_flags & flags);
764}
765
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800766static inline void device_lock(struct device *dev)
767{
Thomas Gleixner31427882010-01-29 20:39:02 +0000768 mutex_lock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800769}
770
Oliver Neukum7dd9cba2016-01-21 15:18:47 +0100771static inline int device_lock_interruptible(struct device *dev)
772{
773 return mutex_lock_interruptible(&dev->mutex);
774}
775
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800776static inline int device_trylock(struct device *dev)
777{
Thomas Gleixner31427882010-01-29 20:39:02 +0000778 return mutex_trylock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800779}
780
781static inline void device_unlock(struct device *dev)
782{
Thomas Gleixner31427882010-01-29 20:39:02 +0000783 mutex_unlock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800784}
785
Konrad Rzeszutek Wilkac801022014-12-03 16:40:27 -0500786static inline void device_lock_assert(struct device *dev)
787{
788 lockdep_assert_held(&dev->mutex);
789}
790
Benjamin Herrenschmidte8a51e12015-02-17 19:03:41 -0600791static inline struct device_node *dev_of_node(struct device *dev)
792{
Stephen Boyd1b833922019-04-12 11:31:45 -0700793 if (!IS_ENABLED(CONFIG_OF) || !dev)
Benjamin Herrenschmidte8a51e12015-02-17 19:03:41 -0600794 return NULL;
795 return dev->of_node;
796}
797
Saravana Kannanac338ac2020-02-21 00:05:09 -0800798static inline bool dev_has_sync_state(struct device *dev)
799{
800 if (!dev)
801 return false;
802 if (dev->driver && dev->driver->sync_state)
803 return true;
804 if (dev->bus && dev->bus->sync_state)
805 return true;
806 return false;
807}
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809/*
810 * High level routines for use by the bus drivers
811 */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800812extern int __must_check device_register(struct device *dev);
813extern void device_unregister(struct device *dev);
814extern void device_initialize(struct device *dev);
815extern int __must_check device_add(struct device *dev);
816extern void device_del(struct device *dev);
817extern int device_for_each_child(struct device *dev, void *data,
818 int (*fn)(struct device *dev, void *data));
Andy Shevchenko3d060ae2015-07-27 18:04:00 +0300819extern int device_for_each_child_reverse(struct device *dev, void *data,
820 int (*fn)(struct device *dev, void *data));
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800821extern struct device *device_find_child(struct device *dev, void *data,
822 int (*match)(struct device *dev, void *data));
Heikki Krogerusdad9bb02019-05-31 17:15:37 +0300823extern struct device *device_find_child_by_name(struct device *parent,
824 const char *name);
Johannes Berg6937e8f2010-08-05 17:38:18 +0200825extern int device_rename(struct device *dev, const char *new_name);
Cornelia Huckffa6a702009-03-04 12:44:00 +0100826extern int device_move(struct device *dev, struct device *new_parent,
827 enum dpm_order dpm_order);
Christian Braunerb8f33e52020-02-27 04:37:15 +0100828extern int device_change_owner(struct device *dev, kuid_t kuid, kgid_t kgid);
Kay Sieverse454cea2009-09-18 23:01:12 +0200829extern const char *device_get_devnode(struct device *dev,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -0700830 umode_t *mode, kuid_t *uid, kgid_t *gid,
Kay Sievers3c2670e2013-04-06 09:56:00 -0700831 const char **tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +0200833static inline bool device_supports_offline(struct device *dev)
834{
835 return dev->bus && dev->bus->offline && dev->bus->online;
836}
837
838extern void lock_device_hotplug(void);
839extern void unlock_device_hotplug(void);
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +0200840extern int lock_device_hotplug_sysfs(void);
Rafael J. Wysocki4f3549d2013-05-02 22:15:29 +0200841extern int device_offline(struct device *dev);
842extern int device_online(struct device *dev);
Rafael J. Wysocki97badf82015-04-03 23:23:37 +0200843extern void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
844extern void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
Johan Hovold4e75e1d2017-06-06 17:59:00 +0200845void device_set_of_node_from_dev(struct device *dev, const struct device *dev2);
Rafael J. Wysocki97badf82015-04-03 23:23:37 +0200846
Phil Sutter9af15c32017-01-18 14:04:39 +0100847static inline int dev_num_vf(struct device *dev)
848{
849 if (dev->bus && dev->bus->num_vf)
850 return dev->bus->num_vf(dev);
851 return 0;
852}
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854/*
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000855 * Root device objects for grouping under /sys/devices
856 */
857extern struct device *__root_device_register(const char *name,
858 struct module *owner);
Paul Gortmakereb5589a2011-05-27 09:02:11 -0400859
Tejun Heo33ac1252014-01-10 08:57:31 -0500860/* This is a macro to avoid include problems with THIS_MODULE */
Paul Gortmakereb5589a2011-05-27 09:02:11 -0400861#define root_device_register(name) \
862 __root_device_register(name, THIS_MODULE)
863
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000864extern void root_device_unregister(struct device *root);
865
Mark Browna5b8b1a2009-07-17 15:06:08 +0100866static inline void *dev_get_platdata(const struct device *dev)
867{
868 return dev->platform_data;
869}
870
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000871/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 * Manual binding of a device to driver. See drivers/base/bus.c
873 * for information on use.
874 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700875extern int __must_check device_bind_driver(struct device *dev);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800876extern void device_release_driver(struct device *dev);
877extern int __must_check device_attach(struct device *dev);
Andrew Mortonf86db392006-08-14 22:43:20 -0700878extern int __must_check driver_attach(struct device_driver *drv);
Dmitry Torokhov765230b2015-03-30 16:20:04 -0700879extern void device_initial_probe(struct device *dev);
Andrew Mortonf86db392006-08-14 22:43:20 -0700880extern int __must_check device_reprobe(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Tomeu Vizoso6b9cb422016-01-07 16:46:12 +0100882extern bool device_is_bound(struct device *dev);
883
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700884/*
885 * Easy functions for dynamically creating devices on the fly
886 */
Nicolas Iooss8db14862015-07-17 16:23:42 -0700887extern __printf(5, 0)
888struct device *device_create_vargs(struct class *cls, struct device *parent,
889 dev_t devt, void *drvdata,
890 const char *fmt, va_list vargs);
Joe Perchesb9075fa2011-10-31 17:11:33 -0700891extern __printf(5, 6)
892struct device *device_create(struct class *cls, struct device *parent,
893 dev_t devt, void *drvdata,
894 const char *fmt, ...);
Guenter Roeck39ef3112013-07-14 16:05:57 -0700895extern __printf(6, 7)
896struct device *device_create_with_groups(struct class *cls,
897 struct device *parent, dev_t devt, void *drvdata,
898 const struct attribute_group **groups,
899 const char *fmt, ...);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700900extern void device_destroy(struct class *cls, dev_t devt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Dmitry Torokhova7670d42017-07-19 17:24:31 -0700902extern int __must_check device_add_groups(struct device *dev,
903 const struct attribute_group **groups);
904extern void device_remove_groups(struct device *dev,
905 const struct attribute_group **groups);
906
Dmitry Torokhove323b2d2017-07-19 17:24:32 -0700907static inline int __must_check device_add_group(struct device *dev,
908 const struct attribute_group *grp)
909{
910 const struct attribute_group *groups[] = { grp, NULL };
911
912 return device_add_groups(dev, groups);
913}
914
915static inline void device_remove_group(struct device *dev,
916 const struct attribute_group *grp)
917{
918 const struct attribute_group *groups[] = { grp, NULL };
919
920 return device_remove_groups(dev, groups);
921}
922
Dmitry Torokhov57b8ff02017-07-19 17:24:33 -0700923extern int __must_check devm_device_add_groups(struct device *dev,
924 const struct attribute_group **groups);
925extern void devm_device_remove_groups(struct device *dev,
926 const struct attribute_group **groups);
927extern int __must_check devm_device_add_group(struct device *dev,
928 const struct attribute_group *grp);
929extern void devm_device_remove_group(struct device *dev,
930 const struct attribute_group *grp);
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932/*
933 * Platform "fixup" functions - allow the platform to have their say
934 * about devices and actions that the general device layer doesn't
935 * know about.
936 */
937/* Notify platform of device discovery */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800938extern int (*platform_notify)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800940extern int (*platform_notify_remove)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942
Wanlong Gao880ffb52011-05-05 07:55:36 +0800943/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 * get_device - atomically increment the reference count for the device.
945 *
946 */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800947extern struct device *get_device(struct device *dev);
948extern void put_device(struct device *dev);
Dan Williams00289cd2019-07-17 18:07:53 -0700949extern bool kill_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Kay Sievers2b2af542009-04-30 15:23:42 +0200951#ifdef CONFIG_DEVTMPFS
Dominik Brodowski5e787db2018-10-23 22:10:35 +0200952extern int devtmpfs_mount(void);
Kay Sievers2b2af542009-04-30 15:23:42 +0200953#else
Dominik Brodowski5e787db2018-10-23 22:10:35 +0200954static inline int devtmpfs_mount(void) { return 0; }
Kay Sievers2b2af542009-04-30 15:23:42 +0200955#endif
956
Rytchkov Alexey116f232b2006-03-22 00:58:53 +0100957/* drivers/base/power/shutdown.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958extern void device_shutdown(void);
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960/* debugging and troubleshooting/diagnostic helpers. */
Jean Delvarebf9ca692008-07-30 12:29:21 -0700961extern const char *dev_driver_string(const struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Rafael J. Wysocki9ed98952016-10-30 17:32:16 +0100963/* Device links interface. */
964struct device_link *device_link_add(struct device *consumer,
965 struct device *supplier, u32 flags);
966void device_link_del(struct device_link *link);
pascal pailletd8842212018-07-05 14:25:56 +0000967void device_link_remove(void *consumer, struct device *supplier);
Saravana Kannanfc5a2512019-09-04 14:11:23 -0700968void device_links_supplier_sync_state_pause(void);
969void device_links_supplier_sync_state_resume(void);
Joe Perches99bcf212010-06-27 01:02:34 +0000970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971/* Create alias, so I can be autoloaded. */
972#define MODULE_ALIAS_CHARDEV(major,minor) \
973 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
974#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
975 MODULE_ALIAS("char-major-" __stringify(major) "-*")
Andi Kleene52eec12010-09-08 16:54:17 +0200976
977#ifdef CONFIG_SYSFS_DEPRECATED
978extern long sysfs_deprecated;
979#else
980#define sysfs_deprecated 0
981#endif
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983#endif /* _DEVICE_H_ */