summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2016-03-29 13:33:13 -0400
committerTom Rini <trini@konsulko.com>2016-03-29 13:33:13 -0400
commit080c499df689e8c42df70de44502c0d71533dda8 (patch)
treeb8f16e3c2490f236b880874ce0c3a68c201ebe99 /arch
parent0badc648dcb0d0e10db959ffe8ab1b1e156b3724 (diff)
parent8f83759fac57cb25e23f6f75c001fe23aea47ee1 (diff)
downloadtalos-obmc-uboot-080c499df689e8c42df70de44502c0d71533dda8.tar.gz
talos-obmc-uboot-080c499df689e8c42df70de44502c0d71533dda8.zip
Merge branch 'master' of git://git.denx.de/u-boot-tegra
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-tegra/tegra210/clock.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/tegra210/clock.c b/arch/arm/mach-tegra/tegra210/clock.c
index df92bdce88..f0052e7934 100644
--- a/arch/arm/mach-tegra/tegra210/clock.c
+++ b/arch/arm/mach-tegra/tegra210/clock.c
@@ -1104,6 +1104,7 @@ static int tegra_pllref_enable(void)
#define PLLE_MISC_IDDQ_SWCTL (1 << 14)
#define PLLE_MISC_IDDQ_OVERRIDE_VALUE (1 << 13)
#define PLLE_MISC_LOCK (1 << 11)
+#define PLLE_PTS (1 << 8)
#define PLLE_MISC_KCP(x) (((x) & 0x3) << 6)
#define PLLE_MISC_VREG_CTRL(x) (((x) & 0x3) << 2)
#define PLLE_MISC_KVCO (1 << 0)
@@ -1157,6 +1158,7 @@ int tegra_plle_enable(void)
writel(value, NV_PA_CLK_RST_BASE + PLLE_BASE);
value = readl(NV_PA_CLK_RST_BASE + PLLE_MISC);
+ value |= PLLE_PTS;
value &= ~PLLE_MISC_KCP(3);
value &= ~PLLE_MISC_VREG_CTRL(3);
value &= ~PLLE_MISC_KVCO;
OpenPOWER on IntegriCloud