mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
hw/mips/bootloader: Allow bl_gen_jump_kernel to optionally set register
When one of the $sp/$a[0..3] register is already set, we might want bl_gen_jump_kernel() to NOT set it again. Pass a boolean argument for each register, to allow to optionally set them. Tested-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Reviewed-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20221026191821.28167-2-philmd@linaro.org>
This commit is contained in:
parent
3c43fc333b
commit
36d7487b2a
4 changed files with 37 additions and 12 deletions
|
@ -12,8 +12,12 @@
|
|||
#include "exec/cpu-defs.h"
|
||||
|
||||
void bl_gen_jump_to(uint32_t **p, target_ulong jump_addr);
|
||||
void bl_gen_jump_kernel(uint32_t **p, target_ulong sp, target_ulong a0,
|
||||
target_ulong a1, target_ulong a2, target_ulong a3,
|
||||
void bl_gen_jump_kernel(uint32_t **p,
|
||||
bool set_sp, target_ulong sp,
|
||||
bool set_a0, target_ulong a0,
|
||||
bool set_a1, target_ulong a1,
|
||||
bool set_a2, target_ulong a2,
|
||||
bool set_a3, target_ulong a3,
|
||||
target_ulong kernel_addr);
|
||||
void bl_gen_write_ulong(uint32_t **p, target_ulong addr, target_ulong val);
|
||||
void bl_gen_write_u32(uint32_t **p, target_ulong addr, uint32_t val);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue