blob: 02ad790921fd02b1afd284057e3beec2e064ad1e [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/atomic.h>
15
16struct kobject;
17struct module;
18
19struct attribute {
Dmitry Torokhovd48593b2005-04-29 00:58:46 -050020 const char * name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 struct module * owner;
22 mode_t mode;
23};
24
25struct attribute_group {
Dmitry Torokhovd48593b2005-04-29 00:58:46 -050026 const char * name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 struct attribute ** attrs;
28};
29
30
31
32/**
33 * Use these macros to make defining attributes easier. See include/linux/device.h
34 * for examples..
35 */
36
37#define __ATTR(_name,_mode,_show,_store) { \
38 .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, \
39 .show = _show, \
40 .store = _store, \
41}
42
43#define __ATTR_RO(_name) { \
44 .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, \
45 .show = _name##_show, \
46}
47
48#define __ATTR_NULL { .attr = { .name = NULL } }
49
50#define attr_name(_attr) (_attr).attr.name
51
52struct vm_area_struct;
53
54struct bin_attribute {
55 struct attribute attr;
56 size_t size;
57 void *private;
58 ssize_t (*read)(struct kobject *, char *, loff_t, size_t);
59 ssize_t (*write)(struct kobject *, char *, loff_t, size_t);
60 int (*mmap)(struct kobject *, struct bin_attribute *attr,
61 struct vm_area_struct *vma);
62};
63
64struct sysfs_ops {
65 ssize_t (*show)(struct kobject *, struct attribute *,char *);
66 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
67};
68
69struct sysfs_dirent {
70 atomic_t s_count;
71 struct list_head s_sibling;
72 struct list_head s_children;
73 void * s_element;
74 int s_type;
75 umode_t s_mode;
76 struct dentry * s_dentry;
Maneesh Soni988d1862005-05-31 10:39:14 +053077 struct iattr * s_iattr;
NeilBrown4508a7a2006-03-20 17:53:53 +110078 atomic_t s_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
81#define SYSFS_ROOT 0x0001
82#define SYSFS_DIR 0x0002
83#define SYSFS_KOBJ_ATTR 0x0004
84#define SYSFS_KOBJ_BIN_ATTR 0x0008
85#define SYSFS_KOBJ_LINK 0x0020
86#define SYSFS_NOT_PINNED (SYSFS_KOBJ_ATTR | SYSFS_KOBJ_BIN_ATTR | SYSFS_KOBJ_LINK)
87
88#ifdef CONFIG_SYSFS
89
Andrew Morton4a7fb632006-08-14 22:43:17 -070090extern int __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -070091sysfs_create_dir(struct kobject *);
92
93extern void
94sysfs_remove_dir(struct kobject *);
95
Andrew Morton4a7fb632006-08-14 22:43:17 -070096extern int __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -070097sysfs_rename_dir(struct kobject *, const char *new_name);
98
Andrew Morton4a7fb632006-08-14 22:43:17 -070099extern int __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100sysfs_create_file(struct kobject *, const struct attribute *);
101
Andrew Morton4a7fb632006-08-14 22:43:17 -0700102extern int __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103sysfs_update_file(struct kobject *, const struct attribute *);
104
Andrew Morton4a7fb632006-08-14 22:43:17 -0700105extern int __must_check
Kay Sievers31e5abe2005-04-18 21:57:32 -0700106sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode);
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108extern void
109sysfs_remove_file(struct kobject *, const struct attribute *);
110
Andrew Morton4a7fb632006-08-14 22:43:17 -0700111extern int __must_check
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500112sysfs_create_link(struct kobject * kobj, struct kobject * target, const char * name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114extern void
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500115sysfs_remove_link(struct kobject *, const char * name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Andrew Morton4a7fb632006-08-14 22:43:17 -0700117int __must_check sysfs_create_bin_file(struct kobject *kobj,
118 struct bin_attribute *attr);
Randy.Dunlap995982c2006-07-10 23:05:25 -0700119void sysfs_remove_bin_file(struct kobject *kobj, struct bin_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Andrew Morton4a7fb632006-08-14 22:43:17 -0700121int __must_check sysfs_create_group(struct kobject *,
122 const struct attribute_group *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123void sysfs_remove_group(struct kobject *, const struct attribute_group *);
NeilBrown4508a7a2006-03-20 17:53:53 +1100124void sysfs_notify(struct kobject * k, char *dir, char *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126#else /* CONFIG_SYSFS */
127
128static inline int sysfs_create_dir(struct kobject * k)
129{
130 return 0;
131}
132
133static inline void sysfs_remove_dir(struct kobject * k)
134{
135 ;
136}
137
138static inline int sysfs_rename_dir(struct kobject * k, const char *new_name)
139{
140 return 0;
141}
142
143static inline int sysfs_create_file(struct kobject * k, const struct attribute * a)
144{
145 return 0;
146}
147
148static inline int sysfs_update_file(struct kobject * k, const struct attribute * a)
149{
150 return 0;
151}
Kay Sievers31e5abe2005-04-18 21:57:32 -0700152static inline int sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode)
153{
154 return 0;
155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157static inline void sysfs_remove_file(struct kobject * k, const struct attribute * a)
158{
159 ;
160}
161
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500162static inline int sysfs_create_link(struct kobject * k, struct kobject * t, const char * n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 return 0;
165}
166
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500167static inline void sysfs_remove_link(struct kobject * k, const char * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 ;
170}
171
172
173static inline int sysfs_create_bin_file(struct kobject * k, struct bin_attribute * a)
174{
175 return 0;
176}
177
178static inline int sysfs_remove_bin_file(struct kobject * k, struct bin_attribute * a)
179{
180 return 0;
181}
182
183static inline int sysfs_create_group(struct kobject * k, const struct attribute_group *g)
184{
185 return 0;
186}
187
188static inline void sysfs_remove_group(struct kobject * k, const struct attribute_group * g)
189{
190 ;
191}
192
NeilBrown4508a7a2006-03-20 17:53:53 +1100193static inline void sysfs_notify(struct kobject * k, char *dir, char *attr)
194{
195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#endif /* CONFIG_SYSFS */
198
199#endif /* _SYSFS_H_ */