base.h 4.8 KB
Newer Older
1
#include <linux/notifier.h>
2

3
/**
4
 * struct subsys_private - structure to hold the private to the driver core portions of the bus_type/class structure.
5
 *
6
 * @subsys - the struct kset that defines this subsystem
7 8 9
 * @devices_kset - the subsystem's 'devices' directory
 * @interfaces - list of subsystem interfaces associated
 * @mutex - protect the devices, and interfaces lists.
10 11
 *
 * @drivers_kset - the list of drivers associated
12 13 14
 * @klist_devices - the klist to iterate over the @devices_kset
 * @klist_drivers - the klist to iterate over the @drivers_kset
 * @bus_notifier - the bus notifier list for anything that cares about things
15
 *                 on this bus.
16
 * @bus - pointer back to the struct bus_type that this structure is associated
17 18 19 20 21 22
 *        with.
 *
 * @glue_dirs - "glue" directory to put in-between the parent device to
 *              avoid namespace conflicts
 * @class - pointer back to the struct class that this structure is associated
 *          with.
23 24
 *
 * This structure is the one that is the actual kobject allowing struct
25 26
 * bus_type/class to be statically allocated safely.  Nothing outside of the
 * driver core should ever touch these fields.
27
 */
28
struct subsys_private {
29 30
	struct kset subsys;
	struct kset *devices_kset;
31 32
	struct list_head interfaces;
	struct mutex mutex;
33 34

	struct kset *drivers_kset;
35 36 37 38 39
	struct klist klist_devices;
	struct klist klist_drivers;
	struct blocking_notifier_head bus_notifier;
	unsigned int drivers_autoprobe:1;
	struct bus_type *bus;
40 41 42

	struct kset glue_dirs;
	struct class *class;
43
};
44
#define to_subsys_private(obj) container_of(obj, struct subsys_private, subsys.kobj)
45

46 47 48 49 50 51 52 53
struct driver_private {
	struct kobject kobj;
	struct klist klist_devices;
	struct klist_node knode_bus;
	struct module_kobject *mkobj;
	struct device_driver *driver;
};
#define to_driver(obj) container_of(obj, struct driver_private, kobj)
54

55 56 57
/**
 * struct device_private - structure to hold the private to the driver core portions of the device structure.
 *
58 59
 * @klist_children - klist containing all children of this device
 * @knode_parent - node in sibling list
60
 * @knode_driver - node in driver list
61
 * @knode_bus - node in bus list
62 63 64 65
 * @deferred_probe - entry in deferred_probe_list which is used to retry the
 *	binding of drivers which were unable to get all the resources needed by
 *	the device; typically because it depends on another driver getting
 *	probed first.
66 67
 * @driver_data - private pointer for driver specific info.  Will turn into a
 * list soon.
68 69 70 71 72 73
 * @device - pointer back to the struct class that this structure is
 * associated with.
 *
 * Nothing outside of the driver core should ever touch these fields.
 */
struct device_private {
74 75
	struct klist klist_children;
	struct klist_node knode_parent;
76
	struct klist_node knode_driver;
77
	struct klist_node knode_bus;
78
	struct list_head deferred_probe;
79
	void *driver_data;
80 81
	struct device *device;
};
82 83
#define to_device_private_parent(obj)	\
	container_of(obj, struct device_private, knode_parent)
84 85
#define to_device_private_driver(obj)	\
	container_of(obj, struct device_private, knode_driver)
86 87
#define to_device_private_bus(obj)	\
	container_of(obj, struct device_private, knode_bus)
88

89 90
extern int device_private_init(struct device *dev);

91
/* initialisation functions */
92 93 94 95
extern int devices_init(void);
extern int buses_init(void);
extern int classes_init(void);
extern int firmware_init(void);
96 97 98 99 100
#ifdef CONFIG_SYS_HYPERVISOR
extern int hypervisor_init(void);
#else
static inline int hypervisor_init(void) { return 0; }
#endif
101
extern int platform_bus_init(void);
102
extern void cpu_dev_init(void);
103

104 105
struct kobject *virtual_device_parent(struct device *dev);

106
extern int bus_add_device(struct device *dev);
107
extern void bus_probe_device(struct device *dev);
108
extern void bus_remove_device(struct device *dev);
L
Linus Torvalds 已提交
109

110 111
extern int bus_add_driver(struct device_driver *drv);
extern void bus_remove_driver(struct device_driver *drv);
L
Linus Torvalds 已提交
112

113 114
extern void driver_detach(struct device_driver *drv);
extern int driver_probe_device(struct device_driver *drv, struct device *dev);
115
extern void driver_deferred_probe_del(struct device *dev);
116 117 118
static inline int driver_match_device(struct device_driver *drv,
				      struct device *dev)
{
M
Ming Lei 已提交
119
	return drv->bus->match ? drv->bus->match(dev, drv) : 1;
120
}
121

122
extern char *make_class_name(const char *name, struct kobject *kobj);
L
Linus Torvalds 已提交
123

124
extern int devres_release_all(struct device *dev);
125

126
/* /sys/devices directory */
127
extern struct kset *devices_kset;
128

129
#if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
130 131 132 133 134 135 136
extern void module_add_driver(struct module *mod, struct device_driver *drv);
extern void module_remove_driver(struct device_driver *drv);
#else
static inline void module_add_driver(struct module *mod,
				     struct device_driver *drv) { }
static inline void module_remove_driver(struct device_driver *drv) { }
#endif
137 138 139 140 141 142

#ifdef CONFIG_DEVTMPFS
extern int devtmpfs_init(void);
#else
static inline int devtmpfs_init(void) { return 0; }
#endif