mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
Use jr as register jump instruction
Current assembler codes are inconsistent in the way of register jump instruction usage; some use jr, some use j. Of course GNU as allows both usages, but as can be expected from `Jump Register' the mnemonic `jr' is more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage at all. Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
This commit is contained in:
parent
7ce6370982
commit
43c509254f
9 changed files with 15 additions and 15 deletions
|
@ -586,5 +586,5 @@ noCacheJump:
|
|||
sw t1, 0(t0)
|
||||
sync
|
||||
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
|
|
@ -450,7 +450,7 @@ mtc: sw zero, 0(t0)
|
|||
nop
|
||||
nop
|
||||
memtestend:
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
||||
memhang:
|
||||
|
|
|
@ -105,7 +105,7 @@ __ebu_init:
|
|||
li t2, 0x684143FD
|
||||
sw t2, EBU_BUSCON1(t1)
|
||||
3:
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
||||
.end ebu_init
|
||||
|
@ -170,7 +170,7 @@ __cgu_init:
|
|||
li t2, 0x80000001
|
||||
sw t2, CGU_MUXCR(t1)
|
||||
5:
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
||||
.end cgu_init
|
||||
|
@ -266,7 +266,7 @@ __sdram_init:
|
|||
li t2, 0x00000001
|
||||
sw t2, MC_CTRLENA(t1)
|
||||
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
||||
.end sdram_init
|
||||
|
@ -298,7 +298,7 @@ lowlevel_init:
|
|||
nop
|
||||
move ra, t0
|
||||
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
||||
.end lowlevel_init
|
||||
|
|
|
@ -388,5 +388,5 @@ skip_memsetup:
|
|||
*/
|
||||
sync
|
||||
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
|
|
@ -33,5 +33,5 @@ lowlevel_init:
|
|||
li t0, MC_IOGP
|
||||
li t1, 0xf24
|
||||
sw t1, 0(t0)
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
|
|
@ -37,5 +37,5 @@ lowlevel_init:
|
|||
mtc0 zero, CP0_WIRED
|
||||
nop
|
||||
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
|
|
@ -282,7 +282,7 @@ LEAF(dcache_disable)
|
|||
and t0, t0, t1
|
||||
ori t0, t0, CONF_CM_UNCACHED
|
||||
mtc0 t0, CP0_CONFIG
|
||||
j ra
|
||||
jr ra
|
||||
END(dcache_disable)
|
||||
|
||||
#ifdef CFG_INIT_RAM_LOCK_MIPS
|
||||
|
@ -308,7 +308,7 @@ mips_cache_lock:
|
|||
move a1, a2
|
||||
icacheop(a0,a1,a2,a3,0x1d)
|
||||
|
||||
j ra
|
||||
jr ra
|
||||
|
||||
.end mips_cache_lock
|
||||
#endif /* CFG_INIT_RAM_LOCK_MIPS */
|
||||
|
|
|
@ -68,5 +68,5 @@ disable_incaip_wdt:
|
|||
li t1, WD_WRITE_ENDINIT
|
||||
sw t1, WD_CON0(t0) /* end command */
|
||||
|
||||
j ra
|
||||
jr ra
|
||||
nop
|
||||
|
|
|
@ -286,7 +286,7 @@ reset:
|
|||
la sp, 0(t0)
|
||||
|
||||
la t9, board_init_f
|
||||
j t9
|
||||
jr t9
|
||||
nop
|
||||
|
||||
/*
|
||||
|
@ -342,7 +342,7 @@ relocate_code:
|
|||
/* Jump to where we've relocated ourselves.
|
||||
*/
|
||||
addi t0, a2, in_ram - _start
|
||||
j t0
|
||||
jr t0
|
||||
nop
|
||||
|
||||
.gpword _GLOBAL_OFFSET_TABLE_ /* _GLOBAL_OFFSET_TABLE_ - _gp */
|
||||
|
@ -387,7 +387,7 @@ in_ram:
|
|||
|
||||
move a0, a1
|
||||
la t9, board_init_r
|
||||
j t9
|
||||
jr t9
|
||||
move a1, a2 /* delay slot */
|
||||
|
||||
.end relocate_code
|
||||
|
|
Loading…
Reference in a new issue