1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#ifndef _SYSDEV_H_
22#define _SYSDEV_H_
23
24#include <linux/kobject.h>
25#include <linux/module.h>
26#include <linux/pm.h>
27
28
29struct sys_device;
30
31struct sysdev_class {
32 const char *name;
33 struct list_head drivers;
34
35
36 int (*shutdown)(struct sys_device *);
37 int (*suspend)(struct sys_device *, pm_message_t state);
38 int (*resume)(struct sys_device *);
39 struct kset kset;
40};
41
42struct sysdev_class_attribute {
43 struct attribute attr;
44 ssize_t (*show)(struct sysdev_class *, char *);
45 ssize_t (*store)(struct sysdev_class *, const char *, size_t);
46};
47
48#define _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \
49{ \
50 .attr = {.name = __stringify(_name), .mode = _mode }, \
51 .show = _show, \
52 .store = _store, \
53}
54
55#define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \
56 struct sysdev_class_attribute attr_##_name = \
57 _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store)
58
59
60extern int sysdev_class_register(struct sysdev_class *);
61extern void sysdev_class_unregister(struct sysdev_class *);
62
63extern int sysdev_class_create_file(struct sysdev_class *,
64 struct sysdev_class_attribute *);
65extern void sysdev_class_remove_file(struct sysdev_class *,
66 struct sysdev_class_attribute *);
67
68
69
70
71struct sysdev_driver {
72 struct list_head entry;
73 int (*add)(struct sys_device *);
74 int (*remove)(struct sys_device *);
75 int (*shutdown)(struct sys_device *);
76 int (*suspend)(struct sys_device *, pm_message_t state);
77 int (*resume)(struct sys_device *);
78};
79
80
81extern int sysdev_driver_register(struct sysdev_class *, struct sysdev_driver *);
82extern void sysdev_driver_unregister(struct sysdev_class *, struct sysdev_driver *);
83
84
85
86
87
88
89
90struct sys_device {
91 u32 id;
92 struct sysdev_class * cls;
93 struct kobject kobj;
94};
95
96extern int sysdev_register(struct sys_device *);
97extern void sysdev_unregister(struct sys_device *);
98
99
100struct sysdev_attribute {
101 struct attribute attr;
102 ssize_t (*show)(struct sys_device *, char *);
103 ssize_t (*store)(struct sys_device *, const char *, size_t);
104};
105
106
107#define _SYSDEV_ATTR(_name, _mode, _show, _store) \
108{ \
109 .attr = { .name = __stringify(_name), .mode = _mode }, \
110 .show = _show, \
111 .store = _store, \
112}
113
114#define SYSDEV_ATTR(_name, _mode, _show, _store) \
115 struct sysdev_attribute attr_##_name = \
116 _SYSDEV_ATTR(_name, _mode, _show, _store);
117
118extern int sysdev_create_file(struct sys_device *, struct sysdev_attribute *);
119extern void sysdev_remove_file(struct sys_device *, struct sysdev_attribute *);
120
121#endif
122