xref: /openbmc/linux/drivers/base/base.h (revision ba33162a)
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
76b6e39a6SKay Sievers  * @devices_kset - the list of devices associated
86b6e39a6SKay Sievers  *
96b6e39a6SKay Sievers  * @drivers_kset - the list of drivers associated
10c6f7e72aSGreg Kroah-Hartman  * @klist_devices - the klist to iterate over the @devices_kset
11c6f7e72aSGreg Kroah-Hartman  * @klist_drivers - the klist to iterate over the @drivers_kset
12c6f7e72aSGreg Kroah-Hartman  * @bus_notifier - the bus notifier list for anything that cares about things
13c6f7e72aSGreg Kroah-Hartman  *                 on this bus.
14c6f7e72aSGreg Kroah-Hartman  * @bus - pointer back to the struct bus_type that this structure is associated
15c6f7e72aSGreg Kroah-Hartman  *        with.
16c6f7e72aSGreg Kroah-Hartman  *
176b6e39a6SKay Sievers  * @class_interfaces - list of class_interfaces associated
186b6e39a6SKay Sievers  * @glue_dirs - "glue" directory to put in-between the parent device to
196b6e39a6SKay Sievers  *              avoid namespace conflicts
206b6e39a6SKay Sievers  * @class_mutex - mutex to protect the children, devices, and interfaces lists.
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;
316b6e39a6SKay Sievers 
326b6e39a6SKay Sievers 	struct kset *drivers_kset;
33c6f7e72aSGreg Kroah-Hartman 	struct klist klist_devices;
34c6f7e72aSGreg Kroah-Hartman 	struct klist klist_drivers;
35c6f7e72aSGreg Kroah-Hartman 	struct blocking_notifier_head bus_notifier;
36c6f7e72aSGreg Kroah-Hartman 	unsigned int drivers_autoprobe:1;
37c6f7e72aSGreg Kroah-Hartman 	struct bus_type *bus;
386b6e39a6SKay Sievers 
396b6e39a6SKay Sievers 	struct list_head class_interfaces;
406b6e39a6SKay Sievers 	struct kset glue_dirs;
416b6e39a6SKay Sievers 	struct mutex class_mutex;
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
62b4028437SGreg Kroah-Hartman  * @driver_data - private pointer for driver specific info.  Will turn into a
63b4028437SGreg Kroah-Hartman  * list soon.
64fb069a5dSGreg Kroah-Hartman  * @device - pointer back to the struct class that this structure is
65fb069a5dSGreg Kroah-Hartman  * associated with.
66fb069a5dSGreg Kroah-Hartman  *
67fb069a5dSGreg Kroah-Hartman  * Nothing outside of the driver core should ever touch these fields.
68fb069a5dSGreg Kroah-Hartman  */
69fb069a5dSGreg Kroah-Hartman struct device_private {
70f791b8c8SGreg Kroah-Hartman 	struct klist klist_children;
71f791b8c8SGreg Kroah-Hartman 	struct klist_node knode_parent;
728940b4f3SGreg Kroah-Hartman 	struct klist_node knode_driver;
73ae1b4171SGreg Kroah-Hartman 	struct klist_node knode_bus;
74b4028437SGreg Kroah-Hartman 	void *driver_data;
75fb069a5dSGreg Kroah-Hartman 	struct device *device;
76fb069a5dSGreg Kroah-Hartman };
77f791b8c8SGreg Kroah-Hartman #define to_device_private_parent(obj)	\
78f791b8c8SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_parent)
798940b4f3SGreg Kroah-Hartman #define to_device_private_driver(obj)	\
808940b4f3SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_driver)
81ae1b4171SGreg Kroah-Hartman #define to_device_private_bus(obj)	\
82ae1b4171SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_bus)
83fb069a5dSGreg Kroah-Hartman 
84b4028437SGreg Kroah-Hartman extern int device_private_init(struct device *dev);
85b4028437SGreg Kroah-Hartman 
86c6f7e72aSGreg Kroah-Hartman /* initialisation functions */
87a1bdc7aaSBen Dooks extern int devices_init(void);
88a1bdc7aaSBen Dooks extern int buses_init(void);
89a1bdc7aaSBen Dooks extern int classes_init(void);
90a1bdc7aaSBen Dooks extern int firmware_init(void);
914039483fSMichael Holzheu #ifdef CONFIG_SYS_HYPERVISOR
924039483fSMichael Holzheu extern int hypervisor_init(void);
934039483fSMichael Holzheu #else
944039483fSMichael Holzheu static inline int hypervisor_init(void) { return 0; }
954039483fSMichael Holzheu #endif
96a1bdc7aaSBen Dooks extern int platform_bus_init(void);
97a1bdc7aaSBen Dooks extern int system_bus_init(void);
98a1bdc7aaSBen Dooks extern int cpu_dev_init(void);
99a1bdc7aaSBen Dooks 
1001da177e4SLinus Torvalds extern int bus_add_device(struct device *dev);
1012023c610SAlan Stern extern void bus_probe_device(struct device *dev);
1021da177e4SLinus Torvalds extern void bus_remove_device(struct device *dev);
1031da177e4SLinus Torvalds 
1044a3ad20cSGreg Kroah-Hartman extern int bus_add_driver(struct device_driver *drv);
1054a3ad20cSGreg Kroah-Hartman extern void bus_remove_driver(struct device_driver *drv);
1061da177e4SLinus Torvalds 
10707e4a3e2Smochel@digitalimplant.org extern void driver_detach(struct device_driver *drv);
1084a3ad20cSGreg Kroah-Hartman extern int driver_probe_device(struct device_driver *drv, struct device *dev);
10949b420a1SMing Lei static inline int driver_match_device(struct device_driver *drv,
11049b420a1SMing Lei 				      struct device *dev)
11149b420a1SMing Lei {
1125247aecfSMing Lei 	return drv->bus->match ? drv->bus->match(dev, drv) : 1;
11349b420a1SMing Lei }
11407e4a3e2Smochel@digitalimplant.org 
115aa49b913SGreg Kroah-Hartman extern char *make_class_name(const char *name, struct kobject *kobj);
1161da177e4SLinus Torvalds 
1172a013455SAdrian Bunk extern int devres_release_all(struct device *dev);
118823bccfcSGreg Kroah-Hartman 
119881c6cfdSGreg Kroah-Hartman extern struct kset *devices_kset;
120c63469a3SGreg Kroah-Hartman 
12192b42141SRandy Dunlap #if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
122c63469a3SGreg Kroah-Hartman extern void module_add_driver(struct module *mod, struct device_driver *drv);
123c63469a3SGreg Kroah-Hartman extern void module_remove_driver(struct device_driver *drv);
124c63469a3SGreg Kroah-Hartman #else
125c63469a3SGreg Kroah-Hartman static inline void module_add_driver(struct module *mod,
126c63469a3SGreg Kroah-Hartman 				     struct device_driver *drv) { }
127c63469a3SGreg Kroah-Hartman static inline void module_remove_driver(struct device_driver *drv) { }
128c63469a3SGreg Kroah-Hartman #endif
1292b2af54aSKay Sievers 
1302b2af54aSKay Sievers #ifdef CONFIG_DEVTMPFS
1312b2af54aSKay Sievers extern int devtmpfs_init(void);
1322b2af54aSKay Sievers #else
1332b2af54aSKay Sievers static inline int devtmpfs_init(void) { return 0; }
1342b2af54aSKay Sievers #endif
135