1 // SPDX-License-Identifier: GPL-2.0
3 * device.h - generic, centralized driver model
7 * Copyright (c) 2008-2009 Novell Inc.
9 * See Documentation/driver-api/driver-model/ for more information.
15 #include <linux/dev_printk.h>
16 #include <linux/energy_model.h>
17 #include <linux/ioport.h>
18 #include <linux/kobject.h>
19 #include <linux/klist.h>
20 #include <linux/list.h>
21 #include <linux/lockdep.h>
22 #include <linux/compiler.h>
23 #include <linux/types.h>
24 #include <linux/mutex.h>
26 #include <linux/atomic.h>
27 #include <linux/uidgid.h>
28 #include <linux/gfp.h>
29 #include <linux/overflow.h>
30 #include <linux/device/bus.h>
31 #include <linux/device/class.h>
32 #include <linux/device/driver.h>
33 #include <asm/device.h>
36 struct device_private;
38 struct driver_private;
41 struct subsys_private;
48 struct msi_device_data;
51 * struct subsys_interface - interfaces to device functions
52 * @name: name of the device function
53 * @subsys: subsystem of the devices to attach to
54 * @node: the list of functions registered at the subsystem
55 * @add_dev: device hookup to device function handler
56 * @remove_dev: device hookup to device function handler
58 * Simple interfaces attached to a subsystem. Multiple interfaces can
59 * attach to a subsystem and its devices. Unlike drivers, they do not
60 * exclusively claim or control devices. Interfaces usually represent
61 * a specific functionality of a subsystem/class of devices.
63 struct subsys_interface {
65 struct bus_type *subsys;
66 struct list_head node;
67 int (*add_dev)(struct device *dev, struct subsys_interface *sif);
68 void (*remove_dev)(struct device *dev, struct subsys_interface *sif);
71 int subsys_interface_register(struct subsys_interface *sif);
72 void subsys_interface_unregister(struct subsys_interface *sif);
74 int subsys_system_register(struct bus_type *subsys,
75 const struct attribute_group **groups);
76 int subsys_virtual_register(struct bus_type *subsys,
77 const struct attribute_group **groups);
80 * The type of device, "struct device" is embedded in. A class
81 * or bus can contain devices of different types
82 * like "partitions" and "disks", "mouse" and "event".
83 * This identifies the device type and carries type-specific
84 * information, equivalent to the kobj_type of a kobject.
85 * If "name" is specified, the uevent will contain it in
86 * the DEVTYPE variable.
90 const struct attribute_group **groups;
91 int (*uevent)(const struct device *dev, struct kobj_uevent_env *env);
92 char *(*devnode)(const struct device *dev, umode_t *mode,
93 kuid_t *uid, kgid_t *gid);
94 void (*release)(struct device *dev);
96 const struct dev_pm_ops *pm;
99 /* interface for exporting device attributes */
100 struct device_attribute {
101 struct attribute attr;
102 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
104 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
105 const char *buf, size_t count);
108 struct dev_ext_attribute {
109 struct device_attribute attr;
113 ssize_t device_show_ulong(struct device *dev, struct device_attribute *attr,
115 ssize_t device_store_ulong(struct device *dev, struct device_attribute *attr,
116 const char *buf, size_t count);
117 ssize_t device_show_int(struct device *dev, struct device_attribute *attr,
119 ssize_t device_store_int(struct device *dev, struct device_attribute *attr,
120 const char *buf, size_t count);
121 ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
123 ssize_t device_store_bool(struct device *dev, struct device_attribute *attr,
124 const char *buf, size_t count);
126 #define DEVICE_ATTR(_name, _mode, _show, _store) \
127 struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
128 #define DEVICE_ATTR_PREALLOC(_name, _mode, _show, _store) \
129 struct device_attribute dev_attr_##_name = \
130 __ATTR_PREALLOC(_name, _mode, _show, _store)
131 #define DEVICE_ATTR_RW(_name) \
132 struct device_attribute dev_attr_##_name = __ATTR_RW(_name)
133 #define DEVICE_ATTR_ADMIN_RW(_name) \
134 struct device_attribute dev_attr_##_name = __ATTR_RW_MODE(_name, 0600)
135 #define DEVICE_ATTR_RO(_name) \
136 struct device_attribute dev_attr_##_name = __ATTR_RO(_name)
137 #define DEVICE_ATTR_ADMIN_RO(_name) \
138 struct device_attribute dev_attr_##_name = __ATTR_RO_MODE(_name, 0400)
139 #define DEVICE_ATTR_WO(_name) \
140 struct device_attribute dev_attr_##_name = __ATTR_WO(_name)
141 #define DEVICE_ULONG_ATTR(_name, _mode, _var) \
142 struct dev_ext_attribute dev_attr_##_name = \
143 { __ATTR(_name, _mode, device_show_ulong, device_store_ulong), &(_var) }
144 #define DEVICE_INT_ATTR(_name, _mode, _var) \
145 struct dev_ext_attribute dev_attr_##_name = \
146 { __ATTR(_name, _mode, device_show_int, device_store_int), &(_var) }
147 #define DEVICE_BOOL_ATTR(_name, _mode, _var) \
148 struct dev_ext_attribute dev_attr_##_name = \
149 { __ATTR(_name, _mode, device_show_bool, device_store_bool), &(_var) }
150 #define DEVICE_ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store) \
151 struct device_attribute dev_attr_##_name = \
152 __ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store)
154 int device_create_file(struct device *device,
155 const struct device_attribute *entry);
156 void device_remove_file(struct device *dev,
157 const struct device_attribute *attr);
158 bool device_remove_file_self(struct device *dev,
159 const struct device_attribute *attr);
160 int __must_check device_create_bin_file(struct device *dev,
161 const struct bin_attribute *attr);
162 void device_remove_bin_file(struct device *dev,
163 const struct bin_attribute *attr);
165 /* device resource management */
166 typedef void (*dr_release_t)(struct device *dev, void *res);
167 typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);
169 void *__devres_alloc_node(dr_release_t release, size_t size, gfp_t gfp,
170 int nid, const char *name) __malloc;
171 #define devres_alloc(release, size, gfp) \
172 __devres_alloc_node(release, size, gfp, NUMA_NO_NODE, #release)
173 #define devres_alloc_node(release, size, gfp, nid) \
174 __devres_alloc_node(release, size, gfp, nid, #release)
176 void devres_for_each_res(struct device *dev, dr_release_t release,
177 dr_match_t match, void *match_data,
178 void (*fn)(struct device *, void *, void *),
180 void devres_free(void *res);
181 void devres_add(struct device *dev, void *res);
182 void *devres_find(struct device *dev, dr_release_t release,
183 dr_match_t match, void *match_data);
184 void *devres_get(struct device *dev, void *new_res,
185 dr_match_t match, void *match_data);
186 void *devres_remove(struct device *dev, dr_release_t release,
187 dr_match_t match, void *match_data);
188 int devres_destroy(struct device *dev, dr_release_t release,
189 dr_match_t match, void *match_data);
190 int devres_release(struct device *dev, dr_release_t release,
191 dr_match_t match, void *match_data);
194 void * __must_check devres_open_group(struct device *dev, void *id, gfp_t gfp);
195 void devres_close_group(struct device *dev, void *id);
196 void devres_remove_group(struct device *dev, void *id);
197 int devres_release_group(struct device *dev, void *id);
199 /* managed devm_k.alloc/kfree for device drivers */
200 void *devm_kmalloc(struct device *dev, size_t size, gfp_t gfp) __alloc_size(2);
201 void *devm_krealloc(struct device *dev, void *ptr, size_t size,
202 gfp_t gfp) __must_check __realloc_size(3);
203 __printf(3, 0) char *devm_kvasprintf(struct device *dev, gfp_t gfp,
204 const char *fmt, va_list ap) __malloc;
205 __printf(3, 4) char *devm_kasprintf(struct device *dev, gfp_t gfp,
206 const char *fmt, ...) __malloc;
207 static inline void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp)
209 return devm_kmalloc(dev, size, gfp | __GFP_ZERO);
211 static inline void *devm_kmalloc_array(struct device *dev,
212 size_t n, size_t size, gfp_t flags)
216 if (unlikely(check_mul_overflow(n, size, &bytes)))
219 return devm_kmalloc(dev, bytes, flags);
221 static inline void *devm_kcalloc(struct device *dev,
222 size_t n, size_t size, gfp_t flags)
224 return devm_kmalloc_array(dev, n, size, flags | __GFP_ZERO);
226 void devm_kfree(struct device *dev, const void *p);
227 char *devm_kstrdup(struct device *dev, const char *s, gfp_t gfp) __malloc;
228 const char *devm_kstrdup_const(struct device *dev, const char *s, gfp_t gfp);
229 void *devm_kmemdup(struct device *dev, const void *src, size_t len, gfp_t gfp)
232 unsigned long devm_get_free_pages(struct device *dev,
233 gfp_t gfp_mask, unsigned int order);
234 void devm_free_pages(struct device *dev, unsigned long addr);
236 void __iomem *devm_ioremap_resource(struct device *dev,
237 const struct resource *res);
238 void __iomem *devm_ioremap_resource_wc(struct device *dev,
239 const struct resource *res);
241 void __iomem *devm_of_iomap(struct device *dev,
242 struct device_node *node, int index,
243 resource_size_t *size);
245 /* allows to add/remove a custom action to devres stack */
246 void devm_remove_action(struct device *dev, void (*action)(void *), void *data);
247 void devm_release_action(struct device *dev, void (*action)(void *), void *data);
249 int __devm_add_action(struct device *dev, void (*action)(void *), void *data, const char *name);
250 #define devm_add_action(release, action, data) \
251 __devm_add_action(release, action, data, #action)
253 static inline int __devm_add_action_or_reset(struct device *dev, void (*action)(void *),
254 void *data, const char *name)
258 ret = __devm_add_action(dev, action, data, name);
264 #define devm_add_action_or_reset(release, action, data) \
265 __devm_add_action_or_reset(release, action, data, #action)
268 * devm_alloc_percpu - Resource-managed alloc_percpu
269 * @dev: Device to allocate per-cpu memory for
270 * @type: Type to allocate per-cpu memory for
272 * Managed alloc_percpu. Per-cpu memory allocated with this function is
273 * automatically freed on driver detach.
276 * Pointer to allocated memory on success, NULL on failure.
278 #define devm_alloc_percpu(dev, type) \
279 ((typeof(type) __percpu *)__devm_alloc_percpu((dev), sizeof(type), \
282 void __percpu *__devm_alloc_percpu(struct device *dev, size_t size,
284 void devm_free_percpu(struct device *dev, void __percpu *pdata);
286 struct device_dma_parameters {
288 * a low level driver may set these to teach IOMMU code about
291 unsigned int max_segment_size;
292 unsigned int min_align_mask;
293 unsigned long segment_boundary_mask;
297 * enum device_link_state - Device link states.
298 * @DL_STATE_NONE: The presence of the drivers is not being tracked.
299 * @DL_STATE_DORMANT: None of the supplier/consumer drivers is present.
300 * @DL_STATE_AVAILABLE: The supplier driver is present, but the consumer is not.
301 * @DL_STATE_CONSUMER_PROBE: The consumer is probing (supplier driver present).
302 * @DL_STATE_ACTIVE: Both the supplier and consumer drivers are present.
303 * @DL_STATE_SUPPLIER_UNBIND: The supplier driver is unbinding.
305 enum device_link_state {
307 DL_STATE_DORMANT = 0,
309 DL_STATE_CONSUMER_PROBE,
311 DL_STATE_SUPPLIER_UNBIND,
317 * STATELESS: The core will not remove this link automatically.
318 * AUTOREMOVE_CONSUMER: Remove the link automatically on consumer driver unbind.
319 * PM_RUNTIME: If set, the runtime PM framework will use this link.
320 * RPM_ACTIVE: Run pm_runtime_get_sync() on the supplier during link creation.
321 * AUTOREMOVE_SUPPLIER: Remove the link automatically on supplier driver unbind.
322 * AUTOPROBE_CONSUMER: Probe consumer driver automatically after supplier binds.
323 * MANAGED: The core tracks presence of supplier/consumer drivers (internal).
324 * SYNC_STATE_ONLY: Link only affects sync_state() behavior.
325 * INFERRED: Inferred from data (eg: firmware) and not from driver actions.
327 #define DL_FLAG_STATELESS BIT(0)
328 #define DL_FLAG_AUTOREMOVE_CONSUMER BIT(1)
329 #define DL_FLAG_PM_RUNTIME BIT(2)
330 #define DL_FLAG_RPM_ACTIVE BIT(3)
331 #define DL_FLAG_AUTOREMOVE_SUPPLIER BIT(4)
332 #define DL_FLAG_AUTOPROBE_CONSUMER BIT(5)
333 #define DL_FLAG_MANAGED BIT(6)
334 #define DL_FLAG_SYNC_STATE_ONLY BIT(7)
335 #define DL_FLAG_INFERRED BIT(8)
336 #define DL_FLAG_CYCLE BIT(9)
339 * enum dl_dev_state - Device driver presence tracking information.
340 * @DL_DEV_NO_DRIVER: There is no driver attached to the device.
341 * @DL_DEV_PROBING: A driver is probing.
342 * @DL_DEV_DRIVER_BOUND: The driver has been bound to the device.
343 * @DL_DEV_UNBINDING: The driver is unbinding from the device.
346 DL_DEV_NO_DRIVER = 0,
353 * enum device_removable - Whether the device is removable. The criteria for a
354 * device to be classified as removable is determined by its subsystem or bus.
355 * @DEVICE_REMOVABLE_NOT_SUPPORTED: This attribute is not supported for this
357 * @DEVICE_REMOVABLE_UNKNOWN: Device location is Unknown.
358 * @DEVICE_FIXED: Device is not removable by the user.
359 * @DEVICE_REMOVABLE: Device is removable by the user.
361 enum device_removable {
362 DEVICE_REMOVABLE_NOT_SUPPORTED = 0, /* must be 0 */
363 DEVICE_REMOVABLE_UNKNOWN,
369 * struct dev_links_info - Device data related to device links.
370 * @suppliers: List of links to supplier devices.
371 * @consumers: List of links to consumer devices.
372 * @defer_sync: Hook to global list of devices that have deferred sync_state.
373 * @status: Driver status information.
375 struct dev_links_info {
376 struct list_head suppliers;
377 struct list_head consumers;
378 struct list_head defer_sync;
379 enum dl_dev_state status;
383 * struct dev_msi_info - Device data related to MSI
384 * @domain: The MSI interrupt domain associated to the device
385 * @data: Pointer to MSI device data
387 struct dev_msi_info {
388 #ifdef CONFIG_GENERIC_MSI_IRQ
389 struct irq_domain *domain;
390 struct msi_device_data *data;
395 * enum device_physical_location_panel - Describes which panel surface of the
396 * system's housing the device connection point resides on.
397 * @DEVICE_PANEL_TOP: Device connection point is on the top panel.
398 * @DEVICE_PANEL_BOTTOM: Device connection point is on the bottom panel.
399 * @DEVICE_PANEL_LEFT: Device connection point is on the left panel.
400 * @DEVICE_PANEL_RIGHT: Device connection point is on the right panel.
401 * @DEVICE_PANEL_FRONT: Device connection point is on the front panel.
402 * @DEVICE_PANEL_BACK: Device connection point is on the back panel.
403 * @DEVICE_PANEL_UNKNOWN: The panel with device connection point is unknown.
405 enum device_physical_location_panel {
412 DEVICE_PANEL_UNKNOWN,
416 * enum device_physical_location_vertical_position - Describes vertical
417 * position of the device connection point on the panel surface.
418 * @DEVICE_VERT_POS_UPPER: Device connection point is at upper part of panel.
419 * @DEVICE_VERT_POS_CENTER: Device connection point is at center part of panel.
420 * @DEVICE_VERT_POS_LOWER: Device connection point is at lower part of panel.
422 enum device_physical_location_vertical_position {
423 DEVICE_VERT_POS_UPPER,
424 DEVICE_VERT_POS_CENTER,
425 DEVICE_VERT_POS_LOWER,
429 * enum device_physical_location_horizontal_position - Describes horizontal
430 * position of the device connection point on the panel surface.
431 * @DEVICE_HORI_POS_LEFT: Device connection point is at left part of panel.
432 * @DEVICE_HORI_POS_CENTER: Device connection point is at center part of panel.
433 * @DEVICE_HORI_POS_RIGHT: Device connection point is at right part of panel.
435 enum device_physical_location_horizontal_position {
436 DEVICE_HORI_POS_LEFT,
437 DEVICE_HORI_POS_CENTER,
438 DEVICE_HORI_POS_RIGHT,
442 * struct device_physical_location - Device data related to physical location
443 * of the device connection point.
444 * @panel: Panel surface of the system's housing that the device connection
446 * @vertical_position: Vertical position of the device connection point within
448 * @horizontal_position: Horizontal position of the device connection point
450 * @dock: Set if the device connection point resides in a docking station or
452 * @lid: Set if this device connection point resides on the lid of laptop
455 struct device_physical_location {
456 enum device_physical_location_panel panel;
457 enum device_physical_location_vertical_position vertical_position;
458 enum device_physical_location_horizontal_position horizontal_position;
464 * struct device - The basic device structure
465 * @parent: The device's "parent" device, the device to which it is attached.
466 * In most cases, a parent device is some sort of bus or host
467 * controller. If parent is NULL, the device, is a top-level device,
468 * which is not usually what you want.
469 * @p: Holds the private data of the driver core portions of the device.
470 * See the comment of the struct device_private for detail.
471 * @kobj: A top-level, abstract class from which other classes are derived.
472 * @init_name: Initial name of the device.
473 * @type: The type of device.
474 * This identifies the device type and carries type-specific
476 * @mutex: Mutex to synchronize calls to its driver.
477 * @bus: Type of bus device is on.
478 * @driver: Which driver has allocated this
479 * @platform_data: Platform data specific to the device.
480 * Example: For devices on custom boards, as typical of embedded
481 * and SOC based hardware, Linux often uses platform_data to point
482 * to board-specific structures describing devices and how they
483 * are wired. That can include what ports are available, chip
484 * variants, which GPIO pins act in what additional roles, and so
485 * on. This shrinks the "Board Support Packages" (BSPs) and
486 * minimizes board-specific #ifdefs in drivers.
487 * @driver_data: Private pointer for driver specific info.
488 * @links: Links to suppliers and consumers of this device.
489 * @power: For device power management.
490 * See Documentation/driver-api/pm/devices.rst for details.
491 * @pm_domain: Provide callbacks that are executed during system suspend,
492 * hibernation, system resume and during runtime PM transitions
493 * along with subsystem-level and driver-level callbacks.
494 * @em_pd: device's energy model performance domain
495 * @pins: For device pin management.
496 * See Documentation/driver-api/pin-control.rst for details.
497 * @msi: MSI related data
498 * @numa_node: NUMA node this device is close to.
499 * @dma_ops: DMA mapping operations for this device.
500 * @dma_mask: Dma mask (if dma'ble device).
501 * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all
502 * hardware supports 64-bit addresses for consistent allocations
504 * @bus_dma_limit: Limit of an upstream bridge or bus which imposes a smaller
505 * DMA limit than the device itself supports.
506 * @dma_range_map: map for DMA memory ranges relative to that of RAM
507 * @dma_parms: A low level driver may set these to teach IOMMU code about
508 * segment limitations.
509 * @dma_pools: Dma pools (if dma'ble device).
510 * @dma_mem: Internal for coherent mem override.
511 * @cma_area: Contiguous memory area for dma allocations
512 * @dma_io_tlb_mem: Pointer to the swiotlb pool used. Not for driver use.
513 * @archdata: For arch-specific additions.
514 * @of_node: Associated device tree node.
515 * @fwnode: Associated device node supplied by platform firmware.
516 * @devt: For creating the sysfs "dev".
517 * @id: device instance
518 * @devres_lock: Spinlock to protect the resource of the device.
519 * @devres_head: The resources list of the device.
520 * @knode_class: The node used to add the device to the class list.
521 * @class: The class of the device.
522 * @groups: Optional attribute groups.
523 * @release: Callback to free the device after all references have
524 * gone away. This should be set by the allocator of the
525 * device (i.e. the bus driver that discovered the device).
526 * @iommu_group: IOMMU group the device belongs to.
527 * @iommu: Per device generic IOMMU runtime data
528 * @physical_location: Describes physical location of the device connection
529 * point in the system housing.
530 * @removable: Whether the device can be removed from the system. This
531 * should be set by the subsystem / bus driver that discovered
534 * @offline_disabled: If set, the device is permanently online.
535 * @offline: Set after successful invocation of bus type's .offline().
536 * @of_node_reused: Set if the device-tree node is shared with an ancestor
538 * @state_synced: The hardware state of this device has been synced to match
539 * the software state of this device by calling the driver/bus
540 * sync_state() callback.
541 * @can_match: The device has matched with a driver at least once or it is in
542 * a bus (like AMBA) which can't check for matching drivers until
543 * other devices probe successfully.
544 * @dma_coherent: this particular device is dma coherent, even if the
545 * architecture supports non-coherent devices.
546 * @dma_ops_bypass: If set to %true then the dma_ops are bypassed for the
547 * streaming DMA operations (->map_* / ->unmap_* / ->sync_*),
548 * and optionall (if the coherent mask is large enough) also
549 * for dma allocations. This flag is managed by the dma ops
550 * instance from ->dma_supported.
552 * At the lowest level, every device in a Linux system is represented by an
553 * instance of struct device. The device structure contains the information
554 * that the device model core needs to model the system. Most subsystems,
555 * however, track additional information about the devices they host. As a
556 * result, it is rare for devices to be represented by bare device structures;
557 * instead, that structure, like kobject structures, is usually embedded within
558 * a higher-level representation of the device.
562 struct device *parent;
564 struct device_private *p;
566 const char *init_name; /* initial name of the device */
567 const struct device_type *type;
569 const struct bus_type *bus; /* type of bus device is on */
570 struct device_driver *driver; /* which driver has allocated this
572 void *platform_data; /* Platform specific data, device
573 core doesn't touch it */
574 void *driver_data; /* Driver data, set and get with
575 dev_set_drvdata/dev_get_drvdata */
576 struct mutex mutex; /* mutex to synchronize calls to
580 struct dev_links_info links;
581 struct dev_pm_info power;
582 struct dev_pm_domain *pm_domain;
584 #ifdef CONFIG_ENERGY_MODEL
585 struct em_perf_domain *em_pd;
588 #ifdef CONFIG_PINCTRL
589 struct dev_pin_info *pins;
591 struct dev_msi_info msi;
592 #ifdef CONFIG_DMA_OPS
593 const struct dma_map_ops *dma_ops;
595 u64 *dma_mask; /* dma mask (if dma'able device) */
596 u64 coherent_dma_mask;/* Like dma_mask, but for
597 alloc_coherent mappings as
598 not all hardware supports
599 64 bit addresses for consistent
600 allocations such descriptors. */
601 u64 bus_dma_limit; /* upstream dma constraint */
602 const struct bus_dma_region *dma_range_map;
604 struct device_dma_parameters *dma_parms;
606 struct list_head dma_pools; /* dma pools (if dma'ble) */
608 #ifdef CONFIG_DMA_DECLARE_COHERENT
609 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
612 #ifdef CONFIG_DMA_CMA
613 struct cma *cma_area; /* contiguous memory area for dma
616 #ifdef CONFIG_SWIOTLB
617 struct io_tlb_mem *dma_io_tlb_mem;
619 /* arch specific additions */
620 struct dev_archdata archdata;
622 struct device_node *of_node; /* associated device tree node */
623 struct fwnode_handle *fwnode; /* firmware device node */
626 int numa_node; /* NUMA node this device is close to */
628 dev_t devt; /* dev_t, creates the sysfs "dev" */
629 u32 id; /* device instance */
631 spinlock_t devres_lock;
632 struct list_head devres_head;
634 const struct class *class;
635 const struct attribute_group **groups; /* optional groups */
637 void (*release)(struct device *dev);
638 struct iommu_group *iommu_group;
639 struct dev_iommu *iommu;
641 struct device_physical_location *physical_location;
643 enum device_removable removable;
645 bool offline_disabled:1;
647 bool of_node_reused:1;
650 #if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
651 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
652 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL)
655 #ifdef CONFIG_DMA_OPS_BYPASS
656 bool dma_ops_bypass : 1;
661 * struct device_link - Device link representation.
662 * @supplier: The device on the supplier end of the link.
663 * @s_node: Hook to the supplier device's list of links to consumers.
664 * @consumer: The device on the consumer end of the link.
665 * @c_node: Hook to the consumer device's list of links to suppliers.
666 * @link_dev: device used to expose link details in sysfs
667 * @status: The state of the link (with respect to the presence of drivers).
668 * @flags: Link flags.
669 * @rpm_active: Whether or not the consumer device is runtime-PM-active.
670 * @kref: Count repeated addition of the same link.
671 * @rm_work: Work structure used for removing the link.
672 * @supplier_preactivated: Supplier has been made active before consumer probe.
675 struct device *supplier;
676 struct list_head s_node;
677 struct device *consumer;
678 struct list_head c_node;
679 struct device link_dev;
680 enum device_link_state status;
682 refcount_t rpm_active;
684 struct work_struct rm_work;
685 bool supplier_preactivated; /* Owned by consumer probe. */
688 #define kobj_to_dev(__kobj) container_of_const(__kobj, struct device, kobj)
691 * device_iommu_mapped - Returns true when the device DMA is translated
693 * @dev: Device to perform the check on
695 static inline bool device_iommu_mapped(struct device *dev)
697 return (dev->iommu_group != NULL);
700 /* Get the wakeup routines, which depend on struct device */
701 #include <linux/pm_wakeup.h>
703 static inline const char *dev_name(const struct device *dev)
705 /* Use the init name until the kobject becomes available */
707 return dev->init_name;
709 return kobject_name(&dev->kobj);
713 * dev_bus_name - Return a device's bus/class name, if at all possible
714 * @dev: struct device to get the bus/class name of
716 * Will return the name of the bus/class the device is attached to. If it is
717 * not attached to a bus/class, an empty string will be returned.
719 static inline const char *dev_bus_name(const struct device *dev)
721 return dev->bus ? dev->bus->name : (dev->class ? dev->class->name : "");
724 __printf(2, 3) int dev_set_name(struct device *dev, const char *name, ...);
727 static inline int dev_to_node(struct device *dev)
729 return dev->numa_node;
731 static inline void set_dev_node(struct device *dev, int node)
733 dev->numa_node = node;
736 static inline int dev_to_node(struct device *dev)
740 static inline void set_dev_node(struct device *dev, int node)
745 static inline struct irq_domain *dev_get_msi_domain(const struct device *dev)
747 #ifdef CONFIG_GENERIC_MSI_IRQ
748 return dev->msi.domain;
754 static inline void dev_set_msi_domain(struct device *dev, struct irq_domain *d)
756 #ifdef CONFIG_GENERIC_MSI_IRQ
761 static inline void *dev_get_drvdata(const struct device *dev)
763 return dev->driver_data;
766 static inline void dev_set_drvdata(struct device *dev, void *data)
768 dev->driver_data = data;
771 static inline struct pm_subsys_data *dev_to_psd(struct device *dev)
773 return dev ? dev->power.subsys_data : NULL;
776 static inline unsigned int dev_get_uevent_suppress(const struct device *dev)
778 return dev->kobj.uevent_suppress;
781 static inline void dev_set_uevent_suppress(struct device *dev, int val)
783 dev->kobj.uevent_suppress = val;
786 static inline int device_is_registered(struct device *dev)
788 return dev->kobj.state_in_sysfs;
791 static inline void device_enable_async_suspend(struct device *dev)
793 if (!dev->power.is_prepared)
794 dev->power.async_suspend = true;
797 static inline void device_disable_async_suspend(struct device *dev)
799 if (!dev->power.is_prepared)
800 dev->power.async_suspend = false;
803 static inline bool device_async_suspend_enabled(struct device *dev)
805 return !!dev->power.async_suspend;
808 static inline bool device_pm_not_required(struct device *dev)
810 return dev->power.no_pm;
813 static inline void device_set_pm_not_required(struct device *dev)
815 dev->power.no_pm = true;
818 static inline void dev_pm_syscore_device(struct device *dev, bool val)
820 #ifdef CONFIG_PM_SLEEP
821 dev->power.syscore = val;
825 static inline void dev_pm_set_driver_flags(struct device *dev, u32 flags)
827 dev->power.driver_flags = flags;
830 static inline bool dev_pm_test_driver_flags(struct device *dev, u32 flags)
832 return !!(dev->power.driver_flags & flags);
835 static inline void device_lock(struct device *dev)
837 mutex_lock(&dev->mutex);
840 static inline int device_lock_interruptible(struct device *dev)
842 return mutex_lock_interruptible(&dev->mutex);
845 static inline int device_trylock(struct device *dev)
847 return mutex_trylock(&dev->mutex);
850 static inline void device_unlock(struct device *dev)
852 mutex_unlock(&dev->mutex);
855 static inline void device_lock_assert(struct device *dev)
857 lockdep_assert_held(&dev->mutex);
860 static inline struct device_node *dev_of_node(struct device *dev)
862 if (!IS_ENABLED(CONFIG_OF) || !dev)
867 static inline bool dev_has_sync_state(struct device *dev)
871 if (dev->driver && dev->driver->sync_state)
873 if (dev->bus && dev->bus->sync_state)
878 static inline void dev_set_removable(struct device *dev,
879 enum device_removable removable)
881 dev->removable = removable;
884 static inline bool dev_is_removable(struct device *dev)
886 return dev->removable == DEVICE_REMOVABLE;
889 static inline bool dev_removable_is_valid(struct device *dev)
891 return dev->removable != DEVICE_REMOVABLE_NOT_SUPPORTED;
895 * High level routines for use by the bus drivers
897 int __must_check device_register(struct device *dev);
898 void device_unregister(struct device *dev);
899 void device_initialize(struct device *dev);
900 int __must_check device_add(struct device *dev);
901 void device_del(struct device *dev);
902 int device_for_each_child(struct device *dev, void *data,
903 int (*fn)(struct device *dev, void *data));
904 int device_for_each_child_reverse(struct device *dev, void *data,
905 int (*fn)(struct device *dev, void *data));
906 struct device *device_find_child(struct device *dev, void *data,
907 int (*match)(struct device *dev, void *data));
908 struct device *device_find_child_by_name(struct device *parent,
910 struct device *device_find_any_child(struct device *parent);
912 int device_rename(struct device *dev, const char *new_name);
913 int device_move(struct device *dev, struct device *new_parent,
914 enum dpm_order dpm_order);
915 int device_change_owner(struct device *dev, kuid_t kuid, kgid_t kgid);
916 int device_is_dependent(struct device *dev, void *target);
918 static inline bool device_supports_offline(struct device *dev)
920 return dev->bus && dev->bus->offline && dev->bus->online;
923 #define __device_lock_set_class(dev, name, key) \
925 struct device *__d2 __maybe_unused = dev; \
926 lock_set_class(&__d2->mutex.dep_map, name, key, 0, _THIS_IP_); \
930 * device_lock_set_class - Specify a temporary lock class while a device
931 * is attached to a driver
932 * @dev: device to modify
933 * @key: lock class key data
935 * This must be called with the device_lock() already held, for example
936 * from driver ->probe(). Take care to only override the default
937 * lockdep_no_validate class.
939 #ifdef CONFIG_LOCKDEP
940 #define device_lock_set_class(dev, key) \
942 struct device *__d = dev; \
943 dev_WARN_ONCE(__d, !lockdep_match_class(&__d->mutex, \
944 &__lockdep_no_validate__), \
945 "overriding existing custom lock class\n"); \
946 __device_lock_set_class(__d, #key, key); \
949 #define device_lock_set_class(dev, key) __device_lock_set_class(dev, #key, key)
953 * device_lock_reset_class - Return a device to the default lockdep novalidate state
954 * @dev: device to modify
956 * This must be called with the device_lock() already held, for example
957 * from driver ->remove().
959 #define device_lock_reset_class(dev) \
961 struct device *__d __maybe_unused = dev; \
962 lock_set_novalidate_class(&__d->mutex.dep_map, "&dev->mutex", \
966 void lock_device_hotplug(void);
967 void unlock_device_hotplug(void);
968 int lock_device_hotplug_sysfs(void);
969 int device_offline(struct device *dev);
970 int device_online(struct device *dev);
971 void set_primary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
972 void set_secondary_fwnode(struct device *dev, struct fwnode_handle *fwnode);
973 void device_set_of_node_from_dev(struct device *dev, const struct device *dev2);
974 void device_set_node(struct device *dev, struct fwnode_handle *fwnode);
976 static inline int dev_num_vf(struct device *dev)
978 if (dev->bus && dev->bus->num_vf)
979 return dev->bus->num_vf(dev);
984 * Root device objects for grouping under /sys/devices
986 struct device *__root_device_register(const char *name, struct module *owner);
988 /* This is a macro to avoid include problems with THIS_MODULE */
989 #define root_device_register(name) \
990 __root_device_register(name, THIS_MODULE)
992 void root_device_unregister(struct device *root);
994 static inline void *dev_get_platdata(const struct device *dev)
996 return dev->platform_data;
1000 * Manual binding of a device to driver. See drivers/base/bus.c
1001 * for information on use.
1003 int __must_check device_driver_attach(struct device_driver *drv,
1004 struct device *dev);
1005 int __must_check device_bind_driver(struct device *dev);
1006 void device_release_driver(struct device *dev);
1007 int __must_check device_attach(struct device *dev);
1008 int __must_check driver_attach(struct device_driver *drv);
1009 void device_initial_probe(struct device *dev);
1010 int __must_check device_reprobe(struct device *dev);
1012 bool device_is_bound(struct device *dev);
1015 * Easy functions for dynamically creating devices on the fly
1017 __printf(5, 6) struct device *
1018 device_create(const struct class *cls, struct device *parent, dev_t devt,
1019 void *drvdata, const char *fmt, ...);
1020 __printf(6, 7) struct device *
1021 device_create_with_groups(const struct class *cls, struct device *parent, dev_t devt,
1022 void *drvdata, const struct attribute_group **groups,
1023 const char *fmt, ...);
1024 void device_destroy(const struct class *cls, dev_t devt);
1026 int __must_check device_add_groups(struct device *dev,
1027 const struct attribute_group **groups);
1028 void device_remove_groups(struct device *dev,
1029 const struct attribute_group **groups);
1031 static inline int __must_check device_add_group(struct device *dev,
1032 const struct attribute_group *grp)
1034 const struct attribute_group *groups[] = { grp, NULL };
1036 return device_add_groups(dev, groups);
1039 static inline void device_remove_group(struct device *dev,
1040 const struct attribute_group *grp)
1042 const struct attribute_group *groups[] = { grp, NULL };
1044 return device_remove_groups(dev, groups);
1047 int __must_check devm_device_add_groups(struct device *dev,
1048 const struct attribute_group **groups);
1049 int __must_check devm_device_add_group(struct device *dev,
1050 const struct attribute_group *grp);
1053 * Platform "fixup" functions - allow the platform to have their say
1054 * about devices and actions that the general device layer doesn't
1057 /* Notify platform of device discovery */
1058 extern int (*platform_notify)(struct device *dev);
1060 extern int (*platform_notify_remove)(struct device *dev);
1064 * get_device - atomically increment the reference count for the device.
1067 struct device *get_device(struct device *dev);
1068 void put_device(struct device *dev);
1069 bool kill_device(struct device *dev);
1071 #ifdef CONFIG_DEVTMPFS
1072 int devtmpfs_mount(void);
1074 static inline int devtmpfs_mount(void) { return 0; }
1077 /* drivers/base/power/shutdown.c */
1078 void device_shutdown(void);
1080 /* debugging and troubleshooting/diagnostic helpers. */
1081 const char *dev_driver_string(const struct device *dev);
1083 /* Device links interface. */
1084 struct device_link *device_link_add(struct device *consumer,
1085 struct device *supplier, u32 flags);
1086 void device_link_del(struct device_link *link);
1087 void device_link_remove(void *consumer, struct device *supplier);
1088 void device_links_supplier_sync_state_pause(void);
1089 void device_links_supplier_sync_state_resume(void);
1091 __printf(3, 4) int dev_err_probe(const struct device *dev, int err, const char *fmt, ...);
1093 /* Create alias, so I can be autoloaded. */
1094 #define MODULE_ALIAS_CHARDEV(major,minor) \
1095 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
1096 #define MODULE_ALIAS_CHARDEV_MAJOR(major) \
1097 MODULE_ALIAS("char-major-" __stringify(major) "-*")
1099 #endif /* _DEVICE_H_ */