blob: 65a93273e72fe9d8f9ad5bc9358f734ab031e5ff [file] [log] [blame]
Colin Crossce1e3262010-05-24 17:07:46 -07001/*
Colin Crossce1e3262010-05-24 17:07:46 -07002 * Copyright (c) 2010 Google, Inc
Thierry Reding72323982014-07-11 13:19:06 +02003 * Copyright (c) 2014 NVIDIA Corporation
Colin Crossce1e3262010-05-24 17:07:46 -07004 *
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 Reding72323982014-07-11 13:19:06 +020019#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 Crossce1e3262010-05-24 17:07:46 -070025
Stephen Warrena25186e2012-10-04 13:50:56 -060026struct clk;
Stephen Warren80b28792013-11-06 15:45:46 -070027struct reset_control;
Stephen Warrena25186e2012-10-04 13:50:56 -060028
Thierry Reding72323982014-07-11 13:19:06 +020029void tegra_pmc_restart(enum reboot_mode mode, const char *cmd);
30
31#ifdef CONFIG_PM_SLEEP
32enum tegra_suspend_mode tegra_pmc_get_suspend_mode(void);
33void tegra_pmc_set_suspend_mode(enum tegra_suspend_mode mode);
34void tegra_pmc_enter_suspend_mode(enum tegra_suspend_mode mode);
35#endif /* CONFIG_PM_SLEEP */
36
37#ifdef CONFIG_SMP
38bool tegra_pmc_cpu_is_powered(int cpuid);
39int tegra_pmc_cpu_power_on(int cpuid);
40int tegra_pmc_cpu_remove_clamping(int cpuid);
41#endif /* CONFIG_SMP */
42
43/*
44 * powergate and I/O rail APIs
45 */
46
Colin Crossce1e3262010-05-24 17:07:46 -070047#define TEGRA_POWERGATE_CPU 0
48#define TEGRA_POWERGATE_3D 1
49#define TEGRA_POWERGATE_VENC 2
50#define TEGRA_POWERGATE_PCIE 3
51#define TEGRA_POWERGATE_VDEC 4
52#define TEGRA_POWERGATE_L2 5
53#define TEGRA_POWERGATE_MPE 6
Peter De Schrijver6cafa972012-02-10 01:47:48 +020054#define TEGRA_POWERGATE_HEG 7
55#define TEGRA_POWERGATE_SATA 8
56#define TEGRA_POWERGATE_CPU1 9
57#define TEGRA_POWERGATE_CPU2 10
58#define TEGRA_POWERGATE_CPU3 11
59#define TEGRA_POWERGATE_CELP 12
60#define TEGRA_POWERGATE_3D1 13
Thierry Redingbd6a9dd2013-10-16 19:19:02 +020061#define TEGRA_POWERGATE_CPU0 14
62#define TEGRA_POWERGATE_C0NC 15
63#define TEGRA_POWERGATE_C1NC 16
Thierry Reding9a7165792013-12-13 17:31:03 +010064#define TEGRA_POWERGATE_SOR 17
Thierry Redingbd6a9dd2013-10-16 19:19:02 +020065#define TEGRA_POWERGATE_DIS 18
66#define TEGRA_POWERGATE_DISB 19
67#define TEGRA_POWERGATE_XUSBA 20
68#define TEGRA_POWERGATE_XUSBB 21
69#define TEGRA_POWERGATE_XUSBC 22
Thierry Reding9a7165792013-12-13 17:31:03 +010070#define TEGRA_POWERGATE_VIC 23
71#define TEGRA_POWERGATE_IRAM 24
Peter De Schrijver6cafa972012-02-10 01:47:48 +020072
Peter De Schrijver6cafa972012-02-10 01:47:48 +020073#define TEGRA_POWERGATE_3D0 TEGRA_POWERGATE_3D
Colin Crossce1e3262010-05-24 17:07:46 -070074
Thierry Reding9d4450a2013-12-16 21:42:28 +010075#define TEGRA_IO_RAIL_CSIA 0
76#define TEGRA_IO_RAIL_CSIB 1
77#define TEGRA_IO_RAIL_DSI 2
78#define TEGRA_IO_RAIL_MIPI_BIAS 3
79#define TEGRA_IO_RAIL_PEX_BIAS 4
80#define TEGRA_IO_RAIL_PEX_CLK1 5
81#define TEGRA_IO_RAIL_PEX_CLK2 6
82#define TEGRA_IO_RAIL_USB0 9
83#define TEGRA_IO_RAIL_USB1 10
84#define TEGRA_IO_RAIL_USB2 11
85#define TEGRA_IO_RAIL_USB_BIAS 12
86#define TEGRA_IO_RAIL_NAND 13
87#define TEGRA_IO_RAIL_UART 14
88#define TEGRA_IO_RAIL_BB 15
89#define TEGRA_IO_RAIL_AUDIO 17
90#define TEGRA_IO_RAIL_HSIC 19
91#define TEGRA_IO_RAIL_COMP 22
92#define TEGRA_IO_RAIL_HDMI 28
93#define TEGRA_IO_RAIL_PEX_CNTRL 32
94#define TEGRA_IO_RAIL_SDMMC1 33
95#define TEGRA_IO_RAIL_SDMMC3 34
96#define TEGRA_IO_RAIL_SDMMC4 35
97#define TEGRA_IO_RAIL_CAM 36
98#define TEGRA_IO_RAIL_RES 37
99#define TEGRA_IO_RAIL_HV 38
100#define TEGRA_IO_RAIL_DSIB 39
101#define TEGRA_IO_RAIL_DSIC 40
102#define TEGRA_IO_RAIL_DSID 41
103#define TEGRA_IO_RAIL_CSIE 44
104#define TEGRA_IO_RAIL_LVDS 57
105#define TEGRA_IO_RAIL_SYS_DDC 58
106
Thierry Reding9886e1f2013-11-25 11:49:47 -0700107#ifdef CONFIG_ARCH_TEGRA
Peter De Schrijver6ac8cb52012-02-10 01:47:47 +0200108int tegra_powergate_is_powered(int id);
Colin Crossce1e3262010-05-24 17:07:46 -0700109int tegra_powergate_power_on(int id);
110int tegra_powergate_power_off(int id);
Colin Crossce1e3262010-05-24 17:07:46 -0700111int tegra_powergate_remove_clamping(int id);
112
113/* Must be called with clk disabled, and returns with clk enabled */
Stephen Warren80b28792013-11-06 15:45:46 -0700114int tegra_powergate_sequence_power_up(int id, struct clk *clk,
115 struct reset_control *rst);
Thierry Reding9d4450a2013-12-16 21:42:28 +0100116
117int tegra_io_rail_power_on(int id);
118int tegra_io_rail_power_off(int id);
Thierry Reding9886e1f2013-11-25 11:49:47 -0700119#else
120static inline int tegra_powergate_is_powered(int id)
121{
122 return -ENOSYS;
123}
124
125static inline int tegra_powergate_power_on(int id)
126{
127 return -ENOSYS;
128}
129
130static inline int tegra_powergate_power_off(int id)
131{
132 return -ENOSYS;
133}
134
135static inline int tegra_powergate_remove_clamping(int id)
136{
137 return -ENOSYS;
138}
139
Stephen Warren80b28792013-11-06 15:45:46 -0700140static inline int tegra_powergate_sequence_power_up(int id, struct clk *clk,
Stephen Warrenf53f4152014-01-13 15:01:42 -0700141 struct reset_control *rst)
Thierry Reding9886e1f2013-11-25 11:49:47 -0700142{
143 return -ENOSYS;
144}
Thierry Reding9d4450a2013-12-16 21:42:28 +0100145
146static inline int tegra_io_rail_power_on(int id)
147{
148 return -ENOSYS;
149}
150
151static inline int tegra_io_rail_power_off(int id)
152{
153 return -ENOSYS;
154}
Thierry Reding72323982014-07-11 13:19:06 +0200155#endif /* CONFIG_ARCH_TEGRA */
Colin Crossce1e3262010-05-24 17:07:46 -0700156
Thierry Reding72323982014-07-11 13:19:06 +0200157#endif /* __SOC_TEGRA_PMC_H__ */