blob: b858dfd9a37c93df9f39ba86cd0f7f6087b15c5b [file] [log] [blame]
Paul Gortmakerba331622011-05-26 18:08:35 -04001#include <linux/notifier.h>
Ben Dooksa1bdc7a2005-10-13 17:54:41 +01002
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -07003/**
Kay Sievers6b6e39a2010-11-15 23:13:18 +01004 * struct subsys_private - structure to hold the private to the driver core portions of the bus_type/class structure.
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -07005 *
Kay Sievers6b6e39a2010-11-15 23:13:18 +01006 * @subsys - the struct kset that defines this subsystem
Kay Sieversca22e562011-12-14 14:29:38 -08007 * @devices_kset - the subsystem's 'devices' directory
8 * @interfaces - list of subsystem interfaces associated
9 * @mutex - protect the devices, and interfaces lists.
Kay Sievers6b6e39a2010-11-15 23:13:18 +010010 *
11 * @drivers_kset - the list of drivers associated
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070012 * @klist_devices - the klist to iterate over the @devices_kset
13 * @klist_drivers - the klist to iterate over the @drivers_kset
14 * @bus_notifier - the bus notifier list for anything that cares about things
Kay Sievers6b6e39a2010-11-15 23:13:18 +010015 * on this bus.
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070016 * @bus - pointer back to the struct bus_type that this structure is associated
Kay Sievers6b6e39a2010-11-15 23:13:18 +010017 * with.
18 *
Kay Sievers6b6e39a2010-11-15 23:13:18 +010019 * @glue_dirs - "glue" directory to put in-between the parent device to
20 * avoid namespace conflicts
Kay Sievers6b6e39a2010-11-15 23:13:18 +010021 * @class - pointer back to the struct class that this structure is associated
22 * with.
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070023 *
24 * This structure is the one that is the actual kobject allowing struct
Kay Sievers6b6e39a2010-11-15 23:13:18 +010025 * bus_type/class to be statically allocated safely. Nothing outside of the
26 * driver core should ever touch these fields.
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070027 */
Kay Sievers6b6e39a2010-11-15 23:13:18 +010028struct subsys_private {
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070029 struct kset subsys;
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070030 struct kset *devices_kset;
Kay Sieversca22e562011-12-14 14:29:38 -080031 struct list_head interfaces;
32 struct mutex mutex;
Kay Sievers6b6e39a2010-11-15 23:13:18 +010033
34 struct kset *drivers_kset;
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070035 struct klist klist_devices;
36 struct klist klist_drivers;
37 struct blocking_notifier_head bus_notifier;
38 unsigned int drivers_autoprobe:1;
39 struct bus_type *bus;
Kay Sievers6b6e39a2010-11-15 23:13:18 +010040
Kay Sievers6b6e39a2010-11-15 23:13:18 +010041 struct kset glue_dirs;
Kay Sievers6b6e39a2010-11-15 23:13:18 +010042 struct class *class;
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070043};
Kay Sievers6b6e39a2010-11-15 23:13:18 +010044#define to_subsys_private(obj) container_of(obj, struct subsys_private, subsys.kobj)
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010045
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080046struct driver_private {
47 struct kobject kobj;
48 struct klist klist_devices;
49 struct klist_node knode_bus;
50 struct module_kobject *mkobj;
51 struct device_driver *driver;
52};
53#define to_driver(obj) container_of(obj, struct driver_private, kobj)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070054
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -080055/**
56 * struct device_private - structure to hold the private to the driver core portions of the device structure.
57 *
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -080058 * @klist_children - klist containing all children of this device
59 * @knode_parent - node in sibling list
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -080060 * @knode_driver - node in driver list
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -080061 * @knode_bus - node in bus list
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -070062 * @driver_data - private pointer for driver specific info. Will turn into a
63 * list soon.
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -080064 * @device - pointer back to the struct class that this structure is
65 * associated with.
66 *
67 * Nothing outside of the driver core should ever touch these fields.
68 */
69struct device_private {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -080070 struct klist klist_children;
71 struct klist_node knode_parent;
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -080072 struct klist_node knode_driver;
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -080073 struct klist_node knode_bus;
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -070074 void *driver_data;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -080075 struct device *device;
76};
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -080077#define to_device_private_parent(obj) \
78 container_of(obj, struct device_private, knode_parent)
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -080079#define to_device_private_driver(obj) \
80 container_of(obj, struct device_private, knode_driver)
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -080081#define to_device_private_bus(obj) \
82 container_of(obj, struct device_private, knode_bus)
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -080083
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -070084extern int device_private_init(struct device *dev);
85
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070086/* initialisation functions */
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010087extern int devices_init(void);
88extern int buses_init(void);
89extern int classes_init(void);
90extern int firmware_init(void);
Michael Holzheu40394832006-05-09 12:53:49 +020091#ifdef CONFIG_SYS_HYPERVISOR
92extern int hypervisor_init(void);
93#else
94static inline int hypervisor_init(void) { return 0; }
95#endif
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010096extern int platform_bus_init(void);
Ben Hutchings024f7842012-01-10 02:59:49 +000097extern void cpu_dev_init(void);
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010098
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080099extern int bus_add_device(struct device *dev);
Alan Stern2023c612009-07-30 15:27:18 -0400100extern void bus_probe_device(struct device *dev);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800101extern void bus_remove_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800103extern int bus_add_driver(struct device_driver *drv);
104extern void bus_remove_driver(struct device_driver *drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800106extern void driver_detach(struct device_driver *drv);
107extern int driver_probe_device(struct device_driver *drv, struct device *dev);
Ming Lei49b420a2009-01-21 23:27:47 +0800108static inline int driver_match_device(struct device_driver *drv,
109 struct device *dev)
110{
Ming Lei5247aec2009-03-27 21:50:00 +0800111 return drv->bus->match ? drv->bus->match(dev, drv) : 1;
Ming Lei49b420a2009-01-21 23:27:47 +0800112}
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800113
Greg Kroah-Hartmanaa49b912006-06-20 13:59:20 -0700114extern char *make_class_name(const char *name, struct kobject *kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Adrian Bunk2a013452007-06-18 01:42:54 +0200116extern int devres_release_all(struct device *dev);
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700117
Kay Sieversca22e562011-12-14 14:29:38 -0800118/* /sys/devices directory */
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600119extern struct kset *devices_kset;
Greg Kroah-Hartmanc63469a2007-11-28 12:23:18 -0800120
Randy Dunlap92b42142007-12-31 10:05:43 -0800121#if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
Greg Kroah-Hartmanc63469a2007-11-28 12:23:18 -0800122extern void module_add_driver(struct module *mod, struct device_driver *drv);
123extern void module_remove_driver(struct device_driver *drv);
124#else
125static inline void module_add_driver(struct module *mod,
126 struct device_driver *drv) { }
127static inline void module_remove_driver(struct device_driver *drv) { }
128#endif
Kay Sievers2b2af542009-04-30 15:23:42 +0200129
130#ifdef CONFIG_DEVTMPFS
131extern int devtmpfs_init(void);
132#else
133static inline int devtmpfs_init(void) { return 0; }
134#endif