2 * sysfs.h - definitions for the device driver filesystem
4 * Copyright (c) 2001,2002 Patrick Mochel
5 * Copyright (c) 2004 Silicon Graphics, Inc.
6 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
9 * Please see Documentation/filesystems/sysfs.txt for more information.
15 #include <linux/compiler.h>
16 #include <linux/errno.h>
17 #include <linux/list.h>
18 #include <asm/atomic.h>
24 * The *owner field is no longer used, but leave around
25 * until the tree gets cleaned up fully.
33 struct attribute_group
{
35 struct attribute
**attrs
;
41 * Use these macros to make defining attributes easier. See include/linux/device.h
45 #define __ATTR(_name,_mode,_show,_store) { \
46 .attr = {.name = __stringify(_name), .mode = _mode }, \
51 #define __ATTR_RO(_name) { \
52 .attr = { .name = __stringify(_name), .mode = 0444 }, \
53 .show = _name##_show, \
56 #define __ATTR_NULL { .attr = { .name = NULL } }
58 #define attr_name(_attr) (_attr).attr.name
60 struct vm_area_struct
;
62 struct bin_attribute
{
63 struct attribute attr
;
66 ssize_t (*read
)(struct kobject
*, struct bin_attribute
*,
67 char *, loff_t
, size_t);
68 ssize_t (*write
)(struct kobject
*, struct bin_attribute
*,
69 char *, loff_t
, size_t);
70 int (*mmap
)(struct kobject
*, struct bin_attribute
*attr
,
71 struct vm_area_struct
*vma
);
75 ssize_t (*show
)(struct kobject
*, struct attribute
*,char *);
76 ssize_t (*store
)(struct kobject
*,struct attribute
*,const char *, size_t);
81 int sysfs_schedule_callback(struct kobject
*kobj
, void (*func
)(void *),
82 void *data
, struct module
*owner
);
84 int __must_check
sysfs_create_dir(struct kobject
*kobj
);
85 void sysfs_remove_dir(struct kobject
*kobj
);
86 int __must_check
sysfs_rename_dir(struct kobject
*kobj
, const char *new_name
);
87 int __must_check
sysfs_move_dir(struct kobject
*kobj
,
88 struct kobject
*new_parent_kobj
);
90 int __must_check
sysfs_create_file(struct kobject
*kobj
,
91 const struct attribute
*attr
);
92 int __must_check
sysfs_chmod_file(struct kobject
*kobj
, struct attribute
*attr
,
94 void sysfs_remove_file(struct kobject
*kobj
, const struct attribute
*attr
);
96 int __must_check
sysfs_create_bin_file(struct kobject
*kobj
,
97 struct bin_attribute
*attr
);
98 void sysfs_remove_bin_file(struct kobject
*kobj
, struct bin_attribute
*attr
);
100 int __must_check
sysfs_create_link(struct kobject
*kobj
, struct kobject
*target
,
102 void sysfs_remove_link(struct kobject
*kobj
, const char *name
);
104 int __must_check
sysfs_create_group(struct kobject
*kobj
,
105 const struct attribute_group
*grp
);
106 void sysfs_remove_group(struct kobject
*kobj
,
107 const struct attribute_group
*grp
);
108 int sysfs_add_file_to_group(struct kobject
*kobj
,
109 const struct attribute
*attr
, const char *group
);
110 void sysfs_remove_file_from_group(struct kobject
*kobj
,
111 const struct attribute
*attr
, const char *group
);
113 void sysfs_notify(struct kobject
*kobj
, char *dir
, char *attr
);
115 extern int __must_check
sysfs_init(void);
117 #else /* CONFIG_SYSFS */
119 static inline int sysfs_schedule_callback(struct kobject
*kobj
,
120 void (*func
)(void *), void *data
, struct module
*owner
)
125 static inline int sysfs_create_dir(struct kobject
*kobj
)
130 static inline void sysfs_remove_dir(struct kobject
*kobj
)
135 static inline int sysfs_rename_dir(struct kobject
*kobj
, const char *new_name
)
140 static inline int sysfs_move_dir(struct kobject
*kobj
,
141 struct kobject
*new_parent_kobj
)
146 static inline int sysfs_create_file(struct kobject
*kobj
,
147 const struct attribute
*attr
)
152 static inline int sysfs_chmod_file(struct kobject
*kobj
,
153 struct attribute
*attr
, mode_t mode
)
158 static inline void sysfs_remove_file(struct kobject
*kobj
,
159 const struct attribute
*attr
)
164 static inline int sysfs_create_bin_file(struct kobject
*kobj
,
165 struct bin_attribute
*attr
)
170 static inline int sysfs_remove_bin_file(struct kobject
*kobj
,
171 struct bin_attribute
*attr
)
176 static inline int sysfs_create_link(struct kobject
*kobj
,
177 struct kobject
*target
, const char *name
)
182 static inline void sysfs_remove_link(struct kobject
*kobj
, const char *name
)
187 static inline int sysfs_create_group(struct kobject
*kobj
,
188 const struct attribute_group
*grp
)
193 static inline void sysfs_remove_group(struct kobject
*kobj
,
194 const struct attribute_group
*grp
)
199 static inline int sysfs_add_file_to_group(struct kobject
*kobj
,
200 const struct attribute
*attr
, const char *group
)
205 static inline void sysfs_remove_file_from_group(struct kobject
*kobj
,
206 const struct attribute
*attr
, const char *group
)
210 static inline void sysfs_notify(struct kobject
*kobj
, char *dir
, char *attr
)
214 static inline int __must_check
sysfs_init(void)
219 #endif /* CONFIG_SYSFS */
221 #endif /* _SYSFS_H_ */