blob: eee485957c0c47214987989ec358101f73a79ade [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sysfs.h - definitions for the device driver filesystem
3 *
4 * Copyright (c) 2001,2002 Patrick Mochel
5 * Copyright (c) 2004 Silicon Graphics, Inc.
6 *
7 * Please see Documentation/filesystems/sysfs.txt for more information.
8 */
9
10#ifndef _SYSFS_H_
11#define _SYSFS_H_
12
Andrew Morton4a7fb632006-08-14 22:43:17 -070013#include <linux/compiler.h>
Frank Haverkampbf0acc32007-01-17 17:51:18 +010014#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/atomic.h>
16
17struct kobject;
18struct module;
19
20struct attribute {
Dmitry Torokhovd48593b2005-04-29 00:58:46 -050021 const char * name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 struct module * owner;
23 mode_t mode;
24};
25
26struct attribute_group {
Dmitry Torokhovd48593b2005-04-29 00:58:46 -050027 const char * name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 struct attribute ** attrs;
29};
30
31
32
33/**
34 * Use these macros to make defining attributes easier. See include/linux/device.h
35 * for examples..
36 */
37
38#define __ATTR(_name,_mode,_show,_store) { \
39 .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, \
40 .show = _show, \
41 .store = _store, \
42}
43
44#define __ATTR_RO(_name) { \
45 .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, \
46 .show = _name##_show, \
47}
48
49#define __ATTR_NULL { .attr = { .name = NULL } }
50
51#define attr_name(_attr) (_attr).attr.name
52
53struct vm_area_struct;
54
55struct bin_attribute {
56 struct attribute attr;
57 size_t size;
58 void *private;
59 ssize_t (*read)(struct kobject *, char *, loff_t, size_t);
60 ssize_t (*write)(struct kobject *, char *, loff_t, size_t);
61 int (*mmap)(struct kobject *, struct bin_attribute *attr,
62 struct vm_area_struct *vma);
63};
64
65struct sysfs_ops {
66 ssize_t (*show)(struct kobject *, struct attribute *,char *);
67 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
68};
69
70struct sysfs_dirent {
71 atomic_t s_count;
72 struct list_head s_sibling;
73 struct list_head s_children;
74 void * s_element;
75 int s_type;
76 umode_t s_mode;
77 struct dentry * s_dentry;
Maneesh Soni988d1862005-05-31 10:39:14 +053078 struct iattr * s_iattr;
NeilBrown4508a7a2006-03-20 17:53:53 +110079 atomic_t s_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
82#define SYSFS_ROOT 0x0001
83#define SYSFS_DIR 0x0002
84#define SYSFS_KOBJ_ATTR 0x0004
85#define SYSFS_KOBJ_BIN_ATTR 0x0008
86#define SYSFS_KOBJ_LINK 0x0020
87#define SYSFS_NOT_PINNED (SYSFS_KOBJ_ATTR | SYSFS_KOBJ_BIN_ATTR | SYSFS_KOBJ_LINK)
88
89#ifdef CONFIG_SYSFS
90
Andrew Morton4a7fb632006-08-14 22:43:17 -070091extern int __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -070092sysfs_create_dir(struct kobject *);
93
94extern void
95sysfs_remove_dir(struct kobject *);
96
Andrew Morton4a7fb632006-08-14 22:43:17 -070097extern int __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -070098sysfs_rename_dir(struct kobject *, const char *new_name);
99
Andrew Morton4a7fb632006-08-14 22:43:17 -0700100extern int __must_check
Cornelia Huck8a824722006-11-20 17:07:51 +0100101sysfs_move_dir(struct kobject *, struct kobject *);
102
103extern int __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104sysfs_create_file(struct kobject *, const struct attribute *);
105
Andrew Morton4a7fb632006-08-14 22:43:17 -0700106extern int __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107sysfs_update_file(struct kobject *, const struct attribute *);
108
Andrew Morton4a7fb632006-08-14 22:43:17 -0700109extern int __must_check
Kay Sievers31e5abe2005-04-18 21:57:32 -0700110sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode);
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112extern void
113sysfs_remove_file(struct kobject *, const struct attribute *);
114
Andrew Morton4a7fb632006-08-14 22:43:17 -0700115extern int __must_check
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500116sysfs_create_link(struct kobject * kobj, struct kobject * target, const char * name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118extern void
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500119sysfs_remove_link(struct kobject *, const char * name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Andrew Morton4a7fb632006-08-14 22:43:17 -0700121int __must_check sysfs_create_bin_file(struct kobject *kobj,
122 struct bin_attribute *attr);
Randy.Dunlap995982c2006-07-10 23:05:25 -0700123void sysfs_remove_bin_file(struct kobject *kobj, struct bin_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Andrew Morton4a7fb632006-08-14 22:43:17 -0700125int __must_check sysfs_create_group(struct kobject *,
126 const struct attribute_group *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127void sysfs_remove_group(struct kobject *, const struct attribute_group *);
NeilBrown4508a7a2006-03-20 17:53:53 +1100128void sysfs_notify(struct kobject * k, char *dir, char *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Andrew Mortonf20a9ea2006-08-14 22:43:23 -0700130extern int __must_check sysfs_init(void);
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#else /* CONFIG_SYSFS */
133
134static inline int sysfs_create_dir(struct kobject * k)
135{
136 return 0;
137}
138
139static inline void sysfs_remove_dir(struct kobject * k)
140{
141 ;
142}
143
144static inline int sysfs_rename_dir(struct kobject * k, const char *new_name)
145{
146 return 0;
147}
148
Cornelia Huck8a824722006-11-20 17:07:51 +0100149static inline int sysfs_move_dir(struct kobject * k, struct kobject * new_parent)
150{
151 return 0;
152}
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static inline int sysfs_create_file(struct kobject * k, const struct attribute * a)
155{
156 return 0;
157}
158
159static inline int sysfs_update_file(struct kobject * k, const struct attribute * a)
160{
161 return 0;
162}
Kay Sievers31e5abe2005-04-18 21:57:32 -0700163static inline int sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode)
164{
165 return 0;
166}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168static inline void sysfs_remove_file(struct kobject * k, const struct attribute * a)
169{
170 ;
171}
172
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500173static inline int sysfs_create_link(struct kobject * k, struct kobject * t, const char * n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 return 0;
176}
177
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500178static inline void sysfs_remove_link(struct kobject * k, const char * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 ;
181}
182
183
184static inline int sysfs_create_bin_file(struct kobject * k, struct bin_attribute * a)
185{
186 return 0;
187}
188
189static inline int sysfs_remove_bin_file(struct kobject * k, struct bin_attribute * a)
190{
191 return 0;
192}
193
194static inline int sysfs_create_group(struct kobject * k, const struct attribute_group *g)
195{
196 return 0;
197}
198
199static inline void sysfs_remove_group(struct kobject * k, const struct attribute_group * g)
200{
201 ;
202}
203
NeilBrown4508a7a2006-03-20 17:53:53 +1100204static inline void sysfs_notify(struct kobject * k, char *dir, char *attr)
205{
206}
207
Andrew Mortonf20a9ea2006-08-14 22:43:23 -0700208static inline int __must_check sysfs_init(void)
209{
210 return 0;
211}
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#endif /* CONFIG_SYSFS */
214
215#endif /* _SYSFS_H_ */