pm.c 5.4 KB

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