mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 12:09:58 +00:00
RISC-V: virt: This is a "sifive,test1" test finisher
The test finisher implements the reset command, which means it's a
"sifive,test1" device. This is a backwards compatible change, so it's
also a "sifive,test0" device. I copied the odd idiom for adding a
two-string compatible field from the ARM virt board.
Fixes: 9a2551ed6f
("riscv: sifive_test: Add reset functionality")
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Signed-off-by: Palmer Dabbelt <palmer@dabbelt.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
This commit is contained in:
parent
65e05c82bd
commit
9c0fb20c4b
@ -359,7 +359,10 @@ static void create_fdt(RISCVVirtState *s, const struct MemmapEntry *memmap,
|
|||||||
nodename = g_strdup_printf("/test@%lx",
|
nodename = g_strdup_printf("/test@%lx",
|
||||||
(long)memmap[VIRT_TEST].base);
|
(long)memmap[VIRT_TEST].base);
|
||||||
qemu_fdt_add_subnode(fdt, nodename);
|
qemu_fdt_add_subnode(fdt, nodename);
|
||||||
qemu_fdt_setprop_string(fdt, nodename, "compatible", "sifive,test0");
|
{
|
||||||
|
const char compat[] = "sifive,test1\0sifive,test0";
|
||||||
|
qemu_fdt_setprop(fdt, nodename, "compatible", compat, sizeof(compat));
|
||||||
|
}
|
||||||
qemu_fdt_setprop_cells(fdt, nodename, "reg",
|
qemu_fdt_setprop_cells(fdt, nodename, "reg",
|
||||||
0x0, memmap[VIRT_TEST].base,
|
0x0, memmap[VIRT_TEST].base,
|
||||||
0x0, memmap[VIRT_TEST].size);
|
0x0, memmap[VIRT_TEST].size);
|
||||||
|
Loading…
Reference in New Issue
Block a user