sysdev.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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 auxiliary 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. * Auxiliary 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/pm.h>
  23. struct sys_device;
  24. struct sysdev_class_attribute;
  25. struct sysdev_class {
  26. const char *name;
  27. struct list_head drivers;
  28. struct sysdev_class_attribute **attrs;
  29. struct kset kset;
  30. };
  31. struct sysdev_class_attribute {
  32. struct attribute attr;
  33. ssize_t (*show)(struct sysdev_class *, struct sysdev_class_attribute *,
  34. char *);
  35. ssize_t (*store)(struct sysdev_class *, struct sysdev_class_attribute *,
  36. const char *, size_t);
  37. };
  38. #define _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \
  39. { \
  40. .attr = {.name = __stringify(_name), .mode = _mode }, \
  41. .show = _show, \
  42. .store = _store, \
  43. }
  44. #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \
  45. struct sysdev_class_attribute attr_##_name = \
  46. _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store)
  47. extern int sysdev_class_register(struct sysdev_class *);
  48. extern void sysdev_class_unregister(struct sysdev_class *);
  49. extern int sysdev_class_create_file(struct sysdev_class *,
  50. struct sysdev_class_attribute *);
  51. extern void sysdev_class_remove_file(struct sysdev_class *,
  52. struct sysdev_class_attribute *);
  53. /**
  54. * Auxiliary system device drivers.
  55. */
  56. struct sysdev_driver {
  57. struct list_head entry;
  58. int (*add)(struct sys_device *);
  59. int (*remove)(struct sys_device *);
  60. };
  61. extern int sysdev_driver_register(struct sysdev_class *, struct sysdev_driver *);
  62. extern void sysdev_driver_unregister(struct sysdev_class *, struct sysdev_driver *);
  63. /**
  64. * sys_devices can be simplified a lot from regular devices, because they're
  65. * simply not as versatile.
  66. */
  67. struct sys_device {
  68. u32 id;
  69. struct sysdev_class * cls;
  70. struct kobject kobj;
  71. };
  72. extern int sysdev_register(struct sys_device *);
  73. extern void sysdev_unregister(struct sys_device *);
  74. struct sysdev_attribute {
  75. struct attribute attr;
  76. ssize_t (*show)(struct sys_device *, struct sysdev_attribute *, char *);
  77. ssize_t (*store)(struct sys_device *, struct sysdev_attribute *,
  78. const char *, size_t);
  79. };
  80. #define _SYSDEV_ATTR(_name, _mode, _show, _store) \
  81. { \
  82. .attr = { .name = __stringify(_name), .mode = _mode }, \
  83. .show = _show, \
  84. .store = _store, \
  85. }
  86. #define SYSDEV_ATTR(_name, _mode, _show, _store) \
  87. struct sysdev_attribute attr_##_name = \
  88. _SYSDEV_ATTR(_name, _mode, _show, _store);
  89. extern int sysdev_create_file(struct sys_device *, struct sysdev_attribute *);
  90. extern void sysdev_remove_file(struct sys_device *, struct sysdev_attribute *);
  91. /* Create/remove NULL terminated attribute list */
  92. static inline int
  93. sysdev_create_files(struct sys_device *d, struct sysdev_attribute **a)
  94. {
  95. return sysfs_create_files(&d->kobj, (const struct attribute **)a);
  96. }
  97. static inline void
  98. sysdev_remove_files(struct sys_device *d, struct sysdev_attribute **a)
  99. {
  100. return sysfs_remove_files(&d->kobj, (const struct attribute **)a);
  101. }
  102. struct sysdev_ext_attribute {
  103. struct sysdev_attribute attr;
  104. void *var;
  105. };
  106. /*
  107. * Support for simple variable sysdev attributes.
  108. * The pointer to the variable is stored in a sysdev_ext_attribute
  109. */
  110. /* Add more types as needed */
  111. extern ssize_t sysdev_show_ulong(struct sys_device *, struct sysdev_attribute *,
  112. char *);
  113. extern ssize_t sysdev_store_ulong(struct sys_device *,
  114. struct sysdev_attribute *, const char *, size_t);
  115. extern ssize_t sysdev_show_int(struct sys_device *, struct sysdev_attribute *,
  116. char *);
  117. extern ssize_t sysdev_store_int(struct sys_device *,
  118. struct sysdev_attribute *, const char *, size_t);
  119. #define _SYSDEV_ULONG_ATTR(_name, _mode, _var) \
  120. { _SYSDEV_ATTR(_name, _mode, sysdev_show_ulong, sysdev_store_ulong), \
  121. &(_var) }
  122. #define SYSDEV_ULONG_ATTR(_name, _mode, _var) \
  123. struct sysdev_ext_attribute attr_##_name = \
  124. _SYSDEV_ULONG_ATTR(_name, _mode, _var);
  125. #define _SYSDEV_INT_ATTR(_name, _mode, _var) \
  126. { _SYSDEV_ATTR(_name, _mode, sysdev_show_int, sysdev_store_int), \
  127. &(_var) }
  128. #define SYSDEV_INT_ATTR(_name, _mode, _var) \
  129. struct sysdev_ext_attribute attr_##_name = \
  130. _SYSDEV_INT_ATTR(_name, _mode, _var);
  131. #endif /* _SYSDEV_H_ */