xref: /openbmc/linux/drivers/base/base.h (revision b2441318)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
2ba33162aSPaul Gortmaker #include <linux/notifier.h>
3a1bdc7aaSBen Dooks 
4c6f7e72aSGreg Kroah-Hartman /**
56b6e39a6SKay Sievers  * struct subsys_private - structure to hold the private to the driver core portions of the bus_type/class structure.
6c6f7e72aSGreg Kroah-Hartman  *
76b6e39a6SKay Sievers  * @subsys - the struct kset that defines this subsystem
8ca22e56dSKay Sievers  * @devices_kset - the subsystem's 'devices' directory
9ca22e56dSKay Sievers  * @interfaces - list of subsystem interfaces associated
10ca22e56dSKay Sievers  * @mutex - protect the devices, and interfaces lists.
116b6e39a6SKay Sievers  *
126b6e39a6SKay Sievers  * @drivers_kset - the list of drivers associated
13c6f7e72aSGreg Kroah-Hartman  * @klist_devices - the klist to iterate over the @devices_kset
14c6f7e72aSGreg Kroah-Hartman  * @klist_drivers - the klist to iterate over the @drivers_kset
15c6f7e72aSGreg Kroah-Hartman  * @bus_notifier - the bus notifier list for anything that cares about things
16c6f7e72aSGreg Kroah-Hartman  *                 on this bus.
17c6f7e72aSGreg Kroah-Hartman  * @bus - pointer back to the struct bus_type that this structure is associated
18c6f7e72aSGreg Kroah-Hartman  *        with.
19c6f7e72aSGreg Kroah-Hartman  *
206b6e39a6SKay Sievers  * @glue_dirs - "glue" directory to put in-between the parent device to
216b6e39a6SKay Sievers  *              avoid namespace conflicts
226b6e39a6SKay Sievers  * @class - pointer back to the struct class that this structure is associated
236b6e39a6SKay Sievers  *          with.
246b6e39a6SKay Sievers  *
25c6f7e72aSGreg Kroah-Hartman  * This structure is the one that is the actual kobject allowing struct
266b6e39a6SKay Sievers  * bus_type/class to be statically allocated safely.  Nothing outside of the
276b6e39a6SKay Sievers  * driver core should ever touch these fields.
28c6f7e72aSGreg Kroah-Hartman  */
296b6e39a6SKay Sievers struct subsys_private {
30c6f7e72aSGreg Kroah-Hartman 	struct kset subsys;
31c6f7e72aSGreg Kroah-Hartman 	struct kset *devices_kset;
32ca22e56dSKay Sievers 	struct list_head interfaces;
33ca22e56dSKay Sievers 	struct mutex mutex;
346b6e39a6SKay Sievers 
356b6e39a6SKay Sievers 	struct kset *drivers_kset;
36c6f7e72aSGreg Kroah-Hartman 	struct klist klist_devices;
37c6f7e72aSGreg Kroah-Hartman 	struct klist klist_drivers;
38c6f7e72aSGreg Kroah-Hartman 	struct blocking_notifier_head bus_notifier;
39c6f7e72aSGreg Kroah-Hartman 	unsigned int drivers_autoprobe:1;
40c6f7e72aSGreg Kroah-Hartman 	struct bus_type *bus;
416b6e39a6SKay Sievers 
426b6e39a6SKay Sievers 	struct kset glue_dirs;
436b6e39a6SKay Sievers 	struct class *class;
44c6f7e72aSGreg Kroah-Hartman };
456b6e39a6SKay Sievers #define to_subsys_private(obj) container_of(obj, struct subsys_private, subsys.kobj)
46a1bdc7aaSBen Dooks 
47e5dd1278SGreg Kroah-Hartman struct driver_private {
48e5dd1278SGreg Kroah-Hartman 	struct kobject kobj;
49e5dd1278SGreg Kroah-Hartman 	struct klist klist_devices;
50e5dd1278SGreg Kroah-Hartman 	struct klist_node knode_bus;
51e5dd1278SGreg Kroah-Hartman 	struct module_kobject *mkobj;
52e5dd1278SGreg Kroah-Hartman 	struct device_driver *driver;
53e5dd1278SGreg Kroah-Hartman };
54e5dd1278SGreg Kroah-Hartman #define to_driver(obj) container_of(obj, struct driver_private, kobj)
55c6f7e72aSGreg Kroah-Hartman 
56fb069a5dSGreg Kroah-Hartman /**
57fb069a5dSGreg Kroah-Hartman  * struct device_private - structure to hold the private to the driver core portions of the device structure.
58fb069a5dSGreg Kroah-Hartman  *
59f791b8c8SGreg Kroah-Hartman  * @klist_children - klist containing all children of this device
60f791b8c8SGreg Kroah-Hartman  * @knode_parent - node in sibling list
618940b4f3SGreg Kroah-Hartman  * @knode_driver - node in driver list
62ae1b4171SGreg Kroah-Hartman  * @knode_bus - node in bus list
63ef8a3fd6SGreg Kroah-Hartman  * @deferred_probe - entry in deferred_probe_list which is used to retry the
64ef8a3fd6SGreg Kroah-Hartman  *	binding of drivers which were unable to get all the resources needed by
65ef8a3fd6SGreg Kroah-Hartman  *	the device; typically because it depends on another driver getting
66ef8a3fd6SGreg Kroah-Hartman  *	probed first.
6782b2c3c5STomeu Vizoso  * @device - pointer back to the struct device that this structure is
68fb069a5dSGreg Kroah-Hartman  * associated with.
69fb069a5dSGreg Kroah-Hartman  *
70fb069a5dSGreg Kroah-Hartman  * Nothing outside of the driver core should ever touch these fields.
71fb069a5dSGreg Kroah-Hartman  */
72fb069a5dSGreg Kroah-Hartman struct device_private {
73f791b8c8SGreg Kroah-Hartman 	struct klist klist_children;
74f791b8c8SGreg Kroah-Hartman 	struct klist_node knode_parent;
758940b4f3SGreg Kroah-Hartman 	struct klist_node knode_driver;
76ae1b4171SGreg Kroah-Hartman 	struct klist_node knode_bus;
77ef8a3fd6SGreg Kroah-Hartman 	struct list_head deferred_probe;
78fb069a5dSGreg Kroah-Hartman 	struct device *device;
79fb069a5dSGreg Kroah-Hartman };
80f791b8c8SGreg Kroah-Hartman #define to_device_private_parent(obj)	\
81f791b8c8SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_parent)
828940b4f3SGreg Kroah-Hartman #define to_device_private_driver(obj)	\
838940b4f3SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_driver)
84ae1b4171SGreg Kroah-Hartman #define to_device_private_bus(obj)	\
85ae1b4171SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_bus)
86fb069a5dSGreg Kroah-Hartman 
87b4028437SGreg Kroah-Hartman extern int device_private_init(struct device *dev);
88b4028437SGreg Kroah-Hartman 
89c6f7e72aSGreg Kroah-Hartman /* initialisation functions */
90a1bdc7aaSBen Dooks extern int devices_init(void);
91a1bdc7aaSBen Dooks extern int buses_init(void);
92a1bdc7aaSBen Dooks extern int classes_init(void);
93a1bdc7aaSBen Dooks extern int firmware_init(void);
944039483fSMichael Holzheu #ifdef CONFIG_SYS_HYPERVISOR
954039483fSMichael Holzheu extern int hypervisor_init(void);
964039483fSMichael Holzheu #else
974039483fSMichael Holzheu static inline int hypervisor_init(void) { return 0; }
984039483fSMichael Holzheu #endif
99a1bdc7aaSBen Dooks extern int platform_bus_init(void);
100024f7846SBen Hutchings extern void cpu_dev_init(void);
101caa73ea1SRafael J. Wysocki extern void container_dev_init(void);
102a1bdc7aaSBen Dooks 
103d73ce004STejun Heo struct kobject *virtual_device_parent(struct device *dev);
104d73ce004STejun Heo 
1051da177e4SLinus Torvalds extern int bus_add_device(struct device *dev);
1062023c610SAlan Stern extern void bus_probe_device(struct device *dev);
1071da177e4SLinus Torvalds extern void bus_remove_device(struct device *dev);
1081da177e4SLinus Torvalds 
1094a3ad20cSGreg Kroah-Hartman extern int bus_add_driver(struct device_driver *drv);
1104a3ad20cSGreg Kroah-Hartman extern void bus_remove_driver(struct device_driver *drv);
1119ed98953SRafael J. Wysocki extern void device_release_driver_internal(struct device *dev,
1129ed98953SRafael J. Wysocki 					   struct device_driver *drv,
1139ed98953SRafael J. Wysocki 					   struct device *parent);
1141da177e4SLinus Torvalds 
11507e4a3e2Smochel@digitalimplant.org extern void driver_detach(struct device_driver *drv);
1164a3ad20cSGreg Kroah-Hartman extern int driver_probe_device(struct device_driver *drv, struct device *dev);
117d1c3414cSGrant Likely extern void driver_deferred_probe_del(struct device *dev);
11849b420a1SMing Lei static inline int driver_match_device(struct device_driver *drv,
11949b420a1SMing Lei 				      struct device *dev)
12049b420a1SMing Lei {
1215247aecfSMing Lei 	return drv->bus->match ? drv->bus->match(dev, drv) : 1;
12249b420a1SMing Lei }
123765230b5SDmitry Torokhov extern bool driver_allows_async_probing(struct device_driver *drv);
12407e4a3e2Smochel@digitalimplant.org 
125ed0617b5SGreg Kroah-Hartman extern int driver_add_groups(struct device_driver *drv,
126ed0617b5SGreg Kroah-Hartman 			     const struct attribute_group **groups);
127ed0617b5SGreg Kroah-Hartman extern void driver_remove_groups(struct device_driver *drv,
128ed0617b5SGreg Kroah-Hartman 				 const struct attribute_group **groups);
129ed0617b5SGreg Kroah-Hartman 
130aa49b913SGreg Kroah-Hartman extern char *make_class_name(const char *name, struct kobject *kobj);
1311da177e4SLinus Torvalds 
1322a013455SAdrian Bunk extern int devres_release_all(struct device *dev);
133013c074fSStrashko, Grygorii extern void device_block_probing(void);
134013c074fSStrashko, Grygorii extern void device_unblock_probing(void);
135823bccfcSGreg Kroah-Hartman 
136ca22e56dSKay Sievers /* /sys/devices directory */
137881c6cfdSGreg Kroah-Hartman extern struct kset *devices_kset;
13852cdbdd4SGrygorii Strashko extern void devices_kset_move_last(struct device *dev);
139c63469a3SGreg Kroah-Hartman 
14092b42141SRandy Dunlap #if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
141c63469a3SGreg Kroah-Hartman extern void module_add_driver(struct module *mod, struct device_driver *drv);
142c63469a3SGreg Kroah-Hartman extern void module_remove_driver(struct device_driver *drv);
143c63469a3SGreg Kroah-Hartman #else
144c63469a3SGreg Kroah-Hartman static inline void module_add_driver(struct module *mod,
145c63469a3SGreg Kroah-Hartman 				     struct device_driver *drv) { }
146c63469a3SGreg Kroah-Hartman static inline void module_remove_driver(struct device_driver *drv) { }
147c63469a3SGreg Kroah-Hartman #endif
1482b2af54aSKay Sievers 
1492b2af54aSKay Sievers #ifdef CONFIG_DEVTMPFS
1502b2af54aSKay Sievers extern int devtmpfs_init(void);
1512b2af54aSKay Sievers #else
1522b2af54aSKay Sievers static inline int devtmpfs_init(void) { return 0; }
1532b2af54aSKay Sievers #endif
1549ed98953SRafael J. Wysocki 
1559ed98953SRafael J. Wysocki /* Device links support */
1569ed98953SRafael J. Wysocki extern int device_links_read_lock(void);
1579ed98953SRafael J. Wysocki extern void device_links_read_unlock(int idx);
1589ed98953SRafael J. Wysocki extern int device_links_check_suppliers(struct device *dev);
1599ed98953SRafael J. Wysocki extern void device_links_driver_bound(struct device *dev);
1609ed98953SRafael J. Wysocki extern void device_links_driver_cleanup(struct device *dev);
1619ed98953SRafael J. Wysocki extern void device_links_no_driver(struct device *dev);
1629ed98953SRafael J. Wysocki extern bool device_links_busy(struct device *dev);
1639ed98953SRafael J. Wysocki extern void device_links_unbind_consumers(struct device *dev);
164