summaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2016-03-15 20:33:48 -0700
committerSascha Hauer <s.hauer@pengutronix.de>2016-03-17 08:23:05 +0100
commit1414c55f825ca8f0721085425a4110fc89b7dbfc (patch)
tree52fdec5790cefe2a25dc17d209afa2534b8b2a1f /arch/arm/include/asm
parentf65c093abc37aca0def4c99fd26fb7eec8006839 (diff)
downloadbarebox-1414c55f825ca8f0721085425a4110fc89b7dbfc.tar.gz
barebox-1414c55f825ca8f0721085425a4110fc89b7dbfc.tar.xz
L2x0: i.MX6: Replace magic numbers with constants
Use constants instead of magic numbers for PL301 registers bits in imx6_mmu_init() Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r--arch/arm/include/asm/cache-l2x0.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/include/asm/cache-l2x0.h b/arch/arm/include/asm/cache-l2x0.h
index 963dd99f64..9bb245b0be 100644
--- a/arch/arm/include/asm/cache-l2x0.h
+++ b/arch/arm/include/asm/cache-l2x0.h
@@ -56,6 +56,14 @@
#define L2X0_LINE_TAG 0xF30
#define L2X0_DEBUG_CTRL 0xF40
#define L2X0_PREFETCH_CTRL 0xF60
+#define L2X0_DOUBLE_LINEFILL_EN (1 << 30)
+#define L2X0_INSTRUCTION_PREFETCH_EN (1 << 29)
+#define L2X0_DATA_PREFETCH_EN (1 << 28)
+#define L2X0_DOUBLE_LINEFILL_ON_WRAP_READ_DIS (1 << 27)
+#define L2X0_PREFETCH_DROP_EN (1 << 24)
+#define L2X0_INCR_DOUBLE_LINEFILL_EN (1 << 23)
+#define L2X0_ESCLUSIVE_SEQUENCE_EN (1 << 21)
+
#define L2X0_POWER_CTRL 0xF80
#define L2X0_DYNAMIC_CLK_GATING_EN (1 << 1)
#define L2X0_STNDBY_MODE_EN (1 << 0)