summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra
diff options
context:
space:
mode:
authorPeter De Schrijver <pdeschrijver@nvidia.com>2012-11-14 14:27:23 (GMT)
committerStephen Warren <swarren@nvidia.com>2012-11-14 20:30:06 (GMT)
commitfd072a86bde1c5f7cf04618903c5ce8658011c1c (patch)
tree5cfbb1ff358c96da8e875802e6680b0f3e9efcb3 /arch/arm/mach-tegra
parente245f54a06f6aeb025b50eb02c2969fb4e254b46 (diff)
downloadlinux-fsl-qoriq-fd072a86bde1c5f7cf04618903c5ce8658011c1c.tar.xz
ARM: tegra: Implement 6395/1 for Tegra
This patch implements ARM linux patch 6395/1 for Tegra. See commit 1a8e41c "ARM: 6395/1: VExpress: Set bit 22 in the PL310 (cache controller) AuxCtlr register" for details. Signed-off-by: Peter De Schrijver <pdeschrijver@nvidia.com> [swarren: added commit subject for referenced patch] Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r--arch/arm/mach-tegra/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c
index 89d3ebc..3e03e5f 100644
--- a/arch/arm/mach-tegra/common.c
+++ b/arch/arm/mach-tegra/common.c
@@ -121,7 +121,7 @@ static void __init tegra_init_cache(void)
cache_type = readl(p + L2X0_CACHE_TYPE);
aux_ctrl = (cache_type & 0x700) << (17-8);
- aux_ctrl |= 0x7C000001;
+ aux_ctrl |= 0x7C400001;
l2x0_of_init(aux_ctrl, 0x8200c3fe);
#endif