summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/common-t3.c
diff options
context:
space:
mode:
authorAlex Frid <afrid@nvidia.com>2011-09-14 22:27:07 -0700
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:49:41 -0800
commitd0319f29ce8f449a8f68062c4066fc6cf7f84f8d (patch)
tree3979f1506200de6bf071ed6efdc2a586d46ad1f9 /arch/arm/mach-tegra/common-t3.c
parent3ff036710d4b1bd74f9cbacb49a87851932e77da (diff)
ARM: tegra: power: Restore Tegra3 MC registers after LP0
On exit from deep sleep (LP0) restore from SDRAM Tegra3 MC registers that are not saved in PMC scratch file for boot-rom restoration. Since SDRAM after LP0 is running at boot rate, MC registers are saved only once during initialization. Bug 874351 (ported from commit 99966c242920978a92f3f51e5957ada30afc4b1d) Change-Id: I9bf06ddb83fa6435a4f5bd29ec58bb195a189678 Reviewed-on: http://git-master/r/61045 Reviewed-by: Varun Colbert <vcolbert@nvidia.com> Tested-by: Varun Colbert <vcolbert@nvidia.com> Rebase-Id: R272136c877818d44b0cf28f8b5f720af71623301
Diffstat (limited to 'arch/arm/mach-tegra/common-t3.c')
-rw-r--r--arch/arm/mach-tegra/common-t3.c59
1 files changed, 57 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/common-t3.c b/arch/arm/mach-tegra/common-t3.c
index d13b3bbe5d22..d65e44779f14 100644
--- a/arch/arm/mach-tegra/common-t3.c
+++ b/arch/arm/mach-tegra/common-t3.c
@@ -40,6 +40,11 @@
#define MC_ERROR_STATUS 0x8
#define MC_ERROR_ADDRESS 0xC
+#define MC_TIMING_REG_NUM1 \
+ ((MC_EMEM_ARB_TIMING_W2R - MC_EMEM_ARB_CFG) / 4 + 1)
+#define MC_TIMING_REG_NUM2 \
+ ((MC_EMEM_ARB_MISC1 - MC_EMEM_ARB_DA_TURNS) / 4 + 1)
+
struct mc_client {
const char *name;
};
@@ -49,6 +54,57 @@ struct mc_client {
.name = _name, \
}
+
+static void __iomem *mc = IO_ADDRESS(TEGRA_MC_BASE);
+
+
+#ifdef CONFIG_PM_SLEEP
+static u32 mc_boot_timing[MC_TIMING_REG_NUM1 + MC_TIMING_REG_NUM2 + 4];
+
+static void tegra_mc_timing_save(void)
+{
+ u32 off;
+ u32 *ctx = mc_boot_timing;
+
+ for (off = MC_EMEM_ARB_CFG; off <= MC_EMEM_ARB_TIMING_W2R; off += 4)
+ *ctx++ = readl((u32)mc + off);
+
+ for (off = MC_EMEM_ARB_DA_TURNS; off <= MC_EMEM_ARB_MISC1; off += 4)
+ *ctx++ = readl((u32)mc + off);
+
+ *ctx++ = readl((u32)mc + MC_EMEM_ARB_RING3_THROTTLE);
+ *ctx++ = readl((u32)mc + MC_EMEM_ARB_OVERRIDE);
+ *ctx++ = readl((u32)mc + MC_RESERVED_RSV);
+
+ *ctx++ = readl((u32)mc + MC_INT_MASK);
+}
+
+void tegra_mc_timing_restore(void)
+{
+ u32 off;
+ u32 *ctx = mc_boot_timing;
+
+ for (off = MC_EMEM_ARB_CFG; off <= MC_EMEM_ARB_TIMING_W2R; off += 4)
+ __raw_writel(*ctx++, (u32)mc + off);
+
+ for (off = MC_EMEM_ARB_DA_TURNS; off <= MC_EMEM_ARB_MISC1; off += 4)
+ __raw_writel(*ctx++, (u32)mc + off);
+
+ __raw_writel(*ctx++, (u32)mc + MC_EMEM_ARB_RING3_THROTTLE);
+ __raw_writel(*ctx++, (u32)mc + MC_EMEM_ARB_OVERRIDE);
+ __raw_writel(*ctx++, (u32)mc + MC_RESERVED_RSV);
+
+ writel(*ctx++, (u32)mc + MC_INT_MASK);
+ off = readl((u32)mc + MC_INT_MASK);
+
+ writel(0x1, (u32)mc + MC_TIMING_CONTROL);
+ off = readl((u32)mc + MC_TIMING_CONTROL);
+}
+#else
+#define tegra_mc_timing_save()
+#endif
+
+
static const struct mc_client mc_clients[] = {
client("ptc"),
client("display0_wina"), client("display1_wina"),
@@ -115,7 +171,6 @@ static DECLARE_DELAYED_WORK(unthrottle_prints_work, unthrottle_prints);
static irqreturn_t tegra_mc_error_isr(int irq, void *data)
{
- void __iomem *mc = IO_ADDRESS(TEGRA_MC_BASE);
const struct mc_client *client = NULL;
const char *mc_err;
const char *mc_err_info;
@@ -187,7 +242,6 @@ out:
int __init tegra_mc_init(void)
{
- void __iomem *mc = IO_ADDRESS(TEGRA_MC_BASE);
u32 reg;
int ret = 0;
@@ -207,6 +261,7 @@ int __init tegra_mc_init(void)
MC_INT_INVALID_SMMU_PAGE;
writel(reg, mc + MC_INT_MASK);
}
+ tegra_mc_timing_save();
return ret;
}