Greg Kroah-Hartman | 989d42e | 2017-11-07 17:30:07 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * device.h - generic, centralized driver model |
| 4 | * |
| 5 | * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org> |
Greg Kroah-Hartman | b402843 | 2009-05-11 14:16:57 -0700 | [diff] [blame] | 6 | * Copyright (c) 2004-2009 Greg Kroah-Hartman <gregkh@suse.de> |
| 7 | * Copyright (c) 2008-2009 Novell Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
Mauro Carvalho Chehab | fe34c89 | 2019-06-18 12:34:59 -0300 | [diff] [blame] | 9 | * See Documentation/driver-api/driver-model/ for more information. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #ifndef _DEVICE_H_ |
| 13 | #define _DEVICE_H_ |
| 14 | |
Greg Kroah-Hartman | af628aa | 2019-12-09 20:33:00 +0100 | [diff] [blame] | 15 | #include <linux/dev_printk.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/ioport.h> |
| 17 | #include <linux/kobject.h> |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 18 | #include <linux/klist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/list.h> |
Matthew Wilcox | d2a3b91 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 20 | #include <linux/lockdep.h> |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 21 | #include <linux/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/types.h> |
Paul Gortmaker | de47725 | 2011-05-26 13:46:22 -0400 | [diff] [blame] | 23 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/pm.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 25 | #include <linux/atomic.h> |
Kay Sievers | 3c2670e | 2013-04-06 09:56:00 -0700 | [diff] [blame] | 26 | #include <linux/uidgid.h> |
Joe Perches | 64c862a8 | 2013-10-11 13:11:38 -0700 | [diff] [blame] | 27 | #include <linux/gfp.h> |
Kees Cook | 2509b56 | 2018-05-08 22:29:52 -0700 | [diff] [blame] | 28 | #include <linux/overflow.h> |
Greg Kroah-Hartman | 5aee2bf | 2019-12-09 20:33:01 +0100 | [diff] [blame] | 29 | #include <linux/device/bus.h> |
Greg Kroah-Hartman | a8ae608 | 2019-12-09 20:33:02 +0100 | [diff] [blame] | 30 | #include <linux/device/class.h> |
Greg Kroah-Hartman | 4c002c9 | 2019-12-09 20:33:03 +0100 | [diff] [blame] | 31 | #include <linux/device/driver.h> |
Benjamin Herrenschmidt | c6dbaef | 2006-11-11 17:18:39 +1100 | [diff] [blame] | 32 | #include <asm/device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | struct device; |
Greg Kroah-Hartman | fb069a5 | 2008-12-16 12:23:36 -0800 | [diff] [blame] | 35 | struct device_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | struct device_driver; |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 37 | struct driver_private; |
Paul Gortmaker | de47725 | 2011-05-26 13:46:22 -0400 | [diff] [blame] | 38 | struct module; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | struct class; |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 40 | struct subsys_private; |
Grant Likely | d706c1b | 2010-04-13 16:12:28 -0700 | [diff] [blame] | 41 | struct device_node; |
Rafael J. Wysocki | ce79348 | 2015-03-16 23:49:03 +0100 | [diff] [blame] | 42 | struct fwnode_handle; |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 43 | struct iommu_ops; |
Alex Williamson | 74416e1 | 2012-05-30 14:18:41 -0600 | [diff] [blame] | 44 | struct iommu_group; |
Linus Torvalds | 23c35f4 | 2018-02-02 16:44:14 -0800 | [diff] [blame] | 45 | struct dev_pin_info; |
Joerg Roedel | 045a704 | 2020-03-26 16:08:30 +0100 | [diff] [blame] | 46 | struct dev_iommu; |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 47 | |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 48 | /** |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 49 | * struct subsys_interface - interfaces to device functions |
Randy Dunlap | 2eda013 | 2012-01-21 11:02:51 -0800 | [diff] [blame] | 50 | * @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 Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 55 | * |
| 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 | */ |
| 61 | struct 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 Kumar | 71db87b | 2015-07-30 15:04:01 +0530 | [diff] [blame] | 66 | void (*remove_dev)(struct device *dev, struct subsys_interface *sif); |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | int subsys_interface_register(struct subsys_interface *sif); |
| 70 | void subsys_interface_unregister(struct subsys_interface *sif); |
| 71 | |
| 72 | int subsys_system_register(struct bus_type *subsys, |
| 73 | const struct attribute_group **groups); |
Tejun Heo | d73ce00 | 2013-03-12 11:30:05 -0700 | [diff] [blame] | 74 | int subsys_virtual_register(struct bus_type *subsys, |
| 75 | const struct attribute_group **groups); |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 76 | |
Kay Sievers | 414264f | 2007-03-12 21:08:57 +0100 | [diff] [blame] | 77 | /* |
| 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 Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 86 | struct device_type { |
Kay Sievers | 414264f | 2007-03-12 21:08:57 +0100 | [diff] [blame] | 87 | const char *name; |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 88 | const struct attribute_group **groups; |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 89 | int (*uevent)(struct device *dev, struct kobj_uevent_env *env); |
Kay Sievers | 3c2670e | 2013-04-06 09:56:00 -0700 | [diff] [blame] | 90 | char *(*devnode)(struct device *dev, umode_t *mode, |
Greg Kroah-Hartman | 4e4098a | 2013-04-11 11:43:29 -0700 | [diff] [blame] | 91 | kuid_t *uid, kgid_t *gid); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 92 | void (*release)(struct device *dev); |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 93 | |
Dmitry Torokhov | 8150f32 | 2009-07-24 22:11:32 -0700 | [diff] [blame] | 94 | const struct dev_pm_ops *pm; |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 95 | }; |
| 96 | |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 97 | /* interface for exporting device attributes */ |
| 98 | struct 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 Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 106 | struct dev_ext_attribute { |
| 107 | struct device_attribute attr; |
| 108 | void *var; |
| 109 | }; |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 110 | |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 111 | ssize_t device_show_ulong(struct device *dev, struct device_attribute *attr, |
| 112 | char *buf); |
| 113 | ssize_t device_store_ulong(struct device *dev, struct device_attribute *attr, |
| 114 | const char *buf, size_t count); |
| 115 | ssize_t device_show_int(struct device *dev, struct device_attribute *attr, |
| 116 | char *buf); |
| 117 | ssize_t device_store_int(struct device *dev, struct device_attribute *attr, |
| 118 | const char *buf, size_t count); |
Borislav Petkov | 9187239 | 2012-10-09 19:52:05 +0200 | [diff] [blame] | 119 | ssize_t device_show_bool(struct device *dev, struct device_attribute *attr, |
| 120 | char *buf); |
| 121 | ssize_t device_store_bool(struct device *dev, struct device_attribute *attr, |
| 122 | const char *buf, size_t count); |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 123 | |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 124 | #define DEVICE_ATTR(_name, _mode, _show, _store) \ |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 125 | struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store) |
Christophe Leroy | 7fda910 | 2017-12-18 11:08:29 +0100 | [diff] [blame] | 126 | #define DEVICE_ATTR_PREALLOC(_name, _mode, _show, _store) \ |
| 127 | struct device_attribute dev_attr_##_name = \ |
| 128 | __ATTR_PREALLOC(_name, _mode, _show, _store) |
Greg Kroah-Hartman | ced321b | 2013-07-14 16:05:54 -0700 | [diff] [blame] | 129 | #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-Hartman | 1130c55 | 2013-08-23 15:02:56 -0700 | [diff] [blame] | 133 | #define DEVICE_ATTR_WO(_name) \ |
| 134 | struct device_attribute dev_attr_##_name = __ATTR_WO(_name) |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 135 | #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 Davidson | 9475818 | 2012-05-03 16:19:02 -0700 | [diff] [blame] | 140 | { __ATTR(_name, _mode, device_show_int, device_store_int), &(_var) } |
Borislav Petkov | 9187239 | 2012-10-09 19:52:05 +0200 | [diff] [blame] | 141 | #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 Stern | 356c05d | 2012-05-14 13:30:03 -0400 | [diff] [blame] | 144 | #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 Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 147 | |
Greg Kroah-Hartman | b9d4e71 | 2012-01-04 15:05:10 -0800 | [diff] [blame] | 148 | extern int device_create_file(struct device *device, |
| 149 | const struct device_attribute *entry); |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 150 | extern void device_remove_file(struct device *dev, |
Phil Carmody | 26579ab | 2009-12-18 15:34:19 +0200 | [diff] [blame] | 151 | const struct device_attribute *attr); |
Tejun Heo | 6b0afc2 | 2014-02-03 14:03:01 -0500 | [diff] [blame] | 152 | extern bool device_remove_file_self(struct device *dev, |
| 153 | const struct device_attribute *attr); |
Greg Kroah-Hartman | 2589f188 | 2006-09-19 09:39:19 -0700 | [diff] [blame] | 154 | extern int __must_check device_create_bin_file(struct device *dev, |
Phil Carmody | 66ecb92 | 2009-12-18 15:34:20 +0200 | [diff] [blame] | 155 | const struct bin_attribute *attr); |
Greg Kroah-Hartman | 2589f188 | 2006-09-19 09:39:19 -0700 | [diff] [blame] | 156 | extern void device_remove_bin_file(struct device *dev, |
Phil Carmody | 66ecb92 | 2009-12-18 15:34:20 +0200 | [diff] [blame] | 157 | const struct bin_attribute *attr); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 158 | |
| 159 | /* device resource management */ |
| 160 | typedef void (*dr_release_t)(struct device *dev, void *res); |
| 161 | typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data); |
| 162 | |
| 163 | #ifdef CONFIG_DEBUG_DEVRES |
Dan Williams | 7c68394 | 2015-10-05 20:35:55 -0400 | [diff] [blame] | 164 | extern void *__devres_alloc_node(dr_release_t release, size_t size, gfp_t gfp, |
Rasmus Villemoes | 48a27055 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 165 | int nid, const char *name) __malloc; |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 166 | #define devres_alloc(release, size, gfp) \ |
Dan Williams | 7c68394 | 2015-10-05 20:35:55 -0400 | [diff] [blame] | 167 | __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 Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 170 | #else |
Dan Williams | 7c68394 | 2015-10-05 20:35:55 -0400 | [diff] [blame] | 171 | extern void *devres_alloc_node(dr_release_t release, size_t size, gfp_t gfp, |
Rasmus Villemoes | 48a27055 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 172 | int nid) __malloc; |
Dan Williams | 7c68394 | 2015-10-05 20:35:55 -0400 | [diff] [blame] | 173 | static 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 Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 177 | #endif |
Dan Williams | 7c68394 | 2015-10-05 20:35:55 -0400 | [diff] [blame] | 178 | |
Ming Lei | bddb1b9 | 2012-08-04 12:01:26 +0800 | [diff] [blame] | 179 | extern 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 Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 183 | extern void devres_free(void *res); |
| 184 | extern void devres_add(struct device *dev, void *res); |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 185 | extern void *devres_find(struct device *dev, dr_release_t release, |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 186 | dr_match_t match, void *match_data); |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 187 | extern void *devres_get(struct device *dev, void *new_res, |
| 188 | dr_match_t match, void *match_data); |
| 189 | extern void *devres_remove(struct device *dev, dr_release_t release, |
| 190 | dr_match_t match, void *match_data); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 191 | extern int devres_destroy(struct device *dev, dr_release_t release, |
| 192 | dr_match_t match, void *match_data); |
Mark Brown | d926d0e | 2012-05-03 18:15:13 +0100 | [diff] [blame] | 193 | extern int devres_release(struct device *dev, dr_release_t release, |
| 194 | dr_match_t match, void *match_data); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 195 | |
| 196 | /* devres group */ |
| 197 | extern void * __must_check devres_open_group(struct device *dev, void *id, |
| 198 | gfp_t gfp); |
| 199 | extern void devres_close_group(struct device *dev, void *id); |
| 200 | extern void devres_remove_group(struct device *dev, void *id); |
| 201 | extern int devres_release_group(struct device *dev, void *id); |
| 202 | |
Joe Perches | 64c862a8 | 2013-10-11 13:11:38 -0700 | [diff] [blame] | 203 | /* managed devm_k.alloc/kfree for device drivers */ |
Rasmus Villemoes | 48a27055 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 204 | extern void *devm_kmalloc(struct device *dev, size_t size, gfp_t gfp) __malloc; |
Nicolas Iooss | 8db1486 | 2015-07-17 16:23:42 -0700 | [diff] [blame] | 205 | extern __printf(3, 0) |
| 206 | char *devm_kvasprintf(struct device *dev, gfp_t gfp, const char *fmt, |
Rasmus Villemoes | 48a27055 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 207 | va_list ap) __malloc; |
Geert Uytterhoeven | bef59c5 | 2014-08-20 15:26:35 +0200 | [diff] [blame] | 208 | extern __printf(3, 4) |
Rasmus Villemoes | 48a27055 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 209 | char *devm_kasprintf(struct device *dev, gfp_t gfp, const char *fmt, ...) __malloc; |
Joe Perches | 64c862a8 | 2013-10-11 13:11:38 -0700 | [diff] [blame] | 210 | static inline void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp) |
| 211 | { |
| 212 | return devm_kmalloc(dev, size, gfp | __GFP_ZERO); |
| 213 | } |
| 214 | static inline void *devm_kmalloc_array(struct device *dev, |
| 215 | size_t n, size_t size, gfp_t flags) |
| 216 | { |
Kees Cook | 2509b56 | 2018-05-08 22:29:52 -0700 | [diff] [blame] | 217 | size_t bytes; |
| 218 | |
| 219 | if (unlikely(check_mul_overflow(n, size, &bytes))) |
Joe Perches | 64c862a8 | 2013-10-11 13:11:38 -0700 | [diff] [blame] | 220 | return NULL; |
Kees Cook | 2509b56 | 2018-05-08 22:29:52 -0700 | [diff] [blame] | 221 | |
| 222 | return devm_kmalloc(dev, bytes, flags); |
Joe Perches | 64c862a8 | 2013-10-11 13:11:38 -0700 | [diff] [blame] | 223 | } |
| 224 | static 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 Golaszewski | 0571967 | 2018-10-14 17:20:07 +0200 | [diff] [blame] | 229 | extern void devm_kfree(struct device *dev, const void *p); |
Rasmus Villemoes | 48a27055 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 230 | extern char *devm_kstrdup(struct device *dev, const char *s, gfp_t gfp) __malloc; |
Bartosz Golaszewski | 09d1ea1 | 2018-10-14 17:20:09 +0200 | [diff] [blame] | 231 | extern const char *devm_kstrdup_const(struct device *dev, |
| 232 | const char *s, gfp_t gfp); |
Srinivas Pandruvada | 3046365 | 2014-04-29 00:51:00 +0100 | [diff] [blame] | 233 | extern void *devm_kmemdup(struct device *dev, const void *src, size_t len, |
| 234 | gfp_t gfp); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 235 | |
Eli Billauer | 43339be | 2014-05-16 11:26:35 +0300 | [diff] [blame] | 236 | extern unsigned long devm_get_free_pages(struct device *dev, |
| 237 | gfp_t gfp_mask, unsigned int order); |
| 238 | extern void devm_free_pages(struct device *dev, unsigned long addr); |
Greg Kroah-Hartman | 2589f188 | 2006-09-19 09:39:19 -0700 | [diff] [blame] | 239 | |
Arnd Bergmann | eef778c | 2019-07-04 15:14:45 -0700 | [diff] [blame] | 240 | void __iomem *devm_ioremap_resource(struct device *dev, |
| 241 | const struct resource *res); |
Bartosz Golaszewski | b873af6 | 2019-10-22 10:43:13 +0200 | [diff] [blame] | 242 | void __iomem *devm_ioremap_resource_wc(struct device *dev, |
| 243 | const struct resource *res); |
Wolfram Sang | 72f8c0b | 2011-10-25 15:16:47 +0200 | [diff] [blame] | 244 | |
Benjamin Herrenschmidt | d5e8382 | 2018-06-05 13:21:26 +1000 | [diff] [blame] | 245 | void __iomem *devm_of_iomap(struct device *dev, |
| 246 | struct device_node *node, int index, |
| 247 | resource_size_t *size); |
| 248 | |
Dmitry Torokhov | d6b0c58 | 2013-02-23 13:11:14 -0800 | [diff] [blame] | 249 | /* allows to add/remove a custom action to devres stack */ |
| 250 | int devm_add_action(struct device *dev, void (*action)(void *), void *data); |
| 251 | void devm_remove_action(struct device *dev, void (*action)(void *), void *data); |
Dan Williams | 2374b68 | 2019-06-13 15:56:18 -0700 | [diff] [blame] | 252 | void devm_release_action(struct device *dev, void (*action)(void *), void *data); |
Dmitry Torokhov | d6b0c58 | 2013-02-23 13:11:14 -0800 | [diff] [blame] | 253 | |
Sudip Mukherjee | a3499e9 | 2015-12-23 17:57:19 +0530 | [diff] [blame] | 254 | static 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 Bucur | ff86aae | 2016-11-15 10:41:01 +0200 | [diff] [blame] | 266 | /** |
| 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 | |
| 281 | void __percpu *__devm_alloc_percpu(struct device *dev, size_t size, |
| 282 | size_t align); |
| 283 | void devm_free_percpu(struct device *dev, void __percpu *pdata); |
| 284 | |
FUJITA Tomonori | 6b7b651 | 2008-02-04 22:27:55 -0800 | [diff] [blame] | 285 | struct 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 Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 294 | /** |
Heikki Krogerus | f2d9b66 | 2018-03-20 15:57:02 +0300 | [diff] [blame] | 295 | * struct device_connection - Device Connection Descriptor |
Heikki Krogerus | 09aa11c | 2019-02-13 10:45:52 +0300 | [diff] [blame] | 296 | * @fwnode: The device node of the connected device |
Heikki Krogerus | f2d9b66 | 2018-03-20 15:57:02 +0300 | [diff] [blame] | 297 | * @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 Krogerus | 09aa11c | 2019-02-13 10:45:52 +0300 | [diff] [blame] | 300 | * |
| 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 Krogerus | f2d9b66 | 2018-03-20 15:57:02 +0300 | [diff] [blame] | 304 | */ |
| 305 | struct device_connection { |
Heikki Krogerus | 09aa11c | 2019-02-13 10:45:52 +0300 | [diff] [blame] | 306 | struct fwnode_handle *fwnode; |
Heikki Krogerus | f2d9b66 | 2018-03-20 15:57:02 +0300 | [diff] [blame] | 307 | const char *endpoint[2]; |
| 308 | const char *id; |
| 309 | struct list_head list; |
| 310 | }; |
| 311 | |
Heikki Krogerus | 4449306 | 2019-08-29 17:22:33 +0800 | [diff] [blame] | 312 | typedef void *(*devcon_match_fn_t)(struct device_connection *con, int ep, |
| 313 | void *data); |
| 314 | |
| 315 | void *fwnode_connection_find_match(struct fwnode_handle *fwnode, |
| 316 | const char *con_id, void *data, |
| 317 | devcon_match_fn_t match); |
Heikki Krogerus | f2d9b66 | 2018-03-20 15:57:02 +0300 | [diff] [blame] | 318 | void *device_connection_find_match(struct device *dev, const char *con_id, |
Heikki Krogerus | 4449306 | 2019-08-29 17:22:33 +0800 | [diff] [blame] | 319 | void *data, devcon_match_fn_t match); |
Heikki Krogerus | f2d9b66 | 2018-03-20 15:57:02 +0300 | [diff] [blame] | 320 | |
| 321 | struct device *device_connection_find(struct device *dev, const char *con_id); |
| 322 | |
| 323 | void device_connection_add(struct device_connection *con); |
| 324 | void device_connection_remove(struct device_connection *con); |
| 325 | |
| 326 | /** |
Heikki Krogerus | cd7753d | 2018-09-20 14:23:40 +0300 | [diff] [blame] | 327 | * device_connections_add - Add multiple device connections at once |
| 328 | * @cons: Zero terminated array of device connection descriptors |
| 329 | */ |
| 330 | static 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 | */ |
| 342 | static 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. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 351 | * 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 | */ |
| 359 | enum 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. Wysocki | 515db26 | 2019-07-16 17:21:06 +0200 | [diff] [blame] | 371 | * STATELESS: The core will not remove this link automatically. |
Vivek Gautam | e88728f | 2018-06-27 18:20:55 +0530 | [diff] [blame] | 372 | * AUTOREMOVE_CONSUMER: Remove the link automatically on consumer driver unbind. |
Rafael J. Wysocki | 21d5c57 | 2016-10-30 17:32:31 +0100 | [diff] [blame] | 373 | * 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 Gautam | 1689cac | 2018-06-27 18:20:56 +0530 | [diff] [blame] | 375 | * AUTOREMOVE_SUPPLIER: Remove the link automatically on supplier driver unbind. |
Rafael J. Wysocki | e7dd401 | 2019-02-01 01:59:42 +0100 | [diff] [blame] | 376 | * AUTOPROBE_CONSUMER: Probe consumer driver automatically after supplier binds. |
Rafael J. Wysocki | 515db26 | 2019-07-16 17:21:06 +0200 | [diff] [blame] | 377 | * MANAGED: The core tracks presence of supplier/consumer drivers (internal). |
Saravana Kannan | 05ef983 | 2019-10-28 15:00:22 -0700 | [diff] [blame] | 378 | * SYNC_STATE_ONLY: Link only affects sync_state() behavior. |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 379 | */ |
Vivek Gautam | e88728f | 2018-06-27 18:20:55 +0530 | [diff] [blame] | 380 | #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 Gautam | 1689cac | 2018-06-27 18:20:56 +0530 | [diff] [blame] | 384 | #define DL_FLAG_AUTOREMOVE_SUPPLIER BIT(4) |
Rafael J. Wysocki | e7dd401 | 2019-02-01 01:59:42 +0100 | [diff] [blame] | 385 | #define DL_FLAG_AUTOPROBE_CONSUMER BIT(5) |
Rafael J. Wysocki | 515db26 | 2019-07-16 17:21:06 +0200 | [diff] [blame] | 386 | #define DL_FLAG_MANAGED BIT(6) |
Saravana Kannan | 05ef983 | 2019-10-28 15:00:22 -0700 | [diff] [blame] | 387 | #define DL_FLAG_SYNC_STATE_ONLY BIT(7) |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 388 | |
| 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. Wysocki | 21d5c57 | 2016-10-30 17:32:31 +0100 | [diff] [blame] | 397 | * @rpm_active: Whether or not the consumer device is runtime-PM-active. |
Lukas Wunner | ead18c2 | 2018-02-10 19:27:12 +0100 | [diff] [blame] | 398 | * @kref: Count repeated addition of the same link. |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 399 | * @rcu_head: An RCU head to use for deferred execution of SRCU callbacks. |
Rafael J. Wysocki | a7013ba | 2019-02-21 12:28:05 +0100 | [diff] [blame] | 400 | * @supplier_preactivated: Supplier has been made active before consumer probe. |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 401 | */ |
| 402 | struct 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. Wysocki | e2f3cd8 | 2019-02-01 01:49:14 +0100 | [diff] [blame] | 409 | refcount_t rpm_active; |
Lukas Wunner | ead18c2 | 2018-02-10 19:27:12 +0100 | [diff] [blame] | 410 | struct kref kref; |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 411 | #ifdef CONFIG_SRCU |
| 412 | struct rcu_head rcu_head; |
| 413 | #endif |
Rafael J. Wysocki | 36003d4 | 2019-02-19 17:53:26 +0100 | [diff] [blame] | 414 | bool supplier_preactivated; /* Owned by consumer probe. */ |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 415 | }; |
| 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 | */ |
| 424 | enum 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 Kannan | e2ae9bc | 2019-09-04 14:11:21 -0700 | [diff] [blame] | 435 | * @needs_suppliers: Hook to global list of devices waiting for suppliers. |
Saravana Kannan | fc5a251 | 2019-09-04 14:11:23 -0700 | [diff] [blame] | 436 | * @defer_sync: Hook to global list of devices that have deferred sync_state. |
Saravana Kannan | bcbbcfd | 2019-10-28 15:00:23 -0700 | [diff] [blame] | 437 | * @need_for_probe: If needs_suppliers is on a list, this indicates if the |
| 438 | * suppliers are needed for probe or not. |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 439 | * @status: Driver status information. |
| 440 | */ |
| 441 | struct dev_links_info { |
| 442 | struct list_head suppliers; |
| 443 | struct list_head consumers; |
Saravana Kannan | e2ae9bc | 2019-09-04 14:11:21 -0700 | [diff] [blame] | 444 | struct list_head needs_suppliers; |
Saravana Kannan | fc5a251 | 2019-09-04 14:11:23 -0700 | [diff] [blame] | 445 | struct list_head defer_sync; |
Saravana Kannan | bcbbcfd | 2019-10-28 15:00:23 -0700 | [diff] [blame] | 446 | bool need_for_probe; |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 447 | enum dl_dev_state status; |
| 448 | }; |
| 449 | |
| 450 | /** |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 451 | * 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 Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 464 | * @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 Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 466 | * @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 Delvare | 1bb6c08 | 2014-04-14 12:54:47 +0200 | [diff] [blame] | 476 | * @driver_data: Private pointer for driver specific info. |
Lukas Wunner | 64df114 | 2016-12-04 13:10:04 +0100 | [diff] [blame] | 477 | * @links: Links to suppliers and consumers of this device. |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 478 | * @power: For device power management. |
Geert Uytterhoeven | 74378c5 | 2017-09-05 20:16:27 +0200 | [diff] [blame] | 479 | * See Documentation/driver-api/pm/devices.rst for details. |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 480 | * @pm_domain: Provide callbacks that are executed during system suspend, |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 481 | * hibernation, system resume and during runtime PM transitions |
| 482 | * along with subsystem-level and driver-level callbacks. |
Linus Walleij | ab78029 | 2013-01-22 10:56:14 -0700 | [diff] [blame] | 483 | * @pins: For device pin management. |
Ludovic Desroches | 0cca6c8 | 2017-08-06 16:00:05 +0200 | [diff] [blame] | 484 | * See Documentation/driver-api/pinctl.rst for details. |
Jiang Liu | 4a7cc83 | 2015-07-09 16:00:44 +0800 | [diff] [blame] | 485 | * @msi_list: Hosts MSI descriptors |
Marc Zyngier | f1421db | 2015-07-28 14:46:10 +0100 | [diff] [blame] | 486 | * @msi_domain: The generic MSI domain this device is using. |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 487 | * @numa_node: NUMA node this device is close to. |
Jonathan Corbet | 6a7a817 | 2017-08-24 16:09:10 -0600 | [diff] [blame] | 488 | * @dma_ops: DMA mapping operations for this device. |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 489 | * @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 Julienne | a7ba70f | 2019-11-21 10:26:44 +0100 | [diff] [blame] | 493 | * @bus_dma_limit: Limit of an upstream bridge or bus which imposes a smaller |
| 494 | * DMA limit than the device itself supports. |
Santosh Shilimkar | 8febcaa | 2014-04-24 11:30:01 -0400 | [diff] [blame] | 495 | * @dma_pfn_offset: offset of DMA memory range relatively of RAM |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 496 | * @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 Opdenacker | bfd63cd | 2013-06-26 05:57:06 +0200 | [diff] [blame] | 500 | * @cma_area: Contiguous memory area for dma allocations |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 501 | * @archdata: For arch-specific additions. |
| 502 | * @of_node: Associated device tree node. |
Rafael J. Wysocki | ce79348 | 2015-03-16 23:49:03 +0100 | [diff] [blame] | 503 | * @fwnode: Associated device node supplied by platform firmware. |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 504 | * @devt: For creating the sysfs "dev". |
Randy Dunlap | 2eda013 | 2012-01-21 11:02:51 -0800 | [diff] [blame] | 505 | * @id: device instance |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 506 | * @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 Opdenacker | bfd63cd | 2013-06-26 05:57:06 +0200 | [diff] [blame] | 514 | * @iommu_group: IOMMU group the device belongs to. |
Joerg Roedel | 045a704 | 2020-03-26 16:08:30 +0100 | [diff] [blame] | 515 | * @iommu: Per device generic IOMMU runtime data |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 516 | * |
Rafael J. Wysocki | 4f3549d | 2013-05-02 22:15:29 +0200 | [diff] [blame] | 517 | * @offline_disabled: If set, the device is permanently online. |
| 518 | * @offline: Set after successful invocation of bus type's .offline(). |
Johan Hovold | 4e75e1d | 2017-06-06 17:59:00 +0200 | [diff] [blame] | 519 | * @of_node_reused: Set if the device-tree node is shared with an ancestor |
| 520 | * device. |
Saravana Kannan | fc5a251 | 2019-09-04 14:11:23 -0700 | [diff] [blame] | 521 | * @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 Hellwig | f3ecc0f | 2018-08-19 14:53:20 +0200 | [diff] [blame] | 524 | * @dma_coherent: this particular device is dma coherent, even if the |
| 525 | * architecture supports non-coherent devices. |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 526 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | struct device { |
Greg Kroah-Hartman | 159ef31 | 2019-02-26 15:32:29 +0100 | [diff] [blame] | 536 | struct kobject kobj; |
David Brownell | 49a4ec1 | 2007-05-08 00:29:39 -0700 | [diff] [blame] | 537 | struct device *parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Greg Kroah-Hartman | fb069a5 | 2008-12-16 12:23:36 -0800 | [diff] [blame] | 539 | struct device_private *p; |
| 540 | |
Greg Kroah-Hartman | c906a48 | 2008-05-30 10:45:12 -0700 | [diff] [blame] | 541 | const char *init_name; /* initial name of the device */ |
Stephen Hemminger | aed65af | 2011-03-28 09:12:52 -0700 | [diff] [blame] | 542 | const struct device_type *type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 544 | struct bus_type *bus; /* type of bus device is on */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | struct device_driver *driver; /* which driver has allocated this |
| 546 | device */ |
Greg Kroah-Hartman | e67c856 | 2009-03-08 23:13:32 +0800 | [diff] [blame] | 547 | void *platform_data; /* Platform specific data, device |
| 548 | core doesn't touch it */ |
Jean Delvare | 1bb6c08 | 2014-04-14 12:54:47 +0200 | [diff] [blame] | 549 | void *driver_data; /* Driver data, set and get with |
David Engraf | 2c6f4fc | 2019-02-05 13:19:52 +0100 | [diff] [blame] | 550 | dev_set_drvdata/dev_get_drvdata */ |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 551 | #ifdef CONFIG_PROVE_LOCKING |
| 552 | struct mutex lockdep_mutex; |
| 553 | #endif |
Greg Kroah-Hartman | 159ef31 | 2019-02-26 15:32:29 +0100 | [diff] [blame] | 554 | struct mutex mutex; /* mutex to synchronize calls to |
| 555 | * its driver. |
| 556 | */ |
| 557 | |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 558 | struct dev_links_info links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | struct dev_pm_info power; |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 560 | struct dev_pm_domain *pm_domain; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
Marc Zyngier | f1421db | 2015-07-28 14:46:10 +0100 | [diff] [blame] | 562 | #ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN |
| 563 | struct irq_domain *msi_domain; |
| 564 | #endif |
Linus Walleij | ab78029 | 2013-01-22 10:56:14 -0700 | [diff] [blame] | 565 | #ifdef CONFIG_PINCTRL |
| 566 | struct dev_pin_info *pins; |
| 567 | #endif |
Jiang Liu | 4a7cc83 | 2015-07-09 16:00:44 +0800 | [diff] [blame] | 568 | #ifdef CONFIG_GENERIC_MSI_IRQ |
| 569 | struct list_head msi_list; |
| 570 | #endif |
Linus Walleij | ab78029 | 2013-01-22 10:56:14 -0700 | [diff] [blame] | 571 | |
Bart Van Assche | 5657933 | 2017-01-20 13:04:02 -0800 | [diff] [blame] | 572 | const struct dma_map_ops *dma_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | 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 Julienne | a7ba70f | 2019-11-21 10:26:44 +0100 | [diff] [blame] | 579 | u64 bus_dma_limit; /* upstream dma constraint */ |
Santosh Shilimkar | 8febcaa | 2014-04-24 11:30:01 -0400 | [diff] [blame] | 580 | unsigned long dma_pfn_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
FUJITA Tomonori | 6b7b651 | 2008-02-04 22:27:55 -0800 | [diff] [blame] | 582 | struct device_dma_parameters *dma_parms; |
| 583 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | struct list_head dma_pools; /* dma pools (if dma'ble) */ |
| 585 | |
Christoph Hellwig | ff4c25f | 2019-02-03 20:12:02 +0100 | [diff] [blame] | 586 | #ifdef CONFIG_DMA_DECLARE_COHERENT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | struct dma_coherent_mem *dma_mem; /* internal for coherent mem |
| 588 | override */ |
Christoph Hellwig | 2b28129 | 2018-12-25 14:03:32 +0100 | [diff] [blame] | 589 | #endif |
Marek Szyprowski | a254738 | 2013-07-29 14:31:45 +0200 | [diff] [blame] | 590 | #ifdef CONFIG_DMA_CMA |
Marek Szyprowski | c64be2b | 2011-12-29 13:09:51 +0100 | [diff] [blame] | 591 | struct cma *cma_area; /* contiguous memory area for dma |
| 592 | allocations */ |
| 593 | #endif |
Benjamin Herrenschmidt | c6dbaef | 2006-11-11 17:18:39 +1100 | [diff] [blame] | 594 | /* arch specific additions */ |
| 595 | struct dev_archdata archdata; |
Grant Likely | c9e358d | 2011-01-21 09:24:48 -0700 | [diff] [blame] | 596 | |
| 597 | struct device_node *of_node; /* associated device tree node */ |
Rafael J. Wysocki | ce79348 | 2015-03-16 23:49:03 +0100 | [diff] [blame] | 598 | struct fwnode_handle *fwnode; /* firmware device node */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Greg Kroah-Hartman | 159ef31 | 2019-02-26 15:32:29 +0100 | [diff] [blame] | 600 | #ifdef CONFIG_NUMA |
| 601 | int numa_node; /* NUMA node this device is close to */ |
| 602 | #endif |
Matthew Wilcox | 929d2fa | 2008-10-16 15:51:35 -0600 | [diff] [blame] | 603 | dev_t devt; /* dev_t, creates the sysfs "dev" */ |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 604 | u32 id; /* device instance */ |
Matthew Wilcox | 929d2fa | 2008-10-16 15:51:35 -0600 | [diff] [blame] | 605 | |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 606 | spinlock_t devres_lock; |
| 607 | struct list_head devres_head; |
| 608 | |
Kay Sievers | b7a3e81 | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 609 | struct class *class; |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 610 | const struct attribute_group **groups; /* optional groups */ |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 611 | |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 612 | void (*release)(struct device *dev); |
Alex Williamson | 74416e1 | 2012-05-30 14:18:41 -0600 | [diff] [blame] | 613 | struct iommu_group *iommu_group; |
Joerg Roedel | 045a704 | 2020-03-26 16:08:30 +0100 | [diff] [blame] | 614 | struct dev_iommu *iommu; |
Rafael J. Wysocki | 4f3549d | 2013-05-02 22:15:29 +0200 | [diff] [blame] | 615 | |
| 616 | bool offline_disabled:1; |
| 617 | bool offline:1; |
Johan Hovold | 4e75e1d | 2017-06-06 17:59:00 +0200 | [diff] [blame] | 618 | bool of_node_reused:1; |
Saravana Kannan | fc5a251 | 2019-09-04 14:11:23 -0700 | [diff] [blame] | 619 | bool state_synced:1; |
Christoph Hellwig | f3ecc0f | 2018-08-19 14:53:20 +0200 | [diff] [blame] | 620 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | }; |
| 626 | |
Lars-Peter Clausen | a423296 | 2012-07-03 18:49:35 +0200 | [diff] [blame] | 627 | static inline struct device *kobj_to_dev(struct kobject *kobj) |
| 628 | { |
| 629 | return container_of(kobj, struct device, kobj); |
| 630 | } |
| 631 | |
Joerg Roedel | dbba197 | 2018-11-30 12:51:52 +0100 | [diff] [blame] | 632 | /** |
| 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 | */ |
| 637 | static inline bool device_iommu_mapped(struct device *dev) |
| 638 | { |
| 639 | return (dev->iommu_group != NULL); |
| 640 | } |
| 641 | |
Alan Stern | 9a3df1f | 2008-03-19 22:39:13 +0100 | [diff] [blame] | 642 | /* Get the wakeup routines, which depend on struct device */ |
| 643 | #include <linux/pm_wakeup.h> |
| 644 | |
Jean Delvare | bf9ca69 | 2008-07-30 12:29:21 -0700 | [diff] [blame] | 645 | static inline const char *dev_name(const struct device *dev) |
Kay Sievers | 0691663 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 646 | { |
Paul Mundt | a636ee7 | 2010-03-09 06:57:53 +0000 | [diff] [blame] | 647 | /* Use the init name until the kobject becomes available */ |
| 648 | if (dev->init_name) |
| 649 | return dev->init_name; |
| 650 | |
Kay Sievers | 1fa5ae8 | 2009-01-25 15:17:37 +0100 | [diff] [blame] | 651 | return kobject_name(&dev->kobj); |
Kay Sievers | 0691663 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 652 | } |
| 653 | |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 654 | extern __printf(2, 3) |
| 655 | int dev_set_name(struct device *dev, const char *name, ...); |
Stephen Rothwell | 413c239 | 2008-05-30 10:16:40 +1000 | [diff] [blame] | 656 | |
Christoph Hellwig | 8734813 | 2006-12-06 20:32:33 -0800 | [diff] [blame] | 657 | #ifdef CONFIG_NUMA |
| 658 | static inline int dev_to_node(struct device *dev) |
| 659 | { |
| 660 | return dev->numa_node; |
| 661 | } |
| 662 | static inline void set_dev_node(struct device *dev, int node) |
| 663 | { |
| 664 | dev->numa_node = node; |
| 665 | } |
| 666 | #else |
| 667 | static inline int dev_to_node(struct device *dev) |
| 668 | { |
Anshuman Khandual | 98fa15f | 2019-03-05 15:42:58 -0800 | [diff] [blame] | 669 | return NUMA_NO_NODE; |
Christoph Hellwig | 8734813 | 2006-12-06 20:32:33 -0800 | [diff] [blame] | 670 | } |
| 671 | static inline void set_dev_node(struct device *dev, int node) |
| 672 | { |
| 673 | } |
| 674 | #endif |
| 675 | |
Marc Zyngier | f1421db | 2015-07-28 14:46:10 +0100 | [diff] [blame] | 676 | static 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 | |
| 685 | static 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 Delvare | a996d01 | 2014-04-14 12:58:53 +0200 | [diff] [blame] | 692 | static inline void *dev_get_drvdata(const struct device *dev) |
| 693 | { |
| 694 | return dev->driver_data; |
| 695 | } |
| 696 | |
| 697 | static inline void dev_set_drvdata(struct device *dev, void *data) |
| 698 | { |
| 699 | dev->driver_data = data; |
| 700 | } |
| 701 | |
Rafael J. Wysocki | 5c095a0 | 2011-08-25 15:33:50 +0200 | [diff] [blame] | 702 | static inline struct pm_subsys_data *dev_to_psd(struct device *dev) |
| 703 | { |
| 704 | return dev ? dev->power.subsys_data : NULL; |
| 705 | } |
| 706 | |
Ming Lei | f67f129 | 2009-03-01 21:10:49 +0800 | [diff] [blame] | 707 | static inline unsigned int dev_get_uevent_suppress(const struct device *dev) |
| 708 | { |
| 709 | return dev->kobj.uevent_suppress; |
| 710 | } |
| 711 | |
| 712 | static inline void dev_set_uevent_suppress(struct device *dev, int val) |
| 713 | { |
| 714 | dev->kobj.uevent_suppress = val; |
| 715 | } |
| 716 | |
Daniel Ritz | d305ef5 | 2005-09-22 00:47:24 -0700 | [diff] [blame] | 717 | static inline int device_is_registered(struct device *dev) |
| 718 | { |
Greg Kroah-Hartman | 3f62e57 | 2008-03-13 17:07:03 -0400 | [diff] [blame] | 719 | return dev->kobj.state_in_sysfs; |
Daniel Ritz | d305ef5 | 2005-09-22 00:47:24 -0700 | [diff] [blame] | 720 | } |
| 721 | |
Rafael J. Wysocki | 5af84b8 | 2010-01-23 22:23:32 +0100 | [diff] [blame] | 722 | static inline void device_enable_async_suspend(struct device *dev) |
| 723 | { |
Alan Stern | f76b168b | 2011-06-18 20:22:23 +0200 | [diff] [blame] | 724 | if (!dev->power.is_prepared) |
Rafael J. Wysocki | 5af84b8 | 2010-01-23 22:23:32 +0100 | [diff] [blame] | 725 | dev->power.async_suspend = true; |
| 726 | } |
| 727 | |
Rafael J. Wysocki | 5a2eb85 | 2010-01-23 22:25:23 +0100 | [diff] [blame] | 728 | static inline void device_disable_async_suspend(struct device *dev) |
| 729 | { |
Alan Stern | f76b168b | 2011-06-18 20:22:23 +0200 | [diff] [blame] | 730 | if (!dev->power.is_prepared) |
Rafael J. Wysocki | 5a2eb85 | 2010-01-23 22:25:23 +0100 | [diff] [blame] | 731 | dev->power.async_suspend = false; |
| 732 | } |
| 733 | |
| 734 | static inline bool device_async_suspend_enabled(struct device *dev) |
| 735 | { |
| 736 | return !!dev->power.async_suspend; |
| 737 | } |
| 738 | |
Sudeep Holla | 85945c2 | 2019-02-14 18:29:10 +0000 | [diff] [blame] | 739 | static inline bool device_pm_not_required(struct device *dev) |
| 740 | { |
| 741 | return dev->power.no_pm; |
| 742 | } |
| 743 | |
| 744 | static inline void device_set_pm_not_required(struct device *dev) |
| 745 | { |
| 746 | dev->power.no_pm = true; |
| 747 | } |
| 748 | |
Rafael J. Wysocki | feb70af | 2012-08-13 14:00:25 +0200 | [diff] [blame] | 749 | static 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. Wysocki | 08810a4 | 2017-10-25 14:12:29 +0200 | [diff] [blame] | 756 | static inline void dev_pm_set_driver_flags(struct device *dev, u32 flags) |
| 757 | { |
| 758 | dev->power.driver_flags = flags; |
| 759 | } |
| 760 | |
| 761 | static inline bool dev_pm_test_driver_flags(struct device *dev, u32 flags) |
| 762 | { |
| 763 | return !!(dev->power.driver_flags & flags); |
| 764 | } |
| 765 | |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 766 | static inline void device_lock(struct device *dev) |
| 767 | { |
Thomas Gleixner | 3142788 | 2010-01-29 20:39:02 +0000 | [diff] [blame] | 768 | mutex_lock(&dev->mutex); |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 769 | } |
| 770 | |
Oliver Neukum | 7dd9cba | 2016-01-21 15:18:47 +0100 | [diff] [blame] | 771 | static inline int device_lock_interruptible(struct device *dev) |
| 772 | { |
| 773 | return mutex_lock_interruptible(&dev->mutex); |
| 774 | } |
| 775 | |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 776 | static inline int device_trylock(struct device *dev) |
| 777 | { |
Thomas Gleixner | 3142788 | 2010-01-29 20:39:02 +0000 | [diff] [blame] | 778 | return mutex_trylock(&dev->mutex); |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | static inline void device_unlock(struct device *dev) |
| 782 | { |
Thomas Gleixner | 3142788 | 2010-01-29 20:39:02 +0000 | [diff] [blame] | 783 | mutex_unlock(&dev->mutex); |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 784 | } |
| 785 | |
Konrad Rzeszutek Wilk | ac80102 | 2014-12-03 16:40:27 -0500 | [diff] [blame] | 786 | static inline void device_lock_assert(struct device *dev) |
| 787 | { |
| 788 | lockdep_assert_held(&dev->mutex); |
| 789 | } |
| 790 | |
Benjamin Herrenschmidt | e8a51e1 | 2015-02-17 19:03:41 -0600 | [diff] [blame] | 791 | static inline struct device_node *dev_of_node(struct device *dev) |
| 792 | { |
Stephen Boyd | 1b83392 | 2019-04-12 11:31:45 -0700 | [diff] [blame] | 793 | if (!IS_ENABLED(CONFIG_OF) || !dev) |
Benjamin Herrenschmidt | e8a51e1 | 2015-02-17 19:03:41 -0600 | [diff] [blame] | 794 | return NULL; |
| 795 | return dev->of_node; |
| 796 | } |
| 797 | |
Saravana Kannan | ac338ac | 2020-02-21 00:05:09 -0800 | [diff] [blame] | 798 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | /* |
| 810 | * High level routines for use by the bus drivers |
| 811 | */ |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 812 | extern int __must_check device_register(struct device *dev); |
| 813 | extern void device_unregister(struct device *dev); |
| 814 | extern void device_initialize(struct device *dev); |
| 815 | extern int __must_check device_add(struct device *dev); |
| 816 | extern void device_del(struct device *dev); |
| 817 | extern int device_for_each_child(struct device *dev, void *data, |
| 818 | int (*fn)(struct device *dev, void *data)); |
Andy Shevchenko | 3d060ae | 2015-07-27 18:04:00 +0300 | [diff] [blame] | 819 | extern int device_for_each_child_reverse(struct device *dev, void *data, |
| 820 | int (*fn)(struct device *dev, void *data)); |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 821 | extern struct device *device_find_child(struct device *dev, void *data, |
| 822 | int (*match)(struct device *dev, void *data)); |
Heikki Krogerus | dad9bb0 | 2019-05-31 17:15:37 +0300 | [diff] [blame] | 823 | extern struct device *device_find_child_by_name(struct device *parent, |
| 824 | const char *name); |
Johannes Berg | 6937e8f | 2010-08-05 17:38:18 +0200 | [diff] [blame] | 825 | extern int device_rename(struct device *dev, const char *new_name); |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 826 | extern int device_move(struct device *dev, struct device *new_parent, |
| 827 | enum dpm_order dpm_order); |
Christian Brauner | b8f33e5 | 2020-02-27 04:37:15 +0100 | [diff] [blame] | 828 | extern int device_change_owner(struct device *dev, kuid_t kuid, kgid_t kgid); |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 829 | extern const char *device_get_devnode(struct device *dev, |
Greg Kroah-Hartman | 4e4098a | 2013-04-11 11:43:29 -0700 | [diff] [blame] | 830 | umode_t *mode, kuid_t *uid, kgid_t *gid, |
Kay Sievers | 3c2670e | 2013-04-06 09:56:00 -0700 | [diff] [blame] | 831 | const char **tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | |
Rafael J. Wysocki | 4f3549d | 2013-05-02 22:15:29 +0200 | [diff] [blame] | 833 | static inline bool device_supports_offline(struct device *dev) |
| 834 | { |
| 835 | return dev->bus && dev->bus->offline && dev->bus->online; |
| 836 | } |
| 837 | |
| 838 | extern void lock_device_hotplug(void); |
| 839 | extern void unlock_device_hotplug(void); |
Rafael J. Wysocki | 5e33bc4 | 2013-08-28 21:41:01 +0200 | [diff] [blame] | 840 | extern int lock_device_hotplug_sysfs(void); |
Rafael J. Wysocki | 4f3549d | 2013-05-02 22:15:29 +0200 | [diff] [blame] | 841 | extern int device_offline(struct device *dev); |
| 842 | extern int device_online(struct device *dev); |
Rafael J. Wysocki | 97badf8 | 2015-04-03 23:23:37 +0200 | [diff] [blame] | 843 | extern void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode); |
| 844 | extern void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode); |
Johan Hovold | 4e75e1d | 2017-06-06 17:59:00 +0200 | [diff] [blame] | 845 | void device_set_of_node_from_dev(struct device *dev, const struct device *dev2); |
Rafael J. Wysocki | 97badf8 | 2015-04-03 23:23:37 +0200 | [diff] [blame] | 846 | |
Phil Sutter | 9af15c3 | 2017-01-18 14:04:39 +0100 | [diff] [blame] | 847 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | /* |
Mark McLoughlin | 0aa0dc4 | 2008-12-15 12:58:26 +0000 | [diff] [blame] | 855 | * Root device objects for grouping under /sys/devices |
| 856 | */ |
| 857 | extern struct device *__root_device_register(const char *name, |
| 858 | struct module *owner); |
Paul Gortmaker | eb5589a | 2011-05-27 09:02:11 -0400 | [diff] [blame] | 859 | |
Tejun Heo | 33ac125 | 2014-01-10 08:57:31 -0500 | [diff] [blame] | 860 | /* This is a macro to avoid include problems with THIS_MODULE */ |
Paul Gortmaker | eb5589a | 2011-05-27 09:02:11 -0400 | [diff] [blame] | 861 | #define root_device_register(name) \ |
| 862 | __root_device_register(name, THIS_MODULE) |
| 863 | |
Mark McLoughlin | 0aa0dc4 | 2008-12-15 12:58:26 +0000 | [diff] [blame] | 864 | extern void root_device_unregister(struct device *root); |
| 865 | |
Mark Brown | a5b8b1a | 2009-07-17 15:06:08 +0100 | [diff] [blame] | 866 | static inline void *dev_get_platdata(const struct device *dev) |
| 867 | { |
| 868 | return dev->platform_data; |
| 869 | } |
| 870 | |
Mark McLoughlin | 0aa0dc4 | 2008-12-15 12:58:26 +0000 | [diff] [blame] | 871 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | * Manual binding of a device to driver. See drivers/base/bus.c |
| 873 | * for information on use. |
| 874 | */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 875 | extern int __must_check device_bind_driver(struct device *dev); |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 876 | extern void device_release_driver(struct device *dev); |
| 877 | extern int __must_check device_attach(struct device *dev); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 878 | extern int __must_check driver_attach(struct device_driver *drv); |
Dmitry Torokhov | 765230b | 2015-03-30 16:20:04 -0700 | [diff] [blame] | 879 | extern void device_initial_probe(struct device *dev); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 880 | extern int __must_check device_reprobe(struct device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | |
Tomeu Vizoso | 6b9cb42 | 2016-01-07 16:46:12 +0100 | [diff] [blame] | 882 | extern bool device_is_bound(struct device *dev); |
| 883 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 884 | /* |
| 885 | * Easy functions for dynamically creating devices on the fly |
| 886 | */ |
Nicolas Iooss | 8db1486 | 2015-07-17 16:23:42 -0700 | [diff] [blame] | 887 | extern __printf(5, 0) |
| 888 | struct device *device_create_vargs(struct class *cls, struct device *parent, |
| 889 | dev_t devt, void *drvdata, |
| 890 | const char *fmt, va_list vargs); |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 891 | extern __printf(5, 6) |
| 892 | struct device *device_create(struct class *cls, struct device *parent, |
| 893 | dev_t devt, void *drvdata, |
| 894 | const char *fmt, ...); |
Guenter Roeck | 39ef311 | 2013-07-14 16:05:57 -0700 | [diff] [blame] | 895 | extern __printf(6, 7) |
| 896 | struct 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-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 900 | extern void device_destroy(struct class *cls, dev_t devt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | |
Dmitry Torokhov | a7670d4 | 2017-07-19 17:24:31 -0700 | [diff] [blame] | 902 | extern int __must_check device_add_groups(struct device *dev, |
| 903 | const struct attribute_group **groups); |
| 904 | extern void device_remove_groups(struct device *dev, |
| 905 | const struct attribute_group **groups); |
| 906 | |
Dmitry Torokhov | e323b2d | 2017-07-19 17:24:32 -0700 | [diff] [blame] | 907 | static 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 | |
| 915 | static 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 Torokhov | 57b8ff0 | 2017-07-19 17:24:33 -0700 | [diff] [blame] | 923 | extern int __must_check devm_device_add_groups(struct device *dev, |
| 924 | const struct attribute_group **groups); |
| 925 | extern void devm_device_remove_groups(struct device *dev, |
| 926 | const struct attribute_group **groups); |
| 927 | extern int __must_check devm_device_add_group(struct device *dev, |
| 928 | const struct attribute_group *grp); |
| 929 | extern void devm_device_remove_group(struct device *dev, |
| 930 | const struct attribute_group *grp); |
| 931 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | /* |
| 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-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 938 | extern int (*platform_notify)(struct device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 940 | extern int (*platform_notify_remove)(struct device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | |
| 942 | |
Wanlong Gao | 880ffb5 | 2011-05-05 07:55:36 +0800 | [diff] [blame] | 943 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | * get_device - atomically increment the reference count for the device. |
| 945 | * |
| 946 | */ |
Greg Kroah-Hartman | d462943 | 2008-01-24 21:04:46 -0800 | [diff] [blame] | 947 | extern struct device *get_device(struct device *dev); |
| 948 | extern void put_device(struct device *dev); |
Dan Williams | 00289cd | 2019-07-17 18:07:53 -0700 | [diff] [blame] | 949 | extern bool kill_device(struct device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | |
Kay Sievers | 2b2af54 | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 951 | #ifdef CONFIG_DEVTMPFS |
Dominik Brodowski | 5e787db | 2018-10-23 22:10:35 +0200 | [diff] [blame] | 952 | extern int devtmpfs_mount(void); |
Kay Sievers | 2b2af54 | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 953 | #else |
Dominik Brodowski | 5e787db | 2018-10-23 22:10:35 +0200 | [diff] [blame] | 954 | static inline int devtmpfs_mount(void) { return 0; } |
Kay Sievers | 2b2af54 | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 955 | #endif |
| 956 | |
Rytchkov Alexey | 116f232b | 2006-03-22 00:58:53 +0100 | [diff] [blame] | 957 | /* drivers/base/power/shutdown.c */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | extern void device_shutdown(void); |
| 959 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | /* debugging and troubleshooting/diagnostic helpers. */ |
Jean Delvare | bf9ca69 | 2008-07-30 12:29:21 -0700 | [diff] [blame] | 961 | extern const char *dev_driver_string(const struct device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 963 | /* Device links interface. */ |
| 964 | struct device_link *device_link_add(struct device *consumer, |
| 965 | struct device *supplier, u32 flags); |
| 966 | void device_link_del(struct device_link *link); |
pascal paillet | d884221 | 2018-07-05 14:25:56 +0000 | [diff] [blame] | 967 | void device_link_remove(void *consumer, struct device *supplier); |
Saravana Kannan | fc5a251 | 2019-09-04 14:11:23 -0700 | [diff] [blame] | 968 | void device_links_supplier_sync_state_pause(void); |
| 969 | void device_links_supplier_sync_state_resume(void); |
Joe Perches | 99bcf21 | 2010-06-27 01:02:34 +0000 | [diff] [blame] | 970 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | /* 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 Kleen | e52eec1 | 2010-09-08 16:54:17 +0200 | [diff] [blame] | 976 | |
| 977 | #ifdef CONFIG_SYSFS_DEPRECATED |
| 978 | extern long sysfs_deprecated; |
| 979 | #else |
| 980 | #define sysfs_deprecated 0 |
| 981 | #endif |
| 982 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | #endif /* _DEVICE_H_ */ |