diff options
author | Nitin Garg <nitin.garg@freescale.com> | 2015-03-27 14:45:43 -0500 |
---|---|---|
committer | guoyin.chen <guoyin.chen@freescale.com> | 2015-04-13 16:50:43 +0800 |
commit | 7bead0357b467769f8036825da78c786cddb9329 (patch) | |
tree | 07ca8d980cd3a14858ce4db25369167d0779644e /arch/arm/include/asm/pl310.h | |
parent | d972dd88a8275c88f8bc9861cebe92f3437e4359 (diff) | |
download | u-boot-imx-kk4.4.3_2.0.1.zip u-boot-imx-kk4.4.3_2.0.1.tar.gz u-boot-imx-kk4.4.3_2.0.1.tar.bz2 |
MLK-10496: Check the PL310 version for applying erratakk4.4.3_2.0.1imx_v2014.04_kk4.4.3_2.y
Apply errata based on PL310 version instead of compile
time. Also set Prefetch offset to 15, since it improves
memcpy performance by 35%. Don't enable Incr double
Linefill enable since it adversely affects memcpy
performance by about 32MB/s and reads by 90MB/s. Tested
with 4K to 16MB sized src and dst aligned buffer.
Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
Diffstat (limited to 'arch/arm/include/asm/pl310.h')
-rw-r--r-- | arch/arm/include/asm/pl310.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/include/asm/pl310.h b/arch/arm/include/asm/pl310.h index ddc245b..d7a7eb2 100644 --- a/arch/arm/include/asm/pl310.h +++ b/arch/arm/include/asm/pl310.h @@ -75,4 +75,9 @@ void pl310_clean_inval_all(void); void pl310_inval_range(u32 start, u32 end); void pl310_clean_inval_range(u32 start, u32 end); +#define L2X0_CACHE_ID_PART_MASK (0xf << 6) +#define L2X0_CACHE_ID_PART_L310 (3 << 6) +#define L2X0_CACHE_ID_RTL_MASK 0x3f +#define L2X0_CACHE_ID_RTL_R3P2 0x8 + #endif |