summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/include/mach/tegra20-pmc.h
blob: c379544755ae1c53f5db128e2c459dcd1f1dc8e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
 * Copyright (C) 2013 Lucas Stach <l.stach@pengutronix.de>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/* register definitions */
#define PMC_CNTRL			0x000
#define PMC_CNTRL_FUSE_OVERRIDE		(1 << 18)
#define PMC_CNTRL_INTR_POLARITY		(1 << 17)
#define PMC_CNTRL_CPUPWRREQ_OE		(1 << 16)
#define PMC_CNTRL_CPUPWRREQ_POLARITY	(1 << 15)
#define PMC_CNTRL_SIDE_EFFECT_LP0	(1 << 14)
#define PMC_CNTRL_AOINIT		(1 << 13)
#define PMC_CNTRL_PWRGATE_DIS		(1 << 12)
#define PMC_CNTRL_SYSCLK_OE		(1 << 11)
#define PMC_CNTRL_SYSCLK_POLARITY	(1 << 10)
#define PMC_CNTRL_PWRREQ_OE		(1 << 9)
#define PMC_CNTRL_PWRREQ_POLARITY	(1 << 8)
#define PMC_CNTRL_BLINK_EN		(1 << 7)
#define PMC_CNTRL_GLITCHDET_DIS		(1 << 6)
#define PMC_CNTRL_LATCHWAKE_EN		(1 << 5)
#define PMC_CNTRL_MAIN_RST		(1 << 4)
#define PMC_CNTRL_KBC_RST		(1 << 3)
#define PMC_CNTRL_RTC_RST		(1 << 2)
#define PMC_CNTRL_RTC_CLK_DIS		(1 << 1)
#define PMC_CNTRL_KBC_CLK_DIS		(1 << 0)

#define PMC_PWRGATE_TOGGLE		0x030
#define PMC_PWRGATE_TOGGLE_PARTID_SHIFT	0
#define PMC_PWRGATE_TOGGLE_PARTID_MASK	(0x3 << PMC_PWRGATE_TOGGLE_PARTID_SHIFT)
#define PMC_PWRGATE_TOGGLE_PARTID_CPU	0
#define PMC_PWRGATE_TOGGLE_PARTID_TD	1
#define PMC_PWRGATE_TOGGLE_PARTID_VE	2
#define PMC_PWRGATE_TOGGLE_PARTID_PCX	3
#define PMC_PWRGATE_TOGGLE_PARTID_VDE	4
#define PMC_PWRGATE_TOGGLE_PARTID_L2C	5
#define PMC_PWRGATE_TOGGLE_PARTID_MPE	6
#define PMC_PWRGATE_TOGGLE_START	(1 << 8)

#define PMC_REMOVE_CLAMPING_CMD		0x034
#define PMC_REMOVE_CLAMPING_CMD_MPE	(1 << 6)
#define PMC_REMOVE_CLAMPING_CMD_L2C	(1 << 5)
#define PMC_REMOVE_CLAMPING_CMD_PCX	(1 << 4)
#define PMC_REMOVE_CLAMPING_CMD_VDE	(1 << 3)
#define PMC_REMOVE_CLAMPING_CMD_VE	(1 << 2)
#define PMC_REMOVE_CLAMPING_CMD_TD	(1 << 1)
#define PMC_REMOVE_CLAMPING_CMD_CPU	(1 << 0)

#define PMC_PWRGATE_STATUS		0x038
#define PMC_PWRGATE_STATUS_MPE		(1 << 6)
#define PMC_PWRGATE_STATUS_L2C		(1 << 5)
#define PMC_PWRGATE_STATUS_VDE		(1 << 4)
#define PMC_PWRGATE_STATUS_PCX		(1 << 3)
#define PMC_PWRGATE_STATUS_VE		(1 << 2)
#define PMC_PWRGATE_STATUS_TD		(1 << 1)
#define PMC_PWRGATE_STATUS_CPU		(1 << 0)

#define PMC_PARTID_CRAIL		0
#define PMC_PARTID_CE0			14
#define PMC_PARTID_C0NC			15

#define PMC_SCRATCH(i)			(0x050 + 0x4*i)

#define PMC_RST_STATUS			0x1b4
#define PMC_RST_STATUS_RST_SRC_SHIFT	0
#define PMC_RST_STATUS_RST_SRC_MASK	(0x7 << PMC_RST_STATUS_RST_SRC_SHIFT)
#define PMC_RST_STATUS_RST_SRC_POR	0
#define PMC_RST_STATUS_RST_SRC_WATCHDOG	1
#define PMC_RST_STATUS_RST_SRC_SENSOR	2
#define PMC_RST_STATUS_RST_SRC_SW_MAIN	3
#define PMC_RST_STATUS_RST_SRC_LP0	4