pm_bus.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Runtime PM support code for OMAP1
  3. *
  4. * Author: Kevin Hilman, Deep Root Systems, LLC
  5. *
  6. * Copyright (C) 2010 Texas Instruments, Inc.
  7. *
  8. * This file is licensed under the terms of the GNU General Public
  9. * License version 2. This program is licensed "as is" without any
  10. * warranty of any kind, whether express or implied.
  11. */
  12. #include <linux/init.h>
  13. #include <linux/kernel.h>
  14. #include <linux/io.h>
  15. #include <linux/pm_runtime.h>
  16. #include <linux/pm_clock.h>
  17. #include <linux/platform_device.h>
  18. #include <linux/mutex.h>
  19. #include <linux/clk.h>
  20. #include <linux/err.h>
  21. #include "soc.h"
  22. static struct dev_pm_domain default_pm_domain = {
  23. .ops = {
  24. USE_PM_CLK_RUNTIME_OPS
  25. USE_PLATFORM_PM_SLEEP_OPS
  26. },
  27. };
  28. static struct pm_clk_notifier_block platform_bus_notifier = {
  29. .pm_domain = &default_pm_domain,
  30. .con_ids = { "ick", "fck", NULL, },
  31. };
  32. static int __init omap1_pm_runtime_init(void)
  33. {
  34. if (!cpu_class_is_omap1())
  35. return -ENODEV;
  36. pm_clk_add_notifier(&platform_bus_type, &platform_bus_notifier);
  37. return 0;
  38. }
  39. core_initcall(omap1_pm_runtime_init);