main.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * drivers/base/power/main.c - Where the driver meets power management.
  3. *
  4. * Copyright (c) 2003 Patrick Mochel
  5. * Copyright (c) 2003 Open Source Development Lab
  6. *
  7. * This file is released under the GPLv2
  8. *
  9. *
  10. * The driver model core calls device_pm_add() when a device is registered.
  11. * This will intialize the embedded device_pm_info object in the device
  12. * and add it to the list of power-controlled devices. sysfs entries for
  13. * controlling device power management will also be added.
  14. *
  15. * A different set of lists than the global subsystem list are used to
  16. * keep track of power info because we use different lists to hold
  17. * devices based on what stage of the power management process they
  18. * are in. The power domain dependencies may also differ from the
  19. * ancestral dependencies that the subsystem list maintains.
  20. */
  21. #include <linux/device.h>
  22. #include "power.h"
  23. LIST_HEAD(dpm_active);
  24. LIST_HEAD(dpm_off);
  25. LIST_HEAD(dpm_off_irq);
  26. DECLARE_MUTEX(dpm_sem);
  27. DECLARE_MUTEX(dpm_list_sem);
  28. /**
  29. * device_pm_set_parent - Specify power dependency.
  30. * @dev: Device who needs power.
  31. * @parent: Device that supplies power.
  32. *
  33. * This function is used to manually describe a power-dependency
  34. * relationship. It may be used to specify a transversal relationship
  35. * (where the power supplier is not the physical (or electrical)
  36. * ancestor of a specific device.
  37. * The effect of this is that the supplier will not be powered down
  38. * before the power dependent.
  39. */
  40. void device_pm_set_parent(struct device * dev, struct device * parent)
  41. {
  42. put_device(dev->power.pm_parent);
  43. dev->power.pm_parent = get_device(parent);
  44. }
  45. EXPORT_SYMBOL_GPL(device_pm_set_parent);
  46. int device_pm_add(struct device * dev)
  47. {
  48. int error;
  49. pr_debug("PM: Adding info for %s:%s\n",
  50. dev->bus ? dev->bus->name : "No Bus",
  51. kobject_name(&dev->kobj));
  52. down(&dpm_list_sem);
  53. list_add_tail(&dev->power.entry, &dpm_active);
  54. device_pm_set_parent(dev, dev->parent);
  55. if ((error = dpm_sysfs_add(dev)))
  56. list_del(&dev->power.entry);
  57. up(&dpm_list_sem);
  58. return error;
  59. }
  60. void device_pm_remove(struct device * dev)
  61. {
  62. pr_debug("PM: Removing info for %s:%s\n",
  63. dev->bus ? dev->bus->name : "No Bus",
  64. kobject_name(&dev->kobj));
  65. down(&dpm_list_sem);
  66. dpm_sysfs_remove(dev);
  67. put_device(dev->power.pm_parent);
  68. list_del_init(&dev->power.entry);
  69. up(&dpm_list_sem);
  70. }