pm.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * OMAP2/3 Power Management Routines
  3. *
  4. * Copyright (C) 2008 Nokia Corporation
  5. * Jouni Hogander
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef __ARCH_ARM_MACH_OMAP2_PM_H
  12. #define __ARCH_ARM_MACH_OMAP2_PM_H
  13. #include <linux/err.h>
  14. #include "powerdomain.h"
  15. extern void *omap3_secure_ram_storage;
  16. extern void omap3_pm_off_mode_enable(int);
  17. extern void omap_sram_idle(void);
  18. extern int omap3_can_sleep(void);
  19. extern int omap_set_pwrdm_state(struct powerdomain *pwrdm, u32 state);
  20. extern int omap3_idle_init(void);
  21. extern int omap4_idle_init(void);
  22. extern int omap_pm_clkdms_setup(struct clockdomain *clkdm, void *unused);
  23. extern int (*omap_pm_suspend)(void);
  24. #if defined(CONFIG_PM_OPP)
  25. extern int omap3_opp_init(void);
  26. extern int omap4_opp_init(void);
  27. #else
  28. static inline int omap3_opp_init(void)
  29. {
  30. return -EINVAL;
  31. }
  32. static inline int omap4_opp_init(void)
  33. {
  34. return -EINVAL;
  35. }
  36. #endif
  37. /*
  38. * cpuidle mach specific parameters
  39. *
  40. * The board code can override the default C-states definition using
  41. * omap3_pm_init_cpuidle
  42. */
  43. struct cpuidle_params {
  44. u32 exit_latency; /* exit_latency = sleep + wake-up latencies */
  45. u32 target_residency;
  46. u8 valid; /* validates the C-state */
  47. };
  48. #if defined(CONFIG_PM) && defined(CONFIG_CPU_IDLE)
  49. extern void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params);
  50. #else
  51. static
  52. inline void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params)
  53. {
  54. }
  55. #endif
  56. extern int omap3_pm_get_suspend_state(struct powerdomain *pwrdm);
  57. extern int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state);
  58. #ifdef CONFIG_PM_DEBUG
  59. extern u32 enable_off_mode;
  60. #else
  61. #define enable_off_mode 0
  62. #endif
  63. #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
  64. extern void pm_dbg_update_time(struct powerdomain *pwrdm, int prev);
  65. #else
  66. #define pm_dbg_update_time(pwrdm, prev) do {} while (0);
  67. #endif /* CONFIG_PM_DEBUG */
  68. /* 24xx */
  69. extern void omap24xx_idle_loop_suspend(void);
  70. extern unsigned int omap24xx_idle_loop_suspend_sz;
  71. extern void omap24xx_cpu_suspend(u32 dll_ctrl, void __iomem *sdrc_dlla_ctrl,
  72. void __iomem *sdrc_power);
  73. extern unsigned int omap24xx_cpu_suspend_sz;
  74. /* 3xxx */
  75. extern void omap34xx_cpu_suspend(int save_state);
  76. /* omap3_do_wfi function pointer and size, for copy to SRAM */
  77. extern void omap3_do_wfi(void);
  78. extern unsigned int omap3_do_wfi_sz;
  79. /* ... and its pointer from SRAM after copy */
  80. extern void (*omap3_do_wfi_sram)(void);
  81. /* save_secure_ram_context function pointer and size, for copy to SRAM */
  82. extern int save_secure_ram_context(u32 *addr);
  83. extern unsigned int save_secure_ram_context_sz;
  84. extern void omap3_save_scratchpad_contents(void);
  85. #define PM_RTA_ERRATUM_i608 (1 << 0)
  86. #define PM_SDRC_WAKEUP_ERRATUM_i583 (1 << 1)
  87. #if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3)
  88. extern u16 pm34xx_errata;
  89. #define IS_PM34XX_ERRATUM(id) (pm34xx_errata & (id))
  90. extern void enable_omap3630_toggle_l2_on_restore(void);
  91. #else
  92. #define IS_PM34XX_ERRATUM(id) 0
  93. static inline void enable_omap3630_toggle_l2_on_restore(void) { }
  94. #endif /* defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3) */
  95. #ifdef CONFIG_OMAP_SMARTREFLEX
  96. extern int omap_devinit_smartreflex(void);
  97. extern void omap_enable_smartreflex_on_init(void);
  98. #else
  99. static inline int omap_devinit_smartreflex(void)
  100. {
  101. return -EINVAL;
  102. }
  103. static inline void omap_enable_smartreflex_on_init(void) {}
  104. #endif
  105. #ifdef CONFIG_TWL4030_CORE
  106. extern int omap3_twl_init(void);
  107. extern int omap4_twl_init(void);
  108. extern int omap3_twl_set_sr_bit(bool enable);
  109. #else
  110. static inline int omap3_twl_init(void)
  111. {
  112. return -EINVAL;
  113. }
  114. static inline int omap4_twl_init(void)
  115. {
  116. return -EINVAL;
  117. }
  118. #endif
  119. #endif