mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
hw/arm: versal-virt: Always call arm_load_kernel()
Always call arm_load_kernel() regardless of kernel_filename being
set. This is needed because arm_load_kernel() sets up reset for
the CPUs.
Fixes: 6f16da53ff
(hw/arm: versal: Add a virtual Xilinx Versal board)
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Message-id: 20220130110313.4045351-2-edgar.iglesias@gmail.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
e4b0bb8071
commit
40874a383d
@ -681,20 +681,13 @@ static void versal_virt_init(MachineState *machine)
|
||||
s->binfo.get_dtb = versal_virt_get_dtb;
|
||||
s->binfo.modify_dtb = versal_virt_modify_dtb;
|
||||
s->binfo.psci_conduit = psci_conduit;
|
||||
if (machine->kernel_filename) {
|
||||
arm_load_kernel(&s->soc.fpd.apu.cpu[0], machine, &s->binfo);
|
||||
} else {
|
||||
AddressSpace *as = arm_boot_address_space(&s->soc.fpd.apu.cpu[0],
|
||||
&s->binfo);
|
||||
if (!machine->kernel_filename) {
|
||||
/* Some boot-loaders (e.g u-boot) don't like blobs at address 0 (NULL).
|
||||
* Offset things by 4K. */
|
||||
s->binfo.loader_start = 0x1000;
|
||||
s->binfo.dtb_limit = 0x1000000;
|
||||
if (arm_load_dtb(s->binfo.loader_start,
|
||||
&s->binfo, s->binfo.dtb_limit, as, machine) < 0) {
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
arm_load_kernel(&s->soc.fpd.apu.cpu[0], machine, &s->binfo);
|
||||
|
||||
for (i = 0; i < XLNX_VERSAL_NUM_OSPI_FLASH; i++) {
|
||||
BusState *spi_bus;
|
||||
|
Loading…
Reference in New Issue
Block a user