Blame view

drivers/base/base.h 5.35 KB
ba33162a2   Paul Gortmaker   drivers/base: bas...
1
  #include <linux/notifier.h>
a1bdc7aad   Ben Dooks   [PATCH] drivers/b...
2

c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
3
  /**
6b6e39a6a   Kay Sievers   driver-core: merg...
4
   * struct subsys_private - structure to hold the private to the driver core portions of the bus_type/class structure.
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
5
   *
6b6e39a6a   Kay Sievers   driver-core: merg...
6
   * @subsys - the struct kset that defines this subsystem
ca22e56de   Kay Sievers   driver-core: impl...
7
8
9
   * @devices_kset - the subsystem's 'devices' directory
   * @interfaces - list of subsystem interfaces associated
   * @mutex - protect the devices, and interfaces lists.
6b6e39a6a   Kay Sievers   driver-core: merg...
10
11
   *
   * @drivers_kset - the list of drivers associated
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
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
6b6e39a6a   Kay Sievers   driver-core: merg...
15
   *                 on this bus.
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
16
   * @bus - pointer back to the struct bus_type that this structure is associated
6b6e39a6a   Kay Sievers   driver-core: merg...
17
18
   *        with.
   *
6b6e39a6a   Kay Sievers   driver-core: merg...
19
20
   * @glue_dirs - "glue" directory to put in-between the parent device to
   *              avoid namespace conflicts
6b6e39a6a   Kay Sievers   driver-core: merg...
21
22
   * @class - pointer back to the struct class that this structure is associated
   *          with.
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
23
24
   *
   * This structure is the one that is the actual kobject allowing struct
6b6e39a6a   Kay Sievers   driver-core: merg...
25
26
   * bus_type/class to be statically allocated safely.  Nothing outside of the
   * driver core should ever touch these fields.
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
27
   */
6b6e39a6a   Kay Sievers   driver-core: merg...
28
  struct subsys_private {
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
29
  	struct kset subsys;
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
30
  	struct kset *devices_kset;
ca22e56de   Kay Sievers   driver-core: impl...
31
32
  	struct list_head interfaces;
  	struct mutex mutex;
6b6e39a6a   Kay Sievers   driver-core: merg...
33
34
  
  	struct kset *drivers_kset;
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
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;
6b6e39a6a   Kay Sievers   driver-core: merg...
40

6b6e39a6a   Kay Sievers   driver-core: merg...
41
  	struct kset glue_dirs;
6b6e39a6a   Kay Sievers   driver-core: merg...
42
  	struct class *class;
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
43
  };
6b6e39a6a   Kay Sievers   driver-core: merg...
44
  #define to_subsys_private(obj) container_of(obj, struct subsys_private, subsys.kobj)
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
45

e5dd12784   Greg Kroah-Hartman   Driver core: move...
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)
a1bdc7aad   Ben Dooks   [PATCH] drivers/b...
54

fb069a5d1   Greg Kroah-Hartman   driver core: crea...
55
56
57
  /**
   * struct device_private - structure to hold the private to the driver core portions of the device structure.
   *
f791b8c83   Greg Kroah-Hartman   driver core: move...
58
59
   * @klist_children - klist containing all children of this device
   * @knode_parent - node in sibling list
8940b4f31   Greg Kroah-Hartman   driver core: move...
60
   * @knode_driver - node in driver list
ae1b41715   Greg Kroah-Hartman   driver core: move...
61
   * @knode_bus - node in bus list
ef8a3fd6e   Greg Kroah-Hartman   driver core: move...
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.
82b2c3c5b   Tomeu Vizoso   driver core: fix ...
66
   * @device - pointer back to the struct device that this structure is
fb069a5d1   Greg Kroah-Hartman   driver core: crea...
67
68
69
70
71
   * associated with.
   *
   * Nothing outside of the driver core should ever touch these fields.
   */
  struct device_private {
f791b8c83   Greg Kroah-Hartman   driver core: move...
72
73
  	struct klist klist_children;
  	struct klist_node knode_parent;
8940b4f31   Greg Kroah-Hartman   driver core: move...
74
  	struct klist_node knode_driver;
ae1b41715   Greg Kroah-Hartman   driver core: move...
75
  	struct klist_node knode_bus;
ef8a3fd6e   Greg Kroah-Hartman   driver core: move...
76
  	struct list_head deferred_probe;
fb069a5d1   Greg Kroah-Hartman   driver core: crea...
77
78
  	struct device *device;
  };
f791b8c83   Greg Kroah-Hartman   driver core: move...
79
80
  #define to_device_private_parent(obj)	\
  	container_of(obj, struct device_private, knode_parent)
8940b4f31   Greg Kroah-Hartman   driver core: move...
81
82
  #define to_device_private_driver(obj)	\
  	container_of(obj, struct device_private, knode_driver)
ae1b41715   Greg Kroah-Hartman   driver core: move...
83
84
  #define to_device_private_bus(obj)	\
  	container_of(obj, struct device_private, knode_bus)
fb069a5d1   Greg Kroah-Hartman   driver core: crea...
85

b40284378   Greg Kroah-Hartman   Driver core: move...
86
  extern int device_private_init(struct device *dev);
c6f7e72a3   Greg Kroah-Hartman   driver core: remo...
87
  /* initialisation functions */
a1bdc7aad   Ben Dooks   [PATCH] drivers/b...
88
89
90
91
  extern int devices_init(void);
  extern int buses_init(void);
  extern int classes_init(void);
  extern int firmware_init(void);
4039483fd   Michael Holzheu   [PATCH] Driver Co...
92
93
94
95
96
  #ifdef CONFIG_SYS_HYPERVISOR
  extern int hypervisor_init(void);
  #else
  static inline int hypervisor_init(void) { return 0; }
  #endif
a1bdc7aad   Ben Dooks   [PATCH] drivers/b...
97
  extern int platform_bus_init(void);
024f78462   Ben Hutchings   cpu: Do not retur...
98
  extern void cpu_dev_init(void);
caa73ea15   Rafael J. Wysocki   ACPI / hotplug / ...
99
  extern void container_dev_init(void);
a1bdc7aad   Ben Dooks   [PATCH] drivers/b...
100

d73ce0042   Tejun Heo   driver/base: impl...
101
  struct kobject *virtual_device_parent(struct device *dev);
4a3ad20cc   Greg Kroah-Hartman   Driver core: codi...
102
  extern int bus_add_device(struct device *dev);
2023c610d   Alan Stern   Driver core: add ...
103
  extern void bus_probe_device(struct device *dev);
4a3ad20cc   Greg Kroah-Hartman   Driver core: codi...
104
  extern void bus_remove_device(struct device *dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105

4a3ad20cc   Greg Kroah-Hartman   Driver core: codi...
106
107
  extern int bus_add_driver(struct device_driver *drv);
  extern void bus_remove_driver(struct device_driver *drv);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
108

4a3ad20cc   Greg Kroah-Hartman   Driver core: codi...
109
110
  extern void driver_detach(struct device_driver *drv);
  extern int driver_probe_device(struct device_driver *drv, struct device *dev);
d1c3414c2   Grant Likely   drivercore: Add d...
111
  extern void driver_deferred_probe_del(struct device *dev);
49b420a13   Ming Lei   driver core: chec...
112
113
114
  static inline int driver_match_device(struct device_driver *drv,
  				      struct device *dev)
  {
5247aecfe   Ming Lei   driver core: fix ...
115
  	return drv->bus->match ? drv->bus->match(dev, drv) : 1;
49b420a13   Ming Lei   driver core: chec...
116
  }
765230b5f   Dmitry Torokhov   driver-core: add ...
117
  extern bool driver_allows_async_probing(struct device_driver *drv);
07e4a3e27   Patrick Mochel   [PATCH] Move devi...
118

ed0617b5c   Greg Kroah-Hartman   driver core: bus_...
119
120
121
122
  extern int driver_add_groups(struct device_driver *drv,
  			     const struct attribute_group **groups);
  extern void driver_remove_groups(struct device_driver *drv,
  				 const struct attribute_group **groups);
fa6fdb33b   Greg Kroah-Hartman   driver core: bus_...
123
124
125
126
  extern int device_add_groups(struct device *dev,
  			     const struct attribute_group **groups);
  extern void device_remove_groups(struct device *dev,
  				 const struct attribute_group **groups);
aa49b9136   Greg Kroah-Hartman   [PATCH] Driver co...
127
  extern char *make_class_name(const char *name, struct kobject *kobj);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
128

2a0134554   Adrian Bunk   Driver core: fix ...
129
  extern int devres_release_all(struct device *dev);
013c074f8   Strashko, Grygorii   PM / sleep: prohi...
130
131
  extern void device_block_probing(void);
  extern void device_unblock_probing(void);
823bccfc4   Greg Kroah-Hartman   remove "struct su...
132

ca22e56de   Kay Sievers   driver-core: impl...
133
  /* /sys/devices directory */
881c6cfd7   Greg Kroah-Hartman   kset: convert /sy...
134
  extern struct kset *devices_kset;
52cdbdd49   Grygorii Strashko   driver core: corr...
135
  extern void devices_kset_move_last(struct device *dev);
c63469a39   Greg Kroah-Hartman   Driver core: move...
136

92b421416   Randy Dunlap   driver core: fix ...
137
  #if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
c63469a39   Greg Kroah-Hartman   Driver core: move...
138
139
140
141
142
143
144
  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
2b2af54a5   Kay Sievers   Driver Core: devt...
145
146
147
148
149
150
  
  #ifdef CONFIG_DEVTMPFS
  extern int devtmpfs_init(void);
  #else
  static inline int devtmpfs_init(void) { return 0; }
  #endif