9
0
Fork 0

MIPS: pbl: add pbl_blt macro

Barebox' PBL is able to initialize SoC's memory controller,
but it can be used only if PBL runs from ROM or on-chip SRAM.
MIPS architecture standard boot vector is 0xbfc00000
so on most MIPS SoCs all addresses higher than 0xbfc00000
belong to boot ROM or on-chip SRAM. Thus there's a
simple criterion to check if PBL runs from ROM: just
check if current PC is higher than 0xbfc00000.
Some MIPS boards have ROM start address lower than 0xbfc00000
so it's reasonable to make ROM start address checking board-dependant.

The pbl_blt macro checks if current pc is lower than
the first argument (ROM start address). If so then
next instruction executed is defined by the second argument
of the macro.

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Tested-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Oleksij Rempel 2015-11-11 11:35:40 +03:00 committed by Sascha Hauer
parent a919cac585
commit 8891fcc9db
1 changed files with 12 additions and 0 deletions

View File

@ -60,6 +60,18 @@
.set pop
.endm
.macro pbl_blt addr label tmp
.set push
.set noreorder
move \tmp, ra # preserve ra beforehand
bal 253f
nop
253:
bltu ra, \addr, \label
move ra, \tmp # restore ra
.set pop
.endm
.macro pbl_sleep reg count
.set push
.set noreorder