Merge tag 'asoc-fix-v6.3' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[linux-block.git] / drivers / base / base.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
5367601b
GKH
2/*
3 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
4 * Copyright (c) 2004-2009 Greg Kroah-Hartman <gregkh@suse.de>
5 * Copyright (c) 2008-2012 Novell Inc.
6 * Copyright (c) 2012-2019 Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7 * Copyright (c) 2012-2019 Linux Foundation
8 *
9 * Core driver model functions and structures that should not be
10 * shared outside of the drivers/base/ directory.
11 *
12 */
ba33162a 13#include <linux/notifier.h>
a1bdc7aa 14
c6f7e72a 15/**
6b6e39a6 16 * struct subsys_private - structure to hold the private to the driver core portions of the bus_type/class structure.
c6f7e72a 17 *
6b6e39a6 18 * @subsys - the struct kset that defines this subsystem
ca22e56d
KS
19 * @devices_kset - the subsystem's 'devices' directory
20 * @interfaces - list of subsystem interfaces associated
21 * @mutex - protect the devices, and interfaces lists.
6b6e39a6
KS
22 *
23 * @drivers_kset - the list of drivers associated
c6f7e72a
GKH
24 * @klist_devices - the klist to iterate over the @devices_kset
25 * @klist_drivers - the klist to iterate over the @drivers_kset
26 * @bus_notifier - the bus notifier list for anything that cares about things
6b6e39a6 27 * on this bus.
c6f7e72a 28 * @bus - pointer back to the struct bus_type that this structure is associated
6b6e39a6
KS
29 * with.
30 *
6b6e39a6
KS
31 * @glue_dirs - "glue" directory to put in-between the parent device to
32 * avoid namespace conflicts
6b6e39a6
KS
33 * @class - pointer back to the struct class that this structure is associated
34 * with.
c6f7e72a
GKH
35 *
36 * This structure is the one that is the actual kobject allowing struct
6b6e39a6
KS
37 * bus_type/class to be statically allocated safely. Nothing outside of the
38 * driver core should ever touch these fields.
c6f7e72a 39 */
6b6e39a6 40struct subsys_private {
c6f7e72a 41 struct kset subsys;
c6f7e72a 42 struct kset *devices_kset;
ca22e56d
KS
43 struct list_head interfaces;
44 struct mutex mutex;
6b6e39a6
KS
45
46 struct kset *drivers_kset;
c6f7e72a
GKH
47 struct klist klist_devices;
48 struct klist klist_drivers;
49 struct blocking_notifier_head bus_notifier;
50 unsigned int drivers_autoprobe:1;
51 struct bus_type *bus;
6b6e39a6 52
6b6e39a6 53 struct kset glue_dirs;
6b6e39a6 54 struct class *class;
c6f7e72a 55};
6b6e39a6 56#define to_subsys_private(obj) container_of(obj, struct subsys_private, subsys.kobj)
c6f7e72a 57
e5dd1278
GKH
58struct driver_private {
59 struct kobject kobj;
60 struct klist klist_devices;
61 struct klist_node knode_bus;
62 struct module_kobject *mkobj;
63 struct device_driver *driver;
64};
65#define to_driver(obj) container_of(obj, struct driver_private, kobj)
a1bdc7aa 66
fb069a5d
GKH
67/**
68 * struct device_private - structure to hold the private to the driver core portions of the device structure.
69 *
f791b8c8
GKH
70 * @klist_children - klist containing all children of this device
71 * @knode_parent - node in sibling list
8940b4f3 72 * @knode_driver - node in driver list
ae1b4171 73 * @knode_bus - node in bus list
570d0200 74 * @knode_class - node in class list
ef8a3fd6
GKH
75 * @deferred_probe - entry in deferred_probe_list which is used to retry the
76 * binding of drivers which were unable to get all the resources needed by
77 * the device; typically because it depends on another driver getting
78 * probed first.
ef0ff683 79 * @async_driver - pointer to device driver awaiting probe via async_probe
82b2c3c5 80 * @device - pointer back to the struct device that this structure is
fb069a5d 81 * associated with.
3451a495
AD
82 * @dead - This device is currently either in the process of or has been
83 * removed from the system. Any asynchronous events scheduled for this
84 * device should exit without taking any action.
fb069a5d
GKH
85 *
86 * Nothing outside of the driver core should ever touch these fields.
87 */
88struct device_private {
f791b8c8
GKH
89 struct klist klist_children;
90 struct klist_node knode_parent;
8940b4f3 91 struct klist_node knode_driver;
ae1b4171 92 struct klist_node knode_bus;
570d0200 93 struct klist_node knode_class;
ef8a3fd6 94 struct list_head deferred_probe;
ef0ff683 95 struct device_driver *async_driver;
d090b70e 96 char *deferred_probe_reason;
fb069a5d 97 struct device *device;
3451a495 98 u8 dead:1;
fb069a5d 99};
f791b8c8
GKH
100#define to_device_private_parent(obj) \
101 container_of(obj, struct device_private, knode_parent)
8940b4f3
GKH
102#define to_device_private_driver(obj) \
103 container_of(obj, struct device_private, knode_driver)
ae1b4171
GKH
104#define to_device_private_bus(obj) \
105 container_of(obj, struct device_private, knode_bus)
570d0200
WY
106#define to_device_private_class(obj) \
107 container_of(obj, struct device_private, knode_class)
fb069a5d 108
c6f7e72a 109/* initialisation functions */
a1bdc7aa
BD
110extern int devices_init(void);
111extern int buses_init(void);
112extern int classes_init(void);
113extern int firmware_init(void);
4039483f
MH
114#ifdef CONFIG_SYS_HYPERVISOR
115extern int hypervisor_init(void);
116#else
117static inline int hypervisor_init(void) { return 0; }
118#endif
a1bdc7aa 119extern int platform_bus_init(void);
024f7846 120extern void cpu_dev_init(void);
caa73ea1 121extern void container_dev_init(void);
471b12c4
DJ
122#ifdef CONFIG_AUXILIARY_BUS
123extern void auxiliary_bus_init(void);
124#else
125static inline void auxiliary_bus_init(void) { }
126#endif
a1bdc7aa 127
d73ce004
TH
128struct kobject *virtual_device_parent(struct device *dev);
129
4a3ad20c 130extern int bus_add_device(struct device *dev);
2023c610 131extern void bus_probe_device(struct device *dev);
4a3ad20c 132extern void bus_remove_device(struct device *dev);
1da177e4 133
4a3ad20c
GKH
134extern int bus_add_driver(struct device_driver *drv);
135extern void bus_remove_driver(struct device_driver *drv);
9ed98953
RW
136extern void device_release_driver_internal(struct device *dev,
137 struct device_driver *drv,
138 struct device *parent);
1da177e4 139
4a3ad20c 140extern void driver_detach(struct device_driver *drv);
d1c3414c 141extern void driver_deferred_probe_del(struct device *dev);
d090b70e
AH
142extern void device_set_deferred_probe_reason(const struct device *dev,
143 struct va_format *vaf);
49b420a1
ML
144static inline int driver_match_device(struct device_driver *drv,
145 struct device *dev)
146{
5247aecf 147 return drv->bus->match ? drv->bus->match(dev, drv) : 1;
49b420a1 148}
07e4a3e2 149
ed0617b5
GKH
150extern int driver_add_groups(struct device_driver *drv,
151 const struct attribute_group **groups);
152extern void driver_remove_groups(struct device_driver *drv,
153 const struct attribute_group **groups);
ed88747c 154void device_driver_detach(struct device *dev);
ed0617b5 155
2a013455 156extern int devres_release_all(struct device *dev);
013c074f
SG
157extern void device_block_probing(void);
158extern void device_unblock_probing(void);
2b28a1a8 159extern void deferred_probe_extend_timeout(void);
2f8c3ae8 160extern void driver_deferred_probe_trigger(void);
823bccfc 161
ca22e56d 162/* /sys/devices directory */
881c6cfd 163extern struct kset *devices_kset;
52cdbdd4 164extern void devices_kset_move_last(struct device *dev);
c63469a3 165
92b42141 166#if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
c63469a3
GKH
167extern void module_add_driver(struct module *mod, struct device_driver *drv);
168extern void module_remove_driver(struct device_driver *drv);
169#else
170static inline void module_add_driver(struct module *mod,
171 struct device_driver *drv) { }
172static inline void module_remove_driver(struct device_driver *drv) { }
173#endif
2b2af54a
KS
174
175#ifdef CONFIG_DEVTMPFS
176extern int devtmpfs_init(void);
177#else
178static inline int devtmpfs_init(void) { return 0; }
179#endif
9ed98953
RW
180
181/* Device links support */
182extern int device_links_read_lock(void);
183extern void device_links_read_unlock(int idx);
c2fa1e1b 184extern int device_links_read_lock_held(void);
9ed98953 185extern int device_links_check_suppliers(struct device *dev);
b6f617df 186extern void device_links_force_bind(struct device *dev);
9ed98953
RW
187extern void device_links_driver_bound(struct device *dev);
188extern void device_links_driver_cleanup(struct device *dev);
189extern void device_links_no_driver(struct device *dev);
190extern bool device_links_busy(struct device *dev);
191extern void device_links_unbind_consumers(struct device *dev);
d46f3e3e 192extern void fw_devlink_drivers_done(void);
494fd7b7
FK
193
194/* device pm support */
195void device_pm_move_to_tail(struct device *dev);
cf901a1c
GKH
196
197#ifdef CONFIG_DEVTMPFS
198int devtmpfs_create_node(struct device *dev);
199int devtmpfs_delete_node(struct device *dev);
200#else
201static inline int devtmpfs_create_node(struct device *dev) { return 0; }
202static inline int devtmpfs_delete_node(struct device *dev) { return 0; }
203#endif
384f5a85
RW
204
205void software_node_notify(struct device *dev);
206void software_node_notify_remove(struct device *dev);