projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d380e4
)
hw/mips/bootloader: Implement nanoMIPS JALRc opcode generator
author
Philippe Mathieu-Daudé
<philmd@linaro.org>
Sun, 11 Dec 2022 18:55:41 +0000
(19:55 +0100)
committer
Philippe Mathieu-Daudé
<philmd@linaro.org>
Fri, 13 Jan 2023 08:32:32 +0000
(09:32 +0100)
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <
20221211204533
.85359-6-philmd@linaro.org>
hw/mips/bootloader.c
patch
|
blob
|
history
diff --git
a/hw/mips/bootloader.c
b/hw/mips/bootloader.c
index 9fc926d83fd7d45d102b9453f83d344e2098257a..1dd6ef2096807951bc1bec895bbe3cd13b17e3b3 100644
(file)
--- a/
hw/mips/bootloader.c
+++ b/
hw/mips/bootloader.c
@@
-129,7
+129,17
@@
static void bl_gen_dsll(void **p, bl_reg rd, bl_reg rt, uint8_t sa)
static void bl_gen_jalr(void **p, bl_reg rs)
{
- bl_gen_r_type(p, 0, rs, 0, BL_REG_RA, 0, 0x09);
+ if (bootcpu_supports_isa(ISA_NANOMIPS32)) {
+ uint32_t insn = 0;
+
+ insn = deposit32(insn, 26, 6, 0b010010); /* JALRC */
+ insn = deposit32(insn, 21, 5, BL_REG_RA);
+ insn = deposit32(insn, 16, 5, rs);
+
+ st_nm32_p(p, insn);
+ } else {
+ bl_gen_r_type(p, 0, rs, 0, BL_REG_RA, 0, 0x09);
+ }
}
static void bl_gen_lui_nm(void **ptr, bl_reg rt, uint32_t imm20)