device.h 32.5 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5
/*
 * device.h - generic, centralized driver model
 *
 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
6 7
 * Copyright (c) 2004-2009 Greg Kroah-Hartman <gregkh@suse.de>
 * Copyright (c) 2008-2009 Novell Inc.
L
Linus Torvalds 已提交
8
 *
9
 * See Documentation/driver-api/driver-model/ for more information.
L
Linus Torvalds 已提交
10 11 12 13 14
 */

#ifndef _DEVICE_H_
#define _DEVICE_H_

15
#include <linux/dev_printk.h>
L
Linus Torvalds 已提交
16 17
#include <linux/ioport.h>
#include <linux/kobject.h>
18
#include <linux/klist.h>
L
Linus Torvalds 已提交
19
#include <linux/list.h>
20
#include <linux/lockdep.h>
21
#include <linux/compiler.h>
L
Linus Torvalds 已提交
22
#include <linux/types.h>
23
#include <linux/mutex.h>
L
Linus Torvalds 已提交
24
#include <linux/pm.h>
A
Arun Sharma 已提交
25
#include <linux/atomic.h>
26
#include <linux/uidgid.h>
27
#include <linux/gfp.h>
28
#include <linux/overflow.h>
29
#include <linux/device/bus.h>
30
#include <linux/device/class.h>
31
#include <linux/device/driver.h>
32
#include <asm/device.h>
L
Linus Torvalds 已提交
33 34

struct device;
35
struct device_private;
L
Linus Torvalds 已提交
36
struct device_driver;
37
struct driver_private;
38
struct module;
L
Linus Torvalds 已提交
39
struct class;
40
struct subsys_private;
41
struct device_node;
42
struct fwnode_handle;
43
struct iommu_ops;
44
struct iommu_group;
R
Robin Murphy 已提交
45
struct iommu_fwspec;
46
struct dev_pin_info;
47
struct iommu_param;
48

49 50
/**
 * struct subsys_interface - interfaces to device functions
51 52 53 54 55
 * @name:       name of the device function
 * @subsys:     subsytem of the devices to attach to
 * @node:       the list of functions registered at the subsystem
 * @add_dev:    device hookup to device function handler
 * @remove_dev: device hookup to device function handler
56 57 58 59 60 61 62 63 64 65 66
 *
 * Simple interfaces attached to a subsystem. Multiple interfaces can
 * attach to a subsystem and its devices. Unlike drivers, they do not
 * exclusively claim or control devices. Interfaces usually represent
 * a specific functionality of a subsystem/class of devices.
 */
struct subsys_interface {
	const char *name;
	struct bus_type *subsys;
	struct list_head node;
	int (*add_dev)(struct device *dev, struct subsys_interface *sif);
67
	void (*remove_dev)(struct device *dev, struct subsys_interface *sif);
68 69 70 71 72 73 74
};

int subsys_interface_register(struct subsys_interface *sif);
void subsys_interface_unregister(struct subsys_interface *sif);

int subsys_system_register(struct bus_type *subsys,
			   const struct attribute_group **groups);
75 76
int subsys_virtual_register(struct bus_type *subsys,
			    const struct attribute_group **groups);
77

78 79 80 81 82 83 84 85 86
/*
 * The type of device, "struct device" is embedded in. A class
 * or bus can contain devices of different types
 * like "partitions" and "disks", "mouse" and "event".
 * This identifies the device type and carries type-specific
 * information, equivalent to the kobj_type of a kobject.
 * If "name" is specified, the uevent will contain it in
 * the DEVTYPE variable.
 */
87
struct device_type {
88
	const char *name;
89
	const struct attribute_group **groups;
90
	int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
91
	char *(*devnode)(struct device *dev, umode_t *mode,
92
			 kuid_t *uid, kgid_t *gid);
93
	void (*release)(struct device *dev);
94

95
	const struct dev_pm_ops *pm;
96 97
};

98 99 100 101 102 103 104 105 106
/* interface for exporting device attributes */
struct device_attribute {
	struct attribute	attr;
	ssize_t (*show)(struct device *dev, struct device_attribute *attr,
			char *buf);
	ssize_t (*store)(struct device *dev, struct device_attribute *attr,
			 const char *buf, size_t count);
};

107 108 109 110 111 112 113 114 115 116 117 118 119
struct dev_ext_attribute {
	struct device_attribute attr;
	void *var;
};

ssize_t device_show_ulong(struct device *dev, struct device_attribute *attr,
			  char *buf);
ssize_t device_store_ulong(struct device *dev, struct device_attribute *attr,
			   const char *buf, size_t count);
ssize_t device_show_int(struct device *dev, struct device_attribute *attr,
			char *buf);
ssize_t device_store_int(struct device *dev, struct device_attribute *attr,
			 const char *buf, size_t count);
120 121 122 123
ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
			char *buf);
ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
			 const char *buf, size_t count);
124

125
#define DEVICE_ATTR(_name, _mode, _show, _store) \
126
	struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
127 128 129
#define DEVICE_ATTR_PREALLOC(_name, _mode, _show, _store) \
	struct device_attribute dev_attr_##_name = \
		__ATTR_PREALLOC(_name, _mode, _show, _store)
130 131 132 133
#define DEVICE_ATTR_RW(_name) \
	struct device_attribute dev_attr_##_name = __ATTR_RW(_name)
#define DEVICE_ATTR_RO(_name) \
	struct device_attribute dev_attr_##_name = __ATTR_RO(_name)
134 135
#define DEVICE_ATTR_WO(_name) \
	struct device_attribute dev_attr_##_name = __ATTR_WO(_name)
136 137 138 139 140
#define DEVICE_ULONG_ATTR(_name, _mode, _var) \
	struct dev_ext_attribute dev_attr_##_name = \
		{ __ATTR(_name, _mode, device_show_ulong, device_store_ulong), &(_var) }
#define DEVICE_INT_ATTR(_name, _mode, _var) \
	struct dev_ext_attribute dev_attr_##_name = \
141
		{ __ATTR(_name, _mode, device_show_int, device_store_int), &(_var) }
142 143 144
#define DEVICE_BOOL_ATTR(_name, _mode, _var) \
	struct dev_ext_attribute dev_attr_##_name = \
		{ __ATTR(_name, _mode, device_show_bool, device_store_bool), &(_var) }
145 146 147
#define DEVICE_ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store) \
	struct device_attribute dev_attr_##_name =		\
		__ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store)
148

149 150
extern int device_create_file(struct device *device,
			      const struct device_attribute *entry);
151
extern void device_remove_file(struct device *dev,
152
			       const struct device_attribute *attr);
153 154
extern bool device_remove_file_self(struct device *dev,
				    const struct device_attribute *attr);
155
extern int __must_check device_create_bin_file(struct device *dev,
156
					const struct bin_attribute *attr);
157
extern void device_remove_bin_file(struct device *dev,
158
				   const struct bin_attribute *attr);
T
Tejun Heo 已提交
159 160 161 162 163 164

/* device resource management */
typedef void (*dr_release_t)(struct device *dev, void *res);
typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);

#ifdef CONFIG_DEBUG_DEVRES
165
extern void *__devres_alloc_node(dr_release_t release, size_t size, gfp_t gfp,
166
				 int nid, const char *name) __malloc;
T
Tejun Heo 已提交
167
#define devres_alloc(release, size, gfp) \
168 169 170
	__devres_alloc_node(release, size, gfp, NUMA_NO_NODE, #release)
#define devres_alloc_node(release, size, gfp, nid) \
	__devres_alloc_node(release, size, gfp, nid, #release)
T
Tejun Heo 已提交
171
#else
172
extern void *devres_alloc_node(dr_release_t release, size_t size, gfp_t gfp,
173
			       int nid) __malloc;
174 175 176 177
static inline void *devres_alloc(dr_release_t release, size_t size, gfp_t gfp)
{
	return devres_alloc_node(release, size, gfp, NUMA_NO_NODE);
}
T
Tejun Heo 已提交
178
#endif
179

180 181 182 183
extern void devres_for_each_res(struct device *dev, dr_release_t release,
				dr_match_t match, void *match_data,
				void (*fn)(struct device *, void *, void *),
				void *data);
T
Tejun Heo 已提交
184 185
extern void devres_free(void *res);
extern void devres_add(struct device *dev, void *res);
186
extern void *devres_find(struct device *dev, dr_release_t release,
T
Tejun Heo 已提交
187
			 dr_match_t match, void *match_data);
188 189 190 191
extern void *devres_get(struct device *dev, void *new_res,
			dr_match_t match, void *match_data);
extern void *devres_remove(struct device *dev, dr_release_t release,
			   dr_match_t match, void *match_data);
T
Tejun Heo 已提交
192 193
extern int devres_destroy(struct device *dev, dr_release_t release,
			  dr_match_t match, void *match_data);
M
Mark Brown 已提交
194 195
extern int devres_release(struct device *dev, dr_release_t release,
			  dr_match_t match, void *match_data);
T
Tejun Heo 已提交
196 197 198 199 200 201 202 203

/* devres group */
extern void * __must_check devres_open_group(struct device *dev, void *id,
					     gfp_t gfp);
extern void devres_close_group(struct device *dev, void *id);
extern void devres_remove_group(struct device *dev, void *id);
extern int devres_release_group(struct device *dev, void *id);

204
/* managed devm_k.alloc/kfree for device drivers */
205
extern void *devm_kmalloc(struct device *dev, size_t size, gfp_t gfp) __malloc;
206 207
extern __printf(3, 0)
char *devm_kvasprintf(struct device *dev, gfp_t gfp, const char *fmt,
208
		      va_list ap) __malloc;
209
extern __printf(3, 4)
210
char *devm_kasprintf(struct device *dev, gfp_t gfp, const char *fmt, ...) __malloc;
211 212 213 214 215 216 217
static inline void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp)
{
	return devm_kmalloc(dev, size, gfp | __GFP_ZERO);
}
static inline void *devm_kmalloc_array(struct device *dev,
				       size_t n, size_t size, gfp_t flags)
{
218 219 220
	size_t bytes;

	if (unlikely(check_mul_overflow(n, size, &bytes)))
221
		return NULL;
222 223

	return devm_kmalloc(dev, bytes, flags);
224 225 226 227 228 229
}
static inline void *devm_kcalloc(struct device *dev,
				 size_t n, size_t size, gfp_t flags)
{
	return devm_kmalloc_array(dev, n, size, flags | __GFP_ZERO);
}
230
extern void devm_kfree(struct device *dev, const void *p);
231
extern char *devm_kstrdup(struct device *dev, const char *s, gfp_t gfp) __malloc;
232 233
extern const char *devm_kstrdup_const(struct device *dev,
				      const char *s, gfp_t gfp);
234 235
extern void *devm_kmemdup(struct device *dev, const void *src, size_t len,
			  gfp_t gfp);
T
Tejun Heo 已提交
236

237 238 239
extern unsigned long devm_get_free_pages(struct device *dev,
					 gfp_t gfp_mask, unsigned int order);
extern void devm_free_pages(struct device *dev, unsigned long addr);
T
Tejun Heo 已提交
240

241 242
void __iomem *devm_ioremap_resource(struct device *dev,
				    const struct resource *res);
243 244
void __iomem *devm_ioremap_resource_wc(struct device *dev,
				       const struct resource *res);
245

246 247 248 249
void __iomem *devm_of_iomap(struct device *dev,
			    struct device_node *node, int index,
			    resource_size_t *size);

250 251 252
/* allows to add/remove a custom action to devres stack */
int devm_add_action(struct device *dev, void (*action)(void *), void *data);
void devm_remove_action(struct device *dev, void (*action)(void *), void *data);
253
void devm_release_action(struct device *dev, void (*action)(void *), void *data);
254

255 256 257 258 259 260 261 262 263 264 265 266
static inline int devm_add_action_or_reset(struct device *dev,
					   void (*action)(void *), void *data)
{
	int ret;

	ret = devm_add_action(dev, action, data);
	if (ret)
		action(data);

	return ret;
}

M
Madalin Bucur 已提交
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
/**
 * devm_alloc_percpu - Resource-managed alloc_percpu
 * @dev: Device to allocate per-cpu memory for
 * @type: Type to allocate per-cpu memory for
 *
 * Managed alloc_percpu. Per-cpu memory allocated with this function is
 * automatically freed on driver detach.
 *
 * RETURNS:
 * Pointer to allocated memory on success, NULL on failure.
 */
#define devm_alloc_percpu(dev, type)      \
	((typeof(type) __percpu *)__devm_alloc_percpu((dev), sizeof(type), \
						      __alignof__(type)))

void __percpu *__devm_alloc_percpu(struct device *dev, size_t size,
				   size_t align);
void devm_free_percpu(struct device *dev, void __percpu *pdata);

286 287 288 289 290 291 292 293 294
struct device_dma_parameters {
	/*
	 * a low level driver may set these to teach IOMMU code about
	 * sg limitations.
	 */
	unsigned int max_segment_size;
	unsigned long segment_boundary_mask;
};

295 296
/**
 * struct device_connection - Device Connection Descriptor
297
 * @fwnode: The device node of the connected device
298 299 300
 * @endpoint: The names of the two devices connected together
 * @id: Unique identifier for the connection
 * @list: List head, private, for internal use only
301 302 303 304
 *
 * NOTE: @fwnode is not used together with @endpoint. @fwnode is used when
 * platform firmware defines the connection. When the connection is registered
 * with device_connection_add() @endpoint is used instead.
305 306
 */
struct device_connection {
307
	struct fwnode_handle	*fwnode;
308 309 310 311 312
	const char		*endpoint[2];
	const char		*id;
	struct list_head	list;
};

313 314 315 316 317 318
typedef void *(*devcon_match_fn_t)(struct device_connection *con, int ep,
				   void *data);

void *fwnode_connection_find_match(struct fwnode_handle *fwnode,
				   const char *con_id, void *data,
				   devcon_match_fn_t match);
319
void *device_connection_find_match(struct device *dev, const char *con_id,
320
				   void *data, devcon_match_fn_t match);
321 322 323 324 325 326

struct device *device_connection_find(struct device *dev, const char *con_id);

void device_connection_add(struct device_connection *con);
void device_connection_remove(struct device_connection *con);

327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
/**
 * device_connections_add - Add multiple device connections at once
 * @cons: Zero terminated array of device connection descriptors
 */
static inline void device_connections_add(struct device_connection *cons)
{
	struct device_connection *c;

	for (c = cons; c->endpoint[0]; c++)
		device_connection_add(c);
}

/**
 * device_connections_remove - Remove multiple device connections at once
 * @cons: Zero terminated array of device connection descriptors
 */
static inline void device_connections_remove(struct device_connection *cons)
{
	struct device_connection *c;

	for (c = cons; c->endpoint[0]; c++)
		device_connection_remove(c);
}

351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
/**
 * enum device_link_state - Device link states.
 * @DL_STATE_NONE: The presence of the drivers is not being tracked.
 * @DL_STATE_DORMANT: None of the supplier/consumer drivers is present.
 * @DL_STATE_AVAILABLE: The supplier driver is present, but the consumer is not.
 * @DL_STATE_CONSUMER_PROBE: The consumer is probing (supplier driver present).
 * @DL_STATE_ACTIVE: Both the supplier and consumer drivers are present.
 * @DL_STATE_SUPPLIER_UNBIND: The supplier driver is unbinding.
 */
enum device_link_state {
	DL_STATE_NONE = -1,
	DL_STATE_DORMANT = 0,
	DL_STATE_AVAILABLE,
	DL_STATE_CONSUMER_PROBE,
	DL_STATE_ACTIVE,
	DL_STATE_SUPPLIER_UNBIND,
};

/*
 * Device link flags.
 *
372
 * STATELESS: The core will not remove this link automatically.
373
 * AUTOREMOVE_CONSUMER: Remove the link automatically on consumer driver unbind.
R
Rafael J. Wysocki 已提交
374 375
 * PM_RUNTIME: If set, the runtime PM framework will use this link.
 * RPM_ACTIVE: Run pm_runtime_get_sync() on the supplier during link creation.
376
 * AUTOREMOVE_SUPPLIER: Remove the link automatically on supplier driver unbind.
377
 * AUTOPROBE_CONSUMER: Probe consumer driver automatically after supplier binds.
378
 * MANAGED: The core tracks presence of supplier/consumer drivers (internal).
379
 * SYNC_STATE_ONLY: Link only affects sync_state() behavior.
380
 */
381 382 383 384
#define DL_FLAG_STATELESS		BIT(0)
#define DL_FLAG_AUTOREMOVE_CONSUMER	BIT(1)
#define DL_FLAG_PM_RUNTIME		BIT(2)
#define DL_FLAG_RPM_ACTIVE		BIT(3)
385
#define DL_FLAG_AUTOREMOVE_SUPPLIER	BIT(4)
386
#define DL_FLAG_AUTOPROBE_CONSUMER	BIT(5)
387
#define DL_FLAG_MANAGED			BIT(6)
388
#define DL_FLAG_SYNC_STATE_ONLY		BIT(7)
389 390 391 392 393 394 395 396 397

/**
 * struct device_link - Device link representation.
 * @supplier: The device on the supplier end of the link.
 * @s_node: Hook to the supplier device's list of links to consumers.
 * @consumer: The device on the consumer end of the link.
 * @c_node: Hook to the consumer device's list of links to suppliers.
 * @status: The state of the link (with respect to the presence of drivers).
 * @flags: Link flags.
R
Rafael J. Wysocki 已提交
398
 * @rpm_active: Whether or not the consumer device is runtime-PM-active.
399
 * @kref: Count repeated addition of the same link.
400
 * @rcu_head: An RCU head to use for deferred execution of SRCU callbacks.
401
 * @supplier_preactivated: Supplier has been made active before consumer probe.
402 403 404 405 406 407 408 409
 */
struct device_link {
	struct device *supplier;
	struct list_head s_node;
	struct device *consumer;
	struct list_head c_node;
	enum device_link_state status;
	u32 flags;
410
	refcount_t rpm_active;
411
	struct kref kref;
412 413 414
#ifdef CONFIG_SRCU
	struct rcu_head rcu_head;
#endif
415
	bool supplier_preactivated; /* Owned by consumer probe. */
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
};

/**
 * enum dl_dev_state - Device driver presence tracking information.
 * @DL_DEV_NO_DRIVER: There is no driver attached to the device.
 * @DL_DEV_PROBING: A driver is probing.
 * @DL_DEV_DRIVER_BOUND: The driver has been bound to the device.
 * @DL_DEV_UNBINDING: The driver is unbinding from the device.
 */
enum dl_dev_state {
	DL_DEV_NO_DRIVER = 0,
	DL_DEV_PROBING,
	DL_DEV_DRIVER_BOUND,
	DL_DEV_UNBINDING,
};

/**
 * struct dev_links_info - Device data related to device links.
 * @suppliers: List of links to supplier devices.
 * @consumers: List of links to consumer devices.
436
 * @needs_suppliers: Hook to global list of devices waiting for suppliers.
437
 * @defer_sync: Hook to global list of devices that have deferred sync_state.
438 439
 * @need_for_probe: If needs_suppliers is on a list, this indicates if the
 *		    suppliers are needed for probe or not.
440 441 442 443 444
 * @status: Driver status information.
 */
struct dev_links_info {
	struct list_head suppliers;
	struct list_head consumers;
445
	struct list_head needs_suppliers;
446
	struct list_head defer_sync;
447
	bool need_for_probe;
448 449 450
	enum dl_dev_state status;
};

451 452 453 454 455 456 457 458 459 460 461 462 463 464
/**
 * struct device - The basic device structure
 * @parent:	The device's "parent" device, the device to which it is attached.
 * 		In most cases, a parent device is some sort of bus or host
 * 		controller. If parent is NULL, the device, is a top-level device,
 * 		which is not usually what you want.
 * @p:		Holds the private data of the driver core portions of the device.
 * 		See the comment of the struct device_private for detail.
 * @kobj:	A top-level, abstract class from which other classes are derived.
 * @init_name:	Initial name of the device.
 * @type:	The type of device.
 * 		This identifies the device type and carries type-specific
 * 		information.
 * @mutex:	Mutex to synchronize calls to its driver.
465 466
 * @lockdep_mutex: An optional debug lock that a subsystem can use as a
 * 		peer lock to gain localized lockdep coverage of the device_lock.
467 468 469 470 471 472 473 474 475 476
 * @bus:	Type of bus device is on.
 * @driver:	Which driver has allocated this
 * @platform_data: Platform data specific to the device.
 * 		Example: For devices on custom boards, as typical of embedded
 * 		and SOC based hardware, Linux often uses platform_data to point
 * 		to board-specific structures describing devices and how they
 * 		are wired.  That can include what ports are available, chip
 * 		variants, which GPIO pins act in what additional roles, and so
 * 		on.  This shrinks the "Board Support Packages" (BSPs) and
 * 		minimizes board-specific #ifdefs in drivers.
477
 * @driver_data: Private pointer for driver specific info.
478
 * @links:	Links to suppliers and consumers of this device.
479
 * @power:	For device power management.
480
 *		See Documentation/driver-api/pm/devices.rst for details.
481
 * @pm_domain:	Provide callbacks that are executed during system suspend,
482 483
 * 		hibernation, system resume and during runtime PM transitions
 * 		along with subsystem-level and driver-level callbacks.
484
 * @pins:	For device pin management.
485
 *		See Documentation/driver-api/pinctl.rst for details.
486
 * @msi_list:	Hosts MSI descriptors
487
 * @msi_domain: The generic MSI domain this device is using.
488
 * @numa_node:	NUMA node this device is close to.
489
 * @dma_ops:    DMA mapping operations for this device.
490 491 492 493
 * @dma_mask:	Dma mask (if dma'ble device).
 * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all
 * 		hardware supports 64-bit addresses for consistent allocations
 * 		such descriptors.
494 495
 * @bus_dma_limit: Limit of an upstream bridge or bus which imposes a smaller
 *		DMA limit than the device itself supports.
496
 * @dma_pfn_offset: offset of DMA memory range relatively of RAM
497 498 499 500
 * @dma_parms:	A low level driver may set these to teach IOMMU code about
 * 		segment limitations.
 * @dma_pools:	Dma pools (if dma'ble device).
 * @dma_mem:	Internal for coherent mem override.
501
 * @cma_area:	Contiguous memory area for dma allocations
502 503
 * @archdata:	For arch-specific additions.
 * @of_node:	Associated device tree node.
504
 * @fwnode:	Associated device node supplied by platform firmware.
505
 * @devt:	For creating the sysfs "dev".
506
 * @id:		device instance
507 508 509 510 511 512 513 514
 * @devres_lock: Spinlock to protect the resource of the device.
 * @devres_head: The resources list of the device.
 * @knode_class: The node used to add the device to the class list.
 * @class:	The class of the device.
 * @groups:	Optional attribute groups.
 * @release:	Callback to free the device after all references have
 * 		gone away. This should be set by the allocator of the
 * 		device (i.e. the bus driver that discovered the device).
515
 * @iommu_group: IOMMU group the device belongs to.
R
Robin Murphy 已提交
516
 * @iommu_fwspec: IOMMU-specific properties supplied by firmware.
517
 * @iommu_param: Per device generic IOMMU runtime data
518
 *
519 520
 * @offline_disabled: If set, the device is permanently online.
 * @offline:	Set after successful invocation of bus type's .offline().
521 522
 * @of_node_reused: Set if the device-tree node is shared with an ancestor
 *              device.
523 524 525
 * @state_synced: The hardware state of this device has been synced to match
 *		  the software state of this device by calling the driver/bus
 *		  sync_state() callback.
526 527
 * @dma_coherent: this particular device is dma coherent, even if the
 *		architecture supports non-coherent devices.
528 529 530 531 532 533 534 535 536
 *
 * At the lowest level, every device in a Linux system is represented by an
 * instance of struct device. The device structure contains the information
 * that the device model core needs to model the system. Most subsystems,
 * however, track additional information about the devices they host. As a
 * result, it is rare for devices to be represented by bare device structures;
 * instead, that structure, like kobject structures, is usually embedded within
 * a higher-level representation of the device.
 */
L
Linus Torvalds 已提交
537
struct device {
538
	struct kobject kobj;
539
	struct device		*parent;
L
Linus Torvalds 已提交
540

541 542
	struct device_private	*p;

543
	const char		*init_name; /* initial name of the device */
544
	const struct device_type *type;
L
Linus Torvalds 已提交
545

546
	struct bus_type	*bus;		/* type of bus device is on */
L
Linus Torvalds 已提交
547 548
	struct device_driver *driver;	/* which driver has allocated this
					   device */
549 550
	void		*platform_data;	/* Platform specific data, device
					   core doesn't touch it */
551
	void		*driver_data;	/* Driver data, set and get with
552
					   dev_set_drvdata/dev_get_drvdata */
553 554 555
#ifdef CONFIG_PROVE_LOCKING
	struct mutex		lockdep_mutex;
#endif
556 557 558 559
	struct mutex		mutex;	/* mutex to synchronize calls to
					 * its driver.
					 */

560
	struct dev_links_info	links;
L
Linus Torvalds 已提交
561
	struct dev_pm_info	power;
562
	struct dev_pm_domain	*pm_domain;
L
Linus Torvalds 已提交
563

564 565 566
#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
	struct irq_domain	*msi_domain;
#endif
567 568 569
#ifdef CONFIG_PINCTRL
	struct dev_pin_info	*pins;
#endif
570 571 572
#ifdef CONFIG_GENERIC_MSI_IRQ
	struct list_head	msi_list;
#endif
573

574
	const struct dma_map_ops *dma_ops;
L
Linus Torvalds 已提交
575 576 577 578 579 580
	u64		*dma_mask;	/* dma mask (if dma'able device) */
	u64		coherent_dma_mask;/* Like dma_mask, but for
					     alloc_coherent mappings as
					     not all hardware supports
					     64 bit addresses for consistent
					     allocations such descriptors. */
581
	u64		bus_dma_limit;	/* upstream dma constraint */
582
	unsigned long	dma_pfn_offset;
L
Linus Torvalds 已提交
583

584 585
	struct device_dma_parameters *dma_parms;

L
Linus Torvalds 已提交
586 587
	struct list_head	dma_pools;	/* dma pools (if dma'ble) */

588
#ifdef CONFIG_DMA_DECLARE_COHERENT
L
Linus Torvalds 已提交
589 590
	struct dma_coherent_mem	*dma_mem; /* internal for coherent mem
					     override */
591
#endif
592
#ifdef CONFIG_DMA_CMA
593 594 595
	struct cma *cma_area;		/* contiguous memory area for dma
					   allocations */
#endif
596 597
	/* arch specific additions */
	struct dev_archdata	archdata;
598 599

	struct device_node	*of_node; /* associated device tree node */
600
	struct fwnode_handle	*fwnode; /* firmware device node */
L
Linus Torvalds 已提交
601

602 603 604
#ifdef CONFIG_NUMA
	int		numa_node;	/* NUMA node this device is close to */
#endif
605
	dev_t			devt;	/* dev_t, creates the sysfs "dev" */
606
	u32			id;	/* device instance */
607

T
Tejun Heo 已提交
608 609 610
	spinlock_t		devres_lock;
	struct list_head	devres_head;

611
	struct class		*class;
612
	const struct attribute_group **groups;	/* optional groups */
613

614
	void	(*release)(struct device *dev);
615
	struct iommu_group	*iommu_group;
R
Robin Murphy 已提交
616
	struct iommu_fwspec	*iommu_fwspec;
617
	struct iommu_param	*iommu_param;
618 619 620

	bool			offline_disabled:1;
	bool			offline:1;
621
	bool			of_node_reused:1;
622
	bool			state_synced:1;
623 624 625 626 627
#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
    defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
    defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL)
	bool			dma_coherent:1;
#endif
L
Linus Torvalds 已提交
628 629
};

630 631 632 633 634
static inline struct device *kobj_to_dev(struct kobject *kobj)
{
	return container_of(kobj, struct device, kobj);
}

635 636 637 638 639 640 641 642 643 644
/**
 * device_iommu_mapped - Returns true when the device DMA is translated
 *			 by an IOMMU
 * @dev: Device to perform the check on
 */
static inline bool device_iommu_mapped(struct device *dev)
{
	return (dev->iommu_group != NULL);
}

645 646 647
/* Get the wakeup routines, which depend on struct device */
#include <linux/pm_wakeup.h>

648
static inline const char *dev_name(const struct device *dev)
649
{
650 651 652 653
	/* Use the init name until the kobject becomes available */
	if (dev->init_name)
		return dev->init_name;

654
	return kobject_name(&dev->kobj);
655 656
}

657 658
extern __printf(2, 3)
int dev_set_name(struct device *dev, const char *name, ...);
659

660 661 662 663 664 665 666 667 668 669 670 671
#ifdef CONFIG_NUMA
static inline int dev_to_node(struct device *dev)
{
	return dev->numa_node;
}
static inline void set_dev_node(struct device *dev, int node)
{
	dev->numa_node = node;
}
#else
static inline int dev_to_node(struct device *dev)
{
672
	return NUMA_NO_NODE;
673 674 675 676 677 678
}
static inline void set_dev_node(struct device *dev, int node)
{
}
#endif

679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
static inline struct irq_domain *dev_get_msi_domain(const struct device *dev)
{
#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
	return dev->msi_domain;
#else
	return NULL;
#endif
}

static inline void dev_set_msi_domain(struct device *dev, struct irq_domain *d)
{
#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
	dev->msi_domain = d;
#endif
}

695 696 697 698 699 700 701 702 703 704
static inline void *dev_get_drvdata(const struct device *dev)
{
	return dev->driver_data;
}

static inline void dev_set_drvdata(struct device *dev, void *data)
{
	dev->driver_data = data;
}

705 706 707 708 709
static inline struct pm_subsys_data *dev_to_psd(struct device *dev)
{
	return dev ? dev->power.subsys_data : NULL;
}

710 711 712 713 714 715 716 717 718 719
static inline unsigned int dev_get_uevent_suppress(const struct device *dev)
{
	return dev->kobj.uevent_suppress;
}

static inline void dev_set_uevent_suppress(struct device *dev, int val)
{
	dev->kobj.uevent_suppress = val;
}

720 721
static inline int device_is_registered(struct device *dev)
{
722
	return dev->kobj.state_in_sysfs;
723 724
}

725 726
static inline void device_enable_async_suspend(struct device *dev)
{
727
	if (!dev->power.is_prepared)
728 729 730
		dev->power.async_suspend = true;
}

731 732
static inline void device_disable_async_suspend(struct device *dev)
{
733
	if (!dev->power.is_prepared)
734 735 736 737 738 739 740 741
		dev->power.async_suspend = false;
}

static inline bool device_async_suspend_enabled(struct device *dev)
{
	return !!dev->power.async_suspend;
}

742 743 744 745 746 747 748 749 750 751
static inline bool device_pm_not_required(struct device *dev)
{
	return dev->power.no_pm;
}

static inline void device_set_pm_not_required(struct device *dev)
{
	dev->power.no_pm = true;
}

752 753 754 755 756 757 758
static inline void dev_pm_syscore_device(struct device *dev, bool val)
{
#ifdef CONFIG_PM_SLEEP
	dev->power.syscore = val;
#endif
}

759 760 761 762 763 764 765 766 767 768
static inline void dev_pm_set_driver_flags(struct device *dev, u32 flags)
{
	dev->power.driver_flags = flags;
}

static inline bool dev_pm_test_driver_flags(struct device *dev, u32 flags)
{
	return !!(dev->power.driver_flags & flags);
}

769 770
static inline void device_lock(struct device *dev)
{
771
	mutex_lock(&dev->mutex);
772 773
}

774 775 776 777 778
static inline int device_lock_interruptible(struct device *dev)
{
	return mutex_lock_interruptible(&dev->mutex);
}

779 780
static inline int device_trylock(struct device *dev)
{
781
	return mutex_trylock(&dev->mutex);
782 783 784 785
}

static inline void device_unlock(struct device *dev)
{
786
	mutex_unlock(&dev->mutex);
787 788
}

789 790 791 792 793
static inline void device_lock_assert(struct device *dev)
{
	lockdep_assert_held(&dev->mutex);
}

794 795
static inline struct device_node *dev_of_node(struct device *dev)
{
796
	if (!IS_ENABLED(CONFIG_OF) || !dev)
797 798 799 800
		return NULL;
	return dev->of_node;
}

L
Linus Torvalds 已提交
801 802 803
/*
 * High level routines for use by the bus drivers
 */
804 805 806 807 808 809 810
extern int __must_check device_register(struct device *dev);
extern void device_unregister(struct device *dev);
extern void device_initialize(struct device *dev);
extern int __must_check device_add(struct device *dev);
extern void device_del(struct device *dev);
extern int device_for_each_child(struct device *dev, void *data,
		     int (*fn)(struct device *dev, void *data));
811 812
extern int device_for_each_child_reverse(struct device *dev, void *data,
		     int (*fn)(struct device *dev, void *data));
813 814
extern struct device *device_find_child(struct device *dev, void *data,
				int (*match)(struct device *dev, void *data));
815 816
extern struct device *device_find_child_by_name(struct device *parent,
						const char *name);
817
extern int device_rename(struct device *dev, const char *new_name);
818 819
extern int device_move(struct device *dev, struct device *new_parent,
		       enum dpm_order dpm_order);
820
extern const char *device_get_devnode(struct device *dev,
821
				      umode_t *mode, kuid_t *uid, kgid_t *gid,
822
				      const char **tmp);
L
Linus Torvalds 已提交
823

824 825 826 827 828 829 830
static inline bool device_supports_offline(struct device *dev)
{
	return dev->bus && dev->bus->offline && dev->bus->online;
}

extern void lock_device_hotplug(void);
extern void unlock_device_hotplug(void);
831
extern int lock_device_hotplug_sysfs(void);
832 833
extern int device_offline(struct device *dev);
extern int device_online(struct device *dev);
834 835
extern void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
extern void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
836
void device_set_of_node_from_dev(struct device *dev, const struct device *dev2);
837

838 839 840 841 842 843 844
static inline int dev_num_vf(struct device *dev)
{
	if (dev->bus && dev->bus->num_vf)
		return dev->bus->num_vf(dev);
	return 0;
}

845 846 847 848 849
/*
 * Root device objects for grouping under /sys/devices
 */
extern struct device *__root_device_register(const char *name,
					     struct module *owner);
850

851
/* This is a macro to avoid include problems with THIS_MODULE */
852 853 854
#define root_device_register(name) \
	__root_device_register(name, THIS_MODULE)

855 856
extern void root_device_unregister(struct device *root);

857 858 859 860 861
static inline void *dev_get_platdata(const struct device *dev)
{
	return dev->platform_data;
}

L
Linus Torvalds 已提交
862 863 864 865
/*
 * Manual binding of a device to driver. See drivers/base/bus.c
 * for information on use.
 */
A
Andrew Morton 已提交
866
extern int __must_check device_bind_driver(struct device *dev);
867 868
extern void device_release_driver(struct device *dev);
extern int  __must_check device_attach(struct device *dev);
A
Andrew Morton 已提交
869
extern int __must_check driver_attach(struct device_driver *drv);
870
extern void device_initial_probe(struct device *dev);
A
Andrew Morton 已提交
871
extern int __must_check device_reprobe(struct device *dev);
L
Linus Torvalds 已提交
872

873 874
extern bool device_is_bound(struct device *dev);

875 876 877
/*
 * Easy functions for dynamically creating devices on the fly
 */
878 879 880 881
extern __printf(5, 0)
struct device *device_create_vargs(struct class *cls, struct device *parent,
				   dev_t devt, void *drvdata,
				   const char *fmt, va_list vargs);
882 883 884 885
extern __printf(5, 6)
struct device *device_create(struct class *cls, struct device *parent,
			     dev_t devt, void *drvdata,
			     const char *fmt, ...);
886 887 888 889 890
extern __printf(6, 7)
struct device *device_create_with_groups(struct class *cls,
			     struct device *parent, dev_t devt, void *drvdata,
			     const struct attribute_group **groups,
			     const char *fmt, ...);
891
extern void device_destroy(struct class *cls, dev_t devt);
L
Linus Torvalds 已提交
892

893 894 895 896 897
extern int __must_check device_add_groups(struct device *dev,
					const struct attribute_group **groups);
extern void device_remove_groups(struct device *dev,
				 const struct attribute_group **groups);

898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
static inline int __must_check device_add_group(struct device *dev,
					const struct attribute_group *grp)
{
	const struct attribute_group *groups[] = { grp, NULL };

	return device_add_groups(dev, groups);
}

static inline void device_remove_group(struct device *dev,
				       const struct attribute_group *grp)
{
	const struct attribute_group *groups[] = { grp, NULL };

	return device_remove_groups(dev, groups);
}

914 915 916 917 918 919 920 921 922
extern int __must_check devm_device_add_groups(struct device *dev,
					const struct attribute_group **groups);
extern void devm_device_remove_groups(struct device *dev,
				      const struct attribute_group **groups);
extern int __must_check devm_device_add_group(struct device *dev,
					const struct attribute_group *grp);
extern void devm_device_remove_group(struct device *dev,
				     const struct attribute_group *grp);

L
Linus Torvalds 已提交
923 924 925 926 927 928
/*
 * Platform "fixup" functions - allow the platform to have their say
 * about devices and actions that the general device layer doesn't
 * know about.
 */
/* Notify platform of device discovery */
929
extern int (*platform_notify)(struct device *dev);
L
Linus Torvalds 已提交
930

931
extern int (*platform_notify_remove)(struct device *dev);
L
Linus Torvalds 已提交
932 933


934
/*
L
Linus Torvalds 已提交
935 936 937
 * get_device - atomically increment the reference count for the device.
 *
 */
938 939
extern struct device *get_device(struct device *dev);
extern void put_device(struct device *dev);
940
extern bool kill_device(struct device *dev);
L
Linus Torvalds 已提交
941

942
#ifdef CONFIG_DEVTMPFS
943
extern int devtmpfs_mount(void);
944
#else
945
static inline int devtmpfs_mount(void) { return 0; }
946 947
#endif

948
/* drivers/base/power/shutdown.c */
L
Linus Torvalds 已提交
949 950 951
extern void device_shutdown(void);

/* debugging and troubleshooting/diagnostic helpers. */
952
extern const char *dev_driver_string(const struct device *dev);
953

954 955 956 957
/* Device links interface. */
struct device_link *device_link_add(struct device *consumer,
				    struct device *supplier, u32 flags);
void device_link_del(struct device_link *link);
958
void device_link_remove(void *consumer, struct device *supplier);
959 960
void device_links_supplier_sync_state_pause(void);
void device_links_supplier_sync_state_resume(void);
961

L
Linus Torvalds 已提交
962 963 964 965 966
/* Create alias, so I can be autoloaded. */
#define MODULE_ALIAS_CHARDEV(major,minor) \
	MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
	MODULE_ALIAS("char-major-" __stringify(major) "-*")
967 968 969 970 971 972 973

#ifdef CONFIG_SYSFS_DEPRECATED
extern long sysfs_deprecated;
#else
#define sysfs_deprecated 0
#endif

L
Linus Torvalds 已提交
974
#endif /* _DEVICE_H_ */