summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra
diff options
context:
space:
mode:
authorLucas Stach <dev@lynxeye.de>2014-06-03 22:34:58 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-06-05 08:01:14 +0200
commit3cc59d0e21d2b9d7dab137aa9638f5d05906c043 (patch)
treea720a8ac25c96a316f34596eaccc7c69240b1ddc /arch/arm/mach-tegra
parentacef7b8f3d66e8c2dc91990bd2b0384a00f37f0e (diff)
downloadbarebox-3cc59d0e21d2b9d7dab137aa9638f5d05906c043.tar.gz
barebox-3cc59d0e21d2b9d7dab137aa9638f5d05906c043.tar.xz
tegra: disable IDDQ for PLL_X on Tegra124
This is an additional power down control. Signed-off-by: Lucas Stach <dev@lynxeye.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r--arch/arm/mach-tegra/include/mach/tegra124-car.h19
-rw-r--r--arch/arm/mach-tegra/tegra_avp_init.c9
2 files changed, 28 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/include/mach/tegra124-car.h b/arch/arm/mach-tegra/include/mach/tegra124-car.h
new file mode 100644
index 0000000000..1fb924d9f4
--- /dev/null
+++ b/arch/arm/mach-tegra/include/mach/tegra124-car.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) 2014 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 CRC_PLLX_MISC_3 0x518
+#define CRC_PLLX_MISC_3_IDDQ (1 << 3)
diff --git a/arch/arm/mach-tegra/tegra_avp_init.c b/arch/arm/mach-tegra/tegra_avp_init.c
index 53e81d9169..cc8b0e24bf 100644
--- a/arch/arm/mach-tegra/tegra_avp_init.c
+++ b/arch/arm/mach-tegra/tegra_avp_init.c
@@ -25,6 +25,7 @@
#include <mach/tegra20-pmc.h>
#include <mach/tegra30-car.h>
#include <mach/tegra30-flow.h>
+#include <mach/tegra124-car.h>
/* instruct the PMIC to enable the CPU power rail */
static void enable_maincomplex_powerrail(void)
@@ -107,6 +108,14 @@ static void init_pllx(void)
chiptype = tegra_get_chiptype();
+ /* disable IDDQ on T124 */
+ if (chiptype == TEGRA124) {
+ reg = readl(TEGRA_CLK_RESET_BASE + CRC_PLLX_MISC_3);
+ reg &= ~CRC_PLLX_MISC_3_IDDQ;
+ writel(reg, TEGRA_CLK_RESET_BASE + CRC_PLLX_MISC_3);
+ tegra_ll_delay_usec(2);
+ }
+
osc_freq = (readl(TEGRA_CLK_RESET_BASE + CRC_OSC_CTRL) &
CRC_OSC_CTRL_OSC_FREQ_MASK) >> CRC_OSC_CTRL_OSC_FREQ_SHIFT;