Greg Kroah-Hartman | 989d42e | 2017-11-07 17:30:07 +0100 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * attribute_container.c - implementation of a simple container for classes |
| 4 | * |
| 5 | * Copyright (c) 2005 - James Bottomley <James.Bottomley@steeleye.com> |
| 6 | * |
| 7 | * This file is licensed under GPLv2 |
| 8 | * |
| 9 | * The basic idea here is to enable a device to be attached to an |
| 10 | * aritrary numer of classes without having to allocate storage for them. |
| 11 | * Instead, the contained classes select the devices they need to attach |
| 12 | * to via a matching function. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/attribute_container.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Michael S. Tsirkin | f8916c1 | 2007-06-10 22:39:12 +0300 | [diff] [blame] | 21 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Ben Dooks | a1bdc7a | 2005-10-13 17:54:41 +0100 | [diff] [blame] | 23 | #include "base.h" |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | /* This is a private structure used to tie the classdev and the |
| 26 | * container .. it should never be visible outside this file */ |
| 27 | struct internal_container { |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 28 | struct klist_node node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | struct attribute_container *cont; |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 30 | struct device classdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | }; |
| 32 | |
Linus Torvalds | caf39e8 | 2005-09-07 18:44:33 -0700 | [diff] [blame] | 33 | static void internal_container_klist_get(struct klist_node *n) |
| 34 | { |
| 35 | struct internal_container *ic = |
| 36 | container_of(n, struct internal_container, node); |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 37 | get_device(&ic->classdev); |
Linus Torvalds | caf39e8 | 2005-09-07 18:44:33 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | static void internal_container_klist_put(struct klist_node *n) |
| 41 | { |
| 42 | struct internal_container *ic = |
| 43 | container_of(n, struct internal_container, node); |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 44 | put_device(&ic->classdev); |
Linus Torvalds | caf39e8 | 2005-09-07 18:44:33 -0700 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /** |
| 49 | * attribute_container_classdev_to_container - given a classdev, return the container |
| 50 | * |
| 51 | * @classdev: the class device created by attribute_container_add_device. |
| 52 | * |
| 53 | * Returns the container associated with this classdev. |
| 54 | */ |
| 55 | struct attribute_container * |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 56 | attribute_container_classdev_to_container(struct device *classdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
| 58 | struct internal_container *ic = |
| 59 | container_of(classdev, struct internal_container, classdev); |
| 60 | return ic->cont; |
| 61 | } |
| 62 | EXPORT_SYMBOL_GPL(attribute_container_classdev_to_container); |
| 63 | |
Denis Cheng | db1118a | 2007-12-06 02:24:40 +0800 | [diff] [blame] | 64 | static LIST_HEAD(attribute_container_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 66 | static DEFINE_MUTEX(attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | /** |
| 69 | * attribute_container_register - register an attribute container |
| 70 | * |
| 71 | * @cont: The container to register. This must be allocated by the |
| 72 | * callee and should also be zeroed by it. |
| 73 | */ |
| 74 | int |
| 75 | attribute_container_register(struct attribute_container *cont) |
| 76 | { |
| 77 | INIT_LIST_HEAD(&cont->node); |
Tina Johnson | 287f9bd | 2014-08-12 02:54:09 +0530 | [diff] [blame] | 78 | klist_init(&cont->containers, internal_container_klist_get, |
Linus Torvalds | caf39e8 | 2005-09-07 18:44:33 -0700 | [diff] [blame] | 79 | internal_container_klist_put); |
Tina Johnson | 24a7d36 | 2014-08-12 02:54:08 +0530 | [diff] [blame] | 80 | |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 81 | mutex_lock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | list_add_tail(&cont->node, &attribute_container_list); |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 83 | mutex_unlock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | return 0; |
| 86 | } |
| 87 | EXPORT_SYMBOL_GPL(attribute_container_register); |
| 88 | |
| 89 | /** |
| 90 | * attribute_container_unregister - remove a container registration |
| 91 | * |
| 92 | * @cont: previously registered container to remove |
| 93 | */ |
| 94 | int |
| 95 | attribute_container_unregister(struct attribute_container *cont) |
| 96 | { |
| 97 | int retval = -EBUSY; |
Cosmin Dragomir | 481026d | 2015-03-08 12:30:14 +0200 | [diff] [blame] | 98 | |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 99 | mutex_lock(&attribute_container_mutex); |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 100 | spin_lock(&cont->containers.k_lock); |
| 101 | if (!list_empty(&cont->containers.k_list)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | goto out; |
| 103 | retval = 0; |
| 104 | list_del(&cont->node); |
| 105 | out: |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 106 | spin_unlock(&cont->containers.k_lock); |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 107 | mutex_unlock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | return retval; |
Tina Johnson | 24a7d36 | 2014-08-12 02:54:08 +0530 | [diff] [blame] | 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | EXPORT_SYMBOL_GPL(attribute_container_unregister); |
| 112 | |
| 113 | /* private function used as class release */ |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 114 | static void attribute_container_release(struct device *classdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | { |
Tina Johnson | 24a7d36 | 2014-08-12 02:54:08 +0530 | [diff] [blame] | 116 | struct internal_container *ic |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | = container_of(classdev, struct internal_container, classdev); |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 118 | struct device *dev = classdev->parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
| 120 | kfree(ic); |
| 121 | put_device(dev); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * attribute_container_add_device - see if any container is interested in dev |
| 126 | * |
| 127 | * @dev: device to add attributes to |
| 128 | * @fn: function to trigger addition of class device. |
| 129 | * |
| 130 | * This function allocates storage for the class device(s) to be |
| 131 | * attached to dev (one for each matching attribute_container). If no |
| 132 | * fn is provided, the code will simply register the class device via |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 133 | * device_add. If a function is provided, it is expected to add |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | * the class device at the appropriate time. One of the things that |
| 135 | * might be necessary is to allocate and initialise the classdev and |
| 136 | * then add it a later time. To do this, call this routine for |
| 137 | * allocation and initialisation and then use |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 138 | * attribute_container_device_trigger() to call device_add() on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | * it. Note: after this, the class device contains a reference to dev |
| 140 | * which is not relinquished until the release of the classdev. |
| 141 | */ |
| 142 | void |
| 143 | attribute_container_add_device(struct device *dev, |
| 144 | int (*fn)(struct attribute_container *, |
| 145 | struct device *, |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 146 | struct device *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
| 148 | struct attribute_container *cont; |
| 149 | |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 150 | mutex_lock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | list_for_each_entry(cont, &attribute_container_list, node) { |
| 152 | struct internal_container *ic; |
| 153 | |
| 154 | if (attribute_container_no_classdevs(cont)) |
| 155 | continue; |
| 156 | |
| 157 | if (!cont->match(cont, dev)) |
| 158 | continue; |
Jiri Slaby | 4aed064 | 2005-09-13 01:25:01 -0700 | [diff] [blame] | 159 | |
| 160 | ic = kzalloc(sizeof(*ic), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | if (!ic) { |
Joe Perches | a369a7e | 2012-10-28 01:05:41 -0700 | [diff] [blame] | 162 | dev_err(dev, "failed to allocate class container\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | continue; |
| 164 | } |
Jiri Slaby | 4aed064 | 2005-09-13 01:25:01 -0700 | [diff] [blame] | 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | ic->cont = cont; |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 167 | device_initialize(&ic->classdev); |
| 168 | ic->classdev.parent = get_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | ic->classdev.class = cont->class; |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 170 | cont->class->dev_release = attribute_container_release; |
Kees Cook | 02aa2a3 | 2013-07-03 15:04:56 -0700 | [diff] [blame] | 171 | dev_set_name(&ic->classdev, "%s", dev_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | if (fn) |
| 173 | fn(cont, dev, &ic->classdev); |
| 174 | else |
| 175 | attribute_container_add_class_device(&ic->classdev); |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 176 | klist_add_tail(&ic->node, &cont->containers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 178 | mutex_unlock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 181 | /* FIXME: can't break out of this unless klist_iter_exit is also |
| 182 | * called before doing the break |
| 183 | */ |
| 184 | #define klist_for_each_entry(pos, head, member, iter) \ |
| 185 | for (klist_iter_init(head, iter); (pos = ({ \ |
| 186 | struct klist_node *n = klist_next(iter); \ |
Linus Torvalds | caf39e8 | 2005-09-07 18:44:33 -0700 | [diff] [blame] | 187 | n ? container_of(n, typeof(*pos), member) : \ |
| 188 | ({ klist_iter_exit(iter) ; NULL; }); \ |
Tina Johnson | 287f9bd | 2014-08-12 02:54:09 +0530 | [diff] [blame] | 189 | })) != NULL;) |
Tina Johnson | 24a7d36 | 2014-08-12 02:54:08 +0530 | [diff] [blame] | 190 | |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | /** |
| 193 | * attribute_container_remove_device - make device eligible for removal. |
| 194 | * |
| 195 | * @dev: The generic device |
| 196 | * @fn: A function to call to remove the device |
| 197 | * |
| 198 | * This routine triggers device removal. If fn is NULL, then it is |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 199 | * simply done via device_unregister (note that if something |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | * still has a reference to the classdev, then the memory occupied |
| 201 | * will not be freed until the classdev is released). If you want a |
| 202 | * two phase release: remove from visibility and then delete the |
| 203 | * device, then you should use this routine with a fn that calls |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 204 | * device_del() and then use attribute_container_device_trigger() |
| 205 | * to do the final put on the classdev. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | */ |
| 207 | void |
| 208 | attribute_container_remove_device(struct device *dev, |
| 209 | void (*fn)(struct attribute_container *, |
| 210 | struct device *, |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 211 | struct device *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
| 213 | struct attribute_container *cont; |
| 214 | |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 215 | mutex_lock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | list_for_each_entry(cont, &attribute_container_list, node) { |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 217 | struct internal_container *ic; |
| 218 | struct klist_iter iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
| 220 | if (attribute_container_no_classdevs(cont)) |
| 221 | continue; |
| 222 | |
| 223 | if (!cont->match(cont, dev)) |
| 224 | continue; |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 225 | |
| 226 | klist_for_each_entry(ic, &cont->containers, node, &iter) { |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 227 | if (dev != ic->classdev.parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | continue; |
Linus Torvalds | caf39e8 | 2005-09-07 18:44:33 -0700 | [diff] [blame] | 229 | klist_del(&ic->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | if (fn) |
| 231 | fn(cont, dev, &ic->classdev); |
| 232 | else { |
| 233 | attribute_container_remove_attrs(&ic->classdev); |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 234 | device_unregister(&ic->classdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | } |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 238 | mutex_unlock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
| 241 | /** |
| 242 | * attribute_container_device_trigger - execute a trigger for each matching classdev |
| 243 | * |
| 244 | * @dev: The generic device to run the trigger for |
| 245 | * @fn the function to execute for each classdev. |
| 246 | * |
Xiubo Li | 03aca7b | 2016-06-01 09:18:40 +0800 | [diff] [blame] | 247 | * This function is for executing a trigger when you need to know both |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | * the container and the classdev. If you only care about the |
| 249 | * container, then use attribute_container_trigger() instead. |
| 250 | */ |
| 251 | void |
Tina Johnson | 24a7d36 | 2014-08-12 02:54:08 +0530 | [diff] [blame] | 252 | attribute_container_device_trigger(struct device *dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | int (*fn)(struct attribute_container *, |
| 254 | struct device *, |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 255 | struct device *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | { |
| 257 | struct attribute_container *cont; |
| 258 | |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 259 | mutex_lock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | list_for_each_entry(cont, &attribute_container_list, node) { |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 261 | struct internal_container *ic; |
| 262 | struct klist_iter iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
| 264 | if (!cont->match(cont, dev)) |
| 265 | continue; |
| 266 | |
James Bottomley | ebd8bb7 | 2005-08-15 16:13:19 -0500 | [diff] [blame] | 267 | if (attribute_container_no_classdevs(cont)) { |
| 268 | fn(cont, dev, NULL); |
| 269 | continue; |
| 270 | } |
| 271 | |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 272 | klist_for_each_entry(ic, &cont->containers, node, &iter) { |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 273 | if (dev == ic->classdev.parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | fn(cont, dev, &ic->classdev); |
| 275 | } |
| 276 | } |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 277 | mutex_unlock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
| 280 | /** |
| 281 | * attribute_container_trigger - trigger a function for each matching container |
| 282 | * |
| 283 | * @dev: The generic device to activate the trigger for |
| 284 | * @fn: the function to trigger |
| 285 | * |
| 286 | * This routine triggers a function that only needs to know the |
| 287 | * matching containers (not the classdev) associated with a device. |
| 288 | * It is more lightweight than attribute_container_device_trigger, so |
| 289 | * should be used in preference unless the triggering function |
| 290 | * actually needs to know the classdev. |
| 291 | */ |
| 292 | void |
| 293 | attribute_container_trigger(struct device *dev, |
| 294 | int (*fn)(struct attribute_container *, |
| 295 | struct device *)) |
| 296 | { |
| 297 | struct attribute_container *cont; |
| 298 | |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 299 | mutex_lock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | list_for_each_entry(cont, &attribute_container_list, node) { |
| 301 | if (cont->match(cont, dev)) |
| 302 | fn(cont, dev); |
| 303 | } |
Matthias Kaehlcke | 61a2f59 | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 304 | mutex_unlock(&attribute_container_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
| 307 | /** |
| 308 | * attribute_container_add_attrs - add attributes |
| 309 | * |
| 310 | * @classdev: The class device |
| 311 | * |
| 312 | * This simply creates all the class device sysfs files from the |
| 313 | * attributes listed in the container |
| 314 | */ |
| 315 | int |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 316 | attribute_container_add_attrs(struct device *classdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
| 318 | struct attribute_container *cont = |
| 319 | attribute_container_classdev_to_container(classdev); |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 320 | struct device_attribute **attrs = cont->attrs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | int i, error; |
| 322 | |
James Bottomley | fd11097 | 2008-01-02 18:48:47 -0600 | [diff] [blame] | 323 | BUG_ON(attrs && cont->grp); |
| 324 | |
| 325 | if (!attrs && !cont->grp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | return 0; |
| 327 | |
James Bottomley | fd11097 | 2008-01-02 18:48:47 -0600 | [diff] [blame] | 328 | if (cont->grp) |
| 329 | return sysfs_create_group(&classdev->kobj, cont->grp); |
| 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | for (i = 0; attrs[i]; i++) { |
James Bottomley | ebd09ec | 2010-03-20 12:44:12 -0500 | [diff] [blame] | 332 | sysfs_attr_init(&attrs[i]->attr); |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 333 | error = device_create_file(classdev, attrs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | if (error) |
| 335 | return error; |
| 336 | } |
| 337 | |
| 338 | return 0; |
| 339 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
| 341 | /** |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 342 | * attribute_container_add_class_device - same function as device_add |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | * |
| 344 | * @classdev: the class device to add |
| 345 | * |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 346 | * This performs essentially the same function as device_add except for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | * attribute containers, namely add the classdev to the system and then |
| 348 | * create the attribute files |
| 349 | */ |
| 350 | int |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 351 | attribute_container_add_class_device(struct device *classdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | { |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 353 | int error = device_add(classdev); |
Cosmin Dragomir | 481026d | 2015-03-08 12:30:14 +0200 | [diff] [blame] | 354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | if (error) |
| 356 | return error; |
| 357 | return attribute_container_add_attrs(classdev); |
| 358 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
| 360 | /** |
| 361 | * attribute_container_add_class_device_adapter - simple adapter for triggers |
| 362 | * |
| 363 | * This function is identical to attribute_container_add_class_device except |
| 364 | * that it is designed to be called from the triggers |
| 365 | */ |
| 366 | int |
| 367 | attribute_container_add_class_device_adapter(struct attribute_container *cont, |
| 368 | struct device *dev, |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 369 | struct device *classdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | { |
| 371 | return attribute_container_add_class_device(classdev); |
| 372 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
| 374 | /** |
| 375 | * attribute_container_remove_attrs - remove any attribute files |
| 376 | * |
| 377 | * @classdev: The class device to remove the files from |
| 378 | * |
| 379 | */ |
| 380 | void |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 381 | attribute_container_remove_attrs(struct device *classdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | { |
| 383 | struct attribute_container *cont = |
| 384 | attribute_container_classdev_to_container(classdev); |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 385 | struct device_attribute **attrs = cont->attrs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | int i; |
| 387 | |
James Bottomley | fd11097 | 2008-01-02 18:48:47 -0600 | [diff] [blame] | 388 | if (!attrs && !cont->grp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | return; |
| 390 | |
James Bottomley | fd11097 | 2008-01-02 18:48:47 -0600 | [diff] [blame] | 391 | if (cont->grp) { |
| 392 | sysfs_remove_group(&classdev->kobj, cont->grp); |
| 393 | return ; |
| 394 | } |
| 395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | for (i = 0; attrs[i]; i++) |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 397 | device_remove_file(classdev, attrs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
| 400 | /** |
| 401 | * attribute_container_class_device_del - equivalent of class_device_del |
| 402 | * |
| 403 | * @classdev: the class device |
| 404 | * |
| 405 | * This function simply removes all the attribute files and then calls |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 406 | * device_del. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | */ |
| 408 | void |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 409 | attribute_container_class_device_del(struct device *classdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | { |
| 411 | attribute_container_remove_attrs(classdev); |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 412 | device_del(classdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
James Bottomley | d0a7e57 | 2005-08-14 17:09:01 -0500 | [diff] [blame] | 415 | /** |
| 416 | * attribute_container_find_class_device - find the corresponding class_device |
| 417 | * |
| 418 | * @cont: the container |
| 419 | * @dev: the generic device |
| 420 | * |
| 421 | * Looks up the device in the container's list of class devices and returns |
| 422 | * the corresponding class_device. |
| 423 | */ |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 424 | struct device * |
James Bottomley | d0a7e57 | 2005-08-14 17:09:01 -0500 | [diff] [blame] | 425 | attribute_container_find_class_device(struct attribute_container *cont, |
| 426 | struct device *dev) |
| 427 | { |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 428 | struct device *cdev = NULL; |
James Bottomley | d0a7e57 | 2005-08-14 17:09:01 -0500 | [diff] [blame] | 429 | struct internal_container *ic; |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 430 | struct klist_iter iter; |
James Bottomley | d0a7e57 | 2005-08-14 17:09:01 -0500 | [diff] [blame] | 431 | |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 432 | klist_for_each_entry(ic, &cont->containers, node, &iter) { |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 433 | if (ic->classdev.parent == dev) { |
James Bottomley | d0a7e57 | 2005-08-14 17:09:01 -0500 | [diff] [blame] | 434 | cdev = &ic->classdev; |
James Bottomley | 53c165e | 2005-08-22 10:06:19 -0500 | [diff] [blame] | 435 | /* FIXME: must exit iterator then break */ |
| 436 | klist_iter_exit(&iter); |
James Bottomley | d0a7e57 | 2005-08-14 17:09:01 -0500 | [diff] [blame] | 437 | break; |
| 438 | } |
| 439 | } |
James Bottomley | d0a7e57 | 2005-08-14 17:09:01 -0500 | [diff] [blame] | 440 | |
| 441 | return cdev; |
| 442 | } |
| 443 | EXPORT_SYMBOL_GPL(attribute_container_find_class_device); |