pm.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * Copyright (C) ST-Ericsson SA 2010-2013
  3. * Author: Rickard Andersson <rickard.andersson@stericsson.com> for
  4. * ST-Ericsson.
  5. * Author: Daniel Lezcano <daniel.lezcano@linaro.org> for Linaro.
  6. * Author: Ulf Hansson <ulf.hansson@linaro.org> for Linaro.
  7. *
  8. * License terms: GNU General Public License (GPL) version 2
  9. *
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/irqchip/arm-gic.h>
  13. #include <linux/delay.h>
  14. #include <linux/io.h>
  15. #include <linux/suspend.h>
  16. #include <linux/platform_data/arm-ux500-pm.h>
  17. #include "db8500-regs.h"
  18. #include "pm_domains.h"
  19. /* ARM WFI Standby signal register */
  20. #define PRCM_ARM_WFI_STANDBY (prcmu_base + 0x130)
  21. #define PRCM_ARM_WFI_STANDBY_WFI0 0x08
  22. #define PRCM_ARM_WFI_STANDBY_WFI1 0x10
  23. #define PRCM_IOCR (prcmu_base + 0x310)
  24. #define PRCM_IOCR_IOFORCE 0x1
  25. /* Dual A9 core interrupt management unit registers */
  26. #define PRCM_A9_MASK_REQ (prcmu_base + 0x328)
  27. #define PRCM_A9_MASK_REQ_PRCM_A9_MASK_REQ 0x1
  28. #define PRCM_A9_MASK_ACK (prcmu_base + 0x32c)
  29. #define PRCM_ARMITMSK31TO0 (prcmu_base + 0x11c)
  30. #define PRCM_ARMITMSK63TO32 (prcmu_base + 0x120)
  31. #define PRCM_ARMITMSK95TO64 (prcmu_base + 0x124)
  32. #define PRCM_ARMITMSK127TO96 (prcmu_base + 0x128)
  33. #define PRCM_POWER_STATE_VAL (prcmu_base + 0x25C)
  34. #define PRCM_ARMITVAL31TO0 (prcmu_base + 0x260)
  35. #define PRCM_ARMITVAL63TO32 (prcmu_base + 0x264)
  36. #define PRCM_ARMITVAL95TO64 (prcmu_base + 0x268)
  37. #define PRCM_ARMITVAL127TO96 (prcmu_base + 0x26C)
  38. static void __iomem *prcmu_base;
  39. /* This function decouple the gic from the prcmu */
  40. int prcmu_gic_decouple(void)
  41. {
  42. u32 val = readl(PRCM_A9_MASK_REQ);
  43. /* Set bit 0 register value to 1 */
  44. writel(val | PRCM_A9_MASK_REQ_PRCM_A9_MASK_REQ,
  45. PRCM_A9_MASK_REQ);
  46. /* Make sure the register is updated */
  47. readl(PRCM_A9_MASK_REQ);
  48. /* Wait a few cycles for the gic mask completion */
  49. udelay(1);
  50. return 0;
  51. }
  52. /* This function recouple the gic with the prcmu */
  53. int prcmu_gic_recouple(void)
  54. {
  55. u32 val = readl(PRCM_A9_MASK_REQ);
  56. /* Set bit 0 register value to 0 */
  57. writel(val & ~PRCM_A9_MASK_REQ_PRCM_A9_MASK_REQ, PRCM_A9_MASK_REQ);
  58. return 0;
  59. }
  60. #define PRCMU_GIC_NUMBER_REGS 5
  61. /*
  62. * This function checks if there are pending irq on the gic. It only
  63. * makes sense if the gic has been decoupled before with the
  64. * db8500_prcmu_gic_decouple function. Disabling an interrupt only
  65. * disables the forwarding of the interrupt to any CPU interface. It
  66. * does not prevent the interrupt from changing state, for example
  67. * becoming pending, or active and pending if it is already
  68. * active. Hence, we have to check the interrupt is pending *and* is
  69. * active.
  70. */
  71. bool prcmu_gic_pending_irq(void)
  72. {
  73. u32 pr; /* Pending register */
  74. u32 er; /* Enable register */
  75. void __iomem *dist_base = __io_address(U8500_GIC_DIST_BASE);
  76. int i;
  77. /* 5 registers. STI & PPI not skipped */
  78. for (i = 0; i < PRCMU_GIC_NUMBER_REGS; i++) {
  79. pr = readl_relaxed(dist_base + GIC_DIST_PENDING_SET + i * 4);
  80. er = readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
  81. if (pr & er)
  82. return true; /* There is a pending interrupt */
  83. }
  84. return false;
  85. }
  86. /*
  87. * This function checks if there are pending interrupt on the
  88. * prcmu which has been delegated to monitor the irqs with the
  89. * db8500_prcmu_copy_gic_settings function.
  90. */
  91. bool prcmu_pending_irq(void)
  92. {
  93. u32 it, im;
  94. int i;
  95. for (i = 0; i < PRCMU_GIC_NUMBER_REGS - 1; i++) {
  96. it = readl(PRCM_ARMITVAL31TO0 + i * 4);
  97. im = readl(PRCM_ARMITMSK31TO0 + i * 4);
  98. if (it & im)
  99. return true; /* There is a pending interrupt */
  100. }
  101. return false;
  102. }
  103. /*
  104. * This function checks if the specified cpu is in in WFI. It's usage
  105. * makes sense only if the gic is decoupled with the db8500_prcmu_gic_decouple
  106. * function. Of course passing smp_processor_id() to this function will
  107. * always return false...
  108. */
  109. bool prcmu_is_cpu_in_wfi(int cpu)
  110. {
  111. return readl(PRCM_ARM_WFI_STANDBY) & cpu ? PRCM_ARM_WFI_STANDBY_WFI1 :
  112. PRCM_ARM_WFI_STANDBY_WFI0;
  113. }
  114. /*
  115. * This function copies the gic SPI settings to the prcmu in order to
  116. * monitor them and abort/finish the retention/off sequence or state.
  117. */
  118. int prcmu_copy_gic_settings(void)
  119. {
  120. u32 er; /* Enable register */
  121. void __iomem *dist_base = __io_address(U8500_GIC_DIST_BASE);
  122. int i;
  123. /* We skip the STI and PPI */
  124. for (i = 0; i < PRCMU_GIC_NUMBER_REGS - 1; i++) {
  125. er = readl_relaxed(dist_base +
  126. GIC_DIST_ENABLE_SET + (i + 1) * 4);
  127. writel(er, PRCM_ARMITMSK31TO0 + i * 4);
  128. }
  129. return 0;
  130. }
  131. #ifdef CONFIG_SUSPEND
  132. static int ux500_suspend_enter(suspend_state_t state)
  133. {
  134. cpu_do_idle();
  135. return 0;
  136. }
  137. static int ux500_suspend_valid(suspend_state_t state)
  138. {
  139. return state == PM_SUSPEND_MEM || state == PM_SUSPEND_STANDBY;
  140. }
  141. static const struct platform_suspend_ops ux500_suspend_ops = {
  142. .enter = ux500_suspend_enter,
  143. .valid = ux500_suspend_valid,
  144. };
  145. #define UX500_SUSPEND_OPS (&ux500_suspend_ops)
  146. #else
  147. #define UX500_SUSPEND_OPS NULL
  148. #endif
  149. void __init ux500_pm_init(u32 phy_base, u32 size)
  150. {
  151. prcmu_base = ioremap(phy_base, size);
  152. if (!prcmu_base) {
  153. pr_err("could not remap PRCMU for PM functions\n");
  154. return;
  155. }
  156. /*
  157. * On watchdog reboot the GIC is in some cases decoupled.
  158. * This will make sure that the GIC is correctly configured.
  159. */
  160. prcmu_gic_recouple();
  161. /* Set up ux500 suspend callbacks. */
  162. suspend_set_ops(UX500_SUSPEND_OPS);
  163. /* Initialize ux500 power domains */
  164. ux500_pm_domains_init();
  165. }