sysdev.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /**
  2. * System devices follow a slightly different driver model.
  3. * They don't need to do dynammic driver binding, can't be probed,
  4. * and don't reside on any type of peripheral bus.
  5. * So, we represent and treat them a little differently.
  6. *
  7. * We still have a notion of a driver for a system device, because we still
  8. * want to perform basic operations on these devices.
  9. *
  10. * We also support auxillary drivers binding to devices of a certain class.
  11. *
  12. * This allows configurable drivers to register themselves for devices of
  13. * a certain type. And, it allows class definitions to reside in generic
  14. * code while arch-specific code can register specific drivers.
  15. *
  16. * Auxillary drivers registered with a NULL cls are registered as drivers
  17. * for all system devices, and get notification calls for each device.
  18. */
  19. #ifndef _SYSDEV_H_
  20. #define _SYSDEV_H_
  21. #include <linux/kobject.h>
  22. #include <linux/module.h>
  23. #include <linux/pm.h>
  24. struct sys_device;
  25. struct sysdev_class {
  26. const char *name;
  27. struct list_head drivers;
  28. /* Default operations for these types of devices */
  29. int (*shutdown)(struct sys_device *);
  30. int (*suspend)(struct sys_device *, pm_message_t state);
  31. int (*resume)(struct sys_device *);
  32. struct kset kset;
  33. };
  34. struct sysdev_class_attribute {
  35. struct attribute attr;
  36. ssize_t (*show)(struct sysdev_class *, struct sysdev_class_attribute *,
  37. char *);
  38. ssize_t (*store)(struct sysdev_class *, struct sysdev_class_attribute *,
  39. const char *, size_t);
  40. };
  41. #define _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \
  42. { \
  43. .attr = {.name = __stringify(_name), .mode = _mode }, \
  44. .show = _show, \
  45. .store = _store, \
  46. }
  47. #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \
  48. struct sysdev_class_attribute attr_##_name = \
  49. _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store)
  50. extern int sysdev_class_register(struct sysdev_class *);
  51. extern void sysdev_class_unregister(struct sysdev_class *);
  52. extern int sysdev_class_create_file(struct sysdev_class *,
  53. struct sysdev_class_attribute *);
  54. extern void sysdev_class_remove_file(struct sysdev_class *,
  55. struct sysdev_class_attribute *);
  56. /**
  57. * Auxillary system device drivers.
  58. */
  59. struct sysdev_driver {
  60. struct list_head entry;
  61. int (*add)(struct sys_device *);
  62. int (*remove)(struct sys_device *);
  63. int (*shutdown)(struct sys_device *);
  64. int (*suspend)(struct sys_device *, pm_message_t state);
  65. int (*resume)(struct sys_device *);
  66. };
  67. extern int sysdev_driver_register(struct sysdev_class *, struct sysdev_driver *);
  68. extern void sysdev_driver_unregister(struct sysdev_class *, struct sysdev_driver *);
  69. /**
  70. * sys_devices can be simplified a lot from regular devices, because they're
  71. * simply not as versatile.
  72. */
  73. struct sys_device {
  74. u32 id;
  75. struct sysdev_class * cls;
  76. struct kobject kobj;
  77. };
  78. extern int sysdev_register(struct sys_device *);
  79. extern void sysdev_unregister(struct sys_device *);
  80. struct sysdev_attribute {
  81. struct attribute attr;
  82. ssize_t (*show)(struct sys_device *, struct sysdev_attribute *, char *);
  83. ssize_t (*store)(struct sys_device *, struct sysdev_attribute *,
  84. const char *, size_t);
  85. };
  86. #define _SYSDEV_ATTR(_name, _mode, _show, _store) \
  87. { \
  88. .attr = { .name = __stringify(_name), .mode = _mode }, \
  89. .show = _show, \
  90. .store = _store, \
  91. }
  92. #define SYSDEV_ATTR(_name, _mode, _show, _store) \
  93. struct sysdev_attribute attr_##_name = \
  94. _SYSDEV_ATTR(_name, _mode, _show, _store);
  95. extern int sysdev_create_file(struct sys_device *, struct sysdev_attribute *);
  96. extern void sysdev_remove_file(struct sys_device *, struct sysdev_attribute *);
  97. struct sysdev_ext_attribute {
  98. struct sysdev_attribute attr;
  99. void *var;
  100. };
  101. /*
  102. * Support for simple variable sysdev attributes.
  103. * The pointer to the variable is stored in a sysdev_ext_attribute
  104. */
  105. /* Add more types as needed */
  106. extern ssize_t sysdev_show_ulong(struct sys_device *, struct sysdev_attribute *,
  107. char *);
  108. extern ssize_t sysdev_store_ulong(struct sys_device *,
  109. struct sysdev_attribute *, const char *, size_t);
  110. extern ssize_t sysdev_show_int(struct sys_device *, struct sysdev_attribute *,
  111. char *);
  112. extern ssize_t sysdev_store_int(struct sys_device *,
  113. struct sysdev_attribute *, const char *, size_t);
  114. #define _SYSDEV_ULONG_ATTR(_name, _mode, _var) \
  115. { _SYSDEV_ATTR(_name, _mode, sysdev_show_ulong, sysdev_store_ulong), \
  116. &(_var) }
  117. #define SYSDEV_ULONG_ATTR(_name, _mode, _var) \
  118. struct sysdev_ext_attribute attr_##_name = \
  119. _SYSDEV_ULONG_ATTR(_name, _mode, _var);
  120. #define _SYSDEV_INT_ATTR(_name, _mode, _var) \
  121. { _SYSDEV_ATTR(_name, _mode, sysdev_show_int, sysdev_store_int), \
  122. &(_var) }
  123. #define SYSDEV_INT_ATTR(_name, _mode, _var) \
  124. struct sysdev_ext_attribute attr_##_name = \
  125. _SYSDEV_INT_ATTR(_name, _mode, _var);
  126. #endif /* _SYSDEV_H_ */