mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-11-28 14:11:29 +01:00
MIPS: inline mips_init_[id]cache functions
The mips_init_[id]cache functions are small & only called once from a single callsite. Inlining them allows mips_cache_reset to avoid having to bother moving arguments around & leaves it a leaf function which is thus able to simply keep the return address live in the ra register throughout, simplifying the code. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
This commit is contained in:
parent
ac22feca11
commit
ca4e833cd6
@ -18,12 +18,6 @@
|
|||||||
#define CONFIG_SYS_MIPS_CACHE_MODE CONF_CM_CACHABLE_NONCOHERENT
|
#define CONFIG_SYS_MIPS_CACHE_MODE CONF_CM_CACHABLE_NONCOHERENT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_64BIT
|
|
||||||
# define RA ta3
|
|
||||||
#else
|
|
||||||
# define RA t7
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define INDEX_BASE CKSEG0
|
#define INDEX_BASE CKSEG0
|
||||||
|
|
||||||
.macro f_fill64 dst, offset, val
|
.macro f_fill64 dst, offset, val
|
||||||
@ -53,46 +47,6 @@
|
|||||||
bne \curr, \end, 10b
|
bne \curr, \end, 10b
|
||||||
.endm
|
.endm
|
||||||
|
|
||||||
/*
|
|
||||||
* mips_init_icache(uint PRId, ulong icache_size, unchar icache_linesz)
|
|
||||||
*/
|
|
||||||
LEAF(mips_init_icache)
|
|
||||||
blez a1, 9f
|
|
||||||
mtc0 zero, CP0_TAGLO
|
|
||||||
PTR_LI t0, INDEX_BASE
|
|
||||||
PTR_ADDU t1, t0, a1
|
|
||||||
/* clear tag to invalidate */
|
|
||||||
cache_loop t0, t1, a2, INDEX_STORE_TAG_I
|
|
||||||
/* fill once, so data field parity is correct */
|
|
||||||
PTR_LI t0, INDEX_BASE
|
|
||||||
cache_loop t0, t1, a2, FILL
|
|
||||||
/* invalidate again - prudent but not strictly neccessary */
|
|
||||||
PTR_LI t0, INDEX_BASE
|
|
||||||
cache_loop t0, t1, a2, INDEX_STORE_TAG_I
|
|
||||||
9: jr ra
|
|
||||||
END(mips_init_icache)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* mips_init_dcache(uint PRId, ulong dcache_size, unchar dcache_linesz)
|
|
||||||
*/
|
|
||||||
LEAF(mips_init_dcache)
|
|
||||||
blez a1, 9f
|
|
||||||
mtc0 zero, CP0_TAGLO
|
|
||||||
PTR_LI t0, INDEX_BASE
|
|
||||||
PTR_ADDU t1, t0, a1
|
|
||||||
/* clear all tags */
|
|
||||||
cache_loop t0, t1, a2, INDEX_STORE_TAG_D
|
|
||||||
/* 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
|
|
||||||
cache_loop t0, t1, a2, INDEX_STORE_TAG_D
|
|
||||||
9: jr ra
|
|
||||||
END(mips_init_dcache)
|
|
||||||
|
|
||||||
.macro l1_info sz, line_sz, off
|
.macro l1_info sz, line_sz, off
|
||||||
.set push
|
.set push
|
||||||
.set noat
|
.set noat
|
||||||
@ -144,9 +98,7 @@ LEAF(mips_init_dcache)
|
|||||||
* RETURNS: N/A
|
* RETURNS: N/A
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
NESTED(mips_cache_reset, 0, ra)
|
LEAF(mips_cache_reset)
|
||||||
move RA, ra
|
|
||||||
|
|
||||||
#ifdef CONFIG_SYS_ICACHE_SIZE
|
#ifdef CONFIG_SYS_ICACHE_SIZE
|
||||||
li t2, CONFIG_SYS_ICACHE_SIZE
|
li t2, CONFIG_SYS_ICACHE_SIZE
|
||||||
li t8, CONFIG_SYS_CACHELINE_SIZE
|
li t8, CONFIG_SYS_CACHELINE_SIZE
|
||||||
@ -195,20 +147,38 @@ NESTED(mips_cache_reset, 0, ra)
|
|||||||
/*
|
/*
|
||||||
* Initialize the I-cache first,
|
* Initialize the I-cache first,
|
||||||
*/
|
*/
|
||||||
move a1, t2
|
blez t2, 1f
|
||||||
move a2, t8
|
mtc0 zero, CP0_TAGLO
|
||||||
PTR_LA v1, mips_init_icache
|
PTR_LI t0, INDEX_BASE
|
||||||
jalr v1
|
PTR_ADDU t1, t0, t2
|
||||||
|
/* clear tag to invalidate */
|
||||||
|
cache_loop t0, t1, t8, INDEX_STORE_TAG_I
|
||||||
|
/* fill once, so data field parity is correct */
|
||||||
|
PTR_LI t0, INDEX_BASE
|
||||||
|
cache_loop t0, t1, t8, FILL
|
||||||
|
/* invalidate again - prudent but not strictly neccessary */
|
||||||
|
PTR_LI t0, INDEX_BASE
|
||||||
|
cache_loop t0, t1, t8, INDEX_STORE_TAG_I
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* then initialize D-cache.
|
* then initialize D-cache.
|
||||||
*/
|
*/
|
||||||
move a1, t3
|
1: blez t3, 3f
|
||||||
move a2, t9
|
mtc0 zero, CP0_TAGLO
|
||||||
PTR_LA v1, mips_init_dcache
|
PTR_LI t0, INDEX_BASE
|
||||||
jalr v1
|
PTR_ADDU t1, t0, t3
|
||||||
|
/* clear all tags */
|
||||||
|
cache_loop t0, t1, t9, INDEX_STORE_TAG_D
|
||||||
|
/* load from each line (in cached space) */
|
||||||
|
PTR_LI t0, INDEX_BASE
|
||||||
|
2: LONG_L zero, 0(t0)
|
||||||
|
PTR_ADDU t0, t9
|
||||||
|
bne t0, t1, 2b
|
||||||
|
/* clear all tags */
|
||||||
|
PTR_LI t0, INDEX_BASE
|
||||||
|
cache_loop t0, t1, t9, INDEX_STORE_TAG_D
|
||||||
|
|
||||||
jr RA
|
3: jr ra
|
||||||
END(mips_cache_reset)
|
END(mips_cache_reset)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user