OSDN Git Service

hw/arm/raspi: Use arm_write_bootloader() to write boot code
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 24 Apr 2023 15:27:17 +0000 (16:27 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 2 May 2023 14:47:41 +0000 (15:47 +0100)
commit0acbdb4c4ab6b0a09f159bae4899b0737cf64242
treeae993efb1383800e3e565e05420166cd9b4ee340
parent902bba549fc386b4b9805320ed1a2e5b68478bdd
hw/arm/raspi: Use arm_write_bootloader() to write boot code

When writing the secondary-CPU stub boot loader code to the guest,
use arm_write_bootloader() instead of directly calling
rom_add_blob_fixed().  This fixes a bug on big-endian hosts, because
arm_write_bootloader() will correctly byte-swap the host-byte-order
array values into the guest-byte-order to write into the guest
memory.

Cc: qemu-stable@nongnu.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Tested-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20230424152717.1333930-4-peter.maydell@linaro.org
hw/arm/raspi.c