2 * attribute_container.c - implementation of a simple container for classes
4 * Copyright (c) 2005 - James Bottomley <James.Bottomley@steeleye.com>
6 * This file is licensed under GPLv2
8 * The basic idea here is to enable a device to be attached to an
9 * aritrary numer of classes without having to allocate storage for them.
10 * Instead, the contained classes select the devices they need to attach
11 * to via a matching function.
14 #include <linux/attribute_container.h>
15 #include <linux/init.h>
16 #include <linux/device.h>
17 #include <linux/kernel.h>
18 #include <linux/slab.h>
19 #include <linux/list.h>
20 #include <linux/module.h>
22 /* This is a private structure used to tie the classdev and the
23 * container .. it should never be visible outside this file */
24 struct internal_container
{
25 struct list_head node
;
26 struct attribute_container
*cont
;
27 struct class_device classdev
;
31 * attribute_container_classdev_to_container - given a classdev, return the container
33 * @classdev: the class device created by attribute_container_add_device.
35 * Returns the container associated with this classdev.
37 struct attribute_container
*
38 attribute_container_classdev_to_container(struct class_device
*classdev
)
40 struct internal_container
*ic
=
41 container_of(classdev
, struct internal_container
, classdev
);
44 EXPORT_SYMBOL_GPL(attribute_container_classdev_to_container
);
46 static struct list_head attribute_container_list
;
48 static DECLARE_MUTEX(attribute_container_mutex
);
51 * attribute_container_register - register an attribute container
53 * @cont: The container to register. This must be allocated by the
54 * callee and should also be zeroed by it.
57 attribute_container_register(struct attribute_container
*cont
)
59 INIT_LIST_HEAD(&cont
->node
);
60 INIT_LIST_HEAD(&cont
->containers
);
62 down(&attribute_container_mutex
);
63 list_add_tail(&cont
->node
, &attribute_container_list
);
64 up(&attribute_container_mutex
);
68 EXPORT_SYMBOL_GPL(attribute_container_register
);
71 * attribute_container_unregister - remove a container registration
73 * @cont: previously registered container to remove
76 attribute_container_unregister(struct attribute_container
*cont
)
79 down(&attribute_container_mutex
);
80 if (!list_empty(&cont
->containers
))
83 list_del(&cont
->node
);
85 up(&attribute_container_mutex
);
89 EXPORT_SYMBOL_GPL(attribute_container_unregister
);
91 /* private function used as class release */
92 static void attribute_container_release(struct class_device
*classdev
)
94 struct internal_container
*ic
95 = container_of(classdev
, struct internal_container
, classdev
);
96 struct device
*dev
= classdev
->dev
;
103 * attribute_container_add_device - see if any container is interested in dev
105 * @dev: device to add attributes to
106 * @fn: function to trigger addition of class device.
108 * This function allocates storage for the class device(s) to be
109 * attached to dev (one for each matching attribute_container). If no
110 * fn is provided, the code will simply register the class device via
111 * class_device_add. If a function is provided, it is expected to add
112 * the class device at the appropriate time. One of the things that
113 * might be necessary is to allocate and initialise the classdev and
114 * then add it a later time. To do this, call this routine for
115 * allocation and initialisation and then use
116 * attribute_container_device_trigger() to call class_device_add() on
117 * it. Note: after this, the class device contains a reference to dev
118 * which is not relinquished until the release of the classdev.
121 attribute_container_add_device(struct device
*dev
,
122 int (*fn
)(struct attribute_container
*,
124 struct class_device
*))
126 struct attribute_container
*cont
;
128 down(&attribute_container_mutex
);
129 list_for_each_entry(cont
, &attribute_container_list
, node
) {
130 struct internal_container
*ic
;
132 if (attribute_container_no_classdevs(cont
))
135 if (!cont
->match(cont
, dev
))
137 ic
= kmalloc(sizeof(struct internal_container
), GFP_KERNEL
);
139 dev_printk(KERN_ERR
, dev
, "failed to allocate class container\n");
142 memset(ic
, 0, sizeof(struct internal_container
));
143 INIT_LIST_HEAD(&ic
->node
);
145 class_device_initialize(&ic
->classdev
);
146 ic
->classdev
.dev
= get_device(dev
);
147 ic
->classdev
.class = cont
->class;
148 cont
->class->release
= attribute_container_release
;
149 strcpy(ic
->classdev
.class_id
, dev
->bus_id
);
151 fn(cont
, dev
, &ic
->classdev
);
153 attribute_container_add_class_device(&ic
->classdev
);
154 list_add_tail(&ic
->node
, &cont
->containers
);
156 up(&attribute_container_mutex
);
160 * attribute_container_remove_device - make device eligible for removal.
162 * @dev: The generic device
163 * @fn: A function to call to remove the device
165 * This routine triggers device removal. If fn is NULL, then it is
166 * simply done via class_device_unregister (note that if something
167 * still has a reference to the classdev, then the memory occupied
168 * will not be freed until the classdev is released). If you want a
169 * two phase release: remove from visibility and then delete the
170 * device, then you should use this routine with a fn that calls
171 * class_device_del() and then use
172 * attribute_container_device_trigger() to do the final put on the
176 attribute_container_remove_device(struct device
*dev
,
177 void (*fn
)(struct attribute_container
*,
179 struct class_device
*))
181 struct attribute_container
*cont
;
183 down(&attribute_container_mutex
);
184 list_for_each_entry(cont
, &attribute_container_list
, node
) {
185 struct internal_container
*ic
, *tmp
;
187 if (attribute_container_no_classdevs(cont
))
190 if (!cont
->match(cont
, dev
))
192 list_for_each_entry_safe(ic
, tmp
, &cont
->containers
, node
) {
193 if (dev
!= ic
->classdev
.dev
)
197 fn(cont
, dev
, &ic
->classdev
);
199 attribute_container_remove_attrs(&ic
->classdev
);
200 class_device_unregister(&ic
->classdev
);
204 up(&attribute_container_mutex
);
206 EXPORT_SYMBOL_GPL(attribute_container_remove_device
);
209 * attribute_container_device_trigger - execute a trigger for each matching classdev
211 * @dev: The generic device to run the trigger for
212 * @fn the function to execute for each classdev.
214 * This funcion is for executing a trigger when you need to know both
215 * the container and the classdev. If you only care about the
216 * container, then use attribute_container_trigger() instead.
219 attribute_container_device_trigger(struct device
*dev
,
220 int (*fn
)(struct attribute_container
*,
222 struct class_device
*))
224 struct attribute_container
*cont
;
226 down(&attribute_container_mutex
);
227 list_for_each_entry(cont
, &attribute_container_list
, node
) {
228 struct internal_container
*ic
, *tmp
;
230 if (!cont
->match(cont
, dev
))
233 list_for_each_entry_safe(ic
, tmp
, &cont
->containers
, node
) {
234 if (dev
== ic
->classdev
.dev
)
235 fn(cont
, dev
, &ic
->classdev
);
238 up(&attribute_container_mutex
);
240 EXPORT_SYMBOL_GPL(attribute_container_device_trigger
);
243 * attribute_container_trigger - trigger a function for each matching container
245 * @dev: The generic device to activate the trigger for
246 * @fn: the function to trigger
248 * This routine triggers a function that only needs to know the
249 * matching containers (not the classdev) associated with a device.
250 * It is more lightweight than attribute_container_device_trigger, so
251 * should be used in preference unless the triggering function
252 * actually needs to know the classdev.
255 attribute_container_trigger(struct device
*dev
,
256 int (*fn
)(struct attribute_container
*,
259 struct attribute_container
*cont
;
261 down(&attribute_container_mutex
);
262 list_for_each_entry(cont
, &attribute_container_list
, node
) {
263 if (cont
->match(cont
, dev
))
266 up(&attribute_container_mutex
);
268 EXPORT_SYMBOL_GPL(attribute_container_trigger
);
271 * attribute_container_add_attrs - add attributes
273 * @classdev: The class device
275 * This simply creates all the class device sysfs files from the
276 * attributes listed in the container
279 attribute_container_add_attrs(struct class_device
*classdev
)
281 struct attribute_container
*cont
=
282 attribute_container_classdev_to_container(classdev
);
283 struct class_device_attribute
**attrs
= cont
->attrs
;
289 for (i
= 0; attrs
[i
]; i
++) {
290 error
= class_device_create_file(classdev
, attrs
[i
]);
297 EXPORT_SYMBOL_GPL(attribute_container_add_attrs
);
300 * attribute_container_add_class_device - same function as class_device_add
302 * @classdev: the class device to add
304 * This performs essentially the same function as class_device_add except for
305 * attribute containers, namely add the classdev to the system and then
306 * create the attribute files
309 attribute_container_add_class_device(struct class_device
*classdev
)
311 int error
= class_device_add(classdev
);
314 return attribute_container_add_attrs(classdev
);
316 EXPORT_SYMBOL_GPL(attribute_container_add_class_device
);
319 * attribute_container_add_class_device_adapter - simple adapter for triggers
321 * This function is identical to attribute_container_add_class_device except
322 * that it is designed to be called from the triggers
325 attribute_container_add_class_device_adapter(struct attribute_container
*cont
,
327 struct class_device
*classdev
)
329 return attribute_container_add_class_device(classdev
);
331 EXPORT_SYMBOL_GPL(attribute_container_add_class_device_adapter
);
334 * attribute_container_remove_attrs - remove any attribute files
336 * @classdev: The class device to remove the files from
340 attribute_container_remove_attrs(struct class_device
*classdev
)
342 struct attribute_container
*cont
=
343 attribute_container_classdev_to_container(classdev
);
344 struct class_device_attribute
**attrs
= cont
->attrs
;
350 for (i
= 0; attrs
[i
]; i
++)
351 class_device_remove_file(classdev
, attrs
[i
]);
353 EXPORT_SYMBOL_GPL(attribute_container_remove_attrs
);
356 * attribute_container_class_device_del - equivalent of class_device_del
358 * @classdev: the class device
360 * This function simply removes all the attribute files and then calls
364 attribute_container_class_device_del(struct class_device
*classdev
)
366 attribute_container_remove_attrs(classdev
);
367 class_device_del(classdev
);
369 EXPORT_SYMBOL_GPL(attribute_container_class_device_del
);
372 attribute_container_init(void)
374 INIT_LIST_HEAD(&attribute_container_list
);