xref: /openbmc/linux/drivers/base/base.h (revision 9ed98953)
1ba33162aSPaul Gortmaker #include <linux/notifier.h>
2a1bdc7aaSBen Dooks 
3c6f7e72aSGreg Kroah-Hartman /**
46b6e39a6SKay Sievers  * struct subsys_private - structure to hold the private to the driver core portions of the bus_type/class structure.
5c6f7e72aSGreg Kroah-Hartman  *
66b6e39a6SKay Sievers  * @subsys - the struct kset that defines this subsystem
7ca22e56dSKay Sievers  * @devices_kset - the subsystem's 'devices' directory
8ca22e56dSKay Sievers  * @interfaces - list of subsystem interfaces associated
9ca22e56dSKay Sievers  * @mutex - protect the devices, and interfaces lists.
106b6e39a6SKay Sievers  *
116b6e39a6SKay Sievers  * @drivers_kset - the list of drivers associated
12c6f7e72aSGreg Kroah-Hartman  * @klist_devices - the klist to iterate over the @devices_kset
13c6f7e72aSGreg Kroah-Hartman  * @klist_drivers - the klist to iterate over the @drivers_kset
14c6f7e72aSGreg Kroah-Hartman  * @bus_notifier - the bus notifier list for anything that cares about things
15c6f7e72aSGreg Kroah-Hartman  *                 on this bus.
16c6f7e72aSGreg Kroah-Hartman  * @bus - pointer back to the struct bus_type that this structure is associated
17c6f7e72aSGreg Kroah-Hartman  *        with.
18c6f7e72aSGreg Kroah-Hartman  *
196b6e39a6SKay Sievers  * @glue_dirs - "glue" directory to put in-between the parent device to
206b6e39a6SKay Sievers  *              avoid namespace conflicts
216b6e39a6SKay Sievers  * @class - pointer back to the struct class that this structure is associated
226b6e39a6SKay Sievers  *          with.
236b6e39a6SKay Sievers  *
24c6f7e72aSGreg Kroah-Hartman  * This structure is the one that is the actual kobject allowing struct
256b6e39a6SKay Sievers  * bus_type/class to be statically allocated safely.  Nothing outside of the
266b6e39a6SKay Sievers  * driver core should ever touch these fields.
27c6f7e72aSGreg Kroah-Hartman  */
286b6e39a6SKay Sievers struct subsys_private {
29c6f7e72aSGreg Kroah-Hartman 	struct kset subsys;
30c6f7e72aSGreg Kroah-Hartman 	struct kset *devices_kset;
31ca22e56dSKay Sievers 	struct list_head interfaces;
32ca22e56dSKay Sievers 	struct mutex mutex;
336b6e39a6SKay Sievers 
346b6e39a6SKay Sievers 	struct kset *drivers_kset;
35c6f7e72aSGreg Kroah-Hartman 	struct klist klist_devices;
36c6f7e72aSGreg Kroah-Hartman 	struct klist klist_drivers;
37c6f7e72aSGreg Kroah-Hartman 	struct blocking_notifier_head bus_notifier;
38c6f7e72aSGreg Kroah-Hartman 	unsigned int drivers_autoprobe:1;
39c6f7e72aSGreg Kroah-Hartman 	struct bus_type *bus;
406b6e39a6SKay Sievers 
416b6e39a6SKay Sievers 	struct kset glue_dirs;
426b6e39a6SKay Sievers 	struct class *class;
43c6f7e72aSGreg Kroah-Hartman };
446b6e39a6SKay Sievers #define to_subsys_private(obj) container_of(obj, struct subsys_private, subsys.kobj)
45a1bdc7aaSBen Dooks 
46e5dd1278SGreg Kroah-Hartman struct driver_private {
47e5dd1278SGreg Kroah-Hartman 	struct kobject kobj;
48e5dd1278SGreg Kroah-Hartman 	struct klist klist_devices;
49e5dd1278SGreg Kroah-Hartman 	struct klist_node knode_bus;
50e5dd1278SGreg Kroah-Hartman 	struct module_kobject *mkobj;
51e5dd1278SGreg Kroah-Hartman 	struct device_driver *driver;
52e5dd1278SGreg Kroah-Hartman };
53e5dd1278SGreg Kroah-Hartman #define to_driver(obj) container_of(obj, struct driver_private, kobj)
54c6f7e72aSGreg Kroah-Hartman 
55fb069a5dSGreg Kroah-Hartman /**
56fb069a5dSGreg Kroah-Hartman  * struct device_private - structure to hold the private to the driver core portions of the device structure.
57fb069a5dSGreg Kroah-Hartman  *
58f791b8c8SGreg Kroah-Hartman  * @klist_children - klist containing all children of this device
59f791b8c8SGreg Kroah-Hartman  * @knode_parent - node in sibling list
608940b4f3SGreg Kroah-Hartman  * @knode_driver - node in driver list
61ae1b4171SGreg Kroah-Hartman  * @knode_bus - node in bus list
62ef8a3fd6SGreg Kroah-Hartman  * @deferred_probe - entry in deferred_probe_list which is used to retry the
63ef8a3fd6SGreg Kroah-Hartman  *	binding of drivers which were unable to get all the resources needed by
64ef8a3fd6SGreg Kroah-Hartman  *	the device; typically because it depends on another driver getting
65ef8a3fd6SGreg Kroah-Hartman  *	probed first.
6682b2c3c5STomeu Vizoso  * @device - pointer back to the struct device that this structure is
67fb069a5dSGreg Kroah-Hartman  * associated with.
68fb069a5dSGreg Kroah-Hartman  *
69fb069a5dSGreg Kroah-Hartman  * Nothing outside of the driver core should ever touch these fields.
70fb069a5dSGreg Kroah-Hartman  */
71fb069a5dSGreg Kroah-Hartman struct device_private {
72f791b8c8SGreg Kroah-Hartman 	struct klist klist_children;
73f791b8c8SGreg Kroah-Hartman 	struct klist_node knode_parent;
748940b4f3SGreg Kroah-Hartman 	struct klist_node knode_driver;
75ae1b4171SGreg Kroah-Hartman 	struct klist_node knode_bus;
76ef8a3fd6SGreg Kroah-Hartman 	struct list_head deferred_probe;
77fb069a5dSGreg Kroah-Hartman 	struct device *device;
78fb069a5dSGreg Kroah-Hartman };
79f791b8c8SGreg Kroah-Hartman #define to_device_private_parent(obj)	\
80f791b8c8SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_parent)
818940b4f3SGreg Kroah-Hartman #define to_device_private_driver(obj)	\
828940b4f3SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_driver)
83ae1b4171SGreg Kroah-Hartman #define to_device_private_bus(obj)	\
84ae1b4171SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_bus)
85fb069a5dSGreg Kroah-Hartman 
86b4028437SGreg Kroah-Hartman extern int device_private_init(struct device *dev);
87b4028437SGreg Kroah-Hartman 
88c6f7e72aSGreg Kroah-Hartman /* initialisation functions */
89a1bdc7aaSBen Dooks extern int devices_init(void);
90a1bdc7aaSBen Dooks extern int buses_init(void);
91a1bdc7aaSBen Dooks extern int classes_init(void);
92a1bdc7aaSBen Dooks extern int firmware_init(void);
934039483fSMichael Holzheu #ifdef CONFIG_SYS_HYPERVISOR
944039483fSMichael Holzheu extern int hypervisor_init(void);
954039483fSMichael Holzheu #else
964039483fSMichael Holzheu static inline int hypervisor_init(void) { return 0; }
974039483fSMichael Holzheu #endif
98a1bdc7aaSBen Dooks extern int platform_bus_init(void);
99024f7846SBen Hutchings extern void cpu_dev_init(void);
100caa73ea1SRafael J. Wysocki extern void container_dev_init(void);
101a1bdc7aaSBen Dooks 
102d73ce004STejun Heo struct kobject *virtual_device_parent(struct device *dev);
103d73ce004STejun Heo 
1041da177e4SLinus Torvalds extern int bus_add_device(struct device *dev);
1052023c610SAlan Stern extern void bus_probe_device(struct device *dev);
1061da177e4SLinus Torvalds extern void bus_remove_device(struct device *dev);
1071da177e4SLinus Torvalds 
1084a3ad20cSGreg Kroah-Hartman extern int bus_add_driver(struct device_driver *drv);
1094a3ad20cSGreg Kroah-Hartman extern void bus_remove_driver(struct device_driver *drv);
1109ed98953SRafael J. Wysocki extern void device_release_driver_internal(struct device *dev,
1119ed98953SRafael J. Wysocki 					   struct device_driver *drv,
1129ed98953SRafael J. Wysocki 					   struct device *parent);
1131da177e4SLinus Torvalds 
11407e4a3e2Smochel@digitalimplant.org extern void driver_detach(struct device_driver *drv);
1154a3ad20cSGreg Kroah-Hartman extern int driver_probe_device(struct device_driver *drv, struct device *dev);
116d1c3414cSGrant Likely extern void driver_deferred_probe_del(struct device *dev);
11749b420a1SMing Lei static inline int driver_match_device(struct device_driver *drv,
11849b420a1SMing Lei 				      struct device *dev)
11949b420a1SMing Lei {
1205247aecfSMing Lei 	return drv->bus->match ? drv->bus->match(dev, drv) : 1;
12149b420a1SMing Lei }
122765230b5SDmitry Torokhov extern bool driver_allows_async_probing(struct device_driver *drv);
12307e4a3e2Smochel@digitalimplant.org 
124ed0617b5SGreg Kroah-Hartman extern int driver_add_groups(struct device_driver *drv,
125ed0617b5SGreg Kroah-Hartman 			     const struct attribute_group **groups);
126ed0617b5SGreg Kroah-Hartman extern void driver_remove_groups(struct device_driver *drv,
127ed0617b5SGreg Kroah-Hartman 				 const struct attribute_group **groups);
128ed0617b5SGreg Kroah-Hartman 
129fa6fdb33SGreg Kroah-Hartman extern int device_add_groups(struct device *dev,
130fa6fdb33SGreg Kroah-Hartman 			     const struct attribute_group **groups);
131fa6fdb33SGreg Kroah-Hartman extern void device_remove_groups(struct device *dev,
132fa6fdb33SGreg Kroah-Hartman 				 const struct attribute_group **groups);
133fa6fdb33SGreg Kroah-Hartman 
134aa49b913SGreg Kroah-Hartman extern char *make_class_name(const char *name, struct kobject *kobj);
1351da177e4SLinus Torvalds 
1362a013455SAdrian Bunk extern int devres_release_all(struct device *dev);
137013c074fSStrashko, Grygorii extern void device_block_probing(void);
138013c074fSStrashko, Grygorii extern void device_unblock_probing(void);
139823bccfcSGreg Kroah-Hartman 
140ca22e56dSKay Sievers /* /sys/devices directory */
141881c6cfdSGreg Kroah-Hartman extern struct kset *devices_kset;
14252cdbdd4SGrygorii Strashko extern void devices_kset_move_last(struct device *dev);
143c63469a3SGreg Kroah-Hartman 
14492b42141SRandy Dunlap #if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
145c63469a3SGreg Kroah-Hartman extern void module_add_driver(struct module *mod, struct device_driver *drv);
146c63469a3SGreg Kroah-Hartman extern void module_remove_driver(struct device_driver *drv);
147c63469a3SGreg Kroah-Hartman #else
148c63469a3SGreg Kroah-Hartman static inline void module_add_driver(struct module *mod,
149c63469a3SGreg Kroah-Hartman 				     struct device_driver *drv) { }
150c63469a3SGreg Kroah-Hartman static inline void module_remove_driver(struct device_driver *drv) { }
151c63469a3SGreg Kroah-Hartman #endif
1522b2af54aSKay Sievers 
1532b2af54aSKay Sievers #ifdef CONFIG_DEVTMPFS
1542b2af54aSKay Sievers extern int devtmpfs_init(void);
1552b2af54aSKay Sievers #else
1562b2af54aSKay Sievers static inline int devtmpfs_init(void) { return 0; }
1572b2af54aSKay Sievers #endif
1589ed98953SRafael J. Wysocki 
1599ed98953SRafael J. Wysocki /* Device links support */
1609ed98953SRafael J. Wysocki extern int device_links_read_lock(void);
1619ed98953SRafael J. Wysocki extern void device_links_read_unlock(int idx);
1629ed98953SRafael J. Wysocki extern int device_links_check_suppliers(struct device *dev);
1639ed98953SRafael J. Wysocki extern void device_links_driver_bound(struct device *dev);
1649ed98953SRafael J. Wysocki extern void device_links_driver_cleanup(struct device *dev);
1659ed98953SRafael J. Wysocki extern void device_links_no_driver(struct device *dev);
1669ed98953SRafael J. Wysocki extern bool device_links_busy(struct device *dev);
1679ed98953SRafael J. Wysocki extern void device_links_unbind_consumers(struct device *dev);
168