pm.c 5.2 KB

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