2003-03-27 12:09:35 +00:00
|
|
|
/*
|
2008-03-25 12:30:07 +00:00
|
|
|
* Cache-handling routined for MIPS CPUs
|
2003-03-27 12:09:35 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Wolfgang Denk <wd@denx.de>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2003-03-27 12:09:35 +00:00
|
|
|
*/
|
|
|
|
|
2010-10-26 12:34:52 +00:00
|
|
|
#include <asm-offsets.h>
|
2003-03-27 12:09:35 +00:00
|
|
|
#include <config.h>
|
2008-03-25 12:30:06 +00:00
|
|
|
#include <asm/asm.h>
|
2003-03-27 12:09:35 +00:00
|
|
|
#include <asm/regdef.h>
|
|
|
|
#include <asm/mipsregs.h>
|
|
|
|
#include <asm/addrspace.h>
|
|
|
|
#include <asm/cacheops.h>
|
|
|
|
|
2012-04-02 02:57:55 +00:00
|
|
|
#ifndef CONFIG_SYS_MIPS_CACHE_MODE
|
|
|
|
#define CONFIG_SYS_MIPS_CACHE_MODE CONF_CM_CACHABLE_NONCOHERENT
|
|
|
|
#endif
|
|
|
|
|
2013-06-13 10:59:34 +00:00
|
|
|
#define RA t9
|
2008-03-25 12:30:06 +00:00
|
|
|
|
2008-06-05 13:29:00 +00:00
|
|
|
#define INDEX_BASE CKSEG0
|
2008-03-25 12:30:06 +00:00
|
|
|
|
2008-03-25 12:30:06 +00:00
|
|
|
.macro f_fill64 dst, offset, val
|
|
|
|
LONG_S \val, (\offset + 0 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 1 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 2 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 3 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 4 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 5 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 6 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 7 * LONGSIZE)(\dst)
|
|
|
|
#if LONGSIZE == 4
|
|
|
|
LONG_S \val, (\offset + 8 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 9 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 10 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 11 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 12 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 13 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 14 * LONGSIZE)(\dst)
|
|
|
|
LONG_S \val, (\offset + 15 * LONGSIZE)(\dst)
|
|
|
|
#endif
|
|
|
|
.endm
|
|
|
|
|
2008-03-25 12:30:06 +00:00
|
|
|
/*
|
|
|
|
* mips_init_icache(uint PRId, ulong icache_size, unchar icache_linesz)
|
|
|
|
*/
|
|
|
|
LEAF(mips_init_icache)
|
2011-05-06 15:18:13 +00:00
|
|
|
blez a1, 9f
|
|
|
|
mtc0 zero, CP0_TAGLO
|
2008-03-25 12:30:06 +00:00
|
|
|
/* clear tag to invalidate */
|
|
|
|
PTR_LI t0, INDEX_BASE
|
|
|
|
PTR_ADDU t1, t0, a1
|
2015-01-29 01:27:56 +00:00
|
|
|
1: cache INDEX_STORE_TAG_I, 0(t0)
|
2008-03-25 12:30:06 +00:00
|
|
|
PTR_ADDU t0, a2
|
|
|
|
bne t0, t1, 1b
|
|
|
|
/* fill once, so data field parity is correct */
|
|
|
|
PTR_LI t0, INDEX_BASE
|
2015-01-29 01:27:56 +00:00
|
|
|
2: cache FILL, 0(t0)
|
2008-03-25 12:30:06 +00:00
|
|
|
PTR_ADDU t0, a2
|
|
|
|
bne t0, t1, 2b
|
|
|
|
/* invalidate again - prudent but not strictly neccessary */
|
|
|
|
PTR_LI t0, INDEX_BASE
|
2015-01-29 01:27:56 +00:00
|
|
|
1: cache INDEX_STORE_TAG_I, 0(t0)
|
2008-03-25 12:30:06 +00:00
|
|
|
PTR_ADDU t0, a2
|
|
|
|
bne t0, t1, 1b
|
2011-05-06 15:18:13 +00:00
|
|
|
9: jr ra
|
2008-03-25 12:30:06 +00:00
|
|
|
END(mips_init_icache)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mips_init_dcache(uint PRId, ulong dcache_size, unchar dcache_linesz)
|
|
|
|
*/
|
|
|
|
LEAF(mips_init_dcache)
|
2011-05-06 15:18:13 +00:00
|
|
|
blez a1, 9f
|
|
|
|
mtc0 zero, CP0_TAGLO
|
2008-03-25 12:30:06 +00:00
|
|
|
/* clear all tags */
|
|
|
|
PTR_LI t0, INDEX_BASE
|
|
|
|
PTR_ADDU t1, t0, a1
|
2015-01-29 01:27:56 +00:00
|
|
|
1: cache INDEX_STORE_TAG_D, 0(t0)
|
2008-03-25 12:30:06 +00:00
|
|
|
PTR_ADDU t0, a2
|
|
|
|
bne t0, t1, 1b
|
|
|
|
/* load from each line (in cached space) */
|
|
|
|
PTR_LI t0, INDEX_BASE
|
|
|
|
2: LONG_L zero, 0(t0)
|
|
|
|
PTR_ADDU t0, a2
|
|
|
|
bne t0, t1, 2b
|
|
|
|
/* clear all tags */
|
|
|
|
PTR_LI t0, INDEX_BASE
|
2015-01-29 01:27:56 +00:00
|
|
|
1: cache INDEX_STORE_TAG_D, 0(t0)
|
2008-03-25 12:30:06 +00:00
|
|
|
PTR_ADDU t0, a2
|
|
|
|
bne t0, t1, 1b
|
2011-05-06 15:18:13 +00:00
|
|
|
9: jr ra
|
2008-03-25 12:30:06 +00:00
|
|
|
END(mips_init_dcache)
|
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/*
|
|
|
|
* mips_cache_reset - low level initialisation of the primary caches
|
|
|
|
*
|
|
|
|
* This routine initialises the primary caches to ensure that they have good
|
|
|
|
* parity. It must be called by the ROM before any cached locations are used
|
|
|
|
* to prevent the possibility of data with bad parity being written to memory.
|
|
|
|
*
|
|
|
|
* To initialise the instruction cache it is essential that a source of data
|
|
|
|
* with good parity is available. This routine will initialise an area of
|
|
|
|
* memory starting at location zero to be used as a source of parity.
|
|
|
|
*
|
|
|
|
* RETURNS: N/A
|
|
|
|
*
|
|
|
|
*/
|
2008-03-25 12:30:06 +00:00
|
|
|
NESTED(mips_cache_reset, 0, ra)
|
2008-03-25 12:30:06 +00:00
|
|
|
move RA, ra
|
2013-11-08 11:18:42 +00:00
|
|
|
|
|
|
|
#if !defined(CONFIG_SYS_ICACHE_SIZE) || !defined(CONFIG_SYS_DCACHE_SIZE) || \
|
|
|
|
!defined(CONFIG_SYS_CACHELINE_SIZE)
|
|
|
|
/* read Config1 for use below */
|
|
|
|
mfc0 t5, CP0_CONFIG, 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_CACHELINE_SIZE
|
|
|
|
li t7, CONFIG_SYS_CACHELINE_SIZE
|
2013-06-13 10:59:35 +00:00
|
|
|
li t8, CONFIG_SYS_CACHELINE_SIZE
|
2013-11-08 11:18:42 +00:00
|
|
|
#else
|
|
|
|
/* Detect I-cache line size. */
|
|
|
|
srl t8, t5, MIPS_CONF1_IL_SHIFT
|
|
|
|
andi t8, t8, (MIPS_CONF1_IL >> MIPS_CONF1_IL_SHIFT)
|
|
|
|
beqz t8, 1f
|
|
|
|
li t6, 2
|
|
|
|
sllv t8, t6, t8
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2013-11-08 11:18:42 +00:00
|
|
|
1: /* Detect D-cache line size. */
|
|
|
|
srl t7, t5, MIPS_CONF1_DL_SHIFT
|
|
|
|
andi t7, t7, (MIPS_CONF1_DL >> MIPS_CONF1_DL_SHIFT)
|
|
|
|
beqz t7, 1f
|
|
|
|
li t6, 2
|
|
|
|
sllv t7, t6, t7
|
|
|
|
1:
|
|
|
|
#endif
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2013-11-08 11:18:42 +00:00
|
|
|
#ifdef CONFIG_SYS_ICACHE_SIZE
|
|
|
|
li t2, CONFIG_SYS_ICACHE_SIZE
|
|
|
|
#else
|
|
|
|
/* Detect I-cache size. */
|
|
|
|
srl t6, t5, MIPS_CONF1_IS_SHIFT
|
|
|
|
andi t6, t6, (MIPS_CONF1_IS >> MIPS_CONF1_IS_SHIFT)
|
|
|
|
li t4, 32
|
|
|
|
xori t2, t6, 0x7
|
|
|
|
beqz t2, 1f
|
|
|
|
addi t6, t6, 1
|
|
|
|
sllv t4, t4, t6
|
|
|
|
1: /* At this point t4 == I-cache sets. */
|
|
|
|
mul t2, t4, t8
|
|
|
|
srl t6, t5, MIPS_CONF1_IA_SHIFT
|
|
|
|
andi t6, t6, (MIPS_CONF1_IA >> MIPS_CONF1_IA_SHIFT)
|
|
|
|
addi t6, t6, 1
|
|
|
|
/* At this point t6 == I-cache ways. */
|
|
|
|
mul t2, t2, t6
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_DCACHE_SIZE
|
|
|
|
li t3, CONFIG_SYS_DCACHE_SIZE
|
|
|
|
#else
|
|
|
|
/* Detect D-cache size. */
|
|
|
|
srl t6, t5, MIPS_CONF1_DS_SHIFT
|
|
|
|
andi t6, t6, (MIPS_CONF1_DS >> MIPS_CONF1_DS_SHIFT)
|
|
|
|
li t4, 32
|
|
|
|
xori t3, t6, 0x7
|
|
|
|
beqz t3, 1f
|
|
|
|
addi t6, t6, 1
|
|
|
|
sllv t4, t4, t6
|
|
|
|
1: /* At this point t4 == I-cache sets. */
|
|
|
|
mul t3, t4, t7
|
|
|
|
srl t6, t5, MIPS_CONF1_DA_SHIFT
|
|
|
|
andi t6, t6, (MIPS_CONF1_DA >> MIPS_CONF1_DA_SHIFT)
|
|
|
|
addi t6, t6, 1
|
|
|
|
/* At this point t6 == I-cache ways. */
|
|
|
|
mul t3, t3, t6
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Determine the largest L1 cache size */
|
|
|
|
#if defined(CONFIG_SYS_ICACHE_SIZE) && defined(CONFIG_SYS_DCACHE_SIZE)
|
|
|
|
#if CONFIG_SYS_ICACHE_SIZE > CONFIG_SYS_DCACHE_SIZE
|
|
|
|
li v0, CONFIG_SYS_ICACHE_SIZE
|
|
|
|
#else
|
|
|
|
li v0, CONFIG_SYS_DCACHE_SIZE
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
move v0, t2
|
|
|
|
sltu t1, t2, t3
|
|
|
|
movn v0, t3, t1
|
|
|
|
#endif
|
2008-03-25 12:30:06 +00:00
|
|
|
/*
|
|
|
|
* Now clear that much memory starting from zero.
|
2003-03-27 12:09:35 +00:00
|
|
|
*/
|
2008-06-05 13:29:00 +00:00
|
|
|
PTR_LI a0, CKSEG1
|
2008-03-25 12:30:06 +00:00
|
|
|
PTR_ADDU a1, a0, v0
|
|
|
|
2: PTR_ADDIU a0, 64
|
|
|
|
f_fill64 a0, -64, zero
|
|
|
|
bne a0, a1, 2b
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2007-10-27 06:27:06 +00:00
|
|
|
/*
|
|
|
|
* The caches are probably in an indeterminate state,
|
|
|
|
* so we force good parity into them by doing an
|
|
|
|
* invalidate, load/fill, invalidate for each line.
|
|
|
|
*/
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2008-03-25 12:30:06 +00:00
|
|
|
/*
|
|
|
|
* Assume bottom of RAM will generate good parity for the cache.
|
2003-03-27 12:09:35 +00:00
|
|
|
*/
|
|
|
|
|
2008-03-25 12:30:06 +00:00
|
|
|
/*
|
|
|
|
* Initialize the I-cache first,
|
2003-03-27 12:09:35 +00:00
|
|
|
*/
|
2008-03-25 12:30:06 +00:00
|
|
|
move a1, t2
|
2013-06-13 10:59:35 +00:00
|
|
|
move a2, t8
|
2013-06-13 10:59:36 +00:00
|
|
|
PTR_LA v1, mips_init_icache
|
|
|
|
jalr v1
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2008-03-25 12:30:06 +00:00
|
|
|
/*
|
|
|
|
* then initialize D-cache.
|
2003-03-27 12:09:35 +00:00
|
|
|
*/
|
2008-03-25 12:30:06 +00:00
|
|
|
move a1, t3
|
2013-11-08 11:18:42 +00:00
|
|
|
move a2, t7
|
2013-06-13 10:59:36 +00:00
|
|
|
PTR_LA v1, mips_init_dcache
|
|
|
|
jalr v1
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2008-03-25 12:30:06 +00:00
|
|
|
jr RA
|
2008-03-25 12:30:06 +00:00
|
|
|
END(mips_cache_reset)
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/*
|
|
|
|
* dcache_status - get cache status
|
|
|
|
*
|
|
|
|
* RETURNS: 0 - cache disabled; 1 - cache enabled
|
|
|
|
*
|
|
|
|
*/
|
2008-03-25 12:30:06 +00:00
|
|
|
LEAF(dcache_status)
|
2008-03-25 12:30:07 +00:00
|
|
|
mfc0 t0, CP0_CONFIG
|
|
|
|
li t1, CONF_CM_UNCACHED
|
|
|
|
andi t0, t0, CONF_CM_CMASK
|
|
|
|
move v0, zero
|
|
|
|
beq t0, t1, 2f
|
|
|
|
li v0, 1
|
|
|
|
2: jr ra
|
2008-03-25 12:30:06 +00:00
|
|
|
END(dcache_status)
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/*
|
|
|
|
* dcache_disable - disable cache
|
|
|
|
*
|
|
|
|
* RETURNS: N/A
|
|
|
|
*
|
|
|
|
*/
|
2008-03-25 12:30:06 +00:00
|
|
|
LEAF(dcache_disable)
|
2003-03-27 12:09:35 +00:00
|
|
|
mfc0 t0, CP0_CONFIG
|
|
|
|
li t1, -8
|
|
|
|
and t0, t0, t1
|
|
|
|
ori t0, t0, CONF_CM_UNCACHED
|
2007-10-27 06:27:06 +00:00
|
|
|
mtc0 t0, CP0_CONFIG
|
2008-04-17 14:35:13 +00:00
|
|
|
jr ra
|
2008-03-25 12:30:06 +00:00
|
|
|
END(dcache_disable)
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/*
|
|
|
|
* dcache_enable - enable cache
|
|
|
|
*
|
|
|
|
* RETURNS: N/A
|
|
|
|
*
|
|
|
|
*/
|
2008-05-03 04:51:28 +00:00
|
|
|
LEAF(dcache_enable)
|
|
|
|
mfc0 t0, CP0_CONFIG
|
|
|
|
ori t0, CONF_CM_CMASK
|
|
|
|
xori t0, CONF_CM_CMASK
|
2012-04-02 02:57:55 +00:00
|
|
|
ori t0, CONFIG_SYS_MIPS_CACHE_MODE
|
2008-05-03 04:51:28 +00:00
|
|
|
mtc0 t0, CP0_CONFIG
|
|
|
|
jr ra
|
|
|
|
END(dcache_enable)
|