pm-pxa910.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * PXA910 Power Management Routines
  4. *
  5. * (C) Copyright 2009 Marvell International Ltd.
  6. * All Rights Reserved
  7. */
  8. #ifndef __PXA910_PM_H__
  9. #define __PXA910_PM_H__
  10. #define APMU_MOH_IDLE_CFG APMU_REG(0x0018)
  11. #define APMU_MOH_IDLE_CFG_MOH_IDLE (1 << 1)
  12. #define APMU_MOH_IDLE_CFG_MOH_PWRDWN (1 << 5)
  13. #define APMU_MOH_IDLE_CFG_MOH_SRAM_PWRDWN (1 << 6)
  14. #define APMU_MOH_IDLE_CFG_MOH_PWR_SW(x) (((x) & 0x3) << 16)
  15. #define APMU_MOH_IDLE_CFG_MOH_L2_PWR_SW(x) (((x) & 0x3) << 18)
  16. #define APMU_MOH_IDLE_CFG_MOH_DIS_MC_SW_REQ (1 << 21)
  17. #define APMU_MOH_IDLE_CFG_MOH_MC_WAKE_EN (1 << 20)
  18. #define APMU_SQU_CLK_GATE_CTRL APMU_REG(0x001c)
  19. #define APMU_MC_HW_SLP_TYPE APMU_REG(0x00b0)
  20. #define MPMU_FCCR MPMU_REG(0x0008)
  21. #define MPMU_APCR MPMU_REG(0x1000)
  22. #define MPMU_APCR_AXISD (1 << 31)
  23. #define MPMU_APCR_DSPSD (1 << 30)
  24. #define MPMU_APCR_SLPEN (1 << 29)
  25. #define MPMU_APCR_DTCMSD (1 << 28)
  26. #define MPMU_APCR_DDRCORSD (1 << 27)
  27. #define MPMU_APCR_APBSD (1 << 26)
  28. #define MPMU_APCR_BBSD (1 << 25)
  29. #define MPMU_APCR_SLPWP0 (1 << 23)
  30. #define MPMU_APCR_SLPWP1 (1 << 22)
  31. #define MPMU_APCR_SLPWP2 (1 << 21)
  32. #define MPMU_APCR_SLPWP3 (1 << 20)
  33. #define MPMU_APCR_VCTCXOSD (1 << 19)
  34. #define MPMU_APCR_SLPWP4 (1 << 18)
  35. #define MPMU_APCR_SLPWP5 (1 << 17)
  36. #define MPMU_APCR_SLPWP6 (1 << 16)
  37. #define MPMU_APCR_SLPWP7 (1 << 15)
  38. #define MPMU_APCR_MSASLPEN (1 << 14)
  39. #define MPMU_APCR_STBYEN (1 << 13)
  40. #define MPMU_AWUCRM MPMU_REG(0x104c)
  41. #define MPMU_AWUCRM_AP_ASYNC_INT (1 << 25)
  42. #define MPMU_AWUCRM_AP_FULL_IDLE (1 << 24)
  43. #define MPMU_AWUCRM_SDH1 (1 << 23)
  44. #define MPMU_AWUCRM_SDH2 (1 << 22)
  45. #define MPMU_AWUCRM_KEYPRESS (1 << 21)
  46. #define MPMU_AWUCRM_TRACKBALL (1 << 20)
  47. #define MPMU_AWUCRM_NEWROTARY (1 << 19)
  48. #define MPMU_AWUCRM_RTC_ALARM (1 << 17)
  49. #define MPMU_AWUCRM_AP2_TIMER_3 (1 << 13)
  50. #define MPMU_AWUCRM_AP2_TIMER_2 (1 << 12)
  51. #define MPMU_AWUCRM_AP2_TIMER_1 (1 << 11)
  52. #define MPMU_AWUCRM_AP1_TIMER_3 (1 << 10)
  53. #define MPMU_AWUCRM_AP1_TIMER_2 (1 << 9)
  54. #define MPMU_AWUCRM_AP1_TIMER_1 (1 << 8)
  55. #define MPMU_AWUCRM_WAKEUP(x) (1 << ((x) & 0x7))
  56. enum {
  57. POWER_MODE_ACTIVE = 0,
  58. POWER_MODE_CORE_INTIDLE,
  59. POWER_MODE_CORE_EXTIDLE,
  60. POWER_MODE_APPS_IDLE,
  61. POWER_MODE_APPS_SLEEP,
  62. POWER_MODE_SYS_SLEEP,
  63. POWER_MODE_HIBERNATE,
  64. POWER_MODE_UDR,
  65. };
  66. extern int pxa910_set_wake(struct irq_data *data, unsigned int on);
  67. #endif