Colin Cross | ce1e326 | 2010-05-24 17:07:46 -0700 | [diff] [blame] | 1 | /* |
Colin Cross | ce1e326 | 2010-05-24 17:07:46 -0700 | [diff] [blame] | 2 | * Copyright (c) 2010 Google, Inc |
Thierry Reding | 7232398 | 2014-07-11 13:19:06 +0200 | [diff] [blame] | 3 | * Copyright (c) 2014 NVIDIA Corporation |
Colin Cross | ce1e326 | 2010-05-24 17:07:46 -0700 | [diff] [blame] | 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 | |
Thierry Reding | 7232398 | 2014-07-11 13:19:06 +0200 | [diff] [blame] | 19 | #ifndef __SOC_TEGRA_PMC_H__ |
| 20 | #define __SOC_TEGRA_PMC_H__ |
| 21 | |
| 22 | #include <linux/reboot.h> |
| 23 | |
| 24 | #include <soc/tegra/pm.h> |
Colin Cross | ce1e326 | 2010-05-24 17:07:46 -0700 | [diff] [blame] | 25 | |
Stephen Warren | a25186e | 2012-10-04 13:50:56 -0600 | [diff] [blame] | 26 | struct clk; |
Stephen Warren | 80b2879 | 2013-11-06 15:45:46 -0700 | [diff] [blame] | 27 | struct reset_control; |
Stephen Warren | a25186e | 2012-10-04 13:50:56 -0600 | [diff] [blame] | 28 | |
Thierry Reding | 7232398 | 2014-07-11 13:19:06 +0200 | [diff] [blame] | 29 | #ifdef CONFIG_PM_SLEEP |
| 30 | enum tegra_suspend_mode tegra_pmc_get_suspend_mode(void); |
| 31 | void tegra_pmc_set_suspend_mode(enum tegra_suspend_mode mode); |
| 32 | void tegra_pmc_enter_suspend_mode(enum tegra_suspend_mode mode); |
| 33 | #endif /* CONFIG_PM_SLEEP */ |
| 34 | |
| 35 | #ifdef CONFIG_SMP |
| 36 | bool tegra_pmc_cpu_is_powered(int cpuid); |
| 37 | int tegra_pmc_cpu_power_on(int cpuid); |
| 38 | int tegra_pmc_cpu_remove_clamping(int cpuid); |
| 39 | #endif /* CONFIG_SMP */ |
| 40 | |
| 41 | /* |
| 42 | * powergate and I/O rail APIs |
| 43 | */ |
| 44 | |
Colin Cross | ce1e326 | 2010-05-24 17:07:46 -0700 | [diff] [blame] | 45 | #define TEGRA_POWERGATE_CPU 0 |
| 46 | #define TEGRA_POWERGATE_3D 1 |
| 47 | #define TEGRA_POWERGATE_VENC 2 |
| 48 | #define TEGRA_POWERGATE_PCIE 3 |
| 49 | #define TEGRA_POWERGATE_VDEC 4 |
| 50 | #define TEGRA_POWERGATE_L2 5 |
| 51 | #define TEGRA_POWERGATE_MPE 6 |
Peter De Schrijver | 6cafa97 | 2012-02-10 01:47:48 +0200 | [diff] [blame] | 52 | #define TEGRA_POWERGATE_HEG 7 |
| 53 | #define TEGRA_POWERGATE_SATA 8 |
| 54 | #define TEGRA_POWERGATE_CPU1 9 |
| 55 | #define TEGRA_POWERGATE_CPU2 10 |
| 56 | #define TEGRA_POWERGATE_CPU3 11 |
| 57 | #define TEGRA_POWERGATE_CELP 12 |
| 58 | #define TEGRA_POWERGATE_3D1 13 |
Thierry Reding | bd6a9dd | 2013-10-16 19:19:02 +0200 | [diff] [blame] | 59 | #define TEGRA_POWERGATE_CPU0 14 |
| 60 | #define TEGRA_POWERGATE_C0NC 15 |
| 61 | #define TEGRA_POWERGATE_C1NC 16 |
Thierry Reding | 9a716579 | 2013-12-13 17:31:03 +0100 | [diff] [blame] | 62 | #define TEGRA_POWERGATE_SOR 17 |
Thierry Reding | bd6a9dd | 2013-10-16 19:19:02 +0200 | [diff] [blame] | 63 | #define TEGRA_POWERGATE_DIS 18 |
| 64 | #define TEGRA_POWERGATE_DISB 19 |
| 65 | #define TEGRA_POWERGATE_XUSBA 20 |
| 66 | #define TEGRA_POWERGATE_XUSBB 21 |
| 67 | #define TEGRA_POWERGATE_XUSBC 22 |
Thierry Reding | 9a716579 | 2013-12-13 17:31:03 +0100 | [diff] [blame] | 68 | #define TEGRA_POWERGATE_VIC 23 |
| 69 | #define TEGRA_POWERGATE_IRAM 24 |
Thierry Reding | c2fe469 | 2015-03-23 11:31:29 +0100 | [diff] [blame] | 70 | #define TEGRA_POWERGATE_NVDEC 25 |
| 71 | #define TEGRA_POWERGATE_NVJPG 26 |
| 72 | #define TEGRA_POWERGATE_AUD 27 |
| 73 | #define TEGRA_POWERGATE_DFD 28 |
| 74 | #define TEGRA_POWERGATE_VE2 29 |
Peter De Schrijver | 6cafa97 | 2012-02-10 01:47:48 +0200 | [diff] [blame] | 75 | |
Peter De Schrijver | 6cafa97 | 2012-02-10 01:47:48 +0200 | [diff] [blame] | 76 | #define TEGRA_POWERGATE_3D0 TEGRA_POWERGATE_3D |
Colin Cross | ce1e326 | 2010-05-24 17:07:46 -0700 | [diff] [blame] | 77 | |
Thierry Reding | 9d4450a | 2013-12-16 21:42:28 +0100 | [diff] [blame] | 78 | #define TEGRA_IO_RAIL_CSIA 0 |
| 79 | #define TEGRA_IO_RAIL_CSIB 1 |
| 80 | #define TEGRA_IO_RAIL_DSI 2 |
| 81 | #define TEGRA_IO_RAIL_MIPI_BIAS 3 |
| 82 | #define TEGRA_IO_RAIL_PEX_BIAS 4 |
| 83 | #define TEGRA_IO_RAIL_PEX_CLK1 5 |
| 84 | #define TEGRA_IO_RAIL_PEX_CLK2 6 |
| 85 | #define TEGRA_IO_RAIL_USB0 9 |
| 86 | #define TEGRA_IO_RAIL_USB1 10 |
| 87 | #define TEGRA_IO_RAIL_USB2 11 |
| 88 | #define TEGRA_IO_RAIL_USB_BIAS 12 |
| 89 | #define TEGRA_IO_RAIL_NAND 13 |
| 90 | #define TEGRA_IO_RAIL_UART 14 |
| 91 | #define TEGRA_IO_RAIL_BB 15 |
| 92 | #define TEGRA_IO_RAIL_AUDIO 17 |
| 93 | #define TEGRA_IO_RAIL_HSIC 19 |
| 94 | #define TEGRA_IO_RAIL_COMP 22 |
| 95 | #define TEGRA_IO_RAIL_HDMI 28 |
| 96 | #define TEGRA_IO_RAIL_PEX_CNTRL 32 |
| 97 | #define TEGRA_IO_RAIL_SDMMC1 33 |
| 98 | #define TEGRA_IO_RAIL_SDMMC3 34 |
| 99 | #define TEGRA_IO_RAIL_SDMMC4 35 |
| 100 | #define TEGRA_IO_RAIL_CAM 36 |
| 101 | #define TEGRA_IO_RAIL_RES 37 |
| 102 | #define TEGRA_IO_RAIL_HV 38 |
| 103 | #define TEGRA_IO_RAIL_DSIB 39 |
| 104 | #define TEGRA_IO_RAIL_DSIC 40 |
| 105 | #define TEGRA_IO_RAIL_DSID 41 |
| 106 | #define TEGRA_IO_RAIL_CSIE 44 |
| 107 | #define TEGRA_IO_RAIL_LVDS 57 |
| 108 | #define TEGRA_IO_RAIL_SYS_DDC 58 |
| 109 | |
Thierry Reding | 9886e1f | 2013-11-25 11:49:47 -0700 | [diff] [blame] | 110 | #ifdef CONFIG_ARCH_TEGRA |
Peter De Schrijver | 6ac8cb5 | 2012-02-10 01:47:47 +0200 | [diff] [blame] | 111 | int tegra_powergate_is_powered(int id); |
Colin Cross | ce1e326 | 2010-05-24 17:07:46 -0700 | [diff] [blame] | 112 | int tegra_powergate_power_on(int id); |
| 113 | int tegra_powergate_power_off(int id); |
Colin Cross | ce1e326 | 2010-05-24 17:07:46 -0700 | [diff] [blame] | 114 | int tegra_powergate_remove_clamping(int id); |
| 115 | |
| 116 | /* Must be called with clk disabled, and returns with clk enabled */ |
Stephen Warren | 80b2879 | 2013-11-06 15:45:46 -0700 | [diff] [blame] | 117 | int tegra_powergate_sequence_power_up(int id, struct clk *clk, |
| 118 | struct reset_control *rst); |
Thierry Reding | 9d4450a | 2013-12-16 21:42:28 +0100 | [diff] [blame] | 119 | |
| 120 | int tegra_io_rail_power_on(int id); |
| 121 | int tegra_io_rail_power_off(int id); |
Thierry Reding | 9886e1f | 2013-11-25 11:49:47 -0700 | [diff] [blame] | 122 | #else |
| 123 | static inline int tegra_powergate_is_powered(int id) |
| 124 | { |
| 125 | return -ENOSYS; |
| 126 | } |
| 127 | |
| 128 | static inline int tegra_powergate_power_on(int id) |
| 129 | { |
| 130 | return -ENOSYS; |
| 131 | } |
| 132 | |
| 133 | static inline int tegra_powergate_power_off(int id) |
| 134 | { |
| 135 | return -ENOSYS; |
| 136 | } |
| 137 | |
| 138 | static inline int tegra_powergate_remove_clamping(int id) |
| 139 | { |
| 140 | return -ENOSYS; |
| 141 | } |
| 142 | |
Stephen Warren | 80b2879 | 2013-11-06 15:45:46 -0700 | [diff] [blame] | 143 | static inline int tegra_powergate_sequence_power_up(int id, struct clk *clk, |
Stephen Warren | f53f415 | 2014-01-13 15:01:42 -0700 | [diff] [blame] | 144 | struct reset_control *rst) |
Thierry Reding | 9886e1f | 2013-11-25 11:49:47 -0700 | [diff] [blame] | 145 | { |
| 146 | return -ENOSYS; |
| 147 | } |
Thierry Reding | 9d4450a | 2013-12-16 21:42:28 +0100 | [diff] [blame] | 148 | |
| 149 | static inline int tegra_io_rail_power_on(int id) |
| 150 | { |
| 151 | return -ENOSYS; |
| 152 | } |
| 153 | |
| 154 | static inline int tegra_io_rail_power_off(int id) |
| 155 | { |
| 156 | return -ENOSYS; |
| 157 | } |
Thierry Reding | 7232398 | 2014-07-11 13:19:06 +0200 | [diff] [blame] | 158 | #endif /* CONFIG_ARCH_TEGRA */ |
Colin Cross | ce1e326 | 2010-05-24 17:07:46 -0700 | [diff] [blame] | 159 | |
Thierry Reding | 7232398 | 2014-07-11 13:19:06 +0200 | [diff] [blame] | 160 | #endif /* __SOC_TEGRA_PMC_H__ */ |