2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* sysfs.h - definitions for the device driver filesystem
|
|
|
|
*
|
|
|
|
* Copyright (c) 2001,2002 Patrick Mochel
|
|
|
|
* Copyright (c) 2004 Silicon Graphics, Inc.
|
|
|
|
*
|
|
|
|
* Please see Documentation/filesystems/sysfs.txt for more information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SYSFS_H_
|
|
|
|
#define _SYSFS_H_
|
|
|
|
|
2006-08-15 07:43:17 +02:00
|
|
|
#include <linux/compiler.h>
|
2007-03-18 13:58:08 +01:00
|
|
|
#include <linux/errno.h>
|
2007-01-17 17:51:18 +01:00
|
|
|
#include <linux/list.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/atomic.h>
|
|
|
|
|
|
|
|
struct kobject;
|
|
|
|
struct module;
|
2007-01-24 20:35:52 +01:00
|
|
|
struct nameidata;
|
2007-02-16 14:35:25 +01:00
|
|
|
struct dentry;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
struct attribute {
|
2005-04-29 07:58:46 +02:00
|
|
|
const char * name;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct module * owner;
|
|
|
|
mode_t mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct attribute_group {
|
2005-04-29 07:58:46 +02:00
|
|
|
const char * name;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct attribute ** attrs;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use these macros to make defining attributes easier. See include/linux/device.h
|
|
|
|
* for examples..
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define __ATTR(_name,_mode,_show,_store) { \
|
|
|
|
.attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, \
|
|
|
|
.show = _show, \
|
|
|
|
.store = _store, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define __ATTR_RO(_name) { \
|
|
|
|
.attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, \
|
|
|
|
.show = _name##_show, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define __ATTR_NULL { .attr = { .name = NULL } }
|
|
|
|
|
|
|
|
#define attr_name(_attr) (_attr).attr.name
|
|
|
|
|
|
|
|
struct vm_area_struct;
|
|
|
|
|
|
|
|
struct bin_attribute {
|
|
|
|
struct attribute attr;
|
|
|
|
size_t size;
|
|
|
|
void *private;
|
|
|
|
ssize_t (*read)(struct kobject *, char *, loff_t, size_t);
|
|
|
|
ssize_t (*write)(struct kobject *, char *, loff_t, size_t);
|
|
|
|
int (*mmap)(struct kobject *, struct bin_attribute *attr,
|
|
|
|
struct vm_area_struct *vma);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sysfs_ops {
|
|
|
|
ssize_t (*show)(struct kobject *, struct attribute *,char *);
|
|
|
|
ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SYSFS_ROOT 0x0001
|
|
|
|
#define SYSFS_DIR 0x0002
|
|
|
|
#define SYSFS_KOBJ_ATTR 0x0004
|
|
|
|
#define SYSFS_KOBJ_BIN_ATTR 0x0008
|
|
|
|
#define SYSFS_KOBJ_LINK 0x0020
|
|
|
|
#define SYSFS_NOT_PINNED (SYSFS_KOBJ_ATTR | SYSFS_KOBJ_BIN_ATTR | SYSFS_KOBJ_LINK)
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYSFS
|
|
|
|
|
2007-03-15 20:50:34 +01:00
|
|
|
extern int sysfs_schedule_callback(struct kobject *kobj,
|
2007-04-26 09:12:04 +02:00
|
|
|
void (*func)(void *), void *data, struct module *owner);
|
2007-03-15 20:50:34 +01:00
|
|
|
|
2006-08-15 07:43:17 +02:00
|
|
|
extern int __must_check
|
2007-01-24 20:35:52 +01:00
|
|
|
sysfs_create_dir(struct kobject *, struct dentry *);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
extern void
|
|
|
|
sysfs_remove_dir(struct kobject *);
|
|
|
|
|
2006-08-15 07:43:17 +02:00
|
|
|
extern int __must_check
|
2007-01-24 20:35:52 +01:00
|
|
|
sysfs_rename_dir(struct kobject *, struct dentry *, const char *new_name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-11-20 17:07:51 +01:00
|
|
|
extern int __must_check
|
|
|
|
sysfs_move_dir(struct kobject *, struct kobject *);
|
|
|
|
|
2006-08-15 07:43:17 +02:00
|
|
|
extern int __must_check
|
2005-04-17 00:20:36 +02:00
|
|
|
sysfs_create_file(struct kobject *, const struct attribute *);
|
|
|
|
|
2006-08-15 07:43:17 +02:00
|
|
|
extern int __must_check
|
2005-04-17 00:20:36 +02:00
|
|
|
sysfs_update_file(struct kobject *, const struct attribute *);
|
|
|
|
|
2006-08-15 07:43:17 +02:00
|
|
|
extern int __must_check
|
2005-04-19 06:57:32 +02:00
|
|
|
sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
extern void
|
|
|
|
sysfs_remove_file(struct kobject *, const struct attribute *);
|
|
|
|
|
2006-08-15 07:43:17 +02:00
|
|
|
extern int __must_check
|
2005-04-26 09:31:08 +02:00
|
|
|
sysfs_create_link(struct kobject * kobj, struct kobject * target, const char * name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
extern void
|
2005-04-26 09:31:08 +02:00
|
|
|
sysfs_remove_link(struct kobject *, const char * name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-08-15 07:43:17 +02:00
|
|
|
int __must_check sysfs_create_bin_file(struct kobject *kobj,
|
|
|
|
struct bin_attribute *attr);
|
2006-07-11 08:05:25 +02:00
|
|
|
void sysfs_remove_bin_file(struct kobject *kobj, struct bin_attribute *attr);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-08-15 07:43:17 +02:00
|
|
|
int __must_check sysfs_create_group(struct kobject *,
|
|
|
|
const struct attribute_group *);
|
2005-04-17 00:20:36 +02:00
|
|
|
void sysfs_remove_group(struct kobject *, const struct attribute_group *);
|
2007-02-20 21:02:44 +01:00
|
|
|
int sysfs_add_file_to_group(struct kobject *kobj,
|
|
|
|
const struct attribute *attr, const char *group);
|
|
|
|
void sysfs_remove_file_from_group(struct kobject *kobj,
|
|
|
|
const struct attribute *attr, const char *group);
|
|
|
|
|
2006-03-20 07:53:53 +01:00
|
|
|
void sysfs_notify(struct kobject * k, char *dir, char *attr);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-01-24 20:35:52 +01:00
|
|
|
|
|
|
|
extern int sysfs_make_shadowed_dir(struct kobject *kobj,
|
|
|
|
void * (*follow_link)(struct dentry *, struct nameidata *));
|
|
|
|
extern struct dentry *sysfs_create_shadow_dir(struct kobject *kobj);
|
|
|
|
extern void sysfs_remove_shadow_dir(struct dentry *dir);
|
|
|
|
|
2006-08-15 07:43:23 +02:00
|
|
|
extern int __must_check sysfs_init(void);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#else /* CONFIG_SYSFS */
|
|
|
|
|
2007-03-15 20:50:34 +01:00
|
|
|
static inline int sysfs_schedule_callback(struct kobject *kobj,
|
2007-04-26 09:12:04 +02:00
|
|
|
void (*func)(void *), void *data, struct module *owner)
|
2007-03-15 20:50:34 +01:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2007-01-24 20:35:52 +01:00
|
|
|
static inline int sysfs_create_dir(struct kobject * k, struct dentry *shadow)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sysfs_remove_dir(struct kobject * k)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2007-01-24 20:35:52 +01:00
|
|
|
static inline int sysfs_rename_dir(struct kobject * k,
|
|
|
|
struct dentry *new_parent,
|
|
|
|
const char *new_name)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-20 17:07:51 +01:00
|
|
|
static inline int sysfs_move_dir(struct kobject * k, struct kobject * new_parent)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
static inline int sysfs_create_file(struct kobject * k, const struct attribute * a)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int sysfs_update_file(struct kobject * k, const struct attribute * a)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-19 06:57:32 +02:00
|
|
|
static inline int sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
static inline void sysfs_remove_file(struct kobject * k, const struct attribute * a)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2005-04-26 09:31:08 +02:00
|
|
|
static inline int sysfs_create_link(struct kobject * k, struct kobject * t, const char * n)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-26 09:31:08 +02:00
|
|
|
static inline void sysfs_remove_link(struct kobject * k, const char * name)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline int sysfs_create_bin_file(struct kobject * k, struct bin_attribute * a)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int sysfs_remove_bin_file(struct kobject * k, struct bin_attribute * a)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int sysfs_create_group(struct kobject * k, const struct attribute_group *g)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sysfs_remove_group(struct kobject * k, const struct attribute_group * g)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2007-02-20 21:02:44 +01:00
|
|
|
static inline int sysfs_add_file_to_group(struct kobject *kobj,
|
|
|
|
const struct attribute *attr, const char *group)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sysfs_remove_file_from_group(struct kobject *kobj,
|
2007-03-01 13:40:21 +01:00
|
|
|
const struct attribute *attr, const char *group)
|
2007-02-20 21:02:44 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-03-20 07:53:53 +01:00
|
|
|
static inline void sysfs_notify(struct kobject * k, char *dir, char *attr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-01-24 20:35:52 +01:00
|
|
|
static inline int sysfs_make_shadowed_dir(struct kobject *kobj,
|
|
|
|
void * (*follow_link)(struct dentry *, struct nameidata *))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-08-15 07:43:23 +02:00
|
|
|
static inline int __must_check sysfs_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* CONFIG_SYSFS */
|
|
|
|
|
|
|
|
#endif /* _SYSFS_H_ */
|