pm-rmobile.h 589 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (C) 2012 Renesas Solutions Corp.
  3. *
  4. * Kuninori Morimoto <morimoto.kuninori@renesas.com>
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #ifndef PM_RMOBILE_H
  11. #define PM_RMOBILE_H
  12. #include <linux/pm_domain.h>
  13. struct rmobile_pm_domain {
  14. struct generic_pm_domain genpd;
  15. struct dev_power_governor *gov;
  16. int (*suspend)(void);
  17. void (*resume)(void);
  18. void __iomem *base;
  19. unsigned int bit_shift;
  20. bool no_debug;
  21. };
  22. #endif /* PM_RMOBILE_H */