blob: dfb078db8ebbaacc6528b900e5bed06ced263082 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * System devices follow a slightly different driver model.
3 * They don't need to do dynammic driver binding, can't be probed,
4 * and don't reside on any type of peripheral bus.
5 * So, we represent and treat them a little differently.
6 *
7 * We still have a notion of a driver for a system device, because we still
8 * want to perform basic operations on these devices.
9 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010 * We also support auxiliary drivers binding to devices of a certain class.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * This allows configurable drivers to register themselves for devices of
13 * a certain type. And, it allows class definitions to reside in generic
14 * code while arch-specific code can register specific drivers.
15 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030016 * Auxiliary drivers registered with a NULL cls are registered as drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * for all system devices, and get notification calls for each device.
18 */
19
20
21#ifndef _SYSDEV_H_
22#define _SYSDEV_H_
23
24#include <linux/kobject.h>
Ralf Baechle3367b992007-05-08 00:27:52 -070025#include <linux/module.h>
Pavel Machek438510f2005-04-16 15:25:24 -070026#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28
29struct sys_device;
Andi Kleen38457ab2010-01-05 12:48:02 +010030struct sysdev_class_attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32struct sysdev_class {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +010033 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 struct list_head drivers;
Andi Kleen38457ab2010-01-05 12:48:02 +010035 struct sysdev_class_attribute **attrs;
Rafael J. Wysockid47d81c2011-03-23 22:16:41 +010036 struct kset kset;
37#ifndef CONFIG_ARCH_NO_SYSDEV_OPS
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 /* Default operations for these types of devices */
39 int (*shutdown)(struct sys_device *);
Pavel Machek438510f2005-04-16 15:25:24 -070040 int (*suspend)(struct sys_device *, pm_message_t state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 int (*resume)(struct sys_device *);
Rafael J. Wysockid47d81c2011-03-23 22:16:41 +010042#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
Shaohua Li670dd902006-05-08 13:45:57 +080045struct sysdev_class_attribute {
46 struct attribute attr;
Andi Kleenc9be0a32010-01-05 12:47:58 +010047 ssize_t (*show)(struct sysdev_class *, struct sysdev_class_attribute *,
48 char *);
49 ssize_t (*store)(struct sysdev_class *, struct sysdev_class_attribute *,
50 const char *, size_t);
Shaohua Li670dd902006-05-08 13:45:57 +080051};
52
Mike Travis9d1fe3232008-04-08 11:43:04 -070053#define _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \
54{ \
Shaohua Li670dd902006-05-08 13:45:57 +080055 .attr = {.name = __stringify(_name), .mode = _mode }, \
56 .show = _show, \
57 .store = _store, \
Mike Travis9d1fe3232008-04-08 11:43:04 -070058}
59
60#define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \
61 struct sysdev_class_attribute attr_##_name = \
62 _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store)
Shaohua Li670dd902006-05-08 13:45:57 +080063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65extern int sysdev_class_register(struct sysdev_class *);
66extern void sysdev_class_unregister(struct sysdev_class *);
67
Shaohua Li670dd902006-05-08 13:45:57 +080068extern int sysdev_class_create_file(struct sysdev_class *,
69 struct sysdev_class_attribute *);
70extern void sysdev_class_remove_file(struct sysdev_class *,
71 struct sysdev_class_attribute *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -030073 * Auxiliary system device drivers.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
75
76struct sysdev_driver {
77 struct list_head entry;
78 int (*add)(struct sys_device *);
79 int (*remove)(struct sys_device *);
Rafael J. Wysockid47d81c2011-03-23 22:16:41 +010080#ifndef CONFIG_ARCH_NO_SYSDEV_OPS
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 int (*shutdown)(struct sys_device *);
Pavel Machek438510f2005-04-16 15:25:24 -070082 int (*suspend)(struct sys_device *, pm_message_t state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 int (*resume)(struct sys_device *);
Rafael J. Wysockid47d81c2011-03-23 22:16:41 +010084#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
87
88extern int sysdev_driver_register(struct sysdev_class *, struct sysdev_driver *);
89extern void sysdev_driver_unregister(struct sysdev_class *, struct sysdev_driver *);
90
91
92/**
93 * sys_devices can be simplified a lot from regular devices, because they're
94 * simply not as versatile.
95 */
96
97struct sys_device {
98 u32 id;
99 struct sysdev_class * cls;
100 struct kobject kobj;
101};
102
103extern int sysdev_register(struct sys_device *);
104extern void sysdev_unregister(struct sys_device *);
105
106
107struct sysdev_attribute {
108 struct attribute attr;
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200109 ssize_t (*show)(struct sys_device *, struct sysdev_attribute *, char *);
110 ssize_t (*store)(struct sys_device *, struct sysdev_attribute *,
111 const char *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
114
Mike Travis9d1fe3232008-04-08 11:43:04 -0700115#define _SYSDEV_ATTR(_name, _mode, _show, _store) \
Olof Johansson7583b6e2007-01-28 21:24:57 -0600116{ \
Tejun Heo7b595752007-06-14 03:45:17 +0900117 .attr = { .name = __stringify(_name), .mode = _mode }, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .show = _show, \
119 .store = _store, \
Olof Johansson7583b6e2007-01-28 21:24:57 -0600120}
121
Mike Travis9d1fe3232008-04-08 11:43:04 -0700122#define SYSDEV_ATTR(_name, _mode, _show, _store) \
123 struct sysdev_attribute attr_##_name = \
124 _SYSDEV_ATTR(_name, _mode, _show, _store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126extern int sysdev_create_file(struct sys_device *, struct sysdev_attribute *);
127extern void sysdev_remove_file(struct sys_device *, struct sysdev_attribute *);
128
Andi Kleen1e395ab2010-01-05 12:48:05 +0100129/* Create/remove NULL terminated attribute list */
130static inline int
131sysdev_create_files(struct sys_device *d, struct sysdev_attribute **a)
132{
133 return sysfs_create_files(&d->kobj, (const struct attribute **)a);
134}
135
136static inline void
137sysdev_remove_files(struct sys_device *d, struct sysdev_attribute **a)
138{
139 return sysfs_remove_files(&d->kobj, (const struct attribute **)a);
140}
141
Andi Kleen98007942008-07-01 18:48:42 +0200142struct sysdev_ext_attribute {
143 struct sysdev_attribute attr;
144 void *var;
145};
146
147/*
148 * Support for simple variable sysdev attributes.
149 * The pointer to the variable is stored in a sysdev_ext_attribute
150 */
151
152/* Add more types as needed */
153
154extern ssize_t sysdev_show_ulong(struct sys_device *, struct sysdev_attribute *,
155 char *);
156extern ssize_t sysdev_store_ulong(struct sys_device *,
157 struct sysdev_attribute *, const char *, size_t);
158extern ssize_t sysdev_show_int(struct sys_device *, struct sysdev_attribute *,
159 char *);
160extern ssize_t sysdev_store_int(struct sys_device *,
161 struct sysdev_attribute *, const char *, size_t);
162
163#define _SYSDEV_ULONG_ATTR(_name, _mode, _var) \
164 { _SYSDEV_ATTR(_name, _mode, sysdev_show_ulong, sysdev_store_ulong), \
165 &(_var) }
166#define SYSDEV_ULONG_ATTR(_name, _mode, _var) \
167 struct sysdev_ext_attribute attr_##_name = \
168 _SYSDEV_ULONG_ATTR(_name, _mode, _var);
169#define _SYSDEV_INT_ATTR(_name, _mode, _var) \
170 { _SYSDEV_ATTR(_name, _mode, sysdev_show_int, sysdev_store_int), \
171 &(_var) }
172#define SYSDEV_INT_ATTR(_name, _mode, _var) \
173 struct sysdev_ext_attribute attr_##_name = \
174 _SYSDEV_INT_ATTR(_name, _mode, _var);
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#endif /* _SYSDEV_H_ */