Re: [PATCH 08/13] hw/riscv/virt: Use setprop_sized_cells for reset

2025-04-29 Thread Daniel Henrique Barboza
On 4/29/25 3:12 AM, Joel Stanley wrote: The current device tree property uses two cells for the address (and for the size), but assumes the they are less than 32 bits by hard coding the high cell to zero. Use qemu_fdt_setprop_sized_cells to do the job of splitting the upper and lower 32 bits

[PATCH 08/13] hw/riscv/virt: Use setprop_sized_cells for reset

2025-04-28 Thread Joel Stanley
The current device tree property uses two cells for the address (and for the size), but assumes the they are less than 32 bits by hard coding the high cell to zero. Use qemu_fdt_setprop_sized_cells to do the job of splitting the upper and lower 32 bits across cells. Signed-off-by: Joel Stanley -