]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/misc/enclosure.c
[SCSI] ses: add support for enclosure component hot removal
[net-next-2.6.git] / drivers / misc / enclosure.c
CommitLineData
d569d5bb
JB
1/*
2 * Enclosure Services
3 *
4 * Copyright (C) 2008 James Bottomley <James.Bottomley@HansenPartnership.com>
5 *
6**-----------------------------------------------------------------------------
7**
8** This program is free software; you can redistribute it and/or
9** modify it under the terms of the GNU General Public License
10** version 2 as published by the Free Software Foundation.
11**
12** This program is distributed in the hope that it will be useful,
13** but WITHOUT ANY WARRANTY; without even the implied warranty of
14** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15** GNU General Public License for more details.
16**
17** You should have received a copy of the GNU General Public License
18** along with this program; if not, write to the Free Software
19** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20**
21**-----------------------------------------------------------------------------
22*/
23#include <linux/device.h>
24#include <linux/enclosure.h>
25#include <linux/err.h>
26#include <linux/list.h>
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/mutex.h>
30
31static LIST_HEAD(container_list);
32static DEFINE_MUTEX(container_list_lock);
33static struct class enclosure_class;
d569d5bb
JB
34
35/**
163f52b6
JB
36 * enclosure_find - find an enclosure given a parent device
37 * @dev: the parent to match against
38 * @start: Optional enclosure device to start from (NULL if none)
d569d5bb 39 *
163f52b6
JB
40 * Looks through the list of registered enclosures to find all those
41 * with @dev as a parent. Returns NULL if no enclosure is
42 * found. @start can be used as a starting point to obtain multiple
43 * enclosures per parent (should begin with NULL and then be set to
44 * each returned enclosure device). Obtains a reference to the
45 * enclosure class device which must be released with device_put().
46 * If @start is not NULL, a reference must be taken on it which is
47 * released before returning (this allows a loop through all
48 * enclosures to exit with only the reference on the enclosure of
49 * interest held). Note that the @dev may correspond to the actual
50 * device housing the enclosure, in which case no iteration via @start
51 * is required.
d569d5bb 52 */
163f52b6
JB
53struct enclosure_device *enclosure_find(struct device *dev,
54 struct enclosure_device *start)
d569d5bb 55{
ee959b00 56 struct enclosure_device *edev;
d569d5bb
JB
57
58 mutex_lock(&container_list_lock);
163f52b6
JB
59 edev = list_prepare_entry(start, &container_list, node);
60 if (start)
61 put_device(&start->edev);
62
63 list_for_each_entry_continue(edev, &container_list, node) {
64 struct device *parent = edev->edev.parent;
65 /* parent might not be immediate, so iterate up to
66 * the root of the tree if necessary */
67 while (parent) {
68 if (parent == dev) {
69 get_device(&edev->edev);
70 mutex_unlock(&container_list_lock);
71 return edev;
72 }
73 parent = parent->parent;
d569d5bb
JB
74 }
75 }
76 mutex_unlock(&container_list_lock);
77
78 return NULL;
79}
80EXPORT_SYMBOL_GPL(enclosure_find);
81
82/**
83 * enclosure_for_each_device - calls a function for each enclosure
84 * @fn: the function to call
85 * @data: the data to pass to each call
86 *
87 * Loops over all the enclosures calling the function.
88 *
89 * Note, this function uses a mutex which will be held across calls to
90 * @fn, so it must have non atomic context, and @fn may (although it
91 * should not) sleep or otherwise cause the mutex to be held for
92 * indefinite periods
93 */
94int enclosure_for_each_device(int (*fn)(struct enclosure_device *, void *),
95 void *data)
96{
97 int error = 0;
98 struct enclosure_device *edev;
99
100 mutex_lock(&container_list_lock);
101 list_for_each_entry(edev, &container_list, node) {
102 error = fn(edev, data);
103 if (error)
104 break;
105 }
106 mutex_unlock(&container_list_lock);
107
108 return error;
109}
110EXPORT_SYMBOL_GPL(enclosure_for_each_device);
111
112/**
113 * enclosure_register - register device as an enclosure
114 *
115 * @dev: device containing the enclosure
116 * @components: number of components in the enclosure
117 *
118 * This sets up the device for being an enclosure. Note that @dev does
119 * not have to be a dedicated enclosure device. It may be some other type
120 * of device that additionally responds to enclosure services
121 */
122struct enclosure_device *
123enclosure_register(struct device *dev, const char *name, int components,
124 struct enclosure_component_callbacks *cb)
125{
126 struct enclosure_device *edev =
127 kzalloc(sizeof(struct enclosure_device) +
128 sizeof(struct enclosure_component)*components,
129 GFP_KERNEL);
130 int err, i;
131
132 BUG_ON(!cb);
133
134 if (!edev)
135 return ERR_PTR(-ENOMEM);
136
137 edev->components = components;
138
ee959b00
TJ
139 edev->edev.class = &enclosure_class;
140 edev->edev.parent = get_device(dev);
d569d5bb 141 edev->cb = cb;
5e43754f 142 dev_set_name(&edev->edev, "%s", name);
ee959b00 143 err = device_register(&edev->edev);
d569d5bb
JB
144 if (err)
145 goto err;
146
147 for (i = 0; i < components; i++)
148 edev->component[i].number = -1;
149
150 mutex_lock(&container_list_lock);
151 list_add_tail(&edev->node, &container_list);
152 mutex_unlock(&container_list_lock);
153
154 return edev;
155
156 err:
ee959b00 157 put_device(edev->edev.parent);
d569d5bb
JB
158 kfree(edev);
159 return ERR_PTR(err);
160}
161EXPORT_SYMBOL_GPL(enclosure_register);
162
163static struct enclosure_component_callbacks enclosure_null_callbacks;
164
165/**
166 * enclosure_unregister - remove an enclosure
167 *
168 * @edev: the registered enclosure to remove;
169 */
170void enclosure_unregister(struct enclosure_device *edev)
171{
172 int i;
173
174 mutex_lock(&container_list_lock);
175 list_del(&edev->node);
176 mutex_unlock(&container_list_lock);
177
178 for (i = 0; i < edev->components; i++)
179 if (edev->component[i].number != -1)
ee959b00 180 device_unregister(&edev->component[i].cdev);
d569d5bb
JB
181
182 /* prevent any callbacks into service user */
183 edev->cb = &enclosure_null_callbacks;
ee959b00 184 device_unregister(&edev->edev);
d569d5bb
JB
185}
186EXPORT_SYMBOL_GPL(enclosure_unregister);
187
cb6b7f40
JB
188#define ENCLOSURE_NAME_SIZE 64
189
190static void enclosure_link_name(struct enclosure_component *cdev, char *name)
191{
192 strcpy(name, "enclosure_device:");
71610f55 193 strcat(name, dev_name(&cdev->cdev));
cb6b7f40
JB
194}
195
196static void enclosure_remove_links(struct enclosure_component *cdev)
197{
198 char name[ENCLOSURE_NAME_SIZE];
199
200 enclosure_link_name(cdev, name);
201 sysfs_remove_link(&cdev->dev->kobj, name);
202 sysfs_remove_link(&cdev->cdev.kobj, "device");
203}
204
205static int enclosure_add_links(struct enclosure_component *cdev)
206{
207 int error;
208 char name[ENCLOSURE_NAME_SIZE];
209
210 error = sysfs_create_link(&cdev->cdev.kobj, &cdev->dev->kobj, "device");
211 if (error)
212 return error;
213
214 enclosure_link_name(cdev, name);
215 error = sysfs_create_link(&cdev->dev->kobj, &cdev->cdev.kobj, name);
216 if (error)
217 sysfs_remove_link(&cdev->cdev.kobj, "device");
218
219 return error;
220}
221
ee959b00 222static void enclosure_release(struct device *cdev)
d569d5bb
JB
223{
224 struct enclosure_device *edev = to_enclosure_device(cdev);
225
ee959b00 226 put_device(cdev->parent);
d569d5bb
JB
227 kfree(edev);
228}
229
ee959b00 230static void enclosure_component_release(struct device *dev)
d569d5bb 231{
ee959b00
TJ
232 struct enclosure_component *cdev = to_enclosure_component(dev);
233
cb6b7f40
JB
234 if (cdev->dev) {
235 enclosure_remove_links(cdev);
236 put_device(cdev->dev);
237 }
ee959b00 238 put_device(dev->parent);
d569d5bb
JB
239}
240
cb6b7f40
JB
241static struct attribute_group *enclosure_groups[];
242
d569d5bb
JB
243/**
244 * enclosure_component_register - add a particular component to an enclosure
245 * @edev: the enclosure to add the component
246 * @num: the device number
247 * @type: the type of component being added
248 * @name: an optional name to appear in sysfs (leave NULL if none)
249 *
250 * Registers the component. The name is optional for enclosures that
251 * give their components a unique name. If not, leave the field NULL
252 * and a name will be assigned.
253 *
254 * Returns a pointer to the enclosure component or an error.
255 */
256struct enclosure_component *
257enclosure_component_register(struct enclosure_device *edev,
258 unsigned int number,
259 enum enclosure_component_type type,
260 const char *name)
261{
262 struct enclosure_component *ecomp;
ee959b00 263 struct device *cdev;
d569d5bb
JB
264 int err;
265
266 if (number >= edev->components)
267 return ERR_PTR(-EINVAL);
268
269 ecomp = &edev->component[number];
270
271 if (ecomp->number != -1)
272 return ERR_PTR(-EINVAL);
273
274 ecomp->type = type;
275 ecomp->number = number;
276 cdev = &ecomp->cdev;
ee959b00 277 cdev->parent = get_device(&edev->edev);
5e43754f
YL
278 if (name && name[0])
279 dev_set_name(cdev, "%s", name);
d569d5bb 280 else
71610f55 281 dev_set_name(cdev, "%u", number);
d569d5bb 282
cb6b7f40
JB
283 cdev->release = enclosure_component_release;
284 cdev->groups = enclosure_groups;
285
ee959b00 286 err = device_register(cdev);
d569d5bb
JB
287 if (err)
288 ERR_PTR(err);
289
290 return ecomp;
291}
292EXPORT_SYMBOL_GPL(enclosure_component_register);
293
294/**
295 * enclosure_add_device - add a device as being part of an enclosure
296 * @edev: the enclosure device being added to.
297 * @num: the number of the component
298 * @dev: the device being added
299 *
300 * Declares a real device to reside in slot (or identifier) @num of an
301 * enclosure. This will cause the relevant sysfs links to appear.
302 * This function may also be used to change a device associated with
303 * an enclosure without having to call enclosure_remove_device() in
304 * between.
305 *
306 * Returns zero on success or an error.
307 */
308int enclosure_add_device(struct enclosure_device *edev, int component,
309 struct device *dev)
310{
ee959b00 311 struct enclosure_component *cdev;
d569d5bb
JB
312
313 if (!edev || component >= edev->components)
314 return -EINVAL;
315
ee959b00 316 cdev = &edev->component[component];
d569d5bb 317
cb6b7f40
JB
318 if (cdev->dev)
319 enclosure_remove_links(cdev);
320
ee959b00 321 put_device(cdev->dev);
d569d5bb 322 cdev->dev = get_device(dev);
cb6b7f40 323 return enclosure_add_links(cdev);
d569d5bb
JB
324}
325EXPORT_SYMBOL_GPL(enclosure_add_device);
326
327/**
328 * enclosure_remove_device - remove a device from an enclosure
329 * @edev: the enclosure device
330 * @num: the number of the component to remove
331 *
332 * Returns zero on success or an error.
333 *
334 */
43d8eb9c 335int enclosure_remove_device(struct enclosure_device *edev, struct device *dev)
d569d5bb 336{
ee959b00 337 struct enclosure_component *cdev;
43d8eb9c 338 int i;
d569d5bb 339
43d8eb9c 340 if (!edev || !dev)
d569d5bb
JB
341 return -EINVAL;
342
43d8eb9c
JB
343 for (i = 0; i < edev->components; i++) {
344 cdev = &edev->component[i];
345 if (cdev->dev == dev) {
346 enclosure_remove_links(cdev);
347 device_del(&cdev->cdev);
348 put_device(dev);
349 cdev->dev = NULL;
350 return device_add(&cdev->cdev);
351 }
352 }
353 return -ENODEV;
d569d5bb
JB
354}
355EXPORT_SYMBOL_GPL(enclosure_remove_device);
356
357/*
358 * sysfs pieces below
359 */
360
ee959b00
TJ
361static ssize_t enclosure_show_components(struct device *cdev,
362 struct device_attribute *attr,
363 char *buf)
d569d5bb
JB
364{
365 struct enclosure_device *edev = to_enclosure_device(cdev);
366
367 return snprintf(buf, 40, "%d\n", edev->components);
368}
369
ee959b00 370static struct device_attribute enclosure_attrs[] = {
d569d5bb
JB
371 __ATTR(components, S_IRUGO, enclosure_show_components, NULL),
372 __ATTR_NULL
373};
374
375static struct class enclosure_class = {
376 .name = "enclosure",
377 .owner = THIS_MODULE,
ee959b00
TJ
378 .dev_release = enclosure_release,
379 .dev_attrs = enclosure_attrs,
d569d5bb
JB
380};
381
382static const char *const enclosure_status [] = {
383 [ENCLOSURE_STATUS_UNSUPPORTED] = "unsupported",
384 [ENCLOSURE_STATUS_OK] = "OK",
385 [ENCLOSURE_STATUS_CRITICAL] = "critical",
386 [ENCLOSURE_STATUS_NON_CRITICAL] = "non-critical",
387 [ENCLOSURE_STATUS_UNRECOVERABLE] = "unrecoverable",
388 [ENCLOSURE_STATUS_NOT_INSTALLED] = "not installed",
389 [ENCLOSURE_STATUS_UNKNOWN] = "unknown",
390 [ENCLOSURE_STATUS_UNAVAILABLE] = "unavailable",
391};
392
393static const char *const enclosure_type [] = {
394 [ENCLOSURE_COMPONENT_DEVICE] = "device",
395 [ENCLOSURE_COMPONENT_ARRAY_DEVICE] = "array device",
396};
397
ee959b00
TJ
398static ssize_t get_component_fault(struct device *cdev,
399 struct device_attribute *attr, char *buf)
d569d5bb
JB
400{
401 struct enclosure_device *edev = to_enclosure_device(cdev->parent);
402 struct enclosure_component *ecomp = to_enclosure_component(cdev);
403
404 if (edev->cb->get_fault)
405 edev->cb->get_fault(edev, ecomp);
406 return snprintf(buf, 40, "%d\n", ecomp->fault);
407}
408
ee959b00
TJ
409static ssize_t set_component_fault(struct device *cdev,
410 struct device_attribute *attr,
411 const char *buf, size_t count)
d569d5bb
JB
412{
413 struct enclosure_device *edev = to_enclosure_device(cdev->parent);
414 struct enclosure_component *ecomp = to_enclosure_component(cdev);
415 int val = simple_strtoul(buf, NULL, 0);
416
417 if (edev->cb->set_fault)
418 edev->cb->set_fault(edev, ecomp, val);
419 return count;
420}
421
ee959b00
TJ
422static ssize_t get_component_status(struct device *cdev,
423 struct device_attribute *attr,char *buf)
d569d5bb
JB
424{
425 struct enclosure_device *edev = to_enclosure_device(cdev->parent);
426 struct enclosure_component *ecomp = to_enclosure_component(cdev);
427
428 if (edev->cb->get_status)
429 edev->cb->get_status(edev, ecomp);
430 return snprintf(buf, 40, "%s\n", enclosure_status[ecomp->status]);
431}
432
ee959b00
TJ
433static ssize_t set_component_status(struct device *cdev,
434 struct device_attribute *attr,
435 const char *buf, size_t count)
d569d5bb
JB
436{
437 struct enclosure_device *edev = to_enclosure_device(cdev->parent);
438 struct enclosure_component *ecomp = to_enclosure_component(cdev);
439 int i;
440
441 for (i = 0; enclosure_status[i]; i++) {
442 if (strncmp(buf, enclosure_status[i],
443 strlen(enclosure_status[i])) == 0 &&
444 (buf[strlen(enclosure_status[i])] == '\n' ||
445 buf[strlen(enclosure_status[i])] == '\0'))
446 break;
447 }
448
449 if (enclosure_status[i] && edev->cb->set_status) {
450 edev->cb->set_status(edev, ecomp, i);
451 return count;
452 } else
453 return -EINVAL;
454}
455
ee959b00
TJ
456static ssize_t get_component_active(struct device *cdev,
457 struct device_attribute *attr, char *buf)
d569d5bb
JB
458{
459 struct enclosure_device *edev = to_enclosure_device(cdev->parent);
460 struct enclosure_component *ecomp = to_enclosure_component(cdev);
461
462 if (edev->cb->get_active)
463 edev->cb->get_active(edev, ecomp);
464 return snprintf(buf, 40, "%d\n", ecomp->active);
465}
466
ee959b00
TJ
467static ssize_t set_component_active(struct device *cdev,
468 struct device_attribute *attr,
469 const char *buf, size_t count)
d569d5bb
JB
470{
471 struct enclosure_device *edev = to_enclosure_device(cdev->parent);
472 struct enclosure_component *ecomp = to_enclosure_component(cdev);
473 int val = simple_strtoul(buf, NULL, 0);
474
475 if (edev->cb->set_active)
476 edev->cb->set_active(edev, ecomp, val);
477 return count;
478}
479
ee959b00
TJ
480static ssize_t get_component_locate(struct device *cdev,
481 struct device_attribute *attr, char *buf)
d569d5bb
JB
482{
483 struct enclosure_device *edev = to_enclosure_device(cdev->parent);
484 struct enclosure_component *ecomp = to_enclosure_component(cdev);
485
486 if (edev->cb->get_locate)
487 edev->cb->get_locate(edev, ecomp);
488 return snprintf(buf, 40, "%d\n", ecomp->locate);
489}
490
ee959b00
TJ
491static ssize_t set_component_locate(struct device *cdev,
492 struct device_attribute *attr,
493 const char *buf, size_t count)
d569d5bb
JB
494{
495 struct enclosure_device *edev = to_enclosure_device(cdev->parent);
496 struct enclosure_component *ecomp = to_enclosure_component(cdev);
497 int val = simple_strtoul(buf, NULL, 0);
498
499 if (edev->cb->set_locate)
500 edev->cb->set_locate(edev, ecomp, val);
501 return count;
502}
503
ee959b00
TJ
504static ssize_t get_component_type(struct device *cdev,
505 struct device_attribute *attr, char *buf)
d569d5bb
JB
506{
507 struct enclosure_component *ecomp = to_enclosure_component(cdev);
508
509 return snprintf(buf, 40, "%s\n", enclosure_type[ecomp->type]);
510}
511
512
cb6b7f40
JB
513static DEVICE_ATTR(fault, S_IRUGO | S_IWUSR, get_component_fault,
514 set_component_fault);
515static DEVICE_ATTR(status, S_IRUGO | S_IWUSR, get_component_status,
516 set_component_status);
517static DEVICE_ATTR(active, S_IRUGO | S_IWUSR, get_component_active,
518 set_component_active);
519static DEVICE_ATTR(locate, S_IRUGO | S_IWUSR, get_component_locate,
520 set_component_locate);
521static DEVICE_ATTR(type, S_IRUGO, get_component_type, NULL);
522
523static struct attribute *enclosure_component_attrs[] = {
524 &dev_attr_fault.attr,
525 &dev_attr_status.attr,
526 &dev_attr_active.attr,
527 &dev_attr_locate.attr,
528 &dev_attr_type.attr,
529 NULL
d569d5bb
JB
530};
531
cb6b7f40
JB
532static struct attribute_group enclosure_group = {
533 .attrs = enclosure_component_attrs,
534};
535
536static struct attribute_group *enclosure_groups[] = {
537 &enclosure_group,
538 NULL
d569d5bb
JB
539};
540
541static int __init enclosure_init(void)
542{
543 int err;
544
545 err = class_register(&enclosure_class);
546 if (err)
547 return err;
d569d5bb
JB
548
549 return 0;
d569d5bb
JB
550}
551
552static void __exit enclosure_exit(void)
553{
d569d5bb
JB
554 class_unregister(&enclosure_class);
555}
556
557module_init(enclosure_init);
558module_exit(enclosure_exit);
559
560MODULE_AUTHOR("James Bottomley");
561MODULE_DESCRIPTION("Enclosure Services");
562MODULE_LICENSE("GPL v2");