diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-09-27 09:24:29 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-10-15 12:21:06 -0300 |
commit | 3e8f019be77d1b648bca0af0121da3bb37766509 (patch) | |
tree | c23aa1c1e24530331fad9fcecec125e1a954f0b4 /hw/mips/jazz.c | |
parent | 805659a895b8afeeb50088c44bd60641d60963ff (diff) | |
download | qemu-3e8f019be77d1b648bca0af0121da3bb37766509.zip qemu-3e8f019be77d1b648bca0af0121da3bb37766509.tar.gz qemu-3e8f019be77d1b648bca0af0121da3bb37766509.tar.bz2 |
hw/mips: Have mips_cpu_create_with_clock() take an endianness argument
mips_cpu_create_with_clock() creates a vCPU. Pass it the vCPU
endianness requested by argument. Update the board call sites.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Tested-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20241010215015.44326-17-philmd@linaro.org>
Diffstat (limited to 'hw/mips/jazz.c')
-rw-r--r-- | hw/mips/jazz.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/mips/jazz.c b/hw/mips/jazz.c index 33ce51f..0e43c9f 100644 --- a/hw/mips/jazz.c +++ b/hw/mips/jazz.c @@ -212,7 +212,8 @@ static void mips_jazz_init(MachineState *machine, * ext_clk[jazz_model].pll_mult); /* init CPUs */ - cpu = mips_cpu_create_with_clock(machine->cpu_type, cpuclk); + cpu = mips_cpu_create_with_clock(machine->cpu_type, cpuclk, + TARGET_BIG_ENDIAN); env = &cpu->env; qemu_register_reset(main_cpu_reset, cpu); |