Driver core: coding style cleanup
[cascardo/linux.git] / drivers / base / bus.c
1 /*
2  * bus.c - bus driver management
3  *
4  * Copyright (c) 2002-3 Patrick Mochel
5  * Copyright (c) 2002-3 Open Source Development Labs
6  *
7  * This file is released under the GPLv2
8  *
9  */
10
11 #include <linux/device.h>
12 #include <linux/module.h>
13 #include <linux/errno.h>
14 #include <linux/init.h>
15 #include <linux/string.h>
16 #include "base.h"
17 #include "power/power.h"
18
19 #define to_bus_attr(_attr) container_of(_attr, struct bus_attribute, attr)
20 #define to_bus(obj) container_of(obj, struct bus_type, subsys.kobj)
21
22 /*
23  * sysfs bindings for drivers
24  */
25
26 #define to_drv_attr(_attr) container_of(_attr, struct driver_attribute, attr)
27 #define to_driver(obj) container_of(obj, struct device_driver, kobj)
28
29
30 static int __must_check bus_rescan_devices_helper(struct device *dev,
31                                                 void *data);
32
33 static ssize_t
34 drv_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
35 {
36         struct driver_attribute * drv_attr = to_drv_attr(attr);
37         struct device_driver * drv = to_driver(kobj);
38         ssize_t ret = -EIO;
39
40         if (drv_attr->show)
41                 ret = drv_attr->show(drv, buf);
42         return ret;
43 }
44
45 static ssize_t
46 drv_attr_store(struct kobject * kobj, struct attribute * attr,
47                const char * buf, size_t count)
48 {
49         struct driver_attribute * drv_attr = to_drv_attr(attr);
50         struct device_driver * drv = to_driver(kobj);
51         ssize_t ret = -EIO;
52
53         if (drv_attr->store)
54                 ret = drv_attr->store(drv, buf, count);
55         return ret;
56 }
57
58 static struct sysfs_ops driver_sysfs_ops = {
59         .show   = drv_attr_show,
60         .store  = drv_attr_store,
61 };
62
63
64 static void driver_release(struct kobject * kobj)
65 {
66         /*
67          * Yes this is an empty release function, it is this way because struct
68          * device is always a static object, not a dynamic one.  Yes, this is
69          * not nice and bad, but remember, drivers are code, reference counted
70          * by the module count, not a device, which is really data.  And yes,
71          * in the future I do want to have all drivers be created dynamically,
72          * and am working toward that goal, but it will take a bit longer...
73          *
74          * But do not let this example give _anyone_ the idea that they can
75          * create a release function without any code in it at all, to do that
76          * is almost always wrong.  If you have any questions about this,
77          * please send an email to <greg@kroah.com>
78          */
79 }
80
81 static struct kobj_type ktype_driver = {
82         .sysfs_ops      = &driver_sysfs_ops,
83         .release        = driver_release,
84 };
85
86
87 /*
88  * sysfs bindings for buses
89  */
90
91
92 static ssize_t
93 bus_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
94 {
95         struct bus_attribute * bus_attr = to_bus_attr(attr);
96         struct bus_type * bus = to_bus(kobj);
97         ssize_t ret = 0;
98
99         if (bus_attr->show)
100                 ret = bus_attr->show(bus, buf);
101         return ret;
102 }
103
104 static ssize_t
105 bus_attr_store(struct kobject * kobj, struct attribute * attr,
106                const char * buf, size_t count)
107 {
108         struct bus_attribute * bus_attr = to_bus_attr(attr);
109         struct bus_type * bus = to_bus(kobj);
110         ssize_t ret = 0;
111
112         if (bus_attr->store)
113                 ret = bus_attr->store(bus, buf, count);
114         return ret;
115 }
116
117 static struct sysfs_ops bus_sysfs_ops = {
118         .show   = bus_attr_show,
119         .store  = bus_attr_store,
120 };
121
122 int bus_create_file(struct bus_type * bus, struct bus_attribute * attr)
123 {
124         int error;
125         if (get_bus(bus)) {
126                 error = sysfs_create_file(&bus->subsys.kobj, &attr->attr);
127                 put_bus(bus);
128         } else
129                 error = -EINVAL;
130         return error;
131 }
132
133 void bus_remove_file(struct bus_type * bus, struct bus_attribute * attr)
134 {
135         if (get_bus(bus)) {
136                 sysfs_remove_file(&bus->subsys.kobj, &attr->attr);
137                 put_bus(bus);
138         }
139 }
140
141 static struct kobj_type bus_ktype = {
142         .sysfs_ops      = &bus_sysfs_ops,
143 };
144
145 static int bus_uevent_filter(struct kset *kset, struct kobject *kobj)
146 {
147         struct kobj_type *ktype = get_ktype(kobj);
148
149         if (ktype == &bus_ktype)
150                 return 1;
151         return 0;
152 }
153
154 static struct kset_uevent_ops bus_uevent_ops = {
155         .filter = bus_uevent_filter,
156 };
157
158 static decl_subsys(bus, &bus_ktype, &bus_uevent_ops);
159
160
161 #ifdef CONFIG_HOTPLUG
162 /* Manually detach a device from its associated driver. */
163 static int driver_helper(struct device *dev, void *data)
164 {
165         const char *name = data;
166
167         if (strcmp(name, dev->bus_id) == 0)
168                 return 1;
169         return 0;
170 }
171
172 static ssize_t driver_unbind(struct device_driver *drv,
173                              const char *buf, size_t count)
174 {
175         struct bus_type *bus = get_bus(drv->bus);
176         struct device *dev;
177         int err = -ENODEV;
178
179         dev = bus_find_device(bus, NULL, (void *)buf, driver_helper);
180         if (dev && dev->driver == drv) {
181                 if (dev->parent)        /* Needed for USB */
182                         down(&dev->parent->sem);
183                 device_release_driver(dev);
184                 if (dev->parent)
185                         up(&dev->parent->sem);
186                 err = count;
187         }
188         put_device(dev);
189         put_bus(bus);
190         return err;
191 }
192 static DRIVER_ATTR(unbind, S_IWUSR, NULL, driver_unbind);
193
194 /*
195  * Manually attach a device to a driver.
196  * Note: the driver must want to bind to the device,
197  * it is not possible to override the driver's id table.
198  */
199 static ssize_t driver_bind(struct device_driver *drv,
200                            const char *buf, size_t count)
201 {
202         struct bus_type *bus = get_bus(drv->bus);
203         struct device *dev;
204         int err = -ENODEV;
205
206         dev = bus_find_device(bus, NULL, (void *)buf, driver_helper);
207         if (dev && dev->driver == NULL) {
208                 if (dev->parent)        /* Needed for USB */
209                         down(&dev->parent->sem);
210                 down(&dev->sem);
211                 err = driver_probe_device(drv, dev);
212                 up(&dev->sem);
213                 if (dev->parent)
214                         up(&dev->parent->sem);
215
216                 if (err > 0)            /* success */
217                         err = count;
218                 else if (err == 0)      /* driver didn't accept device */
219                         err = -ENODEV;
220         }
221         put_device(dev);
222         put_bus(bus);
223         return err;
224 }
225 static DRIVER_ATTR(bind, S_IWUSR, NULL, driver_bind);
226
227 static ssize_t show_drivers_autoprobe(struct bus_type *bus, char *buf)
228 {
229         return sprintf(buf, "%d\n", bus->drivers_autoprobe);
230 }
231
232 static ssize_t store_drivers_autoprobe(struct bus_type *bus,
233                                        const char *buf, size_t count)
234 {
235         if (buf[0] == '0')
236                 bus->drivers_autoprobe = 0;
237         else
238                 bus->drivers_autoprobe = 1;
239         return count;
240 }
241
242 static ssize_t store_drivers_probe(struct bus_type *bus,
243                                    const char *buf, size_t count)
244 {
245         struct device *dev;
246
247         dev = bus_find_device(bus, NULL, (void *)buf, driver_helper);
248         if (!dev)
249                 return -ENODEV;
250         if (bus_rescan_devices_helper(dev, NULL) != 0)
251                 return -EINVAL;
252         return count;
253 }
254 #endif
255
256 static struct device * next_device(struct klist_iter * i)
257 {
258         struct klist_node * n = klist_next(i);
259         return n ? container_of(n, struct device, knode_bus) : NULL;
260 }
261
262 /**
263  *      bus_for_each_dev - device iterator.
264  *      @bus:   bus type.
265  *      @start: device to start iterating from.
266  *      @data:  data for the callback.
267  *      @fn:    function to be called for each device.
268  *
269  *      Iterate over @bus's list of devices, and call @fn for each,
270  *      passing it @data. If @start is not NULL, we use that device to
271  *      begin iterating from.
272  *
273  *      We check the return of @fn each time. If it returns anything
274  *      other than 0, we break out and return that value.
275  *
276  *      NOTE: The device that returns a non-zero value is not retained
277  *      in any way, nor is its refcount incremented. If the caller needs
278  *      to retain this data, it should do, and increment the reference
279  *      count in the supplied callback.
280  */
281
282 int bus_for_each_dev(struct bus_type * bus, struct device * start,
283                      void * data, int (*fn)(struct device *, void *))
284 {
285         struct klist_iter i;
286         struct device * dev;
287         int error = 0;
288
289         if (!bus)
290                 return -EINVAL;
291
292         klist_iter_init_node(&bus->klist_devices, &i,
293                              (start ? &start->knode_bus : NULL));
294         while ((dev = next_device(&i)) && !error)
295                 error = fn(dev, data);
296         klist_iter_exit(&i);
297         return error;
298 }
299
300 /**
301  * bus_find_device - device iterator for locating a particular device.
302  * @bus: bus type
303  * @start: Device to begin with
304  * @data: Data to pass to match function
305  * @match: Callback function to check device
306  *
307  * This is similar to the bus_for_each_dev() function above, but it
308  * returns a reference to a device that is 'found' for later use, as
309  * determined by the @match callback.
310  *
311  * The callback should return 0 if the device doesn't match and non-zero
312  * if it does.  If the callback returns non-zero, this function will
313  * return to the caller and not iterate over any more devices.
314  */
315 struct device * bus_find_device(struct bus_type *bus,
316                                 struct device *start, void *data,
317                                 int (*match)(struct device *, void *))
318 {
319         struct klist_iter i;
320         struct device *dev;
321
322         if (!bus)
323                 return NULL;
324
325         klist_iter_init_node(&bus->klist_devices, &i,
326                              (start ? &start->knode_bus : NULL));
327         while ((dev = next_device(&i)))
328                 if (match(dev, data) && get_device(dev))
329                         break;
330         klist_iter_exit(&i);
331         return dev;
332 }
333
334
335 static struct device_driver * next_driver(struct klist_iter * i)
336 {
337         struct klist_node * n = klist_next(i);
338         return n ? container_of(n, struct device_driver, knode_bus) : NULL;
339 }
340
341 /**
342  *      bus_for_each_drv - driver iterator
343  *      @bus:   bus we're dealing with.
344  *      @start: driver to start iterating on.
345  *      @data:  data to pass to the callback.
346  *      @fn:    function to call for each driver.
347  *
348  *      This is nearly identical to the device iterator above.
349  *      We iterate over each driver that belongs to @bus, and call
350  *      @fn for each. If @fn returns anything but 0, we break out
351  *      and return it. If @start is not NULL, we use it as the head
352  *      of the list.
353  *
354  *      NOTE: we don't return the driver that returns a non-zero
355  *      value, nor do we leave the reference count incremented for that
356  *      driver. If the caller needs to know that info, it must set it
357  *      in the callback. It must also be sure to increment the refcount
358  *      so it doesn't disappear before returning to the caller.
359  */
360
361 int bus_for_each_drv(struct bus_type * bus, struct device_driver * start,
362                      void * data, int (*fn)(struct device_driver *, void *))
363 {
364         struct klist_iter i;
365         struct device_driver * drv;
366         int error = 0;
367
368         if (!bus)
369                 return -EINVAL;
370
371         klist_iter_init_node(&bus->klist_drivers, &i,
372                              start ? &start->knode_bus : NULL);
373         while ((drv = next_driver(&i)) && !error)
374                 error = fn(drv, data);
375         klist_iter_exit(&i);
376         return error;
377 }
378
379 static int device_add_attrs(struct bus_type *bus, struct device *dev)
380 {
381         int error = 0;
382         int i;
383
384         if (!bus->dev_attrs)
385                 return 0;
386
387         for (i = 0; attr_name(bus->dev_attrs[i]); i++) {
388                 error = device_create_file(dev,&bus->dev_attrs[i]);
389                 if (error) {
390                         while (--i >= 0)
391                                 device_remove_file(dev, &bus->dev_attrs[i]);
392                         break;
393                 }
394         }
395         return error;
396 }
397
398 static void device_remove_attrs(struct bus_type * bus, struct device * dev)
399 {
400         int i;
401
402         if (bus->dev_attrs) {
403                 for (i = 0; attr_name(bus->dev_attrs[i]); i++)
404                         device_remove_file(dev,&bus->dev_attrs[i]);
405         }
406 }
407
408 #ifdef CONFIG_SYSFS_DEPRECATED
409 static int make_deprecated_bus_links(struct device *dev)
410 {
411         return sysfs_create_link(&dev->kobj,
412                                  &dev->bus->subsys.kobj, "bus");
413 }
414
415 static void remove_deprecated_bus_links(struct device *dev)
416 {
417         sysfs_remove_link(&dev->kobj, "bus");
418 }
419 #else
420 static inline int make_deprecated_bus_links(struct device *dev) { return 0; }
421 static inline void remove_deprecated_bus_links(struct device *dev) { }
422 #endif
423
424 /**
425  *      bus_add_device - add device to bus
426  *      @dev:   device being added
427  *
428  *      - Add the device to its bus's list of devices.
429  *      - Create link to device's bus.
430  */
431 int bus_add_device(struct device * dev)
432 {
433         struct bus_type * bus = get_bus(dev->bus);
434         int error = 0;
435
436         if (bus) {
437                 pr_debug("bus %s: add device %s\n", bus->name, dev->bus_id);
438                 error = device_add_attrs(bus, dev);
439                 if (error)
440                         goto out_put;
441                 error = sysfs_create_link(&bus->devices.kobj,
442                                                 &dev->kobj, dev->bus_id);
443                 if (error)
444                         goto out_id;
445                 error = sysfs_create_link(&dev->kobj,
446                                 &dev->bus->subsys.kobj, "subsystem");
447                 if (error)
448                         goto out_subsys;
449                 error = make_deprecated_bus_links(dev);
450                 if (error)
451                         goto out_deprecated;
452         }
453         return 0;
454
455 out_deprecated:
456         sysfs_remove_link(&dev->kobj, "subsystem");
457 out_subsys:
458         sysfs_remove_link(&bus->devices.kobj, dev->bus_id);
459 out_id:
460         device_remove_attrs(bus, dev);
461 out_put:
462         put_bus(dev->bus);
463         return error;
464 }
465
466 /**
467  *      bus_attach_device - add device to bus
468  *      @dev:   device tried to attach to a driver
469  *
470  *      - Add device to bus's list of devices.
471  *      - Try to attach to driver.
472  */
473 void bus_attach_device(struct device * dev)
474 {
475         struct bus_type *bus = dev->bus;
476         int ret = 0;
477
478         if (bus) {
479                 dev->is_registered = 1;
480                 if (bus->drivers_autoprobe)
481                         ret = device_attach(dev);
482                 WARN_ON(ret < 0);
483                 if (ret >= 0)
484                         klist_add_tail(&dev->knode_bus, &bus->klist_devices);
485                 else
486                         dev->is_registered = 0;
487         }
488 }
489
490 /**
491  *      bus_remove_device - remove device from bus
492  *      @dev:   device to be removed
493  *
494  *      - Remove symlink from bus's directory.
495  *      - Delete device from bus's list.
496  *      - Detach from its driver.
497  *      - Drop reference taken in bus_add_device().
498  */
499 void bus_remove_device(struct device * dev)
500 {
501         if (dev->bus) {
502                 sysfs_remove_link(&dev->kobj, "subsystem");
503                 remove_deprecated_bus_links(dev);
504                 sysfs_remove_link(&dev->bus->devices.kobj, dev->bus_id);
505                 device_remove_attrs(dev->bus, dev);
506                 if (dev->is_registered) {
507                         dev->is_registered = 0;
508                         klist_del(&dev->knode_bus);
509                 }
510                 pr_debug("bus %s: remove device %s\n", dev->bus->name, dev->bus_id);
511                 device_release_driver(dev);
512                 put_bus(dev->bus);
513         }
514 }
515
516 static int driver_add_attrs(struct bus_type * bus, struct device_driver * drv)
517 {
518         int error = 0;
519         int i;
520
521         if (bus->drv_attrs) {
522                 for (i = 0; attr_name(bus->drv_attrs[i]); i++) {
523                         error = driver_create_file(drv, &bus->drv_attrs[i]);
524                         if (error)
525                                 goto Err;
526                 }
527         }
528  Done:
529         return error;
530  Err:
531         while (--i >= 0)
532                 driver_remove_file(drv, &bus->drv_attrs[i]);
533         goto Done;
534 }
535
536
537 static void driver_remove_attrs(struct bus_type * bus, struct device_driver * drv)
538 {
539         int i;
540
541         if (bus->drv_attrs) {
542                 for (i = 0; attr_name(bus->drv_attrs[i]); i++)
543                         driver_remove_file(drv, &bus->drv_attrs[i]);
544         }
545 }
546
547 #ifdef CONFIG_HOTPLUG
548 /*
549  * Thanks to drivers making their tables __devinit, we can't allow manual
550  * bind and unbind from userspace unless CONFIG_HOTPLUG is enabled.
551  */
552 static int __must_check add_bind_files(struct device_driver *drv)
553 {
554         int ret;
555
556         ret = driver_create_file(drv, &driver_attr_unbind);
557         if (ret == 0) {
558                 ret = driver_create_file(drv, &driver_attr_bind);
559                 if (ret)
560                         driver_remove_file(drv, &driver_attr_unbind);
561         }
562         return ret;
563 }
564
565 static void remove_bind_files(struct device_driver *drv)
566 {
567         driver_remove_file(drv, &driver_attr_bind);
568         driver_remove_file(drv, &driver_attr_unbind);
569 }
570
571 static int add_probe_files(struct bus_type *bus)
572 {
573         int retval;
574
575         bus->drivers_probe_attr.attr.name = "drivers_probe";
576         bus->drivers_probe_attr.attr.mode = S_IWUSR;
577         bus->drivers_probe_attr.attr.owner = bus->owner;
578         bus->drivers_probe_attr.store = store_drivers_probe;
579         retval = bus_create_file(bus, &bus->drivers_probe_attr);
580         if (retval)
581                 goto out;
582
583         bus->drivers_autoprobe_attr.attr.name = "drivers_autoprobe";
584         bus->drivers_autoprobe_attr.attr.mode = S_IWUSR | S_IRUGO;
585         bus->drivers_autoprobe_attr.attr.owner = bus->owner;
586         bus->drivers_autoprobe_attr.show = show_drivers_autoprobe;
587         bus->drivers_autoprobe_attr.store = store_drivers_autoprobe;
588         retval = bus_create_file(bus, &bus->drivers_autoprobe_attr);
589         if (retval)
590                 bus_remove_file(bus, &bus->drivers_probe_attr);
591 out:
592         return retval;
593 }
594
595 static void remove_probe_files(struct bus_type *bus)
596 {
597         bus_remove_file(bus, &bus->drivers_autoprobe_attr);
598         bus_remove_file(bus, &bus->drivers_probe_attr);
599 }
600 #else
601 static inline int add_bind_files(struct device_driver *drv) { return 0; }
602 static inline void remove_bind_files(struct device_driver *drv) {}
603 static inline int add_probe_files(struct bus_type *bus) { return 0; }
604 static inline void remove_probe_files(struct bus_type *bus) {}
605 #endif
606
607 /**
608  *      bus_add_driver - Add a driver to the bus.
609  *      @drv:   driver.
610  *
611  */
612 int bus_add_driver(struct device_driver *drv)
613 {
614         struct bus_type * bus = get_bus(drv->bus);
615         int error = 0;
616
617         if (!bus)
618                 return -EINVAL;
619
620         pr_debug("bus %s: add driver %s\n", bus->name, drv->name);
621         error = kobject_set_name(&drv->kobj, "%s", drv->name);
622         if (error)
623                 goto out_put_bus;
624         drv->kobj.kset = &bus->drivers;
625         error = kobject_register(&drv->kobj);
626         if (error)
627                 goto out_put_bus;
628
629         if (drv->bus->drivers_autoprobe) {
630                 error = driver_attach(drv);
631                 if (error)
632                         goto out_unregister;
633         }
634         klist_add_tail(&drv->knode_bus, &bus->klist_drivers);
635         module_add_driver(drv->owner, drv);
636
637         error = driver_add_attrs(bus, drv);
638         if (error) {
639                 /* How the hell do we get out of this pickle? Give up */
640                 printk(KERN_ERR "%s: driver_add_attrs(%s) failed\n",
641                         __FUNCTION__, drv->name);
642         }
643         error = add_bind_files(drv);
644         if (error) {
645                 /* Ditto */
646                 printk(KERN_ERR "%s: add_bind_files(%s) failed\n",
647                         __FUNCTION__, drv->name);
648         }
649
650         return error;
651 out_unregister:
652         kobject_unregister(&drv->kobj);
653 out_put_bus:
654         put_bus(bus);
655         return error;
656 }
657
658 /**
659  *      bus_remove_driver - delete driver from bus's knowledge.
660  *      @drv:   driver.
661  *
662  *      Detach the driver from the devices it controls, and remove
663  *      it from its bus's list of drivers. Finally, we drop the reference
664  *      to the bus we took in bus_add_driver().
665  */
666
667 void bus_remove_driver(struct device_driver * drv)
668 {
669         if (!drv->bus)
670                 return;
671
672         remove_bind_files(drv);
673         driver_remove_attrs(drv->bus, drv);
674         klist_remove(&drv->knode_bus);
675         pr_debug("bus %s: remove driver %s\n", drv->bus->name, drv->name);
676         driver_detach(drv);
677         module_remove_driver(drv);
678         kobject_unregister(&drv->kobj);
679         put_bus(drv->bus);
680 }
681
682
683 /* Helper for bus_rescan_devices's iter */
684 static int __must_check bus_rescan_devices_helper(struct device *dev,
685                                                 void *data)
686 {
687         int ret = 0;
688
689         if (!dev->driver) {
690                 if (dev->parent)        /* Needed for USB */
691                         down(&dev->parent->sem);
692                 ret = device_attach(dev);
693                 if (dev->parent)
694                         up(&dev->parent->sem);
695         }
696         return ret < 0 ? ret : 0;
697 }
698
699 /**
700  * bus_rescan_devices - rescan devices on the bus for possible drivers
701  * @bus: the bus to scan.
702  *
703  * This function will look for devices on the bus with no driver
704  * attached and rescan it against existing drivers to see if it matches
705  * any by calling device_attach() for the unbound devices.
706  */
707 int bus_rescan_devices(struct bus_type * bus)
708 {
709         return bus_for_each_dev(bus, NULL, NULL, bus_rescan_devices_helper);
710 }
711
712 /**
713  * device_reprobe - remove driver for a device and probe for a new driver
714  * @dev: the device to reprobe
715  *
716  * This function detaches the attached driver (if any) for the given
717  * device and restarts the driver probing process.  It is intended
718  * to use if probing criteria changed during a devices lifetime and
719  * driver attachment should change accordingly.
720  */
721 int device_reprobe(struct device *dev)
722 {
723         if (dev->driver) {
724                 if (dev->parent)        /* Needed for USB */
725                         down(&dev->parent->sem);
726                 device_release_driver(dev);
727                 if (dev->parent)
728                         up(&dev->parent->sem);
729         }
730         return bus_rescan_devices_helper(dev, NULL);
731 }
732 EXPORT_SYMBOL_GPL(device_reprobe);
733
734 struct bus_type *get_bus(struct bus_type *bus)
735 {
736         return bus ? container_of(subsys_get(&bus->subsys),
737                                 struct bus_type, subsys) : NULL;
738 }
739
740 void put_bus(struct bus_type * bus)
741 {
742         subsys_put(&bus->subsys);
743 }
744
745
746 /**
747  *      find_bus - locate bus by name.
748  *      @name:  name of bus.
749  *
750  *      Call kset_find_obj() to iterate over list of buses to
751  *      find a bus by name. Return bus if found.
752  *
753  *      Note that kset_find_obj increments bus' reference count.
754  */
755 #if 0
756 struct bus_type * find_bus(char * name)
757 {
758         struct kobject * k = kset_find_obj(&bus_subsys.kset, name);
759         return k ? to_bus(k) : NULL;
760 }
761 #endif  /*  0  */
762
763
764 /**
765  *      bus_add_attrs - Add default attributes for this bus.
766  *      @bus:   Bus that has just been registered.
767  */
768
769 static int bus_add_attrs(struct bus_type * bus)
770 {
771         int error = 0;
772         int i;
773
774         if (bus->bus_attrs) {
775                 for (i = 0; attr_name(bus->bus_attrs[i]); i++) {
776                         error = bus_create_file(bus,&bus->bus_attrs[i]);
777                         if (error)
778                                 goto Err;
779                 }
780         }
781  Done:
782         return error;
783  Err:
784         while (--i >= 0)
785                 bus_remove_file(bus,&bus->bus_attrs[i]);
786         goto Done;
787 }
788
789 static void bus_remove_attrs(struct bus_type * bus)
790 {
791         int i;
792
793         if (bus->bus_attrs) {
794                 for (i = 0; attr_name(bus->bus_attrs[i]); i++)
795                         bus_remove_file(bus,&bus->bus_attrs[i]);
796         }
797 }
798
799 static void klist_devices_get(struct klist_node *n)
800 {
801         struct device *dev = container_of(n, struct device, knode_bus);
802
803         get_device(dev);
804 }
805
806 static void klist_devices_put(struct klist_node *n)
807 {
808         struct device *dev = container_of(n, struct device, knode_bus);
809
810         put_device(dev);
811 }
812
813 /**
814  *      bus_register - register a bus with the system.
815  *      @bus:   bus.
816  *
817  *      Once we have that, we registered the bus with the kobject
818  *      infrastructure, then register the children subsystems it has:
819  *      the devices and drivers that belong to the bus.
820  */
821 int bus_register(struct bus_type * bus)
822 {
823         int retval;
824
825         BLOCKING_INIT_NOTIFIER_HEAD(&bus->bus_notifier);
826
827         retval = kobject_set_name(&bus->subsys.kobj, "%s", bus->name);
828         if (retval)
829                 goto out;
830
831         subsys_set_kset(bus, bus_subsys);
832         retval = subsystem_register(&bus->subsys);
833         if (retval)
834                 goto out;
835
836         kobject_set_name(&bus->devices.kobj, "devices");
837         bus->devices.kobj.parent = &bus->subsys.kobj;
838         retval = kset_register(&bus->devices);
839         if (retval)
840                 goto bus_devices_fail;
841
842         kobject_set_name(&bus->drivers.kobj, "drivers");
843         bus->drivers.kobj.parent = &bus->subsys.kobj;
844         bus->drivers.ktype = &ktype_driver;
845         retval = kset_register(&bus->drivers);
846         if (retval)
847                 goto bus_drivers_fail;
848
849         klist_init(&bus->klist_devices, klist_devices_get, klist_devices_put);
850         klist_init(&bus->klist_drivers, NULL, NULL);
851
852         bus->drivers_autoprobe = 1;
853         retval = add_probe_files(bus);
854         if (retval)
855                 goto bus_probe_files_fail;
856
857         retval = bus_add_attrs(bus);
858         if (retval)
859                 goto bus_attrs_fail;
860
861         pr_debug("bus type '%s' registered\n", bus->name);
862         return 0;
863
864 bus_attrs_fail:
865         remove_probe_files(bus);
866 bus_probe_files_fail:
867         kset_unregister(&bus->drivers);
868 bus_drivers_fail:
869         kset_unregister(&bus->devices);
870 bus_devices_fail:
871         subsystem_unregister(&bus->subsys);
872 out:
873         return retval;
874 }
875
876 /**
877  *      bus_unregister - remove a bus from the system
878  *      @bus:   bus.
879  *
880  *      Unregister the child subsystems and the bus itself.
881  *      Finally, we call put_bus() to release the refcount
882  */
883 void bus_unregister(struct bus_type * bus)
884 {
885         pr_debug("bus %s: unregistering\n", bus->name);
886         bus_remove_attrs(bus);
887         remove_probe_files(bus);
888         kset_unregister(&bus->drivers);
889         kset_unregister(&bus->devices);
890         subsystem_unregister(&bus->subsys);
891 }
892
893 int bus_register_notifier(struct bus_type *bus, struct notifier_block *nb)
894 {
895         return blocking_notifier_chain_register(&bus->bus_notifier, nb);
896 }
897 EXPORT_SYMBOL_GPL(bus_register_notifier);
898
899 int bus_unregister_notifier(struct bus_type *bus, struct notifier_block *nb)
900 {
901         return blocking_notifier_chain_unregister(&bus->bus_notifier, nb);
902 }
903 EXPORT_SYMBOL_GPL(bus_unregister_notifier);
904
905 int __init buses_init(void)
906 {
907         return subsystem_register(&bus_subsys);
908 }
909
910
911 EXPORT_SYMBOL_GPL(bus_for_each_dev);
912 EXPORT_SYMBOL_GPL(bus_find_device);
913 EXPORT_SYMBOL_GPL(bus_for_each_drv);
914
915 EXPORT_SYMBOL_GPL(bus_register);
916 EXPORT_SYMBOL_GPL(bus_unregister);
917 EXPORT_SYMBOL_GPL(bus_rescan_devices);
918
919 EXPORT_SYMBOL_GPL(bus_create_file);
920 EXPORT_SYMBOL_GPL(bus_remove_file);