pmc.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*
  2. * Copyright (c) 2010 Google, Inc
  3. * Copyright (c) 2014 NVIDIA Corporation
  4. *
  5. * Author:
  6. * Colin Cross <ccross@google.com>
  7. *
  8. * This software is licensed under the terms of the GNU General Public
  9. * License version 2, as published by the Free Software Foundation, and
  10. * may be copied, distributed, and modified under those terms.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. */
  18. #ifndef __SOC_TEGRA_PMC_H__
  19. #define __SOC_TEGRA_PMC_H__
  20. #include <linux/reboot.h>
  21. #include <soc/tegra/pm.h>
  22. struct clk;
  23. struct reset_control;
  24. #ifdef CONFIG_PM_SLEEP
  25. enum tegra_suspend_mode tegra_pmc_get_suspend_mode(void);
  26. void tegra_pmc_set_suspend_mode(enum tegra_suspend_mode mode);
  27. void tegra_pmc_enter_suspend_mode(enum tegra_suspend_mode mode);
  28. #endif /* CONFIG_PM_SLEEP */
  29. #ifdef CONFIG_SMP
  30. bool tegra_pmc_cpu_is_powered(unsigned int cpuid);
  31. int tegra_pmc_cpu_power_on(unsigned int cpuid);
  32. int tegra_pmc_cpu_remove_clamping(unsigned int cpuid);
  33. #endif /* CONFIG_SMP */
  34. /*
  35. * powergate and I/O rail APIs
  36. */
  37. #define TEGRA_POWERGATE_CPU 0
  38. #define TEGRA_POWERGATE_3D 1
  39. #define TEGRA_POWERGATE_VENC 2
  40. #define TEGRA_POWERGATE_PCIE 3
  41. #define TEGRA_POWERGATE_VDEC 4
  42. #define TEGRA_POWERGATE_L2 5
  43. #define TEGRA_POWERGATE_MPE 6
  44. #define TEGRA_POWERGATE_HEG 7
  45. #define TEGRA_POWERGATE_SATA 8
  46. #define TEGRA_POWERGATE_CPU1 9
  47. #define TEGRA_POWERGATE_CPU2 10
  48. #define TEGRA_POWERGATE_CPU3 11
  49. #define TEGRA_POWERGATE_CELP 12
  50. #define TEGRA_POWERGATE_3D1 13
  51. #define TEGRA_POWERGATE_CPU0 14
  52. #define TEGRA_POWERGATE_C0NC 15
  53. #define TEGRA_POWERGATE_C1NC 16
  54. #define TEGRA_POWERGATE_SOR 17
  55. #define TEGRA_POWERGATE_DIS 18
  56. #define TEGRA_POWERGATE_DISB 19
  57. #define TEGRA_POWERGATE_XUSBA 20
  58. #define TEGRA_POWERGATE_XUSBB 21
  59. #define TEGRA_POWERGATE_XUSBC 22
  60. #define TEGRA_POWERGATE_VIC 23
  61. #define TEGRA_POWERGATE_IRAM 24
  62. #define TEGRA_POWERGATE_NVDEC 25
  63. #define TEGRA_POWERGATE_NVJPG 26
  64. #define TEGRA_POWERGATE_AUD 27
  65. #define TEGRA_POWERGATE_DFD 28
  66. #define TEGRA_POWERGATE_VE2 29
  67. #define TEGRA_POWERGATE_MAX TEGRA_POWERGATE_VE2
  68. #define TEGRA_POWERGATE_3D0 TEGRA_POWERGATE_3D
  69. /**
  70. * enum tegra_io_pad - I/O pad group identifier
  71. *
  72. * I/O pins on Tegra SoCs are grouped into so-called I/O pads. Each such pad
  73. * can be used to control the common voltage signal level and power state of
  74. * the pins of the given pad.
  75. */
  76. enum tegra_io_pad {
  77. TEGRA_IO_PAD_AUDIO,
  78. TEGRA_IO_PAD_AUDIO_HV,
  79. TEGRA_IO_PAD_BB,
  80. TEGRA_IO_PAD_CAM,
  81. TEGRA_IO_PAD_COMP,
  82. TEGRA_IO_PAD_CSIA,
  83. TEGRA_IO_PAD_CSIB,
  84. TEGRA_IO_PAD_CSIC,
  85. TEGRA_IO_PAD_CSID,
  86. TEGRA_IO_PAD_CSIE,
  87. TEGRA_IO_PAD_CSIF,
  88. TEGRA_IO_PAD_DBG,
  89. TEGRA_IO_PAD_DEBUG_NONAO,
  90. TEGRA_IO_PAD_DMIC,
  91. TEGRA_IO_PAD_DP,
  92. TEGRA_IO_PAD_DSI,
  93. TEGRA_IO_PAD_DSIB,
  94. TEGRA_IO_PAD_DSIC,
  95. TEGRA_IO_PAD_DSID,
  96. TEGRA_IO_PAD_EMMC,
  97. TEGRA_IO_PAD_EMMC2,
  98. TEGRA_IO_PAD_GPIO,
  99. TEGRA_IO_PAD_HDMI,
  100. TEGRA_IO_PAD_HSIC,
  101. TEGRA_IO_PAD_HV,
  102. TEGRA_IO_PAD_LVDS,
  103. TEGRA_IO_PAD_MIPI_BIAS,
  104. TEGRA_IO_PAD_NAND,
  105. TEGRA_IO_PAD_PEX_BIAS,
  106. TEGRA_IO_PAD_PEX_CLK1,
  107. TEGRA_IO_PAD_PEX_CLK2,
  108. TEGRA_IO_PAD_PEX_CNTRL,
  109. TEGRA_IO_PAD_SDMMC1,
  110. TEGRA_IO_PAD_SDMMC3,
  111. TEGRA_IO_PAD_SDMMC4,
  112. TEGRA_IO_PAD_SPI,
  113. TEGRA_IO_PAD_SPI_HV,
  114. TEGRA_IO_PAD_SYS_DDC,
  115. TEGRA_IO_PAD_UART,
  116. TEGRA_IO_PAD_USB0,
  117. TEGRA_IO_PAD_USB1,
  118. TEGRA_IO_PAD_USB2,
  119. TEGRA_IO_PAD_USB3,
  120. TEGRA_IO_PAD_USB_BIAS,
  121. };
  122. /* deprecated, use TEGRA_IO_PAD_{HDMI,LVDS} instead */
  123. #define TEGRA_IO_RAIL_HDMI TEGRA_IO_PAD_HDMI
  124. #define TEGRA_IO_RAIL_LVDS TEGRA_IO_PAD_LVDS
  125. /**
  126. * enum tegra_io_pad_voltage - voltage level of the I/O pad's source rail
  127. * @TEGRA_IO_PAD_1800000UV: 1.8 V
  128. * @TEGRA_IO_PAD_3300000UV: 3.3 V
  129. */
  130. enum tegra_io_pad_voltage {
  131. TEGRA_IO_PAD_1800000UV,
  132. TEGRA_IO_PAD_3300000UV,
  133. };
  134. #ifdef CONFIG_ARCH_TEGRA
  135. int tegra_powergate_is_powered(unsigned int id);
  136. int tegra_powergate_power_on(unsigned int id);
  137. int tegra_powergate_power_off(unsigned int id);
  138. int tegra_powergate_remove_clamping(unsigned int id);
  139. /* Must be called with clk disabled, and returns with clk enabled */
  140. int tegra_powergate_sequence_power_up(unsigned int id, struct clk *clk,
  141. struct reset_control *rst);
  142. int tegra_io_pad_power_enable(enum tegra_io_pad id);
  143. int tegra_io_pad_power_disable(enum tegra_io_pad id);
  144. int tegra_io_pad_set_voltage(enum tegra_io_pad id,
  145. enum tegra_io_pad_voltage voltage);
  146. int tegra_io_pad_get_voltage(enum tegra_io_pad id);
  147. /* deprecated, use tegra_io_pad_power_{enable,disable}() instead */
  148. int tegra_io_rail_power_on(unsigned int id);
  149. int tegra_io_rail_power_off(unsigned int id);
  150. #else
  151. static inline int tegra_powergate_is_powered(unsigned int id)
  152. {
  153. return -ENOSYS;
  154. }
  155. static inline int tegra_powergate_power_on(unsigned int id)
  156. {
  157. return -ENOSYS;
  158. }
  159. static inline int tegra_powergate_power_off(unsigned int id)
  160. {
  161. return -ENOSYS;
  162. }
  163. static inline int tegra_powergate_remove_clamping(unsigned int id)
  164. {
  165. return -ENOSYS;
  166. }
  167. static inline int tegra_powergate_sequence_power_up(unsigned int id,
  168. struct clk *clk,
  169. struct reset_control *rst)
  170. {
  171. return -ENOSYS;
  172. }
  173. static inline int tegra_io_pad_power_enable(enum tegra_io_pad id)
  174. {
  175. return -ENOSYS;
  176. }
  177. static inline int tegra_io_pad_power_disable(enum tegra_io_pad id)
  178. {
  179. return -ENOSYS;
  180. }
  181. static inline int tegra_io_pad_set_voltage(enum tegra_io_pad id,
  182. enum tegra_io_pad_voltage voltage)
  183. {
  184. return -ENOSYS;
  185. }
  186. static inline int tegra_io_pad_get_voltage(enum tegra_io_pad id)
  187. {
  188. return -ENOSYS;
  189. }
  190. static inline int tegra_io_rail_power_on(unsigned int id)
  191. {
  192. return -ENOSYS;
  193. }
  194. static inline int tegra_io_rail_power_off(unsigned int id)
  195. {
  196. return -ENOSYS;
  197. }
  198. #endif /* CONFIG_ARCH_TEGRA */
  199. #endif /* __SOC_TEGRA_PMC_H__ */