Skip to content
Snippets Groups Projects
cache_init.S 6.21 KiB
Newer Older
  • Learn to ignore specific revisions
  •  *  Cache-handling routined for MIPS CPUs
    
     *
     *  Copyright (c) 2003	Wolfgang Denk <wd@denx.de>
     *
    
     * SPDX-License-Identifier:	GPL-2.0+
    
    #include <asm-offsets.h>
    
    #include <config.h>
    
    #include <asm/regdef.h>
    #include <asm/mipsregs.h>
    #include <asm/addrspace.h>
    #include <asm/cacheops.h>
    
    
    #ifndef CONFIG_SYS_MIPS_CACHE_MODE
    #define CONFIG_SYS_MIPS_CACHE_MODE CONF_CM_CACHABLE_NONCOHERENT
    #endif
    
    
    #define INDEX_BASE	CKSEG0
    
    	.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
    
    
    	.macro cache_loop	curr, end, line_sz, op
    10:	cache		\op, 0(\curr)
    	PTR_ADDU	\curr, \curr, \line_sz
    	bne		\curr, \end, 10b
    	.endm
    
    
    	.macro	l1_info		sz, line_sz, off
    	.set	push
    	.set	noat
    
    	mfc0	$1, CP0_CONFIG, 1
    
    	/* detect line size */
    
    	srl	\line_sz, $1, \off + MIPS_CONF1_DL_SHF - MIPS_CONF1_DA_SHF
    	andi	\line_sz, \line_sz, (MIPS_CONF1_DL >> MIPS_CONF1_DL_SHF)
    
    	move	\sz, zero
    	beqz	\line_sz, 10f
    	li	\sz, 2
    	sllv	\line_sz, \sz, \line_sz
    
    	/* detect associativity */
    
    	srl	\sz, $1, \off + MIPS_CONF1_DA_SHF - MIPS_CONF1_DA_SHF
    	andi	\sz, \sz, (MIPS_CONF1_DA >> MIPS_CONF1_DA_SHF)
    
    
    	/* sz *= line_sz */
    	mul	\sz, \sz, \line_sz
    
    	/* detect log32(sets) */
    
    	srl	$1, $1, \off + MIPS_CONF1_DS_SHF - MIPS_CONF1_DA_SHF
    	andi	$1, $1, (MIPS_CONF1_DS >> MIPS_CONF1_DS_SHF)
    
    	addiu	$1, $1, 1
    	andi	$1, $1, 0x7
    
    	/* sz <<= log32(sets) */
    	sllv	\sz, \sz, $1
    
    	/* sz *= 32 */
    	li	$1, 32
    	mul	\sz, \sz, $1
    10:
    	.set	pop
    	.endm
    
    /*
     * 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
     *
     */
    
    #define R_IC_SIZE	t2
    #define R_IC_LINE	t8
    #define R_DC_SIZE	t3
    #define R_DC_LINE	t9
    
    LEAF(mips_cache_reset)
    
    #ifndef CONFIG_SYS_CACHE_SIZE_AUTO
    
    	li	R_IC_SIZE, CONFIG_SYS_ICACHE_SIZE
    	li	R_IC_LINE, CONFIG_SYS_ICACHE_LINE_SIZE
    
    	l1_info	R_IC_SIZE, R_IC_LINE, MIPS_CONF1_IA_SHF
    
    #ifndef CONFIG_SYS_CACHE_SIZE_AUTO
    
    	li	R_DC_SIZE, CONFIG_SYS_DCACHE_SIZE
    	li	R_DC_LINE, CONFIG_SYS_DCACHE_LINE_SIZE
    
    	l1_info	R_DC_SIZE, R_DC_LINE, MIPS_CONF1_DA_SHF
    
    #ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
    
    
    	/* Determine the largest L1 cache size */
    
    #ifndef CONFIG_SYS_CACHE_SIZE_AUTO
    
    #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, R_IC_SIZE
    	sltu	t1, R_IC_SIZE, R_DC_SIZE
    	movn	v0, R_DC_SIZE, t1
    
    	/*
    	 * Now clear that much memory starting from zero.
    
    	PTR_LI		a0, CKSEG1
    
    	PTR_ADDU	a1, a0, v0
    2:	PTR_ADDIU	a0, 64
    	f_fill64	a0, -64, zero
    	bne		a0, a1, 2b
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    #endif /* CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD */
    
    	/*
    	 * The TagLo registers used depend upon the CPU implementation, but the
    	 * architecture requires that it is safe for software to write to both
    	 * TagLo selects 0 & 2 covering supported cases.
    	 */
    	mtc0		zero, CP0_TAGLO
    	mtc0		zero, CP0_TAGLO, 2
    
    
    	 * The caches are probably in an indeterminate state, so we force good
    	 * parity into them by doing an invalidate for each line. If
    	 * CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD is set then we'll proceed to
    	 * perform a load/fill & a further invalidate for each line, assuming
    	 * that the bottom of RAM (having just been cleared) will generate good
    	 * parity for the cache.
    
    	/*
    	 * Initialize the I-cache first,
    
    	blez		R_IC_SIZE, 1f
    
    	PTR_LI		t0, INDEX_BASE
    
    	PTR_ADDU	t1, t0, R_IC_SIZE
    
    	/* clear tag to invalidate */
    
    	cache_loop	t0, t1, R_IC_LINE, INDEX_STORE_TAG_I
    
    #ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
    
    	/* fill once, so data field parity is correct */
    	PTR_LI		t0, INDEX_BASE
    
    	cache_loop	t0, t1, R_IC_LINE, FILL
    
    	/* invalidate again - prudent but not strictly neccessary */
    	PTR_LI		t0, INDEX_BASE
    
    	cache_loop	t0, t1, R_IC_LINE, INDEX_STORE_TAG_I
    
    	/* Enable use of the I-cache by setting Config.K0 */
    	sync
    	mfc0		t0, CP0_CONFIG
    	li		t1, CONFIG_SYS_MIPS_CACHE_MODE
    #if __mips_isa_rev >= 2
    	ins		t0, t1, 0, 3
    #else
    	ori		t0, t0, CONF_CM_CMASK
    	xori		t0, t0, CONF_CM_CMASK
    	or		t0, t0, t1
    #endif
    	mtc0		t0, CP0_CONFIG
    
    
    	/*
    	 * then initialize D-cache.
    
    1:	blez		R_DC_SIZE, 3f
    
    	PTR_LI		t0, INDEX_BASE
    
    	PTR_ADDU	t1, t0, R_DC_SIZE
    
    	/* clear all tags */
    
    	cache_loop	t0, t1, R_DC_LINE, INDEX_STORE_TAG_D
    
    #ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
    
    	/* load from each line (in cached space) */
    	PTR_LI		t0, INDEX_BASE
    2:	LONG_L		zero, 0(t0)
    
    	PTR_ADDU	t0, R_DC_LINE
    
    	bne		t0, t1, 2b
    	/* clear all tags */
    	PTR_LI		t0, INDEX_BASE
    
    	cache_loop	t0, t1, R_DC_LINE, INDEX_STORE_TAG_D
    
    /*
     * dcache_status - get cache status
     *
     * RETURNS: 0 - cache disabled; 1 - cache enabled
     *
     */
    
    	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
    
    /*
     * dcache_disable - disable cache
     *
     * RETURNS: N/A
     *
     */
    
    	mfc0	t0, CP0_CONFIG
    	li	t1, -8
    	and	t0, t0, t1
    	ori	t0, t0, CONF_CM_UNCACHED
    
    	mtc0	t0, CP0_CONFIG
    
    /*
     * dcache_enable - enable cache
     *
     * RETURNS: N/A
     *
     */
    
    LEAF(dcache_enable)
    	mfc0	t0, CP0_CONFIG
    	ori	t0, CONF_CM_CMASK
    	xori	t0, CONF_CM_CMASK
    
    	ori	t0, CONFIG_SYS_MIPS_CACHE_MODE
    
    	mtc0	t0, CP0_CONFIG
    	jr	ra
    	END(dcache_enable)