Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** |
| 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 Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 10 | * We also support auxiliary drivers binding to devices of a certain class. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
| 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 Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 16 | * Auxiliary drivers registered with a NULL cls are registered as drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * 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> |
Pavel Machek | 438510f | 2005-04-16 15:25:24 -0700 | [diff] [blame] | 25 | #include <linux/pm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | |
| 28 | struct sys_device; |
Andi Kleen | 38457ab | 2010-01-05 12:48:02 +0100 | [diff] [blame] | 29 | struct sysdev_class_attribute; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | struct sysdev_class { |
Kay Sievers | af5ca3f | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 32 | const char *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | struct list_head drivers; |
Andi Kleen | 38457ab | 2010-01-05 12:48:02 +0100 | [diff] [blame] | 34 | struct sysdev_class_attribute **attrs; |
Rafael J. Wysocki | d47d81c | 2011-03-23 22:16:41 +0100 | [diff] [blame] | 35 | struct kset kset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | }; |
| 37 | |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 38 | struct sysdev_class_attribute { |
| 39 | struct attribute attr; |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 40 | ssize_t (*show)(struct sysdev_class *, struct sysdev_class_attribute *, |
| 41 | char *); |
| 42 | ssize_t (*store)(struct sysdev_class *, struct sysdev_class_attribute *, |
| 43 | const char *, size_t); |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 44 | }; |
| 45 | |
Mike Travis | 9d1fe323 | 2008-04-08 11:43:04 -0700 | [diff] [blame] | 46 | #define _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \ |
| 47 | { \ |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 48 | .attr = {.name = __stringify(_name), .mode = _mode }, \ |
| 49 | .show = _show, \ |
| 50 | .store = _store, \ |
Mike Travis | 9d1fe323 | 2008-04-08 11:43:04 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) \ |
| 54 | struct sysdev_class_attribute attr_##_name = \ |
| 55 | _SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | extern int sysdev_class_register(struct sysdev_class *); |
| 59 | extern void sysdev_class_unregister(struct sysdev_class *); |
| 60 | |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 61 | extern int sysdev_class_create_file(struct sysdev_class *, |
| 62 | struct sysdev_class_attribute *); |
| 63 | extern void sysdev_class_remove_file(struct sysdev_class *, |
| 64 | struct sysdev_class_attribute *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | /** |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 66 | * Auxiliary system device drivers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | */ |
| 68 | |
| 69 | struct sysdev_driver { |
| 70 | struct list_head entry; |
| 71 | int (*add)(struct sys_device *); |
| 72 | int (*remove)(struct sys_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | |
| 76 | extern int sysdev_driver_register(struct sysdev_class *, struct sysdev_driver *); |
| 77 | extern void sysdev_driver_unregister(struct sysdev_class *, struct sysdev_driver *); |
| 78 | |
| 79 | |
| 80 | /** |
| 81 | * sys_devices can be simplified a lot from regular devices, because they're |
| 82 | * simply not as versatile. |
| 83 | */ |
| 84 | |
| 85 | struct sys_device { |
| 86 | u32 id; |
| 87 | struct sysdev_class * cls; |
| 88 | struct kobject kobj; |
| 89 | }; |
| 90 | |
| 91 | extern int sysdev_register(struct sys_device *); |
| 92 | extern void sysdev_unregister(struct sys_device *); |
| 93 | |
| 94 | |
| 95 | struct sysdev_attribute { |
| 96 | struct attribute attr; |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 97 | ssize_t (*show)(struct sys_device *, struct sysdev_attribute *, char *); |
| 98 | ssize_t (*store)(struct sys_device *, struct sysdev_attribute *, |
| 99 | const char *, size_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | |
Mike Travis | 9d1fe323 | 2008-04-08 11:43:04 -0700 | [diff] [blame] | 103 | #define _SYSDEV_ATTR(_name, _mode, _show, _store) \ |
Olof Johansson | 7583b6e | 2007-01-28 21:24:57 -0600 | [diff] [blame] | 104 | { \ |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 105 | .attr = { .name = __stringify(_name), .mode = _mode }, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | .show = _show, \ |
| 107 | .store = _store, \ |
Olof Johansson | 7583b6e | 2007-01-28 21:24:57 -0600 | [diff] [blame] | 108 | } |
| 109 | |
Mike Travis | 9d1fe323 | 2008-04-08 11:43:04 -0700 | [diff] [blame] | 110 | #define SYSDEV_ATTR(_name, _mode, _show, _store) \ |
| 111 | struct sysdev_attribute attr_##_name = \ |
| 112 | _SYSDEV_ATTR(_name, _mode, _show, _store); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | extern int sysdev_create_file(struct sys_device *, struct sysdev_attribute *); |
| 115 | extern void sysdev_remove_file(struct sys_device *, struct sysdev_attribute *); |
| 116 | |
Andi Kleen | 1e395ab | 2010-01-05 12:48:05 +0100 | [diff] [blame] | 117 | /* Create/remove NULL terminated attribute list */ |
| 118 | static inline int |
| 119 | sysdev_create_files(struct sys_device *d, struct sysdev_attribute **a) |
| 120 | { |
| 121 | return sysfs_create_files(&d->kobj, (const struct attribute **)a); |
| 122 | } |
| 123 | |
| 124 | static inline void |
| 125 | sysdev_remove_files(struct sys_device *d, struct sysdev_attribute **a) |
| 126 | { |
| 127 | return sysfs_remove_files(&d->kobj, (const struct attribute **)a); |
| 128 | } |
| 129 | |
Andi Kleen | 9800794 | 2008-07-01 18:48:42 +0200 | [diff] [blame] | 130 | struct sysdev_ext_attribute { |
| 131 | struct sysdev_attribute attr; |
| 132 | void *var; |
| 133 | }; |
| 134 | |
| 135 | /* |
| 136 | * Support for simple variable sysdev attributes. |
| 137 | * The pointer to the variable is stored in a sysdev_ext_attribute |
| 138 | */ |
| 139 | |
| 140 | /* Add more types as needed */ |
| 141 | |
| 142 | extern ssize_t sysdev_show_ulong(struct sys_device *, struct sysdev_attribute *, |
| 143 | char *); |
| 144 | extern ssize_t sysdev_store_ulong(struct sys_device *, |
| 145 | struct sysdev_attribute *, const char *, size_t); |
| 146 | extern ssize_t sysdev_show_int(struct sys_device *, struct sysdev_attribute *, |
| 147 | char *); |
| 148 | extern ssize_t sysdev_store_int(struct sys_device *, |
| 149 | struct sysdev_attribute *, const char *, size_t); |
| 150 | |
| 151 | #define _SYSDEV_ULONG_ATTR(_name, _mode, _var) \ |
| 152 | { _SYSDEV_ATTR(_name, _mode, sysdev_show_ulong, sysdev_store_ulong), \ |
| 153 | &(_var) } |
| 154 | #define SYSDEV_ULONG_ATTR(_name, _mode, _var) \ |
| 155 | struct sysdev_ext_attribute attr_##_name = \ |
| 156 | _SYSDEV_ULONG_ATTR(_name, _mode, _var); |
| 157 | #define _SYSDEV_INT_ATTR(_name, _mode, _var) \ |
| 158 | { _SYSDEV_ATTR(_name, _mode, sysdev_show_int, sysdev_store_int), \ |
| 159 | &(_var) } |
| 160 | #define SYSDEV_INT_ATTR(_name, _mode, _var) \ |
| 161 | struct sysdev_ext_attribute attr_##_name = \ |
| 162 | _SYSDEV_INT_ATTR(_name, _mode, _var); |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | #endif /* _SYSDEV_H_ */ |