xref: /openbmc/linux/drivers/base/base.h (revision 5367601b)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
25367601bSGreg Kroah-Hartman /*
35367601bSGreg Kroah-Hartman  * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
45367601bSGreg Kroah-Hartman  * Copyright (c) 2004-2009 Greg Kroah-Hartman <gregkh@suse.de>
55367601bSGreg Kroah-Hartman  * Copyright (c) 2008-2012 Novell Inc.
65367601bSGreg Kroah-Hartman  * Copyright (c) 2012-2019 Greg Kroah-Hartman <gregkh@linuxfoundation.org>
75367601bSGreg Kroah-Hartman  * Copyright (c) 2012-2019 Linux Foundation
85367601bSGreg Kroah-Hartman  *
95367601bSGreg Kroah-Hartman  * Core driver model functions and structures that should not be
105367601bSGreg Kroah-Hartman  * shared outside of the drivers/base/ directory.
115367601bSGreg Kroah-Hartman  *
125367601bSGreg Kroah-Hartman  */
13ba33162aSPaul Gortmaker #include <linux/notifier.h>
14a1bdc7aaSBen Dooks 
15c6f7e72aSGreg Kroah-Hartman /**
166b6e39a6SKay Sievers  * struct subsys_private - structure to hold the private to the driver core portions of the bus_type/class structure.
17c6f7e72aSGreg Kroah-Hartman  *
186b6e39a6SKay Sievers  * @subsys - the struct kset that defines this subsystem
19ca22e56dSKay Sievers  * @devices_kset - the subsystem's 'devices' directory
20ca22e56dSKay Sievers  * @interfaces - list of subsystem interfaces associated
21ca22e56dSKay Sievers  * @mutex - protect the devices, and interfaces lists.
226b6e39a6SKay Sievers  *
236b6e39a6SKay Sievers  * @drivers_kset - the list of drivers associated
24c6f7e72aSGreg Kroah-Hartman  * @klist_devices - the klist to iterate over the @devices_kset
25c6f7e72aSGreg Kroah-Hartman  * @klist_drivers - the klist to iterate over the @drivers_kset
26c6f7e72aSGreg Kroah-Hartman  * @bus_notifier - the bus notifier list for anything that cares about things
27c6f7e72aSGreg Kroah-Hartman  *                 on this bus.
28c6f7e72aSGreg Kroah-Hartman  * @bus - pointer back to the struct bus_type that this structure is associated
29c6f7e72aSGreg Kroah-Hartman  *        with.
30c6f7e72aSGreg Kroah-Hartman  *
316b6e39a6SKay Sievers  * @glue_dirs - "glue" directory to put in-between the parent device to
326b6e39a6SKay Sievers  *              avoid namespace conflicts
336b6e39a6SKay Sievers  * @class - pointer back to the struct class that this structure is associated
346b6e39a6SKay Sievers  *          with.
356b6e39a6SKay Sievers  *
36c6f7e72aSGreg Kroah-Hartman  * This structure is the one that is the actual kobject allowing struct
376b6e39a6SKay Sievers  * bus_type/class to be statically allocated safely.  Nothing outside of the
386b6e39a6SKay Sievers  * driver core should ever touch these fields.
39c6f7e72aSGreg Kroah-Hartman  */
406b6e39a6SKay Sievers struct subsys_private {
41c6f7e72aSGreg Kroah-Hartman 	struct kset subsys;
42c6f7e72aSGreg Kroah-Hartman 	struct kset *devices_kset;
43ca22e56dSKay Sievers 	struct list_head interfaces;
44ca22e56dSKay Sievers 	struct mutex mutex;
456b6e39a6SKay Sievers 
466b6e39a6SKay Sievers 	struct kset *drivers_kset;
47c6f7e72aSGreg Kroah-Hartman 	struct klist klist_devices;
48c6f7e72aSGreg Kroah-Hartman 	struct klist klist_drivers;
49c6f7e72aSGreg Kroah-Hartman 	struct blocking_notifier_head bus_notifier;
50c6f7e72aSGreg Kroah-Hartman 	unsigned int drivers_autoprobe:1;
51c6f7e72aSGreg Kroah-Hartman 	struct bus_type *bus;
526b6e39a6SKay Sievers 
536b6e39a6SKay Sievers 	struct kset glue_dirs;
546b6e39a6SKay Sievers 	struct class *class;
55c6f7e72aSGreg Kroah-Hartman };
566b6e39a6SKay Sievers #define to_subsys_private(obj) container_of(obj, struct subsys_private, subsys.kobj)
57a1bdc7aaSBen Dooks 
58e5dd1278SGreg Kroah-Hartman struct driver_private {
59e5dd1278SGreg Kroah-Hartman 	struct kobject kobj;
60e5dd1278SGreg Kroah-Hartman 	struct klist klist_devices;
61e5dd1278SGreg Kroah-Hartman 	struct klist_node knode_bus;
62e5dd1278SGreg Kroah-Hartman 	struct module_kobject *mkobj;
63e5dd1278SGreg Kroah-Hartman 	struct device_driver *driver;
64e5dd1278SGreg Kroah-Hartman };
65e5dd1278SGreg Kroah-Hartman #define to_driver(obj) container_of(obj, struct driver_private, kobj)
66c6f7e72aSGreg Kroah-Hartman 
67fb069a5dSGreg Kroah-Hartman /**
68fb069a5dSGreg Kroah-Hartman  * struct device_private - structure to hold the private to the driver core portions of the device structure.
69fb069a5dSGreg Kroah-Hartman  *
70f791b8c8SGreg Kroah-Hartman  * @klist_children - klist containing all children of this device
71f791b8c8SGreg Kroah-Hartman  * @knode_parent - node in sibling list
728940b4f3SGreg Kroah-Hartman  * @knode_driver - node in driver list
73ae1b4171SGreg Kroah-Hartman  * @knode_bus - node in bus list
74570d0200SWei Yang  * @knode_class - node in class list
75ef8a3fd6SGreg Kroah-Hartman  * @deferred_probe - entry in deferred_probe_list which is used to retry the
76ef8a3fd6SGreg Kroah-Hartman  *	binding of drivers which were unable to get all the resources needed by
77ef8a3fd6SGreg Kroah-Hartman  *	the device; typically because it depends on another driver getting
78ef8a3fd6SGreg Kroah-Hartman  *	probed first.
79ef0ff683SAlexander Duyck  * @async_driver - pointer to device driver awaiting probe via async_probe
8082b2c3c5STomeu Vizoso  * @device - pointer back to the struct device that this structure is
81fb069a5dSGreg Kroah-Hartman  * associated with.
823451a495SAlexander Duyck  * @dead - This device is currently either in the process of or has been
833451a495SAlexander Duyck  *	removed from the system. Any asynchronous events scheduled for this
843451a495SAlexander Duyck  *	device should exit without taking any action.
85fb069a5dSGreg Kroah-Hartman  *
86fb069a5dSGreg Kroah-Hartman  * Nothing outside of the driver core should ever touch these fields.
87fb069a5dSGreg Kroah-Hartman  */
88fb069a5dSGreg Kroah-Hartman struct device_private {
89f791b8c8SGreg Kroah-Hartman 	struct klist klist_children;
90f791b8c8SGreg Kroah-Hartman 	struct klist_node knode_parent;
918940b4f3SGreg Kroah-Hartman 	struct klist_node knode_driver;
92ae1b4171SGreg Kroah-Hartman 	struct klist_node knode_bus;
93570d0200SWei Yang 	struct klist_node knode_class;
94ef8a3fd6SGreg Kroah-Hartman 	struct list_head deferred_probe;
95ef0ff683SAlexander Duyck 	struct device_driver *async_driver;
96fb069a5dSGreg Kroah-Hartman 	struct device *device;
973451a495SAlexander Duyck 	u8 dead:1;
98fb069a5dSGreg Kroah-Hartman };
99f791b8c8SGreg Kroah-Hartman #define to_device_private_parent(obj)	\
100f791b8c8SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_parent)
1018940b4f3SGreg Kroah-Hartman #define to_device_private_driver(obj)	\
1028940b4f3SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_driver)
103ae1b4171SGreg Kroah-Hartman #define to_device_private_bus(obj)	\
104ae1b4171SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_bus)
105570d0200SWei Yang #define to_device_private_class(obj)	\
106570d0200SWei Yang 	container_of(obj, struct device_private, knode_class)
107fb069a5dSGreg Kroah-Hartman 
108c6f7e72aSGreg Kroah-Hartman /* initialisation functions */
109a1bdc7aaSBen Dooks extern int devices_init(void);
110a1bdc7aaSBen Dooks extern int buses_init(void);
111a1bdc7aaSBen Dooks extern int classes_init(void);
112a1bdc7aaSBen Dooks extern int firmware_init(void);
1134039483fSMichael Holzheu #ifdef CONFIG_SYS_HYPERVISOR
1144039483fSMichael Holzheu extern int hypervisor_init(void);
1154039483fSMichael Holzheu #else
1164039483fSMichael Holzheu static inline int hypervisor_init(void) { return 0; }
1174039483fSMichael Holzheu #endif
118a1bdc7aaSBen Dooks extern int platform_bus_init(void);
119024f7846SBen Hutchings extern void cpu_dev_init(void);
120caa73ea1SRafael J. Wysocki extern void container_dev_init(void);
121a1bdc7aaSBen Dooks 
122d73ce004STejun Heo struct kobject *virtual_device_parent(struct device *dev);
123d73ce004STejun Heo 
1241da177e4SLinus Torvalds extern int bus_add_device(struct device *dev);
1252023c610SAlan Stern extern void bus_probe_device(struct device *dev);
1261da177e4SLinus Torvalds extern void bus_remove_device(struct device *dev);
1271da177e4SLinus Torvalds 
1284a3ad20cSGreg Kroah-Hartman extern int bus_add_driver(struct device_driver *drv);
1294a3ad20cSGreg Kroah-Hartman extern void bus_remove_driver(struct device_driver *drv);
1309ed98953SRafael J. Wysocki extern void device_release_driver_internal(struct device *dev,
1319ed98953SRafael J. Wysocki 					   struct device_driver *drv,
1329ed98953SRafael J. Wysocki 					   struct device *parent);
1331da177e4SLinus Torvalds 
13407e4a3e2Smochel@digitalimplant.org extern void driver_detach(struct device_driver *drv);
1354a3ad20cSGreg Kroah-Hartman extern int driver_probe_device(struct device_driver *drv, struct device *dev);
136d1c3414cSGrant Likely extern void driver_deferred_probe_del(struct device *dev);
13749b420a1SMing Lei static inline int driver_match_device(struct device_driver *drv,
13849b420a1SMing Lei 				      struct device *dev)
13949b420a1SMing Lei {
1405247aecfSMing Lei 	return drv->bus->match ? drv->bus->match(dev, drv) : 1;
14149b420a1SMing Lei }
142765230b5SDmitry Torokhov extern bool driver_allows_async_probing(struct device_driver *drv);
14307e4a3e2Smochel@digitalimplant.org 
144ed0617b5SGreg Kroah-Hartman extern int driver_add_groups(struct device_driver *drv,
145ed0617b5SGreg Kroah-Hartman 			     const struct attribute_group **groups);
146ed0617b5SGreg Kroah-Hartman extern void driver_remove_groups(struct device_driver *drv,
147ed0617b5SGreg Kroah-Hartman 				 const struct attribute_group **groups);
148ed88747cSAlexander Duyck int device_driver_attach(struct device_driver *drv, struct device *dev);
149ed88747cSAlexander Duyck void device_driver_detach(struct device *dev);
150ed0617b5SGreg Kroah-Hartman 
151aa49b913SGreg Kroah-Hartman extern char *make_class_name(const char *name, struct kobject *kobj);
1521da177e4SLinus Torvalds 
1532a013455SAdrian Bunk extern int devres_release_all(struct device *dev);
154013c074fSStrashko, Grygorii extern void device_block_probing(void);
155013c074fSStrashko, Grygorii extern void device_unblock_probing(void);
156823bccfcSGreg Kroah-Hartman 
157ca22e56dSKay Sievers /* /sys/devices directory */
158881c6cfdSGreg Kroah-Hartman extern struct kset *devices_kset;
15952cdbdd4SGrygorii Strashko extern void devices_kset_move_last(struct device *dev);
160c63469a3SGreg Kroah-Hartman 
16192b42141SRandy Dunlap #if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
162c63469a3SGreg Kroah-Hartman extern void module_add_driver(struct module *mod, struct device_driver *drv);
163c63469a3SGreg Kroah-Hartman extern void module_remove_driver(struct device_driver *drv);
164c63469a3SGreg Kroah-Hartman #else
165c63469a3SGreg Kroah-Hartman static inline void module_add_driver(struct module *mod,
166c63469a3SGreg Kroah-Hartman 				     struct device_driver *drv) { }
167c63469a3SGreg Kroah-Hartman static inline void module_remove_driver(struct device_driver *drv) { }
168c63469a3SGreg Kroah-Hartman #endif
1692b2af54aSKay Sievers 
1702b2af54aSKay Sievers #ifdef CONFIG_DEVTMPFS
1712b2af54aSKay Sievers extern int devtmpfs_init(void);
1722b2af54aSKay Sievers #else
1732b2af54aSKay Sievers static inline int devtmpfs_init(void) { return 0; }
1742b2af54aSKay Sievers #endif
1759ed98953SRafael J. Wysocki 
1769ed98953SRafael J. Wysocki /* Device links support */
1779ed98953SRafael J. Wysocki extern int device_links_read_lock(void);
1789ed98953SRafael J. Wysocki extern void device_links_read_unlock(int idx);
179c2fa1e1bSJoel Fernandes (Google) extern int device_links_read_lock_held(void);
1809ed98953SRafael J. Wysocki extern int device_links_check_suppliers(struct device *dev);
1819ed98953SRafael J. Wysocki extern void device_links_driver_bound(struct device *dev);
1829ed98953SRafael J. Wysocki extern void device_links_driver_cleanup(struct device *dev);
1839ed98953SRafael J. Wysocki extern void device_links_no_driver(struct device *dev);
1849ed98953SRafael J. Wysocki extern bool device_links_busy(struct device *dev);
1859ed98953SRafael J. Wysocki extern void device_links_unbind_consumers(struct device *dev);
186494fd7b7SFeng Kan 
187494fd7b7SFeng Kan /* device pm support */
188494fd7b7SFeng Kan void device_pm_move_to_tail(struct device *dev);
189