base.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /**
  2. * struct bus_type_private - structure to hold the private to the driver core portions of the bus_type structure.
  3. *
  4. * @subsys - the struct kset that defines this bus. This is the main kobject
  5. * @drivers_kset - the list of drivers associated with this bus
  6. * @devices_kset - the list of devices associated with this bus
  7. * @klist_devices - the klist to iterate over the @devices_kset
  8. * @klist_drivers - the klist to iterate over the @drivers_kset
  9. * @bus_notifier - the bus notifier list for anything that cares about things
  10. * on this bus.
  11. * @bus - pointer back to the struct bus_type that this structure is associated
  12. * with.
  13. *
  14. * This structure is the one that is the actual kobject allowing struct
  15. * bus_type to be statically allocated safely. Nothing outside of the driver
  16. * core should ever touch these fields.
  17. */
  18. struct bus_type_private {
  19. struct kset subsys;
  20. struct kset *drivers_kset;
  21. struct kset *devices_kset;
  22. struct klist klist_devices;
  23. struct klist klist_drivers;
  24. struct blocking_notifier_head bus_notifier;
  25. unsigned int drivers_autoprobe:1;
  26. struct bus_type *bus;
  27. };
  28. struct driver_private {
  29. struct kobject kobj;
  30. struct klist klist_devices;
  31. struct klist_node knode_bus;
  32. struct module_kobject *mkobj;
  33. struct device_driver *driver;
  34. };
  35. #define to_driver(obj) container_of(obj, struct driver_private, kobj)
  36. /**
  37. * struct class_private - structure to hold the private to the driver core portions of the class structure.
  38. *
  39. * @class_subsys - the struct kset that defines this class. This is the main kobject
  40. * @class_devices - list of devices associated with this class
  41. * @class_interfaces - list of class_interfaces associated with this class
  42. * @class_dirs - "glue" directory for virtual devices associated with this class
  43. * @class_mutex - mutex to protect the children, devices, and interfaces lists.
  44. * @class - pointer back to the struct class that this structure is associated
  45. * with.
  46. *
  47. * This structure is the one that is the actual kobject allowing struct
  48. * class to be statically allocated safely. Nothing outside of the driver
  49. * core should ever touch these fields.
  50. */
  51. struct class_private {
  52. struct kset class_subsys;
  53. struct klist class_devices;
  54. struct list_head class_interfaces;
  55. struct kset class_dirs;
  56. struct mutex class_mutex;
  57. struct class *class;
  58. };
  59. #define to_class(obj) \
  60. container_of(obj, struct class_private, class_subsys.kobj)
  61. /**
  62. * struct device_private - structure to hold the private to the driver core portions of the device structure.
  63. *
  64. * @klist_children - klist containing all children of this device
  65. * @knode_parent - node in sibling list
  66. * @knode_driver - node in driver list
  67. * @knode_bus - node in bus list
  68. * @device - pointer back to the struct class that this structure is
  69. * associated with.
  70. *
  71. * Nothing outside of the driver core should ever touch these fields.
  72. */
  73. struct device_private {
  74. struct klist klist_children;
  75. struct klist_node knode_parent;
  76. struct klist_node knode_driver;
  77. struct klist_node knode_bus;
  78. struct device *device;
  79. };
  80. #define to_device_private_parent(obj) \
  81. container_of(obj, struct device_private, knode_parent)
  82. #define to_device_private_driver(obj) \
  83. container_of(obj, struct device_private, knode_driver)
  84. #define to_device_private_bus(obj) \
  85. container_of(obj, struct device_private, knode_bus)
  86. /* initialisation functions */
  87. extern int devices_init(void);
  88. extern int buses_init(void);
  89. extern int classes_init(void);
  90. extern int firmware_init(void);
  91. #ifdef CONFIG_SYS_HYPERVISOR
  92. extern int hypervisor_init(void);
  93. #else
  94. static inline int hypervisor_init(void) { return 0; }
  95. #endif
  96. extern int platform_bus_init(void);
  97. extern int system_bus_init(void);
  98. extern int cpu_dev_init(void);
  99. extern int bus_add_device(struct device *dev);
  100. extern void bus_attach_device(struct device *dev);
  101. extern void bus_remove_device(struct device *dev);
  102. extern int bus_add_driver(struct device_driver *drv);
  103. extern void bus_remove_driver(struct device_driver *drv);
  104. extern void driver_detach(struct device_driver *drv);
  105. extern int driver_probe_device(struct device_driver *drv, struct device *dev);
  106. static inline int driver_match_device(struct device_driver *drv,
  107. struct device *dev)
  108. {
  109. return drv->bus->match ? drv->bus->match(dev, drv) : 1;
  110. }
  111. extern void sysdev_shutdown(void);
  112. extern char *make_class_name(const char *name, struct kobject *kobj);
  113. extern int devres_release_all(struct device *dev);
  114. extern struct kset *devices_kset;
  115. #if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
  116. extern void module_add_driver(struct module *mod, struct device_driver *drv);
  117. extern void module_remove_driver(struct device_driver *drv);
  118. #else
  119. static inline void module_add_driver(struct module *mod,
  120. struct device_driver *drv) { }
  121. static inline void module_remove_driver(struct device_driver *drv) { }
  122. #endif