sysdev.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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/pm.h>
  23. struct sys_device;
  24. struct sysdev_class {
  25. struct list_head drivers;
  26. /* Default operations for these types of devices */
  27. int (*shutdown)(struct sys_device *);
  28. int (*suspend)(struct sys_device *, pm_message_t state);
  29. int (*resume)(struct sys_device *);
  30. struct kset kset;
  31. };
  32. extern int sysdev_class_register(struct sysdev_class *);
  33. extern void sysdev_class_unregister(struct sysdev_class *);
  34. /**
  35. * Auxillary system device drivers.
  36. */
  37. struct sysdev_driver {
  38. struct list_head entry;
  39. int (*add)(struct sys_device *);
  40. int (*remove)(struct sys_device *);
  41. int (*shutdown)(struct sys_device *);
  42. int (*suspend)(struct sys_device *, pm_message_t state);
  43. int (*resume)(struct sys_device *);
  44. };
  45. extern int sysdev_driver_register(struct sysdev_class *, struct sysdev_driver *);
  46. extern void sysdev_driver_unregister(struct sysdev_class *, struct sysdev_driver *);
  47. /**
  48. * sys_devices can be simplified a lot from regular devices, because they're
  49. * simply not as versatile.
  50. */
  51. struct sys_device {
  52. u32 id;
  53. struct sysdev_class * cls;
  54. struct kobject kobj;
  55. };
  56. extern int sysdev_register(struct sys_device *);
  57. extern void sysdev_unregister(struct sys_device *);
  58. struct sysdev_attribute {
  59. struct attribute attr;
  60. ssize_t (*show)(struct sys_device *, char *);
  61. ssize_t (*store)(struct sys_device *, const char *, size_t);
  62. };
  63. #define SYSDEV_ATTR(_name,_mode,_show,_store) \
  64. struct sysdev_attribute attr_##_name = { \
  65. .attr = {.name = __stringify(_name), .mode = _mode }, \
  66. .show = _show, \
  67. .store = _store, \
  68. };
  69. extern int sysdev_create_file(struct sys_device *, struct sysdev_attribute *);
  70. extern void sysdev_remove_file(struct sys_device *, struct sysdev_attribute *);
  71. #endif /* _SYSDEV_H_ */