xref: /openbmc/linux/drivers/base/base.h (revision 63b823d7)
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;
5537e98d9bSGreg Kroah-Hartman 
5637e98d9bSGreg Kroah-Hartman 	struct lock_class_key lock_key;
57c6f7e72aSGreg Kroah-Hartman };
587bbb89b4SGreg Kroah-Hartman #define to_subsys_private(obj) container_of_const(obj, struct subsys_private, subsys.kobj)
59a1bdc7aaSBen Dooks 
60789be03aSGreg Kroah-Hartman static inline struct subsys_private *subsys_get(struct subsys_private *sp)
61789be03aSGreg Kroah-Hartman {
62789be03aSGreg Kroah-Hartman 	if (sp)
63789be03aSGreg Kroah-Hartman 		kset_get(&sp->subsys);
64789be03aSGreg Kroah-Hartman 	return sp;
65789be03aSGreg Kroah-Hartman }
66789be03aSGreg Kroah-Hartman 
67789be03aSGreg Kroah-Hartman static inline void subsys_put(struct subsys_private *sp)
68789be03aSGreg Kroah-Hartman {
69789be03aSGreg Kroah-Hartman 	if (sp)
70789be03aSGreg Kroah-Hartman 		kset_put(&sp->subsys);
71789be03aSGreg Kroah-Hartman }
72789be03aSGreg Kroah-Hartman 
73e5dd1278SGreg Kroah-Hartman struct driver_private {
74e5dd1278SGreg Kroah-Hartman 	struct kobject kobj;
75e5dd1278SGreg Kroah-Hartman 	struct klist klist_devices;
76e5dd1278SGreg Kroah-Hartman 	struct klist_node knode_bus;
77e5dd1278SGreg Kroah-Hartman 	struct module_kobject *mkobj;
78e5dd1278SGreg Kroah-Hartman 	struct device_driver *driver;
79e5dd1278SGreg Kroah-Hartman };
80e5dd1278SGreg Kroah-Hartman #define to_driver(obj) container_of(obj, struct driver_private, kobj)
81c6f7e72aSGreg Kroah-Hartman 
82fb069a5dSGreg Kroah-Hartman /**
83fb069a5dSGreg Kroah-Hartman  * struct device_private - structure to hold the private to the driver core portions of the device structure.
84fb069a5dSGreg Kroah-Hartman  *
85f791b8c8SGreg Kroah-Hartman  * @klist_children - klist containing all children of this device
86f791b8c8SGreg Kroah-Hartman  * @knode_parent - node in sibling list
878940b4f3SGreg Kroah-Hartman  * @knode_driver - node in driver list
88ae1b4171SGreg Kroah-Hartman  * @knode_bus - node in bus list
89570d0200SWei Yang  * @knode_class - node in class list
90ef8a3fd6SGreg Kroah-Hartman  * @deferred_probe - entry in deferred_probe_list which is used to retry the
91ef8a3fd6SGreg Kroah-Hartman  *	binding of drivers which were unable to get all the resources needed by
92ef8a3fd6SGreg Kroah-Hartman  *	the device; typically because it depends on another driver getting
93ef8a3fd6SGreg Kroah-Hartman  *	probed first.
94ef0ff683SAlexander Duyck  * @async_driver - pointer to device driver awaiting probe via async_probe
9582b2c3c5STomeu Vizoso  * @device - pointer back to the struct device that this structure is
96fb069a5dSGreg Kroah-Hartman  * associated with.
973451a495SAlexander Duyck  * @dead - This device is currently either in the process of or has been
983451a495SAlexander Duyck  *	removed from the system. Any asynchronous events scheduled for this
993451a495SAlexander Duyck  *	device should exit without taking any action.
100fb069a5dSGreg Kroah-Hartman  *
101fb069a5dSGreg Kroah-Hartman  * Nothing outside of the driver core should ever touch these fields.
102fb069a5dSGreg Kroah-Hartman  */
103fb069a5dSGreg Kroah-Hartman struct device_private {
104f791b8c8SGreg Kroah-Hartman 	struct klist klist_children;
105f791b8c8SGreg Kroah-Hartman 	struct klist_node knode_parent;
1068940b4f3SGreg Kroah-Hartman 	struct klist_node knode_driver;
107ae1b4171SGreg Kroah-Hartman 	struct klist_node knode_bus;
108570d0200SWei Yang 	struct klist_node knode_class;
109ef8a3fd6SGreg Kroah-Hartman 	struct list_head deferred_probe;
110ef0ff683SAlexander Duyck 	struct device_driver *async_driver;
111d090b70eSAndrzej Hajda 	char *deferred_probe_reason;
112fb069a5dSGreg Kroah-Hartman 	struct device *device;
1133451a495SAlexander Duyck 	u8 dead:1;
114fb069a5dSGreg Kroah-Hartman };
115f791b8c8SGreg Kroah-Hartman #define to_device_private_parent(obj)	\
116f791b8c8SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_parent)
1178940b4f3SGreg Kroah-Hartman #define to_device_private_driver(obj)	\
1188940b4f3SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_driver)
119ae1b4171SGreg Kroah-Hartman #define to_device_private_bus(obj)	\
120ae1b4171SGreg Kroah-Hartman 	container_of(obj, struct device_private, knode_bus)
121570d0200SWei Yang #define to_device_private_class(obj)	\
122570d0200SWei Yang 	container_of(obj, struct device_private, knode_class)
123fb069a5dSGreg Kroah-Hartman 
124c6f7e72aSGreg Kroah-Hartman /* initialisation functions */
125a1bdc7aaSBen Dooks extern int devices_init(void);
126a1bdc7aaSBen Dooks extern int buses_init(void);
127a1bdc7aaSBen Dooks extern int classes_init(void);
128a1bdc7aaSBen Dooks extern int firmware_init(void);
1294039483fSMichael Holzheu #ifdef CONFIG_SYS_HYPERVISOR
1304039483fSMichael Holzheu extern int hypervisor_init(void);
1314039483fSMichael Holzheu #else
1324039483fSMichael Holzheu static inline int hypervisor_init(void) { return 0; }
1334039483fSMichael Holzheu #endif
134a1bdc7aaSBen Dooks extern int platform_bus_init(void);
135024f7846SBen Hutchings extern void cpu_dev_init(void);
136caa73ea1SRafael J. Wysocki extern void container_dev_init(void);
137471b12c4SDave Jiang #ifdef CONFIG_AUXILIARY_BUS
138471b12c4SDave Jiang extern void auxiliary_bus_init(void);
139471b12c4SDave Jiang #else
140471b12c4SDave Jiang static inline void auxiliary_bus_init(void) { }
141471b12c4SDave Jiang #endif
142a1bdc7aaSBen Dooks 
143d73ce004STejun Heo struct kobject *virtual_device_parent(struct device *dev);
144d73ce004STejun Heo 
1451da177e4SLinus Torvalds extern int bus_add_device(struct device *dev);
1462023c610SAlan Stern extern void bus_probe_device(struct device *dev);
1471da177e4SLinus Torvalds extern void bus_remove_device(struct device *dev);
148ed9f9181SGreg Kroah-Hartman void bus_notify(struct device *dev, enum bus_notifier_event value);
149*63b823d7SGreg Kroah-Hartman bool bus_is_registered(const struct bus_type *bus);
1501da177e4SLinus Torvalds 
1514a3ad20cSGreg Kroah-Hartman extern int bus_add_driver(struct device_driver *drv);
1524a3ad20cSGreg Kroah-Hartman extern void bus_remove_driver(struct device_driver *drv);
1539ed98953SRafael J. Wysocki extern void device_release_driver_internal(struct device *dev,
1549ed98953SRafael J. Wysocki 					   struct device_driver *drv,
1559ed98953SRafael J. Wysocki 					   struct device *parent);
1561da177e4SLinus Torvalds 
15707e4a3e2Smochel@digitalimplant.org extern void driver_detach(struct device_driver *drv);
158d1c3414cSGrant Likely extern void driver_deferred_probe_del(struct device *dev);
159d090b70eSAndrzej Hajda extern void device_set_deferred_probe_reason(const struct device *dev,
160d090b70eSAndrzej Hajda 					     struct va_format *vaf);
16149b420a1SMing Lei static inline int driver_match_device(struct device_driver *drv,
16249b420a1SMing Lei 				      struct device *dev)
16349b420a1SMing Lei {
1645247aecfSMing Lei 	return drv->bus->match ? drv->bus->match(dev, drv) : 1;
16549b420a1SMing Lei }
16607e4a3e2Smochel@digitalimplant.org 
167ed0617b5SGreg Kroah-Hartman extern int driver_add_groups(struct device_driver *drv,
168ed0617b5SGreg Kroah-Hartman 			     const struct attribute_group **groups);
169ed0617b5SGreg Kroah-Hartman extern void driver_remove_groups(struct device_driver *drv,
170ed0617b5SGreg Kroah-Hartman 				 const struct attribute_group **groups);
171ed88747cSAlexander Duyck void device_driver_detach(struct device *dev);
172ed0617b5SGreg Kroah-Hartman 
1732a013455SAdrian Bunk extern int devres_release_all(struct device *dev);
174013c074fSStrashko, Grygorii extern void device_block_probing(void);
175013c074fSStrashko, Grygorii extern void device_unblock_probing(void);
1762b28a1a8SSaravana Kannan extern void deferred_probe_extend_timeout(void);
1772f8c3ae8SSaravana Kannan extern void driver_deferred_probe_trigger(void);
17842bb5be8SGreg Kroah-Hartman const char *device_get_devnode(const struct device *dev, umode_t *mode,
17942bb5be8SGreg Kroah-Hartman 			       kuid_t *uid, kgid_t *gid, const char **tmp);
180823bccfcSGreg Kroah-Hartman 
181ca22e56dSKay Sievers /* /sys/devices directory */
182881c6cfdSGreg Kroah-Hartman extern struct kset *devices_kset;
18352cdbdd4SGrygorii Strashko extern void devices_kset_move_last(struct device *dev);
184c63469a3SGreg Kroah-Hartman 
18592b42141SRandy Dunlap #if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
186c63469a3SGreg Kroah-Hartman extern void module_add_driver(struct module *mod, struct device_driver *drv);
187c63469a3SGreg Kroah-Hartman extern void module_remove_driver(struct device_driver *drv);
188c63469a3SGreg Kroah-Hartman #else
189c63469a3SGreg Kroah-Hartman static inline void module_add_driver(struct module *mod,
190c63469a3SGreg Kroah-Hartman 				     struct device_driver *drv) { }
191c63469a3SGreg Kroah-Hartman static inline void module_remove_driver(struct device_driver *drv) { }
192c63469a3SGreg Kroah-Hartman #endif
1932b2af54aSKay Sievers 
1942b2af54aSKay Sievers #ifdef CONFIG_DEVTMPFS
1952b2af54aSKay Sievers extern int devtmpfs_init(void);
1962b2af54aSKay Sievers #else
1972b2af54aSKay Sievers static inline int devtmpfs_init(void) { return 0; }
1982b2af54aSKay Sievers #endif
1999ed98953SRafael J. Wysocki 
2009ed98953SRafael J. Wysocki /* Device links support */
2019ed98953SRafael J. Wysocki extern int device_links_read_lock(void);
2029ed98953SRafael J. Wysocki extern void device_links_read_unlock(int idx);
203c2fa1e1bSJoel Fernandes (Google) extern int device_links_read_lock_held(void);
2049ed98953SRafael J. Wysocki extern int device_links_check_suppliers(struct device *dev);
205b6f617dfSSaravana Kannan extern void device_links_force_bind(struct device *dev);
2069ed98953SRafael J. Wysocki extern void device_links_driver_bound(struct device *dev);
2079ed98953SRafael J. Wysocki extern void device_links_driver_cleanup(struct device *dev);
2089ed98953SRafael J. Wysocki extern void device_links_no_driver(struct device *dev);
2099ed98953SRafael J. Wysocki extern bool device_links_busy(struct device *dev);
2109ed98953SRafael J. Wysocki extern void device_links_unbind_consumers(struct device *dev);
211d46f3e3eSSaravana Kannan extern void fw_devlink_drivers_done(void);
212494fd7b7SFeng Kan 
213494fd7b7SFeng Kan /* device pm support */
214494fd7b7SFeng Kan void device_pm_move_to_tail(struct device *dev);
215cf901a1cSGreg Kroah-Hartman 
216cf901a1cSGreg Kroah-Hartman #ifdef CONFIG_DEVTMPFS
217cf901a1cSGreg Kroah-Hartman int devtmpfs_create_node(struct device *dev);
218cf901a1cSGreg Kroah-Hartman int devtmpfs_delete_node(struct device *dev);
219cf901a1cSGreg Kroah-Hartman #else
220cf901a1cSGreg Kroah-Hartman static inline int devtmpfs_create_node(struct device *dev) { return 0; }
221cf901a1cSGreg Kroah-Hartman static inline int devtmpfs_delete_node(struct device *dev) { return 0; }
222cf901a1cSGreg Kroah-Hartman #endif
223384f5a85SRafael J. Wysocki 
224384f5a85SRafael J. Wysocki void software_node_notify(struct device *dev);
225384f5a85SRafael J. Wysocki void software_node_notify_remove(struct device *dev);
226