mcpm.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /*
  2. * arch/arm/include/asm/mcpm.h
  3. *
  4. * Created by: Nicolas Pitre, April 2012
  5. * Copyright: (C) 2012-2013 Linaro Limited
  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 MCPM_H
  12. #define MCPM_H
  13. /*
  14. * Maximum number of possible clusters / CPUs per cluster.
  15. *
  16. * This should be sufficient for quite a while, while keeping the
  17. * (assembly) code simpler. When this starts to grow then we'll have
  18. * to consider dynamic allocation.
  19. */
  20. #define MAX_CPUS_PER_CLUSTER 4
  21. #define MAX_NR_CLUSTERS 2
  22. #ifndef __ASSEMBLY__
  23. #include <linux/types.h>
  24. #include <asm/cacheflush.h>
  25. /*
  26. * Platform specific code should use this symbol to set up secondary
  27. * entry location for processors to use when released from reset.
  28. */
  29. extern void mcpm_entry_point(void);
  30. /*
  31. * This is used to indicate where the given CPU from given cluster should
  32. * branch once it is ready to re-enter the kernel using ptr, or NULL if it
  33. * should be gated. A gated CPU is held in a WFE loop until its vector
  34. * becomes non NULL.
  35. */
  36. void mcpm_set_entry_vector(unsigned cpu, unsigned cluster, void *ptr);
  37. /*
  38. * CPU/cluster power operations API for higher subsystems to use.
  39. */
  40. /**
  41. * mcpm_cpu_power_up - make given CPU in given cluster runable
  42. *
  43. * @cpu: CPU number within given cluster
  44. * @cluster: cluster number for the CPU
  45. *
  46. * The identified CPU is brought out of reset. If the cluster was powered
  47. * down then it is brought up as well, taking care not to let the other CPUs
  48. * in the cluster run, and ensuring appropriate cluster setup.
  49. *
  50. * Caller must ensure the appropriate entry vector is initialized with
  51. * mcpm_set_entry_vector() prior to calling this.
  52. *
  53. * This must be called in a sleepable context. However, the implementation
  54. * is strongly encouraged to return early and let the operation happen
  55. * asynchronously, especially when significant delays are expected.
  56. *
  57. * If the operation cannot be performed then an error code is returned.
  58. */
  59. int mcpm_cpu_power_up(unsigned int cpu, unsigned int cluster);
  60. /**
  61. * mcpm_cpu_power_down - power the calling CPU down
  62. *
  63. * The calling CPU is powered down.
  64. *
  65. * If this CPU is found to be the "last man standing" in the cluster
  66. * then the cluster is prepared for power-down too.
  67. *
  68. * This must be called with interrupts disabled.
  69. *
  70. * On success this does not return. Re-entry in the kernel is expected
  71. * via mcpm_entry_point.
  72. *
  73. * This will return if mcpm_platform_register() has not been called
  74. * previously in which case the caller should take appropriate action.
  75. */
  76. void mcpm_cpu_power_down(void);
  77. /**
  78. * mcpm_cpu_suspend - bring the calling CPU in a suspended state
  79. *
  80. * @expected_residency: duration in microseconds the CPU is expected
  81. * to remain suspended, or 0 if unknown/infinity.
  82. *
  83. * The calling CPU is suspended. The expected residency argument is used
  84. * as a hint by the platform specific backend to implement the appropriate
  85. * sleep state level according to the knowledge it has on wake-up latency
  86. * for the given hardware.
  87. *
  88. * If this CPU is found to be the "last man standing" in the cluster
  89. * then the cluster may be prepared for power-down too, if the expected
  90. * residency makes it worthwhile.
  91. *
  92. * This must be called with interrupts disabled.
  93. *
  94. * On success this does not return. Re-entry in the kernel is expected
  95. * via mcpm_entry_point.
  96. *
  97. * This will return if mcpm_platform_register() has not been called
  98. * previously in which case the caller should take appropriate action.
  99. */
  100. void mcpm_cpu_suspend(u64 expected_residency);
  101. /**
  102. * mcpm_cpu_powered_up - housekeeping workafter a CPU has been powered up
  103. *
  104. * This lets the platform specific backend code perform needed housekeeping
  105. * work. This must be called by the newly activated CPU as soon as it is
  106. * fully operational in kernel space, before it enables interrupts.
  107. *
  108. * If the operation cannot be performed then an error code is returned.
  109. */
  110. int mcpm_cpu_powered_up(void);
  111. /*
  112. * Platform specific methods used in the implementation of the above API.
  113. */
  114. struct mcpm_platform_ops {
  115. int (*power_up)(unsigned int cpu, unsigned int cluster);
  116. void (*power_down)(void);
  117. void (*suspend)(u64);
  118. void (*powered_up)(void);
  119. };
  120. /**
  121. * mcpm_platform_register - register platform specific power methods
  122. *
  123. * @ops: mcpm_platform_ops structure to register
  124. *
  125. * An error is returned if the registration has been done previously.
  126. */
  127. int __init mcpm_platform_register(const struct mcpm_platform_ops *ops);
  128. /* Synchronisation structures for coordinating safe cluster setup/teardown: */
  129. /*
  130. * When modifying this structure, make sure you update the MCPM_SYNC_ defines
  131. * to match.
  132. */
  133. struct mcpm_sync_struct {
  134. /* individual CPU states */
  135. struct {
  136. s8 cpu __aligned(__CACHE_WRITEBACK_GRANULE);
  137. } cpus[MAX_CPUS_PER_CLUSTER];
  138. /* cluster state */
  139. s8 cluster __aligned(__CACHE_WRITEBACK_GRANULE);
  140. /* inbound-side state */
  141. s8 inbound __aligned(__CACHE_WRITEBACK_GRANULE);
  142. };
  143. struct sync_struct {
  144. struct mcpm_sync_struct clusters[MAX_NR_CLUSTERS];
  145. };
  146. extern unsigned long sync_phys; /* physical address of *mcpm_sync */
  147. void __mcpm_cpu_going_down(unsigned int cpu, unsigned int cluster);
  148. void __mcpm_cpu_down(unsigned int cpu, unsigned int cluster);
  149. void __mcpm_outbound_leave_critical(unsigned int cluster, int state);
  150. bool __mcpm_outbound_enter_critical(unsigned int this_cpu, unsigned int cluster);
  151. int __mcpm_cluster_state(unsigned int cluster);
  152. int __init mcpm_sync_init(
  153. void (*power_up_setup)(unsigned int affinity_level));
  154. void __init mcpm_smp_set_ops(void);
  155. #else
  156. /*
  157. * asm-offsets.h causes trouble when included in .c files, and cacheflush.h
  158. * cannot be included in asm files. Let's work around the conflict like this.
  159. */
  160. #include <asm/asm-offsets.h>
  161. #define __CACHE_WRITEBACK_GRANULE CACHE_WRITEBACK_GRANULE
  162. #endif /* ! __ASSEMBLY__ */
  163. /* Definitions for mcpm_sync_struct */
  164. #define CPU_DOWN 0x11
  165. #define CPU_COMING_UP 0x12
  166. #define CPU_UP 0x13
  167. #define CPU_GOING_DOWN 0x14
  168. #define CLUSTER_DOWN 0x21
  169. #define CLUSTER_UP 0x22
  170. #define CLUSTER_GOING_DOWN 0x23
  171. #define INBOUND_NOT_COMING_UP 0x31
  172. #define INBOUND_COMING_UP 0x32
  173. /*
  174. * Offsets for the mcpm_sync_struct members, for use in asm.
  175. * We don't want to make them global to the kernel via asm-offsets.c.
  176. */
  177. #define MCPM_SYNC_CLUSTER_CPUS 0
  178. #define MCPM_SYNC_CPU_SIZE __CACHE_WRITEBACK_GRANULE
  179. #define MCPM_SYNC_CLUSTER_CLUSTER \
  180. (MCPM_SYNC_CLUSTER_CPUS + MCPM_SYNC_CPU_SIZE * MAX_CPUS_PER_CLUSTER)
  181. #define MCPM_SYNC_CLUSTER_INBOUND \
  182. (MCPM_SYNC_CLUSTER_CLUSTER + __CACHE_WRITEBACK_GRANULE)
  183. #define MCPM_SYNC_CLUSTER_SIZE \
  184. (MCPM_SYNC_CLUSTER_INBOUND + __CACHE_WRITEBACK_GRANULE)
  185. #endif